From: <var...@us...> - 2013-01-11 10:21:01
|
Revision: 8711 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8711&view=rev Author: vargenau Date: 2013-01-11 10:20:47 +0000 (Fri, 11 Jan 2013) Log Message: ----------- seperated --> separated Modified Paths: -------------- trunk/config/config-dist.ini trunk/configurator.php trunk/lib/InlineParser.php trunk/lib/PageList.php trunk/lib/WikiDB.php trunk/lib/loadsave.php trunk/lib/plugin/FullTextSearch.php trunk/lib/plugin/PhotoAlbum.php trunk/lib/plugin/WikiAdminSelect.php trunk/lib/plugin/WikiFormRich.php trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/de/LC_MESSAGES/phpwiki.php trunk/locale/de/pgsrc/ModerierteSeite trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.php 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/LC_MESSAGES/phpwiki.php trunk/pgsrc/Help%2FFileInfoPlugin trunk/pgsrc/Help%2FFullTextSearchPlugin trunk/pgsrc/Help%2FLdapSearchPlugin trunk/pgsrc/Help%2FPageList trunk/pgsrc/Help%2FWikiFormRichPlugin trunk/pgsrc/Help%2FWikiPlugin trunk/themes/default/moacdropdown/js/acdropdown.js trunk/themes/default/moacdropdown/xmlrpc.txt trunk/themes/default/templates/userprefs.tmpl trunk/themes/fusionforge/templates/userprefs.tmpl Modified: trunk/config/config-dist.ini =================================================================== --- trunk/config/config-dist.ini 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/config/config-dist.ini 2013-01-11 10:20:47 UTC (rev 8711) @@ -961,7 +961,7 @@ ; DEFAULT_WIKI_PGSRC defines where the English pages reside. ;DEFAULT_WIKI_PGSRC = pgsrc -; These are ':'-seperated pages which will get loaded untranslated from DEFAULT_WIKI_PGSRC. +; These are ':'-separated pages which will get loaded untranslated from DEFAULT_WIKI_PGSRC. ;DEFAULT_WIKI_PAGES = "ReleaseNotes" ;========================================================================= Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/configurator.php 2013-01-11 10:20:47 UTC (rev 8711) @@ -1393,7 +1393,7 @@ $properties["Generic Pages"] = new array_variable('DEFAULT_WIKI_PAGES', array('ReleaseNotes', 'TestPage'), " -These are ':'-seperated pages which will get loaded untranslated from DEFAULT_WIKI_PGSRC. +These are ':'-separated pages which will get loaded untranslated from DEFAULT_WIKI_PGSRC. "); /////////////////// Modified: trunk/lib/InlineParser.php =================================================================== --- trunk/lib/InlineParser.php 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/lib/InlineParser.php 2013-01-11 10:20:47 UTC (rev 8711) @@ -617,7 +617,7 @@ class Markup_semanticlink extends SimpleMarkup { - // No units seperated by space allowed here + // No units separated by space allowed here // For :: (relations) only words, no comma, // but for := (attributes) comma and dots are allowed. Units with groupsep. // Ending dots or comma are not part of the link. Modified: trunk/lib/PageList.php =================================================================== --- trunk/lib/PageList.php 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/lib/PageList.php 2013-01-11 10:20:47 UTC (rev 8711) @@ -725,7 +725,7 @@ return array( // Currently supported options: /* what columns, what pages */ 'info' => 'pagename', - 'exclude' => '', // also wildcards, comma-seperated lists + 'exclude' => '', // also wildcards, comma-separated lists // and <!plugin-list !> arrays /* select pages by meta-data: */ 'author' => false, // current user by [] @@ -751,7 +751,7 @@ 'cols' => 1, // side-by-side display of list (1-3) 'azhead' => 0, // 1: group by initials // 2: provide shortcut links to initials also - 'comma' => 0, // condensed comma-seperated list, + 'comma' => 0, // condensed comma-separated list, // 1 if without links, 2 if with 'commasep' => false, // Default: ', ' 'listtype' => '', // ul (default), ol, dl, comma Modified: trunk/lib/WikiDB.php =================================================================== --- trunk/lib/WikiDB.php 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/lib/WikiDB.php 2013-01-11 10:20:47 UTC (rev 8711) @@ -281,7 +281,7 @@ * If false the result is faster in natural order. * @param string or false $limit Optional. Encoded as "$offset,$count". * $offset defaults to 0. - * @param string $exclude: Optional comma-seperated list of pagenames. + * @param string $exclude: Optional comma-separated list of pagenames. * * @return WikiDB_PageIterator A WikiDB_PageIterator which contains all pages * in the WikiDB which have non-default contents. @@ -301,7 +301,7 @@ * @access public * * @param boolean $include_empty If true include also empty pages - * @param string $exclude: comma-seperated list of pagenames. + * @param string $exclude: comma-separated list of pagenames. * TBD: array of pagenames * @return integer * @@ -336,7 +336,7 @@ * If false the result is faster in natural order. * @param string or false $limit Optional. Encoded as "$offset,$count". * $offset defaults to 0. - * @param string $exclude: Optional comma-seperated list of pagenames. + * @param string $exclude: Optional comma-separated list of pagenames. * @return WikiDB_PageIterator A WikiDB_PageIterator containing the matching pages. * @see TextSearchQuery */ @@ -367,7 +367,7 @@ * If false the result is faster in natural order. * @param string or false $limit Optional. Encoded as "$offset,$count". * $offset defaults to 0. - * @param string $exclude: Optional comma-seperated list of pagenames. + * @param string $exclude: Optional comma-separated list of pagenames. * @return WikiDB_PageIterator A WikiDB_PageIterator containing the matching pages. * @see TextSearchQuery */ Modified: trunk/lib/loadsave.php =================================================================== --- trunk/lib/loadsave.php 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/lib/loadsave.php 2013-01-11 10:20:47 UTC (rev 8711) @@ -443,9 +443,9 @@ * should be enough. * * @param string directory (optional) path to dump to. Default: HTML_DUMP_DIR - * @param string pages (optional) Comma-seperated of glob-style pagenames to dump. + * @param string pages (optional) Comma-separated of glob-style pagenames to dump. * Also array of pagenames allowed. - * @param string exclude (optional) Comma-seperated of glob-style pagenames to exclude + * @param string exclude (optional) Comma-separated of glob-style pagenames to exclude */ function DumpHtmlToDir(&$request) { Modified: trunk/lib/plugin/FullTextSearch.php =================================================================== --- trunk/lib/plugin/FullTextSearch.php 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/lib/plugin/FullTextSearch.php 2013-01-11 10:20:47 UTC (rev 8711) @@ -63,7 +63,7 @@ 'regex' => 'auto', 'sortby' => '-hi_content', 'noheader' => false, - 'exclude' => false, // comma-seperated list of glob + 'exclude' => false, // comma-separated list of glob 'quiet' => true)); // be less verbose } Modified: trunk/lib/plugin/PhotoAlbum.php =================================================================== --- trunk/lib/plugin/PhotoAlbum.php 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/lib/plugin/PhotoAlbum.php 2013-01-11 10:20:47 UTC (rev 8711) @@ -49,7 +49,7 @@ * photo-02.jpg * christmas.gif; Merry Christmas! * - * Inside textfile, filenames and optional descriptions are seperated by + * Inside textfile, filenames and optional descriptions are separated by * semi-colon on each line. Listed files must be in same directory as textfile * itself, so don't use relative paths inside textfile. * Modified: trunk/lib/plugin/WikiAdminSelect.php =================================================================== --- trunk/lib/plugin/WikiAdminSelect.php 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/lib/plugin/WikiAdminSelect.php 2013-01-11 10:20:47 UTC (rev 8711) @@ -80,7 +80,7 @@ /** * Preselect a list of pagenames by the supporting the following args: - * 's': comma-seperated list of pagename wildcards + * 's': comma-separated list of pagename wildcards * 'author', 'owner', 'creator': from WikiDB_Page * 'only: forgot what the difference to 's' was. * Sets $this->_list, which is picked up by collectPages() and is a default for p[] Modified: trunk/lib/plugin/WikiFormRich.php =================================================================== --- trunk/lib/plugin/WikiFormRich.php 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/lib/plugin/WikiFormRich.php 2013-01-11 10:20:47 UTC (rev 8711) @@ -39,7 +39,7 @@ * If no method is given, value will be used to fill in the valid values. * method="xmlrpc:server:name" or "url:http://server/wiki/method" or "array:jsvariable" * or "plugin:pluginname" - * args are optional arguments, space seperated, for the method. + * args are optional arguments, space separated, for the method. * A combobox is a pulldown with autocomplete=1. * * @Author: Reini Urban Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/de/LC_MESSAGES/phpwiki.php =================================================================== --- trunk/locale/de/LC_MESSAGES/phpwiki.php 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/locale/de/LC_MESSAGES/phpwiki.php 2013-01-11 10:20:47 UTC (rev 8711) @@ -381,7 +381,7 @@ $locale["Empty link to: %s"] = "Leerer Link zu: %s"; $locale["Empty pagename!"] = "Leerer Seitenname!"; $locale["Enable configurable polls."] = "Erlaubt konfigurierbare Umfragen."; -$locale["Enter pages seperated by space or comma. Wildcards (fileglobbing) allowed."] = "Liste aller Seiten durch Leerzeichen oder Komma getrennt. Reguläre Ausdrücke (fileglobbing) erlaubt."; +$locale["Enter pages separated by space or comma. Wildcards (fileglobbing) allowed."] = "Liste aller Seiten durch Leerzeichen oder Komma getrennt. Reguläre Ausdrücke (fileglobbing) erlaubt."; $locale["Enter your UserId to sign in"] = "Tragen Sie bitte für die Anmeldung im Wiki Ihren Benutzernamen ein"; $locale["Entry on %s by %s."] = "Kommentar zu %s von %s."; $locale["Enumeration"] = "Num. Liste"; Modified: trunk/locale/de/pgsrc/ModerierteSeite =================================================================== --- trunk/locale/de/pgsrc/ModerierteSeite 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/locale/de/pgsrc/ModerierteSeite 2013-01-11 10:20:47 UTC (rev 8711) @@ -1,4 +1,4 @@ -Date: Fri, 10 Sep 2010 13:48:42 +0000 +Date: Fri, 11 Jan 2013 11:17:06 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0) Content-Type: application/x-phpwiki; pagename=ModerierteSeite; @@ -41,7 +41,7 @@ == Plugin Arguments -* moderators: comma seperated list of registered usernames or groups. +* moderators: comma separated list of registered usernames or groups. Each user should have his email defined in his prefs. Default: "Administrators" or <<SystemInfo ADMIN_USER >> * requirelevel: one of 0, 1, 2 or 10 on which moderation is used. Default: false (use requireaccess instead) 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/LC_MESSAGES/phpwiki.php =================================================================== --- trunk/locale/fr/LC_MESSAGES/phpwiki.php 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/locale/fr/LC_MESSAGES/phpwiki.php 2013-01-11 10:20:47 UTC (rev 8711) @@ -400,7 +400,7 @@ $locale["Empty pagename!"] = "Nom de page vide !"; $locale["Enable DoubleClick Edit"] = "Autoriser la modification par double clic"; $locale["Enable configurable polls."] = "Permettre de faire des sondages configurables."; -$locale["Enter pages seperated by space or comma. Wildcards (fileglobbing) allowed."] = "Entrer les pages séparées par des virgules. Les étoiles (jokers) sont autorisées."; +$locale["Enter pages separated by space or comma. Wildcards (fileglobbing) allowed."] = "Entrer les pages séparées par des virgules. Les étoiles (jokers) sont autorisées."; $locale["Enter your UserId to sign in"] = "Entrez votre identifiant utilisateur pour vous connecter"; $locale["Entry on %s by %s."] = "Commentaire le %s par %s."; $locale["Enumeration"] = "Énumération"; @@ -1122,7 +1122,7 @@ $locale["Unable to open directory “%s” for reading"] = "Impossible d'ouvrir le répertoire « %s » en lecture"; $locale["Unable to read src=“%s”"] = "Impossible de lire src=%s"; $locale["Undefined method %s for special group %s"] = "Méthode non définie %s pour le groupe %s"; -$locale["Undo"] = "Annuler l'action"; +$locale["Undo"] = "Annuler"; $locale["Undo Search & Replace"] = "Annuler « Rechercher & Remplacer »"; $locale["Undo disabled"] = "Annuler dernière action désactivé."; $locale["Unexpected EOF in zip file"] = "Fin de fichier (EOF) inattendue dans le fichier Zip"; 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 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/locale/po/de.po 2013-01-11 10:20:47 UTC (rev 8711) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 15:25+0100\n" +"POT-Creation-Date: 2013-01-11 11:18+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." @@ -8258,7 +8258,7 @@ #: ../themes/default/templates/userprefs.tmpl:178 #: ../themes/fusionforge/templates/userprefs.tmpl:200 msgid "" -"Enter pages seperated by space or comma. Wildcards (fileglobbing) allowed." +"Enter pages separated by space or comma. Wildcards (fileglobbing) allowed." msgstr "" "Liste aller Seiten durch Leerzeichen oder Komma getrennt. Reguläre Ausdrücke " "(fileglobbing) erlaubt." Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/locale/po/es.po 2013-01-11 10:20:47 UTC (rev 8711) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 15:25+0100\n" +"POT-Creation-Date: 2013-01-11 11:18+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -8076,7 +8076,7 @@ #: ../themes/default/templates/userprefs.tmpl:178 #: ../themes/fusionforge/templates/userprefs.tmpl:200 msgid "" -"Enter pages seperated by space or comma. Wildcards (fileglobbing) allowed." +"Enter pages separated by space or comma. Wildcards (fileglobbing) allowed." msgstr "" #: ../themes/default/templates/userprefs.tmpl:188 Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/locale/po/fr.po 2013-01-11 10:20:47 UTC (rev 8711) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 15:25+0100\n" +"POT-Creation-Date: 2013-01-11 11:18+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." @@ -8161,7 +8161,7 @@ #: ../themes/default/templates/userprefs.tmpl:178 #: ../themes/fusionforge/templates/userprefs.tmpl:200 msgid "" -"Enter pages seperated by space or comma. Wildcards (fileglobbing) allowed." +"Enter pages separated by space or comma. Wildcards (fileglobbing) allowed." msgstr "" "Entrer les pages séparées par des virgules. Les étoiles (jokers) sont " "autorisées." Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/locale/po/it.po 2013-01-11 10:20:47 UTC (rev 8711) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 15:25+0100\n" +"POT-Creation-Date: 2013-01-11 11:18+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" @@ -8021,7 +8021,7 @@ #: ../themes/default/templates/userprefs.tmpl:178 #: ../themes/fusionforge/templates/userprefs.tmpl:200 msgid "" -"Enter pages seperated by space or comma. Wildcards (fileglobbing) allowed." +"Enter pages separated by space or comma. Wildcards (fileglobbing) allowed." msgstr "" #: ../themes/default/templates/userprefs.tmpl:188 Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/locale/po/ja.po 2013-01-11 10:20:47 UTC (rev 8711) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 15:25+0100\n" +"POT-Creation-Date: 2013-01-11 11:18+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" @@ -8192,7 +8192,7 @@ #: ../themes/default/templates/userprefs.tmpl:178 #: ../themes/fusionforge/templates/userprefs.tmpl:200 msgid "" -"Enter pages seperated by space or comma. Wildcards (fileglobbing) allowed." +"Enter pages separated by space or comma. Wildcards (fileglobbing) allowed." msgstr "" #: ../themes/default/templates/userprefs.tmpl:188 Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/locale/po/nl.po 2013-01-11 10:20:47 UTC (rev 8711) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 15:25+0100\n" +"POT-Creation-Date: 2013-01-11 11:18+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" @@ -8005,7 +8005,7 @@ #: ../themes/default/templates/userprefs.tmpl:178 #: ../themes/fusionforge/templates/userprefs.tmpl:200 msgid "" -"Enter pages seperated by space or comma. Wildcards (fileglobbing) allowed." +"Enter pages separated by space or comma. Wildcards (fileglobbing) allowed." msgstr "" #: ../themes/default/templates/userprefs.tmpl:188 Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/locale/po/phpwiki.pot 2013-01-11 10:20:47 UTC (rev 8711) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 15:25+0100\n" +"POT-Creation-Date: 2013-01-11 11:18+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" @@ -7993,7 +7993,7 @@ #: ../themes/default/templates/userprefs.tmpl:178 #: ../themes/fusionforge/templates/userprefs.tmpl:200 msgid "" -"Enter pages seperated by space or comma. Wildcards (fileglobbing) allowed." +"Enter pages separated by space or comma. Wildcards (fileglobbing) allowed." msgstr "" #: ../themes/default/templates/userprefs.tmpl:188 Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/locale/po/sv.po 2013-01-11 10:20:47 UTC (rev 8711) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 15:25+0100\n" +"POT-Creation-Date: 2013-01-11 11:18+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -7996,7 +7996,7 @@ #: ../themes/default/templates/userprefs.tmpl:178 #: ../themes/fusionforge/templates/userprefs.tmpl:200 msgid "" -"Enter pages seperated by space or comma. Wildcards (fileglobbing) allowed." +"Enter pages separated by space or comma. Wildcards (fileglobbing) allowed." msgstr "" #: ../themes/default/templates/userprefs.tmpl:188 Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/locale/po/zh.po 2013-01-11 10:20:47 UTC (rev 8711) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 15:25+0100\n" +"POT-Creation-Date: 2013-01-11 11:18+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -8360,7 +8360,7 @@ #: ../themes/default/templates/userprefs.tmpl:178 #: ../themes/fusionforge/templates/userprefs.tmpl:200 msgid "" -"Enter pages seperated by space or comma. Wildcards (fileglobbing) allowed." +"Enter pages separated by space or comma. Wildcards (fileglobbing) allowed." msgstr "輸入頁面並以空白或逗號分隔.允許使用萬用字元 (fileglobbing)." #: ../themes/default/templates/userprefs.tmpl:188 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/LC_MESSAGES/phpwiki.php =================================================================== --- trunk/locale/zh/LC_MESSAGES/phpwiki.php 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/locale/zh/LC_MESSAGES/phpwiki.php 2013-01-11 10:20:47 UTC (rev 8711) @@ -209,7 +209,7 @@ $locale["Empty Preferences or format of UserPreferences cookie not recognised."] = "空的偏好設定或 UserPreferences cookie 格式無法辨認."; $locale["Empty link to: %s"] = "沒有連結到: %s"; $locale["Empty pagename!"] = "空白的頁面名稱!"; -$locale["Enter pages seperated by space or comma. Wildcards (fileglobbing) allowed."] = "輸入頁面並以空白或逗號分隔.允許使用萬用字元 (fileglobbing)."; +$locale["Enter pages separated by space or comma. Wildcards (fileglobbing) allowed."] = "輸入頁面並以空白或逗號分隔.允許使用萬用字元 (fileglobbing)."; $locale["Enter your UserId to sign in"] = "輸入你的帳號進行簽入"; $locale["Error: Empty search string."] = "錯誤: 空白的搜尋字串."; $locale["Error: The user HomePage must be a valid WikiWord. Sorry, UserPreferences cannot be saved."] = "錯誤: 使用者的首頁必須是一個合法的 WikiWord. 抱歉, UserPreferences 無法儲存."; Modified: trunk/pgsrc/Help%2FFileInfoPlugin =================================================================== --- trunk/pgsrc/Help%2FFileInfoPlugin 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/pgsrc/Help%2FFileInfoPlugin 2013-01-11 10:20:47 UTC (rev 8711) @@ -1,4 +1,4 @@ -Date: Fri, 16 Dec 2011 12:51:22 +0000 +Date: Fri, 11 Jan 2013 11:16:51 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0) Content-Type: application/x-phpwiki; pagename=Help%2FFileInfoPlugin; @@ -34,7 +34,7 @@ | //None// (required argument) |- | **display** -| Comma-seperated string of version, size, phonysize, date, mtime, owner, name, path, dirname, link, mime-typ, magic. +| Comma-separated string of version, size, phonysize, date, mtime, owner, name, path, dirname, link, mime-typ, magic. | //None// (required argument) |- | **format** Modified: trunk/pgsrc/Help%2FFullTextSearchPlugin =================================================================== --- trunk/pgsrc/Help%2FFullTextSearchPlugin 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/pgsrc/Help%2FFullTextSearchPlugin 2013-01-11 10:20:47 UTC (rev 8711) @@ -1,4 +1,4 @@ -Date: Fri, 7 Dec 2012 14:58:45 +0000 +Date: Fri, 11 Jan 2013 11:16:51 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0) Content-Type: application/x-phpwiki; pagename=Help%2FFullTextSearchPlugin; @@ -49,7 +49,7 @@ | false |- | **exclude** -| Comma-seperated list of glob to exclude +| Comma-separated list of glob to exclude | false |- | **quiet** Modified: trunk/pgsrc/Help%2FLdapSearchPlugin =================================================================== --- trunk/pgsrc/Help%2FLdapSearchPlugin 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/pgsrc/Help%2FLdapSearchPlugin 2013-01-11 10:20:47 UTC (rev 8711) @@ -1,4 +1,4 @@ -Date: Fri, 7 Dec 2012 18:31:23 +0000 +Date: Fri, 11 Jan 2013 11:16:51 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0) Content-Type: application/x-phpwiki; pagename=Help%2FLdapSearchPlugin; @@ -53,11 +53,11 @@ | "(cn=*)" |- | **attributes** -| space seperated fields to return as table columns: "cn sn" +| space separated fields to return as table columns: "cn sn" | empty |- | **options** -| ldap_set_option(). Column seperated name=value pairs. Esp. needed for Windows Active directory: "LDAP_OPT_PROTOCOL_VERSION=3:LDAP_OPT_REFERRALS=0" +| ldap_set_option(). Column separated name=value pairs. Esp. needed for Windows Active directory: "LDAP_OPT_PROTOCOL_VERSION=3:LDAP_OPT_REFERRALS=0" | LDAP_SET_OPTION if host == LDAP_AUTH_HOST |- | **user** Modified: trunk/pgsrc/Help%2FPageList =================================================================== --- trunk/pgsrc/Help%2FPageList 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/pgsrc/Help%2FPageList 2013-01-11 10:20:47 UTC (rev 8711) @@ -1,4 +1,4 @@ -Date: Thu, 9 Dec 2010 14:51:45 +0000 +Date: Fri, 11 Jan 2013 11:16:51 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0) Content-Type: application/x-phpwiki; pagename=Help%2FPageList; @@ -32,7 +32,7 @@ | pagename |- | **exclude** -| which pages to exclude. Wildcards, comma-seperated lists and <!plugin-list !> arrays allowed. +| which pages to exclude. Wildcards, comma-separated lists and <!plugin-list !> arrays allowed. | //none// |- | **author** @@ -68,7 +68,7 @@ | 0 |- | **comma** -| condensed comma-seperated list, 1 if without links, 2 if with +| condensed comma-separated list, 1 if without links, 2 if with | 0 |- | **commasep** Modified: trunk/pgsrc/Help%2FWikiFormRichPlugin =================================================================== --- trunk/pgsrc/Help%2FWikiFormRichPlugin 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/pgsrc/Help%2FWikiFormRichPlugin 2013-01-11 10:20:47 UTC (rev 8711) @@ -1,4 +1,4 @@ -Date: Fri, 7 Dec 2012 14:58:45 +0000 +Date: Fri, 11 Jan 2013 11:16:51 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0) Content-Type: application/x-phpwiki; pagename=Help%2FWikiFormRichPlugin; @@ -35,7 +35,7 @@ }}} * The plugin must return a pagelist. -* args are optional arguments, space seperated, for the method. +* args are optional arguments, space separated, for the method. * A combobox is a pulldown with autocomplete=1. * Values which are constants are evaluated. * The cancel button must be supported by the action (just some wikiadmin actions so far) Modified: trunk/pgsrc/Help%2FWikiPlugin =================================================================== --- trunk/pgsrc/Help%2FWikiPlugin 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/pgsrc/Help%2FWikiPlugin 2013-01-11 10:20:47 UTC (rev 8711) @@ -1,4 +1,4 @@ -Date: Fri, 7 Dec 2012 18:54:26 +0000 +Date: Fri, 11 Jan 2013 11:16:51 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0) Content-Type: application/x-phpwiki; pagename=Help%2FWikiPlugin; @@ -90,7 +90,7 @@ For details see the [[Help:PageList|PageList]] library documentation. -*exclude* and *pages* accept a list of pages. Either as comma-seperated list, +*exclude* and *pages* accept a list of pages. Either as comma-separated list, supporting glob-style wildcards, or via the ##<!plugin-list pluginname ~[args~] !>## invocation syntax, where pluginname might be any plugin returning a [[Help:PageList|PageList]]. See PhpWiki:PluginList. Modified: trunk/themes/default/moacdropdown/js/acdropdown.js =================================================================== --- trunk/themes/default/moacdropdown/js/acdropdown.js 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/themes/default/moacdropdown/js/acdropdown.js 2013-01-11 10:20:47 UTC (rev 8711) @@ -664,7 +664,7 @@ { // encoding: "xmlrpc:wiki.titleSearch [S] 4" // or "xmlrpc:http://localhost/wiki/?wiki.titleSearch [S] 4" - // encode the methodname as optional query_arg and the args space seperated + // encode the methodname as optional query_arg and the args space separated var sURL = this.sListURL var xmlrpc_url = data_path + '/RPC2.php' var aMethodArgs = sURL.split( ' ' ) Modified: trunk/themes/default/moacdropdown/xmlrpc.txt =================================================================== --- trunk/themes/default/moacdropdown/xmlrpc.txt 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/themes/default/moacdropdown/xmlrpc.txt 2013-01-11 10:20:47 UTC (rev 8711) @@ -6,7 +6,7 @@ long form (remote server): "xmlrpc:http://localhost/wiki/?wiki.titleSearch [S] 4" -encode the methodname as optional query_arg and the args space seperated +encode the methodname as optional query_arg and the args space separated args can only be strings Modified: trunk/themes/default/templates/userprefs.tmpl =================================================================== --- trunk/themes/default/templates/userprefs.tmpl 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/themes/default/templates/userprefs.tmpl 2013-01-11 10:20:47 UTC (rev 8711) @@ -175,7 +175,7 @@ <tr> <?php if ($isForm) { ?> <td><textarea name="pref[notifyPages]" cols="40" rows="6"><?php echo $pref->get('notifyPages')?></textarea></td> - <td><p class="hint"><?php echo _("Enter pages seperated by space or comma. Wildcards (fileglobbing) allowed.")?></p></td> + <td><p class="hint"><?php echo _("Enter pages separated by space or comma. Wildcards (fileglobbing) allowed.")?></p></td> <?php } else { ?> <td><?php echo $pref->get('notifyPages')?></td> <?php } ?> Modified: trunk/themes/fusionforge/templates/userprefs.tmpl =================================================================== --- trunk/themes/fusionforge/templates/userprefs.tmpl 2013-01-10 10:32:24 UTC (rev 8710) +++ trunk/themes/fusionforge/templates/userprefs.tmpl 2013-01-11 10:20:47 UTC (rev 8711) @@ -197,7 +197,7 @@ <tr> <?php if ($isForm) { ?> <td><textarea name="pref[notifyPages]" cols="40" rows="6"><?php echo $pref->get('notifyPages')?></textarea></td> - <td><p class="hint"><?php echo _("Enter pages seperated by space or comma. Wildcards (fileglobbing) allowed.")?></p></td> + <td><p class="hint"><?php echo _("Enter pages separated by space or comma. Wildcards (fileglobbing) allowed.")?></p></td> <?php } else { ?> <td colspan="2"><?php echo $pref->get('notifyPages')?></td> <?php } ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |