From: <var...@us...> - 2009-10-06 14:02:03
|
Revision: 7188 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7188&view=rev Author: vargenau Date: 2009-10-06 14:01:50 +0000 (Tue, 06 Oct 2009) Log Message: ----------- Argument "debug" never used Modified Paths: -------------- trunk/lib/plugin/_WikiTranslation.php Modified: trunk/lib/plugin/_WikiTranslation.php =================================================================== --- trunk/lib/plugin/_WikiTranslation.php 2009-10-06 14:01:16 UTC (rev 7187) +++ trunk/lib/plugin/_WikiTranslation.php 2009-10-06 14:01:50 UTC (rev 7188) @@ -158,9 +158,8 @@ //'limit' => 0, 'nolinks' => false, // don't display any links // (for development only) - 'noT' => false, // don't display the T link - // (for development only) - 'debug' => false + 'noT' => false // don't display the T link + // (for development only) )); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2011-01-19 15:57:10
|
Revision: 7842 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7842&view=rev Author: vargenau Date: 2011-01-19 15:57:04 +0000 (Wed, 19 Jan 2011) Log Message: ----------- Update list of pages Modified Paths: -------------- trunk/lib/plugin/_WikiTranslation.php Modified: trunk/lib/plugin/_WikiTranslation.php =================================================================== --- trunk/lib/plugin/_WikiTranslation.php 2011-01-19 13:33:57 UTC (rev 7841) +++ trunk/lib/plugin/_WikiTranslation.php 2011-01-19 15:57:04 UTC (rev 7842) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright 2004,2005 $ThePhpWikiProgrammingTeam * @@ -44,48 +44,52 @@ /* Container for untranslated pagenames. Needed to show up in locale/po/phpwiki.pot */ $pgsrc_container = - _("AddCommentPlugin") .','. - _("AddingPages") .','. _("AllPagesCreatedByMe") .','. _("AllPagesLastEditedByMe") .','. _("AllPagesOwnedByMe") .','. - _("AuthorHistoryPlugin") .','. _("BackLinks") .','. - _("CalendarListPlugin") .','. - _("CalendarPlugin") .','. _("CategoryCategory") .','. _("CategoryHomePages") .','. - _("CommentPlugin") .','. - _("CreateTocPlugin") .','. _("DebugInfo") .','. _("EditMetaData") .','. - _("EditMetaDataPlugin") .','. - _("ExternalSearchPlugin") .','. _("FindPage") .','. - _("FoafViewerPlugin") .','. - _("FrameIncludePlugin") .','. _("FullRecentChanges") .','. - _("HelloWorldPlugin") .','. + _("Help/AddingPages") .','. + _("Help/AddCommentPlugin") .','. + _("Help/AuthorHistoryPlugin") .','. + _("Help/CalendarListPlugin") .','. + _("Help/CalendarPlugin") .','. + _("Help/CommentPlugin") .','. + _("Help/CreateTocPlugin") .','. + _("Help/EditMetaDataPlugin") .','. + _("Help/ExternalSearchPlugin") .','. + _("Help/FoafViewerPlugin") .','. + _("Help/FrameIncludePlugin") .','. + _("Help/HelloWorldPlugin") .','. + _("Help/IncludePagePlugin") .','. + _("Help/LinkIcons") .','. + _("Help/MagicPhpWikiURLs") .','. + _("Help/MoreAboutMechanics") .','. + _("Help/OldStyleTablePlugin") .','. + _("Help/PhotoAlbumPlugin") .','. + _("Help/PhpHighlightPlugin") .','. + _("Help/PhpWeatherPlugin") .','. + _("Help/PhpWiki") .','. + _("Help/PloticusPlugin") .','. + _("Help/RawHtmlPlugin") .','. + _("Help/RedirectToPlugin") .','. + _("Help/RichTablePlugin") .','. + _("Help/SystemInfoPlugin") .','. + _("Help/TranscludePlugin") .','. + _("Help/UnfoldSubpagesPlugin") .','. + _("Help/UpLoadPlugin") .','. + _("Help/WabiSabi") .','. + _("Help/WikiBlogPlugin") .','. + _("Help/WikiPlugin") .','. + _("Help/WikiWikiWeb"); _("HomePageAlias") .','. - _("IncludePagePlugin") .','. _("InterWiki") .','. - _("LinkIcons") .','. - _("MagicPhpWikiURLs") .','. - _("MoreAboutMechanics") .','. - _("NewMarkupTestPage") .','. - _("OldMarkupTestPage") .','. - _("OldStyleTablePlugin") .','. // _("PageDump") .','. - _("PageGroupTest") .','. - _("PageGroupTest/Four") .','. - _("PageGroupTest/One") .','. - _("PageGroupTest/Three") .','. - _("PageGroupTest/Two") .','. - _("PgsrcTranslation") .','. - _("PhotoAlbumPlugin") .','. - _("PhpHighlightPlugin") .','. - _("PhpWeatherPlugin") .','. - _("PhpWiki") .','. _("PhpWikiAdministration/Chmod") .','. _("PhpWikiAdministration/Chown") .','. _("PhpWikiAdministration/Remove") .','. @@ -94,33 +98,12 @@ _("PhpWikiAdministration/SetAcl") .','. _("PhpWikiDocumentation") .','. _("PhpWikiPoll") .','. - _("PloticusPlugin") .','. - _("PgsrcTranslation") .','. - _("PgsrcTranslation/de") .','. - _("PgsrcTranslation/fr") .','. - _("PgsrcTranslation/it") .','. - _("PgsrcTranslation/es") .','. - _("PgsrcTranslation/nl") .','. - _("PgsrcTranslation/sv") .','. - _("PgsrcTranslation/ja") .','. - _("PgsrcTranslation/zh") .','. - _("RawHtmlPlugin") .','. _("RecentVisitors") .','. - _("RedirectToPlugin") .','. _("ReleaseNotes") .','. - _("RichTablePlugin") .','. // _("SpellCheck") .','. _("SteveWainstead") .','. - _("SystemInfoPlugin") .','. - _("TranscludePlugin") .','. _("TranslateText") .','. - _("UnfoldSubpagesPlugin") .','. _("UpLoad") .','. - _("UpLoadPlugin") .','. - _("WabiSabi") .','. - _("WikiBlogPlugin") .','. - _("WikiPlugin") .','. - _("WikiWikiWeb"); require_once('lib/PageList.php'); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2013-04-16 14:17:38
|
Revision: 8749 http://sourceforge.net/p/phpwiki/code/8749 Author: vargenau Date: 2013-04-16 14:17:35 +0000 (Tue, 16 Apr 2013) Log Message: ----------- Reformat code Modified Paths: -------------- trunk/lib/plugin/_WikiTranslation.php Modified: trunk/lib/plugin/_WikiTranslation.php =================================================================== --- trunk/lib/plugin/_WikiTranslation.php 2013-04-16 14:03:08 UTC (rev 8748) +++ trunk/lib/plugin/_WikiTranslation.php 2013-04-16 14:17:35 UTC (rev 8749) @@ -86,25 +86,25 @@ _("Help/WabiSabi") . ',' . _("Help/WikiBlogPlugin") . ',' . _("Help/WikiPlugin") . ',' . - _("Help/WikiWikiWeb"); -_("HomePageAlias") . ',' . - _("InterWiki") . ',' . -// _("PageDump") .','. - _("PhpWikiAdministration/Chmod") . ',' . - _("PhpWikiAdministration/Chown") . ',' . - _("PhpWikiAdministration/Remove") . ',' . - _("PhpWikiAdministration/Rename") . ',' . - _("PhpWikiAdministration/Replace") . ',' . - _("PhpWikiAdministration/SetAcl") . ',' . - _("PhpWikiDocumentation") . ',' . - _("PhpWikiPoll") . ',' . - _("RecentVisitors") . ',' . - _("ReleaseNotes") . ',' . -// _("SpellCheck") .','. - _("TranslateText") . ',' . - _("UpLoad") . ',' . + _("Help/WikiWikiWeb") . ',' . + _("HomePageAlias") . ',' . + _("InterWiki") . ',' . + _("PageDump") . ',' . + _("PhpWikiAdministration/Chmod") . ',' . + _("PhpWikiAdministration/Chown") . ',' . + _("PhpWikiAdministration/Remove") . ',' . + _("PhpWikiAdministration/Rename") . ',' . + _("PhpWikiAdministration/Replace") . ',' . + _("PhpWikiAdministration/SetAcl") . ',' . + _("PhpWikiDocumentation") . ',' . + _("PhpWikiPoll") . ',' . + _("RecentVisitors") . ',' . + _("ReleaseNotes") . ',' . + _("SpellCheck") . ',' . + _("TranslateText") . ',' . + _("UpLoad"); - require_once 'lib/PageList.php'; +require_once 'lib/PageList.php'; class WikiPlugin__WikiTranslation extends WikiPlugin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2013-06-12 16:26:06
|
Revision: 8797 http://sourceforge.net/p/phpwiki/code/8797 Author: vargenau Date: 2013-06-12 16:26:03 +0000 (Wed, 12 Jun 2013) Log Message: ----------- Add translation for TextFormattingRules Modified Paths: -------------- trunk/lib/plugin/_WikiTranslation.php Modified: trunk/lib/plugin/_WikiTranslation.php =================================================================== --- trunk/lib/plugin/_WikiTranslation.php 2013-06-12 16:09:08 UTC (rev 8796) +++ trunk/lib/plugin/_WikiTranslation.php 2013-06-12 16:26:03 UTC (rev 8797) @@ -205,6 +205,7 @@ _("Template") . ',' . _("TeX2png") . ',' . _("text2png") . ',' . + _("TextFormattingRules") . ',' . _("TexToPng") . ',' . _("TitleSearch") . ',' . _("Transclude") . ',' . This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |