From: <var...@us...> - 2021-09-08 11:54:19
|
Revision: 10547 http://sourceforge.net/p/phpwiki/code/10547 Author: vargenau Date: 2021-09-08 11:54:16 +0000 (Wed, 08 Sep 2021) Log Message: ----------- Fix Help and PhpWikiManual links in SpecialPages Modified Paths: -------------- trunk/pgsrc/SpecialPages trunk/themes/fusionforge/pgsrc/SpecialPages Modified: trunk/pgsrc/SpecialPages =================================================================== --- trunk/pgsrc/SpecialPages 2021-09-06 17:22:01 UTC (rev 10546) +++ trunk/pgsrc/SpecialPages 2021-09-08 11:54:16 UTC (rev 10547) @@ -1,4 +1,4 @@ -Date: Wed, 3 Aug 2021 09:27:34 +0000 +Date: Wed, 8 Sep 2021 09:52:29 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=SpecialPages; @@ -10,8 +10,8 @@ |- style="vertical-align: top" | style="padding-right: 10px" | == Help == -* [[Help:Help|Help]] -* [[Help:PhpWikiManual|PhpWikiManual]] +* [[Help]] +* [[PhpWikiManual]] | style="padding-right: 10px" | == Pages == * [[AllPages]] Modified: trunk/themes/fusionforge/pgsrc/SpecialPages =================================================================== --- trunk/themes/fusionforge/pgsrc/SpecialPages 2021-09-06 17:22:01 UTC (rev 10546) +++ trunk/themes/fusionforge/pgsrc/SpecialPages 2021-09-08 11:54:16 UTC (rev 10547) @@ -1,4 +1,4 @@ -Date: Wed, 4 Aug 2021 09:27:34 +0000 +Date: Wed, 8 Sep 2021 13:52:29 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=SpecialPages; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-09-16 17:34:51
|
Revision: 10557 http://sourceforge.net/p/phpwiki/code/10557 Author: vargenau Date: 2021-09-16 17:34:48 +0000 (Thu, 16 Sep 2021) Log Message: ----------- function rename_page is implemented in all backends Modified Paths: -------------- trunk/lib/WikiDB.php trunk/lib/plugin/WikiAdminRename.php trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo Modified: trunk/lib/WikiDB.php =================================================================== --- trunk/lib/WikiDB.php 2021-09-16 15:48:25 UTC (rev 10556) +++ trunk/lib/WikiDB.php 2021-09-16 17:34:48 UTC (rev 10557) @@ -544,16 +544,26 @@ assert(is_string($from) && $from != ''); assert(is_string($to) && $to != ''); $result = false; - if (method_exists($this->_backend, 'rename_page')) { - $oldpage = $this->getPage($from); - $newpage = $this->getPage($to); - //update all WikiLinks in existing pages - //non-atomic! i.e. if rename fails the links are not undone - if ($updateWikiLinks) { - $lookbehind = "/(?<=[\W:])\Q"; - $lookahead = "\E(?=[\W:])/"; - require_once 'lib/plugin/WikiAdminSearchReplace.php'; - $links = $oldpage->getBackLinks(); + $oldpage = $this->getPage($from); + $newpage = $this->getPage($to); + //update all WikiLinks in existing pages + //non-atomic! i.e. if rename fails the links are not undone + if ($updateWikiLinks) { + $lookbehind = "/(?<=[\W:])\Q"; + $lookahead = "\E(?=[\W:])/"; + require_once 'lib/plugin/WikiAdminSearchReplace.php'; + $links = $oldpage->getBackLinks(); + while ($linked_page = $links->next()) { + WikiPlugin_WikiAdminSearchReplace::replaceHelper + ($this, + $linked_page->getName(), + $lookbehind . $from . $lookahead, $to, + true, true); + } + // FIXME: Disabled to avoid recursive modification when renaming + // a page like 'PageFoo to 'PageFooTwo' + if (0) { + $links = $newpage->getBackLinks(); while ($linked_page = $links->next()) { WikiPlugin_WikiAdminSearchReplace::replaceHelper ($this, @@ -561,37 +571,22 @@ $lookbehind . $from . $lookahead, $to, true, true); } - // FIXME: Disabled to avoid recursive modification when renaming - // a page like 'PageFoo to 'PageFooTwo' - if (0) { - $links = $newpage->getBackLinks(); - while ($linked_page = $links->next()) { - WikiPlugin_WikiAdminSearchReplace::replaceHelper - ($this, - $linked_page->getName(), - $lookbehind . $from . $lookahead, $to, - true, true); - } - } } - if ($oldpage->exists() and !$newpage->exists()) { - if ($result = $this->_backend->rename_page($from, $to)) { - // create a RecentChanges entry with explaining summary - $page = $this->getPage($to); - $current = $page->getCurrentRevision(); - $meta = $current->_data; - $version = $current->getVersion(); - $meta['summary'] = sprintf(_("renamed from %s"), $from); - unset($meta['mtime']); // force new date - $page->save($current->getPackedContent(), $version + 1, $meta); - } - } elseif (!$oldpage->getCurrentRevision(false) and !$newpage->exists()) { - // if a version 0 exists try it also. - $result = $this->_backend->rename_page($from, $to); + } + if ($oldpage->exists() and !$newpage->exists()) { + if ($result = $this->_backend->rename_page($from, $to)) { + // create a RecentChanges entry with explaining summary + $page = $this->getPage($to); + $current = $page->getCurrentRevision(); + $meta = $current->_data; + $version = $current->getVersion(); + $meta['summary'] = sprintf(_("renamed from %s"), $from); + unset($meta['mtime']); // force new date + $page->save($current->getPackedContent(), $version + 1, $meta); } - } else { - trigger_error(_("WikiDB::renamePage() not yet implemented for this backend"), - E_USER_WARNING); + } elseif (!$oldpage->getCurrentRevision(false) and !$newpage->exists()) { + // if a version 0 exists try it also. + $result = $this->_backend->rename_page($from, $to); } /* Generate notification emails? */ if ($result and ENABLE_MAILNOTIFY) { Modified: trunk/lib/plugin/WikiAdminRename.php =================================================================== --- trunk/lib/plugin/WikiAdminRename.php 2021-09-16 15:48:25 UTC (rev 10556) +++ trunk/lib/plugin/WikiAdminRename.php 2021-09-16 17:34:48 UTC (rev 10557) @@ -240,7 +240,6 @@ $ul->pushContent(HTML::li(fmt("Access denied to rename page “%s”.", WikiLink($name)))); } elseif ($dbi->renamePage($name, $newname, $updatelinks)) { - /* not yet implemented for all backends */ $page = $dbi->getPage($newname); $current = $page->getCurrentRevision(); $version = $current->getVersion(); Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2021-09-16 15:48:25 UTC (rev 10556) +++ trunk/locale/po/de.po 2021-09-16 17:34:48 UTC (rev 10557) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-03 19:05+0200\n" +"POT-Creation-Date: 2021-09-16 19:32+0200\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -1375,6 +1375,9 @@ "Liste aller Versionen eines Autors mit Diff-Links, oder eine SeitenProtokoll-" "ähnliche Liste einer Seite nur für einen Autor." +msgid "You are not signed in and no author is specified." +msgstr "" + msgid "Minor" msgstr "kleinere" @@ -4682,9 +4685,6 @@ msgid "renamed from %s" msgstr "umbenannt von %s" -msgid "WikiDB::renamePage() not yet implemented for this backend" -msgstr "WikiDB::renamePage() für dieses Backend noch nicht implementiert" - #, php-format msgid "%s: Date of new revision is %s" msgstr "%s: Datum dieser aktuellen Neubearbeitung ist %s" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2021-09-16 15:48:25 UTC (rev 10556) +++ trunk/locale/po/es.po 2021-09-16 17:34:48 UTC (rev 10557) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-03 19:05+0200\n" +"POT-Creation-Date: 2021-09-16 19:32+0200\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -1349,6 +1349,9 @@ "PageHistory-like list of a single page for only one user." msgstr "" +msgid "You are not signed in and no author is specified." +msgstr "" + msgid "Minor" msgstr "" @@ -4556,9 +4559,6 @@ msgid "renamed from %s" msgstr "retitulado de %s" -msgid "WikiDB::renamePage() not yet implemented for this backend" -msgstr "WikiDB::renamePage() no todavía puesto en ejecucio'n para este backend" - #, php-format msgid "%s: Date of new revision is %s" msgstr "%s: La fecha de la nueva revisión es %s" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2021-09-16 15:48:25 UTC (rev 10556) +++ trunk/locale/po/fr.po 2021-09-16 17:34:48 UTC (rev 10557) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-03 19:05+0200\n" +"POT-Creation-Date: 2021-09-16 19:32+0200\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -1365,6 +1365,9 @@ "liste du type HistoriqueDeLaPage pour une simple page uniquement pour un " "auteur." +msgid "You are not signed in and no author is specified." +msgstr "Vous n'êtes pas identifié et il n'y a pas d'auteur spécifié." + msgid "Minor" msgstr "Mineur" @@ -4654,9 +4657,6 @@ msgid "renamed from %s" msgstr "renommée à partir de %s" -msgid "WikiDB::renamePage() not yet implemented for this backend" -msgstr "WikiBD::renamePage() pas encore implémentée pour le Principal" - #, php-format msgid "%s: Date of new revision is %s" msgstr "%s : la date de la nouvelle version est %s" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2021-09-16 15:48:25 UTC (rev 10556) +++ trunk/locale/po/it.po 2021-09-16 17:34:48 UTC (rev 10557) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-03 19:05+0200\n" +"POT-Creation-Date: 2021-09-16 19:32+0200\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -1332,6 +1332,9 @@ "PageHistory-like list of a single page for only one user." msgstr "" +msgid "You are not signed in and no author is specified." +msgstr "" + msgid "Minor" msgstr "" @@ -4530,9 +4533,6 @@ msgid "renamed from %s" msgstr "" -msgid "WikiDB::renamePage() not yet implemented for this backend" -msgstr "" - #, php-format msgid "%s: Date of new revision is %s" msgstr "" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2021-09-16 15:48:25 UTC (rev 10556) +++ trunk/locale/po/ja.po 2021-09-16 17:34:48 UTC (rev 10557) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-03 19:05+0200\n" +"POT-Creation-Date: 2021-09-16 19:32+0200\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -1318,6 +1318,9 @@ "PageHistory-like list of a single page for only one user." msgstr "" +msgid "You are not signed in and no author is specified." +msgstr "" + msgid "Minor" msgstr "" @@ -4516,9 +4519,6 @@ msgid "renamed from %s" msgstr "" -msgid "WikiDB::renamePage() not yet implemented for this backend" -msgstr "" - #, php-format msgid "%s: Date of new revision is %s" msgstr "" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2021-09-16 15:48:25 UTC (rev 10556) +++ trunk/locale/po/nl.po 2021-09-16 17:34:48 UTC (rev 10557) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-03 19:05+0200\n" +"POT-Creation-Date: 2021-09-16 19:32+0200\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -1324,6 +1324,9 @@ "PageHistory-like list of a single page for only one user." msgstr "" +msgid "You are not signed in and no author is specified." +msgstr "" + msgid "Minor" msgstr "" @@ -4522,9 +4525,6 @@ msgid "renamed from %s" msgstr "" -msgid "WikiDB::renamePage() not yet implemented for this backend" -msgstr "" - #, php-format msgid "%s: Date of new revision is %s" msgstr "" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2021-09-16 15:48:25 UTC (rev 10556) +++ trunk/locale/po/phpwiki.pot 2021-09-16 17:34:48 UTC (rev 10557) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-03 19:05+0200\n" +"POT-Creation-Date: 2021-09-16 19:32+0200\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -1318,6 +1318,9 @@ "PageHistory-like list of a single page for only one user." msgstr "" +msgid "You are not signed in and no author is specified." +msgstr "" + msgid "Minor" msgstr "" @@ -4516,9 +4519,6 @@ msgid "renamed from %s" msgstr "" -msgid "WikiDB::renamePage() not yet implemented for this backend" -msgstr "" - #, php-format msgid "%s: Date of new revision is %s" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2021-09-16 15:48:25 UTC (rev 10556) +++ trunk/locale/po/sv.po 2021-09-16 17:34:48 UTC (rev 10557) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-03 19:05+0200\n" +"POT-Creation-Date: 2021-09-16 19:32+0200\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -1319,6 +1319,9 @@ "PageHistory-like list of a single page for only one user." msgstr "" +msgid "You are not signed in and no author is specified." +msgstr "" + msgid "Minor" msgstr "" @@ -4517,9 +4520,6 @@ msgid "renamed from %s" msgstr "" -msgid "WikiDB::renamePage() not yet implemented for this backend" -msgstr "" - #, php-format msgid "%s: Date of new revision is %s" msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2021-09-16 15:48:25 UTC (rev 10556) +++ trunk/locale/po/zh.po 2021-09-16 17:34:48 UTC (rev 10557) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-03 19:05+0200\n" +"POT-Creation-Date: 2021-09-16 19:32+0200\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -1323,6 +1323,9 @@ "列出所有被使用者編輯的頁面修訂,並帶有差異連結,或顯示像是頁面歷程的單一頁面列" "表." +msgid "You are not signed in and no author is specified." +msgstr "" + msgid "Minor" msgstr "次要" @@ -4533,9 +4536,6 @@ msgid "renamed from %s" msgstr "從 %s 更名" -msgid "WikiDB::renamePage() not yet implemented for this backend" -msgstr "後台的 WikiDB::renamePage() 還沒實作出來." - #, php-format msgid "%s: Date of new revision is %s" msgstr "%s: 新版本的日期是 %s" Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-09-17 11:14:08
|
Revision: 10563 http://sourceforge.net/p/phpwiki/code/10563 Author: vargenau Date: 2021-09-17 11:14:06 +0000 (Fri, 17 Sep 2021) Log Message: ----------- db4 is the default DBA handler Modified Paths: -------------- trunk/INSTALL trunk/config/config-default.ini trunk/config/config-dist.ini trunk/configurator.php trunk/lib/DbSession/dba.php trunk/lib/DbaDatabase.php trunk/lib/WikiDB/backend/dba.php trunk/lib/WikiDB/backend/dbaBase.php trunk/lib/WikiDB.php Modified: trunk/INSTALL =================================================================== --- trunk/INSTALL 2021-09-17 11:09:28 UTC (rev 10562) +++ trunk/INSTALL 2021-09-17 11:14:06 UTC (rev 10563) @@ -91,10 +91,10 @@ "Fatal error: Call to undefined function: dba_open() in phpwiki/lib/DbaDatabase.php on line 32" -To correct this you will have to check the available dba handlers -(default: db3 for Windows, otherwise gdbm), install the dba extension -or preferably an sql-compatible database such as MySQL or PostgreSQL -and make the necessary configuration changes to 'lib/config/config.ini'. +To correct this you will have to check the available dba handlers, +install the dba extension or preferably an sql-compatible database +such as MySQL or PostgreSQL and make the necessary configuration +changes to 'lib/config/config.ini'. INSTRUCTIONS Modified: trunk/config/config-default.ini =================================================================== --- trunk/config/config-default.ini 2021-09-17 11:09:28 UTC (rev 10562) +++ trunk/config/config-default.ini 2021-09-17 11:14:06 UTC (rev 10563) @@ -60,7 +60,7 @@ DATABASE_PREFIX = "" DATABASE_SESSION_TABLE = session DATABASE_DIRECTORY = /tmp -DATABASE_DBA_HANDLER = gdbm +DATABASE_DBA_HANDLER = db4 DATABASE_TIMEOUT = 20 DATABASE_OPTIMISE_FREQUENCY = 50 DATABASE_PERSISTENT = false Modified: trunk/config/config-dist.ini =================================================================== --- trunk/config/config-dist.ini 2021-09-17 11:09:28 UTC (rev 10562) +++ trunk/config/config-dist.ini 2021-09-17 11:14:06 UTC (rev 10563) @@ -447,13 +447,11 @@ DATABASE_DIRECTORY = /tmp ; For the dba backend, this defines which DBA variant you wish to use. -; gdbm - commonly available, Fedora not. Not recommended anymore. -; db2 - Berkeley DB v2; not supported by modern versions of PHP. -; db3 - Berkeley DB v3; as per db2. The best on Windows. -; db4 - Berkeley DB v4; current version, however PHP has some issues -; with its db4 support. -; dbm - Older dba handler; suffers from limits on the size of data -; items. +; gdbm - commonly available, Fedora not. Not recommended anymore. +; db2 - Berkeley DB v2; not supported by modern versions of PHP. +; db3 - Berkeley DB v3; as per db2. The best on Windows. +; db4 - Berkeley DB v4; current version. Default. +; dbm - Older dba handler; suffers from limits on the size of data items. ; Better not use other hacks such as inifile, flatfile or cdb. DATABASE_DBA_HANDLER = db4 Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2021-09-17 11:09:28 UTC (rev 10562) +++ trunk/configurator.php 2021-09-17 11:14:06 UTC (rev 10563) @@ -793,10 +793,10 @@ $properties["dba handler"] = new _define_selection('DATABASE_DBA_HANDLER', array('gdbm' => "gdbm - GNU database manager (not recommended anymore)", - 'dbm' => "DBM - Redhat default. On sf.net there's dbm and not gdbm anymore", + 'dbm' => "DBM - Redhat default.", 'db2' => "DB2 - BerkeleyDB (Sleepycat) DB2", 'db3' => "DB3 - BerkeleyDB (Sleepycat) DB3. Default on Windows but not on every Linux", - 'db4' => "DB4 - BerkeleyDB (Sleepycat) DB4."), " + 'db4' => "DB4 - BerkeleyDB (Sleepycat) DB4. Default."), " Use 'gdbm', 'dbm', 'db2', 'db3' or 'db4' depending on your DBA handler methods supported: <br /> " . join(", ", dba_handlers()) . "\n\nBetter not use other hacks such as inifile, flatfile or cdb"); Modified: trunk/lib/DbSession/dba.php =================================================================== --- trunk/lib/DbSession/dba.php 2021-09-17 11:09:28 UTC (rev 10562) +++ trunk/lib/DbSession/dba.php 2021-09-17 11:14:06 UTC (rev 10563) @@ -66,7 +66,7 @@ if (!$dbh) { $directory = '/tmp'; $prefix = 'wiki_'; - $dba_handler = 'gdbm'; + $dba_handler = 'db4'; $timeout = 12; extract($DBParams); // overwrite the defaults $dbfile = "$directory/$prefix" . 'session' . '.' . $dba_handler; Modified: trunk/lib/DbaDatabase.php =================================================================== --- trunk/lib/DbaDatabase.php 2021-09-17 11:09:28 UTC (rev 10562) +++ trunk/lib/DbaDatabase.php 2021-09-17 11:14:06 UTC (rev 10563) @@ -48,7 +48,7 @@ * @param bool $mode * @param string $handler */ - function __construct($filename, $mode = false, $handler = 'gdbm') + function __construct($filename, $mode = false, $handler = 'db4') { $this->_file = $filename; $this->_handler = $handler; @@ -96,10 +96,7 @@ } if ((strlen($mode) == 1)) { - // PHP 4.3.x Windows lock bug workaround: http://bugs.php.net/bug.php?id=23975 - if (isWindows()) { - $mode .= "-"; // suppress locking, or - } elseif ($this->_handler != 'gdbm') { // gdbm does it internally + if ($this->_handler != 'gdbm') { // gdbm does it internally $mode .= "d"; // else use internal locking } } Modified: trunk/lib/WikiDB/backend/dba.php =================================================================== --- trunk/lib/WikiDB/backend/dba.php 2021-09-17 11:09:28 UTC (rev 10562) +++ trunk/lib/WikiDB/backend/dba.php 2021-09-17 11:14:06 UTC (rev 10563) @@ -34,7 +34,7 @@ { $directory = '/tmp'; $prefix = 'wiki_'; - $dba_handler = 'gdbm'; + $dba_handler = 'db4'; $timeout = 20; extract($dbparams); if ($directory) $directory .= "/"; Modified: trunk/lib/WikiDB/backend/dbaBase.php =================================================================== --- trunk/lib/WikiDB/backend/dbaBase.php 2021-09-17 11:09:28 UTC (rev 10562) +++ trunk/lib/WikiDB/backend/dbaBase.php 2021-09-17 11:14:06 UTC (rev 10563) @@ -26,9 +26,6 @@ require_once 'lib/WikiDB/backend.php'; -// FIXME:padding of data? Is it needed? dba_optimize() seems to do a good -// job at packing 'gdbm' (and 'db2') databases. - /* * Tables: * Modified: trunk/lib/WikiDB.php =================================================================== --- trunk/lib/WikiDB.php 2021-09-17 11:09:28 UTC (rev 10562) +++ trunk/lib/WikiDB.php 2021-09-17 11:14:06 UTC (rev 10563) @@ -143,8 +143,7 @@ * <dt> dba_handler * <dd> (Used by the dba backend.) * - * Which dba handler to use. Good choices are probably either - * 'gdbm' or 'db2'. + * Which dba handler to use. * * <dt> readonly * <dd> Either set by config.ini: READONLY = true or detected automatically This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-09-28 15:24:43
|
Revision: 10596 http://sourceforge.net/p/phpwiki/code/10596 Author: vargenau Date: 2021-09-28 15:24:42 +0000 (Tue, 28 Sep 2021) Log Message: ----------- Add HTML::figure and HTML::figcaption Modified Paths: -------------- trunk/lib/HtmlElement.php trunk/themes/default/phpwiki-common.css Modified: trunk/lib/HtmlElement.php =================================================================== --- trunk/lib/HtmlElement.php 2021-09-20 13:23:05 UTC (rev 10595) +++ trunk/lib/HtmlElement.php 2021-09-28 15:24:42 UTC (rev 10596) @@ -204,6 +204,18 @@ return $el->_init2(func_get_args()); } + public static function figure( /*...*/) + { + $el = new HtmlElement('figure'); + return $el->_init2(func_get_args()); + } + + public static function figcaption( /*...*/) + { + $el = new HtmlElement('figcaption'); + return $el->_init2(func_get_args()); + } + public static function br( /*...*/) { $el = new HtmlElement('br'); @@ -585,7 +597,7 @@ 'b big i small tt ' // %fontstyle . 's strike u ' // (deprecated) . 'abbr acronym cite code dfn em kbd samp strong var ' //%phrase - . 'a img object embed br script map q sub sup span bdo ' //%special + . 'a img figure object embed br script map q sub sup span bdo ' //%special . 'button input label option select textarea label ' //%formctl // %block elements which contain inline content @@ -594,7 +606,7 @@ . 'div fieldset ' // other with inline content - . 'caption dt label legend video ' + . 'caption figcaption dt label legend video ' // other with either inline or block . 'dd del ins li td th colgroup'); Modified: trunk/themes/default/phpwiki-common.css =================================================================== --- trunk/themes/default/phpwiki-common.css 2021-09-20 13:23:05 UTC (rev 10595) +++ trunk/themes/default/phpwiki-common.css 2021-09-28 15:24:42 UTC (rev 10596) @@ -60,6 +60,10 @@ clear: both; } +figcaption { + font-style: italic; +} + /* Alert class ======================================================== */ .dialog { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-09-30 11:00:28
|
Revision: 10601 http://sourceforge.net/p/phpwiki/code/10601 Author: vargenau Date: 2021-09-30 11:00:26 +0000 (Thu, 30 Sep 2021) Log Message: ----------- READONLY is renamed as ISREADONLY, since "readonly" is now a keyword in PHP 8.1 Modified Paths: -------------- trunk/config/config-default.ini trunk/config/config-dist.ini trunk/configurator.php trunk/lib/DbaDatabase.php trunk/lib/IniConfig.php trunk/lib/PagePerm.php trunk/lib/WikiDB.php trunk/lib/main.php trunk/locale/it/pgsrc/NoteDiRilascio trunk/pgsrc/ReleaseNotes trunk/themes/default/templates/login.tmpl Modified: trunk/config/config-default.ini =================================================================== --- trunk/config/config-default.ini 2021-09-29 15:07:58 UTC (rev 10600) +++ trunk/config/config-default.ini 2021-09-30 11:00:26 UTC (rev 10601) @@ -9,7 +9,7 @@ ENABLE_XHTML_XML = false ENABLE_OPEN_GRAPH = false USECACHE = true -READONLY = false +ISREADONLY = false ; calculated dynamically, but need a default WIKIDB_NOCACHE_MARKUP = false Modified: trunk/config/config-dist.ini =================================================================== --- trunk/config/config-dist.ini 2021-09-29 15:07:58 UTC (rev 10600) +++ trunk/config/config-dist.ini 2021-09-30 11:00:26 UTC (rev 10601) @@ -166,7 +166,7 @@ ; Enable this for system maintainance (e.g. read-only mount) or a general ; read-only database. ; Default: false -;READONLY = true +;ISREADONLY = true ;========================================================================== ; Part One: Authentication and security settings. Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2021-09-29 15:07:58 UTC (rev 10600) +++ trunk/configurator.php 2021-09-30 11:00:26 UTC (rev 10601) @@ -501,8 +501,8 @@ $properties["ENABLE_PAGE_PUBLIC"] = new boolean_define_commented_optional('ENABLE_PAGE_PUBLIC'); -$properties["READONLY"] = - new boolean_define_commented_optional('READONLY'); +$properties["ISREADONLY"] = + new boolean_define_commented_optional('ISREADONLY'); $properties["Part One"] = new part('_part1', $SEPARATOR . "\n", " Modified: trunk/lib/DbaDatabase.php =================================================================== --- trunk/lib/DbaDatabase.php 2021-09-29 15:07:58 UTC (rev 10600) +++ trunk/lib/DbaDatabase.php 2021-09-30 11:00:26 UTC (rev 10601) @@ -91,7 +91,7 @@ echo "You don't seem to have DBA support compiled into PHP."; } - if (READONLY) { + if (ISREADONLY) { $mode = 'r'; } @@ -109,13 +109,13 @@ and (isWindows() or !is_writable($this->_file)) ) { // try to continue with read-only - if (!defined("READONLY")) - define("READONLY", true); + if (!defined("ISREADONLY")) + define("ISREADONLY", true); $request->_dbi->readonly = true; $this->readonly = true; $mode = "r"; } - if (substr($mode, 0, 1) == "c" and file_exists($this->_file) and !READONLY) + if (substr($mode, 0, 1) == "c" and file_exists($this->_file) and !ISREADONLY) $mode = "w"; // conflict: wait some random time to unlock (as with ethernet) $secs = 0.5 + ((double)rand(1, 32767) / 32767); @@ -132,8 +132,8 @@ . "\nmode: " . $mode . "\nhandler: " . $this->_handler; // try to continue with read-only - if (!defined("READONLY")) - define("READONLY", true); + if (!defined("ISREADONLY")) + define("ISREADONLY", true); $request->_dbi->readonly = true; $this->readonly = true; if (!file_exists($this->_file)) { Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2021-09-29 15:07:58 UTC (rev 10600) +++ trunk/lib/IniConfig.php 2021-09-30 11:00:26 UTC (rev 10601) @@ -211,7 +211,7 @@ 'ENABLE_AUTH_OPENID', 'INSECURE_ACTIONS_LOCALHOST_ONLY', 'ENABLE_MAILNOTIFY', 'ENABLE_RECENTCHANGESBOX', 'ENABLE_PAGE_PUBLIC', 'ENABLE_AJAX', 'ENABLE_EXTERNAL_PAGES', - 'READONLY' + 'ISREADONLY' ); $rs = @parse_ini_file($file); @@ -276,7 +276,7 @@ 'ALLOW_IMAP_LOGIN', 'ALLOW_USER_LOGIN', 'REQUIRE_SIGNIN_BEFORE_EDIT', 'WIKIDB_NOCACHE_MARKUP', - 'COMPRESS_OUTPUT', 'USE_BYTEA', 'READONLY', + 'COMPRESS_OUTPUT', 'USE_BYTEA', 'ISREADONLY', )) ) { ; Modified: trunk/lib/PagePerm.php =================================================================== --- trunk/lib/PagePerm.php 2021-09-29 15:07:58 UTC (rev 10600) +++ trunk/lib/PagePerm.php 2021-09-30 11:00:26 UTC (rev 10601) @@ -248,7 +248,7 @@ return 0; } } - if ((READONLY or $request->_dbi->readonly) + if ((ISREADONLY or $request->_dbi->readonly) and in_array($access, array('edit', 'create', 'change')) ) { return 0; Modified: trunk/lib/WikiDB.php =================================================================== --- trunk/lib/WikiDB.php 2021-09-29 15:07:58 UTC (rev 10600) +++ trunk/lib/WikiDB.php 2021-09-30 11:00:26 UTC (rev 10601) @@ -99,7 +99,7 @@ $this->_backend->check(); } // might be changed when opening the database fails - $this->readonly = defined("READONLY") ? READONLY : false; + $this->readonly = defined("ISREADONLY") ? ISREADONLY : false; } /** @@ -146,7 +146,7 @@ * Which dba handler to use. * * <dt> readonly - * <dd> Either set by config.ini: READONLY = true or detected automatically + * <dd> Either set by config.ini: ISREADONLY = true or detected automatically * when a database can be read but cannot be updated. * </dl> * Modified: trunk/lib/main.php =================================================================== --- trunk/lib/main.php 2021-09-29 15:07:58 UTC (rev 10600) +++ trunk/lib/main.php 2021-09-30 11:00:26 UTC (rev 10601) @@ -81,7 +81,7 @@ if (USE_DB_SESSION) { include_once 'lib/DbSession.php'; $dbi =& $this->_dbi; - if (defined('READONLY') and !READONLY) // READONLY might be set later + if (defined('ISREADONLY') and !ISREADONLY) // ISREADONLY might be set later $this->_dbsession = new DbSession($dbi, $dbi->getParam('prefix') . $dbi->getParam('db_session_table')); } Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2021-09-29 15:07:58 UTC (rev 10600) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2021-09-30 11:00:26 UTC (rev 10601) @@ -1,4 +1,4 @@ -Date: Wed, 11 Aug 2021 10:03:04 +0000 +Date: Thu, 30 Sep 2021 12:58:41 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -8,6 +8,21 @@ <<CreateToc with_toclink||=1 headers||=1,2,3 width=300px position=right>> +== 1.6.1 2021-XX-XX Marc-Etienne Vargenau == + +This release makes PhpWiki compatable with PHP 8.1. +READONLY is renamed as ISREADONLY, since //readonly// is now a keyword in PHP 8.1. + +=== Fixes === +* Make list of pages work with PDO (~AllPages, ~MostPopular...) + +=== Changes === +* Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. +* Add "Rename" tab in Sidebar theme. + +=== Plugins === +* Chart plugin: new argument "legend" + == 1.6.0 2021-08-12 Marc-Etienne Vargenau == Major release: @@ -47,7 +62,7 @@ * Updated pgsrc pages in all languages * Adding SPDX-License-Identifier in PHP source files -=== Plugins === +=== Plugins === * ~UpLoad plugin: put date and author in history * ~UpLoad plugin: don't inline images * PhpWeather removed, uses deprecated mysql functions Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2021-09-29 15:07:58 UTC (rev 10600) +++ trunk/pgsrc/ReleaseNotes 2021-09-30 11:00:26 UTC (rev 10601) @@ -1,4 +1,4 @@ -Date: Tue, 28 Sep 2021 17:38:55 +0000 +Date: Thu, 30 Sep 2021 12:58:41 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -10,6 +10,9 @@ == 1.6.1 2021-XX-XX Marc-Etienne Vargenau == +This release makes PhpWiki compatable with PHP 8.1. +READONLY is renamed as ISREADONLY, since //readonly// is now a keyword in PHP 8.1. + === Fixes === * Make list of pages work with PDO (~AllPages, ~MostPopular...) Modified: trunk/themes/default/templates/login.tmpl =================================================================== --- trunk/themes/default/templates/login.tmpl 2021-09-29 15:07:58 UTC (rev 10600) +++ trunk/themes/default/templates/login.tmpl 2021-09-30 11:00:26 UTC (rev 10601) @@ -6,7 +6,7 @@ <?php $dbh = $request->getDbh(); -if (READONLY) { +if (ISREADONLY) { echo asXML(HTML::p(array('class' => 'warning_msg'), _("System is locked as read-only for maintenance"))); } elseif ($dbh->readonly) { echo asXML(HTML::p(array('class' => 'warning_msg'), _("Database is locked as read-only for maintenance"))); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-09-30 13:36:52
|
Revision: 10606 http://sourceforge.net/p/phpwiki/code/10606 Author: vargenau Date: 2021-09-30 13:36:50 +0000 (Thu, 30 Sep 2021) Log Message: ----------- Get rid of old Windows backslash Modified Paths: -------------- trunk/configurator.php trunk/lib/ErrorManager.php Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2021-09-30 13:32:04 UTC (rev 10605) +++ trunk/configurator.php 2021-09-30 13:36:50 UTC (rev 10606) @@ -74,8 +74,8 @@ $scriptname = str_replace('configurator.php', 'index.php', $_SERVER["PHP_SELF"]); } -$config_file = (substr(PHP_OS, 0, 3) == 'WIN') ? 'config\\config.ini' : 'config/config.ini'; -$fs_config_file = dirname(__FILE__) . (substr(PHP_OS, 0, 3) == 'WIN' ? '\\' : '/') . $config_file; +$config_file = 'config/config.ini'; +$fs_config_file = dirname(__FILE__) . '/' . $config_file; if (isset($_POST['create'])) header('Location: ' . $configurator . '?show=_part1&create=1#create'); if (!function_exists('dba_handlers')) { @@ -162,8 +162,8 @@ include_once 'lib/prepend.php'; include_once 'lib/IniConfig.php'; } - $def_file = (substr(PHP_OS, 0, 3) == 'WIN') ? 'config\\config-default.ini' : 'config/config-default.ini'; - $fs_def_file = dirname(__FILE__) . (substr(PHP_OS, 0, 3) == 'WIN' ? '\\' : '/') . $def_file; + $def_file = 'config/config-default.ini'; + $fs_def_file = dirname(__FILE__) . '/' . $def_file; IniConfig($fs_def_file); } @@ -2296,8 +2296,7 @@ static $f; if (!$distfile) { - $sep = (substr(PHP_OS, 0, 3) == 'WIN' ? '\\' : '/'); - $distfile = dirname(__FILE__) . $sep . "config" . $sep . "config-dist.ini"; + $distfile = dirname(__FILE__) . "/config/config-dist.ini"; $f = fopen($distfile, "r"); } if ($var == '_MAGIC_CLOSE_FILE') { Modified: trunk/lib/ErrorManager.php =================================================================== --- trunk/lib/ErrorManager.php 2021-09-30 13:32:04 UTC (rev 10605) +++ trunk/lib/ErrorManager.php 2021-09-30 13:36:50 UTC (rev 10606) @@ -488,12 +488,7 @@ function _getDetail() { $dir = defined('PHPWIKI_DIR') ? PHPWIKI_DIR : substr(dirname(__FILE__), 0, -4); - if (substr(PHP_OS, 0, 3) == 'WIN') { - $dir = str_replace('/', '\\', $dir); - $this->errfile = str_replace('/', '\\', $this->errfile); - $dir .= "\\"; - } else - $dir .= '/'; + $dir .= '/'; $errfile = preg_replace('|^' . preg_quote($dir, '|') . '|', '', $this->errfile); $lines = explode("\n", $this->errstr); if (DEBUG & _DEBUG_VERBOSE) { @@ -631,12 +626,7 @@ { if (!$count) $count = $this->_count; $dir = defined('PHPWIKI_DIR') ? PHPWIKI_DIR : substr(dirname(__FILE__), 0, -4); - if (substr(PHP_OS, 0, 3) == 'WIN') { - $dir = str_replace('/', '\\', $dir); - $this->errfile = str_replace('/', '\\', $this->errfile); - $dir .= "\\"; - } else - $dir .= '/'; + $dir .= '/'; $errfile = preg_replace('|^' . preg_quote($dir, '|') . '|', '', $this->errfile); if (is_string($this->errstr)) $lines = explode("\n", $this->errstr); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-10-01 13:38:09
|
Revision: 10609 http://sourceforge.net/p/phpwiki/code/10609 Author: vargenau Date: 2021-10-01 13:38:08 +0000 (Fri, 01 Oct 2021) Log Message: ----------- lib/plugin/LikePages.php: prefix and suffix are strings; test noheader Modified Paths: -------------- trunk/lib/plugin/LikePages.php trunk/pgsrc/Help%2FLikePagesPlugin Modified: trunk/lib/plugin/LikePages.php =================================================================== --- trunk/lib/plugin/LikePages.php 2021-09-30 16:00:00 UTC (rev 10608) +++ trunk/lib/plugin/LikePages.php 2021-10-01 13:38:08 UTC (rev 10609) @@ -40,8 +40,8 @@ ( PageList::supportedArgs(), array('page' => '[pagename]', - 'prefix' => false, - 'suffix' => false, + 'prefix' => '', + 'suffix' => '', 'noheader' => false, )); } @@ -65,6 +65,16 @@ if (empty($page) && empty($prefix) && empty($suffix)) return ''; + if (!is_bool($noheader)) { + if (($noheader == '0') || ($noheader == 'false')) { + $noheader = false; + } elseif (($noheader == '1') || ($noheader == 'true')) { + $noheader = true; + } else { + return $this->error(sprintf(_("Argument '%s' must be a boolean"), "noheader")); + } + } + if ($prefix) { $suffix = false; $descrip = fmt("Page names with prefix “%s”", $prefix); @@ -101,8 +111,9 @@ $match_re = '/' . join('|', $match) . '/'; $pagelist = new PageList($info, $exclude, $args); - if (!$noheader) + if (!$noheader) { $pagelist->setCaption($descrip); + } $pages = $dbi->titleSearch($query); while ($page = $pages->next()) { $name = $page->getName(); Modified: trunk/pgsrc/Help%2FLikePagesPlugin =================================================================== --- trunk/pgsrc/Help%2FLikePagesPlugin 2021-09-30 16:00:00 UTC (rev 10608) +++ trunk/pgsrc/Help%2FLikePagesPlugin 2021-10-01 13:38:08 UTC (rev 10609) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 +Date: Fri, 1 Oct 2021 15:22:19 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FLikePagesPlugin; @@ -30,11 +30,11 @@ |- | **prefix** | List only pages that share the same prefix -| false +| //empty string// |- | **suffix** | List only pages that share the same suffix -| false +| //empty string// |} == Examples == This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-10-11 13:27:19
|
Revision: 10626 http://sourceforge.net/p/phpwiki/code/10626 Author: vargenau Date: 2021-10-11 13:27:16 +0000 (Mon, 11 Oct 2021) Log Message: ----------- Remove comment about UserPreferences needing personal HomePage; update translations Modified Paths: -------------- trunk/locale/Makefile trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo trunk/themes/default/templates/login.tmpl Modified: trunk/locale/Makefile =================================================================== --- trunk/locale/Makefile 2021-10-11 13:04:06 UTC (rev 10625) +++ trunk/locale/Makefile 2021-10-11 13:27:16 UTC (rev 10626) @@ -309,7 +309,6 @@ ${POT_FILE}: .././lib/WikiDB/backend/dbaBase.php ${POT_FILE}: .././lib/WikiDB/backend/dba.php ${POT_FILE}: .././lib/WikiDB/backend/dumb/AllRevisionsIter.php -${POT_FILE}: .././lib/WikiDB/backend/dumb/BackLinkIter.php ${POT_FILE}: .././lib/WikiDB/backend/dumb/LinkSearchIter.php ${POT_FILE}: .././lib/WikiDB/backend/dumb/MostPopularIter.php ${POT_FILE}: .././lib/WikiDB/backend/dumb/MostRecentIter.php Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2021-10-11 13:04:06 UTC (rev 10625) +++ trunk/locale/po/de.po 2021-10-11 13:27:16 UTC (rev 10626) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-16 19:32+0200\n" +"POT-Creation-Date: 2021-10-11 15:25+0200\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -1849,6 +1849,9 @@ msgid "Search an LDAP directory." msgstr "Durchsuche ein LDAP Verzeichnis." +msgid "Error: PHP function “ldap_connect” is not installed." +msgstr "" + msgid "Failed to connect to LDAP host" msgstr "LDAP Server nicht gefunden" @@ -4682,10 +4685,6 @@ "endgültigen Speicherplatz, Sie laufen sonst Gefahr, alle Seiten zu verlieren." #, php-format -msgid "renamed from %s" -msgstr "umbenannt von %s" - -#, php-format msgid "%s: Date of new revision is %s" msgstr "%s: Datum dieser aktuellen Neubearbeitung ist %s" @@ -4731,10 +4730,6 @@ msgstr "Unbekannte Spezialgruppe »%s«" #, php-format -msgid "Group page “%s” does not exist" -msgstr "Gruppenseite »%s« existiert nicht" - -#, php-format msgid "Group %s does not exist" msgstr "Gruppe %s existiert nicht" @@ -5315,14 +5310,6 @@ "zulässig). Der Benutzername wird in NeuesteÄnderungen als Link auf Ihre " "Homepage verwendet." -msgid "" -"Note: Only if you create your personal HomePage with same the pagename as " -"your user id, you will be able to store your UserPreferences. Otherwise not." -msgstr "" -"Beachte: Nur wenn Sie Ihre persönliche HomePage mit dem selben Seitennamen " -"wie Ihre Benutzernamen erzeugen, werden Sie Ihre BenutzerEinstellungen " -"speichern können." - msgid "New users may use an empty password." msgstr "Neue Benutzer können auch ohne Passwort einloggen." @@ -5863,6 +5850,21 @@ msgid "Edit this page" msgstr "Diese Seite bearbeiten" +#~ msgid "renamed from %s" +#~ msgstr "umbenannt von %s" + +#~ msgid "Group page “%s” does not exist" +#~ msgstr "Gruppenseite »%s« existiert nicht" + +#~ msgid "" +#~ "Note: Only if you create your personal HomePage with same the pagename as " +#~ "your user id, you will be able to store your UserPreferences. Otherwise " +#~ "not." +#~ msgstr "" +#~ "Beachte: Nur wenn Sie Ihre persönliche HomePage mit dem selben " +#~ "Seitennamen wie Ihre Benutzernamen erzeugen, werden Sie Ihre " +#~ "BenutzerEinstellungen speichern können." + #~ msgid "Optimizing database" #~ msgstr "Datenbank wird optimiert" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2021-10-11 13:04:06 UTC (rev 10625) +++ trunk/locale/po/es.po 2021-10-11 13:27:16 UTC (rev 10626) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-16 19:32+0200\n" +"POT-Creation-Date: 2021-10-11 15:25+0200\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -1817,6 +1817,9 @@ msgid "Search an LDAP directory." msgstr "" +msgid "Error: PHP function “ldap_connect” is not installed." +msgstr "" + msgid "Failed to connect to LDAP host" msgstr "Incapaz conectar con el servidor de LDAP" @@ -4556,10 +4559,6 @@ "arriesgúela el perder de todas las páginas!" #, php-format -msgid "renamed from %s" -msgstr "retitulado de %s" - -#, php-format msgid "%s: Date of new revision is %s" msgstr "%s: La fecha de la nueva revisión es %s" @@ -4605,10 +4604,6 @@ msgstr "Grupo especial desconocido “%s”" #, php-format -msgid "Group page “%s” does not exist" -msgstr "La página “%s” del grupo no existe" - -#, php-format msgid "Group %s does not exist" msgstr "El grupo %s no existe" @@ -5183,11 +5178,6 @@ "in RecentChanges to your home page." msgstr "" -msgid "" -"Note: Only if you create your personal HomePage with same the pagename as " -"your user id, you will be able to store your UserPreferences. Otherwise not." -msgstr "" - msgid "New users may use an empty password." msgstr "" @@ -5692,6 +5682,12 @@ msgid "Edit this page" msgstr "Corrija esta página" +#~ msgid "renamed from %s" +#~ msgstr "retitulado de %s" + +#~ msgid "Group page “%s” does not exist" +#~ msgstr "La página “%s” del grupo no existe" + #~ msgid "Optimizing database" #~ msgstr "Base de datos óptima" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2021-10-11 13:04:06 UTC (rev 10625) +++ trunk/locale/po/fr.po 2021-10-11 13:27:16 UTC (rev 10626) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-16 19:32+0200\n" +"POT-Creation-Date: 2021-10-11 15:25+0200\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -1847,6 +1847,9 @@ msgid "Search an LDAP directory." msgstr "Chercher dans un annuaire LDAP." +msgid "Error: PHP function “ldap_connect” is not installed." +msgstr "" + msgid "Failed to connect to LDAP host" msgstr "Impossible de se connecter au serveur LDAP " @@ -4654,10 +4657,6 @@ "de perdre toutes vos pages !" #, php-format -msgid "renamed from %s" -msgstr "renommée à partir de %s" - -#, php-format msgid "%s: Date of new revision is %s" msgstr "%s : la date de la nouvelle version est %s" @@ -4703,10 +4702,6 @@ msgstr "Groupe spécial « %s » inconnu" #, php-format -msgid "Group page “%s” does not exist" -msgstr "Le groupe de page « %s » n'existe pas" - -#, php-format msgid "Group %s does not exist" msgstr "Le groupe %s n'existe pas" @@ -5280,13 +5275,6 @@ "identifiant utilisateur (ÀÖØöøÿßö peuvent être utilisés). L'identifiant sera " "utilisé comme lien vers votre PagePersonnelle dans DernièresModifs." -msgid "" -"Note: Only if you create your personal HomePage with same the pagename as " -"your user id, you will be able to store your UserPreferences. Otherwise not." -msgstr "" -"Note: Vous pourrez enregistrer vos PréférencesUtilisateurs uniquement si " -"vous créez votre propre page d'accueil portant le nom de votre identifiant." - msgid "New users may use an empty password." msgstr "Les nouveaux utilisateurs devraient utiliser un mot de passe vide." @@ -5815,6 +5803,21 @@ msgid "Edit this page" msgstr "Modifier cette page" +#~ msgid "renamed from %s" +#~ msgstr "renommée à partir de %s" + +#~ msgid "Group page “%s” does not exist" +#~ msgstr "Le groupe de page « %s » n'existe pas" + +#~ msgid "" +#~ "Note: Only if you create your personal HomePage with same the pagename as " +#~ "your user id, you will be able to store your UserPreferences. Otherwise " +#~ "not." +#~ msgstr "" +#~ "Note: Vous pourrez enregistrer vos PréférencesUtilisateurs uniquement si " +#~ "vous créez votre propre page d'accueil portant le nom de votre " +#~ "identifiant." + #~ msgid "Optimizing database" #~ msgstr "Optimisation de la base de données" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2021-10-11 13:04:06 UTC (rev 10625) +++ trunk/locale/po/it.po 2021-10-11 13:27:16 UTC (rev 10626) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-16 19:32+0200\n" +"POT-Creation-Date: 2021-10-11 15:25+0200\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -1800,6 +1800,9 @@ msgid "Search an LDAP directory." msgstr "" +msgid "Error: PHP function “ldap_connect” is not installed." +msgstr "" + msgid "Failed to connect to LDAP host" msgstr "Non riesco a stabilire una connessione col LDAP" @@ -4530,10 +4533,6 @@ msgstr "" #, php-format -msgid "renamed from %s" -msgstr "" - -#, php-format msgid "%s: Date of new revision is %s" msgstr "" @@ -4579,10 +4578,6 @@ msgstr "" #, php-format -msgid "Group page “%s” does not exist" -msgstr "" - -#, php-format msgid "Group %s does not exist" msgstr "" @@ -5142,11 +5137,6 @@ "in RecentChanges to your home page." msgstr "" -msgid "" -"Note: Only if you create your personal HomePage with same the pagename as " -"your user id, you will be able to store your UserPreferences. Otherwise not." -msgstr "" - msgid "New users may use an empty password." msgstr "" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2021-10-11 13:04:06 UTC (rev 10625) +++ trunk/locale/po/ja.po 2021-10-11 13:27:16 UTC (rev 10626) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-16 19:32+0200\n" +"POT-Creation-Date: 2021-10-11 15:25+0200\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -1786,6 +1786,9 @@ msgid "Search an LDAP directory." msgstr "" +msgid "Error: PHP function “ldap_connect” is not installed." +msgstr "" + msgid "Failed to connect to LDAP host" msgstr "" @@ -4516,10 +4519,6 @@ msgstr "" #, php-format -msgid "renamed from %s" -msgstr "" - -#, php-format msgid "%s: Date of new revision is %s" msgstr "" @@ -4565,10 +4564,6 @@ msgstr "" #, php-format -msgid "Group page “%s” does not exist" -msgstr "" - -#, php-format msgid "Group %s does not exist" msgstr "" @@ -5128,11 +5123,6 @@ "in RecentChanges to your home page." msgstr "" -msgid "" -"Note: Only if you create your personal HomePage with same the pagename as " -"your user id, you will be able to store your UserPreferences. Otherwise not." -msgstr "" - msgid "New users may use an empty password." msgstr "" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2021-10-11 13:04:06 UTC (rev 10625) +++ trunk/locale/po/nl.po 2021-10-11 13:27:16 UTC (rev 10626) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-16 19:32+0200\n" +"POT-Creation-Date: 2021-10-11 15:25+0200\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -1792,6 +1792,9 @@ msgid "Search an LDAP directory." msgstr "" +msgid "Error: PHP function “ldap_connect” is not installed." +msgstr "" + msgid "Failed to connect to LDAP host" msgstr "" @@ -4522,10 +4525,6 @@ msgstr "" #, php-format -msgid "renamed from %s" -msgstr "" - -#, php-format msgid "%s: Date of new revision is %s" msgstr "" @@ -4571,10 +4570,6 @@ msgstr "" #, php-format -msgid "Group page “%s” does not exist" -msgstr "" - -#, php-format msgid "Group %s does not exist" msgstr "" @@ -5134,11 +5129,6 @@ "in RecentChanges to your home page." msgstr "" -msgid "" -"Note: Only if you create your personal HomePage with same the pagename as " -"your user id, you will be able to store your UserPreferences. Otherwise not." -msgstr "" - msgid "New users may use an empty password." msgstr "" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2021-10-11 13:04:06 UTC (rev 10625) +++ trunk/locale/po/phpwiki.pot 2021-10-11 13:27:16 UTC (rev 10626) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-16 19:32+0200\n" +"POT-Creation-Date: 2021-10-11 15:25+0200\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -1786,6 +1786,9 @@ msgid "Search an LDAP directory." msgstr "" +msgid "Error: PHP function “ldap_connect” is not installed." +msgstr "" + msgid "Failed to connect to LDAP host" msgstr "" @@ -4516,10 +4519,6 @@ msgstr "" #, php-format -msgid "renamed from %s" -msgstr "" - -#, php-format msgid "%s: Date of new revision is %s" msgstr "" @@ -4565,10 +4564,6 @@ msgstr "" #, php-format -msgid "Group page “%s” does not exist" -msgstr "" - -#, php-format msgid "Group %s does not exist" msgstr "" @@ -5128,11 +5123,6 @@ "in RecentChanges to your home page." msgstr "" -msgid "" -"Note: Only if you create your personal HomePage with same the pagename as " -"your user id, you will be able to store your UserPreferences. Otherwise not." -msgstr "" - msgid "New users may use an empty password." msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2021-10-11 13:04:06 UTC (rev 10625) +++ trunk/locale/po/sv.po 2021-10-11 13:27:16 UTC (rev 10626) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-16 19:32+0200\n" +"POT-Creation-Date: 2021-10-11 15:25+0200\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -1787,6 +1787,9 @@ msgid "Search an LDAP directory." msgstr "" +msgid "Error: PHP function “ldap_connect” is not installed." +msgstr "" + msgid "Failed to connect to LDAP host" msgstr "" @@ -4517,10 +4520,6 @@ msgstr "" #, php-format -msgid "renamed from %s" -msgstr "" - -#, php-format msgid "%s: Date of new revision is %s" msgstr "" @@ -4566,10 +4565,6 @@ msgstr "" #, php-format -msgid "Group page “%s” does not exist" -msgstr "" - -#, php-format msgid "Group %s does not exist" msgstr "" @@ -5129,11 +5124,6 @@ "in RecentChanges to your home page." msgstr "" -msgid "" -"Note: Only if you create your personal HomePage with same the pagename as " -"your user id, you will be able to store your UserPreferences. Otherwise not." -msgstr "" - msgid "New users may use an empty password." msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2021-10-11 13:04:06 UTC (rev 10625) +++ trunk/locale/po/zh.po 2021-10-11 13:27:16 UTC (rev 10626) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-16 19:32+0200\n" +"POT-Creation-Date: 2021-10-11 15:25+0200\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -1793,6 +1793,9 @@ msgid "Search an LDAP directory." msgstr "" +msgid "Error: PHP function “ldap_connect” is not installed." +msgstr "" + msgid "Failed to connect to LDAP host" msgstr "無法連結到 LDAP 伺服器" @@ -4533,10 +4536,6 @@ "能遺失所有頁面!" #, php-format -msgid "renamed from %s" -msgstr "從 %s 更名" - -#, php-format msgid "%s: Date of new revision is %s" msgstr "%s: 新版本的日期是 %s" @@ -4582,10 +4581,6 @@ msgstr "" #, php-format -msgid "Group page “%s” does not exist" -msgstr "" - -#, php-format msgid "Group %s does not exist" msgstr "群組 %s 不存在" @@ -5152,11 +5147,6 @@ "在使用任何 [[Help:AddingPages|WikiWord]] 前必須先以你的帳號簽入. (%s 等. 或" "許也已經被其他人使用了). 帳號將會在近期更動中被用來作為連到你首頁的連結." -msgid "" -"Note: Only if you create your personal HomePage with same the pagename as " -"your user id, you will be able to store your UserPreferences. Otherwise not." -msgstr "" - msgid "New users may use an empty password." msgstr "新使用者可以使用空白密碼." @@ -5665,6 +5655,9 @@ msgid "Edit this page" msgstr "編輯此頁面" +#~ msgid "renamed from %s" +#~ msgstr "從 %s 更名" + #~ msgid "Thank you for editing %s." #~ msgstr "謝謝你編輯了 %s." Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/themes/default/templates/login.tmpl =================================================================== --- trunk/themes/default/templates/login.tmpl 2021-10-11 13:04:06 UTC (rev 10625) +++ trunk/themes/default/templates/login.tmpl 2021-10-11 13:27:16 UTC (rev 10626) @@ -52,11 +52,6 @@ } else { echo $t; } - /* On disabled DbPrefs (PagePrefs only) note the user to create his PersonalPage. */ - // don't understand why I put this in --rurban - if (!isset($user->_prefs->_select)) { - echo asXML(TransformText(_("Note: Only if you create your personal HomePage with same the pagename as your user id, you will be able to store your UserPreferences. Otherwise not."))); - } if (empty($pass_required)) ?> <p><?php echo _("New users may use an empty password.") ?></p> <?php } ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-10-11 13:47:57
|
Revision: 10627 http://sourceforge.net/p/phpwiki/code/10627 Author: vargenau Date: 2021-10-11 13:47:54 +0000 (Mon, 11 Oct 2021) Log Message: ----------- PreferencesInfo plugin removed Modified Paths: -------------- trunk/lib/IniConfig.php trunk/lib/plugin/WikiTranslation.php trunk/locale/Makefile trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo trunk/pgsrc/ReleaseNotes trunk/themes/default/templates/userprefs.tmpl trunk/themes/fusionforge/templates/userprefs.tmpl Removed Paths: ------------- trunk/lib/plugin/PreferencesInfo.php trunk/pgsrc/Help%2FPreferencesInfoPlugin Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2021-10-11 13:27:16 UTC (rev 10626) +++ trunk/lib/IniConfig.php 2021-10-11 13:47:54 UTC (rev 10627) @@ -592,7 +592,6 @@ $AllAllowedPlugins[] = 'Ploticus'; $AllAllowedPlugins[] = 'PopularNearby'; $AllAllowedPlugins[] = 'PreferenceApp'; - $AllAllowedPlugins[] = 'PreferencesInfo'; $AllAllowedPlugins[] = 'SqlResult'; $AllAllowedPlugins[] = 'TeX2png'; $AllAllowedPlugins[] = 'text2png'; Deleted: trunk/lib/plugin/PreferencesInfo.php =================================================================== --- trunk/lib/plugin/PreferencesInfo.php 2021-10-11 13:27:16 UTC (rev 10626) +++ trunk/lib/plugin/PreferencesInfo.php 2021-10-11 13:47:54 UTC (rev 10627) @@ -1,57 +0,0 @@ -<?php -/** - * Copyright © 1999, 2000, 2001, 2002 $ThePhpWikiProgrammingTeam - * - * This file is part of PhpWiki. - * - * PhpWiki is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * PhpWiki is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with PhpWiki; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - * - * SPDX-License-Identifier: GPL-2.0-or-later - * - */ - -/** - * Plugin to display the current preferences without auth check. - */ - -class WikiPlugin_PreferencesInfo - extends WikiPlugin -{ - function getDescription() - { - return sprintf(_("Get preferences information for current user %s."), - '[userid]'); - } - - function getDefaultArguments() - { - return array('page' => '[pagename]', - 'userid' => '[userid]'); - } - - /** - * @param WikiDB $dbi - * @param string $argstr - * @param WikiRequest $request - * @param string $basepage - * @return mixed - */ - function run($dbi, $argstr, &$request, $basepage) - { - $args = $this->getArgs($argstr, $request); - // $user = &$request->getUser(); - return Template('userprefs', $args); - } -} Modified: trunk/lib/plugin/WikiTranslation.php =================================================================== --- trunk/lib/plugin/WikiTranslation.php 2021-10-11 13:27:16 UTC (rev 10626) +++ trunk/lib/plugin/WikiTranslation.php 2021-10-11 13:47:54 UTC (rev 10627) @@ -156,7 +156,6 @@ _("PopularTags") . ',' . _("PopUp") . ',' . _("PreferenceApp") . ',' . - _("PreferencesInfo") . ',' . _("PrevNext") . ',' . _("Processing") . ',' . _("RandomPage") . ',' . Modified: trunk/locale/Makefile =================================================================== --- trunk/locale/Makefile 2021-10-11 13:27:16 UTC (rev 10626) +++ trunk/locale/Makefile 2021-10-11 13:47:54 UTC (rev 10627) @@ -228,7 +228,6 @@ ${POT_FILE}: .././lib/plugin/PopularTags.php ${POT_FILE}: .././lib/plugin/PopUp.php ${POT_FILE}: .././lib/plugin/PreferenceApp.php -${POT_FILE}: .././lib/plugin/PreferencesInfo.php ${POT_FILE}: .././lib/plugin/PrevNext.php ${POT_FILE}: .././lib/plugin/Processing.php ${POT_FILE}: .././lib/plugin/RandomPage.php Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2021-10-11 13:27:16 UTC (rev 10626) +++ trunk/locale/po/de.po 2021-10-11 13:47:54 UTC (rev 10627) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-11 15:25+0200\n" +"POT-Creation-Date: 2021-10-11 15:43+0200\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -2357,10 +2357,6 @@ msgstr "" #, php-format -msgid "Get preferences information for current user %s." -msgstr "Zeige Benutzereinstellungen für den aktuellen Benutzer %s." - -#, php-format msgid "Easy navigation buttons for %s." msgstr "Einfache Navgiationsknöpfe für %s." @@ -4232,9 +4228,6 @@ msgid "PreferenceApp" msgstr "" -msgid "PreferencesInfo" -msgstr "EinstellungenInfo" - msgid "PrevNext" msgstr "VorigeNächste" @@ -5856,15 +5849,6 @@ #~ msgid "Group page “%s” does not exist" #~ msgstr "Gruppenseite »%s« existiert nicht" -#~ msgid "" -#~ "Note: Only if you create your personal HomePage with same the pagename as " -#~ "your user id, you will be able to store your UserPreferences. Otherwise " -#~ "not." -#~ msgstr "" -#~ "Beachte: Nur wenn Sie Ihre persönliche HomePage mit dem selben " -#~ "Seitennamen wie Ihre Benutzernamen erzeugen, werden Sie Ihre " -#~ "BenutzerEinstellungen speichern können." - #~ msgid "Optimizing database" #~ msgstr "Datenbank wird optimiert" @@ -5871,12 +5855,6 @@ #~ msgid "Thank you for editing %s." #~ msgstr "Danke für das Bearbeiten von %s." -#~ msgid "Your careful attention to detail is much appreciated." -#~ msgstr "" -#~ "Die besondere Aufmerksamkeit, die Sie soeben der Bearbeitung dieser Seite " -#~ "gewidmet haben, wird von allen Benutzern dieses Wikis gern gesehen und " -#~ "hoch geschätzt." - #~ msgid "Keep up to %d major edits, but keep them no longer than %d days." #~ msgstr "" #~ "Aufbewahrung größerer Änderungen für %d, aber nicht länger als %d Tage." Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2021-10-11 13:27:16 UTC (rev 10626) +++ trunk/locale/po/es.po 2021-10-11 13:47:54 UTC (rev 10627) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-11 15:25+0200\n" +"POT-Creation-Date: 2021-10-11 15:43+0200\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -2295,10 +2295,6 @@ msgstr "" #, php-format -msgid "Get preferences information for current user %s." -msgstr "" - -#, php-format msgid "Easy navigation buttons for %s." msgstr "" @@ -4116,9 +4112,6 @@ msgid "PreferenceApp" msgstr "" -msgid "PreferencesInfo" -msgstr "" - msgid "PrevNext" msgstr "" @@ -5694,9 +5687,6 @@ #~ msgid "Thank you for editing %s." #~ msgstr "Gracias por editar %s." -#~ msgid "Your careful attention to detail is much appreciated." -#~ msgstr "Se agradece una cuidadosa atención a los detalles." - #~ msgid "fixed" #~ msgstr "fijo" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2021-10-11 13:27:16 UTC (rev 10626) +++ trunk/locale/po/fr.po 2021-10-11 13:47:54 UTC (rev 10627) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-11 15:25+0200\n" +"POT-Creation-Date: 2021-10-11 15:43+0200\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -2339,10 +2339,6 @@ msgstr "Budget total" #, php-format -msgid "Get preferences information for current user %s." -msgstr "Obtenir des informations de préférences pour l'utilisateur %s." - -#, php-format msgid "Easy navigation buttons for %s." msgstr "Boutons de navigation rapide pour %s." @@ -4206,9 +4202,6 @@ msgid "PreferenceApp" msgstr "AppPréférences" -msgid "PreferencesInfo" -msgstr "PréférencesInfo" - msgid "PrevNext" msgstr "PrécédentSuivant" @@ -5809,15 +5802,6 @@ #~ msgid "Group page “%s” does not exist" #~ msgstr "Le groupe de page « %s » n'existe pas" -#~ msgid "" -#~ "Note: Only if you create your personal HomePage with same the pagename as " -#~ "your user id, you will be able to store your UserPreferences. Otherwise " -#~ "not." -#~ msgstr "" -#~ "Note: Vous pourrez enregistrer vos PréférencesUtilisateurs uniquement si " -#~ "vous créez votre propre page d'accueil portant le nom de votre " -#~ "identifiant." - #~ msgid "Optimizing database" #~ msgstr "Optimisation de la base de données" @@ -5824,9 +5808,6 @@ #~ msgid "Thank you for editing %s." #~ msgstr "Merci d'avoir édité %s." -#~ msgid "Your careful attention to detail is much appreciated." -#~ msgstr "Votre souci particulier du détail est très apprécié." - #~ msgid "Keep up to %d major edits, but keep them no longer than %d days." #~ msgstr "Garder jusqu'à %d édition majeures, mais pas plus que %d jours." Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2021-10-11 13:27:16 UTC (rev 10626) +++ trunk/locale/po/it.po 2021-10-11 13:47:54 UTC (rev 10627) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-11 15:25+0200\n" +"POT-Creation-Date: 2021-10-11 15:43+0200\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -2276,10 +2276,6 @@ msgstr "" #, php-format -msgid "Get preferences information for current user %s." -msgstr "" - -#, php-format msgid "Easy navigation buttons for %s." msgstr "" @@ -4093,9 +4089,6 @@ msgid "PreferenceApp" msgstr "PreferenzeApp" -msgid "PreferencesInfo" -msgstr "PreferenzeInfo" - msgid "PrevNext" msgstr "Seguente" @@ -5644,13 +5637,6 @@ #~ msgid "Optimizing database" #~ msgstr "Base di dati d'ottimizzazione" -#~ msgid "Thank you for editing %s." -#~ msgstr "La pagina %s <E8> stata modificata." - -#~ msgid "Your careful attention to detail is much appreciated." -#~ msgstr "" -#~ "Si prega di controllare che le modifiche siano quelle volute. Grazie." - #~ msgid "fixed with" #~ msgstr "Modifica" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2021-10-11 13:27:16 UTC (rev 10626) +++ trunk/locale/po/ja.po 2021-10-11 13:47:54 UTC (rev 10627) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-11 15:25+0200\n" +"POT-Creation-Date: 2021-10-11 15:43+0200\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -2262,10 +2262,6 @@ msgstr "" #, php-format -msgid "Get preferences information for current user %s." -msgstr "" - -#, php-format msgid "Easy navigation buttons for %s." msgstr "" @@ -4079,9 +4075,6 @@ msgid "PreferenceApp" msgstr "" -msgid "PreferencesInfo" -msgstr "" - msgid "PrevNext" msgstr "前後" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2021-10-11 13:27:16 UTC (rev 10626) +++ trunk/locale/po/nl.po 2021-10-11 13:47:54 UTC (rev 10627) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-11 15:25+0200\n" +"POT-Creation-Date: 2021-10-11 15:43+0200\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -2268,10 +2268,6 @@ msgstr "" #, php-format -msgid "Get preferences information for current user %s." -msgstr "" - -#, php-format msgid "Easy navigation buttons for %s." msgstr "" @@ -4085,9 +4081,6 @@ msgid "PreferenceApp" msgstr "" -msgid "PreferencesInfo" -msgstr "" - msgid "PrevNext" msgstr "" @@ -5636,9 +5629,6 @@ #~ msgid "Thank you for editing %s." #~ msgstr "Bedankt voor het veranderen van %s." -#~ msgid "Your careful attention to detail is much appreciated." -#~ msgstr "Je zorgvuldige aandacht voor detail wordt erg gewaardeerd." - #~ msgid "version <em>%s</em>" #~ msgstr "versie <em>%s</em>" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2021-10-11 13:27:16 UTC (rev 10626) +++ trunk/locale/po/phpwiki.pot 2021-10-11 13:47:54 UTC (rev 10627) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-11 15:25+0200\n" +"POT-Creation-Date: 2021-10-11 15:43+0200\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -2262,10 +2262,6 @@ msgstr "" #, php-format -msgid "Get preferences information for current user %s." -msgstr "" - -#, php-format msgid "Easy navigation buttons for %s." msgstr "" @@ -4079,9 +4075,6 @@ msgid "PreferenceApp" msgstr "" -msgid "PreferencesInfo" -msgstr "" - msgid "PrevNext" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2021-10-11 13:27:16 UTC (rev 10626) +++ trunk/locale/po/sv.po 2021-10-11 13:47:54 UTC (rev 10627) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-11 15:25+0200\n" +"POT-Creation-Date: 2021-10-11 15:43+0200\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -2263,10 +2263,6 @@ msgstr "" #, php-format -msgid "Get preferences information for current user %s." -msgstr "" - -#, php-format msgid "Easy navigation buttons for %s." msgstr "" @@ -4080,9 +4076,6 @@ msgid "PreferenceApp" msgstr "" -msgid "PreferencesInfo" -msgstr "" - msgid "PrevNext" msgstr "" @@ -5631,9 +5624,6 @@ #~ msgid "Thank you for editing %s." #~ msgstr "Tack för att du redigerade %s." -#~ msgid "Your careful attention to detail is much appreciated." -#~ msgstr "Din omstänksamhet för detaljer är mycket uppskattad." - #~ msgid "GoodStyle" #~ msgstr "BraStil" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2021-10-11 13:27:16 UTC (rev 10626) +++ trunk/locale/po/zh.po 2021-10-11 13:47:54 UTC (rev 10627) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-11 15:25+0200\n" +"POT-Creation-Date: 2021-10-11 15:43+0200\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -2271,10 +2271,6 @@ msgstr "" #, php-format -msgid "Get preferences information for current user %s." -msgstr "為目前使用者 %s 取得偏好設定資訊." - -#, php-format msgid "Easy navigation buttons for %s." msgstr "簡單的巡覽按鈕 - %s." @@ -4090,9 +4086,6 @@ msgid "PreferenceApp" msgstr "" -msgid "PreferencesInfo" -msgstr "" - msgid "PrevNext" msgstr "" @@ -5661,9 +5654,6 @@ #~ msgid "Thank you for editing %s." #~ msgstr "謝謝你編輯了 %s." -#~ msgid "Your careful attention to detail is much appreciated." -#~ msgstr "感謝你的小心關注." - #~ msgid "Keep up to %d major edits, but keep them no longer than %d days." #~ msgstr "保持 %d 份主要編輯,但不超過 %d 天." Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Deleted: trunk/pgsrc/Help%2FPreferencesInfoPlugin =================================================================== --- trunk/pgsrc/Help%2FPreferencesInfoPlugin 2021-10-11 13:27:16 UTC (rev 10626) +++ trunk/pgsrc/Help%2FPreferencesInfoPlugin 2021-10-11 13:47:54 UTC (rev 10627) @@ -1,51 +0,0 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) -Content-Type: application/x-phpwiki; - pagename=Help%2FPreferencesInfoPlugin; - flags=PAGE_LOCKED; - charset=UTF-8 -Content-Transfer-Encoding: binary - -Plugin to display the current preferences without auth check. - -== Usage == -{{{ -<<PreferencesInfo>> -}}} - -== Arguments == - -{| class="bordered" -|- -! Argument -! Description -! Default value -|- -| **page** -| The page to execute upon -| Current pagename -|- -| **userid** -| The user name -| Current userid -|} - -== Example == - -{{{ -<<PreferencesInfo>> -}}} - -<<PreferencesInfo>> - -== Author == -* [[Help:Reini Urban|Reini Urban]] - -== See Also == - -* [[UserPreferences]] - -<noinclude> ----- -[[PhpWikiDocumentation]] [[CategoryWikiPlugin]] -</noinclude> Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2021-10-11 13:27:16 UTC (rev 10626) +++ trunk/pgsrc/ReleaseNotes 2021-10-11 13:47:54 UTC (rev 10627) @@ -1,4 +1,4 @@ -Date: Thu, 30 Sep 2021 12:58:41 +0000 +Date: Mon, 11 Oct 2021 15:45:48 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -10,7 +10,7 @@ == 1.6.1 2021-XX-XX Marc-Etienne Vargenau == -This release makes PhpWiki compatable with PHP 8.1. +This release makes ~PhpWiki compatible with PHP 8.1. READONLY is renamed as ISREADONLY, since //readonly// is now a keyword in PHP 8.1. === Fixes === @@ -22,6 +22,7 @@ === Plugins === * Chart plugin: new argument "legend" +* ~PreferencesInfo plugin removed == 1.6.0 2021-08-12 Marc-Etienne Vargenau == Modified: trunk/themes/default/templates/userprefs.tmpl =================================================================== --- trunk/themes/default/templates/userprefs.tmpl 2021-10-11 13:27:16 UTC (rev 10626) +++ trunk/themes/default/templates/userprefs.tmpl 2021-10-11 13:47:54 UTC (rev 10627) @@ -6,10 +6,6 @@ } $plugin = $request->getArg('pagename'); -if (isActionPage($request->getArg('pagename')) - and $isForm and $plugin == _("PreferencesInfo")) { - $isForm = false; -} $time = time(); $user =& $request->getUser(); $pref =& $request->_prefs; @@ -264,7 +260,8 @@ </label> </p> </td> - <td><p class="hint"><?php echo _("Hide or show LinkIcons (if supported by the current theme). Useful for text-only browsers or slow connections.")?></p></td></tr> + <td><p class="hint"><?php echo _("Hide or show LinkIcons (if supported by the current theme). Useful for text-only browsers or slow connections.")?></p></td> + </tr> <tr> <td> <p class="nowrap"> @@ -317,7 +314,7 @@ <?php echo _("Note that many browsers will automatically adjust the width of the editing area so that it fills the browser window. In this case, the width preference will be ignored.") ?></p> </td></tr> - <tr><td colspan="2"><h2><?php echo _("Time Zone")?></h2></td></tr> + <tr><td colspan="2"><h2><?php echo _("Time Zone") ?></h2></td></tr> <tr> <td> Modified: trunk/themes/fusionforge/templates/userprefs.tmpl =================================================================== --- trunk/themes/fusionforge/templates/userprefs.tmpl 2021-10-11 13:27:16 UTC (rev 10626) +++ trunk/themes/fusionforge/templates/userprefs.tmpl 2021-10-11 13:47:54 UTC (rev 10627) @@ -6,10 +6,6 @@ } $plugin = $request->getArg('pagename'); -if (isActionPage($request->getArg('pagename')) - and $isForm and $plugin == _("PreferencesInfo")) { - $isForm = false; -} $time = time(); $user =& $request->getUser(); $pref =& $request->_prefs; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-10-31 16:47:27
|
Revision: 10640 http://sourceforge.net/p/phpwiki/code/10640 Author: vargenau Date: 2021-10-31 16:47:25 +0000 (Sun, 31 Oct 2021) Log Message: ----------- More translations in Sidebar theme Modified Paths: -------------- trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo trunk/themes/MonoBook/templates/actionbar.tmpl trunk/themes/Sidebar/templates/actionbar.tmpl trunk/themes/Sidebar/templates/navbar.tmpl Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2021-10-28 11:00:05 UTC (rev 10639) +++ trunk/locale/po/de.po 2021-10-31 16:47:25 UTC (rev 10640) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-20 09:20+0200\n" +"POT-Creation-Date: 2021-10-31 17:44+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -5702,8 +5702,8 @@ msgid "Special Actions" msgstr "" -msgid "Author history" -msgstr "" +msgid "Author History" +msgstr "Autoren Protokoll" msgid "Purge HTML cache" msgstr "HTML-Cachedatei Säubern" @@ -5823,6 +5823,18 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "" +msgid "Page History" +msgstr "Seite Protokoll" + +msgid "How to use this Wiki" +msgstr "Wie man Wiki benutzt" + +msgid "Adding Pages" +msgstr "Seiten erzeugen" + +msgid "List all Categories" +msgstr "Alle Kategorien" + msgid "Main Categories Menu" msgstr "" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2021-10-28 11:00:05 UTC (rev 10639) +++ trunk/locale/po/es.po 2021-10-31 16:47:25 UTC (rev 10640) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-20 09:20+0200\n" +"POT-Creation-Date: 2021-10-31 17:44+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -5549,7 +5549,7 @@ msgid "Special Actions" msgstr "" -msgid "Author history" +msgid "Author History" msgstr "" msgid "Purge HTML cache" @@ -5658,6 +5658,18 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "" +msgid "Page History" +msgstr "" + +msgid "How to use this Wiki" +msgstr "" + +msgid "Adding Pages" +msgstr "" + +msgid "List all Categories" +msgstr "" + msgid "Main Categories Menu" msgstr "" @@ -5706,9 +5718,6 @@ #~ msgid "GoodStyle" #~ msgstr "BuenEstilo" -#~ msgid "Page info" -#~ msgstr "Informacion de la Pagina" - #~ msgid "Page dump" #~ msgstr "Descarge de la Página" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2021-10-28 11:00:05 UTC (rev 10639) +++ trunk/locale/po/fr.po 2021-10-31 16:47:25 UTC (rev 10640) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-20 09:20+0200\n" +"POT-Creation-Date: 2021-10-31 17:44+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -5668,7 +5668,7 @@ msgid "Special Actions" msgstr "Actions spéciales" -msgid "Author history" +msgid "Author History" msgstr "Historique des auteurs" msgid "Purge HTML cache" @@ -5781,6 +5781,18 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "Ajouter ou supprimer de la liste de pages que vous surveillez" +msgid "Page History" +msgstr "Historique de la page" + +msgid "How to use this Wiki" +msgstr "Comment utiliser ce wiki" + +msgid "Adding Pages" +msgstr "Ajouter des pages" + +msgid "List all Categories" +msgstr "Toutes les catégories" + msgid "Main Categories Menu" msgstr "Menu des catégories principales" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2021-10-28 11:00:05 UTC (rev 10639) +++ trunk/locale/po/it.po 2021-10-31 16:47:25 UTC (rev 10640) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-20 09:20+0200\n" +"POT-Creation-Date: 2021-10-31 17:44+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -5508,7 +5508,7 @@ msgid "Special Actions" msgstr "" -msgid "Author history" +msgid "Author History" msgstr "" msgid "Purge HTML cache" @@ -5617,6 +5617,18 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "" +msgid "Page History" +msgstr "Storico pagina" + +msgid "How to use this Wiki" +msgstr "Come usare questo Wiki" + +msgid "Adding Pages" +msgstr "Aggiunta pagine" + +msgid "List all Categories" +msgstr "Elenca tutte le categorie" + msgid "Main Categories Menu" msgstr "" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2021-10-28 11:00:05 UTC (rev 10639) +++ trunk/locale/po/ja.po 2021-10-31 16:47:25 UTC (rev 10640) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-20 09:20+0200\n" +"POT-Creation-Date: 2021-10-31 17:44+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -5494,7 +5494,7 @@ msgid "Special Actions" msgstr "" -msgid "Author history" +msgid "Author History" msgstr "" msgid "Purge HTML cache" @@ -5603,6 +5603,18 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "" +msgid "Page History" +msgstr "ページ履歴" + +msgid "How to use this Wiki" +msgstr "" + +msgid "Adding Pages" +msgstr "" + +msgid "List all Categories" +msgstr "" + msgid "Main Categories Menu" msgstr "" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2021-10-28 11:00:05 UTC (rev 10639) +++ trunk/locale/po/nl.po 2021-10-31 16:47:25 UTC (rev 10640) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-20 09:20+0200\n" +"POT-Creation-Date: 2021-10-31 17:44+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -5500,7 +5500,7 @@ msgid "Special Actions" msgstr "" -msgid "Author history" +msgid "Author History" msgstr "" msgid "Purge HTML cache" @@ -5609,6 +5609,18 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "" +msgid "Page History" +msgstr "Pagina Geschiedenis" + +msgid "How to use this Wiki" +msgstr "" + +msgid "Adding Pages" +msgstr "" + +msgid "List all Categories" +msgstr "" + msgid "Main Categories Menu" msgstr "" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2021-10-28 11:00:05 UTC (rev 10639) +++ trunk/locale/po/phpwiki.pot 2021-10-31 16:47:25 UTC (rev 10640) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-20 09:20+0200\n" +"POT-Creation-Date: 2021-10-31 17:44+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -5494,7 +5494,7 @@ msgid "Special Actions" msgstr "" -msgid "Author history" +msgid "Author History" msgstr "" msgid "Purge HTML cache" @@ -5603,6 +5603,18 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "" +msgid "Page History" +msgstr "" + +msgid "How to use this Wiki" +msgstr "" + +msgid "Adding Pages" +msgstr "" + +msgid "List all Categories" +msgstr "" + msgid "Main Categories Menu" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2021-10-28 11:00:05 UTC (rev 10639) +++ trunk/locale/po/sv.po 2021-10-31 16:47:25 UTC (rev 10640) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-20 09:20+0200\n" +"POT-Creation-Date: 2021-10-31 17:44+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -5495,7 +5495,7 @@ msgid "Special Actions" msgstr "" -msgid "Author history" +msgid "Author History" msgstr "" msgid "Purge HTML cache" @@ -5604,6 +5604,18 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "" +msgid "Page History" +msgstr "" + +msgid "How to use this Wiki" +msgstr "" + +msgid "Adding Pages" +msgstr "" + +msgid "List all Categories" +msgstr "" + msgid "Main Categories Menu" msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2021-10-28 11:00:05 UTC (rev 10639) +++ trunk/locale/po/zh.po 2021-10-31 16:47:25 UTC (rev 10640) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-20 09:20+0200\n" +"POT-Creation-Date: 2021-10-31 17:44+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -5522,7 +5522,7 @@ msgid "Special Actions" msgstr "" -msgid "Author history" +msgid "Author History" msgstr "作者歷程" msgid "Purge HTML cache" @@ -5631,6 +5631,18 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "" +msgid "Page History" +msgstr "頁面歷程" + +msgid "How to use this Wiki" +msgstr "" + +msgid "Adding Pages" +msgstr "" + +msgid "List all Categories" +msgstr "" + msgid "Main Categories Menu" msgstr "" @@ -5658,6 +5670,9 @@ msgid "Edit this page" msgstr "編輯此頁面" +#~ msgid "Author history" +#~ msgstr "作者歷程" + #~ msgid "renamed from %s" #~ msgstr "從 %s 更名" Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/themes/MonoBook/templates/actionbar.tmpl =================================================================== --- trunk/themes/MonoBook/templates/actionbar.tmpl 2021-10-28 11:00:05 UTC (rev 10639) +++ trunk/themes/MonoBook/templates/actionbar.tmpl 2021-10-31 16:47:25 UTC (rev 10640) @@ -73,7 +73,7 @@ <?php } ?> <?php } ?> <?php echo ActionButton(array('action'=>__("PageInfo")), _("Page Info"), $pagename) ?> - <?php echo ActionButton(array('action'=>__("AuthorHistory")), _("Author history"), $pagename) ?> + <?php echo ActionButton(array('action'=>__("AuthorHistory")), _("Author History"), $pagename) ?> <?php echo ActionButton("diff") ?> <?php echo ActionButton(array('action'=>__("PageDump")), _("Page Dump"), $pagename) ?> <?php if (DEBUG and USECACHE) { Modified: trunk/themes/Sidebar/templates/actionbar.tmpl =================================================================== --- trunk/themes/Sidebar/templates/actionbar.tmpl 2021-10-28 11:00:05 UTC (rev 10639) +++ trunk/themes/Sidebar/templates/actionbar.tmpl 2021-10-31 16:47:25 UTC (rev 10640) @@ -57,8 +57,8 @@ <?php }} ?> <?php echo ActionButton("viewsource", _("View Source")) ?> <?php echo ActionButton(array('action'=>__('PageInfo')), _("Page Info"), $pagename) ?> - <?php echo ActionButton(__("AuthorHistory"), _("AuthorHistory")) ?> - <?php echo ActionButton(__("PageHistory"), _("PageHistory")) ?> + <?php echo ActionButton(__("AuthorHistory"), _("Author History")) ?> + <?php echo ActionButton(__("PageHistory"), _("Page History")) ?> <?php echo ActionButton("diff") ?> <?php if ($isAdmin) { ?> <?php echo ActionButton(__("PageDump"), _("Page Dump")) ?> Modified: trunk/themes/Sidebar/templates/navbar.tmpl =================================================================== --- trunk/themes/Sidebar/templates/navbar.tmpl 2021-10-28 11:00:05 UTC (rev 10639) +++ trunk/themes/Sidebar/templates/navbar.tmpl 2021-10-31 16:47:25 UTC (rev 10640) @@ -10,9 +10,9 @@ <div class="_pBody"> <ul> <li><?php echo WikiLink(HOME_PAGE) ?></li> - <li><?php echo WikiLink("Help:HowToUseWiki", "auto", "How to use this Wiki") ?></li> - <li><?php echo WikiLink("Help:AddingPages", "auto", "Adding Pages") ?></li> - <li><?php echo WikiLink("CategoryCategory", "auto", "List all Categories") ?></li> + <li><?php echo WikiLink(__("Help").":".__("HowToUseWiki"), "auto", _("How to use this Wiki")) ?></li> + <li><?php echo WikiLink(__("Help").":".__("AddingPages"), "auto", _("Adding Pages")) ?></li> + <li><?php echo WikiLink(__("CategoryCategory"), "auto", _("List all Categories")) ?></li> </ul> </div> </div> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-07 17:37:06
|
Revision: 10642 http://sourceforge.net/p/phpwiki/code/10642 Author: vargenau Date: 2021-11-07 17:37:03 +0000 (Sun, 07 Nov 2021) Log Message: ----------- Markup Cache --> HTML Cache Modified Paths: -------------- trunk/config/config-dist.ini trunk/configurator.php trunk/lib/CachedMarkup.php trunk/lib/main.php trunk/lib/plugin/WikiAdminUtils.php trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo trunk/locale/zh/pgsrc/PhpWikiDebug trunk/pgsrc/PhpWikiDebug trunk/themes/Crao/templates/actionbar.tmpl trunk/themes/MonoBook/templates/info.tmpl trunk/themes/Sidebar/templates/actionbar.tmpl trunk/themes/default/templates/actionbar.tmpl trunk/themes/smaller/templates/info.tmpl Modified: trunk/config/config-dist.ini =================================================================== --- trunk/config/config-dist.ini 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/config/config-dist.ini 2021-11-07 17:37:03 UTC (rev 10642) @@ -359,7 +359,7 @@ ; to the URL to the page or by adding a NoCache plugin line. ; Use '?nocache=purge' to completely discard the cached version of the page. ; You can also purge the cached markup globally by using the -; "Purge Markup Cache" button on the PhpWikiAdministration page. +; "Purge HTML Cache" button on the PhpWikiDebug page. ; Enable only for old php's with low memory or memory_limit=8MB. ; Default: false ;WIKIDB_NOCACHE_MARKUP = true Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/configurator.php 2021-11-07 17:37:03 UTC (rev 10642) @@ -643,8 +643,8 @@ $properties["Markup Caching"] = new boolean_define_commented_optional ('WIKIDB_NOCACHE_MARKUP', - array('false' => 'Enable markup cache', - 'true' => 'Disable markup cache')); + array('false' => 'Enable HTML cache', + 'true' => 'Disable HTML cache')); $properties["COOKIE_EXPIRATION_DAYS"] = new numeric_define_optional('COOKIE_EXPIRATION_DAYS', COOKIE_EXPIRATION_DAYS); Modified: trunk/lib/CachedMarkup.php =================================================================== --- trunk/lib/CachedMarkup.php 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/lib/CachedMarkup.php 2021-11-07 17:37:03 UTC (rev 10642) @@ -579,7 +579,7 @@ $is_attribute = ($m[2] == ':='); if ($is_attribute) { $this->_attribute = urldecode($m[3]); - // since this stored in the markup cache, we are extra sensible + // since this stored in the HTML cache, we are extra sensible // not to store false empty stuff. $units = new Units(); if (!DISABLE_UNITS and !$units->errcode) { Modified: trunk/lib/main.php =================================================================== --- trunk/lib/main.php 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/lib/main.php 2021-11-07 17:37:03 UTC (rev 10642) @@ -1412,7 +1412,7 @@ } /* - * Allow for disabling of markup cache. + * Allow for disabling of HTML cache. * (Mostly for debugging ... hopefully.) * * See also <<WikiAdminUtils action=purge-cache>> Modified: trunk/lib/plugin/WikiAdminUtils.php =================================================================== --- trunk/lib/plugin/WikiAdminUtils.php 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/lib/plugin/WikiAdminUtils.php 2021-11-07 17:37:03 UTC (rev 10642) @@ -117,7 +117,7 @@ private function _getLabel($action) { - $labels = array('purge-cache' => _("Purge Markup Cache"), + $labels = array('purge-cache' => _("Purge HTML Cache"), 'purge-bad-pagenames' => _("Purge all Pages With Invalid Names"), 'purge-empty-pages' => _("Purge all empty, unreferenced Pages"), 'email-verification' => _("E-mail Verification"), @@ -134,7 +134,7 @@ while (($page = $pages->next())) { $page->set('_cached_html', false); } - return _("Markup cache purged!"); + return _("HTML cache purged!"); } private function _do_purge_bad_pagenames($request, $args) Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/locale/po/de.po 2021-11-07 17:37:03 UTC (rev 10642) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-31 17:44+0100\n" +"POT-Creation-Date: 2021-11-07 18:35+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -3786,7 +3786,7 @@ msgid "Back" msgstr "Zurück" -msgid "Purge Markup Cache" +msgid "Purge HTML Cache" msgstr "HTML-Cachedatei Säubern" msgid "Purge all Pages With Invalid Names" @@ -3804,7 +3804,7 @@ msgid "Rebuild Wiki Database" msgstr "" -msgid "Markup cache purged!" +msgid "HTML cache purged!" msgstr "HTML-Cachedaten entfernt!" msgid "No pages with bad names had to be deleted." @@ -5131,9 +5131,6 @@ msgid "Page Dump" msgstr "" -msgid "PurgeHtmlCache" -msgstr "HtmlCacheSäubern" - msgid "" "Purge HTML cache for this page. Regenerate from WikiMarkup when next " "accessed." Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/locale/po/es.po 2021-11-07 17:37:03 UTC (rev 10642) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-31 17:44+0100\n" +"POT-Creation-Date: 2021-11-07 18:35+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -3681,7 +3681,7 @@ msgid "Back" msgstr "" -msgid "Purge Markup Cache" +msgid "Purge HTML Cache" msgstr "" msgid "Purge all Pages With Invalid Names" @@ -3699,7 +3699,7 @@ msgid "Rebuild Wiki Database" msgstr "" -msgid "Markup cache purged!" +msgid "HTML cache purged!" msgstr "" msgid "No pages with bad names had to be deleted." @@ -5008,9 +5008,6 @@ msgid "Page Dump" msgstr "Descarge de la Página" -msgid "PurgeHtmlCache" -msgstr "" - msgid "" "Purge HTML cache for this page. Regenerate from WikiMarkup when next " "accessed." Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/locale/po/fr.po 2021-11-07 17:37:03 UTC (rev 10642) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-31 17:44+0100\n" +"POT-Creation-Date: 2021-11-07 18:35+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -3768,8 +3768,8 @@ msgid "Back" msgstr "Retour" -msgid "Purge Markup Cache" -msgstr "Purger le cache" +msgid "Purge HTML Cache" +msgstr "Purger le cache HTML" msgid "Purge all Pages With Invalid Names" msgstr "Supprimer les pages dont le nom n'est pas valide" @@ -3786,8 +3786,8 @@ msgid "Rebuild Wiki Database" msgstr "Reconstruire la base de données du wiki" -msgid "Markup cache purged!" -msgstr "Cache de marques purgé !" +msgid "HTML cache purged!" +msgstr "Cache HTML purgé !" msgid "No pages with bad names had to be deleted." msgstr "Aucune page avec un nom invalide n'a dû être supprimée." @@ -3990,7 +3990,7 @@ msgstr "Diagramme" msgid "Chown" -msgstr "ChangerDePropriétaire" +msgstr "Changer de propriétaire" msgid "Comment" msgstr "Commentaire" @@ -5101,15 +5101,12 @@ msgid "Page Dump" msgstr "Cliché de la page" -msgid "PurgeHtmlCache" -msgstr "PurgerLeCache" - msgid "" "Purge HTML cache for this page. Regenerate from WikiMarkup when next " "accessed." msgstr "" -"Purge le cache HTML pour cette page. Régénère depuis WikiMarkup lors du " -"prochain accès." +"Purger le cache HTML pour cette page. Sera régénéré depuis le WikiMarkup " +"lors du prochain accès." msgid "Preview only! Changes not saved." msgstr "Prévisualisation uniquement ! Modifications non enregistrées." @@ -5672,7 +5669,7 @@ msgstr "Historique des auteurs" msgid "Purge HTML cache" -msgstr "Vider le cache HTML" +msgstr "Purger le cache HTML" msgid "About" msgstr "À propos de" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/locale/po/it.po 2021-11-07 17:37:03 UTC (rev 10642) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-31 17:44+0100\n" +"POT-Creation-Date: 2021-11-07 18:35+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -3658,8 +3658,8 @@ msgid "Back" msgstr "" -msgid "Purge Markup Cache" -msgstr "" +msgid "Purge HTML Cache" +msgstr "Rimuovi dalla cache HTML" msgid "Purge all Pages With Invalid Names" msgstr "" @@ -3676,7 +3676,7 @@ msgid "Rebuild Wiki Database" msgstr "" -msgid "Markup cache purged!" +msgid "HTML cache purged!" msgstr "" msgid "No pages with bad names had to be deleted." @@ -4968,9 +4968,6 @@ msgid "Page Dump" msgstr "" -msgid "PurgeHtmlCache" -msgstr "RimuoviDallaCacheHtml" - msgid "" "Purge HTML cache for this page. Regenerate from WikiMarkup when next " "accessed." @@ -5659,9 +5656,6 @@ #~ msgid "Optimizing database" #~ msgstr "Base di dati d'ottimizzazione" -#~ msgid "fixed with" -#~ msgstr "Modifica" - #~ msgid "version <em>%s</em>" #~ msgstr "versione <em>%s</em>" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/locale/po/ja.po 2021-11-07 17:37:03 UTC (rev 10642) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-31 17:44+0100\n" +"POT-Creation-Date: 2021-11-07 18:35+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -3644,7 +3644,7 @@ msgid "Back" msgstr "" -msgid "Purge Markup Cache" +msgid "Purge HTML Cache" msgstr "マークアップキャッシュの破棄" msgid "Purge all Pages With Invalid Names" @@ -3662,7 +3662,7 @@ msgid "Rebuild Wiki Database" msgstr "" -msgid "Markup cache purged!" +msgid "HTML cache purged!" msgstr "マークアップキャッシュを破棄しました!" msgid "No pages with bad names had to be deleted." @@ -4954,9 +4954,6 @@ msgid "Page Dump" msgstr "" -msgid "PurgeHtmlCache" -msgstr "" - msgid "" "Purge HTML cache for this page. Regenerate from WikiMarkup when next " "accessed." Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/locale/po/nl.po 2021-11-07 17:37:03 UTC (rev 10642) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-31 17:44+0100\n" +"POT-Creation-Date: 2021-11-07 18:35+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -3650,7 +3650,7 @@ msgid "Back" msgstr "Terug" -msgid "Purge Markup Cache" +msgid "Purge HTML Cache" msgstr "" msgid "Purge all Pages With Invalid Names" @@ -3668,7 +3668,7 @@ msgid "Rebuild Wiki Database" msgstr "" -msgid "Markup cache purged!" +msgid "HTML cache purged!" msgstr "" msgid "No pages with bad names had to be deleted." @@ -4960,9 +4960,6 @@ msgid "Page Dump" msgstr "" -msgid "PurgeHtmlCache" -msgstr "" - msgid "" "Purge HTML cache for this page. Regenerate from WikiMarkup when next " "accessed." Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/locale/po/phpwiki.pot 2021-11-07 17:37:03 UTC (rev 10642) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-31 17:44+0100\n" +"POT-Creation-Date: 2021-11-07 18:35+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -3644,7 +3644,7 @@ msgid "Back" msgstr "" -msgid "Purge Markup Cache" +msgid "Purge HTML Cache" msgstr "" msgid "Purge all Pages With Invalid Names" @@ -3662,7 +3662,7 @@ msgid "Rebuild Wiki Database" msgstr "" -msgid "Markup cache purged!" +msgid "HTML cache purged!" msgstr "" msgid "No pages with bad names had to be deleted." @@ -4954,9 +4954,6 @@ msgid "Page Dump" msgstr "" -msgid "PurgeHtmlCache" -msgstr "" - msgid "" "Purge HTML cache for this page. Regenerate from WikiMarkup when next " "accessed." Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/locale/po/sv.po 2021-11-07 17:37:03 UTC (rev 10642) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-31 17:44+0100\n" +"POT-Creation-Date: 2021-11-07 18:35+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -3645,7 +3645,7 @@ msgid "Back" msgstr "" -msgid "Purge Markup Cache" +msgid "Purge HTML Cache" msgstr "" msgid "Purge all Pages With Invalid Names" @@ -3663,7 +3663,7 @@ msgid "Rebuild Wiki Database" msgstr "" -msgid "Markup cache purged!" +msgid "HTML cache purged!" msgstr "" msgid "No pages with bad names had to be deleted." @@ -4955,9 +4955,6 @@ msgid "Page Dump" msgstr "" -msgid "PurgeHtmlCache" -msgstr "" - msgid "" "Purge HTML cache for this page. Regenerate from WikiMarkup when next " "accessed." Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/locale/po/zh.po 2021-11-07 17:37:03 UTC (rev 10642) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-31 17:44+0100\n" +"POT-Creation-Date: 2021-11-07 18:35+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -3655,7 +3655,7 @@ msgid "Back" msgstr "" -msgid "Purge Markup Cache" +msgid "Purge HTML Cache" msgstr "清除標記快取" msgid "Purge all Pages With Invalid Names" @@ -3673,7 +3673,7 @@ msgid "Rebuild Wiki Database" msgstr "" -msgid "Markup cache purged!" +msgid "HTML cache purged!" msgstr "標記快取已經清除!" msgid "No pages with bad names had to be deleted." @@ -4976,9 +4976,6 @@ msgid "Page Dump" msgstr "" -msgid "PurgeHtmlCache" -msgstr "" - msgid "" "Purge HTML cache for this page. Regenerate from WikiMarkup when next " "accessed." Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/pgsrc/PhpWikiDebug =================================================================== --- trunk/locale/zh/pgsrc/PhpWikiDebug 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/locale/zh/pgsrc/PhpWikiDebug 2021-11-07 17:37:03 UTC (rev 10642) @@ -1,4 +1,4 @@ -Date: Fri, 6 Aug 2021 16:19:21 +0000 +Date: Sat, 6 Nov 2021 09:39:42 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=PhpWikiDebug; @@ -15,7 +15,7 @@ 在正常情況下,你不需要使用這些,不過他們應該也不會造成任何損害. -== 清理標記快取 Purge Markup Cache == +== 清理標記快取 Purge HTML Cache == (如果你的 wiki 已經設置,) 每個頁面的最新版本的轉換內容(幾乎是 HTML)都被 快取了. 這會避免再剖析 wiki-text ,而使得頁面輸出的速度加快一些. Modified: trunk/pgsrc/PhpWikiDebug =================================================================== --- trunk/pgsrc/PhpWikiDebug 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/pgsrc/PhpWikiDebug 2021-11-07 17:37:03 UTC (rev 10642) @@ -1,4 +1,4 @@ -Date: Fri, 6 Aug 2021 16:19:21 +0000 +Date: Sat, 6 Nov 2021 09:39:42 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=PhpWikiDebug; @@ -16,7 +16,7 @@ In normal use, you should not need to use these, though, then again, they should not really do any harm. -== Purge Markup Cache == +== Purge HTML Cache == (If your wiki is so configured,) the transformed (almost-HTML) content of the most recent version of each page is cached. This speeds up page Modified: trunk/themes/Crao/templates/actionbar.tmpl =================================================================== --- trunk/themes/Crao/templates/actionbar.tmpl 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/themes/Crao/templates/actionbar.tmpl 2021-11-07 17:37:03 UTC (rev 10642) @@ -25,7 +25,7 @@ <?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("DebugBackendInfo")) ?> <?php echo $SEP?><?php echo Button(__("PageDump"), _("Page Dump")) ?> <?php $purgeb = Button(array('nocache' => 'purge'), - _("PurgeHtmlCache"), $page->getName()); + _("Purge HTML Cache"), $page->getName()); $purgeb->addTooltip(_("Purge HTML cache for this page. Regenerate from WikiMarkup when next accessed.")); ?> <?php echo $SEP?><?php echo $purgeb ?> Modified: trunk/themes/MonoBook/templates/info.tmpl =================================================================== --- trunk/themes/MonoBook/templates/info.tmpl 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/themes/MonoBook/templates/info.tmpl 2021-11-07 17:37:03 UTC (rev 10642) @@ -179,7 +179,7 @@ <?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("DebugBackendInfo")) ?> <?php $PurgeCache = Button(array('nocache' => 'purge'), - _("PurgeHtmlCache"), $page->getName()); + _("Purge HTML Cache"), $page->getName()); $PurgeCache->addTooltip(_("Purge HTML cache for this page. Regenerate from WikiMarkup when next accessed.")); ?> <?php echo $SEP?><?php echo $PurgeCache ?> Modified: trunk/themes/Sidebar/templates/actionbar.tmpl =================================================================== --- trunk/themes/Sidebar/templates/actionbar.tmpl 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/themes/Sidebar/templates/actionbar.tmpl 2021-11-07 17:37:03 UTC (rev 10642) @@ -63,7 +63,7 @@ <?php if ($isAdmin) { ?> <?php echo ActionButton(__("PageDump"), _("Page Dump")) ?> <?php if (USECACHE) { ?> - <?php echo ActionButton(array('nocache' => 'purge'), _("PurgeHtmlCache"), $pagename, + <?php echo ActionButton(array('nocache' => 'purge'), _("Purge HTML Cache"), $pagename, array('title'=>_("Purge HTML cache for this page. Regenerate from WikiMarkup when next accessed."))) ?> <?php }} ?> </ul> Modified: trunk/themes/default/templates/actionbar.tmpl =================================================================== --- trunk/themes/default/templates/actionbar.tmpl 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/themes/default/templates/actionbar.tmpl 2021-11-07 17:37:03 UTC (rev 10642) @@ -33,7 +33,7 @@ <?php if (DEBUG & _DEBUG_SQL and USECACHE) { $PurgeCache = Button(array('nocache' => 'purge'), - _("PurgeHtmlCache"), $page->getName()); + _("Purge HTML Cache"), $page->getName()); $PurgeCache->addTooltip(_("Purge HTML cache for this page. Regenerate from WikiMarkup when next accessed.")); ?> <?php echo $SEP?><?php echo $PurgeCache ?> Modified: trunk/themes/smaller/templates/info.tmpl =================================================================== --- trunk/themes/smaller/templates/info.tmpl 2021-11-05 20:20:34 UTC (rev 10641) +++ trunk/themes/smaller/templates/info.tmpl 2021-11-07 17:37:03 UTC (rev 10642) @@ -13,7 +13,7 @@ <?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("DebugBackendInfo")) ?> <?php $PurgeCache = Button(array('nocache' => 'purge'), - _("PurgeHtmlCache"), $page->getName()); + _("Purge HTML Cache"), $page->getName()); $PurgeCache->addTooltip(_("Purge HTML cache for this page. Regenerate from WikiMarkup when next accessed.")); ?> <?php echo $SEP?><?php echo $PurgeCache ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-07 17:56:40
|
Revision: 10643 http://sourceforge.net/p/phpwiki/code/10643 Author: vargenau Date: 2021-11-07 17:56:37 +0000 (Sun, 07 Nov 2021) Log Message: ----------- Update pgsrc/ReleaseNotes and locale/it/pgsrc/NoteDiRilascio Modified Paths: -------------- trunk/locale/it/pgsrc/NoteDiRilascio trunk/pgsrc/ReleaseNotes Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2021-11-07 17:37:03 UTC (rev 10642) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2021-11-07 17:56:37 UTC (rev 10643) @@ -1,4 +1,4 @@ -Date: Thu, 30 Sep 2021 12:58:41 +0000 +Date: Sun, 7 Nov 2021 18:55:53 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -10,8 +10,8 @@ == 1.6.1 2021-XX-XX Marc-Etienne Vargenau == -This release makes PhpWiki compatable with PHP 8.1. -READONLY is renamed as ISREADONLY, since //readonly// is now a keyword in PHP 8.1. +This release makes ~PhpWiki compatible with PHP 8.1. +##READONLY## is renamed as ##ISREADONLY##, since ##readonly## is now a keyword in PHP 8.1. === Fixes === * Make list of pages work with PDO (~AllPages, ~MostPopular...) @@ -18,10 +18,11 @@ === Changes === * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. -* Add "Rename" tab in Sidebar theme. +* Add “Rename” tab in Sidebar theme. === Plugins === * Chart plugin: new argument "legend" +* ~PreferencesInfo plugin removed == 1.6.0 2021-08-12 Marc-Etienne Vargenau == @@ -39,7 +40,7 @@ * Remove wrong calls to setTightness in ##lib/~InlineParser.php## (bug reported by Harold Hallikainen) * Importing a ZIP from an old wiki in Latin 1 (ISO 8859-1) failed. Reported by Frank Michael. * Better check arguments for ~GoogleMaps plugin -* Revert Subversion commit 9111, bad side effects; re-opening Bug#607 BackLinks do not work inside a RichTable +* Revert Subversion commit 9111, bad side effects; re-opening Bug#607 BackLinks do not work inside a ~RichTable * Security fixes === Changes === Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2021-11-07 17:37:03 UTC (rev 10642) +++ trunk/pgsrc/ReleaseNotes 2021-11-07 17:56:37 UTC (rev 10643) @@ -1,4 +1,4 @@ -Date: Mon, 11 Oct 2021 15:45:48 +0000 +Date: Sun, 7 Nov 2021 18:55:53 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -11,7 +11,7 @@ == 1.6.1 2021-XX-XX Marc-Etienne Vargenau == This release makes ~PhpWiki compatible with PHP 8.1. -READONLY is renamed as ISREADONLY, since //readonly// is now a keyword in PHP 8.1. +##READONLY## is renamed as ##ISREADONLY##, since ##readonly## is now a keyword in PHP 8.1. === Fixes === * Make list of pages work with PDO (~AllPages, ~MostPopular...) @@ -18,7 +18,7 @@ === Changes === * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. -* Add "Rename" tab in Sidebar theme. +* Add “Rename” tab in Sidebar theme. === Plugins === * Chart plugin: new argument "legend" @@ -40,7 +40,7 @@ * Remove wrong calls to setTightness in ##lib/~InlineParser.php## (bug reported by Harold Hallikainen) * Importing a ZIP from an old wiki in Latin 1 (ISO 8859-1) failed. Reported by Frank Michael. * Better check arguments for ~GoogleMaps plugin -* Revert Subversion commit 9111, bad side effects; re-opening Bug#607 BackLinks do not work inside a RichTable +* Revert Subversion commit 9111, bad side effects; re-opening Bug#607 BackLinks do not work inside a ~RichTable * Security fixes === Changes === This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-08 10:48:53
|
Revision: 10644 http://sourceforge.net/p/phpwiki/code/10644 Author: vargenau Date: 2021-11-08 10:48:50 +0000 (Mon, 08 Nov 2021) Log Message: ----------- More translations Modified Paths: -------------- trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/de/pgsrc/PhpWikiSystemverwalten trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/fr/pgsrc/AdministrationDePhpWiki trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo trunk/themes/Crao/templates/actionbar.tmpl trunk/themes/MonoBook/templates/info.tmpl trunk/themes/Portland/templates/actionbar.tmpl trunk/themes/Wordpress/templates/actionbar.tmpl trunk/themes/default/templates/actionbar.tmpl trunk/themes/shamino_com/templates/actionbar.tmpl trunk/themes/smaller/templates/actionbar.tmpl trunk/themes/smaller/templates/info.tmpl Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten 2021-11-08 10:48:50 UTC (rev 10644) @@ -1,4 +1,4 @@ -Date: Tue, 10 Aug 2021 18:24:57 +0000 +Date: Mon, 8 Nov 2021 11:42:33 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten; @@ -87,7 +87,7 @@ Computer. <<WikiForm action=upload>> -<<WikiForm action=upload buttontext="Upload & Overwrite" overwrite=1>> +<<WikiForm action=upload buttontext="Hochladen & Überschreiben" overwrite=1>> === Datei Laden === Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/pgsrc/AdministrationDePhpWiki =================================================================== --- trunk/locale/fr/pgsrc/AdministrationDePhpWiki 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/locale/fr/pgsrc/AdministrationDePhpWiki 2021-11-08 10:48:50 UTC (rev 10644) @@ -1,4 +1,4 @@ -Date: Tue, 10 Aug 2021 18:24:57 +0000 +Date: Mon, 8 Nov 2021 11:42:33 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=AdministrationDePhpWiki; @@ -86,7 +86,7 @@ machine cliente. <<WikiForm action=upload>> -<<WikiForm action=upload buttontext="Upload & Overwrite" overwrite=1>> +<<WikiForm action=upload buttontext="Déposer & Écraser" overwrite=1>> === Télécharger un fichier === @@ -95,12 +95,12 @@ Vous pouvez aussi utiliser ce formulaire pour charger les données d'un URL http: ou ftp:. <<WikiForm action=loadfile>> -<<WikiForm action=loadfile buttontext="Load & Overwrite" overwrite=1>> +<<WikiForm action=loadfile buttontext="Télécharger & Écraser" overwrite=1>> === Mise à jour === Fait quelques vérifications et mises à jours automatiquement après avoir installé -un nouveau moteur phpwiki : +un nouveau moteur PhpWiki : * Met à jour les nouvelles pages ou les pages révisées depuis pgsrc Vous pouvez forcer le remplacement ou non : Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/locale/po/de.po 2021-11-08 10:48:50 UTC (rev 10644) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-07 18:35+0100\n" +"POT-Creation-Date: 2021-11-08 11:48+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -5125,9 +5125,15 @@ msgid "Edit Old Revision" msgstr "Alte Version Bearbeiten" +msgid "Page History" +msgstr "Seite Protokoll" + msgid "Page Info" msgstr "Seiten Info" +msgid "Debug Backend Info" +msgstr "Debug Backend Info" + msgid "Page Dump" msgstr "" @@ -5820,9 +5826,6 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "" -msgid "Page History" -msgstr "Seite Protokoll" - msgid "How to use this Wiki" msgstr "Wie man Wiki benutzt" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/locale/po/es.po 2021-11-08 10:48:50 UTC (rev 10644) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-07 18:35+0100\n" +"POT-Creation-Date: 2021-11-08 11:48+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -5002,9 +5002,15 @@ msgid "Edit Old Revision" msgstr "" +msgid "Page History" +msgstr "" + msgid "Page Info" msgstr "Informacion de la Pagina" +msgid "Debug Backend Info" +msgstr "" + msgid "Page Dump" msgstr "Descarge de la Página" @@ -5655,9 +5661,6 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "" -msgid "Page History" -msgstr "" - msgid "How to use this Wiki" msgstr "" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/locale/po/fr.po 2021-11-08 10:48:50 UTC (rev 10644) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-07 18:35+0100\n" +"POT-Creation-Date: 2021-11-08 11:48+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -5095,9 +5095,15 @@ msgid "Edit Old Revision" msgstr "Modifier l'ancienne version" +msgid "Page History" +msgstr "Historique de la page" + msgid "Page Info" msgstr "Infos sur la page" +msgid "Debug Backend Info" +msgstr "Infos de débogage du backend" + msgid "Page Dump" msgstr "Cliché de la page" @@ -5778,9 +5784,6 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "Ajouter ou supprimer de la liste de pages que vous surveillez" -msgid "Page History" -msgstr "Historique de la page" - msgid "How to use this Wiki" msgstr "Comment utiliser ce wiki" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/locale/po/it.po 2021-11-08 10:48:50 UTC (rev 10644) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-07 18:35+0100\n" +"POT-Creation-Date: 2021-11-08 11:48+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -4962,9 +4962,15 @@ msgid "Edit Old Revision" msgstr "" +msgid "Page History" +msgstr "Storico pagina" + msgid "Page Info" msgstr "Info Pagina" +msgid "Debug Backend Info" +msgstr "" + msgid "Page Dump" msgstr "" @@ -5614,9 +5620,6 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "" -msgid "Page History" -msgstr "Storico pagina" - msgid "How to use this Wiki" msgstr "Come usare questo Wiki" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/locale/po/ja.po 2021-11-08 10:48:50 UTC (rev 10644) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-07 18:35+0100\n" +"POT-Creation-Date: 2021-11-08 11:48+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -4948,9 +4948,15 @@ msgid "Edit Old Revision" msgstr "古いリビジョンを編集する" +msgid "Page History" +msgstr "ページ履歴" + msgid "Page Info" msgstr "ページ情報" +msgid "Debug Backend Info" +msgstr "デバグ情報" + msgid "Page Dump" msgstr "" @@ -5600,9 +5606,6 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "" -msgid "Page History" -msgstr "ページ履歴" - msgid "How to use this Wiki" msgstr "" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/locale/po/nl.po 2021-11-08 10:48:50 UTC (rev 10644) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-07 18:35+0100\n" +"POT-Creation-Date: 2021-11-08 11:48+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -4954,9 +4954,15 @@ msgid "Edit Old Revision" msgstr "" +msgid "Page History" +msgstr "Pagina Geschiedenis" + msgid "Page Info" msgstr "" +msgid "Debug Backend Info" +msgstr "" + msgid "Page Dump" msgstr "" @@ -5606,9 +5612,6 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "" -msgid "Page History" -msgstr "Pagina Geschiedenis" - msgid "How to use this Wiki" msgstr "" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/locale/po/phpwiki.pot 2021-11-08 10:48:50 UTC (rev 10644) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-07 18:35+0100\n" +"POT-Creation-Date: 2021-11-08 11:48+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -4948,9 +4948,15 @@ msgid "Edit Old Revision" msgstr "" +msgid "Page History" +msgstr "" + msgid "Page Info" msgstr "" +msgid "Debug Backend Info" +msgstr "" + msgid "Page Dump" msgstr "" @@ -5600,9 +5606,6 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "" -msgid "Page History" -msgstr "" - msgid "How to use this Wiki" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/locale/po/sv.po 2021-11-08 10:48:50 UTC (rev 10644) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-07 18:35+0100\n" +"POT-Creation-Date: 2021-11-08 11:48+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -4949,9 +4949,15 @@ msgid "Edit Old Revision" msgstr "" +msgid "Page History" +msgstr "" + msgid "Page Info" msgstr "" +msgid "Debug Backend Info" +msgstr "" + msgid "Page Dump" msgstr "" @@ -5601,9 +5607,6 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "" -msgid "Page History" -msgstr "" - msgid "How to use this Wiki" msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/locale/po/zh.po 2021-11-08 10:48:50 UTC (rev 10644) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-07 18:35+0100\n" +"POT-Creation-Date: 2021-11-08 11:48+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -4970,9 +4970,15 @@ msgid "Edit Old Revision" msgstr "編輯舊的修訂" +msgid "Page History" +msgstr "頁面歷程" + msgid "Page Info" msgstr "" +msgid "Debug Backend Info" +msgstr "" + msgid "Page Dump" msgstr "" @@ -5628,9 +5634,6 @@ msgid "Add/Remove this to/from the list of pages you're monitoring for changes" msgstr "" -msgid "Page History" -msgstr "頁面歷程" - msgid "How to use this Wiki" msgstr "" Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/themes/Crao/templates/actionbar.tmpl =================================================================== --- trunk/themes/Crao/templates/actionbar.tmpl 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/themes/Crao/templates/actionbar.tmpl 2021-11-08 10:48:50 UTC (rev 10644) @@ -17,12 +17,12 @@ <?php if ($user->isAdmin() or mayAccessPage('remove',$page->getName())) { ?> <?php echo $SEP?><?php echo Button('remove') ?> <?php } ?> -<?php echo $SEP?><?php echo Button(__("PageHistory"), _("PageHistory")) ?> +<?php echo $SEP?><?php echo Button(__("PageHistory"), _("Page History")) ?> <?php echo $SEP?><?php echo Button("diff") ?> <?php echo $SEP?><?php echo Button(__("PageInfo"), _("Page Info")) ?> <?php if ((DEBUG and $request->getArg('action') == 'browse') || $user->isAdmin()) { ?> <?php // Buttons really only for debugging ?> -<?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("DebugBackendInfo")) ?> +<?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("Debug Backend Info")) ?> <?php echo $SEP?><?php echo Button(__("PageDump"), _("Page Dump")) ?> <?php $purgeb = Button(array('nocache' => 'purge'), _("Purge HTML Cache"), $page->getName()); Modified: trunk/themes/MonoBook/templates/info.tmpl =================================================================== --- trunk/themes/MonoBook/templates/info.tmpl 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/themes/MonoBook/templates/info.tmpl 2021-11-08 10:48:50 UTC (rev 10644) @@ -169,14 +169,14 @@ <div id="actionbuttons"> <?php echo Button("viewsource", _("View Source")) ?> - <?php echo $SEP?><?php echo Button(__("PageHistory"), _("PageHistory")) ?> - <?php echo $SEP?><?php echo Button(__("AuthorHistory"), _("AuthorHistory")) ?> + <?php echo $SEP?><?php echo Button(__("PageHistory"), _("Page History")) ?> + <?php echo $SEP?><?php echo Button(__("AuthorHistory"), _("Author History")) ?> <?php echo $SEP?><?php echo Button("Diff") ?> <?php echo $SEP?><?php echo Button(array('action'=>'diff','previous' => 'minor'),_("Diff previous Revision"),$page->getName()) ?> <?php echo $SEP?><?php echo Button(array('action'=>'diff','previous' => 'author'),_("Diff previous Author"),$page->getName()) ?> <?php if ((defined('DEBUG') && DEBUG) || $user->isAdmin()) { ?> <?php // Buttons really only for debugging ?> - <?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("DebugBackendInfo")) ?> + <?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("Debug Backend Info")) ?> <?php $PurgeCache = Button(array('nocache' => 'purge'), _("Purge HTML Cache"), $page->getName()); Modified: trunk/themes/Portland/templates/actionbar.tmpl =================================================================== --- trunk/themes/Portland/templates/actionbar.tmpl 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/themes/Portland/templates/actionbar.tmpl 2021-11-08 10:48:50 UTC (rev 10644) @@ -9,9 +9,9 @@ ?> <?php echo $EditB ?> <a href="<?php echo WikiURL($revision,array('action'=>'diff'))?>"><?php echo $WikiTheme->getLastModifiedMessage($revision) ?></a> - <?php echo $SEP?><?php echo Button(__("PageHistory"), _("PageHistory")) ?> + <?php echo $SEP?><?php echo Button(__("PageHistory"), _("Page History")) ?> <?php echo $SEP?><?php echo Button(__("PageInfo"), _("Page Info")) ?> <?php if (defined('DEBUG') && DEBUG || $user->isAdmin()) { ?> - <?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("DebugBackendInfo")) ?> <?php // For debugging only, really ?> + <?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("Debug Backend Info")) ?> <?php // For debugging only, really ?> <?php } ?> <br /> Modified: trunk/themes/Wordpress/templates/actionbar.tmpl =================================================================== --- trunk/themes/Wordpress/templates/actionbar.tmpl 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/themes/Wordpress/templates/actionbar.tmpl 2021-11-08 10:48:50 UTC (rev 10644) @@ -66,12 +66,12 @@ <?php echo $WikiTheme->getLastModifiedMessage($revision) ?></a> </li> <li> - <?php echo $SEP?><?php echo Button(__("PageHistory"), _("PageHistory")) ?><?php echo $SEP?> + <?php echo $SEP?><?php echo Button(__("PageHistory"), _("Page History")) ?><?php echo $SEP?> </li> <li> <?php echo Button(__("PageInfo"), _("Page Info")) ?> </li> <?php if ((DEBUG and $request->getArg('action') == 'browse') || $user->isAdmin()) { ?> <li> - <?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("DebugBackendInfo")) ?> <?php // For debugging only, really ?> + <?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("Debug Backend Info")) ?> <?php // For debugging only, really ?> <?php echo $SEP?><?php echo Button(__("PageDump"), _("Page Dump")) ?> </li> <?php } ?> Modified: trunk/themes/default/templates/actionbar.tmpl =================================================================== --- trunk/themes/default/templates/actionbar.tmpl 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/themes/default/templates/actionbar.tmpl 2021-11-08 10:48:50 UTC (rev 10644) @@ -23,12 +23,12 @@ <?php echo $SEP?><?php echo Button('revert', _("Revert"), $revision->isCurrent() ? $page->GetRevisionBefore() : $revision) ?> <?php echo $SEP?><?php echo Button('remove') ?> <?php } ?> - <?php echo $SEP?><?php echo Button(__("PageHistory"), _("PageHistory")) ?> + <?php echo $SEP?><?php echo Button(__("PageHistory"), _("Page History")) ?> <?php echo $SEP?><?php echo Button("diff") ?> <?php echo $SEP?><?php echo Button(__("PageInfo"), _("Page Info")) ?> <?php if ((DEBUG and $request->getArg('action') == 'browse') || $user->isAdmin()) { ?> <?php // Buttons really only for debugging ?> - <?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("DebugBackendInfo")) ?> + <?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("Debug Backend Info")) ?> <?php echo $SEP?><?php echo Button(__("PageDump"), _("Page Dump")) ?> <?php if (DEBUG & _DEBUG_SQL and USECACHE) { Modified: trunk/themes/shamino_com/templates/actionbar.tmpl =================================================================== --- trunk/themes/shamino_com/templates/actionbar.tmpl 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/themes/shamino_com/templates/actionbar.tmpl 2021-11-08 10:48:50 UTC (rev 10644) @@ -17,7 +17,7 @@ <?php if (!empty($user) && $user->isAdmin()) { ?> <?php echo $SEP?><?php echo WikiLink(__("PhpWikiAdministration"), "", _("Admin")) ?> <?php // Buttons really only for debugging. See info for more ?> - <?php echo $SEP?><?php echo Button(__("PageHistory"), _("PageHistory")) ?> + <?php echo $SEP?><?php echo Button(__("PageHistory"), _("Page History")) ?> <?php echo $SEP?><?php echo Button("diff") ?> <?php echo $SEP?><?php echo Button(__("PageDump"), _("Page Dump")) ?> <?php // End debugging buttons ?> Modified: trunk/themes/smaller/templates/actionbar.tmpl =================================================================== --- trunk/themes/smaller/templates/actionbar.tmpl 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/themes/smaller/templates/actionbar.tmpl 2021-11-08 10:48:50 UTC (rev 10644) @@ -29,7 +29,7 @@ <?php echo Button(array('action'=>__('PageInfo')), _("Info"), $page->getName()) ?> <?php if (((defined('DEBUG') and DEBUG and $request->getArg('action') == 'browse')) || $user->isAdmin()) { ?> <?php // Buttons really only for debugging ?> - <?php echo $SEP?><?php echo Button(__("PageHistory"), _("PageHistory")) ?> + <?php echo $SEP?><?php echo Button(__("PageHistory"), _("Page History")) ?> <?php echo $SEP?><?php echo Button("diff") ?> <?php echo $SEP?><?php echo Button(__("PageDump"), _("Page Dump")) ?> <?php // End debugging buttons ?> Modified: trunk/themes/smaller/templates/info.tmpl =================================================================== --- trunk/themes/smaller/templates/info.tmpl 2021-11-07 17:56:37 UTC (rev 10643) +++ trunk/themes/smaller/templates/info.tmpl 2021-11-08 10:48:50 UTC (rev 10644) @@ -2,8 +2,8 @@ <div id="actionbuttons"> <?php echo Button("viewsource", _("View Source")) ?> - <?php echo $SEP?><?php echo Button(__("PageHistory"), _("PageHistory")) ?> - <?php echo $SEP?><?php echo Button(__("AuthorHistory"), _("AuthorHistory")) ?> + <?php echo $SEP?><?php echo Button(__("PageHistory"), _("Page History")) ?> + <?php echo $SEP?><?php echo Button(__("AuthorHistory"), _("Author History")) ?> <?php echo $SEP?><?php echo Button("Diff") ?> <?php echo $SEP?><?php echo Button(array('action'=>'diff','previous' => 'minor'),_("Diff previous Revision"),$page->getName()) ?> <?php echo $SEP?><?php echo Button(array('action'=>'diff','previous' => 'author'),_("Diff previous Author"),$page->getName()) ?> @@ -10,7 +10,7 @@ <?php echo $SEP?><?php echo Button(__("PageDump"), _("Page Dump")) ?> <?php if ((defined('DEBUG') && DEBUG) || $user->isAdmin()) { ?> <?php // Buttons really only for debugging ?> - <?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("DebugBackendInfo")) ?> + <?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("Debug Backend Info")) ?> <?php $PurgeCache = Button(array('nocache' => 'purge'), _("Purge HTML Cache"), $page->getName()); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-15 14:03:24
|
Revision: 10647 http://sourceforge.net/p/phpwiki/code/10647 Author: vargenau Date: 2021-11-15 14:03:22 +0000 (Mon, 15 Nov 2021) Log Message: ----------- CategoryHomePages Modified Paths: -------------- trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin trunk/locale/fr/pgsrc/Aide%2FGreffonCr%C3%A9erUnePage trunk/pgsrc/Help%2FCreatePagePlugin trunk/themes/default/templates/homepage.tmpl Modified: trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin 2021-11-08 19:46:07 UTC (rev 10646) +++ trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin 2021-11-15 14:03:22 UTC (rev 10647) @@ -1,4 +1,4 @@ -Date: Sat, 26 Dec 2020 12:40:06 +0000 +Date: Mon, 15 Nov 2021 14:41:56 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Hilfe%2FNeueSeitePlugin; @@ -19,7 +19,7 @@ {{{ <?plugin-form CreatePage ?> -<?plugin-form CreatePage template=CategoryHomePage ?> +<?plugin-form CreatePage template=CategoryHomePages ?> <?plugin-form CreatePage template=SomeTemplatePage vars="year=2004&name=None" ?> }}} Modified: trunk/locale/fr/pgsrc/Aide%2FGreffonCr%C3%A9erUnePage =================================================================== --- trunk/locale/fr/pgsrc/Aide%2FGreffonCr%C3%A9erUnePage 2021-11-08 19:46:07 UTC (rev 10646) +++ trunk/locale/fr/pgsrc/Aide%2FGreffonCr%C3%A9erUnePage 2021-11-15 14:03:22 UTC (rev 10647) @@ -1,4 +1,4 @@ -Date: Mon, 30 Mar 2020 15:49:22 +0000 +Date: Mon, 15 Nov 2021 14:41:56 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Aide%2FGreffonCr%C3%A9erUnePage; @@ -19,7 +19,7 @@ {{{ <?plugin-form CreatePage ?> -<?plugin-form CreatePage template=CategoryHomePage ?> +<?plugin-form CreatePage template=CategoryHomePages ?> <?plugin-form CreatePage template=SomeTemplatePage vars="year=2004&name=None" ?> }}} Modified: trunk/pgsrc/Help%2FCreatePagePlugin =================================================================== --- trunk/pgsrc/Help%2FCreatePagePlugin 2021-11-08 19:46:07 UTC (rev 10646) +++ trunk/pgsrc/Help%2FCreatePagePlugin 2021-11-15 14:03:22 UTC (rev 10647) @@ -1,4 +1,4 @@ -Date: Sat, 20 Feb 2021 11:52:37 +0000 +Date: Mon, 15 Nov 2021 14:41:56 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FCreatePagePlugin; @@ -19,7 +19,7 @@ {{{ <?plugin-form CreatePage ?> -<?plugin-form CreatePage template=CategoryHomePage ?> +<?plugin-form CreatePage template=CategoryHomePages ?> <?plugin-form CreatePage template=SomeTemplatePage vars="year=2004&name=None" ?> }}} Modified: trunk/themes/default/templates/homepage.tmpl =================================================================== --- trunk/themes/default/templates/homepage.tmpl 2021-11-08 19:46:07 UTC (rev 10646) +++ trunk/themes/default/templates/homepage.tmpl 2021-11-15 14:03:22 UTC (rev 10647) @@ -33,4 +33,4 @@ <?php echo $BackLinks?> <?php echo $FullTextSearch?> ---- -<?php echo _("CategoryHomepage")?> +<?php echo _("CategoryHomePages")?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-15 14:35:56
|
Revision: 10648 http://sourceforge.net/p/phpwiki/code/10648 Author: vargenau Date: 2021-11-15 14:35:53 +0000 (Mon, 15 Nov 2021) Log Message: ----------- More transkations, less strings, more consistent case Modified Paths: -------------- trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/it/pgsrc/NoteDiRilascio trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo trunk/pgsrc/ReleaseNotes trunk/themes/MonoBook/templates/navbar.tmpl trunk/themes/Sidebar/templates/navbar.tmpl trunk/themes/smaller/templates/navbar.tmpl Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2021-11-15 14:03:22 UTC (rev 10647) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2021-11-15 14:35:53 UTC (rev 10648) @@ -1,4 +1,4 @@ -Date: Sun, 7 Nov 2021 18:55:53 +0000 +Date: Mon, 15 Nov 2021 15:19:47 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -19,9 +19,10 @@ === Changes === * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. * Add “Rename” tab in Sidebar theme. +* More translations === Plugins === -* Chart plugin: new argument "legend" +* Chart plugin: new argument “legend” * ~PreferencesInfo plugin removed == 1.6.0 2021-08-12 Marc-Etienne Vargenau == @@ -66,7 +67,7 @@ === Plugins === * ~UpLoad plugin: put date and author in history * ~UpLoad plugin: don't inline images -* PhpWeather removed, uses deprecated mysql functions +* ~PhpWeather removed, uses deprecated mysql functions * ~HtmlConverter plugin: check file is encoded in UTF-8; ~HtmlConverter plugin allowed in Fusionforge * Use jquery.autoheight.js plugin for Transclude plugin * Repair [[Help:PhotoAlbumPlugin|PhotoAlbumPlugin]] Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2021-11-15 14:03:22 UTC (rev 10647) +++ trunk/locale/po/de.po 2021-11-15 14:35:53 UTC (rev 10648) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-08 11:48+0100\n" +"POT-Creation-Date: 2021-11-15 15:19+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -152,8 +152,6 @@ msgid "BackLinks for %s" msgstr "BackLinks für %s" -# versandet (=full of sand) ;) -# weitergeleitet von #, php-format msgid "(Redirected from %s)" msgstr "(Weitergeleitet von %s)" @@ -2456,9 +2454,6 @@ msgid "UserContribs" msgstr "BenutzerBewertungen" -# (Im Wortsinne heißt das eigentlich: "jüngste = eben gemachte -# Änderungen"; in terms of newspapers or journalism it's traditionally -# "NeuesteNachrichten" or much more better "DasNeueste"). msgid "RecentNewPages" msgstr "" @@ -2603,9 +2598,6 @@ msgid "Page once only" msgstr "" -# (Im Wortsinne heißt das eigentlich: "jüngste = eben gemachte -# Änderungen"; in terms of newspapers or journalism it's traditionally -# "NeuesteNachrichten" or much more better "DasNeueste"). msgid "Full changes" msgstr "" @@ -2688,9 +2680,6 @@ msgid "Related Changes" msgstr "Verlinkte Änderungen" -# (Im Wortsinne heißt das eigentlich: "jüngste = eben gemachte -# Änderungen"; in terms of newspapers or journalism it's traditionally -# "NeuesteNachrichten" or much more better "DasNeueste"). msgid "RelatedChanges" msgstr "VerlinkteÄnderungen" @@ -3270,7 +3259,7 @@ "Error: The user HomePage must be a valid WikiWord. Sorry, UserPreferences " "cannot be saved." msgstr "" -"Fehler: Ihre Homepage Seite muß ein gültiges WikiWord sein. Die " +"Fehler: Ihre StartSeite muß ein gültiges WikiWord sein. Die " "BenutzerEinstellungen können deshalb leider nicht gespeichert werden." msgid "Your UserPreferences have been successfully reset to default." @@ -3994,7 +3983,7 @@ msgstr "KalenderPlugin" msgid "CategoryHomePages" -msgstr "KategorieHomepage" +msgstr "KategorieStartSeiten" msgid "CategoryPage" msgstr "KategorieSeite" @@ -4074,9 +4063,6 @@ msgid "FoafViewerPlugin" msgstr "FoafViewerPlugin" -# (Im Wortsinne heißt das eigentlich: "jüngste = eben gemachte -# Änderungen"; in terms of newspapers or journalism it's traditionally -# "NeuesteNachrichten" or much more better "DasNeueste"). msgid "FullRecentChanges" msgstr "AlleNeuesteÄnderungen" @@ -4250,9 +4236,6 @@ msgid "RawHtmlPlugin" msgstr "RawHtmlPlugin" -# (Im Wortsinne heißt das eigentlich: "jüngste = eben gemachte -# Änderungen"; in terms of newspapers or journalism it's traditionally -# "NeuesteNachrichten" or much more better "DasNeueste"). msgid "RecentChangesCached" msgstr "" @@ -4259,7 +4242,6 @@ msgid "RecentReferrers" msgstr "" -# KleineÄnderungen? msgid "RecentVisitors" msgstr "LetzteBesucher" @@ -4944,7 +4926,7 @@ #, php-format msgid "You stored an empty password in your “%s” page." -msgstr "Sie haben ein leeres Passwort in Ihrer HomePage »%s« gespeichert." +msgstr "Sie haben ein leeres Passwort in Ihrer StartSeite »%s« gespeichert." #, php-format msgid "Your access permissions are only for a BogoUser." @@ -5250,9 +5232,6 @@ msgid "The %s subpage enables simple weblogging." msgstr "Die %s UnterSeite ermöglicht ein einfaches Weblog." -msgid "CategoryHomepage" -msgstr "KategorieHomepage" - msgid "1 word" msgstr "1 Wort" @@ -5314,7 +5293,7 @@ "Sie können sich mit jedem gewünschten [WikiWort|SeitenErzeugen] als " "Benutzernamen ins Wiki eintragen. (Auch %s u. deutsche Umlaute sind " "zulässig). Der Benutzername wird in NeuesteÄnderungen als Link auf Ihre " -"Homepage verwendet." +"StartSeite verwendet." msgid "New users may use an empty password." msgstr "Neue Benutzer können auch ohne Passwort einloggen." @@ -5626,9 +5605,6 @@ msgid "Make the page external?" msgstr "" -# (Im Wortsinne heißt das eigentlich: "jüngste = eben gemachte -# Änderungen"; in terms of newspapers or journalism it's traditionally -# "NeuesteNachrichten" or much more better "DasNeueste"). msgid "Recent Changes" msgstr "Neueste Änderungen" @@ -5638,9 +5614,6 @@ msgid "Random Page" msgstr "ZufallsSeite" -# "ÄhnlicheSeiten" (LikePages sind keine SamePages; die korrekte -# deutsche Übersetzung ist "ÄhnlicheSeiten" which would be the best. -# Or in case "Ä" doesn't work as a WikiWord, then use "VergleichbareSeiten". msgid "Like Pages" msgstr "Ähnliche Seiten" @@ -5721,31 +5694,13 @@ msgid "Navigation Menu" msgstr "" -# (Im Wortsinne heißt das eigentlich: "jüngste = eben gemachte -# Änderungen"; in terms of newspapers or journalism it's traditionally -# "NeuesteNachrichten" or much more better "DasNeueste"). -msgid "Recent changes" -msgstr "Neueste Änderungen" - msgid "The list of recent changes in the wiki." msgstr "" -msgid "Recent comments" -msgstr "Neueste Kommentare" - -# (Im Wortsinne heißt das eigentlich: "jüngste = eben gemachte -# Änderungen"; in terms of newspapers or journalism it's traditionally -# "NeuesteNachrichten" or much more better "DasNeueste"). -msgid "Recent new pages" +msgid "Recent New Pages" msgstr "" -# "ÄhnlicheSeiten" (LikePages sind keine SamePages; die korrekte -# deutsche Übersetzung ist "ÄhnlicheSeiten" which would be the best. -# Or in case "Ä" doesn't work as a WikiWord, then use "VergleichbareSeiten". -msgid "Like pages" -msgstr "Ähnliche Seiten" - -msgid "Find page" +msgid "Find Page" msgstr "Seite finden" msgid "Search:" @@ -5760,9 +5715,6 @@ msgid "What links here" msgstr "Was verlinkt hierher" -msgid "Related changes" -msgstr "Verlinkte Änderungen" - msgid "Administration" msgstr "" @@ -5841,9 +5793,6 @@ msgid "Main Categories" msgstr "" -# (Im Wortsinne heißt das eigentlich: "jüngste = eben gemachte -# Änderungen"; in terms of newspapers or journalism it's traditionally -# "NeuesteNachrichten" or much more better "DasNeueste"). msgid "Recent Changes Menu" msgstr "Neueste Änderungen Menu" @@ -5856,9 +5805,6 @@ msgid "Sidebar" msgstr "Sidebar" -msgid "News" -msgstr "" - msgid "Tutorial" msgstr "" @@ -5929,12 +5875,6 @@ #~ msgid "Submit location" #~ msgstr "Land eingeben" -#~ msgid "PhpWeather" -#~ msgstr "PhpWetter" - -#~ msgid "PhpWeatherPlugin" -#~ msgstr "PhpWetterPlugin" - #~ msgid "database" #~ msgstr "Datenbank" @@ -6124,33 +6064,9 @@ #~ "Sie haben vergessen ENCRYPTED_PASSWD auf true zu stellen. Bitte " #~ "aktualisieren Sie config/config.ini" -# Any good way to write NamensHomePage as a non-wikiword? -# Namens-Homepage? Namenshomepage? or just leave it this way? (note: -# any WikiWords will not link here, better not to use any StudlyCaps -# here). -#~ msgid "" -#~ "Your home page has not been created yet so your preferences cannot not be " -#~ "saved." -#~ msgstr "" -#~ "Sie haben Ihre persönliche HomePage Seite noch nicht erstellt, deshalb " -#~ "können Ihre Einstellungen nicht gespeichert werden." - -#~ msgid "Your home page is locked so your preferences cannot not be saved." -#~ msgstr "" -#~ "Ihre persönliche HomePage Seite ist gesperrt, deshalb können Ihre " -#~ "Änderungen nicht gespeichert werden." - #~ msgid "Please contact your PhpWiki administrator for assistance." #~ msgstr "Bitte bitten Sie Ihren PhpWiki Administrator um Unterstützung." -#~ msgid "" -#~ "Old UserPage %s without stored password updated with empty password. Set " -#~ "a password in your UserPreferences." -#~ msgstr "" -#~ "Ihre alte persönliche HomePage %s ohne gespeichertem Passwort wurde mit " -#~ "einem leeren Password gespeichert. Setzen Sie ein Passwort in Ihren " -#~ "BenutzerEinstellungen." - #~ msgid "Elapsed time: %s s" #~ msgstr "Dauer: %s s" @@ -6181,9 +6097,6 @@ #~ msgid "Version %s" #~ msgstr "Version %s." -#~ msgid "Original (1.2 or 1.0)" -#~ msgstr "Original (1,2 oder 1,0)" - #~ msgid "%s not found" #~ msgstr "%s nicht gefunden" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2021-11-15 14:03:22 UTC (rev 10647) +++ trunk/locale/po/es.po 2021-11-15 14:35:53 UTC (rev 10648) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-08 11:48+0100\n" +"POT-Creation-Date: 2021-11-15 15:19+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -2422,10 +2422,10 @@ msgstr "" msgid "Recent Comments" -msgstr "" +msgstr "Comentarios Recientes" msgid "comments" -msgstr "" +msgstr "comentarios" msgid "created new pages" msgstr "" @@ -3889,7 +3889,7 @@ msgstr "CalendarioPlugin" msgid "CategoryHomePages" -msgstr "" +msgstr "CategoríaPáginasPrincipales" msgid "CategoryPage" msgstr "CategoríaPágina" @@ -5121,10 +5121,6 @@ msgid "The %s subpage enables simple weblogging." msgstr "" -# old-style. new style (1.3.x) is CategoryHomePages -msgid "CategoryHomepage" -msgstr "CategoríaHomepage" - msgid "1 word" msgstr "" @@ -5568,22 +5564,13 @@ msgid "Navigation Menu" msgstr "" -msgid "Recent changes" -msgstr "Cambios Recientes" - msgid "The list of recent changes in the wiki." msgstr "" -msgid "Recent comments" -msgstr "Comentarios Recientes" - -msgid "Recent new pages" +msgid "Recent New Pages" msgstr "" -msgid "Like pages" -msgstr "" - -msgid "Find page" +msgid "Find Page" msgstr "Buscar Página" msgid "Search:" @@ -5598,9 +5585,6 @@ msgid "What links here" msgstr "" -msgid "Related changes" -msgstr "Cambios Relacionados" - msgid "Administration" msgstr "Administración" @@ -5688,9 +5672,6 @@ msgid "Sidebar" msgstr "" -msgid "News" -msgstr "" - msgid "Tutorial" msgstr "" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2021-11-15 14:03:22 UTC (rev 10647) +++ trunk/locale/po/fr.po 2021-11-15 14:35:53 UTC (rev 10648) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-08 11:48+0100\n" +"POT-Creation-Date: 2021-11-15 15:19+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -5218,9 +5218,6 @@ msgid "The %s subpage enables simple weblogging." msgstr "Les sous-pages de %s permettent l'utilisation d'un blog simple." -msgid "CategoryHomepage" -msgstr "CatégoriePagesAccueil" - msgid "1 word" msgstr "1 mot" @@ -5687,22 +5684,13 @@ msgid "Navigation Menu" msgstr "Menu de navigation" -msgid "Recent changes" -msgstr "Dernières modifications" - msgid "The list of recent changes in the wiki." msgstr "Liste des modifications recentes de ce wiki." -msgid "Recent comments" -msgstr "Derniers commentaires" - -msgid "Recent new pages" +msgid "Recent New Pages" msgstr "Dernières pages créées" -msgid "Like pages" -msgstr "Pages semblables" - -msgid "Find page" +msgid "Find Page" msgstr "Rechercher" msgid "Search:" @@ -5717,9 +5705,6 @@ msgid "What links here" msgstr "Pages liées" -msgid "Related changes" -msgstr "Changements liés" - msgid "Administration" msgstr "Administration" @@ -5811,9 +5796,6 @@ msgid "Sidebar" msgstr "Barre latérale" -msgid "News" -msgstr "" - msgid "Tutorial" msgstr "Tutoriel" @@ -5892,12 +5874,6 @@ #~ msgid "Submit location" #~ msgstr "Soumettre la localisation" -#~ msgid "PhpWeather" -#~ msgstr "MétéoPhp" - -#~ msgid "PhpWeatherPlugin" -#~ msgstr "GreffonMétéoPhp" - #~ msgid "database" #~ msgstr "base de données" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2021-11-15 14:03:22 UTC (rev 10647) +++ trunk/locale/po/it.po 2021-11-15 14:35:53 UTC (rev 10648) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-08 11:48+0100\n" +"POT-Creation-Date: 2021-11-15 15:19+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -3866,7 +3866,7 @@ msgstr "CalendarioPlugin" msgid "CategoryHomePages" -msgstr "" +msgstr "CategoriaPaginePrincipali" msgid "CategoryPage" msgstr "CategoriaPagina" @@ -5081,9 +5081,6 @@ msgid "The %s subpage enables simple weblogging." msgstr "" -msgid "CategoryHomepage" -msgstr "" - msgid "1 word" msgstr "" @@ -5448,7 +5445,7 @@ msgstr "" msgid "Like Pages" -msgstr "" +msgstr "Pagine Simili" msgid "Upload File" msgstr "" @@ -5527,22 +5524,13 @@ msgid "Navigation Menu" msgstr "" -msgid "Recent changes" -msgstr "Cambiamenti Recenti" - msgid "The list of recent changes in the wiki." msgstr "" -msgid "Recent comments" +msgid "Recent New Pages" msgstr "" -msgid "Recent new pages" -msgstr "" - -msgid "Like pages" -msgstr "Pagine Simili" - -msgid "Find page" +msgid "Find Page" msgstr "Trova Pagina" msgid "Search:" @@ -5557,9 +5545,6 @@ msgid "What links here" msgstr "" -msgid "Related changes" -msgstr "Modifiche Correlate" - msgid "Administration" msgstr "" @@ -5647,9 +5632,6 @@ msgid "Sidebar" msgstr "" -msgid "News" -msgstr "" - msgid "Tutorial" msgstr "" @@ -5665,9 +5647,6 @@ #~ msgid "GoodStyle" #~ msgstr "BuonStile" -#~ msgid "Page info" -#~ msgstr "Info Pagina" - #~ msgid "Synopsis" #~ msgstr "Sommario" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2021-11-15 14:03:22 UTC (rev 10647) +++ trunk/locale/po/ja.po 2021-11-15 14:35:53 UTC (rev 10648) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-08 11:48+0100\n" +"POT-Creation-Date: 2021-11-15 15:19+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -5067,9 +5067,6 @@ msgid "The %s subpage enables simple weblogging." msgstr "" -msgid "CategoryHomepage" -msgstr "" - msgid "1 word" msgstr "" @@ -5513,22 +5510,13 @@ msgid "Navigation Menu" msgstr "" -msgid "Recent changes" -msgstr "" - msgid "The list of recent changes in the wiki." msgstr "" -msgid "Recent comments" +msgid "Recent New Pages" msgstr "" -msgid "Recent new pages" -msgstr "" - -msgid "Like pages" -msgstr "" - -msgid "Find page" +msgid "Find Page" msgstr "ページ検索" msgid "Search:" @@ -5543,9 +5531,6 @@ msgid "What links here" msgstr "" -msgid "Related changes" -msgstr "" - msgid "Administration" msgstr "" @@ -5633,9 +5618,6 @@ msgid "Sidebar" msgstr "スライドバー" -msgid "News" -msgstr "" - msgid "Tutorial" msgstr "" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2021-11-15 14:03:22 UTC (rev 10647) +++ trunk/locale/po/nl.po 2021-11-15 14:35:53 UTC (rev 10648) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-08 11:48+0100\n" +"POT-Creation-Date: 2021-11-15 15:19+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -5073,9 +5073,6 @@ msgid "The %s subpage enables simple weblogging." msgstr "" -msgid "CategoryHomepage" -msgstr "" - msgid "1 word" msgstr "" @@ -5519,22 +5516,13 @@ msgid "Navigation Menu" msgstr "" -msgid "Recent changes" -msgstr "Recente Veranderingen" - msgid "The list of recent changes in the wiki." msgstr "" -msgid "Recent comments" +msgid "Recent New Pages" msgstr "" -msgid "Recent new pages" -msgstr "" - -msgid "Like pages" -msgstr "" - -msgid "Find page" +msgid "Find Page" msgstr "Zoek Pagina" msgid "Search:" @@ -5549,9 +5537,6 @@ msgid "What links here" msgstr "" -msgid "Related changes" -msgstr "" - msgid "Administration" msgstr "Beheer" @@ -5639,9 +5624,6 @@ msgid "Sidebar" msgstr "Zoek" -msgid "News" -msgstr "" - msgid "Tutorial" msgstr "" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2021-11-15 14:03:22 UTC (rev 10647) +++ trunk/locale/po/phpwiki.pot 2021-11-15 14:35:53 UTC (rev 10648) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-08 11:48+0100\n" +"POT-Creation-Date: 2021-11-15 15:19+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -5067,9 +5067,6 @@ msgid "The %s subpage enables simple weblogging." msgstr "" -msgid "CategoryHomepage" -msgstr "" - msgid "1 word" msgstr "" @@ -5513,24 +5510,15 @@ msgid "Navigation Menu" msgstr "" -msgid "Recent changes" -msgstr "" - msgid "The list of recent changes in the wiki." msgstr "" -msgid "Recent comments" +msgid "Recent New Pages" msgstr "" -msgid "Recent new pages" +msgid "Find Page" msgstr "" -msgid "Like pages" -msgstr "" - -msgid "Find page" -msgstr "" - msgid "Search:" msgstr "" @@ -5543,9 +5531,6 @@ msgid "What links here" msgstr "" -msgid "Related changes" -msgstr "" - msgid "Administration" msgstr "" @@ -5633,9 +5618,6 @@ msgid "Sidebar" msgstr "" -msgid "News" -msgstr "" - msgid "Tutorial" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2021-11-15 14:03:22 UTC (rev 10647) +++ trunk/locale/po/sv.po 2021-11-15 14:35:53 UTC (rev 10648) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-08 11:48+0100\n" +"POT-Creation-Date: 2021-11-15 15:19+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -5068,9 +5068,6 @@ msgid "The %s subpage enables simple weblogging." msgstr "" -msgid "CategoryHomepage" -msgstr "" - msgid "1 word" msgstr "" @@ -5514,22 +5511,13 @@ msgid "Navigation Menu" msgstr "" -msgid "Recent changes" -msgstr "Senaste Ändringar" - msgid "The list of recent changes in the wiki." msgstr "" -msgid "Recent comments" +msgid "Recent New Pages" msgstr "" -msgid "Recent new pages" -msgstr "" - -msgid "Like pages" -msgstr "" - -msgid "Find page" +msgid "Find Page" msgstr "Sök Efter Sida" msgid "Search:" @@ -5544,9 +5532,6 @@ msgid "What links here" msgstr "" -msgid "Related changes" -msgstr "" - msgid "Administration" msgstr "" @@ -5634,9 +5619,6 @@ msgid "Sidebar" msgstr "" -msgid "News" -msgstr "" - msgid "Tutorial" msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2021-11-15 14:03:22 UTC (rev 10647) +++ trunk/locale/po/zh.po 2021-11-15 14:35:53 UTC (rev 10648) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-08 11:48+0100\n" +"POT-Creation-Date: 2021-11-15 15:19+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -5089,9 +5089,6 @@ msgid "The %s subpage enables simple weblogging." msgstr "%s 子頁面啟動簡易 weblogging." -msgid "CategoryHomepage" -msgstr "分類首頁" - msgid "1 word" msgstr "1 個單字" @@ -5541,24 +5538,15 @@ msgid "Navigation Menu" msgstr "" -msgid "Recent changes" -msgstr "" - msgid "The list of recent changes in the wiki." msgstr "" -msgid "Recent comments" +msgid "Recent New Pages" msgstr "" -msgid "Recent new pages" +msgid "Find Page" msgstr "" -msgid "Like pages" -msgstr "" - -msgid "Find page" -msgstr "" - msgid "Search:" msgstr "搜尋:" @@ -5571,9 +5559,6 @@ msgid "What links here" msgstr "" -msgid "Related changes" -msgstr "" - msgid "Administration" msgstr "管理者" @@ -5661,9 +5646,6 @@ msgid "Sidebar" msgstr "" -msgid "News" -msgstr "" - msgid "Tutorial" msgstr "" @@ -5670,9 +5652,6 @@ msgid "Edit this page" msgstr "編輯此頁面" -#~ msgid "Author history" -#~ msgstr "作者歷程" - #~ msgid "renamed from %s" #~ msgstr "從 %s 更名" @@ -5699,9 +5678,6 @@ #~ msgid "Expiry parameters" #~ msgstr "過期參數" -#~ msgid "Provide weather reports from the Internet." -#~ msgstr "PhpWeather plugin 由網路取得資訊並提供天氣報告." - #~ msgid "The ICAO “%s” wasn't recognized." #~ msgstr "ICAO “%s” 無法被認可." Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2021-11-15 14:03:22 UTC (rev 10647) +++ trunk/pgsrc/ReleaseNotes 2021-11-15 14:35:53 UTC (rev 10648) @@ -1,4 +1,4 @@ -Date: Sun, 7 Nov 2021 18:55:53 +0000 +Date: Mon, 15 Nov 2021 15:09:41 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -19,9 +19,10 @@ === Changes === * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. * Add “Rename” tab in Sidebar theme. +* More translations === Plugins === -* Chart plugin: new argument "legend" +* Chart plugin: new argument “legend” * ~PreferencesInfo plugin removed == 1.6.0 2021-08-12 Marc-Etienne Vargenau == @@ -66,7 +67,7 @@ === Plugins === * ~UpLoad plugin: put date and author in history * ~UpLoad plugin: don't inline images -* PhpWeather removed, uses deprecated mysql functions +* ~PhpWeather removed, uses deprecated mysql functions * ~HtmlConverter plugin: check file is encoded in UTF-8; ~HtmlConverter plugin allowed in Fusionforge * Use jquery.autoheight.js plugin for Transclude plugin * Repair [[Help:PhotoAlbumPlugin|PhotoAlbumPlugin]] Modified: trunk/themes/MonoBook/templates/navbar.tmpl =================================================================== --- trunk/themes/MonoBook/templates/navbar.tmpl 2021-11-15 14:03:22 UTC (rev 10647) +++ trunk/themes/MonoBook/templates/navbar.tmpl 2021-11-15 14:35:53 UTC (rev 10648) @@ -11,10 +11,10 @@ <div class="pBody"> <ul> <li><?php echo WikiLink(HOME_PAGE, "", _("Home Page")) ?></li> - <li><?php $link = WikiLink(__("RecentChanges"), "", _("Recent changes")); $link->addTooltip(_("The list of recent changes in the wiki.")); ?><?php echo $link ?></li> - <li><?php echo WikiLink(__("RecentComments"), "", _("Recent comments")) ?></li> - <li><?php echo WikiLink(__("RecentNewPages"), "", _("Recent new pages")) ?></li> - <li><?php echo Button(array('action'=>__("LikePages")),_("Like pages"), $page->getName()) ?></li> + <li><?php $link = WikiLink(__("RecentChanges"), "", _("Recent Changes")); $link->addTooltip(_("The list of recent changes in the wiki.")); ?><?php echo $link ?></li> + <li><?php echo WikiLink(__("RecentComments"), "", _("Recent Comments")) ?></li> + <li><?php echo WikiLink(__("RecentNewPages"), "", _("Recent New Pages")) ?></li> + <li><?php echo Button(array('action'=>__("LikePages")),_("Like Pages"), $page->getName()) ?></li> <li><?php echo WikiLink(__("RandomPage"), "", _("Random Page")) ?></li> <li><?php echo WikiLink(__("PhpWikiDocumentation"),"", _("Help")) ?></li> </ul> @@ -26,7 +26,7 @@ <h2><?php echo _("Search") ?></h2> <div class="pBody"> <?php echo Template("search", - array('SEARCH_BEFORE' => WikiLink(__("FindPage"), "", _("Find page")), + array('SEARCH_BEFORE' => WikiLink(__("FindPage"), "", _("Find Page")), 'SEARCH_AFTER' => HTML::input(array('id' => 'searchGoButton', 'type'=>'submit', 'value'=>_("Go"))))) ?> @@ -52,7 +52,7 @@ <li><?php echo Button(array('action'=>__("BackLinks")), _("What links here"), $page->getName()) ?></li> <?php } ?> <?php $links = $page->getPageLinks(); if ($links->count() > 1) { ?> - <li><?php echo $WikiTheme->makeLinkButton($revision, _("Related changes"), __("RelatedChanges")) ?></li> + <li><?php echo $WikiTheme->makeLinkButton($revision, _("Related Changes"), __("RelatedChanges")) ?></li> <?php } ?> <?php if ($user->isAdmin()) { ?> <li><?php echo WikiLink(__("PhpWikiAdministration"), "", _("Administration")) ?></li> Modified: trunk/themes/Sidebar/templates/navbar.tmpl =================================================================== --- trunk/themes/Sidebar/templates/navbar.tmpl 2021-11-15 14:03:22 UTC (rev 10647) +++ trunk/themes/Sidebar/templates/navbar.tmpl 2021-11-15 14:35:53 UTC (rev 10648) @@ -45,7 +45,7 @@ <div class="pBody" id="p-tb-body"> <ul> <li><?php $link = WikiLink(__("RecentChanges"), "", _("Recent Changes")); $link->addTooltip(_("The list of recent changes in the wiki.")); ?><?php echo $link ?> </li> - <li><?php echo WikiLink(__("RecentNewPages"), "", _("Recent new pages")) ?></li> + <li><?php echo WikiLink(__("RecentNewPages"), "", _("Recent New Pages")) ?></li> <?php if (!empty($revision)) { ?> <li><?php echo Button(array('action'=>__("BackLinks")), _("What links here"), $page->getName()) ?></li> <?php } ?> Modified: trunk/themes/smaller/templates/navbar.tmpl =================================================================== --- trunk/themes/smaller/templates/navbar.tmpl 2021-11-15 14:03:22 UTC (rev 10647) +++ trunk/themes/smaller/templates/navbar.tmpl 2021-11-15 14:35:53 UTC (rev 10648) @@ -3,7 +3,7 @@ <form action="<?php echo WikiURL(_("TitleSearch"))?>" method="get" accept-charset="UTF-8"> <div id="navbuttons"> - <?php echo WikiLink(__("RecentChanges"), "", _("News")) ?> + <?php echo WikiLink(__("RecentChanges"), "", _("Recent Changes")) ?> <?php echo $SEP?><?php echo WikiLink(__("FindPage"), "", _("Search")._(":")) ?> <input type="hidden" name="auto_redirect" value="1" /> <input type="text" name="s" size="12" maxlength="256" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-16 16:20:35
|
Revision: 10649 http://sourceforge.net/p/phpwiki/code/10649 Author: vargenau Date: 2021-11-16 16:08:27 +0000 (Tue, 16 Nov 2021) Log Message: ----------- CategoryPage plugin removed, categories are better created with the button in the toolbar Modified Paths: -------------- trunk/lib/IniConfig.php trunk/lib/plugin/WikiTranslation.php trunk/locale/Makefile trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/it/pgsrc/NoteDiRilascio trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo trunk/pgsrc/Help%2FPopularTagsPlugin trunk/pgsrc/ReleaseNotes Removed Paths: ------------- trunk/lib/plugin/CategoryPage.php trunk/pgsrc/Help%2FCategoryPagePlugin trunk/themes/default/templates/categorypage.tmpl trunk/themes/wikilens/templates/categorypage.tmpl Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/lib/IniConfig.php 2021-11-16 16:08:27 UTC (rev 10649) @@ -513,7 +513,6 @@ $AllAllowedPlugins[] = 'BoxRight'; $AllAllowedPlugins[] = 'CalendarList'; $AllAllowedPlugins[] = 'Calendar'; - $AllAllowedPlugins[] = 'CategoryPage'; $AllAllowedPlugins[] = 'Chart'; $AllAllowedPlugins[] = 'Comment'; $AllAllowedPlugins[] = 'CreateBib'; @@ -584,7 +583,6 @@ if (!(defined('FUSIONFORGE') && FUSIONFORGE)) { $AllAllowedPlugins[] = 'AnalyseAccessLogSql'; $AllAllowedPlugins[] = 'CacheTest'; - $AllAllowedPlugins[] = 'CategoryPage'; $AllAllowedPlugins[] = 'FoafViewer'; $AllAllowedPlugins[] = 'GraphViz'; $AllAllowedPlugins[] = 'JabberPresence'; Deleted: trunk/lib/plugin/CategoryPage.php =================================================================== --- trunk/lib/plugin/CategoryPage.php 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/lib/plugin/CategoryPage.php 2021-11-16 16:08:27 UTC (rev 10649) @@ -1,87 +0,0 @@ -<?php -/** - * Copyright © 1999, 2000, 2001, 2002 $ThePhpWikiProgrammingTeam - * - * This file is part of PhpWiki. - * - * PhpWiki is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * PhpWiki is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with PhpWiki; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - * - * SPDX-License-Identifier: GPL-2.0-or-later - * - */ - -require_once 'lib/BlockParser.php'; - -/** - * CategoryPage plugin. - * - * This puts boilerplate text on a category page to make it easily usable - * by novices. - * - * Usage: - * <?plugin-form CategoryPage ?> - * - * It finds the file templates/categorypage.tmpl, then loads it with a few - * variables substituted. - * - * This has only been used in wikilens.org. - */ - -class WikiPlugin_CategoryPage - extends WikiPlugin -{ - function getDescription() - { - return _("Create a Wiki Category Page."); - } - - function getDefaultArguments() - { - return array( // Assume the categories are listed on the HomePage - 'exclude' => false, - 'pagename' => '[pagename]', - 'plural' => false, - 'singular' => false, - 'self_on_create' => true, - 'showbuds' => false); - } - - /** - * @param WikiDB $dbi - * @param string $argstr - * @param WikiRequest $request - * @param string $basepage - * @return mixed - */ - function run($dbi, $argstr, &$request, $basepage) - { - $args = $this->getArgs($argstr, $request); - - if (empty($args['singular'])) { - $args['singular'] = $args['pagename']; - } - if (empty($args['plural'])) { - $args['plural'] = $args['singular'] . 's'; - } - - return new Template('categorypage', $request, - array('EXCLUDE' => $args['exclude'], - 'PAGENAME' => $args['pagename'], - 'PLURAL' => $args['plural'], - 'SHOWBUDS' => $args['showbuds'], - 'SELF_ON_CREATE' => $args['self_on_create'], - 'SINGULAR' => $args['singular'])); - } -} Modified: trunk/lib/plugin/WikiTranslation.php =================================================================== --- trunk/lib/plugin/WikiTranslation.php 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/lib/plugin/WikiTranslation.php 2021-11-16 16:08:27 UTC (rev 10649) @@ -72,7 +72,6 @@ _("CalendarPlugin") . ',' . _("CategoryCategory") . ',' . _("CategoryHomePages") . ',' . - _("CategoryPage") . ',' . _("Chart") . ',' . _("Chown") . ',' . _("Comment") . ',' . Modified: trunk/locale/Makefile =================================================================== --- trunk/locale/Makefile 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/locale/Makefile 2021-11-16 16:08:27 UTC (rev 10649) @@ -167,7 +167,6 @@ ${POT_FILE}: .././lib/plugin/CacheTest.php ${POT_FILE}: .././lib/plugin/CalendarList.php ${POT_FILE}: .././lib/plugin/Calendar.php -${POT_FILE}: .././lib/plugin/CategoryPage.php ${POT_FILE}: .././lib/plugin/Chart.php ${POT_FILE}: .././lib/plugin/Comment.php ${POT_FILE}: .././lib/plugin/CreateBib.php @@ -411,7 +410,6 @@ ${POT_FILE}: .././themes/default/templates/bottom.tmpl ${POT_FILE}: .././themes/default/templates/browse-footer.tmpl ${POT_FILE}: .././themes/default/templates/browse.tmpl -${POT_FILE}: .././themes/default/templates/categorypage.tmpl ${POT_FILE}: .././themes/default/templates/comment.tmpl ${POT_FILE}: .././themes/default/templates/content.tmpl ${POT_FILE}: .././themes/default/templates/debug.tmpl @@ -513,7 +511,6 @@ ${POT_FILE}: .././themes/SpaceWiki/lib/RecentChanges.php ${POT_FILE}: .././themes/SpaceWiki/themeinfo.php ${POT_FILE}: .././themes/wikilens/templates/body.tmpl -${POT_FILE}: .././themes/wikilens/templates/categorypage.tmpl ${POT_FILE}: .././themes/wikilens/templates/head.tmpl ${POT_FILE}: .././themes/wikilens/templates/navbar.tmpl ${POT_FILE}: .././themes/wikilens/templates/newuserwelcomepage.tmpl Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2021-11-16 16:08:27 UTC (rev 10649) @@ -1,4 +1,4 @@ -Date: Mon, 15 Nov 2021 15:19:47 +0000 +Date: Tue, 16 Nov 2021 17:02:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -24,6 +24,7 @@ === Plugins === * Chart plugin: new argument “legend” * ~PreferencesInfo plugin removed +* ~CategoryPage plugin removed, categories are better created with the button in the toolbar == 1.6.0 2021-08-12 Marc-Etienne Vargenau == Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/locale/po/de.po 2021-11-16 16:08:27 UTC (rev 10649) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-15 15:19+0100\n" +"POT-Creation-Date: 2021-11-16 17:07+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -1489,9 +1489,6 @@ msgid "Wk" msgstr "Cw" -msgid "Create a Wiki Category Page." -msgstr "Erzeuge eine neue Wiki-Seite." - msgid "Render SVG charts." msgstr "" @@ -3985,9 +3982,6 @@ msgid "CategoryHomePages" msgstr "KategorieStartSeiten" -msgid "CategoryPage" -msgstr "KategorieSeite" - msgid "Chart" msgstr "" @@ -5823,27 +5817,6 @@ #~ msgid "Thank you for editing %s." #~ msgstr "Danke für das Bearbeiten von %s." -#~ msgid "Keep up to %d major edits, but keep them no longer than %d days." -#~ msgstr "" -#~ "Aufbewahrung größerer Änderungen für %d, aber nicht länger als %d Tage." - -#~ msgid " Keep up to %d minor edits, but keep them no longer than %d days." -#~ msgstr "" -#~ "Aufbewahrung kleinerer Änderungen für %d, aber nicht länger als %d Tage." - -#~ msgid " Keep the latest contributions of the last %d authors up to %d days." -#~ msgstr "" -#~ "Aufbewahrung der neueren Beiträge der letzten %d Autoren für %d Tage." - -#~ msgid "" -#~ " Additionally, try to keep the latest contributions of all authors in the " -#~ "last %d days (even if there are more than %d of them,) but in no case " -#~ "keep more than %d unique author revisions." -#~ msgstr "" -#~ "Versuche zusätzlich die neuesten Beiträge aller Autoren der letzten %d " -#~ "Tage aufzubewahren (auch wenn es mehr als %d sind), keinesfalls jedoch " -#~ "mehr als %d einzelne Autoren Revisionen." - #~ msgid "fixed with" #~ msgstr "Geändert mit" @@ -5856,25 +5829,6 @@ #~ msgid "CREATED" #~ msgstr "ERZEUGT" -#~ msgid "Provide weather reports from the Internet." -#~ msgstr "Der PhpWetter plugin gibt Auskunft zur Wetterlage vom Internet." - -#~ msgid "The ICAO “%s” wasn't recognized." -#~ msgstr "Die angegebene ICAO »%s« war nicht bekannt." - -#~ msgid "%s does not know about the language “%s”, using “en” instead." -#~ msgstr "" -#~ "%s weißt nichts von die Sprache »%s«, stattdessen wird »en« angewendet." - -#~ msgid "Submit country" -#~ msgstr "Land eingeben" - -#~ msgid "Change country" -#~ msgstr "Land ändern" - -#~ msgid "Submit location" -#~ msgstr "Land eingeben" - #~ msgid "database" #~ msgstr "Datenbank" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/locale/po/es.po 2021-11-16 16:08:27 UTC (rev 10649) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-15 15:19+0100\n" +"POT-Creation-Date: 2021-11-16 17:07+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -1462,9 +1462,6 @@ msgid "Wk" msgstr "" -msgid "Create a Wiki Category Page." -msgstr "Cree una página de Wiki." - msgid "Render SVG charts." msgstr "" @@ -3891,9 +3888,6 @@ msgid "CategoryHomePages" msgstr "CategoríaPáginasPrincipales" -msgid "CategoryPage" -msgstr "CategoríaPágina" - msgid "Chart" msgstr "" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/locale/po/fr.po 2021-11-16 16:08:27 UTC (rev 10649) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-15 15:19+0100\n" +"POT-Creation-Date: 2021-11-16 17:07+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -1483,9 +1483,6 @@ msgid "Wk" msgstr "Sem." -msgid "Create a Wiki Category Page." -msgstr "Créer une page wiki de catégorie." - msgid "Render SVG charts." msgstr "Afficher des diagrammes SVG." @@ -3983,9 +3980,6 @@ msgid "CategoryHomePages" msgstr "CatégoriePagesAccueil" -msgid "CategoryPage" -msgstr "CatégoriePages" - msgid "Chart" msgstr "Diagramme" @@ -5814,26 +5808,6 @@ #~ msgid "Thank you for editing %s." #~ msgstr "Merci d'avoir édité %s." -#~ msgid "Keep up to %d major edits, but keep them no longer than %d days." -#~ msgstr "Garder jusqu'à %d édition majeures, mais pas plus que %d jours." - -#~ msgid " Keep up to %d minor edits, but keep them no longer than %d days." -#~ msgstr "Garder jusqu'à %d édition mineures, mais pas plus que %d jours." - -#~ msgid " Keep the latest contributions of the last %d authors up to %d days." -#~ msgstr "" -#~ "Garder les dernières contributions des derniers %d auteurs jusqu'à %d " -#~ "jours." - -#~ msgid "" -#~ " Additionally, try to keep the latest contributions of all authors in the " -#~ "last %d days (even if there are more than %d of them,) but in no case " -#~ "keep more than %d unique author revisions." -#~ msgstr "" -#~ "De plus, essayez de conserver les dernières contributions de tous les " -#~ "auteurs depuis les %d derniers jours (même s'il y en a plus que %d), mais " -#~ "ne conservez en aucun cas plus que %d versions par auteur." - #~ msgid "Expiry parameters" #~ msgstr "Paramètres d'expiration" @@ -5855,34 +5829,9 @@ #~ msgid "CREATED" #~ msgstr "CRÉÉ" -#~ msgid "Provide weather reports from the Internet." -#~ msgstr "Météo importée d'internet." - -#~ msgid "The ICAO “%s” wasn't recognized." -#~ msgstr "L'ICAO « %s » n'a pas été reconnu." - -#~ msgid "%s does not know about the language “%s”, using “en” instead." -#~ msgstr "" -#~ "%s ne connaît pas la langue « %s », utilisation de « en » à la place." - -#~ msgid "Submit country" -#~ msgstr "Soumettre le pays" - -#~ msgid "Change country" -#~ msgstr "Changer le pays" - -#~ msgid "Submit location" -#~ msgstr "Soumettre la localisation" - #~ msgid "database" #~ msgstr "base de données" -#~ msgid "db version: we want " -#~ msgstr "Version de la base de données : on veut " - -#~ msgid "db version: we have " -#~ msgstr "Version de la base de données : on a " - #~ msgid "Backend type: " #~ msgstr "Type de backend : " @@ -5889,12 +5838,6 @@ #~ msgid "Check for table %s" #~ msgstr "Vérifie la table %s" -#~ msgid "You need to upgrade to schema/psql-initialize.sql manually!" -#~ msgstr "Vous devez mettre à jour schema/psql-initialize.sql à la main !" - -#~ msgid "Check for new session.sess_ip column" -#~ msgstr "Recherche une nouvelle colonne session.sess_ip" - #~ msgid "SKIP" #~ msgstr "SAUTÉ" @@ -5907,20 +5850,6 @@ #~ msgid "not affected" #~ msgstr "non affectée" -#~ msgid "db version: upgrade to " -#~ msgstr "Version de la base de données : mise à niveau vers " - -#~ msgid "Check for extra page.cached_html column" -#~ msgstr "Recherche une colonne supplémentaire page.cached_html" - -#~ msgid "Check for relation field in link table" -#~ msgstr "Vérifie le champ relation dans la table des liens" - -#~ msgid "Rebuild entire database to upgrade relation links" -#~ msgstr "" -#~ "Reconstruit toute la base de données pour mettre à jour les liens de " -#~ "relation" - #~ msgid "CreatePage failed" #~ msgstr "La création de la page a échoué" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/locale/po/it.po 2021-11-16 16:08:27 UTC (rev 10649) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-15 15:19+0100\n" +"POT-Creation-Date: 2021-11-16 17:07+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -1445,9 +1445,6 @@ msgid "Wk" msgstr "" -msgid "Create a Wiki Category Page." -msgstr "" - msgid "Render SVG charts." msgstr "" @@ -3868,9 +3865,6 @@ msgid "CategoryHomePages" msgstr "CategoriaPaginePrincipali" -msgid "CategoryPage" -msgstr "CategoriaPagina" - msgid "Chart" msgstr "" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/locale/po/ja.po 2021-11-16 16:08:27 UTC (rev 10649) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-15 15:19+0100\n" +"POT-Creation-Date: 2021-11-16 17:07+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -1431,9 +1431,6 @@ msgid "Wk" msgstr "" -msgid "Create a Wiki Category Page." -msgstr "" - msgid "Render SVG charts." msgstr "" @@ -3854,9 +3851,6 @@ msgid "CategoryHomePages" msgstr "" -msgid "CategoryPage" -msgstr "" - msgid "Chart" msgstr "" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/locale/po/nl.po 2021-11-16 16:08:27 UTC (rev 10649) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-15 15:19+0100\n" +"POT-Creation-Date: 2021-11-16 17:07+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -1437,9 +1437,6 @@ msgid "Wk" msgstr "" -msgid "Create a Wiki Category Page." -msgstr "" - msgid "Render SVG charts." msgstr "" @@ -3860,9 +3857,6 @@ msgid "CategoryHomePages" msgstr "" -msgid "CategoryPage" -msgstr "" - msgid "Chart" msgstr "" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/locale/po/phpwiki.pot 2021-11-16 16:08:27 UTC (rev 10649) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-15 15:19+0100\n" +"POT-Creation-Date: 2021-11-16 17:07+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -1431,9 +1431,6 @@ msgid "Wk" msgstr "" -msgid "Create a Wiki Category Page." -msgstr "" - msgid "Render SVG charts." msgstr "" @@ -3854,9 +3851,6 @@ msgid "CategoryHomePages" msgstr "" -msgid "CategoryPage" -msgstr "" - msgid "Chart" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/locale/po/sv.po 2021-11-16 16:08:27 UTC (rev 10649) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-15 15:19+0100\n" +"POT-Creation-Date: 2021-11-16 17:07+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -1432,9 +1432,6 @@ msgid "Wk" msgstr "" -msgid "Create a Wiki Category Page." -msgstr "" - msgid "Render SVG charts." msgstr "" @@ -3855,9 +3852,6 @@ msgid "CategoryHomePages" msgstr "" -msgid "CategoryPage" -msgstr "" - msgid "Chart" msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/locale/po/zh.po 2021-11-16 16:08:27 UTC (rev 10649) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-15 15:19+0100\n" +"POT-Creation-Date: 2021-11-16 17:07+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -1436,9 +1436,6 @@ msgid "Wk" msgstr "" -msgid "Create a Wiki Category Page." -msgstr "建立 Wiki Category 頁面." - msgid "Render SVG charts." msgstr "" @@ -3865,9 +3862,6 @@ msgid "CategoryHomePages" msgstr "" -msgid "CategoryPage" -msgstr "" - msgid "Chart" msgstr "" @@ -5658,41 +5652,9 @@ #~ msgid "Thank you for editing %s." #~ msgstr "謝謝你編輯了 %s." -#~ msgid "Keep up to %d major edits, but keep them no longer than %d days." -#~ msgstr "保持 %d 份主要編輯,但不超過 %d 天." - -#~ msgid " Keep up to %d minor edits, but keep them no longer than %d days." -#~ msgstr "保持 %d 份次要編輯,但不超過 %d 天." - -#~ msgid " Keep the latest contributions of the last %d authors up to %d days." -#~ msgstr "保存最後 %d 位作者的最新貢獻直到 %d 天." - -#~ msgid "" -#~ " Additionally, try to keep the latest contributions of all authors in the " -#~ "last %d days (even if there are more than %d of them,) but in no case " -#~ "keep more than %d unique author revisions." -#~ msgstr "" -#~ " 除此之外, 試著保存最近 %d 天之內所有作者的最新貢獻 (即使超過他們的 %d ,) " -#~ "但是沒保存超過 %d 份單一作者修訂." - #~ msgid "Expiry parameters" #~ msgstr "過期參數" -#~ msgid "The ICAO “%s” wasn't recognized." -#~ msgstr "ICAO “%s” 無法被認可." - -#~ msgid "%s does not know about the language “%s”, using “en” instead." -#~ msgstr "%s 不認識此語言 “%s”, 使用 'en' 代替." - -#~ msgid "Submit country" -#~ msgstr "送出國家" - -#~ msgid "Change country" -#~ msgstr "變更國家" - -#~ msgid "Submit location" -#~ msgstr "送出地區" - #~ msgid "database" #~ msgstr "資料庫" Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Deleted: trunk/pgsrc/Help%2FCategoryPagePlugin =================================================================== --- trunk/pgsrc/Help%2FCategoryPagePlugin 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/pgsrc/Help%2FCategoryPagePlugin 2021-11-16 16:08:27 UTC (rev 10649) @@ -1,71 +0,0 @@ -Date: Mon, 22 Feb 2021 19:16:32 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) -Content-Type: application/x-phpwiki; - pagename=Help%2FCategoryPagePlugin; - flags=PAGE_LOCKED%2CEXTERNAL_PAGE; - charset=UTF-8 -Content-Transfer-Encoding: binary - -The **~CategoryPage** [[Help:WikiPlugin|plugin]] puts boilerplate text on a category page to make it easily usable by novices. - -It finds the file templates/categorypage.tmpl, then loads it with a few variables substituted. - -This has only been used in wikilens.org. - -== Usage == -{{{ -<?plugin-form CategoryPage arguments ?> -}}} - -== Arguments == - -{| class="bordered" -|- -! Argument -! Description -! Default value -|- -| **exclude** -| Comma-separated list of pages to exclude -| false -|- -| **pagename** -| -| current page -|- -| **plural** -| -| false -|- -| **singular** -| -| false -|- -| **self_on_create** -| -| true -|- -| **showbuds** -| -| false -|} - -== Example == - -{{{ -<?plugin-form CategoryPage pagename=CategoryExample?> -}}} - -<?plugin-form CategoryPage pagename=CategoryExample?> - -== Author == -* Dan Frankowski - -== See Also == -* [[Help:TemplatePlugin|TemplatePlugin]] -* [[Help:CreatePagePlugin|CreatePagePlugin]] - -<noinclude> ----- -[[PhpWikiDocumentation]] [[CategoryWikiPlugin]] -</noinclude> Modified: trunk/pgsrc/Help%2FPopularTagsPlugin =================================================================== --- trunk/pgsrc/Help%2FPopularTagsPlugin 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/pgsrc/Help%2FPopularTagsPlugin 2021-11-16 16:08:27 UTC (rev 10649) @@ -1,4 +1,4 @@ -Date: Mon, 22 Feb 2021 19:16:32 +0000 +Date: Tue, 16 Nov 2021 17:02:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FPopularTagsPlugin; @@ -52,7 +52,6 @@ == See Also == * [[Help:Categories]] -* [[Help:CategoryPagePlugin]] <noinclude> ---- Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/pgsrc/ReleaseNotes 2021-11-16 16:08:27 UTC (rev 10649) @@ -1,4 +1,4 @@ -Date: Mon, 15 Nov 2021 15:09:41 +0000 +Date: Tue, 16 Nov 2021 17:02:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -24,6 +24,7 @@ === Plugins === * Chart plugin: new argument “legend” * ~PreferencesInfo plugin removed +* ~CategoryPage plugin removed, categories are better created with the button in the toolbar == 1.6.0 2021-08-12 Marc-Etienne Vargenau == Deleted: trunk/themes/default/templates/categorypage.tmpl =================================================================== --- trunk/themes/default/templates/categorypage.tmpl 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/themes/default/templates/categorypage.tmpl 2021-11-16 16:08:27 UTC (rev 10649) @@ -1,50 +0,0 @@ -<?php -// This template is used for the CategoryPage plugin. -?> -<div class="categorypage categorypage-form"> - -<p>This page represents the <?php echo $SINGULAR?> category.</p> - -<p>All pages that are in the <?php echo $SINGULAR?> category refer to this page.</p> - -<h3>To create a page in the <?php echo $SINGULAR?> category</h3> - -<ol> - -<li> - -Search to see if it already exists. We don't want lots of -duplicate pages. You can use this FuzzyPages search: - -<?plugin-form FuzzyPages ?> - -</li> - -<li> - -If it does not exist, you can create the page. You can use this -CreatePage button, or see <?php $link = WikiLink("Help:HowToUseWiki"); ?> <?php echo -$link ?> for more ways to navigate or create pages. - -<?php - $bpage = "~~[" . $PAGENAME . "]"; - - $initial_content = "\"This page is in the $bpage category. You must leave in at least one reference to $bpage in order for this page to be in the $bpage category. Otherwise, edit this text to describe your page.\""; - $adder = ""; - - $this->_printPlugin("<" . "?plugin-form CreatePage " . $adder . " initial_content=" . $initial_content . " ?" . ">"); -?> - -</li> - -<li> -Once you have created a page, it will simply appear in the list above. If you would -like to add information about the page, click on its name in the list and edit and save the text. -To ensure that the page stays in this category, make sure <b>[<?php echo $PAGENAME?>]</b> is in the description somewhere (including the -brackets to be safe). - -</li> - -</ol> - -</div> Deleted: trunk/themes/wikilens/templates/categorypage.tmpl =================================================================== --- trunk/themes/wikilens/templates/categorypage.tmpl 2021-11-15 14:35:53 UTC (rev 10648) +++ trunk/themes/wikilens/templates/categorypage.tmpl 2021-11-16 16:08:27 UTC (rev 10649) @@ -1,75 +0,0 @@ -<?php -// This template is used for the CategoryPage plugin. -?> -<div class="categorypage categorypage-form"> - -<p>This page represents the <?php echo $SINGULAR?> category.</p> - -<p>All pages that are in the <?php echo $SINGULAR?> category refer to this page.</p> - -<?php - -$this->_printPlugin("<" . "?plugin UserRatings nobuds=" . ($SHOWBUDS ? 0 : 1) . " category=\"" . $PAGENAME . "\" ?" . ">"); -?> -<br/> -<?php -if ($SHOWBUDS){ - $btn = Button(array('exclude' => "$EXCLUDE", - 'category' => "$PAGENAME", - 'showbuds' => false), - _("Hide Buddy Ratings in the $SINGULAR category"), - $PAGENAME); - - -} else { -$btn = Button(array('exclude' => "$EXCLUDE", - 'category' => "$PAGENAME", - 'showbuds' => true), - _("Show Buddy Ratings in the $SINGULAR category"), - $PAGENAME); -} - ?> -<?php echo $btn ?> - - -<h3>To create a page in the <?php echo $SINGULAR?> category</h3> - -<ol> - -<li> - -Search to see if it already exists. We don't want lots of -duplicate pages. You can use this FuzzyPages search: - -<?plugin-form FuzzyPages ?> - -</li> - -<li> - -If it does not exist, you can create the page. You can use this -CreatePage button, or see <?php $link = WikiLink("Help/HowToUseWiki"); ?> <?php echo -$link ?> for more ways to navigate or create pages. - -<?php - $bpage = "~~[" . $PAGENAME . "]"; - - $initial_content = "\"This page is in the $bpage category. You must leave in at least one reference to $bpage in order for this page to be in the $bpage category. Otherwise, edit this text to describe your page.\""; - $adder = ""; - - $this->_printPlugin("<" . "?plugin-form CreatePage " . $adder . " initial_content=" . $initial_content . " ?" . ">"); -?> - -</li> - -<li> -Once you have created a page, it will simply appear in the list above. If you would -like to add information about the page, click on its name in the list and edit and save the text. -To ensure that the page stays in this category, make sure <b>[<?php echo $PAGENAME?>]</b> is in the description somewhere (including the -brackets to be safe). - -</li> - -</ol> - -</div> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-16 16:31:14
|
Revision: 10650 http://sourceforge.net/p/phpwiki/code/10650 Author: vargenau Date: 2021-11-16 16:31:11 +0000 (Tue, 16 Nov 2021) Log Message: ----------- Remove themes/default/templates/homepage.tmpl, unused Modified Paths: -------------- trunk/locale/Makefile trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo Removed Paths: ------------- trunk/themes/default/templates/homepage.tmpl Modified: trunk/locale/Makefile =================================================================== --- trunk/locale/Makefile 2021-11-16 16:08:27 UTC (rev 10649) +++ trunk/locale/Makefile 2021-11-16 16:31:11 UTC (rev 10650) @@ -417,7 +417,6 @@ ${POT_FILE}: .././themes/default/templates/editpage.tmpl ${POT_FILE}: .././themes/default/templates/forumadd.tmpl ${POT_FILE}: .././themes/default/templates/head.tmpl -${POT_FILE}: .././themes/default/templates/homepage.tmpl ${POT_FILE}: .././themes/default/templates/htmldump.tmpl ${POT_FILE}: .././themes/default/templates/html.tmpl ${POT_FILE}: .././themes/default/templates/info.tmpl Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2021-11-16 16:08:27 UTC (rev 10649) +++ trunk/locale/po/de.po 2021-11-16 16:31:11 UTC (rev 10650) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:07+0100\n" +"POT-Creation-Date: 2021-11-16 17:29+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -5214,18 +5214,6 @@ msgid "Add Message" msgstr "Neue Nachricht" -#, php-format -msgid "You can personalize various settings in %s." -msgstr "Sie können einige Einstellungen in %s individuell gestalten." - -msgid "(Your preferences are stored as hidden data within this page.)" -msgstr "" -"(Ihre Einstellungen sind als versteckte Daten in dieser Seite hintergelegt.)" - -#, php-format -msgid "The %s subpage enables simple weblogging." -msgstr "Die %s UnterSeite ermöglicht ein einfaches Weblog." - msgid "1 word" msgstr "1 Wort" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2021-11-16 16:08:27 UTC (rev 10649) +++ trunk/locale/po/es.po 2021-11-16 16:31:11 UTC (rev 10650) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:07+0100\n" +"POT-Creation-Date: 2021-11-16 17:29+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -5104,17 +5104,6 @@ msgid "Add Message" msgstr "" -#, php-format -msgid "You can personalize various settings in %s." -msgstr "" - -msgid "(Your preferences are stored as hidden data within this page.)" -msgstr "" - -#, php-format -msgid "The %s subpage enables simple weblogging." -msgstr "" - msgid "1 word" msgstr "" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2021-11-16 16:08:27 UTC (rev 10649) +++ trunk/locale/po/fr.po 2021-11-16 16:31:11 UTC (rev 10650) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:07+0100\n" +"POT-Creation-Date: 2021-11-16 17:29+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -5201,17 +5201,6 @@ msgid "Add Message" msgstr "Ajouter un message" -#, php-format -msgid "You can personalize various settings in %s." -msgstr "Vous pouvez personnaliser quelques préférences dans %s." - -msgid "(Your preferences are stored as hidden data within this page.)" -msgstr "(Vos préférences sont enregistrées en mode invisible sur cette page.)" - -#, php-format -msgid "The %s subpage enables simple weblogging." -msgstr "Les sous-pages de %s permettent l'utilisation d'un blog simple." - msgid "1 word" msgstr "1 mot" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2021-11-16 16:08:27 UTC (rev 10649) +++ trunk/locale/po/it.po 2021-11-16 16:31:11 UTC (rev 10650) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:07+0100\n" +"POT-Creation-Date: 2021-11-16 17:29+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -5064,17 +5064,6 @@ msgid "Add Message" msgstr "" -#, php-format -msgid "You can personalize various settings in %s." -msgstr "" - -msgid "(Your preferences are stored as hidden data within this page.)" -msgstr "" - -#, php-format -msgid "The %s subpage enables simple weblogging." -msgstr "" - msgid "1 word" msgstr "" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2021-11-16 16:08:27 UTC (rev 10649) +++ trunk/locale/po/ja.po 2021-11-16 16:31:11 UTC (rev 10650) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:07+0100\n" +"POT-Creation-Date: 2021-11-16 17:29+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -5050,17 +5050,6 @@ msgid "Add Message" msgstr "" -#, php-format -msgid "You can personalize various settings in %s." -msgstr "" - -msgid "(Your preferences are stored as hidden data within this page.)" -msgstr "" - -#, php-format -msgid "The %s subpage enables simple weblogging." -msgstr "" - msgid "1 word" msgstr "" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2021-11-16 16:08:27 UTC (rev 10649) +++ trunk/locale/po/nl.po 2021-11-16 16:31:11 UTC (rev 10650) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:07+0100\n" +"POT-Creation-Date: 2021-11-16 17:29+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -5056,17 +5056,6 @@ msgid "Add Message" msgstr "" -#, php-format -msgid "You can personalize various settings in %s." -msgstr "" - -msgid "(Your preferences are stored as hidden data within this page.)" -msgstr "" - -#, php-format -msgid "The %s subpage enables simple weblogging." -msgstr "" - msgid "1 word" msgstr "" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2021-11-16 16:08:27 UTC (rev 10649) +++ trunk/locale/po/phpwiki.pot 2021-11-16 16:31:11 UTC (rev 10650) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:07+0100\n" +"POT-Creation-Date: 2021-11-16 17:29+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -5050,17 +5050,6 @@ msgid "Add Message" msgstr "" -#, php-format -msgid "You can personalize various settings in %s." -msgstr "" - -msgid "(Your preferences are stored as hidden data within this page.)" -msgstr "" - -#, php-format -msgid "The %s subpage enables simple weblogging." -msgstr "" - msgid "1 word" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2021-11-16 16:08:27 UTC (rev 10649) +++ trunk/locale/po/sv.po 2021-11-16 16:31:11 UTC (rev 10650) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:07+0100\n" +"POT-Creation-Date: 2021-11-16 17:29+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -5051,17 +5051,6 @@ msgid "Add Message" msgstr "" -#, php-format -msgid "You can personalize various settings in %s." -msgstr "" - -msgid "(Your preferences are stored as hidden data within this page.)" -msgstr "" - -#, php-format -msgid "The %s subpage enables simple weblogging." -msgstr "" - msgid "1 word" msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2021-11-16 16:08:27 UTC (rev 10649) +++ trunk/locale/po/zh.po 2021-11-16 16:31:11 UTC (rev 10650) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:07+0100\n" +"POT-Creation-Date: 2021-11-16 17:29+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -5072,17 +5072,6 @@ msgid "Add Message" msgstr "" -#, php-format -msgid "You can personalize various settings in %s." -msgstr "你可以在 %s 自訂多種個人化設定." - -msgid "(Your preferences are stored as hidden data within this page.)" -msgstr "(你的偏好設定已經存放並隱藏在此頁面中.)" - -#, php-format -msgid "The %s subpage enables simple weblogging." -msgstr "%s 子頁面啟動簡易 weblogging." - msgid "1 word" msgstr "1 個單字" Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Deleted: trunk/themes/default/templates/homepage.tmpl =================================================================== --- trunk/themes/default/templates/homepage.tmpl 2021-11-16 16:08:27 UTC (rev 10649) +++ trunk/themes/default/templates/homepage.tmpl 2021-11-16 16:31:11 UTC (rev 10650) @@ -1,36 +0,0 @@ -<?php -/** - * Note: Automatic homepage creation is not yet functional. - */ -$UserName = $user->getId(); -$DefaultMessage = sprintf(_("Describe %s here."), $UserName); - -$UserPreferencesMessage[0] = - sprintf(_("You can personalize various settings in %s."), - _("UserPreferences")); -$UserPreferencesMessage[1] = - _("(Your preferences are stored as hidden data within this page.)"); - -$CalendarSubpage = sprintf('[%s]', '/' . _("Calendar")); -$calendarMessage = sprintf(_("The %s subpage enables simple weblogging."), - $CalendarSubpage); - -$BackLinks = sprintf('<'.'?plugin BackLinks ?'.'>'); -$FullTextSearch = sprintf('<'.'?plugin-form FullTextSearch s=%s ?'.'>', - $UserName); -/** - * WikiMarkup with embedded PHP follows: - */ -?> -<?php echo $DefaultMessage?> - ----- -<?php echo $UserPreferencesMessage[0]?>%%% -_<?php echo $UserPreferencesMessage[1]?>_ - -<?php echo $CalendarMessage?> ----- -<?php echo $BackLinks?> -<?php echo $FullTextSearch?> ----- -<?php echo _("CategoryHomePages")?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-17 08:09:43
|
Revision: 10652 http://sourceforge.net/p/phpwiki/code/10652 Author: vargenau Date: 2021-11-17 08:09:41 +0000 (Wed, 17 Nov 2021) Log Message: ----------- PopularTagsPlugin: pagename and noheader are not used, update help page Modified Paths: -------------- trunk/lib/plugin/PopularTags.php trunk/pgsrc/Help%2FPopularTagsPlugin Modified: trunk/lib/plugin/PopularTags.php =================================================================== --- trunk/lib/plugin/PopularTags.php 2021-11-16 16:48:37 UTC (rev 10651) +++ trunk/lib/plugin/PopularTags.php 2021-11-17 08:09:41 UTC (rev 10652) @@ -45,10 +45,9 @@ function getDefaultArguments() { - return array('pagename' => '[pagename]', + return array( 'limit' => 10, 'mincount' => 5, - 'noheader' => 0, ); } @@ -71,8 +70,7 @@ $name = $b->getName(); if (preg_match("/^" . _("Template") . "/", $name)) continue; $pages = $b->getBackLinks(); - $bl[] = array('name' => $name, - 'count' => $pages->count()); + $bl[] = array('name' => $name, 'count' => $pages->count()); } usort($bl, array($this, 'cmp_by_count')); @@ -84,8 +82,7 @@ $count = $b['count']; if ($count < $mincount) break; if ($i > $limit) break; - $wo = preg_replace("/^(" . _("Category") . "|" - . _("Topic") . ")/", "", $name); + $wo = preg_replace("/^(" . _("Category") . "|" . _("Topic") . ")/", "", $name); $wo = HTML(HTML::span($wo), HTML::raw(" "), HTML::small("(" . $count . ")")); $link = WikiLink($name, 'auto', $wo); $html->pushContent(HTML::li($link)); Modified: trunk/pgsrc/Help%2FPopularTagsPlugin =================================================================== --- trunk/pgsrc/Help%2FPopularTagsPlugin 2021-11-16 16:48:37 UTC (rev 10651) +++ trunk/pgsrc/Help%2FPopularTagsPlugin 2021-11-17 08:09:41 UTC (rev 10652) @@ -1,4 +1,4 @@ -Date: Tue, 16 Nov 2021 17:02:08 +0000 +Date: Wed, 17 Nov 2021 09:08:23 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FPopularTagsPlugin; @@ -22,21 +22,13 @@ ! Description ! Default value |- -| **pagename** -| -| -|- | **limit** -| +| Maximum number of tags to display | 10 |- | **mincount** -| +| Minimum popularity of the tag (number of backlinks) | 5 -|- -| **noheader** -| Boolean. If true, header should be omitted. -| false |} == Example == This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-17 18:51:06
|
Revision: 10657 http://sourceforge.net/p/phpwiki/code/10657 Author: vargenau Date: 2021-11-17 18:51:03 +0000 (Wed, 17 Nov 2021) Log Message: ----------- Spelling Modified Paths: -------------- trunk/config/config-dist.ini trunk/configurator.php trunk/lib/WikiDB.php trunk/lib/editpage.php trunk/lib/mimelib.php trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo Modified: trunk/config/config-dist.ini =================================================================== --- trunk/config/config-dist.ini 2021-11-17 18:21:02 UTC (rev 10656) +++ trunk/config/config-dist.ini 2021-11-17 18:51:03 UTC (rev 10657) @@ -859,7 +859,7 @@ ; ; The map will be taken from a page name InterWikiMap. ; If that page is not found (or is not locked), or map -; data can not be found in it, then the file specified +; data cannot be found in it, then the file specified ; by INTERWIKI_MAP_FILE (if any) will be used. ;INTERWIKI_MAP_FILE = lib/interwiki.map Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2021-11-17 18:21:02 UTC (rev 10656) +++ trunk/configurator.php 2021-11-17 18:51:03 UTC (rev 10657) @@ -1282,7 +1282,7 @@ The map will be taken from a page name InterWikiMap. If that page is not found (or is not locked), or map -data can not be found in it, then the file specified +data cannot be found in it, then the file specified by INTERWIKI_MAP_FILE (if any) will be used."); $properties["WARN_NONPUBLIC_INTERWIKIMAP"] = Modified: trunk/lib/WikiDB.php =================================================================== --- trunk/lib/WikiDB.php 2021-11-17 18:21:02 UTC (rev 10656) +++ trunk/lib/WikiDB.php 2021-11-17 18:51:03 UTC (rev 10657) @@ -61,7 +61,7 @@ * zero. * * <tt>WikiDB_PageRevision</tt>s have read-only semantics. One can - * only create new revisions or delete old ones --- one can not modify + * only create new revisions or delete old ones --- one cannot modify * an existing revision. */ class WikiDB Modified: trunk/lib/editpage.php =================================================================== --- trunk/lib/editpage.php 2021-11-17 18:21:02 UTC (rev 10656) +++ trunk/lib/editpage.php 2021-11-17 18:51:03 UTC (rev 10657) @@ -573,7 +573,7 @@ { return HTML(HTML::h2(_("Page Locked")), - HTML::p(_("This page has been locked by the administrator so your changes can not be saved.")), + HTML::p(_("This page has been locked by the administrator so your changes cannot be saved.")), HTML::p(_("(Copy your changes to the clipboard. You can try editing a different page or save your text in a text editor.)")), HTML::p(_("Sorry for the inconvenience."))); } @@ -618,7 +618,7 @@ return HTML(HTML::h2(_("Conflicting Edits!")), HTML::p(_("In the time since you started editing this page, another user has saved a new version of it.")), - HTML::p(_("Your changes can not be saved as they are, since doing so would overwrite the other author's changes. So, your changes and those of the other author have been combined. The result is shown below.")), + HTML::p(_("Your changes cannot be saved as they are, since doing so would overwrite the other author's changes. So, your changes and those of the other author have been combined. The result is shown below.")), $message); } Modified: trunk/lib/mimelib.php =================================================================== --- trunk/lib/mimelib.php 2021-11-17 18:21:02 UTC (rev 10656) +++ trunk/lib/mimelib.php 2021-11-17 18:51:03 UTC (rev 10657) @@ -85,7 +85,7 @@ { global $mime_multipart_count; - // The string "=_" can not occur in quoted-printable encoded data. + // The string "=_" cannot occur in quoted-printable encoded data. $boundary = "=_multipart_boundary_" . ++$mime_multipart_count; $head = MimeContentTypeHeader('multipart', 'mixed', Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2021-11-17 18:21:02 UTC (rev 10656) +++ trunk/locale/po/de.po 2021-11-17 18:51:03 UTC (rev 10657) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:29+0100\n" +"POT-Creation-Date: 2021-11-17 19:48+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -238,7 +238,7 @@ msgstr "Seite Gesperrt" msgid "" -"This page has been locked by the administrator so your changes can not be " +"This page has been locked by the administrator so your changes cannot be " "saved." msgstr "" "Diese Seite wurde vom Administrator für die allgemeine Bearbeitung gesperrt. " @@ -294,9 +294,9 @@ "hat ein anderer Benutzer bereits eine neuere Version gespeichert." msgid "" -"Your changes can not be saved as they are, since doing so would overwrite " -"the other author's changes. So, your changes and those of the other author " -"have been combined. The result is shown below." +"Your changes cannot be saved as they are, since doing so would overwrite the " +"other author's changes. So, your changes and those of the other author have " +"been combined. The result is shown below." msgstr "" "Ihre Änderungen können so, wie sie sind, nicht gespeichert werden. Das hätte " "unzulässigerweise die bereits gesicherten Änderungen des anderen Autors " @@ -5051,6 +5051,9 @@ msgid "Page Execution took %s seconds" msgstr "Ausführung dieser Seite dauerte %s Sekunden" +msgid "Author History" +msgstr "Autoren Protokoll" + msgid "Diff previous Revision" msgstr "Diff zu voriger Version" @@ -5660,9 +5663,6 @@ msgid "Special Actions" msgstr "" -msgid "Author History" -msgstr "Autoren Protokoll" - msgid "Purge HTML cache" msgstr "HTML-Cachedatei Säubern" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2021-11-17 18:21:02 UTC (rev 10656) +++ trunk/locale/po/es.po 2021-11-17 18:51:03 UTC (rev 10657) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:29+0100\n" +"POT-Creation-Date: 2021-11-17 19:48+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -239,7 +239,7 @@ msgstr "Página Bloqueada" msgid "" -"This page has been locked by the administrator so your changes can not be " +"This page has been locked by the administrator so your changes cannot be " "saved." msgstr "" "Esta página ha sido bloqueada por el administrador y no puede ser editada." @@ -293,9 +293,9 @@ "ahorrado una nueva versión de ella." msgid "" -"Your changes can not be saved as they are, since doing so would overwrite " -"the other author's changes. So, your changes and those of the other author " -"have been combined. The result is shown below." +"Your changes cannot be saved as they are, since doing so would overwrite the " +"other author's changes. So, your changes and those of the other author have " +"been combined. The result is shown below." msgstr "" "Sus cambios no se pueden ahorrar como son, desde hacer así que " "sobreescribirían los cambios del otro autor. Así pues, se han combinado sus " @@ -4946,6 +4946,9 @@ msgid "Page Execution took %s seconds" msgstr "" +msgid "Author History" +msgstr "" + msgid "Diff previous Revision" msgstr "" @@ -5531,9 +5534,6 @@ msgid "Special Actions" msgstr "" -msgid "Author History" -msgstr "" - msgid "Purge HTML cache" msgstr "" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2021-11-17 18:21:02 UTC (rev 10656) +++ trunk/locale/po/fr.po 2021-11-17 18:51:03 UTC (rev 10657) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:29+0100\n" +"POT-Creation-Date: 2021-11-17 19:48+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -237,7 +237,7 @@ msgstr "Page verrouillée" msgid "" -"This page has been locked by the administrator so your changes can not be " +"This page has been locked by the administrator so your changes cannot be " "saved." msgstr "" "Cette page a été verrouillée par l'administrateur et vos changements n'ont " @@ -299,9 +299,9 @@ "a enregistré une nouvelle version." msgid "" -"Your changes can not be saved as they are, since doing so would overwrite " -"the other author's changes. So, your changes and those of the other author " -"have been combined. The result is shown below." +"Your changes cannot be saved as they are, since doing so would overwrite the " +"other author's changes. So, your changes and those of the other author have " +"been combined. The result is shown below." msgstr "" "Vos modifications ne peuvent être enregistrées, puisqu'elles écraseraient " "celles de l'autre utilisateur. Ainsi donc, vos modifications et celles de " @@ -5039,6 +5039,9 @@ msgid "Page Execution took %s seconds" msgstr "L'exécution de la page a pris %s secondes" +msgid "Author History" +msgstr "Historique des auteurs" + msgid "Diff previous Revision" msgstr "Différences avec la version précédente" @@ -5459,7 +5462,7 @@ msgstr "" "Cacher ou montrer les icônes de liens (si supportées par le thème actuel). " "Très utile pour les navigateurs ne supportant pas les images ou pour les " -"connexion bas débit." +"connexions bas débit." #, php-format msgid "Add %s" @@ -5651,9 +5654,6 @@ msgid "Special Actions" msgstr "Actions spéciales" -msgid "Author History" -msgstr "Historique des auteurs" - msgid "Purge HTML cache" msgstr "Purger le cache HTML" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2021-11-17 18:21:02 UTC (rev 10656) +++ trunk/locale/po/it.po 2021-11-17 18:51:03 UTC (rev 10657) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:29+0100\n" +"POT-Creation-Date: 2021-11-17 19:48+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -227,7 +227,7 @@ msgstr "Pagina Bloccata" msgid "" -"This page has been locked by the administrator so your changes can not be " +"This page has been locked by the administrator so your changes cannot be " "saved." msgstr "" "Spiacente, ma questa pagina è stata bloccata dall'amministratore,quindi le " @@ -282,9 +282,9 @@ "utente ha conservato una nuova versione di esso." msgid "" -"Your changes can not be saved as they are, since doing so would overwrite " -"the other author's changes. So, your changes and those of the other author " -"have been combined. The result is shown below." +"Your changes cannot be saved as they are, since doing so would overwrite the " +"other author's changes. So, your changes and those of the other author have " +"been combined. The result is shown below." msgstr "" "I vostri cambiamenti non possono essere conservati mentre sono, dal fare in " "modo da scriverebbero sopra i cambiamenti dell'altro autore. Così, i vostri " @@ -4906,6 +4906,9 @@ msgid "Page Execution took %s seconds" msgstr "" +msgid "Author History" +msgstr "" + msgid "Diff previous Revision" msgstr "" @@ -5491,9 +5494,6 @@ msgid "Special Actions" msgstr "" -msgid "Author History" -msgstr "" - msgid "Purge HTML cache" msgstr "RimuoviDallaCacheHtml" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2021-11-17 18:21:02 UTC (rev 10656) +++ trunk/locale/po/ja.po 2021-11-17 18:51:03 UTC (rev 10657) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:29+0100\n" +"POT-Creation-Date: 2021-11-17 19:48+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -228,7 +228,7 @@ msgstr "ページをロックしました" msgid "" -"This page has been locked by the administrator so your changes can not be " +"This page has been locked by the administrator so your changes cannot be " "saved." msgstr "" @@ -274,9 +274,9 @@ msgstr "" msgid "" -"Your changes can not be saved as they are, since doing so would overwrite " -"the other author's changes. So, your changes and those of the other author " -"have been combined. The result is shown below." +"Your changes cannot be saved as they are, since doing so would overwrite the " +"other author's changes. So, your changes and those of the other author have " +"been combined. The result is shown below." msgstr "" msgid "Undo" @@ -4892,6 +4892,9 @@ msgid "Page Execution took %s seconds" msgstr "" +msgid "Author History" +msgstr "" + msgid "Diff previous Revision" msgstr "" @@ -5477,9 +5480,6 @@ msgid "Special Actions" msgstr "" -msgid "Author History" -msgstr "" - msgid "Purge HTML cache" msgstr "" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2021-11-17 18:21:02 UTC (rev 10656) +++ trunk/locale/po/nl.po 2021-11-17 18:51:03 UTC (rev 10657) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:29+0100\n" +"POT-Creation-Date: 2021-11-17 19:48+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -230,7 +230,7 @@ msgstr "Sidan är Låst" msgid "" -"This page has been locked by the administrator so your changes can not be " +"This page has been locked by the administrator so your changes cannot be " "saved." msgstr "" "Deze pagina is afgesloten door de beheerder en je veranderingen kan niet " @@ -280,9 +280,9 @@ msgstr "" msgid "" -"Your changes can not be saved as they are, since doing so would overwrite " -"the other author's changes. So, your changes and those of the other author " -"have been combined. The result is shown below." +"Your changes cannot be saved as they are, since doing so would overwrite the " +"other author's changes. So, your changes and those of the other author have " +"been combined. The result is shown below." msgstr "" msgid "Undo" @@ -4898,6 +4898,9 @@ msgid "Page Execution took %s seconds" msgstr "" +msgid "Author History" +msgstr "" + msgid "Diff previous Revision" msgstr "" @@ -5483,9 +5486,6 @@ msgid "Special Actions" msgstr "" -msgid "Author History" -msgstr "" - msgid "Purge HTML cache" msgstr "" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2021-11-17 18:21:02 UTC (rev 10656) +++ trunk/locale/po/phpwiki.pot 2021-11-17 18:51:03 UTC (rev 10657) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:29+0100\n" +"POT-Creation-Date: 2021-11-17 19:48+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -228,7 +228,7 @@ msgstr "" msgid "" -"This page has been locked by the administrator so your changes can not be " +"This page has been locked by the administrator so your changes cannot be " "saved." msgstr "" @@ -274,9 +274,9 @@ msgstr "" msgid "" -"Your changes can not be saved as they are, since doing so would overwrite " -"the other author's changes. So, your changes and those of the other author " -"have been combined. The result is shown below." +"Your changes cannot be saved as they are, since doing so would overwrite the " +"other author's changes. So, your changes and those of the other author have " +"been combined. The result is shown below." msgstr "" msgid "Undo" @@ -4892,6 +4892,9 @@ msgid "Page Execution took %s seconds" msgstr "" +msgid "Author History" +msgstr "" + msgid "Diff previous Revision" msgstr "" @@ -5477,9 +5480,6 @@ msgid "Special Actions" msgstr "" -msgid "Author History" -msgstr "" - msgid "Purge HTML cache" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2021-11-17 18:21:02 UTC (rev 10656) +++ trunk/locale/po/sv.po 2021-11-17 18:51:03 UTC (rev 10657) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:29+0100\n" +"POT-Creation-Date: 2021-11-17 19:48+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -227,7 +227,7 @@ msgstr "Sidan är Låst" msgid "" -"This page has been locked by the administrator so your changes can not be " +"This page has been locked by the administrator so your changes cannot be " "saved." msgstr "Den här sidan är låst av administratören och kan ej redigeras." @@ -275,9 +275,9 @@ msgstr "" msgid "" -"Your changes can not be saved as they are, since doing so would overwrite " -"the other author's changes. So, your changes and those of the other author " -"have been combined. The result is shown below." +"Your changes cannot be saved as they are, since doing so would overwrite the " +"other author's changes. So, your changes and those of the other author have " +"been combined. The result is shown below." msgstr "" msgid "Undo" @@ -4893,6 +4893,9 @@ msgid "Page Execution took %s seconds" msgstr "" +msgid "Author History" +msgstr "" + msgid "Diff previous Revision" msgstr "" @@ -5478,9 +5481,6 @@ msgid "Special Actions" msgstr "" -msgid "Author History" -msgstr "" - msgid "Purge HTML cache" msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2021-11-17 18:21:02 UTC (rev 10656) +++ trunk/locale/po/zh.po 2021-11-17 18:51:03 UTC (rev 10657) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-16 17:29+0100\n" +"POT-Creation-Date: 2021-11-17 19:48+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -226,7 +226,7 @@ msgstr "頁面已被鎖定" msgid "" -"This page has been locked by the administrator so your changes can not be " +"This page has been locked by the administrator so your changes cannot be " "saved." msgstr "此頁面已被管理者鎖定,所以你的更動無法儲存." @@ -275,9 +275,9 @@ msgstr "從你上次修改這個頁面到現在的這段時間,已經有使用者儲存了較新的版本." msgid "" -"Your changes can not be saved as they are, since doing so would overwrite " -"the other author's changes. So, your changes and those of the other author " -"have been combined. The result is shown below." +"Your changes cannot be saved as they are, since doing so would overwrite the " +"other author's changes. So, your changes and those of the other author have " +"been combined. The result is shown below." msgstr "" "無法儲存你所變更的部份,在你編輯的這段時間,已經有其他作者變更了.所以你所變更的" "部份已經和其他作者變更的部份合併.結果顯示在下面." @@ -4914,6 +4914,9 @@ msgid "Page Execution took %s seconds" msgstr "執行此頁面花了 %s 秒" +msgid "Author History" +msgstr "作者歷程" + msgid "Diff previous Revision" msgstr "與上個修訂做比對" @@ -5505,9 +5508,6 @@ msgid "Special Actions" msgstr "" -msgid "Author History" -msgstr "作者歷程" - msgid "Purge HTML cache" msgstr "" Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-21 18:01:16
|
Revision: 10667 http://sourceforge.net/p/phpwiki/code/10667 Author: vargenau Date: 2021-11-21 18:01:13 +0000 (Sun, 21 Nov 2021) Log Message: ----------- First argument of WikiLink must be "__" Modified Paths: -------------- trunk/lib/editpage.php trunk/lib/plugin/RateIt.php trunk/lib/plugin/RecentEdits.php trunk/lib/plugin/RelatedChanges.php trunk/themes/MonoBook/templates/browse-footer.tmpl Modified: trunk/lib/editpage.php =================================================================== --- trunk/lib/editpage.php 2021-11-21 17:48:24 UTC (rev 10666) +++ trunk/lib/editpage.php 2021-11-21 18:01:13 UTC (rev 10667) @@ -586,10 +586,10 @@ private function getModeratedMessage() { return - HTML(HTML::h2(WikiLink(_("ModeratedPage"))), + HTML(HTML::h2(WikiLink(__("ModeratedPage"))), HTML::p(fmt("You can edit away, but your changes will have to be approved by the defined moderators at the definition in %s", WikiLink(_("ModeratedPage")))), HTML::p(fmt("The approval has a grace period of 5 days. If you have your e-mail defined in your %s, you will get a notification of approval or rejection.", - WikiLink(_("UserPreferences"))))); + WikiLink(__("UserPreferences"))))); } protected function getConflictMessage($unresolved = false) Modified: trunk/lib/plugin/RateIt.php =================================================================== --- trunk/lib/plugin/RateIt.php 2021-11-21 17:48:24 UTC (rev 10666) +++ trunk/lib/plugin/RateIt.php 2021-11-21 18:01:13 UTC (rev 10667) @@ -349,8 +349,7 @@ $argstr .= $key . "=" . $value; $widget = $this->run($request->_dbi, $argstr, $request, $basepage); - return $this->makeBox(WikiLink(_("RateIt"), '', _("Rate It")), - $widget); + return $this->makeBox(WikiLink(__("RateIt"), '', _("Rate It")), $widget); } /** Modified: trunk/lib/plugin/RecentEdits.php =================================================================== --- trunk/lib/plugin/RecentEdits.php 2021-11-21 17:48:24 UTC (rev 10666) +++ trunk/lib/plugin/RecentEdits.php 2021-11-21 18:01:13 UTC (rev 10667) @@ -58,7 +58,7 @@ $args['show_deleted'] = false; $args['show_all'] = true; $args['days'] = 90; - return $this->makeBox(WikiLink(_("RecentEdits"), '', _("Recent Edits")), + return $this->makeBox(WikiLink(__("RecentEdits"), '', _("Recent Edits")), $this->format($this->getChanges($request->_dbi, $args), $args)); } } Modified: trunk/lib/plugin/RelatedChanges.php =================================================================== --- trunk/lib/plugin/RelatedChanges.php 2021-11-21 17:48:24 UTC (rev 10666) +++ trunk/lib/plugin/RelatedChanges.php 2021-11-21 18:01:13 UTC (rev 10667) @@ -92,7 +92,7 @@ $args['show_deleted'] = false; $args['show_all'] = false; $args['days'] = 90; - return $this->makeBox(WikiLink(_("RelatedChanges"), '', _("Related Changes")), + return $this->makeBox(WikiLink(__("RelatedChanges"), '', _("Related Changes")), $this->format($this->getChanges($request->_dbi, $args), $args)); } Modified: trunk/themes/MonoBook/templates/browse-footer.tmpl =================================================================== --- trunk/themes/MonoBook/templates/browse-footer.tmpl 2021-11-21 17:48:24 UTC (rev 10666) +++ trunk/themes/MonoBook/templates/browse-footer.tmpl 2021-11-21 18:01:13 UTC (rev 10667) @@ -11,8 +11,8 @@ <a class="internal" href="http://phpwiki.demo.free.fr/index.php/Copyrights">Copyrights</a> <?php } ?> </b> for details).<br /></li> -<?php if ($request->_dbi->isWikiPage(__("About").WIKI_NAME)) { ?> - <?php echo WikiLink(_("About").WIKI_NAME) ?> +<?php if ($request->_dbi->isWikiPage(__("About")." ".WIKI_NAME)) { ?> + <?php echo WikiLink(__("About")." ".WIKI_NAME) ?> <?php } else { ?> <li id="f-about"><a href="http://phpwiki.demo.free.fr/index.php/Help/PhpWiki">About PhpWiki</a></li> <?php } ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-22 20:36:43
|
Revision: 10675 http://sourceforge.net/p/phpwiki/code/10675 Author: vargenau Date: 2021-11-22 20:36:40 +0000 (Mon, 22 Nov 2021) Log Message: ----------- Translate strings only used with "__" Modified Paths: -------------- trunk/lib/IniConfig.php trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2021-11-22 20:23:38 UTC (rev 10674) +++ trunk/lib/IniConfig.php 2021-11-22 20:36:40 UTC (rev 10675) @@ -918,3 +918,23 @@ { return $text; } + +// These strings are used only with "__", they need to be translated +$strings_to_translate = array( + _("About"), + _("AdminDeleteAcl"), + _("CategoryActionPage"), + _("CategoryWikiPlugin"), + _("Copyrights"), + _("DeleteAcl"), + _("GeneralDisclaimer"), + _("GoodStyle"), + _("HowTo"), + _("MyRecentChanges"), + _("PgsrcTranslation"), + _("RecentChangesMyPages"), + _("SemanticSearchAdvancedPlugin"), + _("SetAclSimple"), + _("SetExternal"), + _("TermsOfUse"), +); Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2021-11-22 20:23:38 UTC (rev 10674) +++ trunk/locale/po/de.po 2021-11-22 20:36:40 UTC (rev 10675) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-17 19:48+0100\n" +"POT-Creation-Date: 2021-11-22 21:29+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -260,9 +260,6 @@ "moderators at the definition in %s" msgstr "" -msgid "UserPreferences" -msgstr "BenutzerEinstellungen" - #, php-format msgid "" "The approval has a grace period of 5 days. If you have your e-mail defined " @@ -488,6 +485,54 @@ msgid "An unnamed PhpWiki" msgstr "Unbenanntes PhpWiki" +msgid "About" +msgstr "Über" + +msgid "AdminDeleteAcl" +msgstr "AdminAclLöschen" + +msgid "CategoryActionPage" +msgstr "KategorieAktionSeite" + +msgid "CategoryWikiPlugin" +msgstr "KategorieWikiPlugin" + +msgid "Copyrights" +msgstr "Urheberrechte" + +msgid "DeleteAcl" +msgstr "AclLöschen" + +msgid "GeneralDisclaimer" +msgstr "" + +msgid "GoodStyle" +msgstr "GuterStil" + +msgid "HowTo" +msgstr "" + +msgid "MyRecentChanges" +msgstr "MeineNeuesteÄnderungen" + +msgid "PgsrcTranslation" +msgstr "PgsrcÜbersetzung" + +msgid "RecentChangesMyPages" +msgstr "" + +msgid "SemanticSearchAdvancedPlugin" +msgstr "" + +msgid "SetAclSimple" +msgstr "" + +msgid "SetExternal" +msgstr "" + +msgid "TermsOfUse" +msgstr "BenutzungsBedingungen" + msgid "Invalid [] syntax ignored" msgstr "Ungültige [] syntax ignoriert" @@ -2222,6 +2267,9 @@ msgid "Changing passwords is done at " msgstr "" +msgid "UserPreferences" +msgstr "BenutzerEinstellungen" + #, php-format msgid "No e-mail stored for user %s." msgstr "" @@ -2422,9 +2470,6 @@ msgid "Prediction: %.1f" msgstr "" -msgid "RateIt" -msgstr "BewerteEs" - msgid "Rate It" msgstr "Bewerte es" @@ -2677,9 +2722,6 @@ msgid "Related Changes" msgstr "Verlinkte Änderungen" -msgid "RelatedChanges" -msgstr "VerlinkteÄnderungen" - msgid "Layout tables using a very rich markup style." msgstr "Tabellen mit erweiterter HTML Syntax." @@ -4224,6 +4266,9 @@ msgid "Processing" msgstr "" +msgid "RateIt" +msgstr "BewerteEs" + msgid "RawHtml" msgstr "" @@ -4245,6 +4290,9 @@ msgid "RedirectToPlugin" msgstr "WeiterLeitenPlugin" +msgid "RelatedChanges" +msgstr "VerlinkteÄnderungen" + msgid "ReleaseNotes" msgstr "" @@ -5666,9 +5714,6 @@ msgid "Purge HTML cache" msgstr "HTML-Cachedatei Säubern" -msgid "About" -msgstr "Über" - #, php-format msgid "Statistics about %s." msgstr "Statistik über %s." @@ -5859,24 +5904,9 @@ #~ msgid "CONVERTING" #~ msgstr "KONVERTIERE" -#~ msgid "GoodStyle" -#~ msgstr "GuterStil" - #~ msgid "Page info" #~ msgstr "Seiten Info" -#~ msgid "Copyrights" -#~ msgstr "Urheberrechte" - -#~ msgid "TermsOfUse" -#~ msgstr "BenutzungsBedingungen" - -#~ msgid "" -#~ "Empty Preferences or format of UserPreferences cookie not recognised." -#~ msgstr "" -#~ "Leere BenutzerEinstellungen oder BenutzerEinstellungs Cookie nicht " -#~ "erkannt." - #~ msgid "Default preferences will be used." #~ msgstr "Die Vorgabe Benutzereinstellungen werden verwendent." Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2021-11-22 20:23:38 UTC (rev 10674) +++ trunk/locale/po/es.po 2021-11-22 20:36:40 UTC (rev 10675) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-17 19:48+0100\n" +"POT-Creation-Date: 2021-11-22 21:29+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -260,9 +260,6 @@ "moderators at the definition in %s" msgstr "" -msgid "UserPreferences" -msgstr "UsuarioPreferencias" - #, php-format msgid "" "The approval has a grace period of 5 days. If you have your e-mail defined " @@ -483,6 +480,54 @@ msgid "An unnamed PhpWiki" msgstr "Un PhpWiki sin un nombre" +msgid "About" +msgstr "" + +msgid "AdminDeleteAcl" +msgstr "" + +msgid "CategoryActionPage" +msgstr "" + +msgid "CategoryWikiPlugin" +msgstr "" + +msgid "Copyrights" +msgstr "" + +msgid "DeleteAcl" +msgstr "" + +msgid "GeneralDisclaimer" +msgstr "" + +msgid "GoodStyle" +msgstr "BuenEstilo" + +msgid "HowTo" +msgstr "" + +msgid "MyRecentChanges" +msgstr "Mis Cambios Recientes" + +msgid "PgsrcTranslation" +msgstr "" + +msgid "RecentChangesMyPages" +msgstr "" + +msgid "SemanticSearchAdvancedPlugin" +msgstr "" + +msgid "SetAclSimple" +msgstr "" + +msgid "SetExternal" +msgstr "" + +msgid "TermsOfUse" +msgstr "" + msgid "Invalid [] syntax ignored" msgstr "[] el sintaxis inválido no hizo caso" @@ -2164,6 +2209,9 @@ msgid "Changing passwords is done at " msgstr "" +msgid "UserPreferences" +msgstr "UsuarioPreferencias" + #, php-format msgid "No e-mail stored for user %s." msgstr "" @@ -2360,9 +2408,6 @@ msgid "Prediction: %.1f" msgstr "" -msgid "RateIt" -msgstr "" - msgid "Rate It" msgstr "" @@ -2610,9 +2655,6 @@ msgid "Related Changes" msgstr "Cambios Relacionados" -msgid "RelatedChanges" -msgstr "CambiosRelacionados" - msgid "Layout tables using a very rich markup style." msgstr "" @@ -4122,6 +4164,9 @@ msgid "Processing" msgstr "" +msgid "RateIt" +msgstr "" + msgid "RawHtml" msgstr "" @@ -4143,6 +4188,9 @@ msgid "RedirectToPlugin" msgstr "" +msgid "RelatedChanges" +msgstr "CambiosRelacionados" + msgid "ReleaseNotes" msgstr "" @@ -5537,9 +5585,6 @@ msgid "Purge HTML cache" msgstr "" -msgid "About" -msgstr "" - #, php-format msgid "Statistics about %s." msgstr "" @@ -5679,21 +5724,9 @@ #~ msgid "version <em>%s</em>" #~ msgstr "versión <em>%s</em>" -#~ msgid "GoodStyle" -#~ msgstr "BuenEstilo" - #~ msgid "Page dump" #~ msgstr "Descarge de la Página" -#~ msgid "MyRecentChanges" -#~ msgstr "Mis Cambios Recientes" - -#~ msgid "" -#~ "Empty Preferences or format of UserPreferences cookie not recognised." -#~ msgstr "" -#~ "Preferencias o formato vacías de la galleta de UsuarioPreferencias no " -#~ "reconocido." - #~ msgid "Default preferences will be used." #~ msgstr "Las preferencias del defecto serán utilizadas." Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2021-11-22 20:23:38 UTC (rev 10674) +++ trunk/locale/po/fr.po 2021-11-22 20:36:40 UTC (rev 10675) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-17 19:48+0100\n" +"POT-Creation-Date: 2021-11-22 21:29+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -262,9 +262,6 @@ "Vous pouvez modifier, mais vos modifications devront être approuvées par les " "modérateurs de %s" -msgid "UserPreferences" -msgstr "PréférencesUtilisateurs" - #, php-format msgid "" "The approval has a grace period of 5 days. If you have your e-mail defined " @@ -493,6 +490,54 @@ msgid "An unnamed PhpWiki" msgstr "Un PhpWiki sans titre" +msgid "About" +msgstr "À propos de" + +msgid "AdminDeleteAcl" +msgstr "AdminSupprimerAcl" + +msgid "CategoryActionPage" +msgstr "CatégoriePageDAction" + +msgid "CategoryWikiPlugin" +msgstr "CatégorieGreffonWiki" + +msgid "Copyrights" +msgstr "Copyrights" + +msgid "DeleteAcl" +msgstr "SupprimerAcl" + +msgid "GeneralDisclaimer" +msgstr "ConditionsGénérales" + +msgid "GoodStyle" +msgstr "StyleCorrect" + +msgid "HowTo" +msgstr "CommentFaire" + +msgid "MyRecentChanges" +msgstr "MesChangementsRécents" + +msgid "PgsrcTranslation" +msgstr "TraductionPgsrc" + +msgid "RecentChangesMyPages" +msgstr "DernièresModifsDeMesPages" + +msgid "SemanticSearchAdvancedPlugin" +msgstr "GreffonRechercheSémantiqueAvancée" + +msgid "SetAclSimple" +msgstr "ModifierAclSimple" + +msgid "SetExternal" +msgstr "RendreExterne" + +msgid "TermsOfUse" +msgstr "Conditions d'utilisation" + msgid "Invalid [] syntax ignored" msgstr "Syntaxe [] invalide ignorée" @@ -2205,6 +2250,9 @@ msgid "Changing passwords is done at " msgstr "" +msgid "UserPreferences" +msgstr "PréférencesUtilisateurs" + #, php-format msgid "No e-mail stored for user %s." msgstr "Pas d'adresse électronique enregistrée pour %s." @@ -2404,9 +2452,6 @@ msgid "Prediction: %.1f" msgstr "Prédiction : %.1f" -msgid "RateIt" -msgstr "ÉvaluezLa" - msgid "Rate It" msgstr "Évaluez-la" @@ -2659,9 +2704,6 @@ msgid "Related Changes" msgstr "Changements liés" -msgid "RelatedChanges" -msgstr "ChangementsLiés" - msgid "Layout tables using a very rich markup style." msgstr "Un système de marques pour faire des tableaux sophistiqués." @@ -4214,6 +4256,9 @@ msgid "Processing" msgstr "" +msgid "RateIt" +msgstr "ÉvaluezLa" + msgid "RawHtml" msgstr "HtmlPur" @@ -4235,6 +4280,9 @@ msgid "RedirectToPlugin" msgstr "GreffonRedirection" +msgid "RelatedChanges" +msgstr "ChangementsLiés" + msgid "ReleaseNotes" msgstr "NotesDeVersion" @@ -4847,7 +4895,7 @@ msgstr "Greffon %s: non défini" msgid "Related Links" -msgstr "Liens correspondants" +msgstr "Liens connexes" msgid "External Links" msgstr "Liens externes" @@ -5657,9 +5705,6 @@ msgid "Purge HTML cache" msgstr "Purger le cache HTML" -msgid "About" -msgstr "À propos de" - #, php-format msgid "Statistics about %s." msgstr "Statistiques sur %s." @@ -5852,12 +5897,6 @@ #~ msgstr "" #~ "Les sous-pages ne peuvent être créées quand la page mère n'existe pas." -#~ msgid "HowTo" -#~ msgstr "CommentFaire" - -#~ msgid "GoodStyle" -#~ msgstr "StyleCorrect" - #~ msgid "Page info" #~ msgstr "Infos sur la page" @@ -5864,22 +5903,6 @@ #~ msgid "Page dump" #~ msgstr "Cliché de la page" -#~ msgid "Copyrights" -#~ msgstr "Copyrights" - -#~ msgid "GeneralDisclaimer" -#~ msgstr "ConditionsGénérales" - -#~ msgid "MyRecentChanges" -#~ msgstr "MesChangementsRécents" - -#~ msgid "TermsOfUse" -#~ msgstr "Conditions d'utilisation" - -#~ msgid "" -#~ "Empty Preferences or format of UserPreferences cookie not recognised." -#~ msgstr "PréférencesUtilisateurs vides, le cookie peut être mal reconnu." - #~ msgid "Default preferences will be used." #~ msgstr "Les préférences par défaut seront utilisées." @@ -5998,9 +6021,6 @@ #~ msgid "Adjust" #~ msgstr "Ajuster" -#~ msgid "PgsrcTranslation" -#~ msgstr "TraductionPgsrc" - #~ msgid "Wanted Pages for %s (%d total):" #~ msgstr "Pages recherchées pour %s dans ce wiki (%d au total) :" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2021-11-22 20:23:38 UTC (rev 10674) +++ trunk/locale/po/it.po 2021-11-22 20:36:40 UTC (rev 10675) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-17 19:48+0100\n" +"POT-Creation-Date: 2021-11-22 21:29+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -249,9 +249,6 @@ "moderators at the definition in %s" msgstr "" -msgid "UserPreferences" -msgstr "Preferenze" - #, php-format msgid "" "The approval has a grace period of 5 days. If you have your e-mail defined " @@ -473,6 +470,54 @@ msgid "An unnamed PhpWiki" msgstr "" +msgid "About" +msgstr "" + +msgid "AdminDeleteAcl" +msgstr "" + +msgid "CategoryActionPage" +msgstr "" + +msgid "CategoryWikiPlugin" +msgstr "" + +msgid "Copyrights" +msgstr "" + +msgid "DeleteAcl" +msgstr "" + +msgid "GeneralDisclaimer" +msgstr "" + +msgid "GoodStyle" +msgstr "BuonStile" + +msgid "HowTo" +msgstr "" + +msgid "MyRecentChanges" +msgstr "" + +msgid "PgsrcTranslation" +msgstr "" + +msgid "RecentChangesMyPages" +msgstr "" + +msgid "SemanticSearchAdvancedPlugin" +msgstr "" + +msgid "SetAclSimple" +msgstr "" + +msgid "SetExternal" +msgstr "" + +msgid "TermsOfUse" +msgstr "" + msgid "Invalid [] syntax ignored" msgstr "" @@ -2145,6 +2190,9 @@ msgid "Changing passwords is done at " msgstr "" +msgid "UserPreferences" +msgstr "Preferenze" + #, php-format msgid "No e-mail stored for user %s." msgstr "" @@ -2341,9 +2389,6 @@ msgid "Prediction: %.1f" msgstr "" -msgid "RateIt" -msgstr "" - msgid "Rate It" msgstr "" @@ -2587,9 +2632,6 @@ msgid "Related Changes" msgstr "Modifiche Correlate" -msgid "RelatedChanges" -msgstr "" - msgid "Layout tables using a very rich markup style." msgstr "" @@ -4099,6 +4141,9 @@ msgid "Processing" msgstr "" +msgid "RateIt" +msgstr "" + msgid "RawHtml" msgstr "" @@ -4120,6 +4165,9 @@ msgid "RedirectToPlugin" msgstr "" +msgid "RelatedChanges" +msgstr "" + msgid "ReleaseNotes" msgstr "NoteDiRilascio" @@ -5497,9 +5545,6 @@ msgid "Purge HTML cache" msgstr "RimuoviDallaCacheHtml" -msgid "About" -msgstr "" - #, php-format msgid "Statistics about %s." msgstr "" @@ -5627,9 +5672,6 @@ #~ msgid "version <em>%s</em>" #~ msgstr "versione <em>%s</em>" -#~ msgid "GoodStyle" -#~ msgstr "BuonStile" - #~ msgid "Synopsis" #~ msgstr "Sommario" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2021-11-22 20:23:38 UTC (rev 10674) +++ trunk/locale/po/ja.po 2021-11-22 20:36:40 UTC (rev 10675) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-17 19:48+0100\n" +"POT-Creation-Date: 2021-11-22 21:29+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -246,9 +246,6 @@ "moderators at the definition in %s" msgstr "" -msgid "UserPreferences" -msgstr "ユーザー設定" - #, php-format msgid "" "The approval has a grace period of 5 days. If you have your e-mail defined " @@ -461,6 +458,54 @@ msgid "An unnamed PhpWiki" msgstr "" +msgid "About" +msgstr "" + +msgid "AdminDeleteAcl" +msgstr "" + +msgid "CategoryActionPage" +msgstr "" + +msgid "CategoryWikiPlugin" +msgstr "" + +msgid "Copyrights" +msgstr "" + +msgid "DeleteAcl" +msgstr "" + +msgid "GeneralDisclaimer" +msgstr "" + +msgid "GoodStyle" +msgstr "" + +msgid "HowTo" +msgstr "" + +msgid "MyRecentChanges" +msgstr "" + +msgid "PgsrcTranslation" +msgstr "" + +msgid "RecentChangesMyPages" +msgstr "" + +msgid "SemanticSearchAdvancedPlugin" +msgstr "" + +msgid "SetAclSimple" +msgstr "" + +msgid "SetExternal" +msgstr "" + +msgid "TermsOfUse" +msgstr "" + msgid "Invalid [] syntax ignored" msgstr "" @@ -2131,6 +2176,9 @@ msgid "Changing passwords is done at " msgstr "" +msgid "UserPreferences" +msgstr "ユーザー設定" + #, php-format msgid "No e-mail stored for user %s." msgstr "" @@ -2327,9 +2375,6 @@ msgid "Prediction: %.1f" msgstr "" -msgid "RateIt" -msgstr "" - msgid "Rate It" msgstr "" @@ -2573,9 +2618,6 @@ msgid "Related Changes" msgstr "" -msgid "RelatedChanges" -msgstr "" - msgid "Layout tables using a very rich markup style." msgstr "" @@ -4085,6 +4127,9 @@ msgid "Processing" msgstr "" +msgid "RateIt" +msgstr "" + msgid "RawHtml" msgstr "" @@ -4106,6 +4151,9 @@ msgid "RedirectToPlugin" msgstr "" +msgid "RelatedChanges" +msgstr "" + msgid "ReleaseNotes" msgstr "" @@ -5483,9 +5531,6 @@ msgid "Purge HTML cache" msgstr "" -msgid "About" -msgstr "" - #, php-format msgid "Statistics about %s." msgstr "" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2021-11-22 20:23:38 UTC (rev 10674) +++ trunk/locale/po/nl.po 2021-11-22 20:36:40 UTC (rev 10675) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-17 19:48+0100\n" +"POT-Creation-Date: 2021-11-22 21:29+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -252,9 +252,6 @@ "moderators at the definition in %s" msgstr "" -msgid "UserPreferences" -msgstr "GebruikersVoorkeuren" - #, php-format msgid "" "The approval has a grace period of 5 days. If you have your e-mail defined " @@ -467,6 +464,54 @@ msgid "An unnamed PhpWiki" msgstr "Naamloos PhpWiki" +msgid "About" +msgstr "" + +msgid "AdminDeleteAcl" +msgstr "" + +msgid "CategoryActionPage" +msgstr "" + +msgid "CategoryWikiPlugin" +msgstr "" + +msgid "Copyrights" +msgstr "" + +msgid "DeleteAcl" +msgstr "" + +msgid "GeneralDisclaimer" +msgstr "" + +msgid "GoodStyle" +msgstr "GoedeStijl" + +msgid "HowTo" +msgstr "" + +msgid "MyRecentChanges" +msgstr "MijnRecenteVeranderingen" + +msgid "PgsrcTranslation" +msgstr "" + +msgid "RecentChangesMyPages" +msgstr "" + +msgid "SemanticSearchAdvancedPlugin" +msgstr "" + +msgid "SetAclSimple" +msgstr "" + +msgid "SetExternal" +msgstr "" + +msgid "TermsOfUse" +msgstr "" + msgid "Invalid [] syntax ignored" msgstr "" @@ -2137,6 +2182,9 @@ msgid "Changing passwords is done at " msgstr "" +msgid "UserPreferences" +msgstr "GebruikersVoorkeuren" + #, php-format msgid "No e-mail stored for user %s." msgstr "" @@ -2333,9 +2381,6 @@ msgid "Prediction: %.1f" msgstr "" -msgid "RateIt" -msgstr "" - msgid "Rate It" msgstr "" @@ -2579,9 +2624,6 @@ msgid "Related Changes" msgstr "" -msgid "RelatedChanges" -msgstr "" - msgid "Layout tables using a very rich markup style." msgstr "" @@ -4091,6 +4133,9 @@ msgid "Processing" msgstr "" +msgid "RateIt" +msgstr "" + msgid "RawHtml" msgstr "" @@ -4112,6 +4157,9 @@ msgid "RedirectToPlugin" msgstr "" +msgid "RelatedChanges" +msgstr "" + msgid "ReleaseNotes" msgstr "UitgaveNoten" @@ -5489,9 +5537,6 @@ msgid "Purge HTML cache" msgstr "" -msgid "About" -msgstr "" - #, php-format msgid "Statistics about %s." msgstr "" @@ -5619,12 +5664,6 @@ #~ msgid "version <em>%s</em>" #~ msgstr "versie <em>%s</em>" -#~ msgid "GoodStyle" -#~ msgstr "GoedeStijl" - -#~ msgid "MyRecentChanges" -#~ msgstr "MijnRecenteVeranderingen" - #~ msgid "Help/TextFormattingRules" #~ msgstr "Help/TekstFormatteringsRegels" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2021-11-22 20:23:38 UTC (rev 10674) +++ trunk/locale/po/phpwiki.pot 2021-11-22 20:36:40 UTC (rev 10675) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-17 19:48+0100\n" +"POT-Creation-Date: 2021-11-22 21:29+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -246,9 +246,6 @@ "moderators at the definition in %s" msgstr "" -msgid "UserPreferences" -msgstr "" - #, php-format msgid "" "The approval has a grace period of 5 days. If you have your e-mail defined " @@ -461,6 +458,54 @@ msgid "An unnamed PhpWiki" msgstr "" +msgid "About" +msgstr "" + +msgid "AdminDeleteAcl" +msgstr "" + +msgid "CategoryActionPage" +msgstr "" + +msgid "CategoryWikiPlugin" +msgstr "" + +msgid "Copyrights" +msgstr "" + +msgid "DeleteAcl" +msgstr "" + +msgid "GeneralDisclaimer" +msgstr "" + +msgid "GoodStyle" +msgstr "" + +msgid "HowTo" +msgstr "" + +msgid "MyRecentChanges" +msgstr "" + +msgid "PgsrcTranslation" +msgstr "" + +msgid "RecentChangesMyPages" +msgstr "" + +msgid "SemanticSearchAdvancedPlugin" +msgstr "" + +msgid "SetAclSimple" +msgstr "" + +msgid "SetExternal" +msgstr "" + +msgid "TermsOfUse" +msgstr "" + msgid "Invalid [] syntax ignored" msgstr "" @@ -2131,6 +2176,9 @@ msgid "Changing passwords is done at " msgstr "" +msgid "UserPreferences" +msgstr "" + #, php-format msgid "No e-mail stored for user %s." msgstr "" @@ -2327,9 +2375,6 @@ msgid "Prediction: %.1f" msgstr "" -msgid "RateIt" -msgstr "" - msgid "Rate It" msgstr "" @@ -2573,9 +2618,6 @@ msgid "Related Changes" msgstr "" -msgid "RelatedChanges" -msgstr "" - msgid "Layout tables using a very rich markup style." msgstr "" @@ -4085,6 +4127,9 @@ msgid "Processing" msgstr "" +msgid "RateIt" +msgstr "" + msgid "RawHtml" msgstr "" @@ -4106,6 +4151,9 @@ msgid "RedirectToPlugin" msgstr "" +msgid "RelatedChanges" +msgstr "" + msgid "ReleaseNotes" msgstr "" @@ -5483,9 +5531,6 @@ msgid "Purge HTML cache" msgstr "" -msgid "About" -msgstr "" - #, php-format msgid "Statistics about %s." msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2021-11-22 20:23:38 UTC (rev 10674) +++ trunk/locale/po/sv.po 2021-11-22 20:36:40 UTC (rev 10675) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-17 19:48+0100\n" +"POT-Creation-Date: 2021-11-22 21:29+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -247,9 +247,6 @@ "moderators at the definition in %s" msgstr "" -msgid "UserPreferences" -msgstr "" - #, php-format msgid "" "The approval has a grace period of 5 days. If you have your e-mail defined " @@ -462,6 +459,54 @@ msgid "An unnamed PhpWiki" msgstr "" +msgid "About" +msgstr "" + +msgid "AdminDeleteAcl" +msgstr "" + +msgid "CategoryActionPage" +msgstr "" + +msgid "CategoryWikiPlugin" +msgstr "" + +msgid "Copyrights" +msgstr "" + +msgid "DeleteAcl" +msgstr "" + +msgid "GeneralDisclaimer" +msgstr "" + +msgid "GoodStyle" +msgstr "BraStil" + +msgid "HowTo" +msgstr "" + +msgid "MyRecentChanges" +msgstr "MinaSenasteÄndringar" + +msgid "PgsrcTranslation" +msgstr "" + +msgid "RecentChangesMyPages" +msgstr "" + +msgid "SemanticSearchAdvancedPlugin" +msgstr "" + +msgid "SetAclSimple" +msgstr "" + +msgid "SetExternal" +msgstr "" + +msgid "TermsOfUse" +msgstr "" + msgid "Invalid [] syntax ignored" msgstr "" @@ -2132,6 +2177,9 @@ msgid "Changing passwords is done at " msgstr "" +msgid "UserPreferences" +msgstr "" + #, php-format msgid "No e-mail stored for user %s." msgstr "" @@ -2328,9 +2376,6 @@ msgid "Prediction: %.1f" msgstr "" -msgid "RateIt" -msgstr "" - msgid "Rate It" msgstr "" @@ -2574,9 +2619,6 @@ msgid "Related Changes" msgstr "" -msgid "RelatedChanges" -msgstr "" - msgid "Layout tables using a very rich markup style." msgstr "" @@ -4086,6 +4128,9 @@ msgid "Processing" msgstr "" +msgid "RateIt" +msgstr "" + msgid "RawHtml" msgstr "" @@ -4107,6 +4152,9 @@ msgid "RedirectToPlugin" msgstr "" +msgid "RelatedChanges" +msgstr "" + msgid "ReleaseNotes" msgstr "" @@ -5484,9 +5532,6 @@ msgid "Purge HTML cache" msgstr "" -msgid "About" -msgstr "" - #, php-format msgid "Statistics about %s." msgstr "" @@ -5611,12 +5656,6 @@ #~ msgid "Thank you for editing %s." #~ msgstr "Tack för att du redigerade %s." -#~ msgid "GoodStyle" -#~ msgstr "BraStil" - -#~ msgid "MyRecentChanges" -#~ msgstr "MinaSenasteÄndringar" - #~ msgid "Help/TextFormattingRules" #~ msgstr "Hjälp/Textformateringsregler" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2021-11-22 20:23:38 UTC (rev 10674) +++ trunk/locale/po/zh.po 2021-11-22 20:36:40 UTC (rev 10675) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-17 19:48+0100\n" +"POT-Creation-Date: 2021-11-22 21:29+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -245,9 +245,6 @@ "moderators at the definition in %s" msgstr "" -msgid "UserPreferences" -msgstr "" - #, php-format msgid "" "The approval has a grace period of 5 days. If you have your e-mail defined " @@ -464,6 +461,54 @@ msgid "An unnamed PhpWiki" msgstr "未被命名的 PhpWiki" +msgid "About" +msgstr "" + +msgid "AdminDeleteAcl" +msgstr "" + +msgid "CategoryActionPage" +msgstr "" + +msgid "CategoryWikiPlugin" +msgstr "" + +msgid "Copyrights" +msgstr "" + +msgid "DeleteAcl" +msgstr "" + +msgid "GeneralDisclaimer" +msgstr "" + +msgid "GoodStyle" +msgstr "" + +msgid "HowTo" +msgstr "" + +msgid "MyRecentChanges" +msgstr "" + +msgid "PgsrcTranslation" +msgstr "" + +msgid "RecentChangesMyPages" +msgstr "" + +msgid "SemanticSearchAdvancedPlugin" +msgstr "" + +msgid "SetAclSimple" +msgstr "" + +msgid "SetExternal" +msgstr "" + +msgid "TermsOfUse" +msgstr "" + msgid "Invalid [] syntax ignored" msgstr "" @@ -2140,6 +2185,9 @@ msgid "Changing passwords is done at " msgstr "" +msgid "UserPreferences" +msgstr "" + #, php-format msgid "No e-mail stored for user %s." msgstr "" @@ -2336,9 +2384,6 @@ msgid "Prediction: %.1f" msgstr "" -msgid "RateIt" -msgstr "評比" - msgid "Rate It" msgstr "評比" @@ -2582,9 +2627,6 @@ msgid "Related Changes" msgstr "" -msgid "RelatedChanges" -msgstr "" - msgid "Layout tables using a very rich markup style." msgstr "使用豐富標記風格進行佈局的表格." @@ -4096,6 +4138,9 @@ msgid "Processing" msgstr "" +msgid "RateIt" +msgstr "評比" + msgid "RawHtml" msgstr "" @@ -4117,6 +4162,9 @@ msgid "RedirectToPlugin" msgstr "重導向Plugin" +msgid "RelatedChanges" +msgstr "" + msgid "ReleaseNotes" msgstr "" @@ -5511,9 +5559,6 @@ msgid "Purge HTML cache" msgstr "" -msgid "About" -msgstr "" - #, php-format msgid "Statistics about %s." msgstr "關於 %s 的統計." @@ -5650,10 +5695,6 @@ #~ msgid "version <em>%s</em>" #~ msgstr "版本 <em>%s</em>" -#~ msgid "" -#~ "Empty Preferences or format of UserPreferences cookie not recognised." -#~ msgstr "空的偏好設定或 UserPreferences cookie 格式無法辨認." - #~ msgid "Default preferences will be used." #~ msgstr "預設偏好設定將被使用." Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-23 16:02:45
|
Revision: 10679 http://sourceforge.net/p/phpwiki/code/10679 Author: vargenau Date: 2021-11-23 16:02:42 +0000 (Tue, 23 Nov 2021) Log Message: ----------- Add sample images for PhotoAlbum in blog theme Modified Paths: -------------- trunk/locale/it/pgsrc/NoteDiRilascio trunk/pgsrc/ReleaseNotes trunk/themes/blog/pgsrc/PhotoAlbum Added Paths: ----------- trunk/images/ trunk/images/blog/ trunk/images/blog/loup.jpg trunk/images/blog/ours.jpg trunk/images/blog/renard.jpg trunk/images/blog/sanglier.jpg Added: trunk/images/blog/loup.jpg =================================================================== (Binary files differ) Index: trunk/images/blog/loup.jpg =================================================================== --- trunk/images/blog/loup.jpg 2021-11-23 14:23:10 UTC (rev 10678) +++ trunk/images/blog/loup.jpg 2021-11-23 16:02:42 UTC (rev 10679) Property changes on: trunk/images/blog/loup.jpg ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +image/jpeg \ No newline at end of property Added: trunk/images/blog/ours.jpg =================================================================== (Binary files differ) Index: trunk/images/blog/ours.jpg =================================================================== --- trunk/images/blog/ours.jpg 2021-11-23 14:23:10 UTC (rev 10678) +++ trunk/images/blog/ours.jpg 2021-11-23 16:02:42 UTC (rev 10679) Property changes on: trunk/images/blog/ours.jpg ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +image/jpeg \ No newline at end of property Added: trunk/images/blog/renard.jpg =================================================================== (Binary files differ) Index: trunk/images/blog/renard.jpg =================================================================== --- trunk/images/blog/renard.jpg 2021-11-23 14:23:10 UTC (rev 10678) +++ trunk/images/blog/renard.jpg 2021-11-23 16:02:42 UTC (rev 10679) Property changes on: trunk/images/blog/renard.jpg ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +image/jpeg \ No newline at end of property Added: trunk/images/blog/sanglier.jpg =================================================================== (Binary files differ) Index: trunk/images/blog/sanglier.jpg =================================================================== --- trunk/images/blog/sanglier.jpg 2021-11-23 14:23:10 UTC (rev 10678) +++ trunk/images/blog/sanglier.jpg 2021-11-23 16:02:42 UTC (rev 10679) Property changes on: trunk/images/blog/sanglier.jpg ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +image/jpeg \ No newline at end of property Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2021-11-23 14:23:10 UTC (rev 10678) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2021-11-23 16:02:42 UTC (rev 10679) @@ -1,4 +1,4 @@ -Date: Tue, 16 Nov 2021 17:02:08 +0000 +Date: Tue, 23 Nov 2021 17:01:34 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -19,6 +19,7 @@ === Changes === * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. * Add “Rename” tab in Sidebar theme. +* Add sample images for ~PhotoAlbum in blog theme * More translations === Plugins === Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2021-11-23 14:23:10 UTC (rev 10678) +++ trunk/pgsrc/ReleaseNotes 2021-11-23 16:02:42 UTC (rev 10679) @@ -1,4 +1,4 @@ -Date: Tue, 16 Nov 2021 17:02:08 +0000 +Date: Tue, 23 Nov 2021 17:01:34 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -19,6 +19,7 @@ === Changes === * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. * Add “Rename” tab in Sidebar theme. +* Add sample images for ~PhotoAlbum in blog theme * More translations === Plugins === Modified: trunk/themes/blog/pgsrc/PhotoAlbum =================================================================== --- trunk/themes/blog/pgsrc/PhotoAlbum 2021-11-23 14:23:10 UTC (rev 10678) +++ trunk/themes/blog/pgsrc/PhotoAlbum 2021-11-23 16:02:42 UTC (rev 10679) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:37 +0000 +Date: Tue, 23 Nov 2021 17:01:34 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=PhotoAlbum; @@ -6,4 +6,4 @@ charset=UTF-8 Content-Transfer-Encoding: binary -<<PhotoAlbum src=Upload:photos/ mode=tiles>> +<<PhotoAlbum src=images/blog/ mode=tiles>> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-24 11:18:46
|
Revision: 10681 http://sourceforge.net/p/phpwiki/code/10681 Author: vargenau Date: 2021-11-24 11:18:44 +0000 (Wed, 24 Nov 2021) Log Message: ----------- Move PhotoAlbum photos in images/blog Modified Paths: -------------- trunk/themes/blog/pgsrc/PhotoAlbum Added Paths: ----------- trunk/themes/blog/images/pictures/ Removed Paths: ------------- trunk/images/ Modified: trunk/themes/blog/pgsrc/PhotoAlbum =================================================================== --- trunk/themes/blog/pgsrc/PhotoAlbum 2021-11-24 10:49:30 UTC (rev 10680) +++ trunk/themes/blog/pgsrc/PhotoAlbum 2021-11-24 11:18:44 UTC (rev 10681) @@ -1,4 +1,4 @@ -Date: Tue, 23 Nov 2021 17:01:34 +0000 +Date: Wed, 24 Nov 2021 12:07:30 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=PhotoAlbum; @@ -6,4 +6,4 @@ charset=UTF-8 Content-Transfer-Encoding: binary -<<PhotoAlbum src=images/blog/ mode=tiles>> +<<PhotoAlbum src=themes/blog/images/pictures/ mode=tiles>> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-25 18:04:57
|
Revision: 10694 http://sourceforge.net/p/phpwiki/code/10694 Author: vargenau Date: 2021-11-25 18:04:54 +0000 (Thu, 25 Nov 2021) Log Message: ----------- RandomPage plugin: exclude only RandomPage and HomePage Modified Paths: -------------- trunk/lib/plugin/RandomPage.php trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin trunk/locale/zh/pgsrc/Help%2FRandomPagePlugin trunk/pgsrc/Help%2FRandomPagePlugin Modified: trunk/lib/plugin/RandomPage.php =================================================================== --- trunk/lib/plugin/RandomPage.php 2021-11-25 17:50:47 UTC (rev 10693) +++ trunk/lib/plugin/RandomPage.php 2021-11-25 18:04:54 UTC (rev 10694) @@ -128,7 +128,7 @@ function default_exclude() { // Some useful default pages to exclude. - $default_exclude = 'RandomPage,HomePage,AllPages,RecentChanges,RecentEdits,FullRecentChanges'; + $default_exclude = 'RandomPage,HomePage'; foreach (explode(",", $default_exclude) as $e) { $exclude[] = gettext($e); } Modified: trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin 2021-11-25 17:50:47 UTC (rev 10693) +++ trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin 2021-11-25 18:04:54 UTC (rev 10694) @@ -33,7 +33,7 @@ |- | **exclude** | Pages to exclude from random -| RandomPage, HomePage, AllPages, RecentChanges, RecentEdits, FullRecentChanges +| RandomPage,HomePage |} == Example == Modified: trunk/locale/zh/pgsrc/Help%2FRandomPagePlugin =================================================================== --- trunk/locale/zh/pgsrc/Help%2FRandomPagePlugin 2021-11-25 17:50:47 UTC (rev 10693) +++ trunk/locale/zh/pgsrc/Help%2FRandomPagePlugin 2021-11-25 18:04:54 UTC (rev 10694) @@ -33,7 +33,7 @@ |- | **exclude** | Pages to exclude from random -| RandomPage, HomePage, AllPages, RecentChanges, RecentEdits, FullRecentChanges +| RandomPage,HomePage |} == Example == Modified: trunk/pgsrc/Help%2FRandomPagePlugin =================================================================== --- trunk/pgsrc/Help%2FRandomPagePlugin 2021-11-25 17:50:47 UTC (rev 10693) +++ trunk/pgsrc/Help%2FRandomPagePlugin 2021-11-25 18:04:54 UTC (rev 10694) @@ -37,7 +37,7 @@ |- | **exclude** | Pages to exclude from random -| RandomPage, HomePage, AllPages, RecentChanges, RecentEdits, FullRecentChanges +| RandomPage,HomePage |} == Example == This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-25 18:44:51
|
Revision: 10698 http://sourceforge.net/p/phpwiki/code/10698 Author: vargenau Date: 2021-11-25 18:44:42 +0000 (Thu, 25 Nov 2021) Log Message: ----------- Update translations of pgsrc/Help%2FRandomPagePlugin Modified Paths: -------------- trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin trunk/locale/zh/pgsrc/Help%2FRandomPagePlugin trunk/pgsrc/Help%2FRandomPagePlugin Modified: trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin 2021-11-25 18:43:44 UTC (rev 10697) +++ trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin 2021-11-25 18:44:42 UTC (rev 10698) @@ -1,4 +1,4 @@ -Date: Fri, 19 Apr 2019 17:28:11 +0000 +Date: Thu, 25 Nov 2021 19:41:59 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Hilfe%2FZufallsSeitePlugin; @@ -28,9 +28,13 @@ | 20 |- | **redirect** -| Do not display random page link, redirect to random page. -| empty +| Boolean. If true, do not display random page link, redirect to random page. +| false |- +| **hidename** +| Boolean. If true, hide name (only for numpages=1) +| false +|- | **exclude** | Pages to exclude from random | RandomPage,HomePage @@ -39,10 +43,10 @@ == Example == {{{ -<<RandomPage numpages=10 >> +<<RandomPage numpages=10>> }}} -<<RandomPage numpages=10 >> +<<RandomPage numpages=10>> == Autor == * [[Help:Reini Urban|Reini Urban]] Modified: trunk/locale/zh/pgsrc/Help%2FRandomPagePlugin =================================================================== --- trunk/locale/zh/pgsrc/Help%2FRandomPagePlugin 2021-11-25 18:43:44 UTC (rev 10697) +++ trunk/locale/zh/pgsrc/Help%2FRandomPagePlugin 2021-11-25 18:44:42 UTC (rev 10698) @@ -1,4 +1,4 @@ -Date: Thu, 24 Dec 2020 18:13:17 +0000 +Date: Thu, 25 Nov 2021 19:41:59 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FRandomPagePlugin; @@ -28,9 +28,13 @@ | 20 |- | **redirect** -| Do not display random page link, redirect to random page. -| empty +| Boolean. If true, do not display random page link, redirect to random page. +| false |- +| **hidename** +| Boolean. If true, hide name (only for numpages=1) +| false +|- | **exclude** | Pages to exclude from random | RandomPage,HomePage @@ -39,10 +43,10 @@ == Example == {{{ -<<RandomPage numpages=10 >> +<<RandomPage numpages=10>> }}} -<<RandomPage numpages=10 >> +<<RandomPage numpages=10>> == Author == * [[Help:Reini Urban|Reini Urban]] Modified: trunk/pgsrc/Help%2FRandomPagePlugin =================================================================== --- trunk/pgsrc/Help%2FRandomPagePlugin 2021-11-25 18:43:44 UTC (rev 10697) +++ trunk/pgsrc/Help%2FRandomPagePlugin 2021-11-25 18:44:42 UTC (rev 10698) @@ -1,4 +1,4 @@ -Date: Mon, 22 Feb 2021 13:05:38 +0000 +Date: Thu, 25 Nov 2021 19:41:59 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FRandomPagePlugin; @@ -43,10 +43,10 @@ == Example == {{{ -<<RandomPage numpages=10 >> +<<RandomPage numpages=10>> }}} -<<RandomPage numpages=10 >> +<<RandomPage numpages=10>> == Author == * [[Help:Reini Urban|Reini Urban]] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |