From 18be10b5fa46ecd1923de3e29d71865a371584b2 Mon Sep 17 00:00:00 2001 From: rurban Date: Thu, 1 Apr 2004 15:57:20 +0000 Subject: [PATCH] simplified Sidebar theme: table, not absolute css positioning added the new box methods. remaining problems: large left margin, how to override _autosplitWikiWords in Template only git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@3238 96ab9672-09ca-45d6-a79d-3d69d39ca109 --- index.php | 12 +- lib/Theme.php | 50 +- lib/plugin/RecentChanges.php | 20 +- lib/plugin/WikiAdminUtils.php | 7 +- lib/stdlib.php | 22 +- locale/Makefile | 29 +- locale/de/LC_MESSAGES/phpwiki.mo | Bin 59892 -> 65141 bytes locale/de/LC_MESSAGES/phpwiki.php | 214 +- locale/es/LC_MESSAGES/phpwiki.mo | Bin 6085 -> 6085 bytes locale/fr/LC_MESSAGES/phpwiki.mo | Bin 22702 -> 22702 bytes locale/it/LC_MESSAGES/phpwiki.mo | Bin 5938 -> 5938 bytes locale/ja/LC_MESSAGES/phpwiki.mo | Bin 13802 -> 13658 bytes locale/ja/LC_MESSAGES/phpwiki.php | 42 +- locale/nl/LC_MESSAGES/phpwiki.mo | Bin 5643 -> 5643 bytes locale/po/de.po | 158 +- locale/po/es.po | 2329 +++++++++++++++++----- locale/po/fr.po | 2430 ++++++++++++++++++----- locale/po/it.po | 2332 +++++++++++++++++----- locale/po/ja.po | 2981 ++++++++++++++++++++++------ locale/po/nl.po | 2329 +++++++++++++++++----- locale/po/phpwiki.pot | 1363 +++++++++---- locale/po/sv.po | 2332 +++++++++++++++++----- locale/sv/LC_MESSAGES/phpwiki.mo | Bin 5667 -> 5667 bytes pgsrc/AddCommentPlugin | 8 +- pgsrc/PhpWikiAdministration | 6 +- pgsrc/ReleaseNotes | 16 +- schemas/psql.sql | 6 +- themes/Sidebar/sidebar.css | 26 +- themes/Sidebar/templates/body.tmpl | 53 +- themes/Sidebar/templates/top.tmpl | 9 +- themes/Sidebar/themeinfo.php | 45 +- themes/default/phpwiki.css | 12 +- themes/wikilens/themeinfo.php | 4 +- 33 files changed, 12981 insertions(+), 3854 deletions(-) diff --git a/index.php b/index.php index 73e7d0a37..01217db1e 100644 --- a/index.php +++ b/index.php @@ -73,7 +73,7 @@ define('ENABLE_USER_NEW',true); // this will disappear with 1.4.0 define ('PHPWIKI_VERSION', '1.3.8'); require "lib/prepend.php"; -rcs_id('$Id: index.php,v 1.131 2004-03-14 16:24:35 rurban Exp $'); +rcs_id('$Id: index.php,v 1.132 2004-04-01 15:57:10 rurban Exp $'); ///////////////////////////////////////////////////////////////////// // @@ -517,7 +517,7 @@ if (!defined('LDAP_AUTH_HOST')) define('LDAP_AUTH_HOST', "ldap://localhost:389 if (!defined('LDAP_BASE_DN')) define('LDAP_BASE_DN', "ou=Users,o=Development,dc=mycompany.com"); // LDAP Auth Optional: // Some LDAP servers disallow anonymous binds, and need some more options, -// such as the Windows Active Directory Server: +// such as for the Windows Active Directory Server: // $LDAP_SET_OPTION = array('LDAP_OPT_PROTOCOL_VERSION' => 3, // 'LDAP_OPT_REFERRALS' => 0); // define(LDAP_AUTH_USER, "CN=ldapuser,CN=Users,DC=uai,DC=int"); @@ -531,9 +531,10 @@ if (!defined('IMAP_AUTH_HOST')) define('IMAP_AUTH_HOST', 'localhost:143/imap/n // Some IMAP_AUTH_HOST samples: // "localhost", "localhost:143/imap/notls", // "localhost:993/imap/ssl/novalidate-cert" (SuSE refuses non-SSL conections) -// POP3 auth: + +// POP3 auth: //if (!defined('POP3_AUTH_HOST')) define('POP3_AUTH_HOST', 'localhost'); -//if (!defined('POP3_AUTH_PORT')) define('POP3_AUTH_HOST', '110'); +//if (!defined('POP3_AUTH_PORT')) define('POP3_AUTH_PORT', '110'); // File auth: //if (!defined('AUTH_USER_FILE')) define('AUTH_USER_FILE', '/etc/shadow'); // or '/etc/httpd/.htpasswd' @@ -941,6 +942,9 @@ if (defined('VIRTUAL_PATH') and defined('USE_PATH_INFO')) { //include "lib/main.php"; // $Log: not supported by cvs2svn $ +// Revision 1.131 2004/03/14 16:24:35 rurban +// authenti(fi)cation spelling +// // Revision 1.130 2004/03/09 17:16:43 rurban // fixed $LDAP_SET_OPTION // diff --git a/lib/Theme.php b/lib/Theme.php index ea79808ef..aef65a2da 100644 --- a/lib/Theme.php +++ b/lib/Theme.php @@ -1,4 +1,4 @@ - * * This file is part of PhpWiki. @@ -1183,8 +1183,56 @@ class PluginSidebarBox extends SidebarBox { } } +// Various boxes which are no plugins +class RelatedLinksBox extends SidebarBox { + function RelatedLinksBox($title = false, $body = '', $limit = 20) { + global $request; + $this->title = $title ? $title : _("Related Links"); + $this->body = HTML($body); + $page = $request->getPage($request->getArg('pagename')); + $revision = $page->getCurrentRevision(); + $page_content = $revision->getTransformedContent(); + //$cache = &$page->_wikidb->_cache; + $counter = 0; + $sp = HTML::Raw('· '); + foreach ($page_content->getWikiPageLinks() as $link) { + if (!$request->_dbi->isWikiPage($link)) continue; + $this->body->pushContent($sp,WikiLink($link), HTML::br()); + $counter++; + if ($limit and $counter > $limit) continue; + } + } +} + +class RelatedExternalLinksBox extends SidebarBox { + function RelatedExternalLinksBox($title = false, $body = '', $limit = 20) { + global $request; + $this->title = $title ? $title : _("External Links"); + $this->body = HTML($body); + $page = $request->getPage($request->getArg('pagename')); + $cache = &$page->_wikidb->_cache; + $counter = 0; + $sp = HTML::Raw('· '); + foreach ($cache->getWikiPageLinks() as $link) { + if ($link) { + $this->body->pushContent($sp, WikiLink($link), HTML::br()); + $counter++; + if ($limit and $counter > $limit) continue; + } + } + } +} + + // $Log: not supported by cvs2svn $ +// Revision 1.80 2004/03/30 02:14:03 rurban +// fixed yet another Prefs bug +// added generic PearDb_iter +// $request->appendValidators no so strict as before +// added some box plugin methods +// PageList commalist for condensed output +// // Revision 1.79 2004/03/24 19:39:02 rurban // php5 workaround code (plus some interim debugging code in XmlElement) // php5 doesn't work yet with the current XmlElement class constructors, diff --git a/lib/plugin/RecentChanges.php b/lib/plugin/RecentChanges.php index 413e62f4a..280897937 100644 --- a/lib/plugin/RecentChanges.php +++ b/lib/plugin/RecentChanges.php @@ -1,5 +1,5 @@ next()) { // enforce view permission if (mayAccessPage('view',$rev->_pagename)) { - $html->pushContent(HTML::li($this->pageLink($rev))); + $html->pushContent($sp,$this->pageLink($rev),HTML::br()); if ($first) $this->setValidators($rev); $first = false; @@ -649,7 +651,7 @@ extends WikiPlugin function getVersion() { return preg_replace("/[Revision: $]/", '', - "\$Revision: 1.87 $"); + "\$Revision: 1.88 $"); } function managesValidators() { @@ -775,7 +777,10 @@ extends WikiPlugin if (!isset($args['limit'])) $args['limit'] = 15; $args['format'] = 'box'; $args['show_minor'] = false; + $args['show_major'] = true; $args['show_deleted'] = false; + $args['show_all'] = false; + $args['days'] = 90; return $this->makeBox(WikiLink(_("RecentChanges"),'',_("Recent Changes")), $this->format($this->getChanges($request->_dbi, $args), $args)); } @@ -831,6 +836,13 @@ class DayButtonBar extends HtmlElement { } // $Log: not supported by cvs2svn $ +// Revision 1.87 2004/03/30 02:14:03 rurban +// fixed yet another Prefs bug +// added generic PearDb_iter +// $request->appendValidators no so strict as before +// added some box plugin methods +// PageList commalist for condensed output +// // Revision 1.86 2004/03/12 13:31:43 rurban // enforce PagePermissions, errormsg if not Admin // diff --git a/lib/plugin/WikiAdminUtils.php b/lib/plugin/WikiAdminUtils.php index fb9ae0695..1d1541f8c 100644 --- a/lib/plugin/WikiAdminUtils.php +++ b/lib/plugin/WikiAdminUtils.php @@ -1,5 +1,5 @@ _columns[] = $email; $pagelist->_columns[] = $emailVerified; + //This is the best method to find all users (Db and PersonalPage) $group = WikiGroup::getGroup($request); foreach ($group->_allUsers() as $username) { if (ENABLE_USER_NEW) @@ -193,6 +194,8 @@ extends WikiPlugin } }; +require_once("lib/PageList.php"); + class _PageList_Column_email extends _PageList_Column { function _getValue ($prefs, $dummy) { diff --git a/lib/stdlib.php b/lib/stdlib.php index cafdd77cf..b52aadb14 100644 --- a/lib/stdlib.php +++ b/lib/stdlib.php @@ -1,4 +1,4 @@ - $val) - $RE[$key] = pcre_fix_posix_classes($val); + foreach ($RE as $key) + $RE[$key] = pcre_fix_posix_classes($key); } foreach ($RE as $regexp) { @@ -1375,6 +1377,20 @@ function obj2hash ($obj, $exclude = false, $fields = false) { } // $Log: not supported by cvs2svn $ +// Revision 1.165 2004/03/24 19:39:03 rurban +// php5 workaround code (plus some interim debugging code in XmlElement) +// php5 doesn't work yet with the current XmlElement class constructors, +// WikiUserNew does work better than php4. +// rewrote WikiUserNew user upgrading to ease php5 update +// fixed pref handling in WikiUserNew +// added Email Notification +// added simple Email verification +// removed emailVerify userpref subclass: just a email property +// changed pref binary storage layout: numarray => hash of non default values +// print optimize message only if really done. +// forced new cookie policy: delete pref cookies, use only WIKI_ID as plain string. +// prefs should be stored in db or homepage, besides the current session. +// // Revision 1.164 2004/03/18 21:41:09 rurban // fixed sqlite support // WikiUserNew: PHP5 fixes: don't assign $this (untested) diff --git a/locale/Makefile b/locale/Makefile index b4038fddc..2fa01f11f 100644 --- a/locale/Makefile +++ b/locale/Makefile @@ -1,4 +1,4 @@ - # $Id: Makefile,v 1.38 2004-02-26 21:23:27 rurban Exp $ + # $Id: Makefile,v 1.39 2004-04-01 15:57:11 rurban Exp $ # # locale/Makefile # @@ -47,7 +47,7 @@ dep : # # The remainder of this file is auto-generated # -# (Run 'make depend' to regenerate this section.) +# (Run 'make dependo regenerate this section.) # po: po/de.po mo: de/LC_MESSAGES/phpwiki.mo de/LC_MESSAGES/phpwiki.php @@ -64,16 +64,17 @@ mo: nl/LC_MESSAGES/phpwiki.mo nl/LC_MESSAGES/phpwiki.php po: po/sv.po mo: sv/LC_MESSAGES/phpwiki.mo sv/LC_MESSAGES/phpwiki.php # +${POT_FILE}: ../lib/Amazon.php ${POT_FILE}: ../lib/ArchiveCleaner.php ${POT_FILE}: ../lib/BlockParser.php ${POT_FILE}: ../lib/CachedMarkup.php ${POT_FILE}: ../lib/DB_Session.php -${POT_FILE}: ../lib/DB_Session_old.php ${POT_FILE}: ../lib/DbaDatabase.php ${POT_FILE}: ../lib/DbaListSet.php ${POT_FILE}: ../lib/DbaPartition.php ${POT_FILE}: ../lib/ErrorManager.php ${POT_FILE}: ../lib/FileFinder.php +${POT_FILE}: ../lib/Google.php ${POT_FILE}: ../lib/HtmlElement.php ${POT_FILE}: ../lib/InlineParser.php ${POT_FILE}: ../lib/PageList.php @@ -126,9 +127,13 @@ ${POT_FILE}: ../lib/diff3.php ${POT_FILE}: ../lib/difflib.php ${POT_FILE}: ../lib/display.php ${POT_FILE}: ../lib/editpage.php +${POT_FILE}: ../lib/fpdf.php +${POT_FILE}: ../lib/htmlarea.php +${POT_FILE}: ../lib/htmlarea3/popups/insert_pagelink.php ${POT_FILE}: ../lib/imagecache.php ${POT_FILE}: ../lib/loadsave.php ${POT_FILE}: ../lib/main.php +${POT_FILE}: ../lib/nusoap/nusoap.php ${POT_FILE}: ../lib/pear/Cache.php ${POT_FILE}: ../lib/pear/Cache/Container.php ${POT_FILE}: ../lib/pear/Cache/Container/file.php @@ -151,6 +156,7 @@ ${POT_FILE}: ../lib/pear/DB/storage.php ${POT_FILE}: ../lib/pear/DB/sybase.php ${POT_FILE}: ../lib/pear/File_Passwd.php ${POT_FILE}: ../lib/pear/PEAR.php +${POT_FILE}: ../lib/plugin/AddComment.php ${POT_FILE}: ../lib/plugin/AllPages.php ${POT_FILE}: ../lib/plugin/AllUsers.php ${POT_FILE}: ../lib/plugin/AuthorHistory.php @@ -159,12 +165,15 @@ ${POT_FILE}: ../lib/plugin/CacheTest.php ${POT_FILE}: ../lib/plugin/Calendar.php ${POT_FILE}: ../lib/plugin/CalendarList.php ${POT_FILE}: ../lib/plugin/Comment.php +${POT_FILE}: ../lib/plugin/CreatePage.php +${POT_FILE}: ../lib/plugin/CreateToc.php ${POT_FILE}: ../lib/plugin/Diff.php ${POT_FILE}: ../lib/plugin/EditMetaData.php ${POT_FILE}: ../lib/plugin/ExternalSearch.php ${POT_FILE}: ../lib/plugin/FrameInclude.php ${POT_FILE}: ../lib/plugin/FullTextSearch.php ${POT_FILE}: ../lib/plugin/FuzzyPages.php +${POT_FILE}: ../lib/plugin/GooglePlugin.php ${POT_FILE}: ../lib/plugin/HelloWorld.php ${POT_FILE}: ../lib/plugin/IncludePage.php ${POT_FILE}: ../lib/plugin/IncludeSiteMap.php @@ -192,10 +201,12 @@ ${POT_FILE}: ../lib/plugin/RecentChangesCached.php ${POT_FILE}: ../lib/plugin/RedirectTo.php ${POT_FILE}: ../lib/plugin/RichTable.php ${POT_FILE}: ../lib/plugin/SiteMap.php +${POT_FILE}: ../lib/plugin/SqlResult.php ${POT_FILE}: ../lib/plugin/SystemInfo.php ${POT_FILE}: ../lib/plugin/TexToPng.php ${POT_FILE}: ../lib/plugin/TitleSearch.php ${POT_FILE}: ../lib/plugin/Transclude.php +${POT_FILE}: ../lib/plugin/TranslateText.php ${POT_FILE}: ../lib/plugin/UnfoldSubpages.php ${POT_FILE}: ../lib/plugin/UpLoad.php ${POT_FILE}: ../lib/plugin/UserFileManagement.php @@ -218,6 +229,7 @@ ${POT_FILE}: ../lib/plugin/WikiPoll.php ${POT_FILE}: ../lib/plugin/_AuthInfo.php ${POT_FILE}: ../lib/plugin/_BackendInfo.php ${POT_FILE}: ../lib/plugin/_PreferencesInfo.php +${POT_FILE}: ../lib/plugin/_WikiTranslation.php ${POT_FILE}: ../lib/plugin/text2png.php ${POT_FILE}: ../lib/plugincache-config.php ${POT_FILE}: ../lib/prepend.php @@ -250,16 +262,19 @@ ${POT_FILE}: ../themes/Sidebar/themeinfo.php ${POT_FILE}: ../themes/SpaceWiki/lib/RecentChanges.php ${POT_FILE}: ../themes/SpaceWiki/themeinfo.php ${POT_FILE}: ../themes/default/templates/actionbar.tmpl +${POT_FILE}: ../themes/default/templates/addcomment.tmpl ${POT_FILE}: ../themes/default/templates/blogform.tmpl ${POT_FILE}: ../themes/default/templates/body.tmpl ${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/comment.tmpl ${POT_FILE}: ../themes/default/templates/content.tmpl ${POT_FILE}: ../themes/default/templates/debug.tmpl ${POT_FILE}: ../themes/default/templates/dialog.tmpl ${POT_FILE}: ../themes/default/templates/editpage.tmpl -${POT_FILE}: ../themes/default/templates/forumform.tmpl +${POT_FILE}: ../themes/default/templates/forum-thread.tmpl +${POT_FILE}: ../themes/default/templates/forum-topics.tmpl ${POT_FILE}: ../themes/default/templates/frame-footer.tmpl ${POT_FILE}: ../themes/default/templates/frame-header.tmpl ${POT_FILE}: ../themes/default/templates/frameset.tmpl @@ -277,7 +292,11 @@ ${POT_FILE}: ../themes/default/templates/savepage.tmpl ${POT_FILE}: ../themes/default/templates/signin.tmpl ${POT_FILE}: ../themes/default/templates/top.tmpl ${POT_FILE}: ../themes/default/templates/userprefs.tmpl -${POT_FILE}: ../themes/default/templates/userregistration.tmpl ${POT_FILE}: ../themes/default/templates/viewsource.tmpl ${POT_FILE}: ../themes/default/templates/wikiblog.tmpl ${POT_FILE}: ../themes/default/themeinfo.php +${POT_FILE}: ../themes/smaller/templates/actionbar.tmpl +${POT_FILE}: ../themes/smaller/templates/info.tmpl +${POT_FILE}: ../themes/smaller/templates/navbar.tmpl +${POT_FILE}: ../themes/smaller/templates/signin.tmpl +${POT_FILE}: ../themes/smaller/themeinfo.php diff --git a/locale/de/LC_MESSAGES/phpwiki.mo b/locale/de/LC_MESSAGES/phpwiki.mo index 76c1443f6ffb6800b37cd93a3ebb315dc92d95da..a64dff343ae22cb56979e1dfd36e32c07e660ef4 100644 GIT binary patch delta 22022 zcmb8$cYIXE;`i~B&=Vl^UX~gHB!GbQ5=iJJ^e!yPNimz+~{_lqS$pHwM% zx5d@5gk{ykgS9PdU`fmJv{$ZWEl;zoins!+;(FuLxQp~*6VqMG?vAE&E8*)V|0I?q{gp|7Yy1^e?jn}K3jHmsIabFW z*c}_-T#U#2Q5|^{HINYO@SXVf%HYJgXITUR$WZQYS0&J1~*-I`rbps2S)m z$g-GqD;?FrCD;?!qdM{_UW;F&I$nRUliwLb%IHO;5l%!^I3Kk}OR)m3$5OZzRpHZE z9d~0HJc^py56u0qQ3LrNE8`{9Oe74kta8`@wY^#lVg8#EnM{T@%Z$BY^N!B z6yr&k8tSZVWmLz8V;oLF-OojJFo^2#JXFIsqLyYkmc>oR9YdM_;biP4qXWhdb4K19 zHG)y71~Rc1dW~C+KcGgGLM6%A8C5`8&D0dKu!5N)bra=<=#bg>{G0W-(n>UT_B<poNe>^7W{O1u- zLvv6SE=E=KASU4+)LMRx_3=AY&*Mfpd!#O^fljEIOULp!0X4JPsQSF9fi6LnUlmQW z{u_wU6YB}oRPDwp_%f=36Q~D2LmkI6s1e4Dc8;S9`;s1jI!$+?I=m69;uh4vUP3Lw z3FDVoPUrszBCYTb)J!xT+FGMsDZS@=GYBu z;B-_ybFd*U#gNu=3lUXt47Eldp*GX^*by(F*0{|$=S_JnRwLaFYhVWI`5aVzg{Y3- zjoO3{V}E=V2V&*%mNghBjc5H;!A3H)rh8F6dZEH=aHg;gs$5r8L&H!@ zHW}41AF9K*7?+@yY$cY&?Wm=FW&-oCDc?(m_Q0E{8Tc4g@sFqqFQKNa%0y?R*Pu38 zH&nv|O#UR)b6FLt{Mm6{$YL}nE?)V$3e7ox`D;7tgHs@HRy^uAHh^8pp$*>k;bnP&P z{3WQ(xYXp|k7{5&YR^1@!*CC(L-A9cuVXd5mh{c2&9@8n0*jsI%tRaPLi<)3cf%@o8m3(jc2hAw$5^9pg*d?3{(YUP!+pTGvh^dcs{BFOU(Vd&HW9i z4m^e0OZ!mek7qIe$wa;&BMB?n&J=Y;?ST=f3ddtZoQ~QnH=$;3HP*vA+0N8=LNzoV z(=iwI0^5ozcM4TcOpY^vMmf~do{SVSI^c9vgZG*O4`D0PTTvtZ5VeNipvwJ&wXj^S z)8WRba!FVUJE3N(2WmzKVQI8cOW+9+DMRE&)ULiAHASmT{zgn8pd2dm(vwRBHoJid-qP6)R^+4GI=VMa? z6G^v5<&VblINhXus17VZZOWT*60Sjw^gOELabBmvBrHd|BgSDbtU&wLAR-$1cw-PX z#mi9@J%rlTPopY0Xzm}u3Zy?pP3iY0{~y$Im3&S;O;985fXeTUWpNaSv__MOsHZbf z4J=1>Xf>+hXH5QK>_+++YOO04I(9^jXfmpS98AEuSPAby-CtwUkD+Gr*+S-D4;(ZF z-ZurlK&{oUsPBH<45vdb)H&{MoPc`O&O{Al6>6lLP#xTfdSjkM?U@>WMvY^!9d7nB z|Gez1lVs=^^$s|jr9W0CJqb0%1*lCq4>gjTQ6szyHI)yT`x{ZaeH&^94`U-dW%5f0 zo$?J)&$kE>(dOxl6)^+V@KjWTGjJHrLCw@*RJo6^F@B5cP=z9=;##QuMyQUb8AqaK zW*WNCgGm@#N<<@g7S-c@s0vSFB|MEC@ekBUQf4~$Gf?*@p=Qp5Y9L??VRh0=uqr-; zD!&sO;w#8NLe|$rRKf442QFd_tTM~lj7g|t)*iK{T}*l!Y9_K#o2dvjLpPx|@!hB? zeh@X2+feU^XU+XRQCa_2h;-n_+o*<0&2~BzkIhI|!DQ@=tufo&4`VITt5FR^O#W_E zhxVgp^ey9A)J&I|<1A4ntU~)%dm=9Ehnk5T)J%A>Hr|5T^$(!-#%^qdZ=%XwK<(y) zxy~=1RMh?1sE$2id=k}xr%_Aw0*2JnSBX@^_i!_wMLl@WJZH)tK+VjDfp<#e;QTp zpz#e6k|PI?TY(!$fpkenahr zzp*~X-{P!Q5~`t&sLj?5b<9SfD$YVJ;e6D4V+CsJ*P^C)i%GwPYUda>z>~-eDrEgd zL=~1>#w-Ol>!7_1|s9PUC*(Lqz-EmX%&pgM30@5A3v$86~xPKOVo_QY$b4u6Fu zR1TBy57cIDyu>*zU9lDE+$GHaKq9Ni=!KtPQ*3Z2Z#V3VP4FDH#X3u!kq<^yI2{vl zE@}^Lz;U<@J7Sr;Eb9RFKpnT3WzKOQi7wKsLPYf7POO0Yu^hgQIz}HF&!T4PBC3P6 zmpi+*qSayZ; zU^`UBsi=;QLY1F_>WBwbu^-FeEYu8zPy^VAdhQ@r()m9^q%|3zqK-@Xl}?4tu{7z9 z7?0gi6%H`z42&Z^8P#x(Nf(&=vr&8C7SsS2qh@#oR>lXh4DDOniD)gKHwBKOM*JzN zVA-(q#;SwONq0fLA*UfDuoj}GbQ$VcK8Wh@Zd8MZunN9w(%+yubPi)_-};A$Mi9Ho zxltB1rIk@@=R!4x_@1raXeG?`_o7e~QoZ!Z?G`@BhR1 zIGg4vtVV%@_zZr4>A3t}rXAly^}HcxFcn*%Ht+SQhG(I^5jUZB|9z+ikKna<0yU6? z`<;4R_cQ<6EJiRwt{)lLVhVq4NlsQM?O zW^O80#Ti%|7p-Rg>kxU6jE1-iwZzv>JUR1dka0tGO>PX`UoL6cR zM(aV%NM^!i%wFy_F>U$J(aR<_nRd<7PJjb9m;S7w|`M-&XHq~7i-Q}neGR6RWocBd7)Dm?X+>NurtcFIpi%}^#bz#CB=TaV>%3#z_nu@}CEjWO;C zX9-fHs0Z`0A}&JB%qon>%~%hg z!OD0X)se4o5|)WLOPXn%i7xVQN1e9Km__^6X(D}a$kQ}}%TSxI`c7x$!%(Lrgqndx zsF7~RO1K9##c!fE<0)*7C7y9Q+7|VEcT|V_pawJ*qyPTrB~qP?o6&{$qh?~4$vN)C{4X9J#;T;hz%jaS(nEGR=YJZOB|jI{?u=c`zeYNr z46WfE*caEL*77s#fU&!sk4z`j@fwFqaUNV^+pWsBcioBjH=)*RK*{oHrIEk1}~X(!i&ykb73v=JE1<;8CV-_)bk+7~SsvRp*!k;nqW}_o8;^C#Vixz-ux76=#b3 zpr+W1jqx7T(mjtF;d`j(enc%v%poT~8C7pT)BxOA3iA&!|Eg#P8IRy99D!X9J0o6# zvC22ziw~1tjoNHIUv)Y@9_x~xjT+%9lfMC*lirW&*csI6_zU%htoj=BuNO`4*PM5C z25Lq!u`K$r9nQmvxCJ%RvadVGsu8OE2#mvN#(Y%0GqDNYikhj-s5k8)R6QSuh*TkR z4)xV4_l8rT25K!^qt>>EailTFI3Lx}3T%K6p*pe;)!^%>8UDuP$G_>!NDb7CgnAGu zM`Spr;RH;<2QUfW#0q%cSn7z=^Qsu_AjWgQ2dct>SRN;#29}Gee;%r%i%=uK8#y)n z_kTpx)0a^r_yTpzV%~Drwh3wm`eH>Kk6kebd*TKhjGyBTnEbXgkgez={VVFZ%%e{I zepLM{F#6yBMTjJj@hYn4A7Ewt8a47iP z119|iYVCi*GFbXJe{a1`^(JI$9s~0&0WJ zuphe6gL-}`w!qaUeE?P8+ZY-_L-oAE`_3kE zp>}&0)YPY;mU5W!IvhsYYwo{*rAZ&cYw*bX%zqmqF(;gJ-VU|anW#1OpekOB>gY<; z60Js!@ClQC6IJdL)Y5%}>Ts10oEb?%-5-QaaWv{!&Iu7oB(fIu3OV4=e zO*(cUeG}^bv#1XJi0bfpqxF%qROL`hSQE7gTjNVO7&Su`PMY78^@(UonxLk>C4P;a zP#tLSu~R{R)G^D(_P7HF;Mb@bY4eG5%zC357>-)1si?K~qn30bs>3UhJr%OnI1y_T zYAv5dRj?mb@i9~dUt)Fq5gTBsPn{`likjMPs0P!qCXPoJ7GgbIfwgcew#Gx)lJ>3N zh-l3ke&(F#ftXHu1uFl2?2j>@JNW}qn`are!u{9_f57^f@`cmEAvlF}K5CD>idy>% zs5fncFZn4>`&K3q7e0oK@DOSwXRte7!~k|V#cLL~pei_vI(BWpavJV~qe)N0MYt0+ z)!kT6&1@Q~gTqa_07Iq7m`$W1E;I!mKy98qsHr}Rn&O{OOYNG6ElDHPNlnXtz%N(_OP_K6VX_f6B|Yv8^Iwt3d@|JF64WVJj~c-iR8M!K*7_(m z!Asa28-42>!vUyGnqi!bbxG%1<0RC`bFmyQ#yDJw@wm=0WNjj%wcUxY;mg<; zm;d0b?K{|l^arSNu|GP$39DcV>FTJpO~WLdihb~QbmJSSW0>-j^QOHM-7$Q;u!YWl zjbEHMTQAg7EHOTgZAib28u9O#jd8!SKX3-tqM|Cl@sE$BTmA0be+<=;3g?`e=!6NR z(@>{iG*-cUtVH|PLLx138Meh;s5L)}TC*Q98PA#fP0u@X>iHCVV}(CB|B4JF(jJ$gj@1FwUicj~BjqkQYu6mrv3976JK_NBj-7E4 zYHjzTcK2)81wTU_+d6+b?~U%Ly)*Vt=3fm>C8G=muma9QZI;_j!BwbDwGLH&GipS8 zQRNPxmgoqo;V(`81*}QB`-hG78l|0kS8pbpB{cAQ`<>_qT+pv2>D9P3y>|{TKZ?Ennn@ zuHN_{VG9+!MY^UbyqCP22(J;YzTPCEjo60req3ShcOreWiJ!$=2 zWv1|dmTON3UZXNyj}kOP=SkNfEF)fr`|n~N&u=&7){@rsJLy!ybKILu_>_=f%FKwN z{WfHbCHzj|d~Q@B@N$d(NN7QPG~ol%I@8*0+bOH-XYzj}eiknfbgjU*aTKLDUOn1m|$ka$H3>iWmz>l^XCN?A(8wclxaq|F_!UPpg?JEG~|YkSR(O{ z2)zmSlAc9DUB5Y8{RpH>IsE z++Rv)8N>P?CXzvcFR}Q#jd)oKo+4v3VLtZ@3E3(~dMDulLJP|1s!Ooi78xiG$L;>&Sgv;^M*%A^rOqsXX3_yb zE1LADc#(83lb%8RBf>G#H89WQH{sbYNzWsUAl`xe`|ub+*Yl)Dnz9Elm%Id>|4fs) zgp746X)bqh1odgvHIVQwCWa*VkB&FpPLJp1qU! zWa3M7{vRjOn#|(sck@saypHgRNvD{O9wW_TRwI*NfWMl1FA#4_m}n}iOnd{O1oaQb z;w#a_-%~}8lDI%vLp;fJek+q|PkaLL zG|Ejkc{R*{+L5=EyaT8!7H4Q8M-%yi2X!SAMv#7pP?|7;d>>&r@oLzFkYXyVO4*_0 z-%fZ#4|5$Ql;Qq5@^oE~A;LJ5R^9-@8<*3}{~juxPv%c##+b?rN$(>6A5(BS>2yLx zLRs>rVim$Ol)3t9Ln4n*&(za^xS#URQSLF~voO{?^C0$A??w?O5p>1#U{idXoBVjS z+Tt_Zdqy|84if(bcbiI-cZ$4rrolm^?;|}D-!x_NiLW6({;FqwBYvLz&^K3QHYVPR zitfSNxOpR?Iq_==x?UyhpmJTAge((J=6)Z-MA9Ed@AA8mcpP;-VV+g?2gK)+KM3!2 z@}2+v4}Y<-#uA#FQH&>Eo`RJqw1D`Z#G4Vnk+6@rt`2w)PEbX}KZbsabLs!go@L@K zoUG`dW5{z63lh{+Li8XLNj41=wRTZiK4FrnU_U-eh#^l`AA*ng{R9`!4L9W$8e6F> zp%di}Q>Fy*&#^b@a;WPxp`Ic-|INv~TM4e$DI6q}x~fCUFF~1gw49cdxP{8CoB4INzV~4!@bZlQ?Lgamx%v}6}j=VdC)u)aN62qPdMW8#lh*~mA+Hqo`r=p|iY3YaT;rce#wTPPHxCevUgP+4 zF8978e>I^T=~JYG#65VF(1w}#);za_v`r{O&^4Q|C>rCJ6J=(T|BflE>|Y7(^!xu0 zZfqjq#({)*Q|M*lf05q?yo1W72zl1WeK`!6FNj=&L3&;6lHGW znN|2Y;RJcn|NqaYMCNd#rc>5>i}9HNIb=qI7hmUiJvEb z3c+K_D%;Qfp@auZAArx|Q%S>F7oK)*K35j~B@-!j9O` z6nK(*#nFG7EiS)NQU ziRswdG`P)}L;jP59PV9x{Xya$$~;B>52oz3ra%(u`ld545${fZYs%Fm^dvqXZzrT` z{dLWzP!GZ@WLC$1!ldguDgxw~+UxlbgS3LfMiG;t2XA_DD zFA#L~jH$(68it_=;QwMS)=WNP5kfl<-&S+p1;t^%WG@-k_D5m6hks z$#Cb`fyjz}x5joZ3g-I!1M&hvpMOq0dGlSlwmZxA z2VCx;E0}A$g1*9V^?^S(^w{1kw|@vvn@9V)oh&CAE-~nb#J=vJokQhTaiqWBS5$a8 zHNaP3t2^P-gI*|;l@}=VxaWjd4{kuanfWy23i$j%tMAn**Yr7>j%NnUclw`1;|4Nv__VfD+T(&pIlNZR<1T_nEb%h&^X>MGM<)1Uvwh*N6R(L(pV%~}WQH#gj4YW{H73MXb*3)h zva|A79Ic?wYrBd9w%;`?FPQ7f(o}1!1zNj&epevZH_PRAsdlqBlRbI)HYEZz_;tVXMC7Kmg_&5Nn*3KZIzOd)+&Yh-VqRyVfNsNfurJ=#6pVpm&sXICcg}FH{qKy?xqkaUvu63izh?QGxiZ~e?UU)YSv|H&hC2|L z<@0B`iVCyX$yq7k3HIlMd_iBTwwT#38M%c6@^W%L1Uht8;>!JToP%7O&gB-Gs9DqD z*=<7PaduL(3i7;6sz17i+VssW@MT5I|M$I-c7bmuqxhc>jC@4yBDSlPfiC=)hr9 zGg3#58kZKXmvgc#`_j(hbs70R=lPiO?pXtZ1s*frC-WXCJKARwsn>hL&s=}3M4@L+ zcu{^%!pOYL+^g66Z2oOA;Y9`B1hwkU%5r5ouc7c)1&3N{12b90@1TG--b}YY`g+ll zk>PhvTX?g#Yovm&V~LiWgv{uX4ips>xOrucn&b5q2J!+{v{~2iY*$~OH^_v92l%_y zqDk%4U@mWvtD0&QndP5VqORW#6nUbDC0d}6S>s*m%69v^M$Qza#8h;9c>QI~aoMw3 zR=zH?+D5w1svT3>jDFDU!~v%NwpIK#wOxtL0*QL-L}l(J=RMB(}q#ZDA{5^Y6$ss;>Ryci5=UCoi3+MESygH|BY@BOgz%|^< z`@jyrIq&JXJ|16=c_iV38sU}mCzgtSs={B-KVMSssK`eP-Yz-)s!7mWRo^tuE1hf> zu=ptYT{HQH(JO0Gv#cquQMT=x)GRQ?nyT0RKyS9snwsIavu(fa&9nnfhPHn3;Pvi5 zdQ(BkxIzzore;1u-EVs}u6=U5POf$xyLRjxNm%?{iPAF}H@D6&ITCsP&KpXa&-F+< z-}zhzf_XF&{akli@pw%5=auK`46}=D|6phPxc$~Bo42Gl-9OhZihLP98#|JLcr*MQ z?0l9n`hmVW!_RcM$t(@@4)yYYN_4%eNqw;Lm+@k0wJx|lj|MTC^Z1`=L*Uipn(iW~BR@n^a z@^skY{j1Ze47J$}(UIA~xkY^9yx~%7eu$5L*Q4{568>yWa$U`2G-;VJGb?7yk@&R@ zOC(1>>U3hJ&!3lL7wB7G{Hed3>v!=~^jn|w;K&k@n>Un-sbxO)wzm&o_UX|Digq+| z>%(13B>3$DHg{%j@yBrQV;%Y8pMR|P*o@rb_pxit$RRE-(;sxPQtqPZLFeKY!pv2FEKkH^+{d7mBBIy$p5e`B3C>B&R&*&oKN`lAif zVOMb(zF;1vj|Vsd+Gt(FcW*4>eZU9b_L!e?k+P2ujj60HMe*s*zXYz1Z``y$;vZ$Z~A z+n;57FaL50x{B|FzuEoQ;68aCO8tNTc;W1r-!6(d0}Wr;lNg$5`)Bdq<7Am1BctZ9 zO$sh&|NCdmf8HE&j+f~F{p^?m=HB-5pZ}}&*6IELyY)(eG+%y^{u=hL-!o$hvi-a` zBS|kbj%ns9;$|< zzg?)`IzhfQfk?X-TgFxx`LAC)6JOdDKjg}rEL?v7+Q|0()ndw|dV~B%35E|ISX?vR z&yq5&{6)#xNY2TO3_AF6OgR0O#c@~O(~)hjRF3I1k+;721{J@lqdSyYXFmA_&8)e` zoufj2wO@G&gGt&L=A0^sP@+Z|yN0 z6ZT2;i|-Bcqn7>ZwC8yzzsvw%X6_JvA-(g?2>n88{_dTTeeZ^2El6t8}_I}v0Oeih-y1S|)(ORNEkX-KR{4OihuLGvR8pvNnieIGW z=Te@{8!`HWNxzra#r$<>E_0^wI6s#3ng}x4(eKce-%pp@i}mJ28h_y`lfdh4RuL}( OS1zODH$(R`&;36j5gHo+ delta 17178 zcmZA82Yim#|Nrqjg9x!V3AYhj?3J3SJz`VT2#F*_LWWh`_Acd8vo&f{id!jKdsnU6 zHHw;5wA#}Bd%bgx@89EpJs#)#Jm+)Hb*{6nEBCkket-Mh@7HhrJU4Usf9T@6@9S~} zW9$4b*DXJnYgCw`F4wDiE>|}E19M}h`o>_~O}R2Q#vief$_;3P$yf>B!yw#@5%jI!hBBL988oFF%Ff-=BYN&W)^v5=~+yPbJ0|PJtOJOQ9M%NN7f>%)weuWx% z21Zu`3!?g~he15w6+tFDfwou(dt+f7iFt6ojc>H&qo{#>hXwEl%!vP>R?0uZ+@BjY zkV;q-Bdv+36_|zDdA@4}8I5o&vihzgw!sZ7P5C({Vu82K%%@-z$_r5gyos#7>ji2c zRoRc4SO+zs!KnBQEQWJYE4Up!8p#ndS@8;H!275ho?u>lfm-T7o~k9yiK;JxTDefn zi8W9w&A*xc)tnjucdx$8)j_ka%G_$j@rwnsDVwyj5rrF;3Cw6 zmZ7#_GipnYSb^MCS@2*{bWls}Mcsb|wUxIq3%TlTc@1G&aMP$o9H^L>A9gqn#PZIMmiHL=9*?YK6YCUcvO& z8MQ)z?HRNh<{_g8l|g+EYN9?YEl`J~7ivplY3d+j~eiwsQdgn zn>`N1Aj)}BpWNc8c8yW}wLxvcyB^yh7JUg!Lmjf2s1E0&X8w^aZ%1v(ZuG$es6%zg z#?PQSzJ#1F*KO2;D|az}L+W5n%Ii>P$#aWL1u~_(ni+P&I+Wv3BmD%m$6HYY+JWlu zOVkXHpqBPLYGp#+F`wKf=%zdp^<7wk@8T}3i}|{xA6k#ABbjOh2B4OFDW=Z|HGngi z18<`C_!-tgA2v{D!D`e6xBg1RL5OW4~|9+Fd4Pv<81v*TfYc3fVG$lccR*##EN(o%j*3PU|sTI71Z7~ zN1cJTsMn+$=Eo5jjC0V9n^6xqgH7-j*1*u7rd~ zfaNKNqGs40HL%{Oc0;iMjztZ05vtvC)Y;gKdeC-Te*m@Q$5G#p8>p4Khgy;6y;y(U z=-1m+1Y%vvc~B2%k2-AcpgM>`ZACn4Ytm2y7>RoDRMbE}wB==}GxaIzzH_MiZlDHo zr?^gZUqC#b{g+t0KMLB-3X zUdu){9*oL^8 zo}&8u1NGpb{$@bIsQQYS{`i`Pg7P%!u1j ze z8E9ctN3~ENo(R;yhuipKRQuJav#=SpQu|Q-A05E^ugrM@TJoEyCHxh2L#Bb|3sw*{ z(>kaQnxopcMQvFO2I43zg_AJ@ZbIGXMV#rqyLckw?wH1F@{do7P z6VHn3FapyDfT5JzVns~D3b+zge-^c+mr?ycxA9jPMEO6|RtI?onM@hfQZ+{HQ5)1q z2U{ngoAP|r19qZTU@z*g-v!hec#7pw|AkTY6;OvY0&8L_YCs#U9xoX^cn@a5!>AFS z#WHvU^%`bO;#UtAMs;u$wPL4HEAuU?pR0Hf?_e;l9&BFUgQ)UtjKF`9x60#cG{hXD z_fP|vjM;E5>cJ~e58Q#-aW85GPNUjgwDBKM?S8fXjT(@DvT2tUb+&>r2Uf;RJm1yG zR`1vjYM^sb1KExGPW*~Gh;){jjd2i+Z(guVANKP zLES$IHNl0pd~i7HufJLs31}~$qXzIFYOk}5Ff%HQzLeiab<`BqaW~Wi`e05Rgc^tk z)t`f!=_jcEK1H30FH!d&8NvGN(44XjE}-`E2h<^8A!-LUZo zsDVC5b^JFj#GujUZCH(kC|^fC=Oy~-{m(eY%p^1Br=mJm#MW3IM`8oP9x^&)gQl6oG7|Or&B7hH5}RQ6>FgseM-A)|>W|4UsQatWFb{5o`XIH&8rT;D zaUs^kPf!!Mit5Mnn2bM}7dG$;H2|NPra?X|O}QvG!)90xXJZiVMm_KtR>m8s{<6Jq zRwy^>EeJ)eP#x5Fpd%L5`=3ar6oFZ&J^mau;$x_#JBJzZDQaN9q1tDjWgb`sLn!yf z3OE+^fK8|eAGhV}$OBz3QD-dwY^^N&Ux~~D0%@oRWc|SWd@hb^I0RecG}J&YVI90- z>+{bs1FnQ&#Ot6Q9A_PcI&>eP&elp)KkKmo&v$LHffJaM@>vYPJGT57wZwm;mN3^` zbE+#~E6TM|hjSwK#&xLIEt6wr9E2Kh1q{Oe*b7t8qZywkqa}ZU8sX2VQ~eUPWC8Qc z;VO;lpen{;160TBP_Nq^%z^)67R>&kIWvV(hqoVUz@MU?_v%B|zZMza`R0aj%u2Z_ zYNnmAGA5!1whZgF4N>p=Mruu_>294XiV2D?F%y&qOyau;njMGd_emOBYaEbRD&F zudJT`Y(>T;=0|36>_>whSP1u_Zn%b8`rD`nyFN01j)P9@mMFO^4qi0oV6f1s`K51}`-?Mxai4A1s3tQSCROR&FP1U}v!o-au_t z{$=Ka6pC8kDOW{(8JlBG z`~bD|$51PH1w-%!R>qv4n6nar>Hqvck&N~zO#vK@#c(2OZ`Yt^wiPvyy;u-0qn7$- zYv4-r78FCBq57y5=#Sc(RLq7`Q3GFq9v!|-WP))QYKbnP2JjGjVCGe35Bpn3pquzi ztc#m48Xsc>wq4C{eVmK6vA`NL^Y)m5@_5wSGIb5>uNiJ9przf1dhjKzfUi&k3|(t( ztb$spTBw;cKsQFBW}0Ljjp}y>7RLGLhuctRW(Q`({cG8OE#)x+{&*WT!u#lpPf#5_ zv-N+XI`|LcF>sw3ND7{(JRTcj=k?}C=6tM9`6+4(N^CG+z*?yC1P_@2G7B&hF2l^Y z4z(3td>fCTRwi(x>99N&rQ8Qg;8=VgSE06~>Zj%{NkWwuVklljt<+zr!|4g!WDZeD z)Zwa&+Oy865zfNm_z7x2M^H;i&Ar43@po`HK(^H>b_~11Gi#RJczY0aGN>2jW8$W zHW-e*QCqhdtMh!7wIf$u`S zwueynpFqAvt|!{pLa0QROhygX&@ccEB#!9rNQ>)XYy{S-ggtx&HyPB{{Js<&vlY_CT$`APn`8 znMlTs8&EfXjb-qPE&Ciar#KtdCEf=$vyZK7Fc0O=Py;-S8u%&eH7rE=A!;T34w-?3 zpvO(15}9Jy4s|$^QA;)2x&*bSyHIE02x_3eVs7*~Y|432Gb@gI3+kZyYmHjruBgKp zWgT*u_dk-rINRVX>dSNutKw~}gn5pb*QYUR=0mYCdQcrNLCt(MYAZIOCbZX4AsGTRL6HP z3%Z2RGpuPjcumaC_eL$uhfv>PEKE!62>l^z|K2Y)HsQ5`6 z&vn|Ik$12>@fp|vccS+8C8iJL4F4>Ua&@ePb5UD+5F6|7{{u1+1S*_0hb9TNG;>g| z+bT@K+gJ}fpEF-Z2lYN*!A|%XCt-v0W(AL+R_rutKv!+~C1#-P`z>dR=eshIQG+t5 z!_gEq@*Wt7BT?_|M9hUtQHORb`r~ob(tm?tc-NM5T`)hp%b@!0hS@O@^>&OwPZcuD z$*80AsJ*(3dhj#Mjenp9koBVZhf1YUOV|^$;dso0b1*Be!64jj%LgzoA%xm*5W}zHy9gKRb|?EmHGwsmIZjO@*{vu4%CC%qh{I*wFP5PD>BtO54DHO@g#1+xADDe=6kRYRsRru z@fB*Oe_&AI z`i-cWeTV(=IWEVpx7afJd4(e>=e%v|XCf2!xL%Oah+TKgQsqD`eF?0Lk*K}%ptfKF zR>bMH{tMI@c!V|ZKh#WX+%;R%4)wZ4q3(}G9ri@5sP{jGOhW=Itaq>)pF3s=c-ElDfz=BU7PVV$)9wa z^fvWXNZ%`Fn&|xV1B1X`(k?28;z?Uski4$mn2~gvd{yj@+3)L1CP5v(Nqog;l z4U~5hm}BFcY5$76&VuKG4JKn#oA;$bRolZXEJiwM>lA*EG=MfbY<-AF;VnEwsz!Vl z`9-AH*IZxb|1N=pM6zHwjXppf9$l|UpOC8An>^G{CuJm7lGp)k zL3s@78f0+Ir0x*$b(EWvHjr;<`?y42mk$0;U#&maID$KDgB`ZPaN=W#y})AlA!!vU zkn%^QjU-(~iSf#(|LdB8e~j%+@NoF17fSlmm>cu`A=;}H?SpXvf5x@8}E)2Xs7E8bt6f-3R(3Vp&o7K z`tbaQWO7sS2}z$*UGI=@OZ+|3r{rtmRN^PG66LZOPq_~Hx+MMm=tE4`D60?Z@5E2( zQS)7KY+j^spPfIy{V43C_$#RgsXaIM!Pi#}%JH~yh|n5y=N2U3FH?O^L)d9oF))Y(kFBo6=Aj^Mb|X)bv+-B_)!&5ZjEy@B->;N?Jg>Q6&Ard40_w6G*$ywf@_wTtPwCTJlRseMzscS=1%H zF5oiC?@@p3jW*+Ky?(&x8bnBmVcY(lC>DnZh<#`-l5;od!@uB2efTS#BM*`MCOj|n~|O(x%n zl%@uhb=||kHm`DK@~f%WpJ9INx&~0*_GX8~t`dtOeL*Tk*+u;jc+0k1h=oZ1Q16*X zMGzVNSuJWCEXVtl`;m0rq1=wtk9I9g$n`bld!*T<&Ng<-8beIiAe@NV@j2GQ`lM~D zG?(Vj9|lsM^c+7lt;cA%!sb`-U|sb|oo!y_&&W5W-3O%clpB(+kk{4Ckp4eHsbTNw zMeG++Ez194K7IeA$;>8wMmk2)l}IO*NHxj#z}BQfYk$M`MjOHvB) zDX1%iy1z*kOwl!r{5#~Ip!$A`d=A=9CBN0)a}BqUl1QHJRGgyGS_Q0#C}6vKVuZ-45Wi3T@`Tz@y>YLgj~z4;xB#wbv3g$C_kEfge}*j zyq^wAQvQ(i2l+*6#5IEQzm)T11db!kC*KvTQGXwGZ724p&EF?K*o0k0(qrcN>7j3^ z^e25!DZw`SiAEENO(W?FAeALOCiNxhT1T5AwqE5Yqy%E`5Yvy_DI~Y8&x)m~OCvUn zv{lcaMw(|EjHhx2`Qdnqr0YY{BvK1o{#Ze-r=;D)&XIa?&qjPfx2qS`DeEdm zJ|iiV^bN6pi1}jr{M(bsNrkRCqy?n4q;kZHU?=Jy;1yC8QUdWdc!78v{z=kR#`Y0P zehX=;EvxSJwbaIr8u{P<(}}K3hX4I%!8dNcO};-h3jJnVT(b9_pgfR@v)Bp0wegNt z+dTc>2Nb6M5P=`mQToOFN80Q_{L{{Kg=vlMiNkt!3+Px_a9D!#sY(q=#DCV?`fKwCGT z{CVQBwmgRX@5FLrGUg(F7)Ovg5ZjCMiR~u8l9ayxLkR4rLRWi(YZI{^BwdM^-RApS z6|X}Fudj3DXHw`uI%3eOiOb{KOJE6U4(at(!REgpF#e5r zZpw2>>7&LU=x{aZAnBBC*M)pG>XxFe=5O4;mDn$&6kGSdo>rT-u05FfjT;V=uSw$p z#7EmUVh^$Y)J-6@qqsSE&*TV=;{G=({@{>rMl6~} z`N&r!wWh4A6X_G%(c8p(Q}(0W1@qc?Uh?NiKaU zqIXH-PQK2ork{GZG@I?`?cS=UPe{9jn5dK(cS2IEJ3i5!n&eI!oRAb1?d~6+5R>9; zY5kdZXqySXPPKN=oW|{cbozAgIwd>iak_VG@Rvs@sI5eo?9MNr~Z3mY(7Hl2cOMkx_$U!d*?1p+#c9 zgtX`w=cAsLotr%iIW>9>_wMcWgO7JhpX|QQxxTSZy?&LvL;Dr-$&h}RcV2XEA8+aY zp}tORTq9>oT%s_&T+d1~_MvuH+ruJU%uqft2cM7dN%UM0LcCmH|X|ZO#{@-e`bed^OO!Cl}Wbeh1_53o9NK6`>67SR<^OkqX zn1O!YQsc||IGZMfdf%T=(8t+1G1v*2^nr75QZpyV4GxTNIfM3a(7c%4-PeZ0liwDxgUu08EcSy$Zoc3m6i zt@Yu~)b&3(&W1wXlN&<(ym>db_wxz&_TC!go5UyfjY&<7Npu$OV83@1bV~0`^={nR$|s;v-~LGnu`y1-uJAYVq0X>f75-P= zzANH?`GDPN-s!u0_&R@lIo28TRYULbubTM;Mn?6E)8oRuMfY{~@&3I3H(%$ULut;a z!~L8Who?rwuycK565?a}#>d8_xceu^#6!ENl$2pf$*FFw3u8=8j!#WZ85otE8pErR z;_ezhFviUe42wyO_I`MzoR9bV(NVtM;U{+cItxxsak_rXiS$}^fulKz(S$&*e&OY$oKUdb*3AwP#d30f(|Dc$JXz%cg9F0Ynrg-aI{?4ax zVswnV$spb-cSKAg^Gc5I7nd3zo0b?G?&Q2W!#RBQh4buMz4{EeKh?~mds<3V>d3*# zNwK_IgWPF@+>N7BnPH+kDy_de8at++Ppf z;0(SM=G}AaM?deeyHk9;3HRpsI9VT*b0$6b%IWzq-Z}d)k`wEGG?Q&#_Gr1U6ZzzT zQ{<=N-W5Mp^YLDNT0Ow2^?OLJ-i$0IH6|f}A;%=9pU+vpy91oMe+D|I{#pNj=XP{D diff --git a/locale/de/LC_MESSAGES/phpwiki.php b/locale/de/LC_MESSAGES/phpwiki.php index 61764e6c7..9687d7901 100644 --- a/locale/de/LC_MESSAGES/phpwiki.php +++ b/locale/de/LC_MESSAGES/phpwiki.php @@ -34,6 +34,8 @@ $locale["%s at %s"] = "%s um %s"; $locale["%s b"] = "%s B"; +$locale["%s by %s"] = + "%s von %s"; $locale["%s bytes"] = "%s Bytes"; $locale["%s bytes written"] = @@ -46,6 +48,8 @@ $locale["%s does not know about the language '%s', using 'en' instead."] = "%s weißt nichts von die Sprache »%s«, stattdessen wird 'en' angewendet."; $locale["%s is disallowed on this wiki."] = "»%s« ist auf diesem Wiki nicht zugelassen."; +$locale["%s is empty"] = + "%s ist leer"; $locale["%s is empty."] = "%s ist leer."; $locale["%s is not writable."] = @@ -114,6 +118,8 @@ $locale["(formatted for backing up)"] = "(formatiert zum Backup)"; $locale["(hist)"] = "(protok.)"; +$locale["(max. recursion level: %d)"] = + "(max. Rekursionstiefe: %d)"; $locale["- saved to database as version %d"] = "- in der Datenbank gespeichert als Version %d."; $locale["... copied to %s"] = @@ -146,8 +152,8 @@ $locale["A plugin to provide for raw HTML within wiki pages."] = "Einer Zusatzprogramm der reine HTML-Befehle im Wiki-Seiten abrufbar stellt."; $locale["A required argument '%s' is missing."] = "Erforderliches Argument »%s« fehlt."; -$locale["ACCESS DENIED: Please log in to upload files"] = - "DATEIZUGRIFF VERWEIGERT: Bitte melden Sie sich erst an als Administrator um Dateien hochzuladen"; +$locale["ACCESS DENIED: You must log in to upload files."] = + "DATEIZUGRIFF VERWEIGERT: Bitte melden Sie sich erst an um Dateien hochzuladen"; $locale["ACL"] = "ACL"; $locale["AUTH_GROUP_FILE not defined"] = @@ -160,6 +166,10 @@ $locale["Add %s hours to the server's local time when reporting times."] = "Addieren Sie %s Stunden zur lokalen Serverzeit, bei jeder Zeitanzeige (z.B. NeuesteÄnderungen)"; $locale["Add a Comment"] = "Kommentar hinzufügen"; +$locale["AddComment"] = + "NeuerKommentar"; +$locale["AddingPages"] = + "SeitenErzeugen"; $locale["Adjust"] = "Justieren"; $locale["Admin"] = @@ -207,7 +217,11 @@ $locale["Author will be logged as %s."] = $locale["Author:"] = "Autor:"; $locale["AuthorHistory"] = - "AuthorHistory"; + "AutorenProtokoll"; +$locale["AuthorHistoryPlugin"] = + "AutorenProtokollPlugin"; +$locale["Automatically link headers at the top"] = + "Verlinke Überschriften mit Inhaltsverzeichnis"; $locale["Available plugins"] = "Verfügbare Einschubprogramme"; $locale["BAD URL -- remove all of <, >, \""] = @@ -236,6 +250,10 @@ $locale["Calendar"] = "Kalender"; $locale["CalendarList"] = "KalenderListe"; +$locale["CalendarListPlugin"] = + "KalenderListePlugin"; +$locale["CalendarPlugin"] = + "KalenderPlugin"; $locale["Can't inflate data: zlib support not enabled in this PHP"] = "Kann Daten nicht dekomprimieren: Die zlib Bibiliothek wurde in PHP nicht installiert/aktiviert."; $locale["Can't mix '%s' with '%s' type format strings"] = @@ -250,6 +268,12 @@ $locale["Cannot create directory '%s'"] = "Das Verzeichnis »%s« kann nicht erzeugt werden"; $locale["Cannot open AUTH_GROUP_FILE %s"] = "Kann AUTH_GROUP_FILE %s nicht öffnen"; +$locale["CategoryCategory"] = + "KategorieKategorie"; +$locale["CategoryGroup"] = + "KategorieGruppen"; +$locale["CategoryHomePages"] = + "KategorieHomepage"; $locale["CategoryHomepage"] = "KategorieHomepage"; $locale["Change Password"] = @@ -266,8 +290,14 @@ $locale["Chmod"] = "Chmod"; $locale["Click to de-/select all pages"] = "Klicken Sie um alle/keine Seiten auszuwählen"; +$locale["Click to display"] = + "Klicken um anzuzeigen"; $locale["Click to reverse sort order"] = "Klicken Sie um die Reihenfolge umzudrehen"; +$locale["Click to sort"] = + "Klicken Sie zu sortieren"; +$locale["Click to sort by %s"] = + "Sortiere nach %s"; $locale["Columns: %s."] = "Spalten: %s."; $locale["Comment"] = @@ -276,6 +306,10 @@ $locale["Comment modified on %s by %s"] = "Kommentare am %s geändert von %s"; $locale["Comment:"] = "Kommentar:"; +$locale["CommentPlugin"] = + "KommentarPlugin"; +$locale["Comments"] = + "Kommentare"; $locale["Comments on %s:"] = "Kommentar zu %s:"; $locale["Complete."] = @@ -286,6 +320,8 @@ $locale["Content"] = "Inhalt"; $locale["Contents"] = "Inhalt"; +$locale["ContributedTranslations"] = + "MeineÜbersetzungen"; $locale["Control characters not allowed"] = "Steuerzeichen nicht erlaubt"; $locale["Convert text into a png image using GD."] = @@ -296,10 +332,16 @@ $locale["Couldn't setacl page '%s'."] = "Kann ACL »%s« nicht setzen"; $locale["Count"] = "Anzahl"; +$locale["Create a Wiki page."] = + "Erzeuge eine neue Wiki Seite."; $locale["Create a new (sub)page"] = "Erzeuge eine neue (Unter)Seite"; $locale["Create: %s"] = "Erzeugen: %s"; +$locale["CreatePage"] = + "NeueSeite"; +$locale["CreateToc"] = + "InhaltsVerzeichnis"; $locale["Created directory '%s' for the page dump..."] = "Ein Verzeichnis »%s« wurde erzeugt, um die Dateien abzulegen..."; $locale["Creating pages"] = @@ -344,6 +386,10 @@ $locale["Dialog"] = "Dialogfenster"; $locale["Diff"] = "Diff"; +$locale["Diff previous Author"] = + "Diff zu vorigem Autor"; +$locale["Diff previous Revision"] = + "Diff zu voriger Version"; $locale["Diff: %s"] = "Vergleich von: %s"; $locale["Differences between %s and %s of %s."] = @@ -382,8 +428,6 @@ $locale["Dumping serial pages"] = "Die Speicherung von Wiki Seiten als Dateien"; $locale["E-Mail"] = "E-Mail"; -$locale["E-Mail:"] = - "E-Mail:"; $locale["E-mail"] = "E-Mail"; $locale["Easy navigation buttons for %s"] = @@ -408,6 +452,8 @@ $locale["Edit: %s"] = "Bearbeite: %s"; $locale["EditMetaData"] = "MetaDatenBearbeiten"; +$locale["EditMetaDataPlugin"] = + "MetaDatenBearbeitenPlugin"; $locale["EditText"] = "TextBearbeiten"; $locale["Editing pages"] = @@ -446,28 +492,38 @@ $locale["Existing page-level metadata for %s:"] = "Zugewiesenen Seiten-nähe Meta-Daten für %s:"; $locale["ExternalSearch"] = "FremdSuche"; +$locale["ExternalSearchPlugin"] = + "FremdSuchePlugin"; $locale["Fatal PhpWiki Error"] = "Fataler PhpWiki Fehler"; -$locale["File successfully uploaded to location:"] = - "Datei erfolgreich hochgeladen zu:"; +$locale["File successfully uploaded."] = + "Datei erfolgreich hochgeladen."; $locale["Files with extension %s are not allowed"] = "Dateien mit der Endung %s sind nicht erlaubt"; $locale["FindPage"] = "SeiteFinden"; $locale["First"] = "Erste"; -$locale["First Name:"] = - "Vorname"; +$locale["Fixed album location is not allowed."] = + "PhotoAlbum URL nicht erlaubt"; $locale["FrameInclude"] = "FrameEinbetten"; +$locale["FrameIncludePlugin"] = + "FrameEinbettenPlugin"; +$locale["From english to %s: "] = + "Von Englisch nach %s:"; $locale["Full text search results for '%s'"] = "Volltext-Suchresultate nach »%s«"; $locale["FullDump"] = "VollSicherung"; +$locale["FullRecentChanges"] = + "AlleNeuesteÄnderungen"; $locale["FullTextSearch"] = "VolltextSuche"; $locale["FuzzyPages"] = "FuzzySuche"; +$locale["Get an email notification at changes of the following pages:"] = + "E-Mail Nachricht bei Änderung folgender Seiten:"; $locale["Get debugging information for %s."] = "Debug-Informationen von %s."; $locale["Go"] = @@ -490,6 +546,8 @@ $locale["Height"] = "Höhe"; $locale["HelloWorld"] = "HalloWelt"; +$locale["HelloWorldPlugin"] = + "HalloWeltPlugin"; $locale["Here you can override site-specific default values. Currently not recommended!"] = "Hier können Sie einige Benutzerfestwerte überwinden. Wird noch nicht empholen dass diese geändert würden!"; $locale["Hide %s:"] = @@ -497,15 +555,15 @@ $locale["Hide %s:"] = $locale["Hide or show LinkIcons (if supported by the current theme). Useful for text-only browsers or slow connections."] = "LinkIcons ausblenden oder einblenden (unter Voraussetzung daß es mit dem ausgewählter Darstellung unterstützt wurde). Werde wertvoll sein für die die mit Text-only browsers anschauen oder langsamer Konnexionen."; $locale["History of all major and minor edits by %s to page %s."] = - "Abfolge aller großen und kleinen Änderungen von %s der Seite %s."; + "Verlaufsprotokoll aller großen und kleinen Änderungen von %s der Seite %s."; $locale["History of all major and minor modifications for any page edited by %s."] = - "Abfolge aller großen und kleinen Änderungen aller Seiten, die von %s bearbeitet wurden."; + "Verlaufsprotokoll aller großen und kleinen Änderungen aller Seiten, die von %s bearbeitet wurden."; $locale["History of all major edits by %s to page %s."] = - "Abfolge aller großen Änderungen von %s der Seite %s."; + "Verlaufsprotokoll aller großen Änderungen von %s der Seite %s."; $locale["History of changes."] = "Änderungsprotokoll."; $locale["History of major modifications for any page edited by %s."] = - "Abfolge aller großen Änderungen aller Seiten, die von %s bearbeitet wurden."; + "Verlaufsprotokoll aller großen Änderungen aller Seiten, die von %s bearbeitet wurden."; $locale["Hit statistics"] = "Treffer Statistiken"; $locale["Hits"] = @@ -514,6 +572,8 @@ $locale["Hits:"] = "Treffer:"; $locale["HomePage"] = "StartSeite"; +$locale["HomePageAlias"] = + "HomePageAlias"; $locale["HowToUseWiki"] = "WieManWikiBenutzt"; $locale["I'm just doing minor edits. Please divert the usual logging to %s instead."] = @@ -538,6 +598,8 @@ $locale["Include text from another wiki page."] = "Text von einer andere Seite einfügen."; $locale["IncludePage"] = "SeiteEinfügen"; +$locale["IncludePagePlugin"] = + "SeiteEinfügenPlugin"; $locale["IncludeSiteMap"] = "SeitenÜbersichtEingebettet"; $locale["Included from %s"] = @@ -546,10 +608,14 @@ $locale["Included from %s:"] = "Eingefügter Text von %s:"; $locale["Includes the content of all SubPages of the current page."] = "Enthält den Inhalt alle UnterSeiten der aktuellen Seite."; +$locale["Info"] = + "Info"; $locale["Inline images"] = "Eingebundene Bilder"; $locale["Insufficient permissions."] = "Keine ausreichenden Zugangsrechte."; +$locale["InterWiki"] = + "InterWiki"; $locale["InterWiki Address"] = "InterWiki-Adresse"; $locale["InterWikiMap"] = @@ -580,8 +646,8 @@ $locale["Last Modified"] = "Zuletzt geändert"; $locale["Last Modified:"] = "Zuletzt Geändert:"; -$locale["Last Name:"] = - "Nachname:"; +$locale["Last Post"] = + "Letzte Nachricht"; $locale["Last Summary"] = "Letzte Zusammenfassung"; $locale["Last Summary:"] = @@ -606,6 +672,8 @@ $locale["Line does not begin with a '|'."] = "Zeile beginnt nicht mit '|'."; $locale["List PageHistory for %s"] = "Das Änderungsprotokoll für %s auflisten"; +$locale["List all page revisions edited by one user with diff links, or show a PageHistory-like list of a single page for only one user."] = + "Liste aller Versionen eines Autors mit Diff-Links, oder eine SeitenProtokoll-ähnliche Liste einer Seite nur für einen Autor."; $locale["List all pages in this wiki."] = "Alle Seiten in diesem Wiki auflisten."; $locale["List all pages which link to %s."] = @@ -648,6 +716,8 @@ $locale["Login"] = "Anmelden"; $locale["MIME file %s"] = "MIME-Datei %s"; +$locale["Make use of the Google API"] = + "Benutze die Google API"; $locale["Markup"] = "Quelltext"; $locale["Markup cache purged!"] = @@ -658,12 +728,16 @@ $locale["Merge Edit"] = "Zusammenfügen Bearbeiten"; $locale["Merge and Edit: %s"] = "Zusammenfügen und Bearbeiten: %s"; +$locale["Message"] = + "Nachricht"; $locale["Minor"] = "kleinere"; $locale["Minor Edit"] = "Kleinere Änderung"; $locale["Miscellaneous utility functions of use to the administrator."] = "Verschiedene Dienstfunktionen, die für den Administrator nützlich sind."; +$locale["Missing %s for %s"] = + "Fehlender %s für %s"; $locale["Modern"] = "Modern"; $locale["Modified"] = @@ -683,7 +757,7 @@ $locale["New page."] = $locale["New password"] = "Neues Passwort"; $locale["New users may use an empty password."] = - "Neue Benutzer können ein beliebiges freies Passwort als Eintrittskarte ins Wike verwenden."; + "Neue Benutzer können auch ohne Passwort einloggen."; $locale["Newer page:"] = "Neuere Seite:"; $locale["Next"] = @@ -704,6 +778,8 @@ $locale["No other page links to %s yet."] = "Noch keine Seiten sind mit %s verlinkt."; $locale["No page links to %s."] = "Keine Seiten sind mit %s verlinkt."; +$locale["No page specified for %s"] = + "Keine Seite angegeben für %s"; $locale["No pagedata for %s"] = "Keine Daten für Seite %s"; $locale["No pages changed."] = @@ -734,6 +810,8 @@ $locale["Old UserPage %s without stored password updated with empty password. Se "Ihre alte persönliche HomePage %s ohne gespeichertem Passwort wurde mit einem leeren \nPassword gespeichert. Setzen Sie ein Passwort in Ihren BenutzerEinstellungen."; $locale["OldStyleTable"] = "TraditionellerStilTabelle"; +$locale["OldStyleTablePlugin"] = + "TraditionellerStilTabellePlugin"; $locale["OldTextFormattingRules"] = "AlteTextFormatierungsRegeln"; $locale["Older page:"] = @@ -786,6 +864,16 @@ $locale["PageGroup"] = "SeitenGruppe"; $locale["PageGroup for %s"] = "SeitenGruppe für »%s«"; +$locale["PageGroupTest"] = + "SeitenGruppeTest"; +$locale["PageGroupTestFour"] = + "SeitenGruppeTestVier"; +$locale["PageGroupTestOne"] = + "SeitenGruppeTestEins"; +$locale["PageGroupTestThree"] = + "SeitenGruppeTestDrei"; +$locale["PageGroupTestTwo"] = + "SeitenGruppeTestZwei"; $locale["PageHistory"] = "SeitenProtokoll"; $locale["PageHistory for %s"] = @@ -798,6 +886,10 @@ $locale["Pages in this wiki (%d total):"] = "Seiten in diesem Wiki (%d gesamt):"; $locale["Pages: %s"] = "Seiten: %s"; +$locale["Password cannot be changed."] = + "Passwort konnte nicht geändert werden."; +$locale["Password updated."] = + "Passwort geändert"; $locale["Password:"] = "Passwort:"; $locale["Perform searches on InterWiki sites listed in InterWikiMap."] = @@ -816,22 +908,42 @@ $locale["PgsrcTranslation"] = "PgsrcTranslation"; $locale["PhotoAlbum"] = "BilderAlbum"; +$locale["PhotoAlbumPlugin"] = + "BilderAlbumPlugin"; $locale["PhpHighlight"] = "PhpHighlight"; +$locale["PhpHighlightPlugin"] = + "PhpHighlightPlugin"; $locale["PhpWeather"] = "PhpWetter"; +$locale["PhpWeatherPlugin"] = + "PhpWetterPlugin"; $locale["PhpWiki engine version"] = "PhpWikitriebwerksversion"; $locale["PhpWikiAdministration"] = - "PhpWikiSystemVerwalten"; + "PhpWikiSystemverwalten"; +$locale["PhpWikiAdministration/Chmod"] = + "PhpWikiSystemverwalten/Chmod"; +$locale["PhpWikiAdministration/Remove"] = + "PhpWikiSystemverwalten/Löschen"; +$locale["PhpWikiAdministration/Rename"] = + "PhpWikiSystemverwalten/Umbenennen"; +$locale["PhpWikiAdministration/Replace"] = + "PhpWikiSystemverwalten/Ersetzen"; +$locale["PhpWikiDocumentation"] = + "PhpWikiDokumentation"; +$locale["PhpWikiPoll"] = + "PhpWikiUmfrage"; $locale["Please check it through before saving."] = "Bitte überprüfen Sie erst alles, bevor Sie es abspeichern."; $locale["Please contact your PhpWiki administrator for assistance."] = "Bitte bitten Sie Ihren PhpWiki Administrator um Unterstützung."; $locale["Please ensure that %s is writable, or redefine %s in index.php."] = "Bitte überprüfen Sie, daß %s änderbar ist, oder ändern Sie %s in index.php."; +$locale["Please set ENCRYPTED_PASSWD to false in index.php and probably change ADMIN_PASSWD."] = + "Sie haben vergessen ENCRYPTED_PASSWD auf true zu setzen. Bitte aktualisieren Sie /index.php und überprüfen sie auch ADMIN_PASSWD"; $locale["Please set ENCRYPTED_PASSWD to true in index.php."] = - "Sie haben vergessen ENCRYPTED_PASSWD auf true zu setzen. Bitte aktualisieren Sie /index.php"; + "Sie haben vergessen ENCRYPTED_PASSWD auf true in index.php zu setzen"; $locale["Please use one of the downloadable versions rather than copying and pasting from the above preview."] = "Verwenden Sie bitte eine der herunterladbaren Versionen als von der obigen Vorschau zu Kopieren und Einzufügen."; $locale["Plugin"] = @@ -844,6 +956,8 @@ $locale["PluginManager"] = "ZusatzprogrammManager"; $locale["Plugins"] = "Zusatzprogramme"; +$locale["Posted: %s"] = + "Gepostet: %s"; $locale["PreferencesInfo"] = "EinstellungenInfo"; $locale["PrevNext"] = @@ -884,6 +998,8 @@ $locale["Raw HTML"] = "Reine HTML-Befehle"; $locale["Raw HTML is disabled in this wiki."] = "HTML-Befehle sind in diesem Wiki ausser Kraft gesetzt."; +$locale["RawHtmlPlugin"] = + "RawHtmlPlugin"; $locale["RecentChanges"] = "NeuesteÄnderungen"; $locale["RecentEdits"] = @@ -898,14 +1014,14 @@ $locale["Redirect to an external url"] = "Weiterleitung zu einer externen Webseite"; $locale["RedirectTo"] = "WeiterLeiten"; +$locale["RedirectToPlugin"] = + "WeiterLeitenPlugin"; $locale["Redirects to an external web site based on form input"] = "Weiterleitung der Suche zu einer externen Webseite aufgrund einer Formulareingabe"; $locale["Redirects to another url or page."] = "Weiterleitung zu einer externen Webseite oder localer Seite."; $locale["References"] = "Fußnoten"; -$locale["Register"] = - "Anmelden"; $locale["Registered Users"] = "Angemeldete Benutzer"; $locale["Remove"] = @@ -932,6 +1048,8 @@ $locale["Rename selected pages."] = "Ausgewählte Seiten umbenennen"; $locale["Rename to"] = "Umbennen zu"; +$locale["Reply"] = + "Antwort"; $locale["Requires WikiAdmin privileges to edit."] = "Verlangt Administratorenrechte zur Bearbeitung"; $locale["Reset"] = @@ -944,6 +1062,8 @@ $locale["Revision Not Found"] = "Version nicht gefunden"; $locale["RichTable"] = "ErweiterteTabellen"; +$locale["RichTablePlugin"] = + "ErweiterteTabellenPlugin"; $locale["SandBox"] = "SandKasten"; $locale["Save"] = @@ -982,8 +1102,6 @@ $locale["Select: "] = "Auswahl: "; $locale["Selected page '%s' passed to '%s'."] = "Ausgewählte Seite »%s« an »%s« übergeben."; -$locale["Send Notification:"] = - "Sende Email Benachrichtigung:"; $locale["Serialized file %s"] = "Serialisierte Datei %s"; $locale["Set individual page permissions."] = @@ -994,6 +1112,8 @@ $locale["Show all changes for:"] = "Zeige alle Änderungen innerhalb von:"; $locale["Show and add blogs for %s"] = "Blogs für %s zeigen und hinzufügen"; +$locale["Show and add comments for %s"] = + "Kommentare für %s zeigen und hinzufügen"; $locale["Show changes for:"] = "Zeige Änderungen innerhalb von:"; $locale["Show extra page Info and statistics for %s."] = @@ -1004,6 +1124,8 @@ $locale["Show relative dates using 'Today' and 'Yesterday'"] = "Datum mit relativen Bezeichnungen, wie »Heute« und »Gestern«"; $locale["Show summary information of the current user sessions."] = "Zeige Überblick über alle aktuellen Benutzersessions"; +$locale["Show translations of various words or pages"] = + "Zeige Übersetzungen für verschiedene Wörter oder Seiten"; $locale["Sidebar"] = "Sidebar"; $locale["Sign In"] = @@ -1014,8 +1136,6 @@ $locale["Sign in as:"] = "Anmelden als:"; $locale["Signed Users"] = "Angemeldete Benutzer"; -$locale["Simple Plugin to load files up to server"] = - "Einfaches Zusatzprogramm um Dateien auf den Server hochzuladen"; $locale["Simple Sample Plugin"] = "Zusatzprogramm Minimalbeispiel"; $locale["Since you started the deletion process, someone has saved a new version of %s. Please check to make sure you still want to permanently remove the page from the database."] = @@ -1070,12 +1190,18 @@ $locale["Supported languages"] = "Unterstützte Sprachen"; $locale["Supported themes"] = "Untersützte Benutzeroberfläche"; +$locale["Switch to summary"] = + "Zur Übersicht wechseln"; $locale["Synopsis"] = "Übersicht"; +$locale["Table Of Contents"] = + "Inhaltsverzeichnis"; $locale["TextFormattingRules"] = "TextFormatierungsRegeln"; $locale["Thank you for editing %s."] = "Danke für das Bearbeiten von %s."; +$locale["Thanks for adding this translation!"] = + "Danke für diese Übersetzung!"; $locale["Thanks for participating!"] = "Danke für die Teilnahme!"; $locale["The %d least popular pages of this wiki:"] = @@ -1114,6 +1240,8 @@ $locale["The most recent %s during the past %s days are listed below."] = "Die jüngste %s innerhalb der letzten %s Tage sind unten aufgelistet."; $locale["The most recent %s during the past day are listed below."] = "Die jüngste %s innerhalb des letzten Tages sind unten aufgelistet."; +$locale["The result of this poll so far:"] = + "Aktuelle Ergebnisse der Umfrage:"; $locale["The session.save_path directory"] = "Das session.save_path Verzeichnis"; $locale["Theme"] = @@ -1128,6 +1256,8 @@ $locale["These pages share an initial or final title word with '%s'"] = "Diese Seiten teilen sich einen Wordteil am Anfang oder Ende mit »%s«"; $locale["This is a minor change."] = "Kleinere Änderung"; +$locale["This page already exists"] = + "Diese Seite existiert bereits"; $locale["This page has been locked by the administrator and cannot be edited."] = "Diese Seite wurde vom Systemadministrator gesperrt und kann nicht bearbeitet werden."; $locale["This page has been locked by the administrator so your changes can not be saved."] = @@ -1152,10 +1282,20 @@ $locale["Total of %d themes: "] = "%d Benutzeroberfläche gesamt: "; $locale["Transclude"] = "Einbetten"; +$locale["TranscludePlugin"] = + "EinbettenPlugin"; $locale["Transcluded from %s"] = "Eingebetteter Text von %s"; $locale["Transcluded page"] = "Eingebettete Seite"; +$locale["Translate"] = + "Übersetzen"; +$locale["Translate '%s' to '%s' in *%s*"] = + "Übersetze '%s' nach '%s' in *%s*"; +$locale["TranslateText"] = + "ÜbersetzeText"; +$locale["Translation Error!"] = + "Übersetzungsfehler!"; $locale["Type it again"] = "Bitte hier wiederholen"; $locale["Type: "] = @@ -1170,6 +1310,8 @@ $locale["Unexpected EOF in zip file"] = "Unerwartetes Dateiende (EOF-Fehler) in ZIP Datei"; $locale["UnfoldSubpages"] = "UnterseitenEntfalten"; +$locale["UnfoldSubpagesPlugin"] = + "UnterseitenEntfaltenPlugin"; $locale["Unlock Page"] = "Seite Freigeben"; $locale["Unlocking pages"] = @@ -1178,14 +1320,16 @@ $locale["Unsupported ACL access type %s ignored."] = "Nicht unterstützter ACL Zugiffsmodus %s ignoriert"; $locale["Up"] = "Oben"; +$locale["UpLoad"] = + "HochLaden"; $locale["Update Preferences"] = "Einstellungen Speichern"; $locale["Upload"] = "Hochladen"; $locale["Uploading %s"] = "%s wird hochgeladen"; -$locale["Uploading failed."] = - "Hochladen fehlgeschlagen."; +$locale["Uploading failed: "] = + "Hochladen fehlgeschlagen: "; $locale["Uploading zip dumps"] = "Das Hochladen vonr ZIP-Speicherauszüge in diesem Wiki"; $locale["Use old markup"] = @@ -1194,8 +1338,6 @@ $locale["User page"] = "Benutzer Seite"; $locale["User statistics"] = "Benutzer Statistiken"; -$locale["User-ID:"] = - "Benutzername:"; $locale["UserId"] = "Benutzername"; $locale["UserId:"] = @@ -1246,6 +1388,8 @@ $locale["Warning:"] = "Achtung:"; $locale["Warning: You are editing an old revision."] = "Achtung: Sie bearbeiten eine alte Version."; +$locale["Who Is Online"] = + "Wer ist Online"; $locale["WhoIsOnline"] = "WerIstOnline"; $locale["Width"] = @@ -1270,6 +1414,8 @@ $locale["WikiAdminUtils says:"] = "WikiAdminUtils sagt:"; $locale["WikiBlog"] = "WikiBlog"; +$locale["WikiBlogPlugin"] = + "WikiBlogPlugin"; $locale["WikiDB::renamePage() not yet implemented for this backend"] = "WikiDB::renamePage() für dieses Backend noch nicht implementiert"; $locale["WikiForm"] = @@ -1278,6 +1424,8 @@ $locale["WikiForm: %s: unknown action"] = "WikiForm: %s: unbekannte Aktion"; $locale["WikiForum"] = "WikiForum"; +$locale["WikiPlugin"] = + "WikiPlugin"; $locale["WikiPoll"] = "WikiUmfrage"; $locale["WikiWikiWeb"] = @@ -1288,6 +1436,8 @@ $locale["With external authentication all users which stored their Preferences. "Mit externer Authentifizierung aller Benutzer, die sich für dieses Wiki eingetragen haben. Ohne externer Authentifizierung aller Benutzer, die sich irgendwann (ab Version 1.3.4) einmal angemeldet haben."; $locale["With the current offset, this would be reported as %s."] = "Mit dem eingegebenen Zeit-Unterschied, würde die Zeit %s angezeigt."; +$locale["World"] = + "Welt"; $locale["Wrong password. Try again."] = "Falsches Password. Noch einmal eingeben."; $locale["XML-RPC access"] = @@ -1332,12 +1482,18 @@ $locale["Your home page has not been created yet so your preferences cannot not "Sie haben Ihre persönliche HomePage Seite noch nicht erstellt, deshalb können Ihre Einstellungen nicht gespeichert werden."; $locale["Your home page is locked so your preferences cannot not be saved."] = "Ihre persönliche HomePage Seite ist gesperrt, deshalb können Ihre Änderungen nicht gespeichert werden."; +$locale["Your translation is stored in %s"] = + "Deine Übersetzung ist in %s abgespeichert"; $locale["Your version"] = "Ihre Version"; $locale["[%d] See [%s]"] = "[%d] Siehe [%s]"; +$locale["_AuthInfo"] = + "AuthentifizierungsInfo"; $locale["_PreferencesInfo"] = "_EinstellungenInfo"; +$locale["_WikiTranslation"] = + "_WikiÜbersetzung"; $locale["access this wiki via XML-RPC"] = "um via XML-RPC auf dieses Wiki zuzugreifen"; $locale["argument '%s' not declared by plugin"] = @@ -1468,6 +1624,8 @@ $locale["unlock this page"] = "um diese Seite zu entsperren"; $locale["upload a zip dump"] = "um einen ZIP-Speicherauszug in dieses Wiki zu laden"; +$locale["uploaded %s"] = + "%s wurde hochgeladen"; $locale["use this plugin"] = "um diese Zusatzprogramme zu verwenden"; $locale["verify the current action"] = diff --git a/locale/es/LC_MESSAGES/phpwiki.mo b/locale/es/LC_MESSAGES/phpwiki.mo index d226e1bf904fe1e06cb9fba20c961539046356e0..2a4954edaa43adc16bb334e9377f3bd133c2caf4 100644 GIT binary patch delta 23 ecmX@Ae^h@%Hb0lKuA#Ytp{bRr#pY7}01g0JLT*kVF<_dTt>QvrV2(zRwl-q?M?Dk0B$P>hX4Qo diff --git a/locale/it/LC_MESSAGES/phpwiki.mo b/locale/it/LC_MESSAGES/phpwiki.mo index ef16d5cea237b8ddb37b4bcfe57d629107a48ad0..42e015752f653cb31d58bca572c259763c9b8ef1 100644 GIT binary patch delta 23 ecmdm_w@Giq6Fx3uT|;vPLsKhLi_P!&TsQz>5C>fV delta 23 ecmdm_w@Giq6Fx2@T|-j^BO@yl|;;q5>+4DJtvbfP{i!ppwakZE0Rg!#k#SAvhvl4tM}HTlZA1nb}6$ zDbvbIImfk3%cumzNF`GflQJ!LQx~_;GIPPotyTB?JM;29{;~7)`}o!AKl~zr$(R35&4< zuE6W?1#FF*jqf1$d#p-Ru@|FgP>1U9B(}x#*dBjHbr9CovRYvW)P%Yid!g>{ixD^! zHSrP1f7TR!gyVeF^+nj0@vX-ww4vf@R0pdA7c6TN>V|hw6Z!zvVI6AV6Q~_)M6EQm zo87K6s=q#{cKuQP3^wP(PzxA^5sYt*qo4t%p$5o97Hcg=ZCxp9C(2MAy=CevQ3KSW zCVmvv?hI4rJZk&X=aXM-x_oF75hg#`E)PRqp z9?crm{TopO?LfU7wdQ&~vPsrS)cwC0+r+T{+QP0e_KXIjIv9=Gq6w&hvygYvnuVI+ zY}5)0%=Klc2|tUv?*&vp>rgwn5w){B&Gkd5i64n!|Fx0^Dm1f;sJA$jAL_t?>NpX# zwF6KqOGkAu3N^tgrasryFF^I@LG5rUY6mu;9$^&*c1R7>QN6iv61Bp!rv3tIMORQa zgtA?_9);TSZm36;jGAZ~1}2CaXp}jhV6NYXdi!%wJK}Ls(8@fhnXW>0^a^U=GIRbq zYNA_>)u`$>Y45S_pr8&iO@kSzt#_eTxCqtp zQ|9_=R0pr42CBrsR^pwU*Q0i*M=$#w>4SR2Lr@bMgW9ny4Ab|2zp0pwv0Nw&T;OFw z4fGP~8E-~)RE6r`AZkTNP!nlHO}q&;&~N5EytjS56KbJ7jfvRBLq!?|4R9A~CDTzI z=b;|O64VZOP>*CKYK5i7)u;)rLruVsx__&w-(}oyuGgFMGf)GLMYW%bYBwv^W3Obsxln={ zXgO+yFQR6?!MFuAa0RNPTI9E@bp(U(2h@sx#6-M=T2Ne^J%N76hhYsweLa~T3Yuvi zYRigITeuwcvaLl8v>7$<4%7f2qwYJ5dPlxSt*`+#@pI<88ScaO=RvgLJRG@b1YP?qTNtla#K~^aS-ez=gz6-UI2IE=OL@t=~tLD6Qg1z!CsEH+@b}SXO zW5WXS{D)J}3P+vWid>Sd8>-twOcmhH77B&ObtJ{UOvlbQHCK?@{d{ z`r7qfP!mqV2*$UDQeaoC5#~ZZYJkPYM~zRK>t0lc8%+HcRo6?P2e(WLLC!%{+e+t--;%Zj{5F1F$|rkhAvb)53-xq8gyU{s{JXv0e?n*{abyK z?1|ron#fpGf0HnzYLsEEJ<)D25893Mr!G^>zL*;<48ZmUfFXQ&mOM13_) zsFyjkKi@odLJgRP>Ng!D@HXRE4+Ra7Wz0oQXn}Ewsb7ZLiDyv1AJ(HD*?XuRs73A2 zaa4cJ=DM~;kF*1--vrd>dLy<&&#e^nR*yx^+>M&?BiIg?qh|apYQS}<>u;h~v<>wx zRG=Q=G1R+o4%IF^+5RdbQ4@$pwd;-Sn8zAy7p#$}6->jx4xk2HVy>@5t>h)-7l-u@ zYGQS$c3+zFM$`(M%z5wt-UrUxV_Qr`^`C(ejBkyk5J|-ZY>yA%P3S@m;Kz7;8@19e zFcL2sLvFNJ+6h(P6?K1tslON1&x5EPn~!Q&ta^R_%P45eo;DXYqh?rT+=JT6gXX** z)!}jDH>fSWU~H9Qzq~Q1or*{GcPni40(hQp{8o<{Z4gc|1(s{hNVep;up|0+bK+6{UbW3eOk38)T-nEE?W z6UjuaV5T|GF%}w^q6T~t_0E){`q_w@SS6~TeW~of2Ks^uJ%Vpd!;pb?gJ|R*D^?#= zM;WLNCY$Rys09?FUap5t{R)id{5f;I67_D?8b3o#;FO1gCh!C5SzW^{iex*j-y z^Eg!f1k}nWqkbXHK>lf9Ek!-5wWtYiL;WWF1U2EasBtc#zOwMa_KtYsC}?JBs4W|g zTG43KGo6H*=?v5k%|>;&9Q7=pL$zOr+M!K&9oC@QeQwShQ2qRj8Yd(zaPG0fD5zl< z?2PfK2@N%lLftS0gOCjh{5@Zj(}Z~Gtp|v9PsgidOQ6IbWJa;nlqcaKQcuR|`{y^M z^)_iaW>ff%6p|$^m6%6{n)63-jwy@dq?|lS-XuB>+XQ}o#82&(j`xX|OePET{Xb2f zBG(@JY<3Yn+rDHf(V;D#9w^zr)&5BN0C||yl8Iyld5~OtyvIp3$s{SnMfARS^fEn5 z{y@GY{m6JSmi$JF$xS4k=>HLYiaOpUntaPqL*WDRA(>15Np##tUJR7@MZSS|0?p6oT1qJ%6Xp-d_k9Yn`ZWIy?wtROlz5q)Yp@@)ctN!dvG7P8sYeS@dT z4swB9CVp*U2!m|LzmR9h5b_x*BhL{Xx7t`6a3P5>=VCb7Nxmjuk=MyA5=C^Rk#I7D ztR@3UBbh)nzBP};lW$29`8W9&(eWSh5P5{O9D68CBil?x27XWOCCka_#N&aFUsUlKsO6x!0Tzru>pQ?}#HwHW_B>7UT2e z7xId!yWS}Ns`V#RXwVr0e=N-rg1t@oL`x<9Nd9ZiU%;cLybfE_$6Yvv3?jc09Y5Fv z{{C>#ly8=S{l|->N);TzbW(w%$rI%Fa#w4P_m6MEeo z6f@qP?<#h>t?_E$7?|%OP9+6$_Om_@SNg14+GAKE9h$A&EJ?-ZHDXHF9<6}dIrl+Kq*Tydj z@s8`a(A(Var*0J=`F#HG{Ga{28;P=dLwg0lU{j16gv4NlI g4&Mgf0bh;p)Bn5V?Y_M}AB(D7Usir6tl?|L=F!_q^|W&i7sQ;6tY; zdk;s3zGNujE@N85tlGv*q+TAOUSsZVYK*G)K!(giww({_(Vhbvz!zXExCBPRa@Y`l z4jaQGuok>zc@47OYh2Bofd;S<6QZCDc7kre)3w=jmP ziG)$G3)H+pP#ced3g`i-byJ`+I0J^l$Dvmf=TcFMUw|_3Ce#@QU=z3H z{2t2T^H3T170OP7md?7?Q1*L3-IZjh@mrznk7-H%$*!41hYZZNd>$&bOQ0Ou0A*+| zRO${wZG04RSIv1S2QNa+ziP+paUKS5ne)7EK6LCtRqWv4Tgo&Hc8-T{@Fv2ZxdfO5PTHrD%JLPcl21In{Q zP^miwwc$nEz6PUdhqQD0W1u!lfI8~|Pv zWOy#rg4ZmUK}}p~+iRgVDu;@23zXxPQ0u;ea^M)0<0qjq^b^#080ixmLfLH=P5$-1 zy6MoR>jhGk}8;rO8)1VxG%yI$LhOa=`Sq5D&02O%& zRA3ceD%x-xRK&ZXUY|2ik=E$oWF`VCQ_)bD>?SC~w?b`{24y${YF!r89hnAYe-=~# zb8Y*1sEm6TQBi~|?SwT@hSo!+ZmZ>9sEv<6ZFmuCUKLa%wPKuhJ*cyff^skhDl@$- z2SPbC9Cmkc{;5>-D>f(A8CVSYe4BTm9M}Riz6Zv`Q&6|LNk``llc1aSFsMK#TIN7G zQfS+AYeY22*ZXtFzN?2(_*`)VfZ# zzbDj@^|$Rip)xrZYF;k%YT=_)l#+Q+5iPP4RzpQx3bpWas0dC%t*f%*_2Qh&b$~M5 z*|w8lZQ6aIA|3>FcOHbg>{)T-UlGouqZTZNI)V~d2d;;5Xd9G+`(e-lsQ0}JYJ%}Os7-SQ2PSKjP`+VC8d;Y%>+m}O1e z)&>!lZJ;s`Z<%EKZ-&a)?NHy1du@LX)X`0c%7pi6DoWWBJE6=@*ba5}UqWs01JwI` z1=fQ#6CB4Qp&WKY^~XXv+!Jb}0d{-@R6wJk?!w)Wqx71oRCE~@Kp9#N!(g#(e+YHv zA3>#TkL7VF$1g)USihUIVNY zA{Y*J$;Q}$bQnWB$Bz4;F4-HFtDp?5huZiP7y=JKW$KV^AA<_;1k?xV4Ac?T@8ukc zH;#%t8wB+w90%p$G$_M!p?~XbYs~- zqZWhv*xxL(BXUBw|4XzDg=n=c&%;zS550xDqK2sYe@z~u&VJ@8^!sv}jskS@hJh;T zb!1=f|DA{|{kJ@3Ya`$%s0R8o`U%yxPTfykWg~LYr!zjQ4oU_p4%Ya)0E|L+p)~Y& z^f0QynqQ!I3=dt1DQE!Nid5dy!)}&N)ra)Ty^SuRS!g2qH=2evBbDL|?3p4|LjIJYLj5^(0lkL)geuT)XaQ3B2(3hw z=sR>PsxI$R@rGesr5tq**7(tZ{m?&cTTb>seNlJRA00rUtX&IVM=GT#5@n-LQ3^^x z|F8Ii*CbHC>9CM+_iee^o+;@QJ;}Zi%?mr`Ps=axWV^G{b0!w5(+u%UNH5GPaNB`` zNuF$`mNx&wx46Y^_3p|o$efUwkzSCQn-e(P;u}|^%>07PoQdxAtSq;z=6Cazwet9q zT0dMfIM=tT^~u2eHiKNg@7rd!@Qe>ma(9Z&@8r%e%*gQMPbkdFn%2!Xyj}V*_q5!? zJogk&UVd&)de#j-jrL@DG75e-?09CJv1GTcc*gryx7!q}pl;8ZkZV#WdE6DJlc#K&cDJlc#K&c%YiO!qWMpMxyxE6uKRW, Carsten Klapp " ", Helmer Pardun \n" "Language-Team: \n" @@ -20,156 +20,258 @@ msgstr "" "Date: 2001-01-12 16:10-0500\n" "From: \n" +#: ../lib/DB_Session.php:42 +#, c-format +msgid "" +"Your WikiDB DB backend '%s' cannot be used for DB_Session. Set " +"USE_DB_SESSION to false." +msgstr "" + #: ../lib/ErrorManager.php:172 #, c-format msgid "%s: error while handling error:" msgstr "" -#: ../lib/FileFinder.php:143 ../lib/loadsave.php:503 +#: ../lib/FileFinder.php:143 ../lib/loadsave.php:540 #, c-format msgid "%s: file not found" msgstr "%s: fichero no encontrado" -#: ../lib/PageList.php:71 +#: ../lib/Google.php:157 +#, c-format +msgid "" +"You must first obtain a license key at %s to be able to use the Google API." +msgstr "" + +#: ../lib/Google.php:159 +msgid "It's free however." +msgstr "" + +#: ../lib/PageList.php:92 #, fuzzy, c-format msgid "Sort by %s" msgstr "por %s" -#: ../lib/PageList.php:133 +#: ../lib/PageList.php:126 +msgid "Click to sort" +msgstr "" + +#: ../lib/PageList.php:131 +msgid "Click to reverse sort order" +msgstr "" + +#: ../lib/PageList.php:139 +#, fuzzy, c-format +msgid "Click to sort by %s" +msgstr "por %s" + +#: ../lib/PageList.php:212 msgid "Click to de-/select all pages" msgstr "" -#: ../lib/PageList.php:187 ../lib/PageList.php:484 +#: ../lib/PageList.php:267 ../lib/PageList.php:669 #, fuzzy msgid "Remove" msgstr "Borrar Página" -#: ../lib/PageList.php:211 ../lib/plugin/UnfoldSubpages.php:170 +#: ../lib/PageList.php:283 +msgid "This page already exists" +msgstr "" + +#: ../lib/PageList.php:297 ../lib/plugin/UnfoldSubpages.php:158 #, c-format msgid " ... first %d bytes" msgstr "" -#: ../lib/PageList.php:215 +#: ../lib/PageList.php:302 #, c-format msgid " ... around %s" msgstr "" -#: ../lib/PageList.php:237 +#: ../lib/PageList.php:325 #, fuzzy, c-format msgid "%s not found" msgstr "%s: fichero no encontrado" -#: ../lib/PageList.php:277 ../lib/plugin/AuthorHistory.php:174 +#: ../lib/PageList.php:394 ../lib/plugin/AuthorHistory.php:174 #: ../lib/plugin/WantedPages.php:140 msgid "Page Name" msgstr "Nombre de la Página" -#: ../lib/PageList.php:334 ../lib/plugin/FullTextSearch.php:75 +#: ../lib/PageList.php:466 ../lib/plugin/FullTextSearch.php:93 msgid "" msgstr "" -#: ../lib/PageList.php:478 ../lib/PageList.php:481 +#: ../lib/PageList.php:665 ../lib/PageList.php:667 #, fuzzy msgid "Content" msgstr "Acabado." -#: ../lib/PageList.php:487 +#: ../lib/PageList.php:671 msgid "Rename to" msgstr "" -#: ../lib/PageList.php:490 +#: ../lib/PageList.php:673 +#, fuzzy +msgid "Permission" +msgstr "Versión" + +#: ../lib/PageList.php:675 +msgid "ACL" +msgstr "" + +#: ../lib/PageList.php:677 #, fuzzy msgid "Select" msgstr "Borrada." -#: ../lib/PageList.php:497 +#: ../lib/PageList.php:681 #, fuzzy msgid "Last Modified" msgstr "modificado por última vez el %s" -#: ../lib/PageList.php:499 +#: ../lib/PageList.php:683 msgid "Hits" msgstr "Número de hits" -#: ../lib/PageList.php:502 +#: ../lib/PageList.php:685 #, fuzzy msgid "Size" msgstr "Tamaño:" -#: ../lib/PageList.php:506 +#: ../lib/PageList.php:688 #, fuzzy msgid "Last Summary" msgstr "Comentarios" -#: ../lib/PageList.php:509 ../lib/plugin/AuthorHistory.php:123 +#: ../lib/PageList.php:690 ../lib/plugin/AuthorHistory.php:123 #: ../lib/plugin/AuthorHistory.php:176 ../lib/plugin/PluginManager.php:90 msgid "Version" msgstr "Versión" -#: ../lib/PageList.php:513 +#: ../lib/PageList.php:693 msgid "Last Author" msgstr "" -#: ../lib/PageList.php:515 ../themes/default/templates/editpage.tmpl:95 +#: ../lib/PageList.php:695 ../lib/WikiGroup.php:39 +msgid "Owner" +msgstr "" + +#: ../lib/PageList.php:697 +msgid "Group" +msgstr "" + +#: ../lib/PageList.php:699 ../themes/default/templates/editpage.tmpl:101 #: ../themes/default/templates/info.tmpl:127 +#: ../themes/smaller/templates/info.tmpl:133 msgid "Locked" msgstr "Bloqueada" -#: ../lib/PageList.php:516 +#: ../lib/PageList.php:700 msgid "locked" msgstr "bloqueada" -#: ../lib/PageList.php:519 +#: ../lib/PageList.php:703 msgid "Minor Edit" msgstr "" -#: ../lib/PageList.php:519 +#: ../lib/PageList.php:703 msgid "minor" msgstr "" -#: ../lib/PageList.php:521 +#: ../lib/PageList.php:705 msgid "Markup" msgstr "" -#: ../lib/PageList.php:572 ../lib/plugin/WantedPages.php:167 +#: ../lib/PageList.php:756 ../lib/plugin/WantedPages.php:167 #, c-format msgid "Columns: %s." msgstr "" -#: ../lib/PageType.php:194 +#: ../lib/PagePerm.php:260 +#, fuzzy +msgid "List this page and all subpages" +msgstr "Bloquear Página" + +#: ../lib/PagePerm.php:261 +msgid "View this page and all subpages" +msgstr "" + +#: ../lib/PagePerm.php:262 +msgid "Edit this page and all subpages" +msgstr "" + +#: ../lib/PagePerm.php:263 +#, fuzzy +msgid "Create a new (sub)page" +msgstr "Bloquear Página" + +#: ../lib/PagePerm.php:264 +msgid "Download the page contents" +msgstr "" + +#: ../lib/PagePerm.php:265 +msgid "Change page attributes" +msgstr "" + +#: ../lib/PagePerm.php:266 +#, fuzzy +msgid "Remove this page" +msgstr "Borrar página" + +#: ../lib/PagePerm.php:295 +#, c-format +msgid "Unsupported ACL access type %s ignored." +msgstr "" + +#: ../lib/PageType.php:125 ../lib/loadsave.php:409 +#: ../themes/default/templates/info.tmpl:144 +#: ../themes/default/templates/info.tmpl:145 +#: ../themes/smaller/templates/info.tmpl:150 +#: ../themes/smaller/templates/info.tmpl:151 +msgid "InterWikiMap" +msgstr "" + +#: ../lib/PageType.php:211 ../lib/loadsave.php:552 +#, c-format +msgid "Loading InterWikiMap from external file %s." +msgstr "" + +#: ../lib/PageType.php:309 #, fuzzy msgid "Moniker" msgstr "Moderno" -#: ../lib/PageType.php:195 +#: ../lib/PageType.php:310 msgid "InterWiki Address" msgstr "" # lib/stdlib.php:384 lib/stdlib.php:445 -#: ../lib/RSSWriter091.php:116 ../lib/loadsave.php:832 +#: ../lib/RSSWriter091.php:116 ../lib/loadsave.php:872 #: ../lib/plugin/RecentChanges.php:250 ../lib/plugin/RecentChanges.php:263 -#: ../lib/plugin/RecentChanges.php:362 ../lib/plugin/RecentChanges.php:438 -#: ../lib/plugin/RecentChanges.php:529 ../lib/plugin/RecentChanges.php:605 +#: ../lib/plugin/RecentChanges.php:365 ../lib/plugin/RecentChanges.php:441 +#: ../lib/plugin/RecentChanges.php:535 ../lib/plugin/RecentChanges.php:611 #: ../themes/Portland/templates/navbar.tmpl:28 #: ../themes/default/templates/navbar.tmpl:10 +#: ../themes/smaller/templates/navbar.tmpl:10 msgid "RecentChanges" msgstr "CambiosRecientes" -#: ../lib/Request.php:39 ../lib/main.php:771 ../lib/main.php:784 +#: ../lib/Request.php:57 ../lib/main.php:756 ../lib/main.php:769 #, c-format msgid "%s is not writable." msgstr "" -#: ../lib/Request.php:39 +#: ../lib/Request.php:57 msgid "The PhpWiki access log file" msgstr "" -#: ../lib/Request.php:41 ../lib/main.php:774 +#: ../lib/Request.php:59 ../lib/main.php:759 #, c-format msgid "Please ensure that %s is writable, or redefine %s in index.php." msgstr "" -#: ../lib/Request.php:42 +#: ../lib/Request.php:60 #, fuzzy, c-format msgid "the file '%s'" msgstr "modificado por última vez el %s" @@ -179,111 +281,121 @@ msgstr "modificado por msgid "%4d %s\n" msgstr "%4d %s\n" -#: ../lib/Theme.php:344 +#: ../lib/Theme.php:368 msgid "Never edited." msgstr "" -#: ../lib/Theme.php:351 +#: ../lib/Theme.php:375 #, fuzzy, c-format msgid "%s at %s" msgstr "%s dias" -#: ../lib/Theme.php:355 +#: ../lib/Theme.php:379 #, fuzzy, c-format msgid "Version %s, saved %s." msgstr "versión %s de %s" -#: ../lib/Theme.php:357 +#: ../lib/Theme.php:381 #, c-format msgid "Last edited %s." msgstr "Editada por última vez %s." -#: ../lib/Theme.php:366 +#: ../lib/Theme.php:390 #, fuzzy, c-format msgid "Version %s, saved on %s." msgstr "versión %s de %s" -#: ../lib/Theme.php:368 +#: ../lib/Theme.php:392 #, c-format msgid "Last edited on %s." msgstr "Editada por última vez %s." -#: ../lib/Theme.php:384 +#: ../lib/Theme.php:408 msgid "today" msgstr "hoy" -#: ../lib/Theme.php:390 +#: ../lib/Theme.php:414 msgid "yesterday" msgstr "ayer" -#: ../lib/Theme.php:484 ../themes/MacOSX/themeinfo.php:71 +#: ../lib/Theme.php:518 +#, c-format +msgid "Empty link to: %s" +msgstr "" + +#: ../lib/Theme.php:530 ../themes/MacOSX/themeinfo.php:71 #, fuzzy, c-format msgid "Create: %s" msgstr "Guardar" -#: ../lib/Theme.php:518 +#: ../lib/Theme.php:566 #, c-format msgid "'%s': Bad page name" msgstr "" -#: ../lib/Theme.php:783 ../themes/default/templates/actionbar.tmpl:5 +#: ../lib/Theme.php:837 ../themes/default/templates/actionbar.tmpl:5 +#: ../themes/smaller/templates/actionbar.tmpl:6 msgid "Edit" msgstr "Editar" -#: ../lib/Theme.php:784 +#: ../lib/Theme.php:838 ../lib/plugin/Diff.php:36 #, fuzzy msgid "Diff" msgstr "Diferencia de: %s" -#: ../lib/Theme.php:785 ../themes/default/templates/signin.tmpl:15 -#: ../themes/default/templates/signin.tmpl:31 +#: ../lib/Theme.php:839 ../themes/default/templates/signin.tmpl:16 +#: ../themes/default/templates/signin.tmpl:32 +#: ../themes/smaller/templates/signin.tmpl:21 +#: ../themes/smaller/templates/signin.tmpl:44 msgid "Sign Out" msgstr "" -#: ../lib/Theme.php:786 ../lib/WikiUser.php:206 -#: ../themes/default/templates/login.tmpl:70 -#: ../themes/default/templates/signin.tmpl:59 +#: ../lib/Theme.php:840 ../lib/WikiUser.php:204 ../lib/WikiUserNew.php:415 +#: ../lib/WikiUserNew.php:1161 ../themes/default/templates/login.tmpl:66 +#: ../themes/default/templates/signin.tmpl:60 +#: ../themes/smaller/templates/signin.tmpl:54 +#: ../themes/smaller/templates/signin.tmpl:57 msgid "Sign In" msgstr "" -#: ../lib/Theme.php:787 ../themes/MacOSX/themeinfo.php:135 +#: ../lib/Theme.php:841 ../themes/MacOSX/themeinfo.php:135 msgid "Lock Page" msgstr "Bloquear Página" -#: ../lib/Theme.php:788 ../themes/MacOSX/themeinfo.php:136 +#: ../lib/Theme.php:842 ../themes/MacOSX/themeinfo.php:136 msgid "Unlock Page" msgstr "Desbloquear Página" -#: ../lib/Theme.php:789 +#: ../lib/Theme.php:843 msgid "Remove Page" msgstr "Borrar Página" # lib/msql.php:237 lib/msql.php:312 -#: ../lib/WikiDB.php:407 +#: ../lib/WikiDB.php:405 #, fuzzy, c-format msgid "renamed from %s" msgstr "Inserción de '%s' falló" -#: ../lib/WikiDB.php:412 +#: ../lib/WikiDB.php:410 msgid "WikiDB::renamePage() not yet implemented for this backend" msgstr "" -#: ../lib/WikiDB.php:700 +#: ../lib/WikiDB.php:698 #, c-format msgid "%s: Date of new revision is %s" msgstr "" -#: ../lib/WikiDB.php:763 +#: ../lib/WikiDB.php:761 #, c-format msgid "Optimizing %s" msgstr "" -#: ../lib/WikiDB.php:1207 ../themes/default/templates/homepage.tmpl:7 +#: ../lib/WikiDB.php:1205 ../themes/default/templates/homepage.tmpl:7 #, c-format msgid "Describe %s here." msgstr "Describe %s aquí." -#: ../lib/WikiDB.php:1242 +#: ../lib/WikiDB.php:1240 #, c-format msgid "Acck! Revision %s of %s seems to have been deleted!" msgstr "" @@ -305,7 +417,7 @@ msgid "" "DB file to a permanent location or risk losing all the pages!" msgstr "" -#: ../lib/WikiGroup.php:29 ../lib/WikiGroup.php:110 +#: ../lib/WikiGroup.php:29 ../lib/WikiGroup.php:122 msgid "No or unsupported GROUP_METHOD defined" msgstr "" @@ -322,82 +434,102 @@ msgid "Bogo Users" msgstr "" #: ../lib/WikiGroup.php:35 +#, fuzzy +msgid "HasHomePage" +msgstr "PáginaPrincipal" + +#: ../lib/WikiGroup.php:36 msgid "Signed Users" msgstr "" -#: ../lib/WikiGroup.php:36 +#: ../lib/WikiGroup.php:37 msgid "Authenticated Users" msgstr "" -#: ../lib/WikiGroup.php:37 +#: ../lib/WikiGroup.php:38 msgid "Administrators" msgstr "" -#: ../lib/WikiGroup.php:146 +#: ../lib/WikiGroup.php:40 +msgid "Creator" +msgstr "" + +#: ../lib/WikiGroup.php:164 #, c-format msgid "Undefined method %s for special group %s" msgstr "" -#: ../lib/WikiGroup.php:151 ../lib/WikiGroup.php:166 ../lib/WikiGroup.php:181 -#: ../lib/WikiGroup.php:197 ../lib/WikiGroup.php:213 +#: ../lib/WikiGroup.php:169 ../lib/WikiGroup.php:184 ../lib/WikiGroup.php:289 +#: ../lib/WikiGroup.php:294 ../lib/WikiGroup.php:310 ../lib/WikiGroup.php:326 #, c-format msgid "Method '%s' not implemented in this GROUP_METHOD %s" msgstr "" -#: ../lib/WikiGroup.php:339 +#: ../lib/WikiGroup.php:454 #, c-format msgid "Group %s does not exist" msgstr "" -#: ../lib/WikiGroup.php:437 +# lib/diff.php:997 +#: ../lib/WikiGroup.php:486 +#, fuzzy +msgid "CategoryGroup" +msgstr "Página actual:" + +#: ../lib/WikiGroup.php:561 msgid "No or not enough GROUP_DB SQL statements defined" msgstr "" -#: ../lib/WikiGroup.php:541 +#: ../lib/WikiGroup.php:767 msgid "AUTH_GROUP_FILE not defined" msgstr "" -#: ../lib/WikiGroup.php:545 +#: ../lib/WikiGroup.php:771 #, c-format msgid "Cannot open AUTH_GROUP_FILE %s" msgstr "" -#: ../lib/WikiGroup.php:644 +#: ../lib/WikiGroup.php:878 msgid "LDAP_AUTH_HOST not defined" msgstr "" -#: ../lib/WikiGroup.php:650 +#: ../lib/WikiGroup.php:884 msgid "No LDAP in this PHP version" msgstr "" +#: ../lib/WikiGroup.php:963 ../lib/WikiUserNew.php:1679 +#, c-format +msgid "Unable to connect to LDAP server %s" +msgstr "" + #: ../lib/WikiPlugin.php:88 msgid "n/a" msgstr "" -#: ../lib/WikiPlugin.php:118 +#: ../lib/WikiPlugin.php:118 ../lib/plugin/WikiPoll.php:114 #, c-format msgid "argument '%s' not declared by plugin" msgstr "" -#: ../lib/WikiPlugin.php:182 +#: ../lib/WikiPlugin.php:189 #, c-format msgid "trailing cruft in plugin args: '%s'" msgstr "" # lib/msql.php:237 lib/msql.php:312 -#: ../lib/WikiPlugin.php:291 +#: ../lib/WikiPlugin.php:303 #, c-format msgid "Plugin %s failed." msgstr "Inserción de '%s' falló" # lib/msql.php:237 lib/msql.php:312 -#: ../lib/WikiPlugin.php:297 +#: ../lib/WikiPlugin.php:309 #, fuzzy, c-format msgid "Plugin %s disabled." msgstr "Inserción de '%s' falló" # lib/msql.php:237 lib/msql.php:312 -#: ../lib/WikiPlugin.php:384 +#: ../lib/WikiPlugin.php:400 #, c-format msgid "Include of '%s' failed" msgstr "Inserción de '%s' falló" @@ -409,20 +541,20 @@ msgid "" "referring page." msgstr "" -#: ../lib/WikiUser.php:177 +#: ../lib/WikiUser.php:177 ../lib/WikiUserNew.php:482 msgid "Invalid password or userid." msgstr "" -#: ../lib/WikiUser.php:179 +#: ../lib/WikiUser.php:179 ../lib/WikiUserNew.php:484 msgid "Insufficient permissions." msgstr "" -#: ../lib/WikiUser.php:234 +#: ../lib/WikiUser.php:232 msgid "" "You forgot to set ENCRYPTED_PASSWD to true. Please update your /index.php" msgstr "" -#: ../lib/WikiUser.php:353 +#: ../lib/WikiUser.php:351 #, fuzzy msgid "" "Your home page has not been created yet so your preferences cannot not be " @@ -430,79 +562,126 @@ msgid "" msgstr "" "Esta página ha sido bloqueada por el administrador y no puede ser editada." -#: ../lib/WikiUser.php:370 +#: ../lib/WikiUser.php:368 #, fuzzy msgid "Your home page is locked so your preferences cannot not be saved." msgstr "" "Esta página ha sido bloqueada por el administrador y no puede ser editada." -#: ../lib/WikiUser.php:371 +#: ../lib/WikiUser.php:369 msgid "Please contact your PhpWiki administrator for assistance." msgstr "" -#: ../lib/WikiUser.php:477 +#: ../lib/WikiUser.php:475 #, c-format msgid "" "Old UserPage %s without stored password updated with empty password. Set a " "password in your UserPreferences." msgstr "" -#: ../lib/XmlElement.php:401 ../lib/stdlib.php:997 +#: ../lib/WikiUserNew.php:514 +msgid "Format of UserPreferences cookie not recognised." +msgstr "" + +#: ../lib/WikiUserNew.php:515 +msgid "Default preferences will be used." +msgstr "" + +#: ../lib/WikiUserNew.php:922 +msgid "" +"The length of the stored password is shorter than the system policy allows. " +"Sorry, you cannot login.\n" +" You have to ask the System Administrator to reset your password." +msgstr "" + +#: ../lib/WikiUserNew.php:935 +msgid "The crypt function is not available in this version of PHP." +msgstr "" + +#: ../lib/WikiUserNew.php:936 +msgid "" +"Please set ENCRYPTED_PASSWD to false in index.php and probably change " +"ADMIN_PASSWD." +msgstr "" + +#: ../lib/WikiUserNew.php:949 +msgid "Please set ENCRYPTED_PASSWD to true in index.php." +msgstr "" + +#: ../lib/WikiUserNew.php:1073 +#, c-format +msgid "" +"\n" +"You stored an empty password in your %s page.\n" +msgstr "" + +#: ../lib/WikiUserNew.php:1074 +msgid "Your access permissions are only for a BogoUser.\n" +msgstr "" + +#: ../lib/WikiUserNew.php:1075 +msgid "Please set your password in UserPreferences." +msgstr "" + +#: ../lib/WikiUserNew.php:1717 +msgid "Unable to connect to LDAP server " +msgstr "" + +#: ../lib/WikiUserNew.php:1747 +msgid "Unable to connect to IMAP server " +msgstr "" + +#: ../lib/XmlElement.php:417 ../lib/stdlib.php:995 #, c-format msgid "Can't mix '%s' with '%s' type format strings" msgstr "" # lib/msql.php:29 lib/mysql.php:36 -#: ../lib/config.php:145 +#: ../lib/config.php:125 #, fuzzy, c-format msgid "Can't set locale: '%s'" msgstr "" "No se puede establecer conexión con la base de datos %s, me doy por vencido." -#: ../lib/config.php:377 +#: ../lib/config.php:387 msgid "An unnamed PhpWiki" msgstr "Un PhpWiki sin un nombre" -#: ../lib/config.php:383 ../lib/imagecache.php:57 +#: ../lib/config.php:390 ../lib/imagecache.php:57 #: ../themes/default/templates/userprefs.tmpl:113 msgid "HomePage" msgstr "PáginaPrincipal" -#: ../lib/config.php:398 +#: ../lib/config.php:404 #, c-format msgid "Encrypted passwords cannot be used: %s." msgstr "" -#: ../lib/config.php:404 +#: ../lib/config.php:410 msgid "The admin password cannot be empty. Please update your /index.php" msgstr "" -#: ../lib/config.php:408 -#, c-format -msgid "You can use %s only with %s" -msgstr "" - -#: ../lib/config.php:415 +#: ../lib/config.php:414 msgid "" "Empty db_session_table. Turn USE_DB_SESSION off or define the table name." msgstr "" -#: ../lib/diff.php:253 +#: ../lib/diff.php:253 ../lib/plugin/Diff.php:72 #, c-format msgid "version %s" msgstr "versión %s" -#: ../lib/diff.php:256 +#: ../lib/diff.php:256 ../lib/plugin/Diff.php:75 #, c-format msgid "by %s" msgstr "por %s" -#: ../lib/diff.php:258 +#: ../lib/diff.php:258 ../lib/plugin/Diff.php:77 msgid "None" msgstr "Ninguna" -#: ../lib/diff.php:280 ../lib/plugin/PageHistory.php:312 -#: ../lib/plugin/PageInfo.php:59 +#: ../lib/diff.php:280 ../lib/plugin/Diff.php:94 +#: ../lib/plugin/PageHistory.php:312 ../lib/plugin/PageInfo.php:59 #, c-format msgid "I'm sorry, there is no such page as %s." msgstr "" @@ -512,76 +691,79 @@ msgstr "" msgid "Diff: %s" msgstr "Diferencia de: %s" -#: ../lib/diff.php:290 ../lib/diff.php:300 +#: ../lib/diff.php:290 ../lib/diff.php:300 ../lib/plugin/Diff.php:102 +#: ../lib/plugin/Diff.php:112 #, c-format msgid "version %d" msgstr "versión %d" # lib/pageinfo.php:70 -#: ../lib/diff.php:294 +#: ../lib/diff.php:294 ../lib/plugin/Diff.php:106 msgid "current version" msgstr "versión actual" -#: ../lib/diff.php:311 +#: ../lib/diff.php:311 ../lib/plugin/Diff.php:123 msgid "revision by previous author" msgstr "" -#: ../lib/diff.php:317 +#: ../lib/diff.php:317 ../lib/plugin/Diff.php:129 msgid "previous revision" msgstr "versión archivada" -#: ../lib/diff.php:327 +#: ../lib/diff.php:327 ../lib/plugin/Diff.php:139 msgid "predecessor to the previous major change" msgstr "" -#: ../lib/diff.php:337 +#: ../lib/diff.php:337 ../lib/plugin/Diff.php:149 #, c-format msgid "Differences between %s and %s of %s." msgstr "" -#: ../lib/diff.php:340 +#: ../lib/diff.php:340 ../lib/plugin/Diff.php:152 msgid "Other diffs:" msgstr "" -#: ../lib/diff.php:341 +#: ../lib/diff.php:341 ../lib/plugin/Diff.php:153 #, fuzzy msgid "Previous Major Revision" msgstr "Versión archivada" -#: ../lib/diff.php:342 +#: ../lib/diff.php:342 ../lib/plugin/Diff.php:154 msgid "Previous Revision" msgstr "Versión archivada" -#: ../lib/diff.php:343 +#: ../lib/diff.php:343 ../lib/plugin/Diff.php:155 #, fuzzy msgid "Previous Author" msgstr "Anterior" -#: ../lib/diff.php:360 +#: ../lib/diff.php:360 ../lib/plugin/Diff.php:172 #, fuzzy msgid "Newer page:" msgstr "Página nueva." -#: ../lib/diff.php:362 +#: ../lib/diff.php:362 ../lib/plugin/Diff.php:174 #, fuzzy msgid "Older page:" msgstr "página nueva" -#: ../lib/diff.php:370 +#: ../lib/diff.php:370 ../lib/plugin/Diff.php:182 msgid "Versions are identical" msgstr "Las versiones son idénticas" #: ../lib/display.php:54 ../lib/plugin/PageGroup.php:91 #: ../lib/plugin/PageGroup.php:156 ../lib/plugin/PageGroup.php:167 #: ../lib/plugin/PageGroup.php:183 ../lib/plugin/PageGroup.php:190 -#: ../lib/plugin/PageHistory.php:216 ../lib/plugin/UnfoldSubpages.php:177 +#: ../lib/plugin/PageHistory.php:216 ../lib/plugin/UnfoldSubpages.php:165 #: ../themes/default/templates/head.tmpl:45 #, c-format msgid "%s: %s" msgstr "%s: %s" #: ../lib/display.php:104 ../lib/display.php:111 -#: ../lib/plugin/BackLinks.php:31 ../themes/default/templates/navbar.tmpl:22 +#: ../lib/plugin/BackLinks.php:31 ../lib/plugin/_WikiTranslation.php:50 +#: ../themes/default/templates/navbar.tmpl:23 +#: ../themes/smaller/templates/navbar.tmpl:19 msgid "BackLinks" msgstr "" @@ -597,51 +779,51 @@ msgid "(Redirected from %s)" msgstr "Inserción de '%s' falló" # lib/pageinfo.php:70 -#: ../lib/editpage.php:82 ../lib/editpage.php:283 +#: ../lib/editpage.php:90 ../lib/editpage.php:360 msgid "Your version" msgstr "Versión actual:" -#: ../lib/editpage.php:82 ../lib/editpage.php:284 +#: ../lib/editpage.php:90 ../lib/editpage.php:361 #, fuzzy msgid "Other version" msgstr "Altro versión" -#: ../lib/editpage.php:99 +#: ../lib/editpage.php:176 #, c-format msgid "Edit: %s" msgstr "Editar: %s" -#: ../lib/editpage.php:133 +#: ../lib/editpage.php:210 #, c-format msgid "View Source: %s" msgstr "" -#: ../lib/editpage.php:147 +#: ../lib/editpage.php:224 msgid "Page now locked." msgstr "Página bloqueada." -#: ../lib/editpage.php:147 +#: ../lib/editpage.php:224 #, fuzzy msgid "Page now unlocked." msgstr "Página desbloquear." -#: ../lib/editpage.php:221 +#: ../lib/editpage.php:298 #, fuzzy, c-format msgid "Saved: %s" msgstr "Guardar" -#: ../lib/editpage.php:266 ../themes/MacOSX/themeinfo.php:137 +#: ../lib/editpage.php:343 ../themes/MacOSX/themeinfo.php:137 msgid "Page Locked" msgstr "Página Bloqueada" -#: ../lib/editpage.php:267 +#: ../lib/editpage.php:344 msgid "" "This page has been locked by the administrator so your changes can not be " "saved." msgstr "" "Esta página ha sido bloqueada por el administrador y no puede ser editada." -#: ../lib/editpage.php:268 +#: ../lib/editpage.php:345 msgid "" "(Copy your changes to the clipboard. You can try editing a different page or " "save your text in a text editor.)" @@ -649,11 +831,11 @@ msgstr "" "Copie sus cambios al portapapeles o a otro sitio temporal (p.ej. editor de " "textos)." -#: ../lib/editpage.php:269 +#: ../lib/editpage.php:346 msgid "Sorry for the inconvenience." msgstr "Disculpe la inconveniencia." -#: ../lib/editpage.php:282 ../lib/editpage.php:535 +#: ../lib/editpage.php:359 ../lib/editpage.php:612 #, c-format msgid "" "Some of the changes could not automatically be combined. Please look for " @@ -661,51 +843,40 @@ msgid "" "those sections by hand before you click Save." msgstr "" -#: ../lib/editpage.php:286 ../lib/editpage.php:538 +#: ../lib/editpage.php:363 ../lib/editpage.php:615 msgid "Please check it through before saving." msgstr "" -#: ../lib/editpage.php:297 +#: ../lib/editpage.php:374 msgid "Conflicting Edits!" msgstr "" -#: ../lib/editpage.php:298 +#: ../lib/editpage.php:375 msgid "" "In the time since you started editing this page, another user has saved a " "new version of it." msgstr "" -#: ../lib/editpage.php:299 +#: ../lib/editpage.php:376 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." msgstr "" -#: ../lib/editpage.php:370 +#: ../lib/editpage.php:447 msgid "Preview" msgstr "Previsualizar" -#: ../lib/editpage.php:374 +#: ../lib/editpage.php:451 msgid "Save" msgstr "Guardar" -#: ../lib/editpage.php:510 +#: ../lib/editpage.php:587 #, fuzzy, c-format msgid "Merge and Edit: %s" msgstr "Editar: %s" -#: ../lib/interwiki.php:7 ../lib/loadsave.php:373 -#: ../themes/default/templates/info.tmpl:144 -#: ../themes/default/templates/info.tmpl:145 -msgid "InterWikiMap" -msgstr "" - -#: ../lib/interwiki.php:90 ../lib/loadsave.php:515 -#, c-format -msgid "Loading InterWikiMap from external file %s." -msgstr "" - #: ../lib/loadsave.php:42 msgid "Complete." msgstr "Acabado." @@ -723,358 +894,394 @@ msgstr "" msgid "LatestSnapshot" msgstr "" -#: ../lib/loadsave.php:174 ../lib/loadsave.php:232 +#: ../lib/loadsave.php:175 ../lib/loadsave.php:234 msgid "You must specify a directory to dump to" msgstr "" -#: ../lib/loadsave.php:179 ../lib/loadsave.php:237 +#: ../lib/loadsave.php:180 ../lib/loadsave.php:239 #, c-format msgid "Cannot create directory '%s'" msgstr "" -#: ../lib/loadsave.php:181 ../lib/loadsave.php:239 +#: ../lib/loadsave.php:182 ../lib/loadsave.php:241 #, c-format msgid "Created directory '%s' for the page dump..." msgstr "" -#: ../lib/loadsave.php:184 ../lib/loadsave.php:242 +#: ../lib/loadsave.php:185 ../lib/loadsave.php:244 #, c-format msgid "Using directory '%s'" msgstr "" -#: ../lib/loadsave.php:187 ../lib/loadsave.php:245 +#: ../lib/loadsave.php:188 ../lib/loadsave.php:247 #, fuzzy msgid "Dumping Pages" msgstr "Borrar página" -#: ../lib/loadsave.php:200 ../lib/loadsave.php:263 +#: ../lib/loadsave.php:202 ../lib/loadsave.php:269 #, c-format msgid "saved as %s" msgstr "" -#: ../lib/loadsave.php:210 ../lib/loadsave.php:278 +#: ../lib/loadsave.php:212 ../lib/loadsave.php:282 #: ../lib/plugin/text2png.php:183 #, c-format msgid "couldn't open file '%s' for writing" msgstr "Error al escribir la página '%s'" -#: ../lib/loadsave.php:216 ../lib/loadsave.php:284 +#: ../lib/loadsave.php:218 ../lib/loadsave.php:288 #, c-format msgid "%s bytes written" msgstr "%s octetos" +# lib/editpage.php:19 +#: ../lib/loadsave.php:302 ../lib/loadsave.php:316 +#, fuzzy, c-format +msgid "... copied to %s" +msgstr "Copia de [%s]" + +#: ../lib/loadsave.php:306 ../lib/loadsave.php:320 +#, fuzzy +msgid "... not found" +msgstr "%s: fichero no encontrado" + # lib/pageinfo.php:9 -#: ../lib/loadsave.php:363 +#: ../lib/loadsave.php:399 msgid "Empty pagename!" msgstr "¡Escriba un nombre de página!" -#: ../lib/loadsave.php:419 +#: ../lib/loadsave.php:455 #, c-format msgid "from %s" msgstr "" -#: ../lib/loadsave.php:424 +#: ../lib/loadsave.php:460 msgid "new page" msgstr "página nueva" -#: ../lib/loadsave.php:432 +#: ../lib/loadsave.php:468 msgid "has edit conflicts - overwriting anyway" msgstr "" -#: ../lib/loadsave.php:435 ../lib/loadsave.php:797 ../lib/loadsave.php:800 +#: ../lib/loadsave.php:471 ../lib/loadsave.php:837 ../lib/loadsave.php:840 msgid "The PhpWiki programming team" msgstr "" -#: ../lib/loadsave.php:440 +#: ../lib/loadsave.php:476 msgid "has edit conflicts - skipped" msgstr "" -#: ../lib/loadsave.php:448 +#: ../lib/loadsave.php:484 #, c-format msgid "is identical to current version %d - skipped" msgstr "" -#: ../lib/loadsave.php:458 +#: ../lib/loadsave.php:494 #, c-format msgid "- saved to database as version %d" msgstr "" -#: ../lib/loadsave.php:464 ../lib/loadsave.php:609 +#: ../lib/loadsave.php:500 ../lib/loadsave.php:647 #, c-format msgid "MIME file %s" msgstr "" -#: ../lib/loadsave.php:465 ../lib/loadsave.php:614 +#: ../lib/loadsave.php:501 ../lib/loadsave.php:652 #, c-format msgid "Serialized file %s" msgstr "" -#: ../lib/loadsave.php:466 ../lib/loadsave.php:628 +#: ../lib/loadsave.php:502 ../lib/loadsave.php:666 #, fuzzy, c-format msgid "plain file %s" msgstr "modificado por última vez el %s" -#: ../lib/loadsave.php:472 +#: ../lib/loadsave.php:509 #, fuzzy msgid "Merge Edit" msgstr "Editar: %s" -#: ../lib/loadsave.php:473 ../lib/loadsave.php:480 -#: ../lib/plugin/WikiAdminSelect.php:169 +#: ../lib/loadsave.php:510 ../lib/loadsave.php:516 +#: ../lib/plugin/WikiAdminSelect.php:170 #: ../themes/Portland/templates/navbar.tmpl:30 #: ../themes/default/templates/head.tmpl:76 -#: ../themes/default/templates/navbar.tmpl:36 +#: ../themes/default/templates/navbar.tmpl:37 +#: ../themes/smaller/templates/navbar.tmpl:22 msgid "PhpWikiAdministration" msgstr "" -#: ../lib/loadsave.php:479 +#: ../lib/loadsave.php:515 msgid "Restore Anyway" msgstr "" -#: ../lib/loadsave.php:499 +#: ../lib/loadsave.php:536 #, c-format msgid "%s: not defined" msgstr "%s: fichero no encontrado" -#: ../lib/loadsave.php:508 +#: ../lib/loadsave.php:545 msgid "Default InterWiki map file not loaded." msgstr "" -#: ../lib/loadsave.php:642 ../lib/loadsave.php:654 +#: ../lib/loadsave.php:680 ../lib/loadsave.php:692 msgid "Skipping" msgstr "" -#: ../lib/loadsave.php:751 +#: ../lib/loadsave.php:791 #, c-format msgid "Unable to load: %s" msgstr "" -#: ../lib/loadsave.php:758 +#: ../lib/loadsave.php:798 #, c-format msgid "Bad file type: %s" msgstr "" -#: ../lib/loadsave.php:772 +#: ../lib/loadsave.php:812 #, c-format msgid "Loading '%s'" msgstr "" -#: ../lib/loadsave.php:803 +#: ../lib/loadsave.php:843 msgid "Loading up virgin wiki" msgstr "" -#: ../lib/loadsave.php:823 +#: ../lib/loadsave.php:863 msgid "No uploaded file to upload?" msgstr "" -#: ../lib/loadsave.php:827 +#: ../lib/loadsave.php:867 #, c-format msgid "Uploading %s" msgstr "" -#: ../lib/main.php:288 +#: ../lib/main.php:264 #, c-format msgid "%s is disallowed on this wiki." msgstr "" -#: ../lib/main.php:292 +#: ../lib/main.php:268 #, c-format msgid "You must sign in to %s." msgstr "" -#: ../lib/main.php:294 +#: ../lib/main.php:270 #, c-format msgid "You must log in to %s." msgstr "" -#: ../lib/main.php:296 ../lib/plugin/PluginManager.php:65 +#: ../lib/main.php:272 ../lib/plugin/PluginManager.php:65 #, c-format msgid "You must be an administrator to %s." msgstr "" -#: ../lib/main.php:309 -msgid "browse pages in this wiki" -msgstr "" +#: ../lib/main.php:285 +#, fuzzy +msgid "view this page" +msgstr "página nueva" -#: ../lib/main.php:310 -msgid "diff pages in this wiki" -msgstr "" +#: ../lib/main.php:286 +#, fuzzy +msgid "diff this page" +msgstr "Bloquear Página" -#: ../lib/main.php:311 +#: ../lib/main.php:287 #, fuzzy -msgid "dump html pages from this wiki" -msgstr "Las %d páginas más populares de este wiki:" +msgid "dump html pages" +msgstr "Borrar página" -#: ../lib/main.php:312 +#: ../lib/main.php:288 #, fuzzy -msgid "dump serial pages from this wiki" +msgid "dump serial pages" msgstr "Las %d páginas más populares de este wiki:" -#: ../lib/main.php:313 +#: ../lib/main.php:289 #, fuzzy -msgid "edit pages in this wiki" -msgstr "Las %d páginas más populares de este wiki:" +msgid "edit this page" +msgstr "Bloquear Página" -#: ../lib/main.php:314 +#: ../lib/main.php:290 #, fuzzy -msgid "create pages in this wiki" -msgstr "Las %d páginas más populares de este wiki:" +msgid "create this page" +msgstr "Bloquear Página" -#: ../lib/main.php:315 +#: ../lib/main.php:291 msgid "load files into this wiki" msgstr "" -#: ../lib/main.php:316 +#: ../lib/main.php:292 #, fuzzy -msgid "lock pages in this wiki" -msgstr "Las %d páginas más populares de este wiki:" +msgid "lock this page" +msgstr "Desbloquear Página" -#: ../lib/main.php:317 +#: ../lib/main.php:293 #, fuzzy -msgid "remove pages from this wiki" -msgstr "Las %d páginas más populares de este wiki:" +msgid "remove this page" +msgstr "Borrar la página ahora" -#: ../lib/main.php:318 -msgid "unlock pages in this wiki" -msgstr "" +#: ../lib/main.php:294 +#, fuzzy +msgid "unlock this page" +msgstr "Desbloquear Página" -#: ../lib/main.php:319 -msgid "upload a zip dump to this wiki" +#: ../lib/main.php:295 +msgid "upload a zip dump" msgstr "" # lib/pageinfo.php:70 -#: ../lib/main.php:320 +#: ../lib/main.php:296 msgid "verify the current action" msgstr "" -#: ../lib/main.php:321 +#: ../lib/main.php:297 #, fuzzy -msgid "view the source of pages in this wiki" +msgid "view the source of this page" msgstr "Las %d páginas más populares de este wiki:" -#: ../lib/main.php:322 +#: ../lib/main.php:298 msgid "access this wiki via XML-RPC" msgstr "" -#: ../lib/main.php:323 +#: ../lib/main.php:299 msgid "download a zip dump from this wiki" msgstr "" -#: ../lib/main.php:324 +#: ../lib/main.php:300 msgid "download an html zip dump from this wiki" msgstr "" -#: ../lib/main.php:336 +#: ../lib/main.php:312 #, fuzzy msgid "Browsing pages" msgstr "Bloquear Página" -#: ../lib/main.php:337 +#: ../lib/main.php:313 #, fuzzy msgid "Diffing pages" msgstr "Bloquear Página" -#: ../lib/main.php:338 +#: ../lib/main.php:314 #, fuzzy msgid "Dumping html pages" msgstr "Borrar página" -#: ../lib/main.php:339 +#: ../lib/main.php:315 msgid "Dumping serial pages" msgstr "" -#: ../lib/main.php:340 +#: ../lib/main.php:316 #, fuzzy msgid "Editing pages" msgstr "Bloquear Página" -#: ../lib/main.php:341 +#: ../lib/main.php:317 #, fuzzy msgid "Creating pages" msgstr "Bloquear Página" -#: ../lib/main.php:342 +#: ../lib/main.php:318 #, fuzzy msgid "Loading files" msgstr "Bloquear Página" -#: ../lib/main.php:343 +#: ../lib/main.php:319 msgid "Locking pages" msgstr "Bloquear Página" -#: ../lib/main.php:344 +#: ../lib/main.php:320 msgid "Removing pages" msgstr "Borrar página" -#: ../lib/main.php:345 +#: ../lib/main.php:321 msgid "Unlocking pages" msgstr "Desbloquear Página" -#: ../lib/main.php:346 +#: ../lib/main.php:322 msgid "Uploading zip dumps" msgstr "" # lib/pageinfo.php:70 -#: ../lib/main.php:347 +#: ../lib/main.php:323 #, fuzzy msgid "Verify the current action" msgstr "Versión archivada:" -#: ../lib/main.php:348 +#: ../lib/main.php:324 msgid "Viewing the source of pages" msgstr "" -#: ../lib/main.php:349 +#: ../lib/main.php:325 msgid "XML-RPC access" msgstr "" -#: ../lib/main.php:350 +#: ../lib/main.php:326 msgid "Downloading zip dumps" msgstr "" -#: ../lib/main.php:351 +#: ../lib/main.php:327 msgid "Downloading html zip dumps" msgstr "" -#: ../lib/main.php:458 +#: ../lib/main.php:436 #, c-format msgid "%s: Bad action" msgstr "" -#: ../lib/main.php:480 +#: ../lib/main.php:458 msgid "Fatal PhpWiki Error" msgstr "Error Fatal De PhpWiki" # lib/fullsearch.php:48 -#: ../lib/main.php:661 ../lib/plugin/FullTextSearch.php:31 +#: ../lib/main.php:641 ../lib/plugin/FullTextSearch.php:32 #: ../lib/plugin/WantedPages.php:123 msgid "FullTextSearch" msgstr "BúsquedaDelTexto" # lib/fullsearch.php:48 -#: ../lib/main.php:664 ../lib/plugin/RecentChanges.php:519 +#: ../lib/main.php:644 ../lib/plugin/RecentChanges.php:525 #: ../lib/plugin/TitleSearch.php:31 msgid "TitleSearch" msgstr "BúsquedaDeTítulos" -#: ../lib/main.php:772 +#: ../lib/main.php:757 msgid "The session.save_path directory" msgstr "" -#: ../lib/main.php:775 +#: ../lib/main.php:760 #, c-format msgid "the directory '%s'" msgstr "" -#: ../lib/main.php:779 +#: ../lib/main.php:764 #, c-format msgid "Attempting to use the directory '%s' instead." msgstr "" -#: ../lib/main.php:786 +#: ../lib/main.php:771 msgid "Users will not be able to sign in." msgstr "" +#: ../lib/plugin/AddComment.php:39 +#, fuzzy +msgid "AddComment" +msgstr "Acabado." + +# lib/pageinfo.php:21 +#: ../lib/plugin/AddComment.php:43 +#, fuzzy, c-format +msgid "Show and add comments for %s" +msgstr "Mostrar el código fuente de la página y referencias" + +#: ../lib/plugin/AddComment.php:106 ../lib/plugin/CreateToc.php:203 +#, fuzzy +msgid "Click to display" +msgstr "Desbloquear Página" + +#: ../lib/plugin/AddComment.php:108 +#, fuzzy +msgid "Comments" +msgstr "Acabado." + #: ../lib/plugin/AllPages.php:31 msgid "AllPages" msgstr "TodasLasPáginas" @@ -1089,29 +1296,30 @@ msgstr "Las %d p msgid "Pages in this wiki (%d total):" msgstr "" -#: ../lib/plugin/AllPages.php:82 ../lib/plugin/AllUsers.php:94 +#: ../lib/plugin/AllPages.php:81 ../lib/plugin/AllUsers.php:100 #, c-format msgid "Elapsed time: %s s" msgstr "" -#: ../lib/plugin/AllUsers.php:33 +#: ../lib/plugin/AllUsers.php:36 #, fuzzy msgid "AllUsers" msgstr "TodasLasPáginas" -#: ../lib/plugin/AllUsers.php:37 +#: ../lib/plugin/AllUsers.php:40 msgid "" "With external authentication all users which stored their Preferences. " "Without external authentication all once signed-in users (from version 1.3.4 " "on)." msgstr "" -#: ../lib/plugin/AllUsers.php:72 +#: ../lib/plugin/AllUsers.php:76 #, c-format msgid "Authenticated users on this wiki (%d total):" msgstr "" #: ../lib/plugin/AuthorHistory.php:70 +#: ../themes/smaller/templates/info.tmpl:169 msgid "AuthorHistory" msgstr "" @@ -1126,6 +1334,8 @@ msgid "Minor" msgstr "" #: ../lib/plugin/AuthorHistory.php:125 +#: ../themes/default/templates/forum-thread.tmpl:21 +#: ../themes/default/templates/forum-topics.tmpl:23 msgid "Author" msgstr "" @@ -1151,12 +1361,12 @@ msgstr "" #: ../lib/plugin/AuthorHistory.php:218 #, c-format -msgid "History of all major and minor modifcations for any page edited by %s." +msgid "History of all major and minor modifications for any page edited by %s." msgstr "" #: ../lib/plugin/AuthorHistory.php:218 #, c-format -msgid "History of major modifcations for any page edited by %s." +msgid "History of major modifications for any page edited by %s." msgstr "" #: ../lib/plugin/BackLinks.php:35 @@ -1197,7 +1407,7 @@ msgstr "" #: ../lib/plugin/Calendar.php:41 ../lib/plugin/Calendar.php:45 #: ../themes/default/templates/head.tmpl:85 #: ../themes/default/templates/homepage.tmpl:15 -#: ../themes/default/templates/navbar.tmpl:27 +#: ../themes/default/templates/navbar.tmpl:28 msgid "Calendar" msgstr "Calendario" @@ -1229,6 +1439,42 @@ msgstr "Acabado." msgid "Embed hidden comments in WikiPages." msgstr "" +#: ../lib/plugin/CreatePage.php:37 +#, fuzzy +msgid "CreatePage" +msgstr "BuscarPágina" + +#: ../lib/plugin/CreatePage.php:41 +#, fuzzy +msgid "Create a Wiki page." +msgstr "Bloquear Página" + +#: ../lib/plugin/CreateToc.php:34 +#, fuzzy +msgid "CreateToc" +msgstr "Guardar" + +#: ../lib/plugin/CreateToc.php:38 +msgid "Automatically link headers at the top" +msgstr "" + +#: ../lib/plugin/CreateToc.php:146 ../lib/plugin/IncludePage.php:116 +msgid "no page specified" +msgstr "" + +#: ../lib/plugin/CreateToc.php:205 ../lib/plugin/CreateToc.php:208 +msgid "Table Of Contents" +msgstr "" + +#: ../lib/plugin/Diff.php:40 +msgid "Display differences between revisions" +msgstr "" + +#: ../lib/plugin/Diff.php:52 +#, fuzzy +msgid "World" +msgstr "para bold" + #: ../lib/plugin/EditMetaData.php:45 msgid "EditMetaData" msgstr "" @@ -1276,7 +1522,7 @@ msgid "" "Displays a url in a seperate frame inside our body. Only one frame allowed." msgstr "" -#: ../lib/plugin/FrameInclude.php:93 ../lib/plugin/IncludePage.php:124 +#: ../lib/plugin/FrameInclude.php:93 ../lib/plugin/IncludePage.php:123 #, c-format msgid "recursive inclusion of page %s" msgstr "" @@ -1297,12 +1543,17 @@ msgstr "" msgid "See %s" msgstr "" -#: ../lib/plugin/FullTextSearch.php:35 +#: ../lib/plugin/FullTextSearch.php:36 #, fuzzy msgid "Search the content of all pages in this wiki." msgstr "Las %d páginas más populares de este wiki:" -#: ../lib/plugin/FullTextSearch.php:80 +#: ../lib/plugin/FullTextSearch.php:91 +#, c-format +msgid "only %d pages displayed" +msgstr "" + +#: ../lib/plugin/FullTextSearch.php:97 #, c-format msgid "Full text search results for '%s'" msgstr "Resultados de la búsqueda en el texto completo para '%s'" @@ -1337,6 +1588,14 @@ msgstr "" msgid "Sound Score" msgstr "" +#: ../lib/plugin/GooglePlugin.php:43 +msgid "GooglePlugin" +msgstr "" + +#: ../lib/plugin/GooglePlugin.php:47 +msgid "Make use of the Google API" +msgstr "" + #: ../lib/plugin/HelloWorld.php:46 msgid "HelloWorld" msgstr "" @@ -1355,26 +1614,32 @@ msgid "Include text from another wiki page." msgstr "" #: ../lib/plugin/IncludePage.php:93 ../lib/plugin/PageGroup.php:80 -#: ../lib/plugin/UnfoldSubpages.php:116 +#: ../lib/plugin/UnfoldSubpages.php:117 #, c-format msgid "<%s: no such section>" msgstr "" -#: ../lib/plugin/IncludePage.php:117 -msgid "no page specified" -msgstr "" - -#: ../lib/plugin/IncludePage.php:133 ../lib/plugin/PageGroup.php:121 +#: ../lib/plugin/IncludePage.php:132 ../lib/plugin/PageGroup.php:121 #, c-format msgid "%s(%d): no such revision" msgstr "" # lib/msql.php:237 lib/msql.php:312 -#: ../lib/plugin/IncludePage.php:162 +#: ../lib/plugin/IncludePage.php:161 #, fuzzy, c-format msgid "Included from %s" msgstr "Inserción de '%s' falló" +#: ../lib/plugin/IncludeSiteMap.php:52 +#, fuzzy +msgid "IncludeSiteMap" +msgstr "BuscarPágina" + +#: ../lib/plugin/IncludeSiteMap.php:56 +#, c-format +msgid "Include recursively all linked pages starting at %s" +msgstr "" + # lib/fullsearch.php:48 #: ../lib/plugin/InterWikiSearch.php:31 #, fuzzy @@ -1385,18 +1650,19 @@ msgstr "B msgid "Perform searches on InterWiki sites listed in InterWikiMap." msgstr "" -#: ../lib/plugin/InterWikiSearch.php:70 +#: ../lib/plugin/InterWikiSearch.php:91 #, fuzzy msgid "Wiki Name" msgstr "Nombre de la Página" # lib/stdlib.php:207 lib/stdlib.php:215 -#: ../lib/plugin/InterWikiSearch.php:71 ../lib/plugin/RecentChanges.php:516 +#: ../lib/plugin/InterWikiSearch.php:92 ../lib/plugin/RecentChanges.php:522 msgid "Search" msgstr "Buscar" #: ../lib/plugin/LikePages.php:32 ../themes/Portland/templates/navbar.tmpl:10 -#: ../themes/default/templates/navbar.tmpl:21 +#: ../themes/default/templates/navbar.tmpl:22 +#: ../themes/smaller/templates/navbar.tmpl:18 #, fuzzy msgid "LikePages" msgstr "Bloquear Página" @@ -1429,7 +1695,7 @@ msgstr "" msgid "Lists the names of all SubPages of the current page." msgstr "" -#: ../lib/plugin/ListSubpages.php:68 ../lib/plugin/UnfoldSubpages.php:133 +#: ../lib/plugin/ListSubpages.php:68 ../lib/plugin/UnfoldSubpages.php:127 msgid "The current page has no subpages defined." msgstr "" @@ -1438,7 +1704,7 @@ msgstr "" msgid "SubPages of %s:" msgstr "" -#: ../lib/plugin/ListSubpages.php:90 ../lib/plugin/UnfoldSubpages.php:149 +#: ../lib/plugin/ListSubpages.php:90 ../lib/plugin/UnfoldSubpages.php:137 #, c-format msgid "recursive inclusion of page %s ignored" msgstr "" @@ -1452,20 +1718,29 @@ msgstr "MasPopulares" msgid "List the most popular pages." msgstr "Las %d páginas más populares de este wiki:" -#: ../lib/plugin/MostPopular.php:78 +#: ../lib/plugin/MostPopular.php:80 #, c-format msgid "The %d most popular pages of this wiki:" msgstr "Las %d páginas más populares de este wiki:" -#: ../lib/plugin/MostPopular.php:81 +#: ../lib/plugin/MostPopular.php:83 #, fuzzy, c-format msgid "The %d least popular pages of this wiki:" msgstr "Las %d páginas más populares de este wiki:" -#: ../lib/plugin/MostPopular.php:83 +#: ../lib/plugin/MostPopular.php:85 msgid "Visited pages on this wiki, ordered by popularity:" msgstr "" +#: ../lib/plugin/NoCache.php:39 +#, fuzzy +msgid "NoCache" +msgstr "Cancelar" + +#: ../lib/plugin/NoCache.php:43 +msgid "Don't cache this page." +msgstr "" + #: ../lib/plugin/OldStyleTable.php:49 msgid "OldStyleTable" msgstr "" @@ -1616,6 +1891,8 @@ msgstr "Versi #: ../themes/SpaceWiki/lib/RecentChanges.php:35 #: ../themes/default/templates/info.tmpl:18 #: ../themes/default/templates/info.tmpl:22 +#: ../themes/smaller/templates/info.tmpl:19 +#: ../themes/smaller/templates/info.tmpl:23 msgid "minor edit" msgstr "" @@ -1628,6 +1905,8 @@ msgstr "Mostrar el c #: ../lib/plugin/PageHistory.php:247 ../lib/plugin/RecentChanges.php:65 #: ../themes/Portland/templates/actionbar.tmpl:18 #: ../themes/default/templates/actionbar.tmpl:27 +#: ../themes/smaller/templates/actionbar.tmpl:33 +#: ../themes/smaller/templates/info.tmpl:168 msgid "PageHistory" msgstr "" @@ -1649,33 +1928,40 @@ msgstr "InformacionDeLaPagina" msgid "Show extra page Info and statistics for %s." msgstr "" -#: ../lib/plugin/PageTrail.php:43 +#: ../lib/plugin/PageTrail.php:45 msgid "PageTrail" msgstr "" -#: ../lib/plugin/PageTrail.php:47 +#: ../lib/plugin/PageTrail.php:49 msgid "PageTrail Plugin" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:53 +#: ../lib/plugin/PhotoAlbum.php:146 msgid "PhotoAlbum" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:57 +#: ../lib/plugin/PhotoAlbum.php:150 msgid "" "Displays a set of photos listed in a text file with optional descriptions" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:80 ../lib/plugin/Transclude.php:76 -#, c-format -msgid "%s parameter missing" +#: ../lib/plugin/PhotoAlbum.php:433 +msgid "Fixed album location is not allowed." +msgstr "" + +#: ../lib/plugin/PhotoAlbum.php:434 +msgid "));" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:84 ../lib/plugin/Transclude.php:85 +#: ../lib/plugin/PhotoAlbum.php:452 ../lib/plugin/Transclude.php:85 msgid "Bad url in src: remove all of <, >, \"" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:90 +#: ../lib/plugin/PhotoAlbum.php:476 +msgid "Wrong server setting: allow_url_fopen set to Off" +msgstr "" + +#: ../lib/plugin/PhotoAlbum.php:480 #, c-format msgid "Unable to read %s " msgstr "" @@ -1885,7 +2171,7 @@ msgid "All %s are listed below." msgstr "Los cambios mas recientes son:" #: ../lib/plugin/RecentChanges.php:250 ../lib/plugin/RecentChanges.php:263 -#: ../lib/plugin/RecentChanges.php:362 ../lib/plugin/RecentChanges.php:438 +#: ../lib/plugin/RecentChanges.php:365 ../lib/plugin/RecentChanges.php:441 #: ../themes/Portland/templates/editpage.tmpl:66 msgid "RecentEdits" msgstr "" @@ -1897,33 +2183,33 @@ msgid "No changes found" msgstr "Mostrar el código fuente de la página y referencias" # lib/fullsearch.php:48 -#: ../lib/plugin/RecentChanges.php:517 +#: ../lib/plugin/RecentChanges.php:523 msgid "Title Search" msgstr "Una búsqueda de títulos" # lib/pageinfo.php:21 -#: ../lib/plugin/RecentChanges.php:740 +#: ../lib/plugin/RecentChanges.php:746 #, fuzzy msgid "Show minor edits for:" msgstr "Mostrar el código fuente de la página y referencias" # lib/pageinfo.php:21 -#: ../lib/plugin/RecentChanges.php:742 +#: ../lib/plugin/RecentChanges.php:748 #, fuzzy msgid "Show all changes for:" msgstr "Mostrar el código fuente de la página y referencias" # lib/pageinfo.php:21 -#: ../lib/plugin/RecentChanges.php:744 +#: ../lib/plugin/RecentChanges.php:750 #, fuzzy msgid "Show changes for:" msgstr "Mostrar el código fuente de la página y referencias" -#: ../lib/plugin/RecentChanges.php:764 +#: ../lib/plugin/RecentChanges.php:770 msgid "1 day" msgstr "1 día" -#: ../lib/plugin/RecentChanges.php:768 +#: ../lib/plugin/RecentChanges.php:774 #, c-format msgid "%s days" msgstr "%s dias" @@ -1953,29 +2239,50 @@ msgstr "" msgid "Viewing redirecting page." msgstr "" -#: ../lib/plugin/SiteMap.php:49 +#: ../lib/plugin/RichTable.php:32 +msgid "RichTable" +msgstr "" + +#: ../lib/plugin/RichTable.php:36 +msgid "Layout tables using a very rich markup style." +msgstr "" + +#: ../lib/plugin/SiteMap.php:51 msgid "SiteMap" msgstr "" -#: ../lib/plugin/SiteMap.php:53 +#: ../lib/plugin/SiteMap.php:55 #, c-format msgid "Recursively get BackLinks or links for %s" msgstr "" -#: ../lib/plugin/SiteMap.php:161 +#: ../lib/plugin/SiteMap.php:169 #, c-format msgid "(max. recursion level: %d)" msgstr "" -#: ../lib/plugin/SystemInfo.php:52 -msgid "SystemInfo" +#: ../lib/plugin/SqlResult.php:42 +msgid "SqlResult" msgstr "" -#: ../lib/plugin/SystemInfo.php:56 -msgid "Provides access to PhpWiki's lower level system information." +#: ../lib/plugin/SqlResult.php:46 +msgid "Display arbitrary SQL result tables" msgstr "" -#: ../lib/plugin/SystemInfo.php:83 +#: ../lib/plugin/SqlResult.php:81 ../lib/plugin/WikiPoll.php:159 +#: ../lib/plugin/WikiPoll.php:228 +msgid "Sorry! You must wait at least 20 minutes until you can vote again!" +msgstr "" + +#: ../lib/plugin/SystemInfo.php:52 +msgid "SystemInfo" +msgstr "" + +#: ../lib/plugin/SystemInfo.php:56 +msgid "Provides access to PhpWiki's lower level system information." +msgstr "" + +#: ../lib/plugin/SystemInfo.php:83 msgid "db type:" msgstr "" @@ -2211,6 +2518,11 @@ msgstr "" msgid "Include an external web page within the body of a wiki page." msgstr "" +#: ../lib/plugin/Transclude.php:76 +#, c-format +msgid "%s parameter missing" +msgstr "" + # lib/msql.php:237 lib/msql.php:312 #: ../lib/plugin/Transclude.php:88 #, fuzzy @@ -2228,6 +2540,84 @@ msgstr "Guardar" msgid "Transcluded from %s" msgstr "Inserción de '%s' falló" +#: ../lib/plugin/TranslateText.php:44 ../lib/plugin/_WikiTranslation.php:98 +msgid "TranslateText" +msgstr "" + +#: ../lib/plugin/TranslateText.php:48 +msgid "Define a translation for a specified text" +msgstr "" + +#: ../lib/plugin/TranslateText.php:68 +msgid "This internal action page cannot viewed." +msgstr "" + +#: ../lib/plugin/TranslateText.php:69 +msgid "You can only use it via the _WikiTranslation plugin." +msgstr "" + +#: ../lib/plugin/TranslateText.php:76 +msgid "Translation Error!" +msgstr "" + +#: ../lib/plugin/TranslateText.php:77 +msgid "" +"Your translated text is either empty or equal to the untranslated text. " +"Please try again." +msgstr "" + +#: ../lib/plugin/TranslateText.php:82 +msgid "ContributedTranslations" +msgstr "" + +#: ../lib/plugin/TranslateText.php:96 +#, c-format +msgid "Translate '%s' to '%s' in *%s*" +msgstr "" + +#: ../lib/plugin/TranslateText.php:99 +#, c-format +msgid "Translate %s to %s in %s" +msgstr "" + +#: ../lib/plugin/TranslateText.php:103 +#, fuzzy +msgid "Thanks for adding this translation!" +msgstr "Gracias por editar %s." + +#: ../lib/plugin/TranslateText.php:104 +#, c-format +msgid "" +"Your translated text doesn't yet appear in this %s, but the Administrator " +"will pick it up and add to the installation." +msgstr "" + +#: ../lib/plugin/TranslateText.php:106 +#, c-format +msgid "Your translation is stored in %s" +msgstr "" + +#: ../lib/plugin/TranslateText.php:112 ../lib/plugin/TranslateText.php:114 +#, c-format +msgid "From english to %s: " +msgstr "" + +# lib/msql.php:237 lib/msql.php:312 +#: ../lib/plugin/TranslateText.php:115 +#, fuzzy +msgid "Translate" +msgstr "Inserción de '%s' falló" + +#: ../lib/plugin/TranslateText.php:118 ../lib/plugin/WikiAdminChmod.php:163 +#: ../lib/plugin/WikiAdminRemove.php:201 ../lib/plugin/WikiAdminRename.php:158 +#: ../lib/plugin/WikiAdminSearchReplace.php:185 +#: ../lib/plugin/WikiAdminSelect.php:196 ../lib/plugin/WikiAdminSelect.php:217 +#: ../lib/plugin/WikiAdminSetAcl.php:157 ../lib/removepage.php:22 +#: ../themes/default/templates/login.tmpl:68 +#: ../themes/default/templates/userprefs.tmpl:214 +msgid "Cancel" +msgstr "Cancelar" + #: ../lib/plugin/UnfoldSubpages.php:36 msgid "UnfoldSubpages" msgstr "" @@ -2236,68 +2626,86 @@ msgstr "" msgid "Includes the content of all SubPages of the current page." msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:83 +#: ../lib/plugin/UnfoldSubpages.php:84 #, c-format msgid "... first %d words" msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:164 +#: ../lib/plugin/UnfoldSubpages.php:152 #, c-format msgid " ... first %d lines" msgstr "" # lib/msql.php:237 lib/msql.php:312 -#: ../lib/plugin/UnfoldSubpages.php:188 +#: ../lib/plugin/UnfoldSubpages.php:176 #, fuzzy, c-format msgid "Included from %s:" msgstr "Inserción de '%s' falló" -#: ../lib/plugin/UpLoad.php:52 -msgid "Simple Plugin to load files up to server" +#: ../lib/plugin/UpLoad.php:53 +msgid "Upload files to the local InterWiki Upload:" msgstr "" -#: ../lib/plugin/UpLoad.php:79 ../lib/plugin/WikiForm.php:100 +#: ../lib/plugin/UpLoad.php:84 ../lib/plugin/WikiForm.php:100 msgid "Upload" msgstr "" -#: ../lib/plugin/UpLoad.php:102 -msgid "ACCESS DENIED: Please log in to upload files" +#: ../lib/plugin/UpLoad.php:100 +msgid "ACCESS DENIED: You must log in to upload files." msgstr "" -#: ../lib/plugin/UpLoad.php:116 +#: ../lib/plugin/UpLoad.php:112 #, c-format msgid "Files with extension %s are not allowed" msgstr "" -#: ../lib/plugin/UpLoad.php:122 +#: ../lib/plugin/UpLoad.php:116 #, c-format msgid "There is already a file with name %s uploaded" msgstr "" -#: ../lib/plugin/UpLoad.php:128 +#: ../lib/plugin/UpLoad.php:120 msgid "Sorry but this file is too big" msgstr "" -#: ../lib/plugin/UpLoad.php:133 -msgid "File successfully uploaded to location:" +#: ../lib/plugin/UpLoad.php:127 +msgid "File successfully uploaded." msgstr "" -#: ../lib/plugin/UpLoad.php:141 +#: ../lib/plugin/UpLoad.php:144 +#, fuzzy, c-format +msgid "uploaded %s" +msgstr "Guardar" + +#: ../lib/plugin/UpLoad.php:150 +#, fuzzy +msgid "Uploading failed: " +msgstr "Bloquear Página" + +#: ../lib/plugin/UpLoad.php:168 msgid "Error: the upload log is not writable" msgstr "" -#: ../lib/plugin/UpLoad.php:145 +#: ../lib/plugin/UpLoad.php:172 msgid "Error: can't open the upload logfile" msgstr "" -#: ../lib/plugin/UpLoad.php:164 -#, fuzzy -msgid "Uploading failed." -msgstr "Bloquear Página" +#: ../lib/plugin/UserFileManagement.php:38 +msgid "UserFileManagement" +msgstr "" + +#: ../lib/plugin/UserFileManagement.php:42 +msgid "Allows registered users to manipulate his/her files" +msgstr "" + +#: ../lib/plugin/UserFileManagement.php:136 +msgid "Current directory: " +msgstr "" #: ../lib/plugin/UserPreferences.php:34 #: ../themes/default/templates/head.tmpl:82 #: ../themes/default/templates/homepage.tmpl:11 +#: ../themes/smaller/templates/navbar.tmpl:25 #, fuzzy msgid "UserPreferences" msgstr "Preferencias" @@ -2308,21 +2716,124 @@ msgid "" "cannot be saved." msgstr "" -#: ../lib/plugin/UserPreferences.php:79 +#: ../lib/plugin/UserPreferences.php:80 msgid "Wrong password. Try again." msgstr "" +#: ../lib/plugin/UserPreferences.php:97 +#, fuzzy +msgid "Password updated." +msgstr "Contraseña" + +#: ../lib/plugin/UserPreferences.php:99 ../lib/plugin/UserPreferences.php:102 +msgid "Password cannot be changed." +msgstr "" + # lib/pageinfo.php:21 -#: ../lib/plugin/UserPreferences.php:85 +#: ../lib/plugin/UserPreferences.php:106 #, fuzzy msgid "No changes." msgstr "Mostrar el código fuente de la página y referencias" -#: ../lib/plugin/UserPreferences.php:89 +#: ../lib/plugin/UserPreferences.php:109 #, c-format msgid "%d UserPreferences fields successfully updated." msgstr "" +#: ../lib/plugin/UserRegistration.php:16 +msgid "UserRegistration" +msgstr "" + +#: ../lib/plugin/UserRegistration.php:28 +msgid "Only the administrator is allowed to register new users." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:31 +msgid "Warning: You are already signed in, you cannot create another account." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:56 +msgid "Error: You must specify a user-id for the account." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:59 +msgid "Error: The user-id you specified is too short." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:63 +msgid "Error: The user-id you specified is not a valid WikiWord." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:66 +msgid "" +"Error: The user-id you specified is already in use, please choose another." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:72 +msgid "Error: You must specify a password for the account." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:74 +msgid "Error: The password you specified is too short." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:78 +msgid "Error: You must specify an email address." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:81 +msgid "Error: The email address you specified is not valid." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:84 +msgid "Error: You must specify a first name." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:87 +msgid "Error: You must specify a last name." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:97 +msgid "" +"Error: There seemed to be some problem creating the new home page. Please " +"try again or contact the administrator for assistance." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:112 +msgid "You have been registered at " +msgstr "" + +#: ../lib/plugin/UserRegistration.php:114 +msgid "Your username is: " +msgstr "" + +#: ../lib/plugin/UserRegistration.php:115 +msgid "Your password is: " +msgstr "" + +#: ../lib/plugin/UserRegistration.php:116 +#, fuzzy +msgid "Your home page is: " +msgstr "página nueva" + +#: ../lib/plugin/UserRegistration.php:118 +msgid "Welcome to our Wiki." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:126 +msgid " has been created." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:130 +msgid "The user has been sent their login information by email." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:132 +msgid "" +"Your password was sent to your email address. Please check your mail and " +"then login." +msgstr "" + #: ../lib/plugin/VisualWiki.php:93 msgid "" "Visualizes the Wiki structure in a graph using the 'dot' commandline tool " @@ -2347,7 +2858,7 @@ msgstr "BuscarP msgid "Lists referenced page names which do not exist yet." msgstr "" -#: ../lib/plugin/WantedPages.php:47 +#: ../lib/plugin/WantedPages.php:47 ../lib/plugin/_WikiTranslation.php:79 msgid "PgsrcTranslation" msgstr "" @@ -2370,214 +2881,821 @@ msgstr "" msgid "Count" msgstr "" +#: ../lib/plugin/WhoIsOnline.php:38 +msgid "WhoIsOnline" +msgstr "" + +#: ../lib/plugin/WhoIsOnline.php:42 +msgid "Show summary information of the current user sessions." +msgstr "" + +#: ../lib/plugin/WhoIsOnline.php:98 +msgid "Guest" +msgstr "" + +#: ../lib/plugin/WhoIsOnline.php:108 +#, fuzzy +msgid "" +msgstr "Ninguna" + +#: ../lib/plugin/WhoIsOnline.php:169 +#, c-format +msgid "%d minutes" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:42 +msgid "WikiAdminChmod" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:46 ../lib/plugin/WikiAdminSetAcl.php:45 +msgid "Set individual page permissions." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:80 +#, c-format +msgid "chmod page '%s' to '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:83 +#, c-format +msgid "Couldn't chmod page '%s' to '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:87 +msgid "Invalid chmod string" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:92 ../lib/plugin/WikiAdminSetAcl.php:86 +#, fuzzy, c-format +msgid "%s pages have been changed." +msgstr "Esto es un cambio pequeño." + +# lib/pageinfo.php:21 +#: ../lib/plugin/WikiAdminChmod.php:95 +#: ../lib/plugin/WikiAdminSearchReplace.php:108 +#: ../lib/plugin/WikiAdminSetAcl.php:89 +#, fuzzy +msgid "No pages changed." +msgstr "Mostrar el código fuente de la página y referencias" + +#: ../lib/plugin/WikiAdminChmod.php:150 ../lib/plugin/WikiAdminRemove.php:175 +#: ../lib/plugin/WikiAdminRename.php:144 +#: ../lib/plugin/WikiAdminSearchReplace.php:171 +#: ../lib/plugin/WikiAdminSetAcl.php:144 +msgid "Yes" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:154 ../lib/plugin/WikiAdminSetAcl.php:148 +#, fuzzy +msgid "Are you sure you want to permanently change the selected files?" +msgstr "Borrar la página ahora" + +#: ../lib/plugin/WikiAdminChmod.php:157 +msgid "Chmod" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:159 ../lib/plugin/WikiAdminSetAcl.php:153 +#, fuzzy +msgid "Select the pages to change:" +msgstr "Borrar la página ahora" + +#: ../lib/plugin/WikiAdminChmod.php:180 ../lib/plugin/WikiAdminSetAcl.php:173 +msgid "This plugin is currently under development and does not work!" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:181 +msgid "Chmod to permission:" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:184 +msgid "(ugo : rwx)" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:191 ../lib/plugin/WikiAdminSetAcl.php:206 +msgid "Propagate new permissions to all subpages?" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:193 ../lib/plugin/WikiAdminSetAcl.php:208 +msgid "(disable individual page permissions, enable inheritance)?" +msgstr "" + #: ../lib/plugin/WikiAdminRemove.php:39 msgid "WikiAdminRemove" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:43 +#: ../lib/plugin/WikiAdminRemove.php:43 +#, fuzzy +msgid "Permanently remove all selected pages." +msgstr "Borrar la página ahora" + +#: ../lib/plugin/WikiAdminRemove.php:117 ../lib/removepage.php:46 +#, c-format +msgid "Removed page '%s' successfully." +msgstr "Página '%s' borrada satisfactoriamente." + +#: ../lib/plugin/WikiAdminRemove.php:177 +msgid "Are you sure you want to permanently remove the selected files?" +msgstr "" + +#: ../lib/plugin/WikiAdminRemove.php:180 +#, fuzzy +msgid "Remove selected pages" +msgstr "Borrar la página ahora" + +#: ../lib/plugin/WikiAdminRemove.php:181 +#, fuzzy +msgid "Permanently remove the selected files:" +msgstr "Borrar la página ahora" + +#: ../lib/plugin/WikiAdminRemove.php:184 +#, c-format +msgid "Also pages which have been deleted at least %s days." +msgstr "" + +#: ../lib/plugin/WikiAdminRemove.php:188 +#, fuzzy +msgid "List all pages." +msgstr "Bloquear Página" + +#: ../lib/plugin/WikiAdminRemove.php:194 +#, c-format +msgid "(Pages which have been deleted at least %s days are already checked.)" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:39 +msgid "WikiAdminRename" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:43 +#, fuzzy +msgid "Rename selected pages." +msgstr "Borrar la página ahora" + +#: ../lib/plugin/WikiAdminRename.php:76 +#, fuzzy, c-format +msgid "Renamed page '%s' to '%s'." +msgstr "Página '%s' borrada satisfactoriamente." + +#: ../lib/plugin/WikiAdminRename.php:79 +#, c-format +msgid "Couldn't rename page '%s' to '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:85 +#, c-format +msgid "%s pages have been permanently renamed." +msgstr "" + +# lib/pageinfo.php:21 +#: ../lib/plugin/WikiAdminRename.php:88 +#, fuzzy +msgid "No pages renamed." +msgstr "Mostrar el código fuente de la página y referencias" + +#: ../lib/plugin/WikiAdminRename.php:147 +#, fuzzy +msgid "Are you sure you want to permanently rename the selected files?" +msgstr "Borrar la página ahora" + +#: ../lib/plugin/WikiAdminRename.php:151 +#, fuzzy +msgid "Rename selected pages" +msgstr "Borrar la página ahora" + +#: ../lib/plugin/WikiAdminRename.php:152 +#, fuzzy +msgid "Select the pages to rename:" +msgstr "Borrar la página ahora" + +#: ../lib/plugin/WikiAdminRename.php:173 +#, fuzzy +msgid "Rename" +msgstr "Borrar Página" + +#: ../lib/plugin/WikiAdminRename.php:173 +msgid "from" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:176 +msgid "to" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:179 +msgid "(no regex, case-sensitive)" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:182 +msgid "Change pagename in all linked pages also?" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:39 +msgid "WikiAdminSearchReplace" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:43 +msgid "Search and replace text in selected wiki pages." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:81 +#, c-format +msgid "WikiAdminSearchReplace %s by %s" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:89 +msgid "Error: Empty search string." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:96 +#, c-format +msgid "Replaced '%s' with '%s' in page '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:99 +#, c-format +msgid "Search string '%s' not found in page '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:105 +#, c-format +msgid "%s pages changed." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:169 +msgid "Warning: The search string cannot be empty!" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:174 +msgid "" +"Are you sure you want to permanently search & replace text in the selected " +"files?" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:178 +msgid "Search & Replace" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:180 +#, fuzzy +msgid "Select the pages to search:" +msgstr "Borrar la página ahora" + +#: ../lib/plugin/WikiAdminSearchReplace.php:200 +msgid "Replace: " +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:203 +msgid "by" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:206 +msgid "(no regex) Case-exact: " +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:41 +msgid "WikiAdminSelect" +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:45 +msgid "" +"Allows selection of multiple pages which get passed to other WikiAdmin " +"plugins." +msgstr "" + +# lib/pageinfo.php:10 lib/stdlib.php:239 +#: ../lib/plugin/WikiAdminSelect.php:113 ../lib/plugin/WikiAdminSelect.php:124 +msgid "Go" +msgstr "Aceptar" + +#: ../lib/plugin/WikiAdminSelect.php:118 +msgid "Select: " +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:157 +#, c-format +msgid "Selected page '%s' passed to '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:194 +#, fuzzy +msgid "Select pages" +msgstr "Borrar la página ahora" + +#: ../lib/plugin/WikiAdminSetAcl.php:41 +msgid "WikiAdminSetAcl" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:74 +#, fuzzy, c-format +msgid "set acl for page '%s'." +msgstr "Bloquear Página" + +# lib/msql.php:29 lib/mysql.php:36 +#: ../lib/plugin/WikiAdminSetAcl.php:77 +#, fuzzy, c-format +msgid "Couldn't setacl page '%s'." +msgstr "" +"No se puede establecer conexión con la base de datos %s, me doy por vencido." + +#: ../lib/plugin/WikiAdminSetAcl.php:81 +msgid "Invalid acl" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:151 +msgid "SetAcl" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:181 +#, fuzzy, c-format +msgid "Pages: %s" +msgstr "Guardar" + +#: ../lib/plugin/WikiAdminSetAcl.php:184 +#, c-format +msgid "page permission inherited from %s" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:186 +msgid "invidual page permission" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:188 +msgid "default page permission" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:189 +#, fuzzy +msgid "Type: " +msgstr "Nombre de la Página" + +#: ../lib/plugin/WikiAdminUtils.php:29 +msgid "WikiAdminUtils" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:33 +msgid "Miscellaneous utility functions of use to the administrator." +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:66 +msgid "You must be an administrator to use this plugin." +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:95 +msgid "WikiAdminUtils says:" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:97 ../lib/stdlib.php:1335 +msgid "Okay" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:103 +msgid "Purge Markup Cache" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:104 +msgid "Delete Pages With Invalid Names" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:114 +msgid "Markup cache purged!" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:130 +msgid "No pages with bad names were found." +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:138 +#, c-format +msgid "Deleted %s pages with invalid names:" +msgstr "" + +#: ../lib/plugin/WikiBlog.php:77 +msgid "WikiBlog" +msgstr "" + +# lib/pageinfo.php:21 +#: ../lib/plugin/WikiBlog.php:81 +#, fuzzy, c-format +msgid "Show and add blogs for %s" +msgstr "Mostrar el código fuente de la página y referencias" + +#: ../lib/plugin/WikiBlog.php:156 +#, c-format +msgid "No page specified for %s" +msgstr "" + +#: ../lib/plugin/WikiBlog.php:186 ../lib/plugin/WikiForum.php:136 +msgid "New comment." +msgstr "" + +#: ../lib/plugin/WikiBlog.php:265 ../lib/plugin/WikiForum.php:208 +#, c-format +msgid "Comments on %s:" +msgstr "" + +#: ../lib/plugin/WikiForm.php:32 +msgid "WikiForm" +msgstr "" + +#: ../lib/plugin/WikiForm.php:67 +msgid "Load File" +msgstr "" + +#: ../lib/plugin/WikiForm.php:73 +msgid "Login" +msgstr "" + +#: ../lib/plugin/WikiForm.php:81 +#, fuzzy +msgid "Dump Pages" +msgstr "Todas las Páginas" + +#: ../lib/plugin/WikiForm.php:89 +msgid "Dump Pages as XHTML" +msgstr "" + +#: ../lib/plugin/WikiForm.php:104 +#, c-format +msgid "WikiForm: %s: unknown action" +msgstr "" + +#: ../lib/plugin/WikiForum.php:46 +msgid "WikiForum" +msgstr "" + +#: ../lib/plugin/WikiForum.php:50 +msgid "Handles threaded topics with comments/news and provide a input form" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:59 +msgid "WikiPoll" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:63 +msgid "Enable configurable polls" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:185 +msgid "Not enough questions answered!" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:194 ../lib/plugin/WikiPoll.php:255 +#, c-format +msgid "Missing %s for %s" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:222 +msgid "Ok" +msgstr "" + +# lib/msql.php:237 lib/msql.php:312 +#: ../lib/plugin/WikiPoll.php:225 +#, fuzzy +msgid "Reset" +msgstr "Inserción de '%s' falló" + +#: ../lib/plugin/WikiPoll.php:271 ../lib/plugin/WikiPoll.php:285 +#, c-format +msgid " %d%% (%d/%d)" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:301 ../lib/plugin/WikiPoll.php:303 +msgid "The result of this poll so far:" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:301 +#, fuzzy +msgid "Thanks for participating!" +msgstr "Gracias por editar %s." + +#: ../lib/plugin/_AuthInfo.php:35 +msgid "_AuthInfo" +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:39 +msgid "Display general and user specific auth information." +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:65 +msgid "General Auth Settings" +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:100 +#, c-format +msgid "Personal Auth Settings for '%s'" +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:102 +msgid "No userid" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:30 ../lib/plugin/_WikiTranslation.php:57 +#: ../themes/Portland/templates/actionbar.tmpl:21 +#: ../themes/default/templates/actionbar.tmpl:32 +#: ../themes/smaller/templates/info.tmpl:175 +msgid "DebugInfo" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:34 +#, c-format +msgid "Get debugging information for %s." +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:54 +#, c-format +msgid "Querying backend directly for '%s'" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:64 +#, c-format +msgid "No pagedata for %s" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:95 +msgid "" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:95 +msgid "" +msgstr "" + +#: ../lib/plugin/_PreferencesInfo.php:30 +#: ../themes/default/templates/userprefs.tmpl:12 +#, fuzzy +msgid "PreferencesInfo" +msgstr "Referencias" + +#: ../lib/plugin/_PreferencesInfo.php:34 +#, c-format +msgid "Get preferences information for current user %s." +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:47 +#, fuzzy +msgid "AddCommentPlugin" +msgstr "Acabado." + +#: ../lib/plugin/_WikiTranslation.php:48 +#, fuzzy +msgid "AddingPages" +msgstr "Bloquear Página" + +#: ../lib/plugin/_WikiTranslation.php:49 +msgid "AuthorHistoryPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:51 +#, fuzzy +msgid "CalendarListPlugin" +msgstr "Calendario" + +#: ../lib/plugin/_WikiTranslation.php:52 +#, fuzzy +msgid "CalendarPlugin" +msgstr "Calendario" + +# lib/diff.php:997 +#: ../lib/plugin/_WikiTranslation.php:53 +#, fuzzy +msgid "CategoryCategory" +msgstr "Página actual:" + +# lib/diff.php:997 +#: ../lib/plugin/_WikiTranslation.php:54 +#, fuzzy +msgid "CategoryHomePages" +msgstr "Página actual:" + +#: ../lib/plugin/_WikiTranslation.php:55 +#, fuzzy +msgid "CommentPlugin" +msgstr "Acabado." + +#: ../lib/plugin/_WikiTranslation.php:56 +#, fuzzy +msgid "CreateTocPlugin" +msgstr "Guardar" + +#: ../lib/plugin/_WikiTranslation.php:58 +msgid "EditMetaDataPlugin" +msgstr "" + +# lib/fullsearch.php:48 +#: ../lib/plugin/_WikiTranslation.php:59 #, fuzzy -msgid "Permanently remove all selected pages." -msgstr "Borrar la página ahora" +msgid "ExternalSearchPlugin" +msgstr "BúsquedaDeTítulos" -#: ../lib/plugin/WikiAdminRemove.php:116 ../lib/removepage.php:46 -#, c-format -msgid "Removed page '%s' successfully." -msgstr "Página '%s' borrada satisfactoriamente." +#: ../lib/plugin/_WikiTranslation.php:60 +#: ../themes/Portland/templates/navbar.tmpl:8 +#: ../themes/default/templates/head.tmpl:35 +#: ../themes/default/templates/navbar.tmpl:11 +#: ../themes/smaller/templates/navbar.tmpl:11 +msgid "FindPage" +msgstr "BuscarPágina" -#: ../lib/plugin/WikiAdminRemove.php:169 -msgid "Yes" -msgstr "" +#: ../lib/plugin/_WikiTranslation.php:61 +#, fuzzy +msgid "FrameIncludePlugin" +msgstr "BuscarPágina" -#: ../lib/plugin/WikiAdminRemove.php:171 -msgid "Are you sure you want to permanently remove the selected files?" +# lib/stdlib.php:384 lib/stdlib.php:445 +#: ../lib/plugin/_WikiTranslation.php:62 +#, fuzzy +msgid "FullRecentChanges" +msgstr "CambiosRecientes" + +#: ../lib/plugin/_WikiTranslation.php:63 +msgid "HelloWorldPlugin" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:174 +#: ../lib/plugin/_WikiTranslation.php:64 #, fuzzy -msgid "Remove selected pages" -msgstr "Borrar la página ahora" +msgid "HomePageAlias" +msgstr "PáginaPrincipal" -#: ../lib/plugin/WikiAdminRemove.php:175 +#: ../lib/plugin/_WikiTranslation.php:65 #, fuzzy -msgid "Permanently remove the selected files:" -msgstr "Borrar la página ahora" +msgid "IncludePagePlugin" +msgstr "BuscarPágina" -#: ../lib/plugin/WikiAdminRemove.php:178 -#, c-format -msgid "Also pages which have been deleted at least %s days." +# lib/fullsearch.php:48 +#: ../lib/plugin/_WikiTranslation.php:66 +#, fuzzy +msgid "InterWiki" +msgstr "BúsquedaDeTítulos" + +#: ../lib/plugin/_WikiTranslation.php:67 +msgid "LinkIcons" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:182 -#, fuzzy -msgid "List all pages." -msgstr "Bloquear Página" +#: ../lib/plugin/_WikiTranslation.php:68 +msgid "MagicPhpWikiURLs" +msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:188 -#, c-format -msgid "(Pages which have been deleted at least %s days are already checked.)" +#: ../lib/plugin/_WikiTranslation.php:69 +msgid "MoreAboutMechanics" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:195 ../lib/plugin/WikiAdminSelect.php:195 -#: ../lib/plugin/WikiAdminSelect.php:216 ../lib/removepage.php:22 -#: ../themes/default/templates/login.tmpl:72 -#: ../themes/default/templates/userprefs.tmpl:214 -msgid "Cancel" -msgstr "Cancelar" +#: ../lib/plugin/_WikiTranslation.php:70 +msgid "NewMarkupTestPage" +msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:41 -msgid "WikiAdminSelect" +#: ../lib/plugin/_WikiTranslation.php:71 +msgid "OldMarkupTestPage" msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:45 -msgid "" -"Allows selection of multiple pages which get passed to other WikiAdmin " -"plugins." +#: ../lib/plugin/_WikiTranslation.php:72 +msgid "OldStyleTablePlugin" msgstr "" -# lib/pageinfo.php:10 lib/stdlib.php:239 -#: ../lib/plugin/WikiAdminSelect.php:88 ../lib/plugin/WikiAdminSelect.php:112 -#: ../lib/plugin/WikiAdminSelect.php:123 -msgid "Go" -msgstr "Aceptar" +#: ../lib/plugin/_WikiTranslation.php:73 +msgid "PageDump" +msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:117 -msgid "Select: " +#: ../lib/plugin/_WikiTranslation.php:74 +msgid "PageGroupTest" msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:156 -#, c-format -msgid "Selected page '%s' passed to '%s'." +#: ../lib/plugin/_WikiTranslation.php:75 +msgid "PageGroupTestFour" msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:193 -#, fuzzy -msgid "Select pages" -msgstr "Borrar la página ahora" +#: ../lib/plugin/_WikiTranslation.php:76 +msgid "PageGroupTestOne" +msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:29 -msgid "WikiAdminUtils" +#: ../lib/plugin/_WikiTranslation.php:77 +msgid "PageGroupTestThree" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:33 -msgid "Miscellaneous utility functions of use to the administrator." +#: ../lib/plugin/_WikiTranslation.php:78 +msgid "PageGroupTestTwo" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:65 -msgid "You must be an administrator to use this plugin." +#: ../lib/plugin/_WikiTranslation.php:80 +msgid "PhotoAlbumPlugin" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:93 -msgid "WikiAdminUtils says:" +#: ../lib/plugin/_WikiTranslation.php:81 +msgid "PhpHighlightPlugin" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:95 ../lib/stdlib.php:1320 -msgid "Okay" +#: ../lib/plugin/_WikiTranslation.php:82 +msgid "PhpWeatherPlugin" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:101 -msgid "Purge Markup Cache" +#: ../lib/plugin/_WikiTranslation.php:83 +msgid "PhpWiki" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:102 -msgid "Delete Pages With Invalid Names" +#: ../lib/plugin/_WikiTranslation.php:84 +msgid "PhpWikiAdministration/Chmod" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:112 -msgid "Markup cache purged!" +#: ../lib/plugin/_WikiTranslation.php:85 +msgid "PhpWikiAdministration/Remove" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:128 -msgid "No pages with bad names were found." +#: ../lib/plugin/_WikiTranslation.php:86 +msgid "PhpWikiAdministration/Rename" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:136 -#, c-format -msgid "Deleted %s pages with invalid names:" +#: ../lib/plugin/_WikiTranslation.php:87 +msgid "PhpWikiAdministration/Replace" msgstr "" -#: ../lib/plugin/WikiBlog.php:74 -msgid "WikiBlog" +#: ../lib/plugin/_WikiTranslation.php:88 +msgid "PhpWikiDocumentation" msgstr "" -# lib/pageinfo.php:21 -#: ../lib/plugin/WikiBlog.php:78 -#, fuzzy, c-format -msgid "Show and add blogs for %s" -msgstr "Mostrar el código fuente de la página y referencias" +#: ../lib/plugin/_WikiTranslation.php:89 +msgid "PhpWikiPoll" +msgstr "" -#: ../lib/plugin/WikiBlog.php:183 -msgid "New comment." +#: ../lib/plugin/_WikiTranslation.php:90 +msgid "RawHtmlPlugin" msgstr "" -#: ../lib/plugin/WikiBlog.php:257 -#, c-format -msgid "Comments on %s:" +#: ../lib/plugin/_WikiTranslation.php:91 +msgid "RecentVisitors" msgstr "" -#: ../lib/plugin/WikiForm.php:32 -msgid "WikiForm" +# lib/msql.php:237 lib/msql.php:312 +#: ../lib/plugin/_WikiTranslation.php:92 +#, fuzzy +msgid "RedirectToPlugin" +msgstr "Inserción de '%s' falló" + +#: ../lib/plugin/_WikiTranslation.php:93 +msgid "ReleaseNotes" msgstr "" -#: ../lib/plugin/WikiForm.php:67 -msgid "Load File" +#: ../lib/plugin/_WikiTranslation.php:94 +msgid "RichTablePlugin" msgstr "" -#: ../lib/plugin/WikiForm.php:73 -msgid "Login" +#: ../lib/plugin/_WikiTranslation.php:95 +msgid "SteveWainstead" msgstr "" -#: ../lib/plugin/WikiForm.php:81 +#: ../lib/plugin/_WikiTranslation.php:96 +msgid "SystemInfoPlugin" +msgstr "" + +# lib/msql.php:237 lib/msql.php:312 +#: ../lib/plugin/_WikiTranslation.php:97 #, fuzzy -msgid "Dump Pages" -msgstr "Todas las Páginas" +msgid "TranscludePlugin" +msgstr "Inserción de '%s' falló" -#: ../lib/plugin/WikiForm.php:89 -msgid "Dump Pages as XHTML" +#: ../lib/plugin/_WikiTranslation.php:99 +msgid "UnfoldSubpagesPlugin" msgstr "" -#: ../lib/plugin/WikiForm.php:104 -#, c-format -msgid "WikiForm: %s: unknown action" +#: ../lib/plugin/_WikiTranslation.php:100 +msgid "UpLoad" msgstr "" -#: ../lib/plugin/_BackendInfo.php:30 -#: ../themes/Portland/templates/actionbar.tmpl:21 -#: ../themes/default/templates/actionbar.tmpl:32 -msgid "DebugInfo" +#: ../lib/plugin/_WikiTranslation.php:101 +msgid "WabiSabi" msgstr "" -#: ../lib/plugin/_BackendInfo.php:34 -#, c-format -msgid "Get debugging information for %s." +#: ../lib/plugin/_WikiTranslation.php:102 +msgid "WikiBlogPlugin" msgstr "" -#: ../lib/plugin/_BackendInfo.php:54 -#, c-format -msgid "Querying backend directly for '%s'" +#: ../lib/plugin/_WikiTranslation.php:103 +msgid "WikiPlugin" msgstr "" -#: ../lib/plugin/_BackendInfo.php:64 -#, c-format -msgid "No pagedata for %s" +#: ../lib/plugin/_WikiTranslation.php:104 +#: ../themes/default/templates/head.tmpl:70 +msgid "WikiWikiWeb" msgstr "" -#: ../lib/plugin/_BackendInfo.php:95 -msgid "" +#: ../lib/plugin/_WikiTranslation.php:113 +msgid "_WikiTranslation" msgstr "" -#: ../lib/plugin/_BackendInfo.php:95 -msgid "" +#: ../lib/plugin/_WikiTranslation.php:117 +msgid "Show translations of various words or pages" msgstr "" -#: ../lib/plugin/_PreferencesInfo.php:30 -#: ../themes/default/templates/userprefs.tmpl:12 -#, fuzzy -msgid "PreferencesInfo" -msgstr "Referencias" +#: ../lib/plugin/_WikiTranslation.php:266 +#, c-format +msgid "" +"TODO: Google can only translate from english and french. Find a translation " +"service for %s to language %s" +msgstr "" -#: ../lib/plugin/_PreferencesInfo.php:34 +#: ../lib/plugin/_WikiTranslation.php:270 #, c-format -msgid "Get preferences information for current user %s." +msgid "%s is empty" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:360 +#, c-format +msgid "Define the translation for %s in %s" msgstr "" #: ../lib/plugin/text2png.php:46 @@ -2630,102 +3748,110 @@ msgstr "" msgid "Remove page" msgstr "Borrar página" -#: ../lib/stdlib.php:236 ../lib/stdlib.php:255 +#: ../lib/stdlib.php:234 ../lib/stdlib.php:253 msgid "BAD URL -- remove all of <, >, \"" msgstr "" -#: ../lib/stdlib.php:316 +#: ../lib/stdlib.php:314 msgid "BAD phpwiki: URL" msgstr "" -#: ../lib/stdlib.php:354 +#: ../lib/stdlib.php:352 msgid "Lock page to enable link" msgstr "" -#: ../lib/stdlib.php:453 +#: ../lib/stdlib.php:451 #, c-format msgid "'%s': Bad page name: %s" msgstr "" -#: ../lib/stdlib.php:490 +#: ../lib/stdlib.php:488 msgid "White space converted to single space" msgstr "" -#: ../lib/stdlib.php:495 +#: ../lib/stdlib.php:493 msgid "Control characters not allowed" msgstr "" -#: ../lib/stdlib.php:504 +#: ../lib/stdlib.php:502 #, c-format msgid "Leading %s not allowed" msgstr "" -#: ../lib/stdlib.php:507 +#: ../lib/stdlib.php:505 msgid "';' and ':' in pagenames are deprecated" msgstr "" -#: ../lib/stdlib.php:511 +#: ../lib/stdlib.php:509 msgid "too long" msgstr "" -#: ../lib/stdlib.php:516 +#: ../lib/stdlib.php:514 msgid "illegal pagename" msgstr "" -#: ../lib/stdlib.php:758 +#: ../lib/stdlib.php:756 msgid "Revision Not Found" msgstr "" # lib/pageinfo.php:36 -#: ../lib/stdlib.php:759 +#: ../lib/stdlib.php:757 #, fuzzy, c-format msgid "I'm sorry. Version %d of %s is not in the database." msgstr "El nombre de la página '%s' no está en la base de datos" -#: ../lib/stdlib.php:762 +#: ../lib/stdlib.php:760 #, fuzzy msgid "Bad Version" msgstr "Versión:" -#: ../lib/stdlib.php:898 +#: ../lib/stdlib.php:896 msgid "-???" msgstr "" -#: ../lib/stdlib.php:901 +#: ../lib/stdlib.php:899 #, fuzzy, c-format msgid "%s b" msgstr "%s octetos" -#: ../lib/stdlib.php:903 +#: ../lib/stdlib.php:901 ../themes/smaller/templates/info.tmpl:29 #, c-format msgid "%s bytes" msgstr "%s octetos" -#: ../lib/stdlib.php:908 +#: ../lib/stdlib.php:906 #, c-format msgid "%s k" msgstr "" -#: ../lib/stdlib.php:910 +#: ../lib/stdlib.php:908 ../themes/smaller/templates/info.tmpl:32 #, fuzzy, c-format msgid "%s Kb (%s bytes)" msgstr "%s octetos" -#: ../lib/stdlib.php:1006 +#: ../lib/stdlib.php:1004 #, c-format msgid "%s: argument index out of range" msgstr "" -#: ../lib/stdlib.php:1046 ../themes/Hawaiian/lib/random.php:20 +#: ../lib/stdlib.php:1073 ../themes/Hawaiian/lib/random.php:20 #, c-format msgid "%s is empty." msgstr "" -#: ../lib/stdlib.php:1053 +#: ../lib/stdlib.php:1080 #, fuzzy, c-format msgid "Unable to open directory '%s' for reading" msgstr "Error al escribir la página '%s'" +#: ../lib/upgrade.php:134 +msgid "Upgrade disabled: user != isAdmin" +msgstr "" + +#: ../lib/upgrade.php:138 +msgid "Upgrading this PhpWiki" +msgstr "" + #: ../lib/ziplib.php:209 msgid "Can't inflate data: zlib support not enabled in this PHP" msgstr "" @@ -2751,16 +3877,18 @@ msgstr "Referencias" #: ../themes/Hawaiian/themeinfo.php:29 ../themes/MacOSX/themeinfo.php:104 #: ../themes/Portland/themeinfo.php:59 ../themes/Sidebar/themeinfo.php:32 #: ../themes/SpaceWiki/themeinfo.php:43 ../themes/default/themeinfo.php:24 +#: ../themes/smaller/themeinfo.php:26 msgid "Printer" msgstr "Impresora" #: ../themes/Hawaiian/themeinfo.php:30 ../themes/Portland/themeinfo.php:60 #: ../themes/Sidebar/themeinfo.php:33 ../themes/SpaceWiki/themeinfo.php:44 -#: ../themes/default/themeinfo.php:26 +#: ../themes/default/themeinfo.php:26 ../themes/smaller/themeinfo.php:28 msgid "Modern" msgstr "Moderno" #: ../themes/MacOSX/themeinfo.php:105 ../themes/default/themeinfo.php:25 +#: ../themes/smaller/themeinfo.php:27 msgid "Top & bottom toolbars" msgstr "" @@ -2770,12 +3898,15 @@ msgstr "Editar" #: ../themes/Portland/templates/actionbar.tmpl:8 #: ../themes/default/templates/actionbar.tmpl:5 +#: ../themes/smaller/templates/actionbar.tmpl:6 msgid "Edit Old Revision" msgstr "" #: ../themes/Portland/templates/actionbar.tmpl:10 #: ../themes/default/templates/actionbar.tmpl:7 #: ../themes/default/templates/head.tmpl:45 +#: ../themes/smaller/templates/actionbar.tmpl:8 +#: ../themes/smaller/templates/info.tmpl:167 msgid "View Source" msgstr "" @@ -2815,19 +3946,19 @@ msgid "Page Execution took %s seconds" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:46 -#: ../themes/default/templates/editpage.tmpl:41 +#: ../themes/default/templates/editpage.tmpl:40 msgid "Warning: You are editing an old revision." msgstr "" # lib/pageinfo.php:70 #: ../themes/Portland/templates/editpage.tmpl:47 -#: ../themes/default/templates/editpage.tmpl:42 +#: ../themes/default/templates/editpage.tmpl:41 #, fuzzy msgid "Saving this page will overwrite the current version." msgstr "Versión archivada:" #: ../themes/Portland/templates/editpage.tmpl:62 -#: ../themes/default/templates/editpage.tmpl:89 +#: ../themes/default/templates/editpage.tmpl:95 #, c-format msgid "Author will be logged as %s." msgstr "" @@ -2844,69 +3975,63 @@ msgid "Edit Area Size" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:69 -#: ../themes/default/templates/editpage.tmpl:63 +#: ../themes/default/templates/editpage.tmpl:69 msgid "H" msgstr "Al" #: ../themes/Portland/templates/editpage.tmpl:71 -#: ../themes/default/templates/editpage.tmpl:64 +#: ../themes/default/templates/editpage.tmpl:70 msgid "W" msgstr "An" #: ../themes/Portland/templates/editpage.tmpl:73 -#: ../themes/default/templates/editpage.tmpl:65 +#: ../themes/default/templates/editpage.tmpl:71 msgid "Adjust" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:75 -#: ../themes/default/templates/editpage.tmpl:78 +#: ../themes/default/templates/editpage.tmpl:84 msgid "Use old markup" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:80 -#: ../themes/default/templates/editpage.tmpl:25 +#: ../themes/default/templates/editpage.tmpl:24 msgid "Preview only! Changes not saved." msgstr "" #: ../themes/Portland/templates/editpage.tmpl:103 #: ../themes/Portland/templates/editpage.tmpl:108 -#: ../themes/default/templates/editpage.tmpl:120 -#: ../themes/default/templates/editpage.tmpl:125 +#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:131 #, c-format msgid "See %s tips for editing." msgstr "%s tips para editar." #: ../themes/Portland/templates/editpage.tmpl:103 #: ../themes/Portland/templates/editpage.tmpl:108 -#: ../themes/default/templates/editpage.tmpl:120 -#: ../themes/default/templates/editpage.tmpl:125 +#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:131 msgid "GoodStyle" msgstr "BuenEstilo" #: ../themes/Portland/templates/editpage.tmpl:104 -#: ../themes/default/templates/editpage.tmpl:121 +#: ../themes/default/templates/editpage.tmpl:127 #, fuzzy msgid "OldTextFormattingRules" msgstr "ReglasDeFormatoDeTexto" #: ../themes/Portland/templates/editpage.tmpl:104 #: ../themes/Portland/templates/editpage.tmpl:109 -#: ../themes/default/templates/editpage.tmpl:121 -#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:127 +#: ../themes/default/templates/editpage.tmpl:132 msgid "Synopsis" msgstr "Sinopsis" #: ../themes/Portland/templates/editpage.tmpl:109 -#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:132 msgid "TextFormattingRules" msgstr "ReglasDeFormatoDeTexto" -#: ../themes/Portland/templates/navbar.tmpl:8 -#: ../themes/default/templates/head.tmpl:35 -#: ../themes/default/templates/navbar.tmpl:11 -msgid "FindPage" -msgstr "BuscarPágina" - #: ../themes/Portland/templates/viewsource.tmpl:6 #: ../themes/default/templates/viewsource.tmpl:6 msgid "This page has been locked by the administrator and cannot be edited." @@ -2924,10 +4049,14 @@ msgid "diff" msgstr "" #: ../themes/default/templates/actionbar.tmpl:35 +#: ../themes/smaller/templates/actionbar.tmpl:38 +#: ../themes/smaller/templates/info.tmpl:178 msgid "PurgeHtmlCache" msgstr "" #: ../themes/default/templates/actionbar.tmpl:36 +#: ../themes/smaller/templates/actionbar.tmpl:39 +#: ../themes/smaller/templates/info.tmpl:179 msgid "" "Purge HTML cache for this page. Regenerate from WikiMarkup when next " "accessed." @@ -2939,8 +4068,10 @@ msgid "Add a Comment" msgstr "Acabado." #: ../themes/default/templates/blogform.tmpl:12 -#: ../themes/default/templates/editpage.tmpl:71 +#: ../themes/default/templates/editpage.tmpl:77 +#: ../themes/default/templates/forum-thread.tmpl:39 #: ../themes/default/templates/info.tmpl:72 +#: ../themes/smaller/templates/info.tmpl:78 #, fuzzy msgid "Summary:" msgstr "Comentarios" @@ -2949,28 +4080,80 @@ msgstr "Comentarios" msgid "Comment:" msgstr "" +#: ../themes/default/templates/comment.tmpl:18 +#: ../themes/default/templates/wikiblog.tmpl:19 +#, fuzzy, c-format +msgid "Comment modified on %s by %s" +msgstr "modificado por última vez el %s" + +#: ../themes/default/templates/comment.tmpl:28 +#, fuzzy, c-format +msgid "%s by %s" +msgstr "por %s" + #: ../themes/default/templates/dialog.tmpl:18 msgid "Dialog" msgstr "" -#: ../themes/default/templates/editpage.tmpl:29 +#: ../themes/default/templates/editpage.tmpl:28 #, c-format msgid "" "Please continue editing. (You'll find your %s at the bottom of the page.)" msgstr "" -#: ../themes/default/templates/editpage.tmpl:30 +#: ../themes/default/templates/editpage.tmpl:29 msgid "edit area" msgstr "" -#: ../themes/default/templates/editpage.tmpl:62 +#: ../themes/default/templates/editpage.tmpl:68 msgid "Edit Area Size:" msgstr "" -#: ../themes/default/templates/editpage.tmpl:77 +#: ../themes/default/templates/editpage.tmpl:83 msgid "This is a minor change." msgstr "Esto es un cambio pequeño." +#: ../themes/default/templates/forum-thread.tmpl:19 +#: ../themes/default/templates/forum-topics.tmpl:18 +msgid "New Topic" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:19 +#: ../themes/default/templates/forum-thread.tmpl:37 +msgid "Post new" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:21 +msgid "Message" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:27 +#, fuzzy, c-format +msgid "Posted: %s" +msgstr "Guardar" + +#: ../themes/default/templates/forum-thread.tmpl:28 +#: ../themes/default/templates/forum-thread.tmpl:43 +msgid "Reply" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:21 +msgid "Topics" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:22 +msgid "Replies" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:24 +msgid "Views" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:25 +#, fuzzy +msgid "Last Post" +msgstr "Final" + #: ../themes/default/templates/head.tmpl:31 msgid "HowToUseWiki" msgstr "" @@ -2979,10 +4162,6 @@ msgstr "" msgid "SandBox" msgstr "" -#: ../themes/default/templates/head.tmpl:70 -msgid "WikiWikiWeb" -msgstr "" - #: ../themes/default/templates/homepage.tmpl:10 #, c-format msgid "You can personalize various settings in %s." @@ -3004,100 +4183,121 @@ msgid "CategoryHomepage" msgstr "Página actual:" #: ../themes/default/templates/info.tmpl:31 +#: ../themes/smaller/templates/info.tmpl:37 #, fuzzy msgid "1 word" msgstr "%s dias" #: ../themes/default/templates/info.tmpl:33 +#: ../themes/smaller/templates/info.tmpl:39 #, c-format msgid "%s words" msgstr "%s dias" #: ../themes/default/templates/info.tmpl:37 +#: ../themes/smaller/templates/info.tmpl:43 #, c-format msgid "Version %s" msgstr "Versión %s" #: ../themes/default/templates/info.tmpl:38 +#: ../themes/smaller/templates/info.tmpl:44 msgid "Original (1.2 or 1.0)" msgstr "" #: ../themes/default/templates/info.tmpl:65 +#: ../themes/smaller/templates/info.tmpl:71 #, fuzzy msgid "Last Modified:" msgstr "modificado por última vez el %s" #: ../themes/default/templates/info.tmpl:66 +#: ../themes/smaller/templates/info.tmpl:72 msgid "Last Author:" msgstr "" #: ../themes/default/templates/info.tmpl:67 +#: ../themes/smaller/templates/info.tmpl:73 #, fuzzy msgid "Last Summary:" msgstr "Comentarios" #: ../themes/default/templates/info.tmpl:70 +#: ../themes/smaller/templates/info.tmpl:76 #, fuzzy msgid "Saved on:" msgstr "Guardar" #: ../themes/default/templates/info.tmpl:71 +#: ../themes/smaller/templates/info.tmpl:77 msgid "Author:" msgstr "" #: ../themes/default/templates/info.tmpl:75 +#: ../themes/smaller/templates/info.tmpl:81 #, c-format msgid "Statistics about %s." msgstr "" #: ../themes/default/templates/info.tmpl:86 +#: ../themes/smaller/templates/info.tmpl:92 #, fuzzy msgid "Supplanted on:" msgstr "Guardar" #: ../themes/default/templates/info.tmpl:103 +#: ../themes/smaller/templates/info.tmpl:109 #, fuzzy msgid "Page Version:" msgstr "Versión:" #: ../themes/default/templates/info.tmpl:107 +#: ../themes/smaller/templates/info.tmpl:113 msgid "Markup:" msgstr "" #: ../themes/default/templates/info.tmpl:111 +#: ../themes/smaller/templates/info.tmpl:117 #, fuzzy msgid "Size:" msgstr "Tamaño:" #: ../themes/default/templates/info.tmpl:116 +#: ../themes/smaller/templates/info.tmpl:122 msgid "Hits:" msgstr "Número de hits:" #: ../themes/default/templates/info.tmpl:133 +#: ../themes/smaller/templates/info.tmpl:139 #, fuzzy msgid "home page" msgstr "página nueva" #: ../themes/default/templates/info.tmpl:136 +#: ../themes/smaller/templates/info.tmpl:142 #, fuzzy msgid "User page" msgstr "página nueva" #: ../themes/default/templates/info.tmpl:139 +#: ../themes/smaller/templates/info.tmpl:145 #, fuzzy msgid "Action page" msgstr "Bloquear Página" #: ../themes/default/templates/info.tmpl:142 +#: ../themes/smaller/templates/info.tmpl:148 #, fuzzy msgid "Blog page" msgstr "Bloquear Página" #: ../themes/default/templates/info.tmpl:148 +#: ../themes/smaller/templates/info.tmpl:154 msgid "Subpage" msgstr "" #: ../themes/default/templates/info.tmpl:153 +#: ../themes/smaller/templates/info.tmpl:159 #, fuzzy msgid "Page Type:" msgstr "Nombre de la Página" @@ -3110,30 +4310,24 @@ msgid "" "in RecentChanges to your home page." msgstr "" -#: ../themes/default/templates/login.tmpl:39 -msgid "" -"Note: If you create your personal HomePage with same the pagename as your " -"user id, you will be able to store your UserPreferences also. Otherwise not." -msgstr "" - -#: ../themes/default/templates/login.tmpl:42 +#: ../themes/default/templates/login.tmpl:51 msgid "New users may use an empty password." msgstr "" -#: ../themes/default/templates/login.tmpl:49 +#: ../themes/default/templates/login.tmpl:58 msgid "UserId:" msgstr "" -#: ../themes/default/templates/login.tmpl:53 +#: ../themes/default/templates/login.tmpl:62 #, fuzzy msgid "Password:" msgstr "Contraseña" -#: ../themes/default/templates/navbar.tmpl:33 +#: ../themes/default/templates/navbar.tmpl:34 msgid "Today" msgstr "Hoy" -#: ../themes/default/templates/navbar.tmpl:36 +#: ../themes/default/templates/navbar.tmpl:37 msgid "Admin" msgstr "" @@ -3145,6 +4339,72 @@ msgstr "" msgid "You have not made any changes so no new version has been saved." msgstr "" +#: ../themes/default/templates/online.tmpl:8 +#: ../themes/default/templates/online.tmpl:16 +#: ../themes/default/templates/online.tmpl:58 +msgid "Who Is Online" +msgstr "" + +#: ../themes/default/templates/online.tmpl:16 +msgid "Switch to detailed list" +msgstr "" + +#: ../themes/default/templates/online.tmpl:22 +#, c-format +msgid "Our users created a total of %d pages." +msgstr "" + +#: ../themes/default/templates/online.tmpl:23 +#, c-format +msgid "We have a total of %d registered users." +msgstr "" + +#: ../themes/default/templates/online.tmpl:24 +#, c-format +msgid "The newest registered user is %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:28 +#, c-format +msgid "" +"In total there are %d user sessions online :: Unique %d Registered and %d " +"Guests" +msgstr "" + +#: ../themes/default/templates/online.tmpl:30 +#, c-format +msgid "Most users ever online was %d at %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:31 +msgid "Registered Users Online: " +msgstr "" + +#: ../themes/default/templates/online.tmpl:42 +msgid "Admin is also online." +msgstr "" + +#: ../themes/default/templates/online.tmpl:46 +#, c-format +msgid "This data is based on users active over the past %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:50 +msgid "Sorry, no dynamic DB Session support." +msgstr "" + +#: ../themes/default/templates/online.tmpl:58 +msgid "Switch to summary" +msgstr "" + +#: ../themes/default/templates/online.tmpl:62 +msgid "Registered Users" +msgstr "" + +#: ../themes/default/templates/online.tmpl:77 +msgid "Guests" +msgstr "" + # lib/msql.php:237 lib/msql.php:312 #: ../themes/default/templates/redirect.tmpl:19 #: ../themes/default/templates/redirect.tmpl:40 @@ -3170,16 +4430,18 @@ msgstr "Se agradece una cuidadosa atenci msgid "Warning!" msgstr "" -#: ../themes/default/templates/signin.tmpl:18 +#: ../themes/default/templates/signin.tmpl:19 +#: ../themes/smaller/templates/signin.tmpl:33 #, c-format msgid "You are signed in as %s" msgstr "" -#: ../themes/default/templates/signin.tmpl:39 +#: ../themes/default/templates/signin.tmpl:40 +#: ../themes/smaller/templates/signin.tmpl:53 msgid "Enter your UserId to sign in" msgstr "" -#: ../themes/default/templates/signin.tmpl:54 +#: ../themes/default/templates/signin.tmpl:55 msgid "Sign in as:" msgstr "" @@ -3360,17 +4622,49 @@ msgstr "" msgid "Update Preferences" msgstr "Preferencias" -#: ../themes/default/templates/wikiblog.tmpl:19 -#, fuzzy, c-format -msgid "Comment modified on %s by %s" -msgstr "modificado por última vez el %s" +# lib/pageinfo.php:26 lib/pageinfo.php:75 +#: ../themes/smaller/templates/actionbar.tmpl:31 +#, fuzzy +msgid "Info" +msgstr "InformacionDeLaPagina" + +#: ../themes/smaller/templates/info.tmpl:171 +#, fuzzy +msgid "Diff previous Revision" +msgstr "Versión archivada" + +#: ../themes/smaller/templates/info.tmpl:172 +#, fuzzy +msgid "Diff previous Author" +msgstr "Anterior" + +#, fuzzy +#~ msgid "First Name:" +#~ msgstr "Primera" + +#, fuzzy +#~ msgid "Last Name:" +#~ msgstr "Nombre de la Página" + +#, fuzzy +#~ msgid "dump html pages from this wiki" +#~ msgstr "Las %d páginas más populares de este wiki:" #, fuzzy -#~ msgid "Removed page '%s' succesfully." -#~ msgstr "Página '%s' borrada satisfactoriamente." +#~ msgid "edit pages in this wiki" +#~ msgstr "Las %d páginas más populares de este wiki:" -#~ msgid "Password" -#~ msgstr "Contraseña" +#, fuzzy +#~ msgid "create pages in this wiki" +#~ msgstr "Las %d páginas más populares de este wiki:" + +#, fuzzy +#~ msgid "lock pages in this wiki" +#~ msgstr "Las %d páginas más populares de este wiki:" + +#, fuzzy +#~ msgid "remove pages from this wiki" +#~ msgstr "Las %d páginas más populares de este wiki:" #, fuzzy #~ msgid "Redefinition of %s: %s" @@ -3467,10 +4761,6 @@ msgstr "modificado por #~ msgid "returning old version" #~ msgstr "Versión archivada:" -# lib/editpage.php:19 -#~ msgid "Copied to [%s]" -#~ msgstr "Copia de [%s]" - #~ msgid "Click here to remove the page now." #~ msgstr "Haga Click aqui para borrar la página ahora." @@ -3513,9 +4803,6 @@ msgstr "modificado por #~ msgid "for italics" #~ msgstr "para itálicas" -#~ msgid "for bold" -#~ msgstr "para bold" - #~ msgid "for both" #~ msgstr "para ambos" diff --git a/locale/po/fr.po b/locale/po/fr.po index 883e75f68..6b40f950f 100644 --- a/locale/po/fr.po +++ b/locale/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PhpWiki-1.3.4pre\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-02-15 22:43+0100\n" +"POT-Creation-Date: 2004-03-17 15:58+0100\n" "PO-Revision-Date: 2002-02-22 18:34+01:00\n" "Last-Translator: Roland Trique , Stéphane Gourichon " ", Pascal \n" @@ -17,158 +17,266 @@ msgstr "" "Date: 2001-09-22 00:00-0000\n" "From: \n" +#: ../lib/DB_Session.php:42 +#, c-format +msgid "" +"Your WikiDB DB backend '%s' cannot be used for DB_Session. Set " +"USE_DB_SESSION to false." +msgstr "" + #: ../lib/ErrorManager.php:172 #, c-format msgid "%s: error while handling error:" msgstr "%s : erreur pendant la gestion de l'erreur :" -#: ../lib/FileFinder.php:143 ../lib/loadsave.php:503 +#: ../lib/FileFinder.php:143 ../lib/loadsave.php:540 #, c-format msgid "%s: file not found" msgstr "%s : fichier non trouvé" +#: ../lib/Google.php:157 +#, c-format +msgid "" +"You must first obtain a license key at %s to be able to use the Google API." +msgstr "" + +#: ../lib/Google.php:159 +msgid "It's free however." +msgstr "" + # lib/diff.php:1006 lib/diff.php:1024 -#: ../lib/PageList.php:71 +#: ../lib/PageList.php:92 #, fuzzy, c-format msgid "Sort by %s" msgstr "par %s" -#: ../lib/PageList.php:133 +#: ../lib/PageList.php:126 +msgid "Click to sort" +msgstr "" + +#: ../lib/PageList.php:131 +msgid "Click to reverse sort order" +msgstr "" + +# lib/diff.php:1006 lib/diff.php:1024 +#: ../lib/PageList.php:139 +#, fuzzy, c-format +msgid "Click to sort by %s" +msgstr "par %s" + +#: ../lib/PageList.php:212 msgid "Click to de-/select all pages" msgstr "" # admin.php:57 admin.php:65 -#: ../lib/PageList.php:187 ../lib/PageList.php:484 +#: ../lib/PageList.php:267 ../lib/PageList.php:669 #, fuzzy msgid "Remove" msgstr "Supprimer la Page" -#: ../lib/PageList.php:211 ../lib/plugin/UnfoldSubpages.php:170 +#: ../lib/PageList.php:283 +msgid "This page already exists" +msgstr "" + +#: ../lib/PageList.php:297 ../lib/plugin/UnfoldSubpages.php:158 #, c-format msgid " ... first %d bytes" msgstr "" -#: ../lib/PageList.php:215 +#: ../lib/PageList.php:302 #, c-format msgid " ... around %s" msgstr "" -#: ../lib/PageList.php:237 +#: ../lib/PageList.php:325 #, fuzzy, c-format msgid "%s not found" msgstr "%s : fichier non trouvé" -#: ../lib/PageList.php:277 ../lib/plugin/AuthorHistory.php:174 +#: ../lib/PageList.php:394 ../lib/plugin/AuthorHistory.php:174 #: ../lib/plugin/WantedPages.php:140 msgid "Page Name" msgstr "Nom de Page" -#: ../lib/PageList.php:334 ../lib/plugin/FullTextSearch.php:75 +#: ../lib/PageList.php:466 ../lib/plugin/FullTextSearch.php:93 msgid "" msgstr "< aucun résultat >" -#: ../lib/PageList.php:478 ../lib/PageList.php:481 +#: ../lib/PageList.php:665 ../lib/PageList.php:667 #, fuzzy msgid "Content" msgstr "Table des Matières" -#: ../lib/PageList.php:487 +#: ../lib/PageList.php:671 msgid "Rename to" msgstr "" -#: ../lib/PageList.php:490 +# lib/diff.php:1001 lib/diff.php:1019 +#: ../lib/PageList.php:673 +#, fuzzy +msgid "Permission" +msgstr "Version" + +#: ../lib/PageList.php:675 +msgid "ACL" +msgstr "" + +#: ../lib/PageList.php:677 #, fuzzy msgid "Select" msgstr "Effacé." # lib/diff.php:1003 lib/diff.php:1021 -#: ../lib/PageList.php:497 +#: ../lib/PageList.php:681 msgid "Last Modified" msgstr "Dernière Modification" -#: ../lib/PageList.php:499 +#: ../lib/PageList.php:683 msgid "Hits" msgstr "Visites" -#: ../lib/PageList.php:502 +#: ../lib/PageList.php:685 #, fuzzy msgid "Size" msgstr "Taille :" -#: ../lib/PageList.php:506 +#: ../lib/PageList.php:688 msgid "Last Summary" msgstr "Dernier Résumé" # lib/diff.php:1001 lib/diff.php:1019 -#: ../lib/PageList.php:509 ../lib/plugin/AuthorHistory.php:123 +#: ../lib/PageList.php:690 ../lib/plugin/AuthorHistory.php:123 #: ../lib/plugin/AuthorHistory.php:176 ../lib/plugin/PluginManager.php:90 msgid "Version" msgstr "Version" -#: ../lib/PageList.php:513 +#: ../lib/PageList.php:693 msgid "Last Author" msgstr "Auteur Précédent" -#: ../lib/PageList.php:515 ../themes/default/templates/editpage.tmpl:95 +#: ../lib/PageList.php:695 ../lib/WikiGroup.php:39 +msgid "Owner" +msgstr "" + +#: ../lib/PageList.php:697 +#, fuzzy +msgid "Group" +msgstr "GroupeDePage" + +#: ../lib/PageList.php:699 ../themes/default/templates/editpage.tmpl:101 #: ../themes/default/templates/info.tmpl:127 +#: ../themes/smaller/templates/info.tmpl:133 msgid "Locked" msgstr "Verrouillée" -#: ../lib/PageList.php:516 +#: ../lib/PageList.php:700 msgid "locked" msgstr "verrouillée" -#: ../lib/PageList.php:519 +#: ../lib/PageList.php:703 msgid "Minor Edit" msgstr "Édition Mineure" -#: ../lib/PageList.php:519 +#: ../lib/PageList.php:703 msgid "minor" msgstr "mineure" -#: ../lib/PageList.php:521 +#: ../lib/PageList.php:705 msgid "Markup" msgstr "Marquage" -#: ../lib/PageList.php:572 ../lib/plugin/WantedPages.php:167 +#: ../lib/PageList.php:756 ../lib/plugin/WantedPages.php:167 #, c-format msgid "Columns: %s." msgstr "Colonnes : %s." -#: ../lib/PageType.php:194 +# lib/mysql.php:116 +#: ../lib/PagePerm.php:260 +#, fuzzy +msgid "List this page and all subpages" +msgstr "Erreur en écrivant la page '%s'" + +#: ../lib/PagePerm.php:261 +msgid "View this page and all subpages" +msgstr "" + +#: ../lib/PagePerm.php:262 +msgid "Edit this page and all subpages" +msgstr "" + +# lib/mysql.php:116 +#: ../lib/PagePerm.php:263 +#, fuzzy +msgid "Create a new (sub)page" +msgstr "Erreur en écrivant la page '%s'" + +#: ../lib/PagePerm.php:264 +msgid "Download the page contents" +msgstr "" + +#: ../lib/PagePerm.php:265 +msgid "Change page attributes" +msgstr "" + +# admin.php:57 admin.php:65 +#: ../lib/PagePerm.php:266 +#, fuzzy +msgid "Remove this page" +msgstr "Supprimer la page" + +#: ../lib/PagePerm.php:295 +#, c-format +msgid "Unsupported ACL access type %s ignored." +msgstr "" + +#: ../lib/PageType.php:125 ../lib/loadsave.php:409 +#: ../themes/default/templates/info.tmpl:144 +#: ../themes/default/templates/info.tmpl:145 +#: ../themes/smaller/templates/info.tmpl:150 +#: ../themes/smaller/templates/info.tmpl:151 +msgid "InterWikiMap" +msgstr "CarteInterWiki" + +#: ../lib/PageType.php:211 ../lib/loadsave.php:552 +#, c-format +msgid "Loading InterWikiMap from external file %s." +msgstr "Chargement de la CarteInterWiki depuis le fichiers %s." + +#: ../lib/PageType.php:309 #, fuzzy msgid "Moniker" msgstr "Moderne" -#: ../lib/PageType.php:195 +#: ../lib/PageType.php:310 msgid "InterWiki Address" msgstr "Adress InterWiki" # lib/stdlib.php:384 lib/stdlib.php:445 -#: ../lib/RSSWriter091.php:116 ../lib/loadsave.php:832 +#: ../lib/RSSWriter091.php:116 ../lib/loadsave.php:872 #: ../lib/plugin/RecentChanges.php:250 ../lib/plugin/RecentChanges.php:263 -#: ../lib/plugin/RecentChanges.php:362 ../lib/plugin/RecentChanges.php:438 -#: ../lib/plugin/RecentChanges.php:529 ../lib/plugin/RecentChanges.php:605 +#: ../lib/plugin/RecentChanges.php:365 ../lib/plugin/RecentChanges.php:441 +#: ../lib/plugin/RecentChanges.php:535 ../lib/plugin/RecentChanges.php:611 #: ../themes/Portland/templates/navbar.tmpl:28 #: ../themes/default/templates/navbar.tmpl:10 +#: ../themes/smaller/templates/navbar.tmpl:10 msgid "RecentChanges" msgstr "DernièresModifs" -#: ../lib/Request.php:39 ../lib/main.php:771 ../lib/main.php:784 +#: ../lib/Request.php:57 ../lib/main.php:756 ../lib/main.php:769 #, c-format msgid "%s is not writable." msgstr "" -#: ../lib/Request.php:39 +#: ../lib/Request.php:57 msgid "The PhpWiki access log file" msgstr "" -#: ../lib/Request.php:41 ../lib/main.php:774 +#: ../lib/Request.php:59 ../lib/main.php:759 #, c-format msgid "Please ensure that %s is writable, or redefine %s in index.php." msgstr "" -#: ../lib/Request.php:42 +#: ../lib/Request.php:60 #, fuzzy, c-format msgid "the file '%s'" msgstr "Fichier MIME %s" @@ -178,113 +286,123 @@ msgstr "Fichier MIME %s" msgid "%4d %s\n" msgstr "%4d %s\n" -#: ../lib/Theme.php:344 +#: ../lib/Theme.php:368 msgid "Never edited." msgstr "" -#: ../lib/Theme.php:351 +#: ../lib/Theme.php:375 #, c-format msgid "%s at %s" msgstr "%s : %s" -#: ../lib/Theme.php:355 +#: ../lib/Theme.php:379 #, c-format msgid "Version %s, saved %s." msgstr "Version %s, enregistrée %s." # lib/diff.php:1003 lib/diff.php:1021 -#: ../lib/Theme.php:357 +#: ../lib/Theme.php:381 #, c-format msgid "Last edited %s." msgstr "Dernière modification %s." -#: ../lib/Theme.php:366 +#: ../lib/Theme.php:390 #, c-format msgid "Version %s, saved on %s." msgstr "Version %s, enregistrée sur %s." # lib/diff.php:1003 lib/diff.php:1021 -#: ../lib/Theme.php:368 +#: ../lib/Theme.php:392 #, c-format msgid "Last edited on %s." msgstr "Dernière modification le %s." -#: ../lib/Theme.php:384 +#: ../lib/Theme.php:408 msgid "today" msgstr "aujourd'hui" -#: ../lib/Theme.php:390 +#: ../lib/Theme.php:414 msgid "yesterday" msgstr "hier" -#: ../lib/Theme.php:484 ../themes/MacOSX/themeinfo.php:71 +#: ../lib/Theme.php:518 +#, fuzzy, c-format +msgid "Empty link to: %s" +msgstr "Aucune page ne pointe vers %s." + +#: ../lib/Theme.php:530 ../themes/MacOSX/themeinfo.php:71 #, fuzzy, c-format msgid "Create: %s" msgstr "Enregistrée : %s" -#: ../lib/Theme.php:518 +#: ../lib/Theme.php:566 #, fuzzy, c-format msgid "'%s': Bad page name" msgstr "%s : Mauvaise action" -#: ../lib/Theme.php:783 ../themes/default/templates/actionbar.tmpl:5 +#: ../lib/Theme.php:837 ../themes/default/templates/actionbar.tmpl:5 +#: ../themes/smaller/templates/actionbar.tmpl:6 msgid "Edit" msgstr "Éditer" -#: ../lib/Theme.php:784 +#: ../lib/Theme.php:838 ../lib/plugin/Diff.php:36 msgid "Diff" msgstr "Diff" -#: ../lib/Theme.php:785 ../themes/default/templates/signin.tmpl:15 -#: ../themes/default/templates/signin.tmpl:31 +#: ../lib/Theme.php:839 ../themes/default/templates/signin.tmpl:16 +#: ../themes/default/templates/signin.tmpl:32 +#: ../themes/smaller/templates/signin.tmpl:21 +#: ../themes/smaller/templates/signin.tmpl:44 msgid "Sign Out" msgstr "Déconnexion" -#: ../lib/Theme.php:786 ../lib/WikiUser.php:206 -#: ../themes/default/templates/login.tmpl:70 -#: ../themes/default/templates/signin.tmpl:59 +#: ../lib/Theme.php:840 ../lib/WikiUser.php:204 ../lib/WikiUserNew.php:415 +#: ../lib/WikiUserNew.php:1161 ../themes/default/templates/login.tmpl:66 +#: ../themes/default/templates/signin.tmpl:60 +#: ../themes/smaller/templates/signin.tmpl:54 +#: ../themes/smaller/templates/signin.tmpl:57 msgid "Sign In" msgstr "Connexion" -#: ../lib/Theme.php:787 ../themes/MacOSX/themeinfo.php:135 +#: ../lib/Theme.php:841 ../themes/MacOSX/themeinfo.php:135 msgid "Lock Page" msgstr "Verrouiller la Page" -#: ../lib/Theme.php:788 ../themes/MacOSX/themeinfo.php:136 +#: ../lib/Theme.php:842 ../themes/MacOSX/themeinfo.php:136 msgid "Unlock Page" msgstr "Déverrouiller la Page" # admin.php:57 admin.php:65 -#: ../lib/Theme.php:789 +#: ../lib/Theme.php:843 msgid "Remove Page" msgstr "Supprimer la Page" -#: ../lib/WikiDB.php:407 +#: ../lib/WikiDB.php:405 #, fuzzy, c-format msgid "renamed from %s" msgstr "Inséré de %s" -#: ../lib/WikiDB.php:412 +#: ../lib/WikiDB.php:410 msgid "WikiDB::renamePage() not yet implemented for this backend" msgstr "" -#: ../lib/WikiDB.php:700 +#: ../lib/WikiDB.php:698 #, c-format msgid "%s: Date of new revision is %s" msgstr "%s : la date de la nouvelle révision est %s" -#: ../lib/WikiDB.php:763 +#: ../lib/WikiDB.php:761 #, c-format msgid "Optimizing %s" msgstr "Optimisation de %s" # lib/display.php:31 lib/editpage.php:50 -#: ../lib/WikiDB.php:1207 ../themes/default/templates/homepage.tmpl:7 +#: ../lib/WikiDB.php:1205 ../themes/default/templates/homepage.tmpl:7 #, c-format msgid "Describe %s here." msgstr "Décrivez %s ici." -#: ../lib/WikiDB.php:1242 +#: ../lib/WikiDB.php:1240 #, c-format msgid "Acck! Revision %s of %s seems to have been deleted!" msgstr "Ouille ! La révision %s de %s semble avoir été effacée !" @@ -309,7 +427,7 @@ msgstr "" "INSTALL et déplacez le fichier DB vers un emplacement permanent, sinon vous " "risquez de perdre toutes vos pages !" -#: ../lib/WikiGroup.php:29 ../lib/WikiGroup.php:110 +#: ../lib/WikiGroup.php:29 ../lib/WikiGroup.php:122 msgid "No or unsupported GROUP_METHOD defined" msgstr "" @@ -326,81 +444,101 @@ msgid "Bogo Users" msgstr "" #: ../lib/WikiGroup.php:35 +#, fuzzy +msgid "HasHomePage" +msgstr "Accueil" + +#: ../lib/WikiGroup.php:36 msgid "Signed Users" msgstr "" -#: ../lib/WikiGroup.php:36 +#: ../lib/WikiGroup.php:37 msgid "Authenticated Users" msgstr "" -#: ../lib/WikiGroup.php:37 +#: ../lib/WikiGroup.php:38 #, fuzzy msgid "Administrators" msgstr "AdministrationDePhpWiki" -#: ../lib/WikiGroup.php:146 +#: ../lib/WikiGroup.php:40 +msgid "Creator" +msgstr "" + +#: ../lib/WikiGroup.php:164 #, c-format msgid "Undefined method %s for special group %s" msgstr "" -#: ../lib/WikiGroup.php:151 ../lib/WikiGroup.php:166 ../lib/WikiGroup.php:181 -#: ../lib/WikiGroup.php:197 ../lib/WikiGroup.php:213 +#: ../lib/WikiGroup.php:169 ../lib/WikiGroup.php:184 ../lib/WikiGroup.php:289 +#: ../lib/WikiGroup.php:294 ../lib/WikiGroup.php:310 ../lib/WikiGroup.php:326 #, c-format msgid "Method '%s' not implemented in this GROUP_METHOD %s" msgstr "" -#: ../lib/WikiGroup.php:339 +#: ../lib/WikiGroup.php:454 #, c-format msgid "Group %s does not exist" msgstr "" -#: ../lib/WikiGroup.php:437 +# lib/diff.php:997 +#: ../lib/WikiGroup.php:486 +#, fuzzy +msgid "CategoryGroup" +msgstr "Page actuelle :" + +#: ../lib/WikiGroup.php:561 msgid "No or not enough GROUP_DB SQL statements defined" msgstr "" -#: ../lib/WikiGroup.php:541 +#: ../lib/WikiGroup.php:767 msgid "AUTH_GROUP_FILE not defined" msgstr "" -#: ../lib/WikiGroup.php:545 +#: ../lib/WikiGroup.php:771 #, c-format msgid "Cannot open AUTH_GROUP_FILE %s" msgstr "" -#: ../lib/WikiGroup.php:644 +#: ../lib/WikiGroup.php:878 msgid "LDAP_AUTH_HOST not defined" msgstr "" -#: ../lib/WikiGroup.php:650 +#: ../lib/WikiGroup.php:884 msgid "No LDAP in this PHP version" msgstr "" +#: ../lib/WikiGroup.php:963 ../lib/WikiUserNew.php:1679 +#, c-format +msgid "Unable to connect to LDAP server %s" +msgstr "" + #: ../lib/WikiPlugin.php:88 msgid "n/a" msgstr "" -#: ../lib/WikiPlugin.php:118 +#: ../lib/WikiPlugin.php:118 ../lib/plugin/WikiPoll.php:114 #, c-format msgid "argument '%s' not declared by plugin" msgstr "argument '%s' non déclaré par le plugin" -#: ../lib/WikiPlugin.php:182 +#: ../lib/WikiPlugin.php:189 #, c-format msgid "trailing cruft in plugin args: '%s'" msgstr "cochonneries terminant les arguments du plugin : '%s'" -#: ../lib/WikiPlugin.php:291 +#: ../lib/WikiPlugin.php:303 #, c-format msgid "Plugin %s failed." msgstr "Plugin %s a échoué." -#: ../lib/WikiPlugin.php:297 +#: ../lib/WikiPlugin.php:309 #, fuzzy, c-format msgid "Plugin %s disabled." msgstr "Plugin %s a échoué." # lib/msql.php:237 lib/msql.php:312 -#: ../lib/WikiPlugin.php:384 +#: ../lib/WikiPlugin.php:400 #, c-format msgid "Include of '%s' failed" msgstr "L'insertion de ' %s ' a échoué" @@ -412,21 +550,21 @@ msgid "" "referring page." msgstr "" -#: ../lib/WikiUser.php:177 +#: ../lib/WikiUser.php:177 ../lib/WikiUserNew.php:482 msgid "Invalid password or userid." msgstr "Mot de passe ou identifiant d'utilisateur invalide." -#: ../lib/WikiUser.php:179 +#: ../lib/WikiUser.php:179 ../lib/WikiUserNew.php:484 msgid "Insufficient permissions." msgstr "Permissions insuffisantes." -#: ../lib/WikiUser.php:234 +#: ../lib/WikiUser.php:232 msgid "" "You forgot to set ENCRYPTED_PASSWD to true. Please update your /index.php" msgstr "" # lib/editpage.php:31 lib/savepage.php:52 -#: ../lib/WikiUser.php:353 +#: ../lib/WikiUser.php:351 #, fuzzy msgid "" "Your home page has not been created yet so your preferences cannot not be " @@ -436,82 +574,129 @@ msgstr "" "pas pu être enregistrée." # lib/editpage.php:31 lib/savepage.php:52 -#: ../lib/WikiUser.php:370 +#: ../lib/WikiUser.php:368 #, fuzzy msgid "Your home page is locked so your preferences cannot not be saved." msgstr "" "Cette page a été verrouillée par l'administrateur et vos changements n'ont " "pas pu être enregistrée." -#: ../lib/WikiUser.php:371 +#: ../lib/WikiUser.php:369 msgid "Please contact your PhpWiki administrator for assistance." msgstr "" -#: ../lib/WikiUser.php:477 +#: ../lib/WikiUser.php:475 #, c-format msgid "" "Old UserPage %s without stored password updated with empty password. Set a " "password in your UserPreferences." msgstr "" -#: ../lib/XmlElement.php:401 ../lib/stdlib.php:997 +#: ../lib/WikiUserNew.php:514 +msgid "Format of UserPreferences cookie not recognised." +msgstr "" + +#: ../lib/WikiUserNew.php:515 +msgid "Default preferences will be used." +msgstr "" + +#: ../lib/WikiUserNew.php:922 +msgid "" +"The length of the stored password is shorter than the system policy allows. " +"Sorry, you cannot login.\n" +" You have to ask the System Administrator to reset your password." +msgstr "" + +#: ../lib/WikiUserNew.php:935 +msgid "The crypt function is not available in this version of PHP." +msgstr "" + +#: ../lib/WikiUserNew.php:936 +msgid "" +"Please set ENCRYPTED_PASSWD to false in index.php and probably change " +"ADMIN_PASSWD." +msgstr "" + +#: ../lib/WikiUserNew.php:949 +msgid "Please set ENCRYPTED_PASSWD to true in index.php." +msgstr "" + +#: ../lib/WikiUserNew.php:1073 +#, c-format +msgid "" +"\n" +"You stored an empty password in your %s page.\n" +msgstr "" + +#: ../lib/WikiUserNew.php:1074 +msgid "Your access permissions are only for a BogoUser.\n" +msgstr "" + +#: ../lib/WikiUserNew.php:1075 +msgid "Please set your password in UserPreferences." +msgstr "" + +#: ../lib/WikiUserNew.php:1717 +msgid "Unable to connect to LDAP server " +msgstr "" + +#: ../lib/WikiUserNew.php:1747 +msgid "Unable to connect to IMAP server " +msgstr "" + +#: ../lib/XmlElement.php:417 ../lib/stdlib.php:995 #, c-format msgid "Can't mix '%s' with '%s' type format strings" msgstr "Impossible de mélanger les chaînes de type '%s' et '%s'" # lib/msql.php:29 lib/mysql.php:36 -#: ../lib/config.php:145 +#: ../lib/config.php:125 #, fuzzy, c-format msgid "Can't set locale: '%s'" msgstr "Impossible d'établir une connexion à la base de données : %s" -#: ../lib/config.php:377 +#: ../lib/config.php:387 msgid "An unnamed PhpWiki" msgstr "Un PhpWiki sans titre" -#: ../lib/config.php:383 ../lib/imagecache.php:57 +#: ../lib/config.php:390 ../lib/imagecache.php:57 #: ../themes/default/templates/userprefs.tmpl:113 msgid "HomePage" msgstr "Accueil" -#: ../lib/config.php:398 +#: ../lib/config.php:404 #, c-format msgid "Encrypted passwords cannot be used: %s." msgstr "" -#: ../lib/config.php:404 +#: ../lib/config.php:410 msgid "The admin password cannot be empty. Please update your /index.php" msgstr "" -#: ../lib/config.php:408 -#, c-format -msgid "You can use %s only with %s" -msgstr "" - -#: ../lib/config.php:415 +#: ../lib/config.php:414 msgid "" "Empty db_session_table. Turn USE_DB_SESSION off or define the table name." msgstr "" # lib/diff.php:1001 lib/diff.php:1019 -#: ../lib/diff.php:253 +#: ../lib/diff.php:253 ../lib/plugin/Diff.php:72 #, c-format msgid "version %s" msgstr "version %s" # lib/diff.php:1006 lib/diff.php:1024 -#: ../lib/diff.php:256 +#: ../lib/diff.php:256 ../lib/plugin/Diff.php:75 #, c-format msgid "by %s" msgstr "par %s" # lib/diff.php:1010 lib/diff.php:1028 -#: ../lib/diff.php:258 +#: ../lib/diff.php:258 ../lib/plugin/Diff.php:77 msgid "None" msgstr "Aucune" -#: ../lib/diff.php:280 ../lib/plugin/PageHistory.php:312 -#: ../lib/plugin/PageInfo.php:59 +#: ../lib/diff.php:280 ../lib/plugin/Diff.php:94 +#: ../lib/plugin/PageHistory.php:312 ../lib/plugin/PageInfo.php:59 #, c-format msgid "I'm sorry, there is no such page as %s." msgstr "" @@ -523,74 +708,77 @@ msgid "Diff: %s" msgstr "Diff : %s" # lib/diff.php:1001 lib/diff.php:1019 -#: ../lib/diff.php:290 ../lib/diff.php:300 +#: ../lib/diff.php:290 ../lib/diff.php:300 ../lib/plugin/Diff.php:102 +#: ../lib/plugin/Diff.php:112 #, c-format msgid "version %d" msgstr "version %d" # lib/pageinfo.php:64 -#: ../lib/diff.php:294 +#: ../lib/diff.php:294 ../lib/plugin/Diff.php:106 msgid "current version" msgstr "version actuelle" -#: ../lib/diff.php:311 +#: ../lib/diff.php:311 ../lib/plugin/Diff.php:123 msgid "revision by previous author" msgstr "révision par auteur précédent" -#: ../lib/diff.php:317 +#: ../lib/diff.php:317 ../lib/plugin/Diff.php:129 msgid "previous revision" msgstr "révision précédente" -#: ../lib/diff.php:327 +#: ../lib/diff.php:327 ../lib/plugin/Diff.php:139 msgid "predecessor to the previous major change" msgstr "prédécesseur de la modification majeure précédente" -#: ../lib/diff.php:337 +#: ../lib/diff.php:337 ../lib/plugin/Diff.php:149 #, c-format msgid "Differences between %s and %s of %s." msgstr "Différences entre %s et %s de %s." -#: ../lib/diff.php:340 +#: ../lib/diff.php:340 ../lib/plugin/Diff.php:152 msgid "Other diffs:" msgstr "Autres comparaisons :" -#: ../lib/diff.php:341 +#: ../lib/diff.php:341 ../lib/plugin/Diff.php:153 msgid "Previous Major Revision" msgstr "Précédente Révision Principale" -#: ../lib/diff.php:342 +#: ../lib/diff.php:342 ../lib/plugin/Diff.php:154 msgid "Previous Revision" msgstr "Révision Précédente" -#: ../lib/diff.php:343 +#: ../lib/diff.php:343 ../lib/plugin/Diff.php:155 msgid "Previous Author" msgstr "Auteur Précédent" # admin.php:57 admin.php:65 -#: ../lib/diff.php:360 +#: ../lib/diff.php:360 ../lib/plugin/Diff.php:172 msgid "Newer page:" msgstr "Page récente :" -#: ../lib/diff.php:362 +#: ../lib/diff.php:362 ../lib/plugin/Diff.php:174 msgid "Older page:" msgstr "Ancienne page :" # lib/diff.php:1037 -#: ../lib/diff.php:370 +#: ../lib/diff.php:370 ../lib/plugin/Diff.php:182 msgid "Versions are identical" msgstr "Les versions sont identiques" #: ../lib/display.php:54 ../lib/plugin/PageGroup.php:91 #: ../lib/plugin/PageGroup.php:156 ../lib/plugin/PageGroup.php:167 #: ../lib/plugin/PageGroup.php:183 ../lib/plugin/PageGroup.php:190 -#: ../lib/plugin/PageHistory.php:216 ../lib/plugin/UnfoldSubpages.php:177 +#: ../lib/plugin/PageHistory.php:216 ../lib/plugin/UnfoldSubpages.php:165 #: ../themes/default/templates/head.tmpl:45 #, c-format msgid "%s: %s" msgstr "%s : %s" #: ../lib/display.php:104 ../lib/display.php:111 -#: ../lib/plugin/BackLinks.php:31 ../themes/default/templates/navbar.tmpl:22 +#: ../lib/plugin/BackLinks.php:31 ../lib/plugin/_WikiTranslation.php:50 +#: ../themes/default/templates/navbar.tmpl:23 +#: ../themes/smaller/templates/navbar.tmpl:19 msgid "BackLinks" msgstr "RétroLiens" @@ -605,44 +793,44 @@ msgid "(Redirected from %s)" msgstr "Inséré de %s" # lib/pageinfo.php:64 -#: ../lib/editpage.php:82 ../lib/editpage.php:283 +#: ../lib/editpage.php:90 ../lib/editpage.php:360 msgid "Your version" msgstr "Votre version" # lib/pageinfo.php:70 -#: ../lib/editpage.php:82 ../lib/editpage.php:284 +#: ../lib/editpage.php:90 ../lib/editpage.php:361 msgid "Other version" msgstr "L'autre version" -#: ../lib/editpage.php:99 +#: ../lib/editpage.php:176 #, c-format msgid "Edit: %s" msgstr "Éditer : %s" -#: ../lib/editpage.php:133 +#: ../lib/editpage.php:210 #, c-format msgid "View Source: %s" msgstr "Afficher la Source : %s" -#: ../lib/editpage.php:147 +#: ../lib/editpage.php:224 msgid "Page now locked." msgstr "La page est maintenant verrouillée." -#: ../lib/editpage.php:147 +#: ../lib/editpage.php:224 msgid "Page now unlocked." msgstr "La page est maintenant déverrouillée." -#: ../lib/editpage.php:221 +#: ../lib/editpage.php:298 #, c-format msgid "Saved: %s" msgstr "Enregistrée : %s" -#: ../lib/editpage.php:266 ../themes/MacOSX/themeinfo.php:137 +#: ../lib/editpage.php:343 ../themes/MacOSX/themeinfo.php:137 msgid "Page Locked" msgstr "Page Verrouillée" # lib/editpage.php:31 lib/savepage.php:52 -#: ../lib/editpage.php:267 +#: ../lib/editpage.php:344 msgid "" "This page has been locked by the administrator so your changes can not be " "saved." @@ -651,7 +839,7 @@ msgstr "" "pas pu être enregistrée." # lib/savepage.php:24 -#: ../lib/editpage.php:268 +#: ../lib/editpage.php:345 msgid "" "(Copy your changes to the clipboard. You can try editing a different page or " "save your text in a text editor.)" @@ -660,11 +848,11 @@ msgstr "" "d'éditer une page différente ou sauver votre texte dans un éditeur)." # lib/editpage.php:33 lib/savepage.php:32 lib/savepage.php:53 -#: ../lib/editpage.php:269 +#: ../lib/editpage.php:346 msgid "Sorry for the inconvenience." msgstr "Désolé pour la gène occasionnée." -#: ../lib/editpage.php:282 ../lib/editpage.php:535 +#: ../lib/editpage.php:359 ../lib/editpage.php:612 #, c-format msgid "" "Some of the changes could not automatically be combined. Please look for " @@ -675,15 +863,15 @@ msgstr "" "Veuillez regarder les sections commençant par '%s', et se terminant par '%" "s'. Vous devrez éditer ces sections à la main avant cliquer sur Enregistrer." -#: ../lib/editpage.php:286 ../lib/editpage.php:538 +#: ../lib/editpage.php:363 ../lib/editpage.php:615 msgid "Please check it through before saving." msgstr "Veuillez la vérifier avant la sauver." -#: ../lib/editpage.php:297 +#: ../lib/editpage.php:374 msgid "Conflicting Edits!" msgstr "Conflit d'Éditions !" -#: ../lib/editpage.php:298 +#: ../lib/editpage.php:375 msgid "" "In the time since you started editing this page, another user has saved a " "new version of it." @@ -691,7 +879,7 @@ msgstr "" "Depuis que vous avez commencé à éditer cette page, un autre utilisateur en a " "enregistré une nouvelle version." -#: ../lib/editpage.php:299 +#: ../lib/editpage.php:376 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 " @@ -701,30 +889,19 @@ msgstr "" "celles de l'autre utilisateur. Ainsi donc, vos modifications et celles de " "l'autre auteur ont été combinées. Le résultat est affiché ci-dessous." -#: ../lib/editpage.php:370 +#: ../lib/editpage.php:447 msgid "Preview" msgstr "Prévisualiser" -#: ../lib/editpage.php:374 +#: ../lib/editpage.php:451 msgid "Save" msgstr "Enregistrer" -#: ../lib/editpage.php:510 +#: ../lib/editpage.php:587 #, fuzzy, c-format msgid "Merge and Edit: %s" msgstr "Éditer : %s" -#: ../lib/interwiki.php:7 ../lib/loadsave.php:373 -#: ../themes/default/templates/info.tmpl:144 -#: ../themes/default/templates/info.tmpl:145 -msgid "InterWikiMap" -msgstr "CarteInterWiki" - -#: ../lib/interwiki.php:90 ../lib/loadsave.php:515 -#, c-format -msgid "Loading InterWikiMap from external file %s." -msgstr "Chargement de la CarteInterWiki depuis le fichiers %s." - #: ../lib/loadsave.php:42 msgid "Complete." msgstr "Terminé." @@ -742,379 +919,413 @@ msgstr "" msgid "LatestSnapshot" msgstr "" -#: ../lib/loadsave.php:174 ../lib/loadsave.php:232 +#: ../lib/loadsave.php:175 ../lib/loadsave.php:234 msgid "You must specify a directory to dump to" msgstr "Vous devez spécifier un répertoire de vidage" -#: ../lib/loadsave.php:179 ../lib/loadsave.php:237 +#: ../lib/loadsave.php:180 ../lib/loadsave.php:239 #, c-format msgid "Cannot create directory '%s'" msgstr "Impossible de créer le répertoire '%s'" -#: ../lib/loadsave.php:181 ../lib/loadsave.php:239 +#: ../lib/loadsave.php:182 ../lib/loadsave.php:241 #, c-format msgid "Created directory '%s' for the page dump..." msgstr "Répertoire '%s' créé pour le vidage..." -#: ../lib/loadsave.php:184 ../lib/loadsave.php:242 +#: ../lib/loadsave.php:185 ../lib/loadsave.php:244 #, c-format msgid "Using directory '%s'" msgstr "Utilisation du répertoire '%s'" -#: ../lib/loadsave.php:187 ../lib/loadsave.php:245 +#: ../lib/loadsave.php:188 ../lib/loadsave.php:247 msgid "Dumping Pages" msgstr "Vidage des pages" -#: ../lib/loadsave.php:200 ../lib/loadsave.php:263 +#: ../lib/loadsave.php:202 ../lib/loadsave.php:269 #, c-format msgid "saved as %s" msgstr "enregistrée à %s" -#: ../lib/loadsave.php:210 ../lib/loadsave.php:278 +#: ../lib/loadsave.php:212 ../lib/loadsave.php:282 #: ../lib/plugin/text2png.php:183 #, c-format msgid "couldn't open file '%s' for writing" msgstr "Impossible d'ouvrir le fichier '%s' en écriture" -#: ../lib/loadsave.php:216 ../lib/loadsave.php:284 +#: ../lib/loadsave.php:218 ../lib/loadsave.php:288 #, c-format msgid "%s bytes written" msgstr "%s octets enregistrés" +# lib/editpage.php:19 +#: ../lib/loadsave.php:302 ../lib/loadsave.php:316 +#, fuzzy, c-format +msgid "... copied to %s" +msgstr "Copie de [%s]" + +#: ../lib/loadsave.php:306 ../lib/loadsave.php:320 +#, fuzzy +msgid "... not found" +msgstr "%s : fichier non trouvé" + # lib/pageinfo.php:9 -#: ../lib/loadsave.php:363 +#: ../lib/loadsave.php:399 msgid "Empty pagename!" msgstr "La page n'a aucun titre !" -#: ../lib/loadsave.php:419 +#: ../lib/loadsave.php:455 #, c-format msgid "from %s" msgstr "de %s" # admin.php:57 admin.php:65 -#: ../lib/loadsave.php:424 +#: ../lib/loadsave.php:460 msgid "new page" msgstr "nouvelle page" -#: ../lib/loadsave.php:432 +#: ../lib/loadsave.php:468 msgid "has edit conflicts - overwriting anyway" msgstr "" -#: ../lib/loadsave.php:435 ../lib/loadsave.php:797 ../lib/loadsave.php:800 +#: ../lib/loadsave.php:471 ../lib/loadsave.php:837 ../lib/loadsave.php:840 msgid "The PhpWiki programming team" msgstr "L'équipe de développement de PhpWiki" -#: ../lib/loadsave.php:440 +#: ../lib/loadsave.php:476 msgid "has edit conflicts - skipped" msgstr "" -#: ../lib/loadsave.php:448 +#: ../lib/loadsave.php:484 #, c-format msgid "is identical to current version %d - skipped" msgstr "est identique à la version en cours %d - ignoré" -#: ../lib/loadsave.php:458 +#: ../lib/loadsave.php:494 #, c-format msgid "- saved to database as version %d" msgstr "- sauvé dans la base de données sous la version %d" -#: ../lib/loadsave.php:464 ../lib/loadsave.php:609 +#: ../lib/loadsave.php:500 ../lib/loadsave.php:647 #, c-format msgid "MIME file %s" msgstr "Fichier MIME %s" -#: ../lib/loadsave.php:465 ../lib/loadsave.php:614 +#: ../lib/loadsave.php:501 ../lib/loadsave.php:652 #, c-format msgid "Serialized file %s" msgstr "Fichier sérialisé %s" -#: ../lib/loadsave.php:466 ../lib/loadsave.php:628 +#: ../lib/loadsave.php:502 ../lib/loadsave.php:666 #, c-format msgid "plain file %s" msgstr "fichier simple %s" -#: ../lib/loadsave.php:472 +#: ../lib/loadsave.php:509 #, fuzzy msgid "Merge Edit" msgstr "Éditer : %s" -#: ../lib/loadsave.php:473 ../lib/loadsave.php:480 -#: ../lib/plugin/WikiAdminSelect.php:169 +#: ../lib/loadsave.php:510 ../lib/loadsave.php:516 +#: ../lib/plugin/WikiAdminSelect.php:170 #: ../themes/Portland/templates/navbar.tmpl:30 #: ../themes/default/templates/head.tmpl:76 -#: ../themes/default/templates/navbar.tmpl:36 +#: ../themes/default/templates/navbar.tmpl:37 +#: ../themes/smaller/templates/navbar.tmpl:22 msgid "PhpWikiAdministration" msgstr "AdministrationDePhpWiki" -#: ../lib/loadsave.php:479 +#: ../lib/loadsave.php:515 msgid "Restore Anyway" msgstr "" -#: ../lib/loadsave.php:499 +#: ../lib/loadsave.php:536 #, c-format msgid "%s: not defined" msgstr "%s : non défini" -#: ../lib/loadsave.php:508 +#: ../lib/loadsave.php:545 msgid "Default InterWiki map file not loaded." msgstr "Carte InterWiki par défaut non chargée." -#: ../lib/loadsave.php:642 ../lib/loadsave.php:654 +#: ../lib/loadsave.php:680 ../lib/loadsave.php:692 msgid "Skipping" msgstr "Ignoré" -#: ../lib/loadsave.php:751 +#: ../lib/loadsave.php:791 #, c-format msgid "Unable to load: %s" msgstr "" -#: ../lib/loadsave.php:758 +#: ../lib/loadsave.php:798 #, c-format msgid "Bad file type: %s" msgstr "Mauvais type de fichier : %s" -#: ../lib/loadsave.php:772 +#: ../lib/loadsave.php:812 #, c-format msgid "Loading '%s'" msgstr "Chargement ' %s '" -#: ../lib/loadsave.php:803 +#: ../lib/loadsave.php:843 msgid "Loading up virgin wiki" msgstr "Chargement d'un wiki vierge" -#: ../lib/loadsave.php:823 +#: ../lib/loadsave.php:863 msgid "No uploaded file to upload?" msgstr "Pas de fichier à télécharger ?" -#: ../lib/loadsave.php:827 +#: ../lib/loadsave.php:867 #, c-format msgid "Uploading %s" msgstr "Téléchargement de %s" -#: ../lib/main.php:288 +#: ../lib/main.php:264 #, fuzzy, c-format msgid "%s is disallowed on this wiki." msgstr "L'action %s est interdite sur ce wiki" -#: ../lib/main.php:292 +#: ../lib/main.php:268 #, fuzzy, c-format msgid "You must sign in to %s." msgstr "Vous devez vous inscrire pour %s ce wiki" -#: ../lib/main.php:294 +#: ../lib/main.php:270 #, fuzzy, c-format msgid "You must log in to %s." msgstr "Vous devez vous connecter pour %s ce wiki" -#: ../lib/main.php:296 ../lib/plugin/PluginManager.php:65 +#: ../lib/main.php:272 ../lib/plugin/PluginManager.php:65 #, fuzzy, c-format msgid "You must be an administrator to %s." msgstr "Vous devez être un administrateur pour %s ce wiki" -#: ../lib/main.php:309 +#: ../lib/main.php:285 #, fuzzy -msgid "browse pages in this wiki" -msgstr "Pages Orphelines dans ce wiki (%d au total) :" +msgid "view this page" +msgstr "%s de cette page" -#: ../lib/main.php:310 +#: ../lib/main.php:286 #, fuzzy -msgid "diff pages in this wiki" -msgstr "Pages dans ce wiki (%d au total) :" +msgid "diff this page" +msgstr "%s de cette page" -#: ../lib/main.php:311 +#: ../lib/main.php:287 #, fuzzy -msgid "dump html pages from this wiki" -msgstr "Les %d pages les plus populaires de ce wiki :" +msgid "dump html pages" +msgstr "Vidage des pages" -#: ../lib/main.php:312 +#: ../lib/main.php:288 #, fuzzy -msgid "dump serial pages from this wiki" -msgstr "Les %d pages les moins populaires de ce wiki :" +msgid "dump serial pages" +msgstr "Vidage des pages" -#: ../lib/main.php:313 +#: ../lib/main.php:289 #, fuzzy -msgid "edit pages in this wiki" -msgstr "Pages Orphelines dans ce wiki (%d au total) :" +msgid "edit this page" +msgstr "%s de cette page" -#: ../lib/main.php:314 +# lib/mysql.php:116 +#: ../lib/main.php:290 #, fuzzy -msgid "create pages in this wiki" -msgstr "Pages Orphelines dans ce wiki (%d au total) :" +msgid "create this page" +msgstr "Erreur en écrivant la page '%s'" -#: ../lib/main.php:315 +#: ../lib/main.php:291 #, fuzzy msgid "load files into this wiki" msgstr "Vous devez vous connecter pour %s ce wiki" -#: ../lib/main.php:316 +#: ../lib/main.php:292 #, fuzzy -msgid "lock pages in this wiki" -msgstr "Pages dans ce wiki (%d au total) :" +msgid "lock this page" +msgstr "%s de cette page" -#: ../lib/main.php:317 +# admin.php:57 admin.php:65 +#: ../lib/main.php:293 #, fuzzy -msgid "remove pages from this wiki" -msgstr "Les %d pages les plus populaires de ce wiki :" +msgid "remove this page" +msgstr "Supprimer la page maintenant" -#: ../lib/main.php:318 +#: ../lib/main.php:294 #, fuzzy -msgid "unlock pages in this wiki" -msgstr "Pages dans ce wiki (%d au total) :" +msgid "unlock this page" +msgstr "Déverrouiller la Page" -#: ../lib/main.php:319 +#: ../lib/main.php:295 #, fuzzy -msgid "upload a zip dump to this wiki" -msgstr "Vous devez vous connecter pour %s ce wiki" +msgid "upload a zip dump" +msgstr "Téléchargement de %s" # lib/pageinfo.php:64 -#: ../lib/main.php:320 +#: ../lib/main.php:296 #, fuzzy msgid "verify the current action" msgstr "Visualiser la version actuelle" -#: ../lib/main.php:321 +#: ../lib/main.php:297 #, fuzzy -msgid "view the source of pages in this wiki" +msgid "view the source of this page" msgstr "Les %d pages les plus populaires de ce wiki :" -#: ../lib/main.php:322 +#: ../lib/main.php:298 msgid "access this wiki via XML-RPC" msgstr "" -#: ../lib/main.php:323 +#: ../lib/main.php:299 #, fuzzy msgid "download a zip dump from this wiki" msgstr "Les %d pages les plus populaires de ce wiki :" -#: ../lib/main.php:324 +#: ../lib/main.php:300 #, fuzzy msgid "download an html zip dump from this wiki" msgstr "Les %d pages les plus populaires de ce wiki :" # lib/mysql.php:116 -#: ../lib/main.php:336 +#: ../lib/main.php:312 #, fuzzy msgid "Browsing pages" msgstr "Erreur en écrivant la page '%s'" -#: ../lib/main.php:337 +#: ../lib/main.php:313 #, fuzzy msgid "Diffing pages" msgstr "Vidage des pages" -#: ../lib/main.php:338 +#: ../lib/main.php:314 #, fuzzy msgid "Dumping html pages" msgstr "Vidage des pages" -#: ../lib/main.php:339 +#: ../lib/main.php:315 #, fuzzy msgid "Dumping serial pages" msgstr "Vidage des pages" # lib/mysql.php:116 -#: ../lib/main.php:340 +#: ../lib/main.php:316 #, fuzzy msgid "Editing pages" msgstr "Erreur en écrivant la page '%s'" # lib/mysql.php:116 -#: ../lib/main.php:341 +#: ../lib/main.php:317 #, fuzzy msgid "Creating pages" msgstr "Erreur en écrivant la page '%s'" -#: ../lib/main.php:342 +#: ../lib/main.php:318 #, fuzzy msgid "Loading files" msgstr "Charger le fichier" -#: ../lib/main.php:343 +#: ../lib/main.php:319 #, fuzzy msgid "Locking pages" msgstr "Verrouiller la Page" # admin.php:57 admin.php:65 -#: ../lib/main.php:344 +#: ../lib/main.php:320 #, fuzzy msgid "Removing pages" msgstr "Supprimer la page" -#: ../lib/main.php:345 +#: ../lib/main.php:321 #, fuzzy msgid "Unlocking pages" msgstr "Déverrouiller la Page" -#: ../lib/main.php:346 +#: ../lib/main.php:322 #, fuzzy msgid "Uploading zip dumps" msgstr "Téléchargement de %s" # lib/pageinfo.php:64 -#: ../lib/main.php:347 +#: ../lib/main.php:323 #, fuzzy msgid "Verify the current action" msgstr "Visualiser la version actuelle" -#: ../lib/main.php:348 +#: ../lib/main.php:324 #, fuzzy msgid "Viewing the source of pages" msgstr "Les %d pages les plus populaires de ce wiki :" -#: ../lib/main.php:349 +#: ../lib/main.php:325 msgid "XML-RPC access" msgstr "" -#: ../lib/main.php:350 +#: ../lib/main.php:326 #, fuzzy msgid "Downloading zip dumps" msgstr "Téléchargement de %s" -#: ../lib/main.php:351 +#: ../lib/main.php:327 #, fuzzy msgid "Downloading html zip dumps" msgstr "Téléchargement de %s" -#: ../lib/main.php:458 +#: ../lib/main.php:436 #, c-format msgid "%s: Bad action" msgstr "%s : Mauvaise action" # lib/stdlib.php:36 -#: ../lib/main.php:480 +#: ../lib/main.php:458 msgid "Fatal PhpWiki Error" msgstr "Erreur Fatale de PhpWiki" # lib/fullsearch.php:48 -#: ../lib/main.php:661 ../lib/plugin/FullTextSearch.php:31 +#: ../lib/main.php:641 ../lib/plugin/FullTextSearch.php:32 #: ../lib/plugin/WantedPages.php:123 msgid "FullTextSearch" msgstr "RechercheEnTexteIntégral" # lib/fullsearch.php:48 -#: ../lib/main.php:664 ../lib/plugin/RecentChanges.php:519 +#: ../lib/main.php:644 ../lib/plugin/RecentChanges.php:525 #: ../lib/plugin/TitleSearch.php:31 msgid "TitleSearch" msgstr "RechercheParTitre" -#: ../lib/main.php:772 +#: ../lib/main.php:757 msgid "The session.save_path directory" msgstr "" -#: ../lib/main.php:775 +#: ../lib/main.php:760 #, fuzzy, c-format msgid "the directory '%s'" msgstr "Utilisation du répertoire '%s'" -#: ../lib/main.php:779 +#: ../lib/main.php:764 #, c-format msgid "Attempting to use the directory '%s' instead." msgstr "" -#: ../lib/main.php:786 +#: ../lib/main.php:771 msgid "Users will not be able to sign in." msgstr "" +#: ../lib/plugin/AddComment.php:39 +#, fuzzy +msgid "AddComment" +msgstr "Table des Matières" + +#: ../lib/plugin/AddComment.php:43 +#, fuzzy, c-format +msgid "Show and add comments for %s" +msgstr "Indiquer les modifications depuis " + +#: ../lib/plugin/AddComment.php:106 ../lib/plugin/CreateToc.php:203 +#, fuzzy +msgid "Click to display" +msgstr "%s de cette page" + +#: ../lib/plugin/AddComment.php:108 +#, fuzzy +msgid "Comments" +msgstr "Table des Matières" + #: ../lib/plugin/AllPages.php:31 msgid "AllPages" msgstr "ToutesLesPages" @@ -1129,29 +1340,30 @@ msgstr "Pages Orphelines dans ce wiki (%d au total) :" msgid "Pages in this wiki (%d total):" msgstr "Pages dans ce wiki (%d au total) :" -#: ../lib/plugin/AllPages.php:82 ../lib/plugin/AllUsers.php:94 +#: ../lib/plugin/AllPages.php:81 ../lib/plugin/AllUsers.php:100 #, fuzzy, c-format msgid "Elapsed time: %s s" msgstr "temps écoulé : %s s" -#: ../lib/plugin/AllUsers.php:33 +#: ../lib/plugin/AllUsers.php:36 #, fuzzy msgid "AllUsers" msgstr "ToutesLesPages" -#: ../lib/plugin/AllUsers.php:37 +#: ../lib/plugin/AllUsers.php:40 msgid "" "With external authentication all users which stored their Preferences. " "Without external authentication all once signed-in users (from version 1.3.4 " "on)." msgstr "" -#: ../lib/plugin/AllUsers.php:72 +#: ../lib/plugin/AllUsers.php:76 #, fuzzy, c-format msgid "Authenticated users on this wiki (%d total):" msgstr "Pages Orphelines dans ce wiki (%d au total) :" #: ../lib/plugin/AuthorHistory.php:70 +#: ../themes/smaller/templates/info.tmpl:169 msgid "AuthorHistory" msgstr "" @@ -1167,6 +1379,8 @@ msgid "Minor" msgstr "mineure" #: ../lib/plugin/AuthorHistory.php:125 +#: ../themes/default/templates/forum-thread.tmpl:21 +#: ../themes/default/templates/forum-topics.tmpl:23 #, fuzzy msgid "Author" msgstr "Auteur :" @@ -1195,12 +1409,12 @@ msgstr "" #: ../lib/plugin/AuthorHistory.php:218 #, c-format -msgid "History of all major and minor modifcations for any page edited by %s." +msgid "History of all major and minor modifications for any page edited by %s." msgstr "" #: ../lib/plugin/AuthorHistory.php:218 #, c-format -msgid "History of major modifcations for any page edited by %s." +msgid "History of major modifications for any page edited by %s." msgstr "" #: ../lib/plugin/BackLinks.php:35 @@ -1241,7 +1455,7 @@ msgstr "%s pages pointent vers %s :" #: ../lib/plugin/Calendar.php:41 ../lib/plugin/Calendar.php:45 #: ../themes/default/templates/head.tmpl:85 #: ../themes/default/templates/homepage.tmpl:15 -#: ../themes/default/templates/navbar.tmpl:27 +#: ../themes/default/templates/navbar.tmpl:28 msgid "Calendar" msgstr "Calendrier" @@ -1272,6 +1486,46 @@ msgstr "Table des Mati msgid "Embed hidden comments in WikiPages." msgstr "" +# lib/display.php:14 +#: ../lib/plugin/CreatePage.php:37 +#, fuzzy +msgid "CreatePage" +msgstr "PagesOrphelines" + +# lib/mysql.php:116 +#: ../lib/plugin/CreatePage.php:41 +#, fuzzy +msgid "Create a Wiki page." +msgstr "Erreur en écrivant la page '%s'" + +#: ../lib/plugin/CreateToc.php:34 +#, fuzzy +msgid "CreateToc" +msgstr "Enregistrée : %s" + +#: ../lib/plugin/CreateToc.php:38 +msgid "Automatically link headers at the top" +msgstr "" + +#: ../lib/plugin/CreateToc.php:146 ../lib/plugin/IncludePage.php:116 +msgid "no page specified" +msgstr "aucune page indiquée" + +#: ../lib/plugin/CreateToc.php:205 ../lib/plugin/CreateToc.php:208 +#, fuzzy +msgid "Table Of Contents" +msgstr "Table des Matières" + +#: ../lib/plugin/Diff.php:40 +#, fuzzy +msgid "Display differences between revisions" +msgstr "Différences entre %s et %s de %s." + +#: ../lib/plugin/Diff.php:52 +#, fuzzy +msgid "World" +msgstr "BonjourToutLeMonde" + #: ../lib/plugin/EditMetaData.php:45 #, fuzzy msgid "EditMetaData" @@ -1321,7 +1575,7 @@ msgid "" "Displays a url in a seperate frame inside our body. Only one frame allowed." msgstr "" -#: ../lib/plugin/FrameInclude.php:93 ../lib/plugin/IncludePage.php:124 +#: ../lib/plugin/FrameInclude.php:93 ../lib/plugin/IncludePage.php:123 #, c-format msgid "recursive inclusion of page %s" msgstr "insertion récursive de la page %s" @@ -1342,13 +1596,18 @@ msgstr "insertion r msgid "See %s" msgstr "Voir %s" -#: ../lib/plugin/FullTextSearch.php:35 +#: ../lib/plugin/FullTextSearch.php:36 #, fuzzy msgid "Search the content of all pages in this wiki." msgstr "Les %d pages les plus populaires de ce wiki :" +#: ../lib/plugin/FullTextSearch.php:91 +#, c-format +msgid "only %d pages displayed" +msgstr "" + # lib/fullsearch.php:48 -#: ../lib/plugin/FullTextSearch.php:80 +#: ../lib/plugin/FullTextSearch.php:97 #, c-format msgid "Full text search results for '%s'" msgstr "Résultats de la recherche en texte intégral de ' %s '" @@ -1383,6 +1642,14 @@ msgstr "" msgid "Sound Score" msgstr "" +#: ../lib/plugin/GooglePlugin.php:43 +msgid "GooglePlugin" +msgstr "" + +#: ../lib/plugin/GooglePlugin.php:47 +msgid "Make use of the Google API" +msgstr "" + #: ../lib/plugin/HelloWorld.php:46 msgid "HelloWorld" msgstr "BonjourToutLeMonde" @@ -1400,25 +1667,31 @@ msgid "Include text from another wiki page." msgstr "" #: ../lib/plugin/IncludePage.php:93 ../lib/plugin/PageGroup.php:80 -#: ../lib/plugin/UnfoldSubpages.php:116 +#: ../lib/plugin/UnfoldSubpages.php:117 #, c-format msgid "<%s: no such section>" msgstr "<%s : pas de section de ce type>" -#: ../lib/plugin/IncludePage.php:117 -msgid "no page specified" -msgstr "aucune page indiquée" - -#: ../lib/plugin/IncludePage.php:133 ../lib/plugin/PageGroup.php:121 +#: ../lib/plugin/IncludePage.php:132 ../lib/plugin/PageGroup.php:121 #, c-format msgid "%s(%d): no such revision" msgstr "%s(%d) : révision inexistante" -#: ../lib/plugin/IncludePage.php:162 +#: ../lib/plugin/IncludePage.php:161 #, c-format msgid "Included from %s" msgstr "Inséré de %s" +#: ../lib/plugin/IncludeSiteMap.php:52 +#, fuzzy +msgid "IncludeSiteMap" +msgstr "InsérezLaPage" + +#: ../lib/plugin/IncludeSiteMap.php:56 +#, c-format +msgid "Include recursively all linked pages starting at %s" +msgstr "" + #: ../lib/plugin/InterWikiSearch.php:31 #, fuzzy msgid "InterWikiSearch" @@ -1428,18 +1701,19 @@ msgstr "CarteInterWiki" msgid "Perform searches on InterWiki sites listed in InterWikiMap." msgstr "" -#: ../lib/plugin/InterWikiSearch.php:70 +#: ../lib/plugin/InterWikiSearch.php:91 #, fuzzy msgid "Wiki Name" msgstr "Nom de Page" # lib/stdlib.php:207 lib/stdlib.php:215 -#: ../lib/plugin/InterWikiSearch.php:71 ../lib/plugin/RecentChanges.php:516 +#: ../lib/plugin/InterWikiSearch.php:92 ../lib/plugin/RecentChanges.php:522 msgid "Search" msgstr "Chercher" #: ../lib/plugin/LikePages.php:32 ../themes/Portland/templates/navbar.tmpl:10 -#: ../themes/default/templates/navbar.tmpl:21 +#: ../themes/default/templates/navbar.tmpl:22 +#: ../themes/smaller/templates/navbar.tmpl:18 msgid "LikePages" msgstr "PagesSemblables" @@ -1473,7 +1747,7 @@ msgstr "" msgid "Lists the names of all SubPages of the current page." msgstr "" -#: ../lib/plugin/ListSubpages.php:68 ../lib/plugin/UnfoldSubpages.php:133 +#: ../lib/plugin/ListSubpages.php:68 ../lib/plugin/UnfoldSubpages.php:127 msgid "The current page has no subpages defined." msgstr "" @@ -1482,7 +1756,7 @@ msgstr "" msgid "SubPages of %s:" msgstr "Historique de %s" -#: ../lib/plugin/ListSubpages.php:90 ../lib/plugin/UnfoldSubpages.php:149 +#: ../lib/plugin/ListSubpages.php:90 ../lib/plugin/UnfoldSubpages.php:137 #, fuzzy, c-format msgid "recursive inclusion of page %s ignored" msgstr "insertion récursive de la page %s" @@ -1496,20 +1770,29 @@ msgstr "LePlusVisit msgid "List the most popular pages." msgstr "Énumérez le plus populaire des pages" -#: ../lib/plugin/MostPopular.php:78 +#: ../lib/plugin/MostPopular.php:80 #, c-format msgid "The %d most popular pages of this wiki:" msgstr "Les %d pages les plus populaires de ce wiki :" -#: ../lib/plugin/MostPopular.php:81 +#: ../lib/plugin/MostPopular.php:83 #, c-format msgid "The %d least popular pages of this wiki:" msgstr "Les %d pages les moins populaires de ce wiki :" -#: ../lib/plugin/MostPopular.php:83 +#: ../lib/plugin/MostPopular.php:85 msgid "Visited pages on this wiki, ordered by popularity:" msgstr "Pages visitées sur ce wiki, classées par ordre de popularité :" +#: ../lib/plugin/NoCache.php:39 +#, fuzzy +msgid "NoCache" +msgstr "Annuler" + +#: ../lib/plugin/NoCache.php:43 +msgid "Don't cache this page." +msgstr "" + #: ../lib/plugin/OldStyleTable.php:49 msgid "OldStyleTable" msgstr "" @@ -1662,6 +1945,8 @@ msgstr "Version %d" #: ../themes/SpaceWiki/lib/RecentChanges.php:35 #: ../themes/default/templates/info.tmpl:18 #: ../themes/default/templates/info.tmpl:22 +#: ../themes/smaller/templates/info.tmpl:19 +#: ../themes/smaller/templates/info.tmpl:23 msgid "minor edit" msgstr "édition mineure" @@ -1672,6 +1957,8 @@ msgstr "Historique des changements." #: ../lib/plugin/PageHistory.php:247 ../lib/plugin/RecentChanges.php:65 #: ../themes/Portland/templates/actionbar.tmpl:18 #: ../themes/default/templates/actionbar.tmpl:27 +#: ../themes/smaller/templates/actionbar.tmpl:33 +#: ../themes/smaller/templates/info.tmpl:168 msgid "PageHistory" msgstr "Historique" @@ -1693,34 +1980,41 @@ msgstr "InfosDeLaPage" msgid "Show extra page Info and statistics for %s." msgstr "" -#: ../lib/plugin/PageTrail.php:43 +#: ../lib/plugin/PageTrail.php:45 msgid "PageTrail" msgstr "" -#: ../lib/plugin/PageTrail.php:47 +#: ../lib/plugin/PageTrail.php:49 msgid "PageTrail Plugin" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:53 +#: ../lib/plugin/PhotoAlbum.php:146 msgid "PhotoAlbum" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:57 +#: ../lib/plugin/PhotoAlbum.php:150 msgid "" "Displays a set of photos listed in a text file with optional descriptions" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:80 ../lib/plugin/Transclude.php:76 -#, c-format -msgid "%s parameter missing" +#: ../lib/plugin/PhotoAlbum.php:433 +msgid "Fixed album location is not allowed." msgstr "" -#: ../lib/plugin/PhotoAlbum.php:84 ../lib/plugin/Transclude.php:85 +#: ../lib/plugin/PhotoAlbum.php:434 +msgid "));" +msgstr "" + +#: ../lib/plugin/PhotoAlbum.php:452 ../lib/plugin/Transclude.php:85 #, fuzzy msgid "Bad url in src: remove all of <, >, \"" msgstr "MAUVAIS URL -- retirez tous les <, >, \"" -#: ../lib/plugin/PhotoAlbum.php:90 +#: ../lib/plugin/PhotoAlbum.php:476 +msgid "Wrong server setting: allow_url_fopen set to Off" +msgstr "" + +#: ../lib/plugin/PhotoAlbum.php:480 #, c-format msgid "Unable to read %s " msgstr "" @@ -1938,7 +2232,7 @@ msgid "All %s are listed below." msgstr "Toutes les %s sont énumérées ci-dessous." #: ../lib/plugin/RecentChanges.php:250 ../lib/plugin/RecentChanges.php:263 -#: ../lib/plugin/RecentChanges.php:362 ../lib/plugin/RecentChanges.php:438 +#: ../lib/plugin/RecentChanges.php:365 ../lib/plugin/RecentChanges.php:441 #: ../themes/Portland/templates/editpage.tmpl:66 msgid "RecentEdits" msgstr "ÉditionsRécentes" @@ -1949,27 +2243,27 @@ msgid "No changes found" msgstr "Historique des changements." # lib/fullsearch.php:48 -#: ../lib/plugin/RecentChanges.php:517 +#: ../lib/plugin/RecentChanges.php:523 msgid "Title Search" msgstr "Recherche par titre" -#: ../lib/plugin/RecentChanges.php:740 +#: ../lib/plugin/RecentChanges.php:746 msgid "Show minor edits for:" msgstr "Indiquer les modifications mineures depuis " -#: ../lib/plugin/RecentChanges.php:742 +#: ../lib/plugin/RecentChanges.php:748 msgid "Show all changes for:" msgstr "Indiquer toutes les modifications depuis " -#: ../lib/plugin/RecentChanges.php:744 +#: ../lib/plugin/RecentChanges.php:750 msgid "Show changes for:" msgstr "Indiquer les modifications depuis " -#: ../lib/plugin/RecentChanges.php:764 +#: ../lib/plugin/RecentChanges.php:770 msgid "1 day" msgstr "1 jour" -#: ../lib/plugin/RecentChanges.php:768 +#: ../lib/plugin/RecentChanges.php:774 #, c-format msgid "%s days" msgstr "%s jours" @@ -2000,20 +2294,41 @@ msgstr "" msgid "Viewing redirecting page." msgstr "Les %d pages les plus populaires de ce wiki :" -#: ../lib/plugin/SiteMap.php:49 +#: ../lib/plugin/RichTable.php:32 +msgid "RichTable" +msgstr "" + +#: ../lib/plugin/RichTable.php:36 +msgid "Layout tables using a very rich markup style." +msgstr "" + +#: ../lib/plugin/SiteMap.php:51 msgid "SiteMap" msgstr "" -#: ../lib/plugin/SiteMap.php:53 +#: ../lib/plugin/SiteMap.php:55 #, fuzzy, c-format msgid "Recursively get BackLinks or links for %s" msgstr "Obtenir des RétroLiens pour %s" -#: ../lib/plugin/SiteMap.php:161 +#: ../lib/plugin/SiteMap.php:169 #, c-format msgid "(max. recursion level: %d)" msgstr "" +#: ../lib/plugin/SqlResult.php:42 +msgid "SqlResult" +msgstr "" + +#: ../lib/plugin/SqlResult.php:46 +msgid "Display arbitrary SQL result tables" +msgstr "" + +#: ../lib/plugin/SqlResult.php:81 ../lib/plugin/WikiPoll.php:159 +#: ../lib/plugin/WikiPoll.php:228 +msgid "Sorry! You must wait at least 20 minutes until you can vote again!" +msgstr "" + #: ../lib/plugin/SystemInfo.php:52 msgid "SystemInfo" msgstr "" @@ -2268,6 +2583,11 @@ msgstr "Ins msgid "Include an external web page within the body of a wiki page." msgstr "" +#: ../lib/plugin/Transclude.php:76 +#, c-format +msgid "%s parameter missing" +msgstr "" + #: ../lib/plugin/Transclude.php:88 #, fuzzy msgid "Transcluded page" @@ -2283,6 +2603,85 @@ msgstr "Voir %s" msgid "Transcluded from %s" msgstr "Inséré de %s" +#: ../lib/plugin/TranslateText.php:44 ../lib/plugin/_WikiTranslation.php:98 +#, fuzzy +msgid "TranslateText" +msgstr "InsérezLaPage" + +#: ../lib/plugin/TranslateText.php:48 +msgid "Define a translation for a specified text" +msgstr "" + +#: ../lib/plugin/TranslateText.php:68 +msgid "This internal action page cannot viewed." +msgstr "" + +#: ../lib/plugin/TranslateText.php:69 +msgid "You can only use it via the _WikiTranslation plugin." +msgstr "" + +#: ../lib/plugin/TranslateText.php:76 +msgid "Translation Error!" +msgstr "" + +#: ../lib/plugin/TranslateText.php:77 +msgid "" +"Your translated text is either empty or equal to the untranslated text. " +"Please try again." +msgstr "" + +#: ../lib/plugin/TranslateText.php:82 +msgid "ContributedTranslations" +msgstr "" + +#: ../lib/plugin/TranslateText.php:96 +#, c-format +msgid "Translate '%s' to '%s' in *%s*" +msgstr "" + +#: ../lib/plugin/TranslateText.php:99 +#, c-format +msgid "Translate %s to %s in %s" +msgstr "" + +# lib/savepage.php:76 +#: ../lib/plugin/TranslateText.php:103 +#, fuzzy +msgid "Thanks for adding this translation!" +msgstr "Merci d'avoir édité %s." + +#: ../lib/plugin/TranslateText.php:104 +#, c-format +msgid "" +"Your translated text doesn't yet appear in this %s, but the Administrator " +"will pick it up and add to the installation." +msgstr "" + +#: ../lib/plugin/TranslateText.php:106 +#, c-format +msgid "Your translation is stored in %s" +msgstr "" + +#: ../lib/plugin/TranslateText.php:112 ../lib/plugin/TranslateText.php:114 +#, fuzzy, c-format +msgid "From english to %s: " +msgstr "Aucune page ne pointe vers %s." + +#: ../lib/plugin/TranslateText.php:115 +#, fuzzy +msgid "Translate" +msgstr "InsérezLaPage" + +#: ../lib/plugin/TranslateText.php:118 ../lib/plugin/WikiAdminChmod.php:163 +#: ../lib/plugin/WikiAdminRemove.php:201 ../lib/plugin/WikiAdminRename.php:158 +#: ../lib/plugin/WikiAdminSearchReplace.php:185 +#: ../lib/plugin/WikiAdminSelect.php:196 ../lib/plugin/WikiAdminSelect.php:217 +#: ../lib/plugin/WikiAdminSetAcl.php:157 ../lib/removepage.php:22 +#: ../themes/default/templates/login.tmpl:68 +#: ../themes/default/templates/userprefs.tmpl:214 +msgid "Cancel" +msgstr "Annuler" + #: ../lib/plugin/UnfoldSubpages.php:36 msgid "UnfoldSubpages" msgstr "" @@ -2291,67 +2690,87 @@ msgstr "" msgid "Includes the content of all SubPages of the current page." msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:83 +#: ../lib/plugin/UnfoldSubpages.php:84 #, c-format msgid "... first %d words" msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:164 +#: ../lib/plugin/UnfoldSubpages.php:152 #, c-format msgid " ... first %d lines" msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:188 +#: ../lib/plugin/UnfoldSubpages.php:176 #, fuzzy, c-format msgid "Included from %s:" msgstr "Inséré de %s" -#: ../lib/plugin/UpLoad.php:52 -msgid "Simple Plugin to load files up to server" +#: ../lib/plugin/UpLoad.php:53 +msgid "Upload files to the local InterWiki Upload:" msgstr "" -#: ../lib/plugin/UpLoad.php:79 ../lib/plugin/WikiForm.php:100 +#: ../lib/plugin/UpLoad.php:84 ../lib/plugin/WikiForm.php:100 msgid "Upload" msgstr "Télécharger" -#: ../lib/plugin/UpLoad.php:102 -msgid "ACCESS DENIED: Please log in to upload files" -msgstr "" +#: ../lib/plugin/UpLoad.php:100 +#, fuzzy +msgid "ACCESS DENIED: You must log in to upload files." +msgstr "Vous devez vous connecter pour %s ce wiki" -#: ../lib/plugin/UpLoad.php:116 +#: ../lib/plugin/UpLoad.php:112 #, c-format msgid "Files with extension %s are not allowed" msgstr "" -#: ../lib/plugin/UpLoad.php:122 +#: ../lib/plugin/UpLoad.php:116 #, c-format msgid "There is already a file with name %s uploaded" msgstr "" -#: ../lib/plugin/UpLoad.php:128 +#: ../lib/plugin/UpLoad.php:120 msgid "Sorry but this file is too big" msgstr "" -#: ../lib/plugin/UpLoad.php:133 -msgid "File successfully uploaded to location:" +#: ../lib/plugin/UpLoad.php:127 +msgid "File successfully uploaded." msgstr "" -#: ../lib/plugin/UpLoad.php:141 +#: ../lib/plugin/UpLoad.php:144 +#, fuzzy, c-format +msgid "uploaded %s" +msgstr "Téléchargement de %s" + +#: ../lib/plugin/UpLoad.php:150 +#, fuzzy +msgid "Uploading failed: " +msgstr "Charger le fichier" + +#: ../lib/plugin/UpLoad.php:168 msgid "Error: the upload log is not writable" msgstr "" -#: ../lib/plugin/UpLoad.php:145 +#: ../lib/plugin/UpLoad.php:172 msgid "Error: can't open the upload logfile" msgstr "" -#: ../lib/plugin/UpLoad.php:164 +#: ../lib/plugin/UserFileManagement.php:38 +msgid "UserFileManagement" +msgstr "" + +#: ../lib/plugin/UserFileManagement.php:42 +msgid "Allows registered users to manipulate his/her files" +msgstr "" + +#: ../lib/plugin/UserFileManagement.php:136 #, fuzzy -msgid "Uploading failed." -msgstr "Charger le fichier" +msgid "Current directory: " +msgstr "Utilisation du répertoire '%s'" #: ../lib/plugin/UserPreferences.php:34 #: ../themes/default/templates/head.tmpl:82 #: ../themes/default/templates/homepage.tmpl:11 +#: ../themes/smaller/templates/navbar.tmpl:25 msgid "UserPreferences" msgstr "PréférencesUtilisateurs" @@ -2361,20 +2780,127 @@ msgid "" "cannot be saved." msgstr "" -#: ../lib/plugin/UserPreferences.php:79 +#: ../lib/plugin/UserPreferences.php:80 msgid "Wrong password. Try again." msgstr "" -#: ../lib/plugin/UserPreferences.php:85 +#: ../lib/plugin/UserPreferences.php:97 +#, fuzzy +msgid "Password updated." +msgstr "Mot de passe" + +#: ../lib/plugin/UserPreferences.php:99 ../lib/plugin/UserPreferences.php:102 +msgid "Password cannot be changed." +msgstr "" + +#: ../lib/plugin/UserPreferences.php:106 #, fuzzy msgid "No changes." msgstr "Historique des changements." -#: ../lib/plugin/UserPreferences.php:89 +#: ../lib/plugin/UserPreferences.php:109 #, c-format msgid "%d UserPreferences fields successfully updated." msgstr "" +#: ../lib/plugin/UserRegistration.php:16 +msgid "UserRegistration" +msgstr "" + +#: ../lib/plugin/UserRegistration.php:28 +msgid "Only the administrator is allowed to register new users." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:31 +msgid "Warning: You are already signed in, you cannot create another account." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:56 +#, fuzzy +msgid "Error: You must specify a user-id for the account." +msgstr "Vous devez spécifier un répertoire de vidage" + +#: ../lib/plugin/UserRegistration.php:59 +msgid "Error: The user-id you specified is too short." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:63 +msgid "Error: The user-id you specified is not a valid WikiWord." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:66 +msgid "" +"Error: The user-id you specified is already in use, please choose another." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:72 +#, fuzzy +msgid "Error: You must specify a password for the account." +msgstr "Vous devez spécifier un répertoire de vidage" + +#: ../lib/plugin/UserRegistration.php:74 +msgid "Error: The password you specified is too short." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:78 +msgid "Error: You must specify an email address." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:81 +msgid "Error: The email address you specified is not valid." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:84 +#, fuzzy +msgid "Error: You must specify a first name." +msgstr "Vous devez spécifier un répertoire de vidage" + +#: ../lib/plugin/UserRegistration.php:87 +msgid "Error: You must specify a last name." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:97 +msgid "" +"Error: There seemed to be some problem creating the new home page. Please " +"try again or contact the administrator for assistance." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:112 +msgid "You have been registered at " +msgstr "" + +#: ../lib/plugin/UserRegistration.php:114 +msgid "Your username is: " +msgstr "" + +#: ../lib/plugin/UserRegistration.php:115 +msgid "Your password is: " +msgstr "" + +# lib/mysql.php:116 +#: ../lib/plugin/UserRegistration.php:116 +#, fuzzy +msgid "Your home page is: " +msgstr "Erreur en écrivant la page '%s'" + +#: ../lib/plugin/UserRegistration.php:118 +msgid "Welcome to our Wiki." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:126 +msgid " has been created." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:130 +msgid "The user has been sent their login information by email." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:132 +msgid "" +"Your password was sent to your email address. Please check your mail and " +"then login." +msgstr "" + #: ../lib/plugin/VisualWiki.php:93 msgid "" "Visualizes the Wiki structure in a graph using the 'dot' commandline tool " @@ -2400,7 +2926,7 @@ msgstr "PagesOrphelines" msgid "Lists referenced page names which do not exist yet." msgstr "" -#: ../lib/plugin/WantedPages.php:47 +#: ../lib/plugin/WantedPages.php:47 ../lib/plugin/_WikiTranslation.php:79 msgid "PgsrcTranslation" msgstr "" @@ -2423,6 +2949,106 @@ msgstr "Pages Orphelines dans ce wiki (%d au total) :" msgid "Count" msgstr "Table des Matières" +#: ../lib/plugin/WhoIsOnline.php:38 +msgid "WhoIsOnline" +msgstr "" + +#: ../lib/plugin/WhoIsOnline.php:42 +#, fuzzy +msgid "Show summary information of the current user sessions." +msgstr "Obtenir des infos de débogage pour %s." + +#: ../lib/plugin/WhoIsOnline.php:98 +msgid "Guest" +msgstr "" + +#: ../lib/plugin/WhoIsOnline.php:108 +#, fuzzy +msgid "" +msgstr "< acune >" + +#: ../lib/plugin/WhoIsOnline.php:169 +#, c-format +msgid "%d minutes" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:42 +#, fuzzy +msgid "WikiAdminChmod" +msgstr "AdministrationDePhpWiki" + +#: ../lib/plugin/WikiAdminChmod.php:46 ../lib/plugin/WikiAdminSetAcl.php:45 +msgid "Set individual page permissions." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:80 +#, fuzzy, c-format +msgid "chmod page '%s' to '%s'." +msgstr "Aucune page ne pointe vers %s." + +#: ../lib/plugin/WikiAdminChmod.php:83 +#, c-format +msgid "Couldn't chmod page '%s' to '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:87 +msgid "Invalid chmod string" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:92 ../lib/plugin/WikiAdminSetAcl.php:86 +#, fuzzy, c-format +msgid "%s pages have been changed." +msgstr "Ceci est une modification mineure." + +#: ../lib/plugin/WikiAdminChmod.php:95 +#: ../lib/plugin/WikiAdminSearchReplace.php:108 +#: ../lib/plugin/WikiAdminSetAcl.php:89 +#, fuzzy +msgid "No pages changed." +msgstr "Historique des changements." + +#: ../lib/plugin/WikiAdminChmod.php:150 ../lib/plugin/WikiAdminRemove.php:175 +#: ../lib/plugin/WikiAdminRename.php:144 +#: ../lib/plugin/WikiAdminSearchReplace.php:171 +#: ../lib/plugin/WikiAdminSetAcl.php:144 +msgid "Yes" +msgstr "" + +# admin.php:57 admin.php:65 +#: ../lib/plugin/WikiAdminChmod.php:154 ../lib/plugin/WikiAdminSetAcl.php:148 +#, fuzzy +msgid "Are you sure you want to permanently change the selected files?" +msgstr "Supprimer la page maintenant" + +#: ../lib/plugin/WikiAdminChmod.php:157 +msgid "Chmod" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:159 ../lib/plugin/WikiAdminSetAcl.php:153 +#, fuzzy +msgid "Select the pages to change:" +msgstr "prédécesseur de la modification majeure précédente" + +#: ../lib/plugin/WikiAdminChmod.php:180 ../lib/plugin/WikiAdminSetAcl.php:173 +msgid "This plugin is currently under development and does not work!" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:181 +msgid "Chmod to permission:" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:184 +msgid "(ugo : rwx)" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:191 ../lib/plugin/WikiAdminSetAcl.php:206 +msgid "Propagate new permissions to all subpages?" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:193 ../lib/plugin/WikiAdminSetAcl.php:208 +msgid "(disable individual page permissions, enable inheritance)?" +msgstr "" + #: ../lib/plugin/WikiAdminRemove.php:39 msgid "WikiAdminRemove" msgstr "" @@ -2434,214 +3060,753 @@ msgid "Permanently remove all selected pages." msgstr "Supprimer la page maintenant" # admin.php:63 -#: ../lib/plugin/WikiAdminRemove.php:116 ../lib/removepage.php:46 +#: ../lib/plugin/WikiAdminRemove.php:117 ../lib/removepage.php:46 #, c-format msgid "Removed page '%s' successfully." msgstr "Page ' %s ' supprimée avec succès." -#: ../lib/plugin/WikiAdminRemove.php:169 -msgid "Yes" -msgstr "" - -#: ../lib/plugin/WikiAdminRemove.php:171 +#: ../lib/plugin/WikiAdminRemove.php:177 msgid "Are you sure you want to permanently remove the selected files?" msgstr "" # admin.php:57 admin.php:65 -#: ../lib/plugin/WikiAdminRemove.php:174 +#: ../lib/plugin/WikiAdminRemove.php:180 #, fuzzy msgid "Remove selected pages" msgstr "Supprimer la page maintenant" # admin.php:57 admin.php:65 -#: ../lib/plugin/WikiAdminRemove.php:175 +#: ../lib/plugin/WikiAdminRemove.php:181 #, fuzzy msgid "Permanently remove the selected files:" msgstr "Supprimer la page maintenant" -#: ../lib/plugin/WikiAdminRemove.php:178 +#: ../lib/plugin/WikiAdminRemove.php:184 #, c-format msgid "Also pages which have been deleted at least %s days." msgstr "" # lib/mysql.php:116 -#: ../lib/plugin/WikiAdminRemove.php:182 +#: ../lib/plugin/WikiAdminRemove.php:188 #, fuzzy msgid "List all pages." msgstr "Erreur en écrivant la page '%s'" -#: ../lib/plugin/WikiAdminRemove.php:188 +#: ../lib/plugin/WikiAdminRemove.php:194 #, c-format msgid "(Pages which have been deleted at least %s days are already checked.)" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:195 ../lib/plugin/WikiAdminSelect.php:195 -#: ../lib/plugin/WikiAdminSelect.php:216 ../lib/removepage.php:22 -#: ../themes/default/templates/login.tmpl:72 -#: ../themes/default/templates/userprefs.tmpl:214 -msgid "Cancel" -msgstr "Annuler" +#: ../lib/plugin/WikiAdminRename.php:39 +#, fuzzy +msgid "WikiAdminRename" +msgstr "AdministrationDePhpWiki" -#: ../lib/plugin/WikiAdminSelect.php:41 -msgid "WikiAdminSelect" +# admin.php:57 admin.php:65 +#: ../lib/plugin/WikiAdminRename.php:43 +#, fuzzy +msgid "Rename selected pages." +msgstr "Supprimer la page maintenant" + +# admin.php:63 +#: ../lib/plugin/WikiAdminRename.php:76 +#, fuzzy, c-format +msgid "Renamed page '%s' to '%s'." +msgstr "Page ' %s ' supprimée avec succès." + +#: ../lib/plugin/WikiAdminRename.php:79 +#, c-format +msgid "Couldn't rename page '%s' to '%s'." msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:45 -msgid "" -"Allows selection of multiple pages which get passed to other WikiAdmin " -"plugins." +#: ../lib/plugin/WikiAdminRename.php:85 +#, c-format +msgid "%s pages have been permanently renamed." msgstr "" -# lib/pageinfo.php:10 lib/stdlib.php:239 -#: ../lib/plugin/WikiAdminSelect.php:88 ../lib/plugin/WikiAdminSelect.php:112 -#: ../lib/plugin/WikiAdminSelect.php:123 -msgid "Go" -msgstr "OK" +#: ../lib/plugin/WikiAdminRename.php:88 +#, fuzzy +msgid "No pages renamed." +msgstr "Historique des changements." + +# admin.php:57 admin.php:65 +#: ../lib/plugin/WikiAdminRename.php:147 +#, fuzzy +msgid "Are you sure you want to permanently rename the selected files?" +msgstr "Supprimer la page maintenant" + +# admin.php:57 admin.php:65 +#: ../lib/plugin/WikiAdminRename.php:151 +#, fuzzy +msgid "Rename selected pages" +msgstr "Supprimer la page maintenant" + +# admin.php:57 admin.php:65 +#: ../lib/plugin/WikiAdminRename.php:152 +#, fuzzy +msgid "Select the pages to rename:" +msgstr "Supprimer la page maintenant" + +# admin.php:57 admin.php:65 +#: ../lib/plugin/WikiAdminRename.php:173 +#, fuzzy +msgid "Rename" +msgstr "Supprimer la Page" + +#: ../lib/plugin/WikiAdminRename.php:173 +#, fuzzy +msgid "from" +msgstr "de %s" + +#: ../lib/plugin/WikiAdminRename.php:176 +msgid "to" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:179 +msgid "(no regex, case-sensitive)" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:182 +msgid "Change pagename in all linked pages also?" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:39 +msgid "WikiAdminSearchReplace" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:43 +msgid "Search and replace text in selected wiki pages." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:81 +#, c-format +msgid "WikiAdminSearchReplace %s by %s" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:89 +msgid "Error: Empty search string." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:96 +#, c-format +msgid "Replaced '%s' with '%s' in page '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:99 +#, c-format +msgid "Search string '%s' not found in page '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:105 +#, c-format +msgid "%s pages changed." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:169 +msgid "Warning: The search string cannot be empty!" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:174 +msgid "" +"Are you sure you want to permanently search & replace text in the selected " +"files?" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:178 +msgid "Search & Replace" +msgstr "" + +# admin.php:57 admin.php:65 +#: ../lib/plugin/WikiAdminSearchReplace.php:180 +#, fuzzy +msgid "Select the pages to search:" +msgstr "Supprimer la page maintenant" + +#: ../lib/plugin/WikiAdminSearchReplace.php:200 +msgid "Replace: " +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:203 +msgid "by" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:206 +msgid "(no regex) Case-exact: " +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:41 +msgid "WikiAdminSelect" +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:45 +msgid "" +"Allows selection of multiple pages which get passed to other WikiAdmin " +"plugins." +msgstr "" + +# lib/pageinfo.php:10 lib/stdlib.php:239 +#: ../lib/plugin/WikiAdminSelect.php:113 ../lib/plugin/WikiAdminSelect.php:124 +msgid "Go" +msgstr "OK" + +#: ../lib/plugin/WikiAdminSelect.php:118 +#, fuzzy +msgid "Select: " +msgstr "Effacé." + +#: ../lib/plugin/WikiAdminSelect.php:157 +#, c-format +msgid "Selected page '%s' passed to '%s'." +msgstr "" + +# admin.php:57 admin.php:65 +#: ../lib/plugin/WikiAdminSelect.php:194 +#, fuzzy +msgid "Select pages" +msgstr "Supprimer la page maintenant" + +#: ../lib/plugin/WikiAdminSetAcl.php:41 +#, fuzzy +msgid "WikiAdminSetAcl" +msgstr "AdministrationDePhpWiki" + +# lib/mysql.php:116 +#: ../lib/plugin/WikiAdminSetAcl.php:74 +#, fuzzy, c-format +msgid "set acl for page '%s'." +msgstr "Erreur en écrivant la page '%s'" + +# lib/msql.php:29 lib/mysql.php:36 +#: ../lib/plugin/WikiAdminSetAcl.php:77 +#, fuzzy, c-format +msgid "Couldn't setacl page '%s'." +msgstr "Impossible d'établir une connexion à la base de données : %s" + +#: ../lib/plugin/WikiAdminSetAcl.php:81 +msgid "Invalid acl" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:151 +msgid "SetAcl" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:181 +#, fuzzy, c-format +msgid "Pages: %s" +msgstr "Historique de %s" + +#: ../lib/plugin/WikiAdminSetAcl.php:184 +#, c-format +msgid "page permission inherited from %s" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:186 +msgid "invidual page permission" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:188 +msgid "default page permission" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:189 +#, fuzzy +msgid "Type: " +msgstr "Nom de Page" + +#: ../lib/plugin/WikiAdminUtils.php:29 +#, fuzzy +msgid "WikiAdminUtils" +msgstr "AdministrationDePhpWiki" + +#: ../lib/plugin/WikiAdminUtils.php:33 +msgid "Miscellaneous utility functions of use to the administrator." +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:66 +#, fuzzy +msgid "You must be an administrator to use this plugin." +msgstr "Vous devez être un administrateur pour %s ce wiki" + +#: ../lib/plugin/WikiAdminUtils.php:95 +msgid "WikiAdminUtils says:" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:97 ../lib/stdlib.php:1335 +msgid "Okay" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:103 +msgid "Purge Markup Cache" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:104 +msgid "Delete Pages With Invalid Names" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:114 +#, fuzzy +msgid "Markup cache purged!" +msgstr "< aucun résultat >" + +#: ../lib/plugin/WikiAdminUtils.php:130 +msgid "No pages with bad names were found." +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:138 +#, c-format +msgid "Deleted %s pages with invalid names:" +msgstr "" + +#: ../lib/plugin/WikiBlog.php:77 +#, fuzzy +msgid "WikiBlog" +msgstr "FormulaireWiki" + +#: ../lib/plugin/WikiBlog.php:81 +#, fuzzy, c-format +msgid "Show and add blogs for %s" +msgstr "Indiquer les modifications depuis " + +#: ../lib/plugin/WikiBlog.php:156 +#, fuzzy, c-format +msgid "No page specified for %s" +msgstr "aucune page indiquée" + +#: ../lib/plugin/WikiBlog.php:186 ../lib/plugin/WikiForum.php:136 +msgid "New comment." +msgstr "" + +#: ../lib/plugin/WikiBlog.php:265 ../lib/plugin/WikiForum.php:208 +#, c-format +msgid "Comments on %s:" +msgstr "" + +#: ../lib/plugin/WikiForm.php:32 +msgid "WikiForm" +msgstr "FormulaireWiki" + +#: ../lib/plugin/WikiForm.php:67 +msgid "Load File" +msgstr "Charger le fichier" + +#: ../lib/plugin/WikiForm.php:73 +msgid "Login" +msgstr "" + +#: ../lib/plugin/WikiForm.php:81 +msgid "Dump Pages" +msgstr "Vider les Pages" + +#: ../lib/plugin/WikiForm.php:89 +msgid "Dump Pages as XHTML" +msgstr "Vider les Pages au format XHTML" + +#: ../lib/plugin/WikiForm.php:104 +#, c-format +msgid "WikiForm: %s: unknown action" +msgstr "FormulaireWiki : %s : action inconnue" + +#: ../lib/plugin/WikiForum.php:46 +#, fuzzy +msgid "WikiForum" +msgstr "FormulaireWiki" + +#: ../lib/plugin/WikiForum.php:50 +msgid "Handles threaded topics with comments/news and provide a input form" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:59 +#, fuzzy +msgid "WikiPoll" +msgstr "FormulaireWiki" + +#: ../lib/plugin/WikiPoll.php:63 +msgid "Enable configurable polls" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:185 +msgid "Not enough questions answered!" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:194 ../lib/plugin/WikiPoll.php:255 +#, fuzzy, c-format +msgid "Missing %s for %s" +msgstr "Listes des PagesSemblables à %s" + +#: ../lib/plugin/WikiPoll.php:222 +msgid "Ok" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:225 +#, fuzzy +msgid "Reset" +msgstr "Inséré de %s" + +#: ../lib/plugin/WikiPoll.php:271 ../lib/plugin/WikiPoll.php:285 +#, c-format +msgid " %d%% (%d/%d)" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:301 ../lib/plugin/WikiPoll.php:303 +msgid "The result of this poll so far:" +msgstr "" + +# lib/savepage.php:76 +#: ../lib/plugin/WikiPoll.php:301 +#, fuzzy +msgid "Thanks for participating!" +msgstr "Merci d'avoir édité %s." + +#: ../lib/plugin/_AuthInfo.php:35 +#, fuzzy +msgid "_AuthInfo" +msgstr "Auteur :" + +#: ../lib/plugin/_AuthInfo.php:39 +msgid "Display general and user specific auth information." +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:65 +msgid "General Auth Settings" +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:100 +#, c-format +msgid "Personal Auth Settings for '%s'" +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:102 +msgid "No userid" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:30 ../lib/plugin/_WikiTranslation.php:57 +#: ../themes/Portland/templates/actionbar.tmpl:21 +#: ../themes/default/templates/actionbar.tmpl:32 +#: ../themes/smaller/templates/info.tmpl:175 +msgid "DebugInfo" +msgstr "DebugInfo" + +#: ../lib/plugin/_BackendInfo.php:34 +#, c-format +msgid "Get debugging information for %s." +msgstr "Obtenir des infos de débogage pour %s." + +#: ../lib/plugin/_BackendInfo.php:54 +#, c-format +msgid "Querying backend directly for '%s'" +msgstr "Requête directe au backend pour '%s'" + +#: ../lib/plugin/_BackendInfo.php:64 +#, c-format +msgid "No pagedata for %s" +msgstr "Pas de données de page pour %s" + +#: ../lib/plugin/_BackendInfo.php:95 +msgid "" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:95 +msgid "" +msgstr "" + +#: ../lib/plugin/_PreferencesInfo.php:30 +#: ../themes/default/templates/userprefs.tmpl:12 +#, fuzzy +msgid "PreferencesInfo" +msgstr "Références" + +#: ../lib/plugin/_PreferencesInfo.php:34 +#, fuzzy, c-format +msgid "Get preferences information for current user %s." +msgstr "Obtenir des infos de débogage pour %s." + +#: ../lib/plugin/_WikiTranslation.php:47 +#, fuzzy +msgid "AddCommentPlugin" +msgstr "Table des Matières" + +# lib/mysql.php:116 +#: ../lib/plugin/_WikiTranslation.php:48 +#, fuzzy +msgid "AddingPages" +msgstr "Erreur en écrivant la page '%s'" + +#: ../lib/plugin/_WikiTranslation.php:49 +msgid "AuthorHistoryPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:51 +#, fuzzy +msgid "CalendarListPlugin" +msgstr "Calendrier" + +#: ../lib/plugin/_WikiTranslation.php:52 +#, fuzzy +msgid "CalendarPlugin" +msgstr "Calendrier" + +# lib/diff.php:997 +#: ../lib/plugin/_WikiTranslation.php:53 +#, fuzzy +msgid "CategoryCategory" +msgstr "Page actuelle :" + +# lib/diff.php:997 +#: ../lib/plugin/_WikiTranslation.php:54 +#, fuzzy +msgid "CategoryHomePages" +msgstr "Page actuelle :" + +#: ../lib/plugin/_WikiTranslation.php:55 +#, fuzzy +msgid "CommentPlugin" +msgstr "Table des Matières" + +#: ../lib/plugin/_WikiTranslation.php:56 +#, fuzzy +msgid "CreateTocPlugin" +msgstr "Enregistrée : %s" + +#: ../lib/plugin/_WikiTranslation.php:58 +#, fuzzy +msgid "EditMetaDataPlugin" +msgstr "Pas de données de page pour %s" + +# lib/fullsearch.php:48 +#: ../lib/plugin/_WikiTranslation.php:59 +#, fuzzy +msgid "ExternalSearchPlugin" +msgstr "RechercheParTitre" + +# lib/display.php:14 +#: ../lib/plugin/_WikiTranslation.php:60 +#: ../themes/Portland/templates/navbar.tmpl:8 +#: ../themes/default/templates/head.tmpl:35 +#: ../themes/default/templates/navbar.tmpl:11 +#: ../themes/smaller/templates/navbar.tmpl:11 +msgid "FindPage" +msgstr "ChercherUnePage" + +#: ../lib/plugin/_WikiTranslation.php:61 +#, fuzzy +msgid "FrameIncludePlugin" +msgstr "InsérezLaPage" + +# lib/stdlib.php:384 lib/stdlib.php:445 +#: ../lib/plugin/_WikiTranslation.php:62 +#, fuzzy +msgid "FullRecentChanges" +msgstr "DernièresModifs" + +#: ../lib/plugin/_WikiTranslation.php:63 +#, fuzzy +msgid "HelloWorldPlugin" +msgstr "BonjourToutLeMonde" + +#: ../lib/plugin/_WikiTranslation.php:64 +#, fuzzy +msgid "HomePageAlias" +msgstr "Accueil" + +#: ../lib/plugin/_WikiTranslation.php:65 +#, fuzzy +msgid "IncludePagePlugin" +msgstr "InsérezLaPage" + +#: ../lib/plugin/_WikiTranslation.php:66 +#, fuzzy +msgid "InterWiki" +msgstr "CarteInterWiki" + +#: ../lib/plugin/_WikiTranslation.php:67 +msgid "LinkIcons" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:68 +msgid "MagicPhpWikiURLs" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:69 +msgid "MoreAboutMechanics" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:70 +msgid "NewMarkupTestPage" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:71 +msgid "OldMarkupTestPage" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:72 +#, fuzzy +msgid "OldStyleTablePlugin" +msgstr "Exemple Simple de Plugin" + +#: ../lib/plugin/_WikiTranslation.php:73 +#, fuzzy +msgid "PageDump" +msgstr "GroupeDePage" + +#: ../lib/plugin/_WikiTranslation.php:74 +#, fuzzy +msgid "PageGroupTest" +msgstr "GroupeDePage" + +#: ../lib/plugin/_WikiTranslation.php:75 +#, fuzzy +msgid "PageGroupTestFour" +msgstr "GroupeDePage" + +#: ../lib/plugin/_WikiTranslation.php:76 +#, fuzzy +msgid "PageGroupTestOne" +msgstr "GroupeDePage" + +#: ../lib/plugin/_WikiTranslation.php:77 +#, fuzzy +msgid "PageGroupTestThree" +msgstr "GroupeDePage" + +#: ../lib/plugin/_WikiTranslation.php:78 +#, fuzzy +msgid "PageGroupTestTwo" +msgstr "GroupeDePage" + +#: ../lib/plugin/_WikiTranslation.php:80 +msgid "PhotoAlbumPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:81 +msgid "PhpHighlightPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:82 +msgid "PhpWeatherPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:83 +msgid "PhpWiki" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:84 +#, fuzzy +msgid "PhpWikiAdministration/Chmod" +msgstr "AdministrationDePhpWiki" + +#: ../lib/plugin/_WikiTranslation.php:85 +#, fuzzy +msgid "PhpWikiAdministration/Remove" +msgstr "AdministrationDePhpWiki" -#: ../lib/plugin/WikiAdminSelect.php:117 +#: ../lib/plugin/_WikiTranslation.php:86 #, fuzzy -msgid "Select: " -msgstr "Effacé." - -#: ../lib/plugin/WikiAdminSelect.php:156 -#, c-format -msgid "Selected page '%s' passed to '%s'." -msgstr "" +msgid "PhpWikiAdministration/Rename" +msgstr "AdministrationDePhpWiki" -# admin.php:57 admin.php:65 -#: ../lib/plugin/WikiAdminSelect.php:193 +#: ../lib/plugin/_WikiTranslation.php:87 #, fuzzy -msgid "Select pages" -msgstr "Supprimer la page maintenant" +msgid "PhpWikiAdministration/Replace" +msgstr "AdministrationDePhpWiki" -#: ../lib/plugin/WikiAdminUtils.php:29 +#: ../lib/plugin/_WikiTranslation.php:88 #, fuzzy -msgid "WikiAdminUtils" +msgid "PhpWikiDocumentation" msgstr "AdministrationDePhpWiki" -#: ../lib/plugin/WikiAdminUtils.php:33 -msgid "Miscellaneous utility functions of use to the administrator." +#: ../lib/plugin/_WikiTranslation.php:89 +#, fuzzy +msgid "PhpWikiPoll" +msgstr "FormulaireWiki" + +#: ../lib/plugin/_WikiTranslation.php:90 +msgid "RawHtmlPlugin" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:65 +#: ../lib/plugin/_WikiTranslation.php:91 #, fuzzy -msgid "You must be an administrator to use this plugin." -msgstr "Vous devez être un administrateur pour %s ce wiki" +msgid "RecentVisitors" +msgstr "ÉditionsRécentes" -#: ../lib/plugin/WikiAdminUtils.php:93 -msgid "WikiAdminUtils says:" +#: ../lib/plugin/_WikiTranslation.php:92 +#, fuzzy +msgid "RedirectToPlugin" +msgstr "Inséré de %s" + +#: ../lib/plugin/_WikiTranslation.php:93 +msgid "ReleaseNotes" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:95 ../lib/stdlib.php:1320 -msgid "Okay" +#: ../lib/plugin/_WikiTranslation.php:94 +msgid "RichTablePlugin" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:101 -msgid "Purge Markup Cache" +#: ../lib/plugin/_WikiTranslation.php:95 +msgid "SteveWainstead" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:102 -msgid "Delete Pages With Invalid Names" +#: ../lib/plugin/_WikiTranslation.php:96 +msgid "SystemInfoPlugin" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:112 +#: ../lib/plugin/_WikiTranslation.php:97 #, fuzzy -msgid "Markup cache purged!" -msgstr "< aucun résultat >" +msgid "TranscludePlugin" +msgstr "InsérezLaPage" -#: ../lib/plugin/WikiAdminUtils.php:128 -msgid "No pages with bad names were found." +#: ../lib/plugin/_WikiTranslation.php:99 +msgid "UnfoldSubpagesPlugin" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:136 -#, c-format -msgid "Deleted %s pages with invalid names:" +#: ../lib/plugin/_WikiTranslation.php:100 +#, fuzzy +msgid "UpLoad" +msgstr "Télécharger" + +#: ../lib/plugin/_WikiTranslation.php:101 +msgid "WabiSabi" msgstr "" -#: ../lib/plugin/WikiBlog.php:74 +#: ../lib/plugin/_WikiTranslation.php:102 #, fuzzy -msgid "WikiBlog" +msgid "WikiBlogPlugin" msgstr "FormulaireWiki" -#: ../lib/plugin/WikiBlog.php:78 -#, fuzzy, c-format -msgid "Show and add blogs for %s" -msgstr "Indiquer les modifications depuis " +#: ../lib/plugin/_WikiTranslation.php:103 +#, fuzzy +msgid "WikiPlugin" +msgstr "FormulaireWiki" -#: ../lib/plugin/WikiBlog.php:183 -msgid "New comment." +#: ../lib/plugin/_WikiTranslation.php:104 +#: ../themes/default/templates/head.tmpl:70 +msgid "WikiWikiWeb" msgstr "" -#: ../lib/plugin/WikiBlog.php:257 -#, c-format -msgid "Comments on %s:" +#: ../lib/plugin/_WikiTranslation.php:113 +msgid "_WikiTranslation" msgstr "" -#: ../lib/plugin/WikiForm.php:32 -msgid "WikiForm" -msgstr "FormulaireWiki" - -#: ../lib/plugin/WikiForm.php:67 -msgid "Load File" -msgstr "Charger le fichier" - -#: ../lib/plugin/WikiForm.php:73 -msgid "Login" +#: ../lib/plugin/_WikiTranslation.php:117 +msgid "Show translations of various words or pages" msgstr "" -#: ../lib/plugin/WikiForm.php:81 -msgid "Dump Pages" -msgstr "Vider les Pages" - -#: ../lib/plugin/WikiForm.php:89 -msgid "Dump Pages as XHTML" -msgstr "Vider les Pages au format XHTML" - -#: ../lib/plugin/WikiForm.php:104 -#, c-format -msgid "WikiForm: %s: unknown action" -msgstr "FormulaireWiki : %s : action inconnue" - -#: ../lib/plugin/_BackendInfo.php:30 -#: ../themes/Portland/templates/actionbar.tmpl:21 -#: ../themes/default/templates/actionbar.tmpl:32 -msgid "DebugInfo" -msgstr "DebugInfo" - -#: ../lib/plugin/_BackendInfo.php:34 +#: ../lib/plugin/_WikiTranslation.php:266 #, c-format -msgid "Get debugging information for %s." -msgstr "Obtenir des infos de débogage pour %s." +msgid "" +"TODO: Google can only translate from english and french. Find a translation " +"service for %s to language %s" +msgstr "" -#: ../lib/plugin/_BackendInfo.php:54 -#, c-format -msgid "Querying backend directly for '%s'" -msgstr "Requête directe au backend pour '%s'" +#: ../lib/plugin/_WikiTranslation.php:270 +#, fuzzy, c-format +msgid "%s is empty" +msgstr "%s est vide." -#: ../lib/plugin/_BackendInfo.php:64 +#: ../lib/plugin/_WikiTranslation.php:360 #, c-format -msgid "No pagedata for %s" -msgstr "Pas de données de page pour %s" - -#: ../lib/plugin/_BackendInfo.php:95 -msgid "" -msgstr "" - -#: ../lib/plugin/_BackendInfo.php:95 -msgid "" +msgid "Define the translation for %s in %s" msgstr "" -#: ../lib/plugin/_PreferencesInfo.php:30 -#: ../themes/default/templates/userprefs.tmpl:12 -#, fuzzy -msgid "PreferencesInfo" -msgstr "Références" - -#: ../lib/plugin/_PreferencesInfo.php:34 -#, fuzzy, c-format -msgid "Get preferences information for current user %s." -msgstr "Obtenir des infos de débogage pour %s." - #: ../lib/plugin/text2png.php:46 msgid "Convert text into a png image using GD." msgstr "" @@ -2701,100 +3866,108 @@ msgstr "" msgid "Remove page" msgstr "Supprimer la page" -#: ../lib/stdlib.php:236 ../lib/stdlib.php:255 +#: ../lib/stdlib.php:234 ../lib/stdlib.php:253 msgid "BAD URL -- remove all of <, >, \"" msgstr "MAUVAIS URL -- retirez tous les <, >, \"" -#: ../lib/stdlib.php:316 +#: ../lib/stdlib.php:314 msgid "BAD phpwiki: URL" msgstr "MAUVAIS URL phpwiki :" -#: ../lib/stdlib.php:354 +#: ../lib/stdlib.php:352 msgid "Lock page to enable link" msgstr "Verrouillez la page pour permettre le lien" -#: ../lib/stdlib.php:453 +#: ../lib/stdlib.php:451 #, c-format msgid "'%s': Bad page name: %s" msgstr "" -#: ../lib/stdlib.php:490 +#: ../lib/stdlib.php:488 msgid "White space converted to single space" msgstr "" -#: ../lib/stdlib.php:495 +#: ../lib/stdlib.php:493 msgid "Control characters not allowed" msgstr "" -#: ../lib/stdlib.php:504 +#: ../lib/stdlib.php:502 #, c-format msgid "Leading %s not allowed" msgstr "" -#: ../lib/stdlib.php:507 +#: ../lib/stdlib.php:505 msgid "';' and ':' in pagenames are deprecated" msgstr "" -#: ../lib/stdlib.php:511 +#: ../lib/stdlib.php:509 msgid "too long" msgstr "" -#: ../lib/stdlib.php:516 +#: ../lib/stdlib.php:514 msgid "illegal pagename" msgstr "" -#: ../lib/stdlib.php:758 +#: ../lib/stdlib.php:756 msgid "Revision Not Found" msgstr "Révision Non Trouvée" -#: ../lib/stdlib.php:759 +#: ../lib/stdlib.php:757 #, fuzzy, c-format msgid "I'm sorry. Version %d of %s is not in the database." msgstr "Je suis désolé. La version %d de %s n'est pas dans la base de données." -#: ../lib/stdlib.php:762 +#: ../lib/stdlib.php:760 msgid "Bad Version" msgstr "Mauvaise Version" -#: ../lib/stdlib.php:898 +#: ../lib/stdlib.php:896 msgid "-???" msgstr "" -#: ../lib/stdlib.php:901 +#: ../lib/stdlib.php:899 #, fuzzy, c-format msgid "%s b" msgstr "%s octets" -#: ../lib/stdlib.php:903 +#: ../lib/stdlib.php:901 ../themes/smaller/templates/info.tmpl:29 #, c-format msgid "%s bytes" msgstr "%s octets" -#: ../lib/stdlib.php:908 +#: ../lib/stdlib.php:906 #, c-format msgid "%s k" msgstr "" -#: ../lib/stdlib.php:910 +#: ../lib/stdlib.php:908 ../themes/smaller/templates/info.tmpl:32 #, c-format msgid "%s Kb (%s bytes)" msgstr "%s Ko (%s octets)" -#: ../lib/stdlib.php:1006 +#: ../lib/stdlib.php:1004 #, c-format msgid "%s: argument index out of range" msgstr "%s : index d'argument hors intervalle" -#: ../lib/stdlib.php:1046 ../themes/Hawaiian/lib/random.php:20 +#: ../lib/stdlib.php:1073 ../themes/Hawaiian/lib/random.php:20 #, c-format msgid "%s is empty." msgstr "%s est vide." -#: ../lib/stdlib.php:1053 +#: ../lib/stdlib.php:1080 #, c-format msgid "Unable to open directory '%s' for reading" msgstr "Impossible d'ouvrir le répertoire '%s' en lecture" +#: ../lib/upgrade.php:134 +msgid "Upgrade disabled: user != isAdmin" +msgstr "" + +#: ../lib/upgrade.php:138 +msgid "Upgrading this PhpWiki" +msgstr "" + #: ../lib/ziplib.php:209 msgid "Can't inflate data: zlib support not enabled in this PHP" msgstr "" @@ -2822,16 +3995,18 @@ msgstr "R #: ../themes/Hawaiian/themeinfo.php:29 ../themes/MacOSX/themeinfo.php:104 #: ../themes/Portland/themeinfo.php:59 ../themes/Sidebar/themeinfo.php:32 #: ../themes/SpaceWiki/themeinfo.php:43 ../themes/default/themeinfo.php:24 +#: ../themes/smaller/themeinfo.php:26 msgid "Printer" msgstr "Imprimante" #: ../themes/Hawaiian/themeinfo.php:30 ../themes/Portland/themeinfo.php:60 #: ../themes/Sidebar/themeinfo.php:33 ../themes/SpaceWiki/themeinfo.php:44 -#: ../themes/default/themeinfo.php:26 +#: ../themes/default/themeinfo.php:26 ../themes/smaller/themeinfo.php:28 msgid "Modern" msgstr "Moderne" #: ../themes/MacOSX/themeinfo.php:105 ../themes/default/themeinfo.php:25 +#: ../themes/smaller/themeinfo.php:27 msgid "Top & bottom toolbars" msgstr "Barres d'outils en haut et en bas" @@ -2841,12 +4016,15 @@ msgstr " #: ../themes/Portland/templates/actionbar.tmpl:8 #: ../themes/default/templates/actionbar.tmpl:5 +#: ../themes/smaller/templates/actionbar.tmpl:6 msgid "Edit Old Revision" msgstr "Éditer la Version Archivée" #: ../themes/Portland/templates/actionbar.tmpl:10 #: ../themes/default/templates/actionbar.tmpl:7 #: ../themes/default/templates/head.tmpl:45 +#: ../themes/smaller/templates/actionbar.tmpl:8 +#: ../themes/smaller/templates/info.tmpl:167 msgid "View Source" msgstr "Afficher la Source" @@ -2885,17 +4063,17 @@ msgid "Page Execution took %s seconds" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:46 -#: ../themes/default/templates/editpage.tmpl:41 +#: ../themes/default/templates/editpage.tmpl:40 msgid "Warning: You are editing an old revision." msgstr "Avertissement : Vous éditez une version archivée." #: ../themes/Portland/templates/editpage.tmpl:47 -#: ../themes/default/templates/editpage.tmpl:42 +#: ../themes/default/templates/editpage.tmpl:41 msgid "Saving this page will overwrite the current version." msgstr "Enregistrer cette page écrasera la version actuelle." #: ../themes/Portland/templates/editpage.tmpl:62 -#: ../themes/default/templates/editpage.tmpl:89 +#: ../themes/default/templates/editpage.tmpl:95 #, c-format msgid "Author will be logged as %s." msgstr "L'auteur sera enregistré sous le nom %s." @@ -2914,71 +4092,64 @@ msgid "Edit Area Size" msgstr "Éditez la taille de la zone" #: ../themes/Portland/templates/editpage.tmpl:69 -#: ../themes/default/templates/editpage.tmpl:63 +#: ../themes/default/templates/editpage.tmpl:69 msgid "H" msgstr "H" #: ../themes/Portland/templates/editpage.tmpl:71 -#: ../themes/default/templates/editpage.tmpl:64 +#: ../themes/default/templates/editpage.tmpl:70 msgid "W" msgstr "L" #: ../themes/Portland/templates/editpage.tmpl:73 -#: ../themes/default/templates/editpage.tmpl:65 +#: ../themes/default/templates/editpage.tmpl:71 msgid "Adjust" msgstr "Ajuster" #: ../themes/Portland/templates/editpage.tmpl:75 -#: ../themes/default/templates/editpage.tmpl:78 +#: ../themes/default/templates/editpage.tmpl:84 #, fuzzy msgid "Use old markup" msgstr "Utiliser le vieux marquage" #: ../themes/Portland/templates/editpage.tmpl:80 -#: ../themes/default/templates/editpage.tmpl:25 +#: ../themes/default/templates/editpage.tmpl:24 msgid "Preview only! Changes not saved." msgstr "Prévisualisation uniquement ! Modifications non enregistrées." #: ../themes/Portland/templates/editpage.tmpl:103 #: ../themes/Portland/templates/editpage.tmpl:108 -#: ../themes/default/templates/editpage.tmpl:120 -#: ../themes/default/templates/editpage.tmpl:125 +#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:131 #, c-format msgid "See %s tips for editing." msgstr "Voir les conseils pour éditer les pages dans %s." #: ../themes/Portland/templates/editpage.tmpl:103 #: ../themes/Portland/templates/editpage.tmpl:108 -#: ../themes/default/templates/editpage.tmpl:120 -#: ../themes/default/templates/editpage.tmpl:125 +#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:131 msgid "GoodStyle" msgstr "StyleCorrect" #: ../themes/Portland/templates/editpage.tmpl:104 -#: ../themes/default/templates/editpage.tmpl:121 +#: ../themes/default/templates/editpage.tmpl:127 #, fuzzy msgid "OldTextFormattingRules" msgstr "RèglesDeFormatageDesTextes" #: ../themes/Portland/templates/editpage.tmpl:104 #: ../themes/Portland/templates/editpage.tmpl:109 -#: ../themes/default/templates/editpage.tmpl:121 -#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:127 +#: ../themes/default/templates/editpage.tmpl:132 msgid "Synopsis" msgstr "Vue d'ensemble" #: ../themes/Portland/templates/editpage.tmpl:109 -#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:132 msgid "TextFormattingRules" msgstr "RèglesDeFormatageDesTextes" -# lib/display.php:14 -#: ../themes/Portland/templates/navbar.tmpl:8 -#: ../themes/default/templates/head.tmpl:35 -#: ../themes/default/templates/navbar.tmpl:11 -msgid "FindPage" -msgstr "ChercherUnePage" - # lib/editpage.php:31 lib/savepage.php:52 #: ../themes/Portland/templates/viewsource.tmpl:6 #: ../themes/default/templates/viewsource.tmpl:6 @@ -2997,10 +4168,14 @@ msgid "diff" msgstr "diff" #: ../themes/default/templates/actionbar.tmpl:35 +#: ../themes/smaller/templates/actionbar.tmpl:38 +#: ../themes/smaller/templates/info.tmpl:178 msgid "PurgeHtmlCache" msgstr "" #: ../themes/default/templates/actionbar.tmpl:36 +#: ../themes/smaller/templates/actionbar.tmpl:39 +#: ../themes/smaller/templates/info.tmpl:179 msgid "" "Purge HTML cache for this page. Regenerate from WikiMarkup when next " "accessed." @@ -3012,8 +4187,10 @@ msgid "Add a Comment" msgstr "Table des Matières" #: ../themes/default/templates/blogform.tmpl:12 -#: ../themes/default/templates/editpage.tmpl:71 +#: ../themes/default/templates/editpage.tmpl:77 +#: ../themes/default/templates/forum-thread.tmpl:39 #: ../themes/default/templates/info.tmpl:72 +#: ../themes/smaller/templates/info.tmpl:78 #, fuzzy msgid "Summary:" msgstr "Résumé :" @@ -3023,29 +4200,85 @@ msgstr "R msgid "Comment:" msgstr "Table des Matières" +# lib/diff.php:1003 lib/diff.php:1021 +#: ../themes/default/templates/comment.tmpl:18 +#: ../themes/default/templates/wikiblog.tmpl:19 +#, fuzzy, c-format +msgid "Comment modified on %s by %s" +msgstr "dernière modification le %s" + +# lib/diff.php:1006 lib/diff.php:1024 +#: ../themes/default/templates/comment.tmpl:28 +#, fuzzy, c-format +msgid "%s by %s" +msgstr "par %s" + #: ../themes/default/templates/dialog.tmpl:18 msgid "Dialog" msgstr "" -#: ../themes/default/templates/editpage.tmpl:29 +#: ../themes/default/templates/editpage.tmpl:28 #, c-format msgid "" "Please continue editing. (You'll find your %s at the bottom of the page.)" msgstr "" -#: ../themes/default/templates/editpage.tmpl:30 +#: ../themes/default/templates/editpage.tmpl:29 #, fuzzy msgid "edit area" msgstr "Édition annulée." -#: ../themes/default/templates/editpage.tmpl:62 +#: ../themes/default/templates/editpage.tmpl:68 msgid "Edit Area Size:" msgstr "Taille de la zone d'édition :" -#: ../themes/default/templates/editpage.tmpl:77 +#: ../themes/default/templates/editpage.tmpl:83 msgid "This is a minor change." msgstr "Ceci est une modification mineure." +#: ../themes/default/templates/forum-thread.tmpl:19 +#: ../themes/default/templates/forum-topics.tmpl:18 +msgid "New Topic" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:19 +#: ../themes/default/templates/forum-thread.tmpl:37 +msgid "Post new" +msgstr "" + +# lib/msql.php:31 lib/msql.php:37 +#: ../themes/default/templates/forum-thread.tmpl:21 +#, fuzzy +msgid "Message" +msgstr "aucun message" + +#: ../themes/default/templates/forum-thread.tmpl:27 +#, fuzzy, c-format +msgid "Posted: %s" +msgstr "Historique de %s" + +#: ../themes/default/templates/forum-thread.tmpl:28 +#: ../themes/default/templates/forum-thread.tmpl:43 +msgid "Reply" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:21 +msgid "Topics" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:22 +msgid "Replies" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:24 +msgid "Views" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:25 +#, fuzzy +msgid "Last Post" +msgstr "Finale" + #: ../themes/default/templates/head.tmpl:31 msgid "HowToUseWiki" msgstr "" @@ -3054,10 +4287,6 @@ msgstr "" msgid "SandBox" msgstr "" -#: ../themes/default/templates/head.tmpl:70 -msgid "WikiWikiWeb" -msgstr "" - #: ../themes/default/templates/homepage.tmpl:10 #, c-format msgid "You can personalize various settings in %s." @@ -3079,104 +4308,125 @@ msgid "CategoryHomepage" msgstr "Page actuelle :" #: ../themes/default/templates/info.tmpl:31 +#: ../themes/smaller/templates/info.tmpl:37 msgid "1 word" msgstr "1 mot" #: ../themes/default/templates/info.tmpl:33 +#: ../themes/smaller/templates/info.tmpl:39 #, c-format msgid "%s words" msgstr "%s mots" # lib/diff.php:1001 lib/diff.php:1019 #: ../themes/default/templates/info.tmpl:37 +#: ../themes/smaller/templates/info.tmpl:43 #, c-format msgid "Version %s" msgstr "Version %s" #: ../themes/default/templates/info.tmpl:38 +#: ../themes/smaller/templates/info.tmpl:44 msgid "Original (1.2 or 1.0)" msgstr "Original (1.2 ou 1.0)" # lib/diff.php:1003 lib/diff.php:1021 #: ../themes/default/templates/info.tmpl:65 +#: ../themes/smaller/templates/info.tmpl:71 msgid "Last Modified:" msgstr "Dernière Modification :" #: ../themes/default/templates/info.tmpl:66 +#: ../themes/smaller/templates/info.tmpl:72 msgid "Last Author:" msgstr "Auteur Précédent :" #: ../themes/default/templates/info.tmpl:67 +#: ../themes/smaller/templates/info.tmpl:73 msgid "Last Summary:" msgstr "Dernier Résumé :" #: ../themes/default/templates/info.tmpl:70 +#: ../themes/smaller/templates/info.tmpl:76 #, fuzzy msgid "Saved on:" msgstr "Enregistrée le :" #: ../themes/default/templates/info.tmpl:71 +#: ../themes/smaller/templates/info.tmpl:77 #, fuzzy msgid "Author:" msgstr "Auteur :" #: ../themes/default/templates/info.tmpl:75 +#: ../themes/smaller/templates/info.tmpl:81 #, c-format msgid "Statistics about %s." msgstr "Statistiques sur %s." #: ../themes/default/templates/info.tmpl:86 +#: ../themes/smaller/templates/info.tmpl:92 #, fuzzy msgid "Supplanted on:" msgstr "Remplacée le :" #: ../themes/default/templates/info.tmpl:103 +#: ../themes/smaller/templates/info.tmpl:109 #, fuzzy msgid "Page Version:" msgstr "Version de la Page :" #: ../themes/default/templates/info.tmpl:107 +#: ../themes/smaller/templates/info.tmpl:113 msgid "Markup:" msgstr "Marquage :" #: ../themes/default/templates/info.tmpl:111 +#: ../themes/smaller/templates/info.tmpl:117 #, fuzzy msgid "Size:" msgstr "Taille :" #: ../themes/default/templates/info.tmpl:116 +#: ../themes/smaller/templates/info.tmpl:122 msgid "Hits:" msgstr "Visites :" # lib/mysql.php:116 #: ../themes/default/templates/info.tmpl:133 +#: ../themes/smaller/templates/info.tmpl:139 #, fuzzy msgid "home page" msgstr "Erreur en écrivant la page '%s'" # admin.php:57 admin.php:65 #: ../themes/default/templates/info.tmpl:136 +#: ../themes/smaller/templates/info.tmpl:142 #, fuzzy msgid "User page" msgstr "nouvelle page" # lib/mysql.php:116 #: ../themes/default/templates/info.tmpl:139 +#: ../themes/smaller/templates/info.tmpl:145 #, fuzzy msgid "Action page" msgstr "Erreur en écrivant la page '%s'" # lib/mysql.php:116 #: ../themes/default/templates/info.tmpl:142 +#: ../themes/smaller/templates/info.tmpl:148 #, fuzzy msgid "Blog page" msgstr "Erreur en écrivant la page '%s'" #: ../themes/default/templates/info.tmpl:148 +#: ../themes/smaller/templates/info.tmpl:154 msgid "Subpage" msgstr "" #: ../themes/default/templates/info.tmpl:153 +#: ../themes/smaller/templates/info.tmpl:159 #, fuzzy msgid "Page Type:" msgstr "Nom de Page" @@ -3193,31 +4443,25 @@ msgstr "" "utilisé comme lien vers votre PagePersonnelle dans DernièresModifs. Vous " "n'avez pas besoin d'entrer de mot de passe." -#: ../themes/default/templates/login.tmpl:39 -msgid "" -"Note: If you create your personal HomePage with same the pagename as your " -"user id, you will be able to store your UserPreferences also. Otherwise not." -msgstr "" - -#: ../themes/default/templates/login.tmpl:42 +#: ../themes/default/templates/login.tmpl:51 msgid "New users may use an empty password." msgstr "" -#: ../themes/default/templates/login.tmpl:49 +#: ../themes/default/templates/login.tmpl:58 #, fuzzy msgid "UserId:" msgstr "IdentifiantUtilisateur" -#: ../themes/default/templates/login.tmpl:53 +#: ../themes/default/templates/login.tmpl:62 #, fuzzy msgid "Password:" msgstr "Mot de passe" -#: ../themes/default/templates/navbar.tmpl:33 +#: ../themes/default/templates/navbar.tmpl:34 msgid "Today" msgstr "Aujourd'hui" -#: ../themes/default/templates/navbar.tmpl:36 +#: ../themes/default/templates/navbar.tmpl:37 msgid "Admin" msgstr "" @@ -3231,6 +4475,72 @@ msgstr "" "Vous n'avez effectué aucun changement, aucune nouvelle version n'a donc été " "enregistrée." +#: ../themes/default/templates/online.tmpl:8 +#: ../themes/default/templates/online.tmpl:16 +#: ../themes/default/templates/online.tmpl:58 +msgid "Who Is Online" +msgstr "" + +#: ../themes/default/templates/online.tmpl:16 +msgid "Switch to detailed list" +msgstr "" + +#: ../themes/default/templates/online.tmpl:22 +#, c-format +msgid "Our users created a total of %d pages." +msgstr "" + +#: ../themes/default/templates/online.tmpl:23 +#, c-format +msgid "We have a total of %d registered users." +msgstr "" + +#: ../themes/default/templates/online.tmpl:24 +#, c-format +msgid "The newest registered user is %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:28 +#, c-format +msgid "" +"In total there are %d user sessions online :: Unique %d Registered and %d " +"Guests" +msgstr "" + +#: ../themes/default/templates/online.tmpl:30 +#, c-format +msgid "Most users ever online was %d at %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:31 +msgid "Registered Users Online: " +msgstr "" + +#: ../themes/default/templates/online.tmpl:42 +msgid "Admin is also online." +msgstr "" + +#: ../themes/default/templates/online.tmpl:46 +#, c-format +msgid "This data is based on users active over the past %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:50 +msgid "Sorry, no dynamic DB Session support." +msgstr "" + +#: ../themes/default/templates/online.tmpl:58 +msgid "Switch to summary" +msgstr "" + +#: ../themes/default/templates/online.tmpl:62 +msgid "Registered Users" +msgstr "" + +#: ../themes/default/templates/online.tmpl:77 +msgid "Guests" +msgstr "" + #: ../themes/default/templates/redirect.tmpl:19 #: ../themes/default/templates/redirect.tmpl:40 #, fuzzy @@ -3257,16 +4567,18 @@ msgstr "Votre souci particulier du d msgid "Warning!" msgstr "Attention !" -#: ../themes/default/templates/signin.tmpl:18 +#: ../themes/default/templates/signin.tmpl:19 +#: ../themes/smaller/templates/signin.tmpl:33 #, c-format msgid "You are signed in as %s" msgstr "Vous êtes connecté en tant que %s" -#: ../themes/default/templates/signin.tmpl:39 +#: ../themes/default/templates/signin.tmpl:40 +#: ../themes/smaller/templates/signin.tmpl:53 msgid "Enter your UserId to sign in" msgstr "Entrez votre identifiant utilisateur pour vous connecter" -#: ../themes/default/templates/signin.tmpl:54 +#: ../themes/default/templates/signin.tmpl:55 #, fuzzy msgid "Sign in as:" msgstr "Connexion" @@ -3452,27 +4764,88 @@ msgstr "Montre les dates relatives en utilisant 'Aujourd'hui' et 'Hier'." msgid "Update Preferences" msgstr "Mettre à jour les Préférences" -# lib/diff.php:1003 lib/diff.php:1021 -#: ../themes/default/templates/wikiblog.tmpl:19 -#, fuzzy, c-format -msgid "Comment modified on %s by %s" -msgstr "dernière modification le %s" +#: ../themes/smaller/templates/actionbar.tmpl:31 +#, fuzzy +msgid "Info" +msgstr "Auteur :" +#: ../themes/smaller/templates/info.tmpl:171 #, fuzzy -#~ msgid "Selected" -#~ msgstr "Effacé." +msgid "Diff previous Revision" +msgstr "Révision Précédente" + +#: ../themes/smaller/templates/info.tmpl:172 +#, fuzzy +msgid "Diff previous Author" +msgstr "Auteur Précédent" + +#, fuzzy +#~ msgid "User-ID:" +#~ msgstr "IdentifiantUtilisateur" + +#, fuzzy +#~ msgid "First Name:" +#~ msgstr "Première" + +#, fuzzy +#~ msgid "Last Name:" +#~ msgstr "Nom de Page" -# admin.php:63 #, fuzzy -#~ msgid "Removed page '%s' succesfully." -#~ msgstr "Page ' %s ' supprimée avec succès." +#~ msgid "Outputs DIfferences between files" +#~ msgstr "Différences entre %s et %s de %s." + +#, fuzzy +#~ msgid "browse pages in this wiki" +#~ msgstr "Pages Orphelines dans ce wiki (%d au total) :" + +#, fuzzy +#~ msgid "diff pages in this wiki" +#~ msgstr "Pages dans ce wiki (%d au total) :" + +#, fuzzy +#~ msgid "dump html pages from this wiki" +#~ msgstr "Les %d pages les plus populaires de ce wiki :" + +#, fuzzy +#~ msgid "dump serial pages from this wiki" +#~ msgstr "Les %d pages les moins populaires de ce wiki :" + +#, fuzzy +#~ msgid "edit pages in this wiki" +#~ msgstr "Pages Orphelines dans ce wiki (%d au total) :" + +#, fuzzy +#~ msgid "create pages in this wiki" +#~ msgstr "Pages Orphelines dans ce wiki (%d au total) :" + +#, fuzzy +#~ msgid "lock pages in this wiki" +#~ msgstr "Pages dans ce wiki (%d au total) :" + +#, fuzzy +#~ msgid "remove pages from this wiki" +#~ msgstr "Les %d pages les plus populaires de ce wiki :" + +#, fuzzy +#~ msgid "unlock pages in this wiki" +#~ msgstr "Pages dans ce wiki (%d au total) :" + +#, fuzzy +#~ msgid "upload a zip dump to this wiki" +#~ msgstr "Vous devez vous connecter pour %s ce wiki" + +#, fuzzy +#~ msgid "view the source of pages in this wiki" +#~ msgstr "Les %d pages les plus populaires de ce wiki :" + +#, fuzzy +#~ msgid "Selected" +#~ msgstr "Effacé." #~ msgid "The PhpWiki Programming Team" #~ msgstr "L'Équipe de Développement de PhpWiki" -#~ msgid "Password" -#~ msgstr "Mot de passe" - #~ msgid "Redefinition of %s: %s" #~ msgstr "Redéfinition du %s : %s" @@ -3501,9 +4874,6 @@ msgstr "derni #~ msgid "List FuzzyPages for %s" #~ msgstr "Liste des PagesFloues pour %s" -#~ msgid "List LikePages for %s" -#~ msgstr "Listes des PagesSemblables à %s" - #~ msgid "Orphaned Pages" #~ msgstr "Pages Orphelines" @@ -3616,14 +4986,6 @@ msgstr "derni #~ msgid "is initial release" #~ msgstr "est la première version" -# lib/msql.php:31 lib/msql.php:37 -#~ msgid "no message" -#~ msgstr "aucun message" - -# lib/editpage.php:19 -#~ msgid "Copied to [%s]" -#~ msgstr "Copie de [%s]" - #~ msgid "Bad %s" #~ msgstr "Mauvais %s" diff --git a/locale/po/it.po b/locale/po/it.po index 543052a73..db3fd5472 100644 --- a/locale/po/it.po +++ b/locale/po/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PhpWiki-1.3.4pre\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-02-15 22:43+0100\n" +"POT-Creation-Date: 2004-03-17 15:58+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Marco Milanesi \n" "Language-Team: \n" @@ -14,158 +14,261 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" +#: ../lib/DB_Session.php:42 +#, c-format +msgid "" +"Your WikiDB DB backend '%s' cannot be used for DB_Session. Set " +"USE_DB_SESSION to false." +msgstr "" + #: ../lib/ErrorManager.php:172 #, c-format msgid "%s: error while handling error:" msgstr "" -#: ../lib/FileFinder.php:143 ../lib/loadsave.php:503 +#: ../lib/FileFinder.php:143 ../lib/loadsave.php:540 #, c-format msgid "%s: file not found" msgstr "%s: archivio non trovato" -#: ../lib/PageList.php:71 +#: ../lib/Google.php:157 +#, c-format +msgid "" +"You must first obtain a license key at %s to be able to use the Google API." +msgstr "" + +#: ../lib/Google.php:159 +msgid "It's free however." +msgstr "" + +#: ../lib/PageList.php:92 #, fuzzy, c-format msgid "Sort by %s" msgstr "di %s" -#: ../lib/PageList.php:133 +#: ../lib/PageList.php:126 +msgid "Click to sort" +msgstr "" + +#: ../lib/PageList.php:131 +msgid "Click to reverse sort order" +msgstr "" + +#: ../lib/PageList.php:139 +#, fuzzy, c-format +msgid "Click to sort by %s" +msgstr "di %s" + +#: ../lib/PageList.php:212 msgid "Click to de-/select all pages" msgstr "" -#: ../lib/PageList.php:187 ../lib/PageList.php:484 +#: ../lib/PageList.php:267 ../lib/PageList.php:669 #, fuzzy msgid "Remove" msgstr "Rimuovi la Pagina" -#: ../lib/PageList.php:211 ../lib/plugin/UnfoldSubpages.php:170 +#: ../lib/PageList.php:283 +msgid "This page already exists" +msgstr "" + +#: ../lib/PageList.php:297 ../lib/plugin/UnfoldSubpages.php:158 #, c-format msgid " ... first %d bytes" msgstr "" -#: ../lib/PageList.php:215 +#: ../lib/PageList.php:302 #, c-format msgid " ... around %s" msgstr "" -#: ../lib/PageList.php:237 +#: ../lib/PageList.php:325 #, fuzzy, c-format msgid "%s not found" msgstr "%s: archivio non trovato" -#: ../lib/PageList.php:277 ../lib/plugin/AuthorHistory.php:174 +#: ../lib/PageList.php:394 ../lib/plugin/AuthorHistory.php:174 #: ../lib/plugin/WantedPages.php:140 msgid "Page Name" msgstr "Nome Della Pagina" -#: ../lib/PageList.php:334 ../lib/plugin/FullTextSearch.php:75 +#: ../lib/PageList.php:466 ../lib/plugin/FullTextSearch.php:93 msgid "" msgstr "" -#: ../lib/PageList.php:478 ../lib/PageList.php:481 +#: ../lib/PageList.php:665 ../lib/PageList.php:667 #, fuzzy msgid "Content" msgstr "Indice" -#: ../lib/PageList.php:487 +#: ../lib/PageList.php:671 msgid "Rename to" msgstr "" -#: ../lib/PageList.php:490 +#: ../lib/PageList.php:673 +#, fuzzy +msgid "Permission" +msgstr "Versione" + +#: ../lib/PageList.php:675 +msgid "ACL" +msgstr "" + +#: ../lib/PageList.php:677 #, fuzzy msgid "Select" msgstr "Rimossa." -#: ../lib/PageList.php:497 +#: ../lib/PageList.php:681 msgid "Last Modified" msgstr "Ultima Modifica" -#: ../lib/PageList.php:499 +#: ../lib/PageList.php:683 msgid "Hits" msgstr "" -#: ../lib/PageList.php:502 +#: ../lib/PageList.php:685 #, fuzzy msgid "Size" msgstr "Dimensione:" -#: ../lib/PageList.php:506 +#: ../lib/PageList.php:688 #, fuzzy msgid "Last Summary" msgstr "Commenti:" -#: ../lib/PageList.php:509 ../lib/plugin/AuthorHistory.php:123 +#: ../lib/PageList.php:690 ../lib/plugin/AuthorHistory.php:123 #: ../lib/plugin/AuthorHistory.php:176 ../lib/plugin/PluginManager.php:90 msgid "Version" msgstr "Versione" -#: ../lib/PageList.php:513 +#: ../lib/PageList.php:693 #, fuzzy msgid "Last Author" msgstr "Autore:" -#: ../lib/PageList.php:515 ../themes/default/templates/editpage.tmpl:95 +#: ../lib/PageList.php:695 ../lib/WikiGroup.php:39 +msgid "Owner" +msgstr "" + +#: ../lib/PageList.php:697 +#, fuzzy +msgid "Group" +msgstr "Il sorgente della %s" + +#: ../lib/PageList.php:699 ../themes/default/templates/editpage.tmpl:101 #: ../themes/default/templates/info.tmpl:127 +#: ../themes/smaller/templates/info.tmpl:133 msgid "Locked" msgstr "Bloccata" -#: ../lib/PageList.php:516 +#: ../lib/PageList.php:700 msgid "locked" msgstr "bloccata" -#: ../lib/PageList.php:519 +#: ../lib/PageList.php:703 #, fuzzy msgid "Minor Edit" msgstr "Mostrare le modifiche secondarie per: %s" -#: ../lib/PageList.php:519 +#: ../lib/PageList.php:703 #, fuzzy msgid "minor" msgstr "Mostrare le modifiche secondarie per: %s" -#: ../lib/PageList.php:521 +#: ../lib/PageList.php:705 msgid "Markup" msgstr "" -#: ../lib/PageList.php:572 ../lib/plugin/WantedPages.php:167 +#: ../lib/PageList.php:756 ../lib/plugin/WantedPages.php:167 #, c-format msgid "Columns: %s." msgstr "Caratteri: %s." -#: ../lib/PageType.php:194 +#: ../lib/PagePerm.php:260 +#, fuzzy +msgid "List this page and all subpages" +msgstr "Errore durante il salvataggio della pagina '%s'" + +#: ../lib/PagePerm.php:261 +msgid "View this page and all subpages" +msgstr "" + +#: ../lib/PagePerm.php:262 +msgid "Edit this page and all subpages" +msgstr "" + +#: ../lib/PagePerm.php:263 +#, fuzzy +msgid "Create a new (sub)page" +msgstr "Errore durante il salvataggio della pagina '%s'" + +#: ../lib/PagePerm.php:264 +msgid "Download the page contents" +msgstr "" + +#: ../lib/PagePerm.php:265 +msgid "Change page attributes" +msgstr "" + +#: ../lib/PagePerm.php:266 +#, fuzzy +msgid "Remove this page" +msgstr "Rimuovi la pagina" + +#: ../lib/PagePerm.php:295 +#, c-format +msgid "Unsupported ACL access type %s ignored." +msgstr "" + +#: ../lib/PageType.php:125 ../lib/loadsave.php:409 +#: ../themes/default/templates/info.tmpl:144 +#: ../themes/default/templates/info.tmpl:145 +#: ../themes/smaller/templates/info.tmpl:150 +#: ../themes/smaller/templates/info.tmpl:151 +msgid "InterWikiMap" +msgstr "" + +#: ../lib/PageType.php:211 ../lib/loadsave.php:552 +#, c-format +msgid "Loading InterWikiMap from external file %s." +msgstr "" + +#: ../lib/PageType.php:309 #, fuzzy msgid "Moniker" msgstr "Moderno" -#: ../lib/PageType.php:195 +#: ../lib/PageType.php:310 msgid "InterWiki Address" msgstr "" -#: ../lib/RSSWriter091.php:116 ../lib/loadsave.php:832 +#: ../lib/RSSWriter091.php:116 ../lib/loadsave.php:872 #: ../lib/plugin/RecentChanges.php:250 ../lib/plugin/RecentChanges.php:263 -#: ../lib/plugin/RecentChanges.php:362 ../lib/plugin/RecentChanges.php:438 -#: ../lib/plugin/RecentChanges.php:529 ../lib/plugin/RecentChanges.php:605 +#: ../lib/plugin/RecentChanges.php:365 ../lib/plugin/RecentChanges.php:441 +#: ../lib/plugin/RecentChanges.php:535 ../lib/plugin/RecentChanges.php:611 #: ../themes/Portland/templates/navbar.tmpl:28 #: ../themes/default/templates/navbar.tmpl:10 +#: ../themes/smaller/templates/navbar.tmpl:10 #, fuzzy msgid "RecentChanges" msgstr "CambiamentiRecenti o ModificheRecenti?" -#: ../lib/Request.php:39 ../lib/main.php:771 ../lib/main.php:784 +#: ../lib/Request.php:57 ../lib/main.php:756 ../lib/main.php:769 #, c-format msgid "%s is not writable." msgstr "" -#: ../lib/Request.php:39 +#: ../lib/Request.php:57 msgid "The PhpWiki access log file" msgstr "" -#: ../lib/Request.php:41 ../lib/main.php:774 +#: ../lib/Request.php:59 ../lib/main.php:759 #, c-format msgid "Please ensure that %s is writable, or redefine %s in index.php." msgstr "" -#: ../lib/Request.php:42 +#: ../lib/Request.php:60 #, fuzzy, c-format msgid "the file '%s'" msgstr "archivio del testo %s" @@ -175,109 +278,119 @@ msgstr "archivio del testo %s" msgid "%4d %s\n" msgstr "%4d %s\n" -#: ../lib/Theme.php:344 +#: ../lib/Theme.php:368 msgid "Never edited." msgstr "" -#: ../lib/Theme.php:351 +#: ../lib/Theme.php:375 #, c-format msgid "%s at %s" msgstr "%s a %s" -#: ../lib/Theme.php:355 +#: ../lib/Theme.php:379 #, c-format msgid "Version %s, saved %s." msgstr "Versione %s, salvata %s." -#: ../lib/Theme.php:357 +#: ../lib/Theme.php:381 #, c-format msgid "Last edited %s." msgstr "Ultima modifica %s." -#: ../lib/Theme.php:366 +#: ../lib/Theme.php:390 #, c-format msgid "Version %s, saved on %s." msgstr "Versione %s, salvata su %s." -#: ../lib/Theme.php:368 +#: ../lib/Theme.php:392 #, c-format msgid "Last edited on %s." msgstr "Ultima modifica su %s." -#: ../lib/Theme.php:384 +#: ../lib/Theme.php:408 msgid "today" msgstr "oggi" -#: ../lib/Theme.php:390 +#: ../lib/Theme.php:414 msgid "yesterday" msgstr "ieri" -#: ../lib/Theme.php:484 ../themes/MacOSX/themeinfo.php:71 +#: ../lib/Theme.php:518 +#, fuzzy, c-format +msgid "Empty link to: %s" +msgstr "Le %d pagine più popolari di questo wiki sono:" + +#: ../lib/Theme.php:530 ../themes/MacOSX/themeinfo.php:71 #, fuzzy, c-format msgid "Create: %s" msgstr "Salvata: %s" -#: ../lib/Theme.php:518 +#: ../lib/Theme.php:566 #, c-format msgid "'%s': Bad page name" msgstr "" -#: ../lib/Theme.php:783 ../themes/default/templates/actionbar.tmpl:5 +#: ../lib/Theme.php:837 ../themes/default/templates/actionbar.tmpl:5 +#: ../themes/smaller/templates/actionbar.tmpl:6 msgid "Edit" msgstr "Modifica" -#: ../lib/Theme.php:784 +#: ../lib/Theme.php:838 ../lib/plugin/Diff.php:36 msgid "Diff" msgstr "Diff" -#: ../lib/Theme.php:785 ../themes/default/templates/signin.tmpl:15 -#: ../themes/default/templates/signin.tmpl:31 +#: ../lib/Theme.php:839 ../themes/default/templates/signin.tmpl:16 +#: ../themes/default/templates/signin.tmpl:32 +#: ../themes/smaller/templates/signin.tmpl:21 +#: ../themes/smaller/templates/signin.tmpl:44 msgid "Sign Out" msgstr "" -#: ../lib/Theme.php:786 ../lib/WikiUser.php:206 -#: ../themes/default/templates/login.tmpl:70 -#: ../themes/default/templates/signin.tmpl:59 +#: ../lib/Theme.php:840 ../lib/WikiUser.php:204 ../lib/WikiUserNew.php:415 +#: ../lib/WikiUserNew.php:1161 ../themes/default/templates/login.tmpl:66 +#: ../themes/default/templates/signin.tmpl:60 +#: ../themes/smaller/templates/signin.tmpl:54 +#: ../themes/smaller/templates/signin.tmpl:57 msgid "Sign In" msgstr "" -#: ../lib/Theme.php:787 ../themes/MacOSX/themeinfo.php:135 +#: ../lib/Theme.php:841 ../themes/MacOSX/themeinfo.php:135 msgid "Lock Page" msgstr "Blocca la Pagina" -#: ../lib/Theme.php:788 ../themes/MacOSX/themeinfo.php:136 +#: ../lib/Theme.php:842 ../themes/MacOSX/themeinfo.php:136 msgid "Unlock Page" msgstr "Sblocca la Pagina" -#: ../lib/Theme.php:789 +#: ../lib/Theme.php:843 msgid "Remove Page" msgstr "Rimuovi la Pagina" -#: ../lib/WikiDB.php:407 +#: ../lib/WikiDB.php:405 #, fuzzy, c-format msgid "renamed from %s" msgstr "Inserire dalla %s" -#: ../lib/WikiDB.php:412 +#: ../lib/WikiDB.php:410 msgid "WikiDB::renamePage() not yet implemented for this backend" msgstr "" -#: ../lib/WikiDB.php:700 +#: ../lib/WikiDB.php:698 #, c-format msgid "%s: Date of new revision is %s" msgstr "" -#: ../lib/WikiDB.php:763 +#: ../lib/WikiDB.php:761 #, c-format msgid "Optimizing %s" msgstr "Ottimizzando %s" -#: ../lib/WikiDB.php:1207 ../themes/default/templates/homepage.tmpl:7 +#: ../lib/WikiDB.php:1205 ../themes/default/templates/homepage.tmpl:7 #, c-format msgid "Describe %s here." msgstr "Descrivi %s qui." -#: ../lib/WikiDB.php:1242 +#: ../lib/WikiDB.php:1240 #, c-format msgid "Acck! Revision %s of %s seems to have been deleted!" msgstr "" @@ -299,7 +412,7 @@ msgid "" "DB file to a permanent location or risk losing all the pages!" msgstr "" -#: ../lib/WikiGroup.php:29 ../lib/WikiGroup.php:110 +#: ../lib/WikiGroup.php:29 ../lib/WikiGroup.php:122 msgid "No or unsupported GROUP_METHOD defined" msgstr "" @@ -316,79 +429,98 @@ msgid "Bogo Users" msgstr "" #: ../lib/WikiGroup.php:35 +#, fuzzy +msgid "HasHomePage" +msgstr "PaginaPrincipale" + +#: ../lib/WikiGroup.php:36 msgid "Signed Users" msgstr "" -#: ../lib/WikiGroup.php:36 +#: ../lib/WikiGroup.php:37 msgid "Authenticated Users" msgstr "" -#: ../lib/WikiGroup.php:37 +#: ../lib/WikiGroup.php:38 msgid "Administrators" msgstr "" -#: ../lib/WikiGroup.php:146 +#: ../lib/WikiGroup.php:40 +msgid "Creator" +msgstr "" + +#: ../lib/WikiGroup.php:164 #, c-format msgid "Undefined method %s for special group %s" msgstr "" -#: ../lib/WikiGroup.php:151 ../lib/WikiGroup.php:166 ../lib/WikiGroup.php:181 -#: ../lib/WikiGroup.php:197 ../lib/WikiGroup.php:213 +#: ../lib/WikiGroup.php:169 ../lib/WikiGroup.php:184 ../lib/WikiGroup.php:289 +#: ../lib/WikiGroup.php:294 ../lib/WikiGroup.php:310 ../lib/WikiGroup.php:326 #, c-format msgid "Method '%s' not implemented in this GROUP_METHOD %s" msgstr "" -#: ../lib/WikiGroup.php:339 +#: ../lib/WikiGroup.php:454 #, c-format msgid "Group %s does not exist" msgstr "" -#: ../lib/WikiGroup.php:437 +#: ../lib/WikiGroup.php:486 +#, fuzzy +msgid "CategoryGroup" +msgstr "Pagina corrente:" + +#: ../lib/WikiGroup.php:561 msgid "No or not enough GROUP_DB SQL statements defined" msgstr "" -#: ../lib/WikiGroup.php:541 +#: ../lib/WikiGroup.php:767 msgid "AUTH_GROUP_FILE not defined" msgstr "" -#: ../lib/WikiGroup.php:545 +#: ../lib/WikiGroup.php:771 #, c-format msgid "Cannot open AUTH_GROUP_FILE %s" msgstr "" -#: ../lib/WikiGroup.php:644 +#: ../lib/WikiGroup.php:878 msgid "LDAP_AUTH_HOST not defined" msgstr "" -#: ../lib/WikiGroup.php:650 +#: ../lib/WikiGroup.php:884 msgid "No LDAP in this PHP version" msgstr "" +#: ../lib/WikiGroup.php:963 ../lib/WikiUserNew.php:1679 +#, c-format +msgid "Unable to connect to LDAP server %s" +msgstr "" + #: ../lib/WikiPlugin.php:88 msgid "n/a" msgstr "" -#: ../lib/WikiPlugin.php:118 +#: ../lib/WikiPlugin.php:118 ../lib/plugin/WikiPoll.php:114 #, c-format msgid "argument '%s' not declared by plugin" msgstr "" -#: ../lib/WikiPlugin.php:182 +#: ../lib/WikiPlugin.php:189 #, c-format msgid "trailing cruft in plugin args: '%s'" msgstr "" -#: ../lib/WikiPlugin.php:291 +#: ../lib/WikiPlugin.php:303 #, fuzzy, c-format msgid "Plugin %s failed." msgstr "Inserimento di '%s' fallito" -#: ../lib/WikiPlugin.php:297 +#: ../lib/WikiPlugin.php:309 #, fuzzy, c-format msgid "Plugin %s disabled." msgstr "Inserimento di '%s' fallito" -#: ../lib/WikiPlugin.php:384 +#: ../lib/WikiPlugin.php:400 #, c-format msgid "Include of '%s' failed" msgstr "Inserimento di '%s' fallito" @@ -400,20 +532,20 @@ msgid "" "referring page." msgstr "" -#: ../lib/WikiUser.php:177 +#: ../lib/WikiUser.php:177 ../lib/WikiUserNew.php:482 msgid "Invalid password or userid." msgstr "" -#: ../lib/WikiUser.php:179 +#: ../lib/WikiUser.php:179 ../lib/WikiUserNew.php:484 msgid "Insufficient permissions." msgstr "" -#: ../lib/WikiUser.php:234 +#: ../lib/WikiUser.php:232 msgid "" "You forgot to set ENCRYPTED_PASSWD to true. Please update your /index.php" msgstr "" -#: ../lib/WikiUser.php:353 +#: ../lib/WikiUser.php:351 #, fuzzy msgid "" "Your home page has not been created yet so your preferences cannot not be " @@ -422,78 +554,125 @@ msgstr "" "Questa pagina è stata bloccata dall'amministratore in modo da i vostri " "cambiamenti non possono essere salvati." -#: ../lib/WikiUser.php:370 +#: ../lib/WikiUser.php:368 #, fuzzy msgid "Your home page is locked so your preferences cannot not be saved." msgstr "" "Questa pagina è stata bloccata dall'amministratore in modo da i vostri " "cambiamenti non possono essere salvati." -#: ../lib/WikiUser.php:371 +#: ../lib/WikiUser.php:369 msgid "Please contact your PhpWiki administrator for assistance." msgstr "" -#: ../lib/WikiUser.php:477 +#: ../lib/WikiUser.php:475 #, c-format msgid "" "Old UserPage %s without stored password updated with empty password. Set a " "password in your UserPreferences." msgstr "" -#: ../lib/XmlElement.php:401 ../lib/stdlib.php:997 +#: ../lib/WikiUserNew.php:514 +msgid "Format of UserPreferences cookie not recognised." +msgstr "" + +#: ../lib/WikiUserNew.php:515 +msgid "Default preferences will be used." +msgstr "" + +#: ../lib/WikiUserNew.php:922 +msgid "" +"The length of the stored password is shorter than the system policy allows. " +"Sorry, you cannot login.\n" +" You have to ask the System Administrator to reset your password." +msgstr "" + +#: ../lib/WikiUserNew.php:935 +msgid "The crypt function is not available in this version of PHP." +msgstr "" + +#: ../lib/WikiUserNew.php:936 +msgid "" +"Please set ENCRYPTED_PASSWD to false in index.php and probably change " +"ADMIN_PASSWD." +msgstr "" + +#: ../lib/WikiUserNew.php:949 +msgid "Please set ENCRYPTED_PASSWD to true in index.php." +msgstr "" + +#: ../lib/WikiUserNew.php:1073 +#, c-format +msgid "" +"\n" +"You stored an empty password in your %s page.\n" +msgstr "" + +#: ../lib/WikiUserNew.php:1074 +msgid "Your access permissions are only for a BogoUser.\n" +msgstr "" + +#: ../lib/WikiUserNew.php:1075 +msgid "Please set your password in UserPreferences." +msgstr "" + +#: ../lib/WikiUserNew.php:1717 +msgid "Unable to connect to LDAP server " +msgstr "" + +#: ../lib/WikiUserNew.php:1747 +msgid "Unable to connect to IMAP server " +msgstr "" + +#: ../lib/XmlElement.php:417 ../lib/stdlib.php:995 #, c-format msgid "Can't mix '%s' with '%s' type format strings" msgstr "" -#: ../lib/config.php:145 +#: ../lib/config.php:125 #, fuzzy, c-format msgid "Can't set locale: '%s'" msgstr "Non riesco a stabilire una connessione col database: %s" -#: ../lib/config.php:377 +#: ../lib/config.php:387 msgid "An unnamed PhpWiki" msgstr "" -#: ../lib/config.php:383 ../lib/imagecache.php:57 +#: ../lib/config.php:390 ../lib/imagecache.php:57 #: ../themes/default/templates/userprefs.tmpl:113 msgid "HomePage" msgstr "PaginaPrincipale" -#: ../lib/config.php:398 +#: ../lib/config.php:404 #, c-format msgid "Encrypted passwords cannot be used: %s." msgstr "" -#: ../lib/config.php:404 +#: ../lib/config.php:410 msgid "The admin password cannot be empty. Please update your /index.php" msgstr "" -#: ../lib/config.php:408 -#, c-format -msgid "You can use %s only with %s" -msgstr "" - -#: ../lib/config.php:415 +#: ../lib/config.php:414 msgid "" "Empty db_session_table. Turn USE_DB_SESSION off or define the table name." msgstr "" -#: ../lib/diff.php:253 +#: ../lib/diff.php:253 ../lib/plugin/Diff.php:72 #, c-format msgid "version %s" msgstr "versione %s" -#: ../lib/diff.php:256 +#: ../lib/diff.php:256 ../lib/plugin/Diff.php:75 #, c-format msgid "by %s" msgstr "di %s" -#: ../lib/diff.php:258 +#: ../lib/diff.php:258 ../lib/plugin/Diff.php:77 msgid "None" msgstr "Nessuno" -#: ../lib/diff.php:280 ../lib/plugin/PageHistory.php:312 -#: ../lib/plugin/PageInfo.php:59 +#: ../lib/diff.php:280 ../lib/plugin/Diff.php:94 +#: ../lib/plugin/PageHistory.php:312 ../lib/plugin/PageInfo.php:59 #, c-format msgid "I'm sorry, there is no such page as %s." msgstr "" @@ -503,75 +682,78 @@ msgstr "" msgid "Diff: %s" msgstr "Differenza di: %s" -#: ../lib/diff.php:290 ../lib/diff.php:300 +#: ../lib/diff.php:290 ../lib/diff.php:300 ../lib/plugin/Diff.php:102 +#: ../lib/plugin/Diff.php:112 #, c-format msgid "version %d" msgstr "versione %d" -#: ../lib/diff.php:294 +#: ../lib/diff.php:294 ../lib/plugin/Diff.php:106 msgid "current version" msgstr "versione corrente" -#: ../lib/diff.php:311 +#: ../lib/diff.php:311 ../lib/plugin/Diff.php:123 msgid "revision by previous author" msgstr "" -#: ../lib/diff.php:317 +#: ../lib/diff.php:317 ../lib/plugin/Diff.php:129 msgid "previous revision" msgstr "" -#: ../lib/diff.php:327 +#: ../lib/diff.php:327 ../lib/plugin/Diff.php:139 msgid "predecessor to the previous major change" msgstr "" -#: ../lib/diff.php:337 +#: ../lib/diff.php:337 ../lib/plugin/Diff.php:149 #, c-format msgid "Differences between %s and %s of %s." msgstr "" -#: ../lib/diff.php:340 +#: ../lib/diff.php:340 ../lib/plugin/Diff.php:152 msgid "Other diffs:" msgstr "" -#: ../lib/diff.php:341 +#: ../lib/diff.php:341 ../lib/plugin/Diff.php:153 msgid "Previous Major Revision" msgstr "" -#: ../lib/diff.php:342 +#: ../lib/diff.php:342 ../lib/plugin/Diff.php:154 #, fuzzy msgid "Previous Revision" msgstr "Precedente" -#: ../lib/diff.php:343 +#: ../lib/diff.php:343 ../lib/plugin/Diff.php:155 #, fuzzy msgid "Previous Author" msgstr "Precedente" -#: ../lib/diff.php:360 +#: ../lib/diff.php:360 ../lib/plugin/Diff.php:172 #, fuzzy msgid "Newer page:" msgstr "Nuova pagina." -#: ../lib/diff.php:362 +#: ../lib/diff.php:362 ../lib/plugin/Diff.php:174 #, fuzzy msgid "Older page:" msgstr "nuova pagina" -#: ../lib/diff.php:370 +#: ../lib/diff.php:370 ../lib/plugin/Diff.php:182 msgid "Versions are identical" msgstr "Le versioni sono identiche" #: ../lib/display.php:54 ../lib/plugin/PageGroup.php:91 #: ../lib/plugin/PageGroup.php:156 ../lib/plugin/PageGroup.php:167 #: ../lib/plugin/PageGroup.php:183 ../lib/plugin/PageGroup.php:190 -#: ../lib/plugin/PageHistory.php:216 ../lib/plugin/UnfoldSubpages.php:177 +#: ../lib/plugin/PageHistory.php:216 ../lib/plugin/UnfoldSubpages.php:165 #: ../themes/default/templates/head.tmpl:45 #, c-format msgid "%s: %s" msgstr "%s: %s" #: ../lib/display.php:104 ../lib/display.php:111 -#: ../lib/plugin/BackLinks.php:31 ../themes/default/templates/navbar.tmpl:22 +#: ../lib/plugin/BackLinks.php:31 ../lib/plugin/_WikiTranslation.php:50 +#: ../themes/default/templates/navbar.tmpl:23 +#: ../themes/smaller/templates/navbar.tmpl:19 msgid "BackLinks" msgstr "" @@ -585,45 +767,45 @@ msgstr "" msgid "(Redirected from %s)" msgstr "Inserire dalla %s" -#: ../lib/editpage.php:82 ../lib/editpage.php:283 +#: ../lib/editpage.php:90 ../lib/editpage.php:360 #, fuzzy msgid "Your version" msgstr "versione corrente" -#: ../lib/editpage.php:82 ../lib/editpage.php:284 +#: ../lib/editpage.php:90 ../lib/editpage.php:361 #, fuzzy msgid "Other version" msgstr "Mostra il versione corrente" -#: ../lib/editpage.php:99 +#: ../lib/editpage.php:176 #, c-format msgid "Edit: %s" msgstr "Modifica: %s" -#: ../lib/editpage.php:133 +#: ../lib/editpage.php:210 #, fuzzy, c-format msgid "View Source: %s" msgstr "Mostra il sorgente della pagina: %s" -#: ../lib/editpage.php:147 +#: ../lib/editpage.php:224 #, fuzzy msgid "Page now locked." msgstr "Pagina bloccata." -#: ../lib/editpage.php:147 +#: ../lib/editpage.php:224 msgid "Page now unlocked." msgstr "Pagina sbloccata." -#: ../lib/editpage.php:221 +#: ../lib/editpage.php:298 #, c-format msgid "Saved: %s" msgstr "Salvata: %s" -#: ../lib/editpage.php:266 ../themes/MacOSX/themeinfo.php:137 +#: ../lib/editpage.php:343 ../themes/MacOSX/themeinfo.php:137 msgid "Page Locked" msgstr "Pagina Bloccata" -#: ../lib/editpage.php:267 +#: ../lib/editpage.php:344 msgid "" "This page has been locked by the administrator so your changes can not be " "saved." @@ -631,7 +813,7 @@ msgstr "" "Questa pagina è stata bloccata dall'amministratore in modo da i vostri " "cambiamenti non possono essere salvati." -#: ../lib/editpage.php:268 +#: ../lib/editpage.php:345 msgid "" "(Copy your changes to the clipboard. You can try editing a different page or " "save your text in a text editor.)" @@ -639,11 +821,11 @@ msgstr "" "(Copia le tue modifiche nella clipboard. Potete provare a modificare " "un'altra pagina o registra il vostro testo in un editor di testo.)" -#: ../lib/editpage.php:269 +#: ../lib/editpage.php:346 msgid "Sorry for the inconvenience." msgstr "Scusa per l'inconveniente." -#: ../lib/editpage.php:282 ../lib/editpage.php:535 +#: ../lib/editpage.php:359 ../lib/editpage.php:612 #, c-format msgid "" "Some of the changes could not automatically be combined. Please look for " @@ -651,52 +833,41 @@ msgid "" "those sections by hand before you click Save." msgstr "" -#: ../lib/editpage.php:286 ../lib/editpage.php:538 +#: ../lib/editpage.php:363 ../lib/editpage.php:615 msgid "Please check it through before saving." msgstr "" -#: ../lib/editpage.php:297 +#: ../lib/editpage.php:374 msgid "Conflicting Edits!" msgstr "" -#: ../lib/editpage.php:298 +#: ../lib/editpage.php:375 msgid "" "In the time since you started editing this page, another user has saved a " "new version of it." msgstr "" -#: ../lib/editpage.php:299 +#: ../lib/editpage.php:376 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." msgstr "" -#: ../lib/editpage.php:370 +#: ../lib/editpage.php:447 #, fuzzy msgid "Preview" msgstr "Precedente" -#: ../lib/editpage.php:374 +#: ../lib/editpage.php:451 msgid "Save" msgstr "Registra" -#: ../lib/editpage.php:510 +#: ../lib/editpage.php:587 #, fuzzy, c-format msgid "Merge and Edit: %s" msgstr "Modifica: %s" -#: ../lib/interwiki.php:7 ../lib/loadsave.php:373 -#: ../themes/default/templates/info.tmpl:144 -#: ../themes/default/templates/info.tmpl:145 -msgid "InterWikiMap" -msgstr "" - -#: ../lib/interwiki.php:90 ../lib/loadsave.php:515 -#, c-format -msgid "Loading InterWikiMap from external file %s." -msgstr "" - #: ../lib/loadsave.php:42 msgid "Complete." msgstr "" @@ -714,367 +885,398 @@ msgstr "" msgid "LatestSnapshot" msgstr "" -#: ../lib/loadsave.php:174 ../lib/loadsave.php:232 +#: ../lib/loadsave.php:175 ../lib/loadsave.php:234 msgid "You must specify a directory to dump to" msgstr "" -#: ../lib/loadsave.php:179 ../lib/loadsave.php:237 +#: ../lib/loadsave.php:180 ../lib/loadsave.php:239 #, c-format msgid "Cannot create directory '%s'" msgstr "" -#: ../lib/loadsave.php:181 ../lib/loadsave.php:239 +#: ../lib/loadsave.php:182 ../lib/loadsave.php:241 #, c-format msgid "Created directory '%s' for the page dump..." msgstr "" -#: ../lib/loadsave.php:184 ../lib/loadsave.php:242 +#: ../lib/loadsave.php:185 ../lib/loadsave.php:244 #, c-format msgid "Using directory '%s'" msgstr "" -#: ../lib/loadsave.php:187 ../lib/loadsave.php:245 +#: ../lib/loadsave.php:188 ../lib/loadsave.php:247 #, fuzzy msgid "Dumping Pages" msgstr "Rimuovi la pagina" -#: ../lib/loadsave.php:200 ../lib/loadsave.php:263 +#: ../lib/loadsave.php:202 ../lib/loadsave.php:269 #, c-format msgid "saved as %s" msgstr "salvata a %s" -#: ../lib/loadsave.php:210 ../lib/loadsave.php:278 +#: ../lib/loadsave.php:212 ../lib/loadsave.php:282 #: ../lib/plugin/text2png.php:183 #, c-format msgid "couldn't open file '%s' for writing" msgstr "" -#: ../lib/loadsave.php:216 ../lib/loadsave.php:284 +#: ../lib/loadsave.php:218 ../lib/loadsave.php:288 #, fuzzy, c-format msgid "%s bytes written" msgstr "%s byte" -#: ../lib/loadsave.php:363 +#: ../lib/loadsave.php:302 ../lib/loadsave.php:316 +#, fuzzy, c-format +msgid "... copied to %s" +msgstr "Copia di %s" + +#: ../lib/loadsave.php:306 ../lib/loadsave.php:320 +#, fuzzy +msgid "... not found" +msgstr "%s: archivio non trovato" + +#: ../lib/loadsave.php:399 #, fuzzy msgid "Empty pagename!" msgstr "Scrivi un nome di una pagina" -#: ../lib/loadsave.php:419 +#: ../lib/loadsave.php:455 #, c-format msgid "from %s" msgstr "dalla %s" -#: ../lib/loadsave.php:424 +#: ../lib/loadsave.php:460 msgid "new page" msgstr "nuova pagina" -#: ../lib/loadsave.php:432 +#: ../lib/loadsave.php:468 msgid "has edit conflicts - overwriting anyway" msgstr "" -#: ../lib/loadsave.php:435 ../lib/loadsave.php:797 ../lib/loadsave.php:800 +#: ../lib/loadsave.php:471 ../lib/loadsave.php:837 ../lib/loadsave.php:840 msgid "The PhpWiki programming team" msgstr "" -#: ../lib/loadsave.php:440 +#: ../lib/loadsave.php:476 msgid "has edit conflicts - skipped" msgstr "" -#: ../lib/loadsave.php:448 +#: ../lib/loadsave.php:484 #, c-format msgid "is identical to current version %d - skipped" msgstr "" -#: ../lib/loadsave.php:458 +#: ../lib/loadsave.php:494 #, c-format msgid "- saved to database as version %d" msgstr "- salvata a base di dati a versione %d" -#: ../lib/loadsave.php:464 ../lib/loadsave.php:609 +#: ../lib/loadsave.php:500 ../lib/loadsave.php:647 #, fuzzy, c-format msgid "MIME file %s" msgstr "archivio del testo %s" -#: ../lib/loadsave.php:465 ../lib/loadsave.php:614 +#: ../lib/loadsave.php:501 ../lib/loadsave.php:652 #, fuzzy, c-format msgid "Serialized file %s" msgstr "archivio del testo %s" -#: ../lib/loadsave.php:466 ../lib/loadsave.php:628 +#: ../lib/loadsave.php:502 ../lib/loadsave.php:666 #, c-format msgid "plain file %s" msgstr "archivio del testo %s" -#: ../lib/loadsave.php:472 +#: ../lib/loadsave.php:509 #, fuzzy msgid "Merge Edit" msgstr "Modifica: %s" -#: ../lib/loadsave.php:473 ../lib/loadsave.php:480 -#: ../lib/plugin/WikiAdminSelect.php:169 +#: ../lib/loadsave.php:510 ../lib/loadsave.php:516 +#: ../lib/plugin/WikiAdminSelect.php:170 #: ../themes/Portland/templates/navbar.tmpl:30 #: ../themes/default/templates/head.tmpl:76 -#: ../themes/default/templates/navbar.tmpl:36 +#: ../themes/default/templates/navbar.tmpl:37 +#: ../themes/smaller/templates/navbar.tmpl:22 msgid "PhpWikiAdministration" msgstr "" -#: ../lib/loadsave.php:479 +#: ../lib/loadsave.php:515 msgid "Restore Anyway" msgstr "" -#: ../lib/loadsave.php:499 +#: ../lib/loadsave.php:536 #, fuzzy, c-format msgid "%s: not defined" msgstr "%s: archivio non trovato" -#: ../lib/loadsave.php:508 +#: ../lib/loadsave.php:545 msgid "Default InterWiki map file not loaded." msgstr "" -#: ../lib/loadsave.php:642 ../lib/loadsave.php:654 +#: ../lib/loadsave.php:680 ../lib/loadsave.php:692 msgid "Skipping" msgstr "" -#: ../lib/loadsave.php:751 +#: ../lib/loadsave.php:791 #, c-format msgid "Unable to load: %s" msgstr "" -#: ../lib/loadsave.php:758 +#: ../lib/loadsave.php:798 #, c-format msgid "Bad file type: %s" msgstr "" -#: ../lib/loadsave.php:772 +#: ../lib/loadsave.php:812 #, fuzzy, c-format msgid "Loading '%s'" msgstr "archivio del testo %s" -#: ../lib/loadsave.php:803 +#: ../lib/loadsave.php:843 msgid "Loading up virgin wiki" msgstr "" -#: ../lib/loadsave.php:823 +#: ../lib/loadsave.php:863 msgid "No uploaded file to upload?" msgstr "" -#: ../lib/loadsave.php:827 +#: ../lib/loadsave.php:867 #, fuzzy, c-format msgid "Uploading %s" msgstr "archivio del testo %s" -#: ../lib/main.php:288 +#: ../lib/main.php:264 #, fuzzy, c-format msgid "%s is disallowed on this wiki." msgstr "Le %d pagine più popolari di questo wiki sono:" -#: ../lib/main.php:292 +#: ../lib/main.php:268 #, c-format msgid "You must sign in to %s." msgstr "" -#: ../lib/main.php:294 +#: ../lib/main.php:270 #, c-format msgid "You must log in to %s." msgstr "" -#: ../lib/main.php:296 ../lib/plugin/PluginManager.php:65 +#: ../lib/main.php:272 ../lib/plugin/PluginManager.php:65 #, c-format msgid "You must be an administrator to %s." msgstr "" -#: ../lib/main.php:309 +#: ../lib/main.php:285 #, fuzzy -msgid "browse pages in this wiki" -msgstr "Le %d pagine più popolari di questo wiki sono:" +msgid "view this page" +msgstr "%s di questa pagina" -#: ../lib/main.php:310 +#: ../lib/main.php:286 #, fuzzy -msgid "diff pages in this wiki" -msgstr "Le %d pagine più popolari di questo wiki sono:" +msgid "diff this page" +msgstr "%s di questa pagina" -#: ../lib/main.php:311 +#: ../lib/main.php:287 #, fuzzy -msgid "dump html pages from this wiki" -msgstr "Le %d pagine più popolari di questo wiki sono:" +msgid "dump html pages" +msgstr "Rimuovi la pagina" -#: ../lib/main.php:312 +#: ../lib/main.php:288 #, fuzzy -msgid "dump serial pages from this wiki" +msgid "dump serial pages" msgstr "Le %d pagine più popolari di questo wiki sono:" -#: ../lib/main.php:313 +#: ../lib/main.php:289 #, fuzzy -msgid "edit pages in this wiki" -msgstr "Le %d pagine più popolari di questo wiki sono:" +msgid "edit this page" +msgstr "%s di questa pagina" -#: ../lib/main.php:314 +#: ../lib/main.php:290 #, fuzzy -msgid "create pages in this wiki" -msgstr "Le %d pagine più popolari di questo wiki sono:" +msgid "create this page" +msgstr "Errore durante il salvataggio della pagina '%s'" -#: ../lib/main.php:315 +#: ../lib/main.php:291 #, fuzzy msgid "load files into this wiki" msgstr "Le %d pagine più popolari di questo wiki sono:" -#: ../lib/main.php:316 +#: ../lib/main.php:292 #, fuzzy -msgid "lock pages in this wiki" -msgstr "Le %d pagine più popolari di questo wiki sono:" +msgid "lock this page" +msgstr "%s di questa pagina" -#: ../lib/main.php:317 +#: ../lib/main.php:293 #, fuzzy -msgid "remove pages from this wiki" -msgstr "Le %d pagine più popolari di questo wiki sono:" +msgid "remove this page" +msgstr "Rimuovi la pagina" -#: ../lib/main.php:318 +#: ../lib/main.php:294 #, fuzzy -msgid "unlock pages in this wiki" -msgstr "Le %d pagine più popolari di questo wiki sono:" +msgid "unlock this page" +msgstr "Sblocca la Pagina" -#: ../lib/main.php:319 +#: ../lib/main.php:295 #, fuzzy -msgid "upload a zip dump to this wiki" +msgid "upload a zip dump" msgstr "Le %d pagine più popolari di questo wiki sono:" -#: ../lib/main.php:320 +#: ../lib/main.php:296 #, fuzzy msgid "verify the current action" msgstr "Mostra il versione corrente" -#: ../lib/main.php:321 +#: ../lib/main.php:297 #, fuzzy -msgid "view the source of pages in this wiki" +msgid "view the source of this page" msgstr "Le %d pagine più popolari di questo wiki sono:" -#: ../lib/main.php:322 +#: ../lib/main.php:298 msgid "access this wiki via XML-RPC" msgstr "" -#: ../lib/main.php:323 +#: ../lib/main.php:299 #, fuzzy msgid "download a zip dump from this wiki" msgstr "Le %d pagine più popolari di questo wiki sono:" -#: ../lib/main.php:324 +#: ../lib/main.php:300 #, fuzzy msgid "download an html zip dump from this wiki" msgstr "Le %d pagine più popolari di questo wiki sono:" -#: ../lib/main.php:336 +#: ../lib/main.php:312 #, fuzzy msgid "Browsing pages" msgstr "Errore durante il salvataggio della pagina '%s'" -#: ../lib/main.php:337 +#: ../lib/main.php:313 #, fuzzy msgid "Diffing pages" msgstr "Errore durante il salvataggio della pagina '%s'" -#: ../lib/main.php:338 +#: ../lib/main.php:314 #, fuzzy msgid "Dumping html pages" msgstr "Rimuovi la pagina" -#: ../lib/main.php:339 +#: ../lib/main.php:315 #, fuzzy msgid "Dumping serial pages" msgstr "Le %d pagine più popolari di questo wiki sono:" -#: ../lib/main.php:340 +#: ../lib/main.php:316 #, fuzzy msgid "Editing pages" msgstr "Errore durante il salvataggio della pagina '%s'" -#: ../lib/main.php:341 +#: ../lib/main.php:317 #, fuzzy msgid "Creating pages" msgstr "Errore durante il salvataggio della pagina '%s'" -#: ../lib/main.php:342 +#: ../lib/main.php:318 #, fuzzy msgid "Loading files" msgstr "archivio del testo %s" -#: ../lib/main.php:343 +#: ../lib/main.php:319 #, fuzzy msgid "Locking pages" msgstr "Blocca la Pagina" -#: ../lib/main.php:344 +#: ../lib/main.php:320 #, fuzzy msgid "Removing pages" msgstr "Rimuovi la pagina" -#: ../lib/main.php:345 +#: ../lib/main.php:321 #, fuzzy msgid "Unlocking pages" msgstr "Sblocca la Pagina" -#: ../lib/main.php:346 +#: ../lib/main.php:322 msgid "Uploading zip dumps" msgstr "" -#: ../lib/main.php:347 +#: ../lib/main.php:323 #, fuzzy msgid "Verify the current action" msgstr "Mostra il versione corrente" -#: ../lib/main.php:348 +#: ../lib/main.php:324 #, fuzzy msgid "Viewing the source of pages" msgstr "Le %d pagine più popolari di questo wiki sono:" -#: ../lib/main.php:349 +#: ../lib/main.php:325 msgid "XML-RPC access" msgstr "" -#: ../lib/main.php:350 +#: ../lib/main.php:326 msgid "Downloading zip dumps" msgstr "" -#: ../lib/main.php:351 +#: ../lib/main.php:327 msgid "Downloading html zip dumps" msgstr "" -#: ../lib/main.php:458 +#: ../lib/main.php:436 #, c-format msgid "%s: Bad action" msgstr "" -#: ../lib/main.php:480 +#: ../lib/main.php:458 msgid "Fatal PhpWiki Error" msgstr "Errore Fatale Di PhpWiki" -#: ../lib/main.php:661 ../lib/plugin/FullTextSearch.php:31 +#: ../lib/main.php:641 ../lib/plugin/FullTextSearch.php:32 #: ../lib/plugin/WantedPages.php:123 msgid "FullTextSearch" msgstr "RicercaDelTesto" -#: ../lib/main.php:664 ../lib/plugin/RecentChanges.php:519 +#: ../lib/main.php:644 ../lib/plugin/RecentChanges.php:525 #: ../lib/plugin/TitleSearch.php:31 msgid "TitleSearch" msgstr "RicercaSuTutto" -#: ../lib/main.php:772 +#: ../lib/main.php:757 msgid "The session.save_path directory" msgstr "" -#: ../lib/main.php:775 +#: ../lib/main.php:760 #, c-format msgid "the directory '%s'" msgstr "" -#: ../lib/main.php:779 +#: ../lib/main.php:764 #, c-format msgid "Attempting to use the directory '%s' instead." msgstr "" -#: ../lib/main.php:786 +#: ../lib/main.php:771 msgid "Users will not be able to sign in." msgstr "" +#: ../lib/plugin/AddComment.php:39 +#, fuzzy +msgid "AddComment" +msgstr "Indice" + +#: ../lib/plugin/AddComment.php:43 +#, fuzzy, c-format +msgid "Show and add comments for %s" +msgstr "Mostra il sorgente della pagina e le sue referenze" + +#: ../lib/plugin/AddComment.php:106 ../lib/plugin/CreateToc.php:203 +#, fuzzy +msgid "Click to display" +msgstr "%s di questa pagina" + +#: ../lib/plugin/AddComment.php:108 +#, fuzzy +msgid "Comments" +msgstr "Indice" + #: ../lib/plugin/AllPages.php:31 msgid "AllPages" msgstr "" @@ -1089,28 +1291,29 @@ msgstr "Le %d pagine pi msgid "Pages in this wiki (%d total):" msgstr "Le %d pagine più popolari di questo wiki sono:" -#: ../lib/plugin/AllPages.php:82 ../lib/plugin/AllUsers.php:94 +#: ../lib/plugin/AllPages.php:81 ../lib/plugin/AllUsers.php:100 #, c-format msgid "Elapsed time: %s s" msgstr "" -#: ../lib/plugin/AllUsers.php:33 +#: ../lib/plugin/AllUsers.php:36 msgid "AllUsers" msgstr "" -#: ../lib/plugin/AllUsers.php:37 +#: ../lib/plugin/AllUsers.php:40 msgid "" "With external authentication all users which stored their Preferences. " "Without external authentication all once signed-in users (from version 1.3.4 " "on)." msgstr "" -#: ../lib/plugin/AllUsers.php:72 +#: ../lib/plugin/AllUsers.php:76 #, fuzzy, c-format msgid "Authenticated users on this wiki (%d total):" msgstr "Le %d pagine più popolari di questo wiki sono:" #: ../lib/plugin/AuthorHistory.php:70 +#: ../themes/smaller/templates/info.tmpl:169 msgid "AuthorHistory" msgstr "" @@ -1126,6 +1329,8 @@ msgid "Minor" msgstr "Mostrare le modifiche secondarie per: %s" #: ../lib/plugin/AuthorHistory.php:125 +#: ../themes/default/templates/forum-thread.tmpl:21 +#: ../themes/default/templates/forum-topics.tmpl:23 #, fuzzy msgid "Author" msgstr "Autore:" @@ -1153,12 +1358,12 @@ msgstr "" #: ../lib/plugin/AuthorHistory.php:218 #, c-format -msgid "History of all major and minor modifcations for any page edited by %s." +msgid "History of all major and minor modifications for any page edited by %s." msgstr "" #: ../lib/plugin/AuthorHistory.php:218 #, c-format -msgid "History of major modifcations for any page edited by %s." +msgid "History of major modifications for any page edited by %s." msgstr "" #: ../lib/plugin/BackLinks.php:35 @@ -1199,7 +1404,7 @@ msgstr "" #: ../lib/plugin/Calendar.php:41 ../lib/plugin/Calendar.php:45 #: ../themes/default/templates/head.tmpl:85 #: ../themes/default/templates/homepage.tmpl:15 -#: ../themes/default/templates/navbar.tmpl:27 +#: ../themes/default/templates/navbar.tmpl:28 msgid "Calendar" msgstr "Calendario" @@ -1231,6 +1436,42 @@ msgstr "Indice" msgid "Embed hidden comments in WikiPages." msgstr "" +#: ../lib/plugin/CreatePage.php:37 +#, fuzzy +msgid "CreatePage" +msgstr "TrovaPagina" + +#: ../lib/plugin/CreatePage.php:41 +#, fuzzy +msgid "Create a Wiki page." +msgstr "Errore durante il salvataggio della pagina '%s'" + +#: ../lib/plugin/CreateToc.php:34 +#, fuzzy +msgid "CreateToc" +msgstr "Salvata: %s" + +#: ../lib/plugin/CreateToc.php:38 +msgid "Automatically link headers at the top" +msgstr "" + +#: ../lib/plugin/CreateToc.php:146 ../lib/plugin/IncludePage.php:116 +msgid "no page specified" +msgstr "" + +#: ../lib/plugin/CreateToc.php:205 ../lib/plugin/CreateToc.php:208 +#, fuzzy +msgid "Table Of Contents" +msgstr "Indice" + +#: ../lib/plugin/Diff.php:40 +msgid "Display differences between revisions" +msgstr "" + +#: ../lib/plugin/Diff.php:52 +msgid "World" +msgstr "" + #: ../lib/plugin/EditMetaData.php:45 msgid "EditMetaData" msgstr "" @@ -1278,7 +1519,7 @@ msgid "" "Displays a url in a seperate frame inside our body. Only one frame allowed." msgstr "" -#: ../lib/plugin/FrameInclude.php:93 ../lib/plugin/IncludePage.php:124 +#: ../lib/plugin/FrameInclude.php:93 ../lib/plugin/IncludePage.php:123 #, c-format msgid "recursive inclusion of page %s" msgstr "" @@ -1299,12 +1540,17 @@ msgstr "" msgid "See %s" msgstr "Salvata: %s" -#: ../lib/plugin/FullTextSearch.php:35 +#: ../lib/plugin/FullTextSearch.php:36 #, fuzzy msgid "Search the content of all pages in this wiki." msgstr "Le %d pagine più popolari di questo wiki sono:" -#: ../lib/plugin/FullTextSearch.php:80 +#: ../lib/plugin/FullTextSearch.php:91 +#, c-format +msgid "only %d pages displayed" +msgstr "" + +#: ../lib/plugin/FullTextSearch.php:97 #, c-format msgid "Full text search results for '%s'" msgstr "Risultati della ricerca su tutto il testo per '%s'" @@ -1339,6 +1585,14 @@ msgstr "" msgid "Sound Score" msgstr "" +#: ../lib/plugin/GooglePlugin.php:43 +msgid "GooglePlugin" +msgstr "" + +#: ../lib/plugin/GooglePlugin.php:47 +msgid "Make use of the Google API" +msgstr "" + #: ../lib/plugin/HelloWorld.php:46 msgid "HelloWorld" msgstr "" @@ -1357,25 +1611,31 @@ msgid "Include text from another wiki page." msgstr "" #: ../lib/plugin/IncludePage.php:93 ../lib/plugin/PageGroup.php:80 -#: ../lib/plugin/UnfoldSubpages.php:116 +#: ../lib/plugin/UnfoldSubpages.php:117 #, c-format msgid "<%s: no such section>" msgstr "" -#: ../lib/plugin/IncludePage.php:117 -msgid "no page specified" -msgstr "" - -#: ../lib/plugin/IncludePage.php:133 ../lib/plugin/PageGroup.php:121 +#: ../lib/plugin/IncludePage.php:132 ../lib/plugin/PageGroup.php:121 #, c-format msgid "%s(%d): no such revision" msgstr "" -#: ../lib/plugin/IncludePage.php:162 +#: ../lib/plugin/IncludePage.php:161 #, fuzzy, c-format msgid "Included from %s" msgstr "Inserire dalla %s" +#: ../lib/plugin/IncludeSiteMap.php:52 +#, fuzzy +msgid "IncludeSiteMap" +msgstr "InserireLaPagina" + +#: ../lib/plugin/IncludeSiteMap.php:56 +#, c-format +msgid "Include recursively all linked pages starting at %s" +msgstr "" + #: ../lib/plugin/InterWikiSearch.php:31 #, fuzzy msgid "InterWikiSearch" @@ -1385,17 +1645,18 @@ msgstr "RicercaSuTutto" msgid "Perform searches on InterWiki sites listed in InterWikiMap." msgstr "" -#: ../lib/plugin/InterWikiSearch.php:70 +#: ../lib/plugin/InterWikiSearch.php:91 #, fuzzy msgid "Wiki Name" msgstr "Nome" -#: ../lib/plugin/InterWikiSearch.php:71 ../lib/plugin/RecentChanges.php:516 +#: ../lib/plugin/InterWikiSearch.php:92 ../lib/plugin/RecentChanges.php:522 msgid "Search" msgstr "Ricerca" #: ../lib/plugin/LikePages.php:32 ../themes/Portland/templates/navbar.tmpl:10 -#: ../themes/default/templates/navbar.tmpl:21 +#: ../themes/default/templates/navbar.tmpl:22 +#: ../themes/smaller/templates/navbar.tmpl:18 #, fuzzy msgid "LikePages" msgstr "Blocca la Pagina" @@ -1428,7 +1689,7 @@ msgstr "" msgid "Lists the names of all SubPages of the current page." msgstr "" -#: ../lib/plugin/ListSubpages.php:68 ../lib/plugin/UnfoldSubpages.php:133 +#: ../lib/plugin/ListSubpages.php:68 ../lib/plugin/UnfoldSubpages.php:127 msgid "The current page has no subpages defined." msgstr "" @@ -1437,7 +1698,7 @@ msgstr "" msgid "SubPages of %s:" msgstr "Il sorgente della %s" -#: ../lib/plugin/ListSubpages.php:90 ../lib/plugin/UnfoldSubpages.php:149 +#: ../lib/plugin/ListSubpages.php:90 ../lib/plugin/UnfoldSubpages.php:137 #, c-format msgid "recursive inclusion of page %s ignored" msgstr "" @@ -1451,20 +1712,29 @@ msgstr "Pi msgid "List the most popular pages." msgstr "Le %d pagine più popolari di questo wiki sono:" -#: ../lib/plugin/MostPopular.php:78 +#: ../lib/plugin/MostPopular.php:80 #, c-format msgid "The %d most popular pages of this wiki:" msgstr "Le %d pagine più popolari di questo wiki sono:" -#: ../lib/plugin/MostPopular.php:81 +#: ../lib/plugin/MostPopular.php:83 #, fuzzy, c-format msgid "The %d least popular pages of this wiki:" msgstr "Le %d pagine più popolari di questo wiki sono:" -#: ../lib/plugin/MostPopular.php:83 +#: ../lib/plugin/MostPopular.php:85 msgid "Visited pages on this wiki, ordered by popularity:" msgstr "" +#: ../lib/plugin/NoCache.php:39 +#, fuzzy +msgid "NoCache" +msgstr "Annulla" + +#: ../lib/plugin/NoCache.php:43 +msgid "Don't cache this page." +msgstr "" + #: ../lib/plugin/OldStyleTable.php:49 msgid "OldStyleTable" msgstr "" @@ -1616,6 +1886,8 @@ msgstr "Versione %d" #: ../themes/SpaceWiki/lib/RecentChanges.php:35 #: ../themes/default/templates/info.tmpl:18 #: ../themes/default/templates/info.tmpl:22 +#: ../themes/smaller/templates/info.tmpl:19 +#: ../themes/smaller/templates/info.tmpl:23 #, fuzzy msgid "minor edit" msgstr "Mostrare le modifiche secondarie per: %s" @@ -1628,6 +1900,8 @@ msgstr "Mostra il sorgente della pagina e le sue referenze" #: ../lib/plugin/PageHistory.php:247 ../lib/plugin/RecentChanges.php:65 #: ../themes/Portland/templates/actionbar.tmpl:18 #: ../themes/default/templates/actionbar.tmpl:27 +#: ../themes/smaller/templates/actionbar.tmpl:33 +#: ../themes/smaller/templates/info.tmpl:168 msgid "PageHistory" msgstr "" @@ -1647,33 +1921,40 @@ msgstr "" msgid "Show extra page Info and statistics for %s." msgstr "" -#: ../lib/plugin/PageTrail.php:43 +#: ../lib/plugin/PageTrail.php:45 msgid "PageTrail" msgstr "" -#: ../lib/plugin/PageTrail.php:47 +#: ../lib/plugin/PageTrail.php:49 msgid "PageTrail Plugin" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:53 +#: ../lib/plugin/PhotoAlbum.php:146 msgid "PhotoAlbum" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:57 +#: ../lib/plugin/PhotoAlbum.php:150 msgid "" "Displays a set of photos listed in a text file with optional descriptions" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:80 ../lib/plugin/Transclude.php:76 -#, c-format -msgid "%s parameter missing" +#: ../lib/plugin/PhotoAlbum.php:433 +msgid "Fixed album location is not allowed." +msgstr "" + +#: ../lib/plugin/PhotoAlbum.php:434 +msgid "));" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:84 ../lib/plugin/Transclude.php:85 +#: ../lib/plugin/PhotoAlbum.php:452 ../lib/plugin/Transclude.php:85 msgid "Bad url in src: remove all of <, >, \"" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:90 +#: ../lib/plugin/PhotoAlbum.php:476 +msgid "Wrong server setting: allow_url_fopen set to Off" +msgstr "" + +#: ../lib/plugin/PhotoAlbum.php:480 #, c-format msgid "Unable to read %s " msgstr "" @@ -1884,7 +2165,7 @@ msgid "All %s are listed below." msgstr "" #: ../lib/plugin/RecentChanges.php:250 ../lib/plugin/RecentChanges.php:263 -#: ../lib/plugin/RecentChanges.php:362 ../lib/plugin/RecentChanges.php:438 +#: ../lib/plugin/RecentChanges.php:365 ../lib/plugin/RecentChanges.php:441 #: ../themes/Portland/templates/editpage.tmpl:66 msgid "RecentEdits" msgstr "" @@ -1894,29 +2175,29 @@ msgstr "" msgid "No changes found" msgstr "Mostra il sorgente della pagina e le sue referenze" -#: ../lib/plugin/RecentChanges.php:517 +#: ../lib/plugin/RecentChanges.php:523 msgid "Title Search" msgstr "La ricerca su tutto il testo" -#: ../lib/plugin/RecentChanges.php:740 +#: ../lib/plugin/RecentChanges.php:746 msgid "Show minor edits for:" msgstr "Mostrare le modifiche secondarie per:" -#: ../lib/plugin/RecentChanges.php:742 +#: ../lib/plugin/RecentChanges.php:748 #, fuzzy msgid "Show all changes for:" msgstr "Mostra il sorgente della pagina e le sue referenze" -#: ../lib/plugin/RecentChanges.php:744 +#: ../lib/plugin/RecentChanges.php:750 #, fuzzy msgid "Show changes for:" msgstr "Mostra il sorgente della pagina e le sue referenze" -#: ../lib/plugin/RecentChanges.php:764 +#: ../lib/plugin/RecentChanges.php:770 msgid "1 day" msgstr "1 giorno" -#: ../lib/plugin/RecentChanges.php:768 +#: ../lib/plugin/RecentChanges.php:774 #, c-format msgid "%s days" msgstr "%s giorni" @@ -1947,20 +2228,41 @@ msgstr "" msgid "Viewing redirecting page." msgstr "Le %d pagine più popolari di questo wiki sono:" -#: ../lib/plugin/SiteMap.php:49 +#: ../lib/plugin/RichTable.php:32 +msgid "RichTable" +msgstr "" + +#: ../lib/plugin/RichTable.php:36 +msgid "Layout tables using a very rich markup style." +msgstr "" + +#: ../lib/plugin/SiteMap.php:51 msgid "SiteMap" msgstr "" -#: ../lib/plugin/SiteMap.php:53 +#: ../lib/plugin/SiteMap.php:55 #, c-format msgid "Recursively get BackLinks or links for %s" msgstr "" -#: ../lib/plugin/SiteMap.php:161 +#: ../lib/plugin/SiteMap.php:169 #, c-format msgid "(max. recursion level: %d)" msgstr "" +#: ../lib/plugin/SqlResult.php:42 +msgid "SqlResult" +msgstr "" + +#: ../lib/plugin/SqlResult.php:46 +msgid "Display arbitrary SQL result tables" +msgstr "" + +#: ../lib/plugin/SqlResult.php:81 ../lib/plugin/WikiPoll.php:159 +#: ../lib/plugin/WikiPoll.php:228 +msgid "Sorry! You must wait at least 20 minutes until you can vote again!" +msgstr "" + #: ../lib/plugin/SystemInfo.php:52 msgid "SystemInfo" msgstr "" @@ -2207,9 +2509,14 @@ msgstr "InserireLaPagina" msgid "Include an external web page within the body of a wiki page." msgstr "" -#: ../lib/plugin/Transclude.php:88 -#, fuzzy -msgid "Transcluded page" +#: ../lib/plugin/Transclude.php:76 +#, c-format +msgid "%s parameter missing" +msgstr "" + +#: ../lib/plugin/Transclude.php:88 +#, fuzzy +msgid "Transcluded page" msgstr "InserireLaPagina" #: ../lib/plugin/Transclude.php:97 @@ -2222,6 +2529,84 @@ msgstr "Salvata: %s" msgid "Transcluded from %s" msgstr "Inserire dalla %s" +#: ../lib/plugin/TranslateText.php:44 ../lib/plugin/_WikiTranslation.php:98 +#, fuzzy +msgid "TranslateText" +msgstr "InserireLaPagina" + +#: ../lib/plugin/TranslateText.php:48 +msgid "Define a translation for a specified text" +msgstr "" + +#: ../lib/plugin/TranslateText.php:68 +msgid "This internal action page cannot viewed." +msgstr "" + +#: ../lib/plugin/TranslateText.php:69 +msgid "You can only use it via the _WikiTranslation plugin." +msgstr "" + +#: ../lib/plugin/TranslateText.php:76 +msgid "Translation Error!" +msgstr "" + +#: ../lib/plugin/TranslateText.php:77 +msgid "" +"Your translated text is either empty or equal to the untranslated text. " +"Please try again." +msgstr "" + +#: ../lib/plugin/TranslateText.php:82 +msgid "ContributedTranslations" +msgstr "" + +#: ../lib/plugin/TranslateText.php:96 +#, c-format +msgid "Translate '%s' to '%s' in *%s*" +msgstr "" + +#: ../lib/plugin/TranslateText.php:99 +#, c-format +msgid "Translate %s to %s in %s" +msgstr "" + +#: ../lib/plugin/TranslateText.php:103 +#, fuzzy +msgid "Thanks for adding this translation!" +msgstr "Grazie per le modifiche! %s." + +#: ../lib/plugin/TranslateText.php:104 +#, c-format +msgid "" +"Your translated text doesn't yet appear in this %s, but the Administrator " +"will pick it up and add to the installation." +msgstr "" + +#: ../lib/plugin/TranslateText.php:106 +#, c-format +msgid "Your translation is stored in %s" +msgstr "" + +#: ../lib/plugin/TranslateText.php:112 ../lib/plugin/TranslateText.php:114 +#, fuzzy, c-format +msgid "From english to %s: " +msgstr "Le %d pagine più popolari di questo wiki sono:" + +#: ../lib/plugin/TranslateText.php:115 +#, fuzzy +msgid "Translate" +msgstr "InserireLaPagina" + +#: ../lib/plugin/TranslateText.php:118 ../lib/plugin/WikiAdminChmod.php:163 +#: ../lib/plugin/WikiAdminRemove.php:201 ../lib/plugin/WikiAdminRename.php:158 +#: ../lib/plugin/WikiAdminSearchReplace.php:185 +#: ../lib/plugin/WikiAdminSelect.php:196 ../lib/plugin/WikiAdminSelect.php:217 +#: ../lib/plugin/WikiAdminSetAcl.php:157 ../lib/removepage.php:22 +#: ../themes/default/templates/login.tmpl:68 +#: ../themes/default/templates/userprefs.tmpl:214 +msgid "Cancel" +msgstr "Annulla" + #: ../lib/plugin/UnfoldSubpages.php:36 msgid "UnfoldSubpages" msgstr "" @@ -2230,67 +2615,85 @@ msgstr "" msgid "Includes the content of all SubPages of the current page." msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:83 +#: ../lib/plugin/UnfoldSubpages.php:84 #, c-format msgid "... first %d words" msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:164 +#: ../lib/plugin/UnfoldSubpages.php:152 #, c-format msgid " ... first %d lines" msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:188 +#: ../lib/plugin/UnfoldSubpages.php:176 #, fuzzy, c-format msgid "Included from %s:" msgstr "Inserire dalla %s" -#: ../lib/plugin/UpLoad.php:52 -msgid "Simple Plugin to load files up to server" +#: ../lib/plugin/UpLoad.php:53 +msgid "Upload files to the local InterWiki Upload:" msgstr "" -#: ../lib/plugin/UpLoad.php:79 ../lib/plugin/WikiForm.php:100 +#: ../lib/plugin/UpLoad.php:84 ../lib/plugin/WikiForm.php:100 msgid "Upload" msgstr "" -#: ../lib/plugin/UpLoad.php:102 -msgid "ACCESS DENIED: Please log in to upload files" +#: ../lib/plugin/UpLoad.php:100 +msgid "ACCESS DENIED: You must log in to upload files." msgstr "" -#: ../lib/plugin/UpLoad.php:116 +#: ../lib/plugin/UpLoad.php:112 #, c-format msgid "Files with extension %s are not allowed" msgstr "" -#: ../lib/plugin/UpLoad.php:122 +#: ../lib/plugin/UpLoad.php:116 #, c-format msgid "There is already a file with name %s uploaded" msgstr "" -#: ../lib/plugin/UpLoad.php:128 +#: ../lib/plugin/UpLoad.php:120 msgid "Sorry but this file is too big" msgstr "" -#: ../lib/plugin/UpLoad.php:133 -msgid "File successfully uploaded to location:" +#: ../lib/plugin/UpLoad.php:127 +msgid "File successfully uploaded." msgstr "" -#: ../lib/plugin/UpLoad.php:141 +#: ../lib/plugin/UpLoad.php:144 +#, fuzzy, c-format +msgid "uploaded %s" +msgstr "archivio del testo %s" + +#: ../lib/plugin/UpLoad.php:150 +#, fuzzy +msgid "Uploading failed: " +msgstr "archivio del testo %s" + +#: ../lib/plugin/UpLoad.php:168 msgid "Error: the upload log is not writable" msgstr "" -#: ../lib/plugin/UpLoad.php:145 +#: ../lib/plugin/UpLoad.php:172 msgid "Error: can't open the upload logfile" msgstr "" -#: ../lib/plugin/UpLoad.php:164 -#, fuzzy -msgid "Uploading failed." -msgstr "archivio del testo %s" +#: ../lib/plugin/UserFileManagement.php:38 +msgid "UserFileManagement" +msgstr "" + +#: ../lib/plugin/UserFileManagement.php:42 +msgid "Allows registered users to manipulate his/her files" +msgstr "" + +#: ../lib/plugin/UserFileManagement.php:136 +msgid "Current directory: " +msgstr "" #: ../lib/plugin/UserPreferences.php:34 #: ../themes/default/templates/head.tmpl:82 #: ../themes/default/templates/homepage.tmpl:11 +#: ../themes/smaller/templates/navbar.tmpl:25 #, fuzzy msgid "UserPreferences" msgstr "Preferenze" @@ -2301,20 +2704,123 @@ msgid "" "cannot be saved." msgstr "" -#: ../lib/plugin/UserPreferences.php:79 +#: ../lib/plugin/UserPreferences.php:80 msgid "Wrong password. Try again." msgstr "" -#: ../lib/plugin/UserPreferences.php:85 +#: ../lib/plugin/UserPreferences.php:97 +#, fuzzy +msgid "Password updated." +msgstr "%s giorni" + +#: ../lib/plugin/UserPreferences.php:99 ../lib/plugin/UserPreferences.php:102 +msgid "Password cannot be changed." +msgstr "" + +#: ../lib/plugin/UserPreferences.php:106 #, fuzzy msgid "No changes." msgstr "Mostra il sorgente della pagina e le sue referenze" -#: ../lib/plugin/UserPreferences.php:89 +#: ../lib/plugin/UserPreferences.php:109 #, c-format msgid "%d UserPreferences fields successfully updated." msgstr "" +#: ../lib/plugin/UserRegistration.php:16 +msgid "UserRegistration" +msgstr "" + +#: ../lib/plugin/UserRegistration.php:28 +msgid "Only the administrator is allowed to register new users." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:31 +msgid "Warning: You are already signed in, you cannot create another account." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:56 +msgid "Error: You must specify a user-id for the account." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:59 +msgid "Error: The user-id you specified is too short." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:63 +msgid "Error: The user-id you specified is not a valid WikiWord." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:66 +msgid "" +"Error: The user-id you specified is already in use, please choose another." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:72 +msgid "Error: You must specify a password for the account." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:74 +msgid "Error: The password you specified is too short." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:78 +msgid "Error: You must specify an email address." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:81 +msgid "Error: The email address you specified is not valid." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:84 +msgid "Error: You must specify a first name." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:87 +msgid "Error: You must specify a last name." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:97 +msgid "" +"Error: There seemed to be some problem creating the new home page. Please " +"try again or contact the administrator for assistance." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:112 +msgid "You have been registered at " +msgstr "" + +#: ../lib/plugin/UserRegistration.php:114 +msgid "Your username is: " +msgstr "" + +#: ../lib/plugin/UserRegistration.php:115 +msgid "Your password is: " +msgstr "" + +#: ../lib/plugin/UserRegistration.php:116 +#, fuzzy +msgid "Your home page is: " +msgstr "Errore durante il salvataggio della pagina '%s'" + +#: ../lib/plugin/UserRegistration.php:118 +msgid "Welcome to our Wiki." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:126 +msgid " has been created." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:130 +msgid "The user has been sent their login information by email." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:132 +msgid "" +"Your password was sent to your email address. Please check your mail and " +"then login." +msgstr "" + #: ../lib/plugin/VisualWiki.php:93 msgid "" "Visualizes the Wiki structure in a graph using the 'dot' commandline tool " @@ -2339,7 +2845,7 @@ msgstr "TrovaPagina" msgid "Lists referenced page names which do not exist yet." msgstr "" -#: ../lib/plugin/WantedPages.php:47 +#: ../lib/plugin/WantedPages.php:47 ../lib/plugin/_WikiTranslation.php:79 msgid "PgsrcTranslation" msgstr "" @@ -2363,6 +2869,103 @@ msgstr "Le %d pagine pi msgid "Count" msgstr "Indice" +#: ../lib/plugin/WhoIsOnline.php:38 +msgid "WhoIsOnline" +msgstr "" + +#: ../lib/plugin/WhoIsOnline.php:42 +msgid "Show summary information of the current user sessions." +msgstr "" + +#: ../lib/plugin/WhoIsOnline.php:98 +msgid "Guest" +msgstr "" + +#: ../lib/plugin/WhoIsOnline.php:108 +#, fuzzy +msgid "" +msgstr "Nessuno" + +#: ../lib/plugin/WhoIsOnline.php:169 +#, c-format +msgid "%d minutes" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:42 +msgid "WikiAdminChmod" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:46 ../lib/plugin/WikiAdminSetAcl.php:45 +msgid "Set individual page permissions." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:80 +#, fuzzy, c-format +msgid "chmod page '%s' to '%s'." +msgstr "Le %d pagine più popolari di questo wiki sono:" + +#: ../lib/plugin/WikiAdminChmod.php:83 +#, c-format +msgid "Couldn't chmod page '%s' to '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:87 +msgid "Invalid chmod string" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:92 ../lib/plugin/WikiAdminSetAcl.php:86 +#, c-format +msgid "%s pages have been changed." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:95 +#: ../lib/plugin/WikiAdminSearchReplace.php:108 +#: ../lib/plugin/WikiAdminSetAcl.php:89 +#, fuzzy +msgid "No pages changed." +msgstr "Mostra il sorgente della pagina e le sue referenze" + +#: ../lib/plugin/WikiAdminChmod.php:150 ../lib/plugin/WikiAdminRemove.php:175 +#: ../lib/plugin/WikiAdminRename.php:144 +#: ../lib/plugin/WikiAdminSearchReplace.php:171 +#: ../lib/plugin/WikiAdminSetAcl.php:144 +msgid "Yes" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:154 ../lib/plugin/WikiAdminSetAcl.php:148 +#, fuzzy +msgid "Are you sure you want to permanently change the selected files?" +msgstr "Rimuovi la pagina" + +#: ../lib/plugin/WikiAdminChmod.php:157 +msgid "Chmod" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:159 ../lib/plugin/WikiAdminSetAcl.php:153 +#, fuzzy +msgid "Select the pages to change:" +msgstr "Rimuovi la pagina" + +#: ../lib/plugin/WikiAdminChmod.php:180 ../lib/plugin/WikiAdminSetAcl.php:173 +msgid "This plugin is currently under development and does not work!" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:181 +msgid "Chmod to permission:" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:184 +msgid "(ugo : rwx)" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:191 ../lib/plugin/WikiAdminSetAcl.php:206 +msgid "Propagate new permissions to all subpages?" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:193 ../lib/plugin/WikiAdminSetAcl.php:208 +msgid "(disable individual page permissions, enable inheritance)?" +msgstr "" + #: ../lib/plugin/WikiAdminRemove.php:39 msgid "WikiAdminRemove" msgstr "" @@ -2372,205 +2975,711 @@ msgstr "" msgid "Permanently remove all selected pages." msgstr "Rimuovi la pagina" -#: ../lib/plugin/WikiAdminRemove.php:116 ../lib/removepage.php:46 +#: ../lib/plugin/WikiAdminRemove.php:117 ../lib/removepage.php:46 #, c-format msgid "Removed page '%s' successfully." msgstr "La pagina '%s' è stata rimossa correttamente." -#: ../lib/plugin/WikiAdminRemove.php:169 -msgid "Yes" +#: ../lib/plugin/WikiAdminRemove.php:177 +msgid "Are you sure you want to permanently remove the selected files?" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:171 -msgid "Are you sure you want to permanently remove the selected files?" +#: ../lib/plugin/WikiAdminRemove.php:180 +#, fuzzy +msgid "Remove selected pages" +msgstr "Rimuovi la pagina" + +#: ../lib/plugin/WikiAdminRemove.php:181 +#, fuzzy +msgid "Permanently remove the selected files:" +msgstr "Rimuovi la pagina" + +#: ../lib/plugin/WikiAdminRemove.php:184 +#, c-format +msgid "Also pages which have been deleted at least %s days." +msgstr "" + +#: ../lib/plugin/WikiAdminRemove.php:188 +#, fuzzy +msgid "List all pages." +msgstr "Errore durante il salvataggio della pagina '%s'" + +#: ../lib/plugin/WikiAdminRemove.php:194 +#, c-format +msgid "(Pages which have been deleted at least %s days are already checked.)" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:39 +msgid "WikiAdminRename" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:43 +#, fuzzy +msgid "Rename selected pages." +msgstr "Rimuovi la pagina" + +#: ../lib/plugin/WikiAdminRename.php:76 +#, fuzzy, c-format +msgid "Renamed page '%s' to '%s'." +msgstr "La pagina '%s' è stata rimossa correttamente." + +#: ../lib/plugin/WikiAdminRename.php:79 +#, c-format +msgid "Couldn't rename page '%s' to '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:85 +#, c-format +msgid "%s pages have been permanently renamed." +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:88 +#, fuzzy +msgid "No pages renamed." +msgstr "Mostra il sorgente della pagina e le sue referenze" + +#: ../lib/plugin/WikiAdminRename.php:147 +#, fuzzy +msgid "Are you sure you want to permanently rename the selected files?" +msgstr "Rimuovi la pagina" + +#: ../lib/plugin/WikiAdminRename.php:151 +#, fuzzy +msgid "Rename selected pages" +msgstr "Rimuovi la pagina" + +#: ../lib/plugin/WikiAdminRename.php:152 +#, fuzzy +msgid "Select the pages to rename:" +msgstr "Rimuovi la pagina" + +#: ../lib/plugin/WikiAdminRename.php:173 +#, fuzzy +msgid "Rename" +msgstr "Rimuovi la Pagina" + +#: ../lib/plugin/WikiAdminRename.php:173 +#, fuzzy +msgid "from" +msgstr "dalla %s" + +#: ../lib/plugin/WikiAdminRename.php:176 +msgid "to" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:179 +msgid "(no regex, case-sensitive)" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:182 +msgid "Change pagename in all linked pages also?" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:39 +msgid "WikiAdminSearchReplace" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:43 +msgid "Search and replace text in selected wiki pages." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:81 +#, c-format +msgid "WikiAdminSearchReplace %s by %s" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:89 +msgid "Error: Empty search string." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:96 +#, c-format +msgid "Replaced '%s' with '%s' in page '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:99 +#, c-format +msgid "Search string '%s' not found in page '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:105 +#, c-format +msgid "%s pages changed." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:169 +msgid "Warning: The search string cannot be empty!" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:174 +msgid "" +"Are you sure you want to permanently search & replace text in the selected " +"files?" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:178 +msgid "Search & Replace" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:180 +#, fuzzy +msgid "Select the pages to search:" +msgstr "Rimuovi la pagina" + +#: ../lib/plugin/WikiAdminSearchReplace.php:200 +msgid "Replace: " +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:203 +msgid "by" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:206 +msgid "(no regex) Case-exact: " +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:41 +msgid "WikiAdminSelect" +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:45 +msgid "" +"Allows selection of multiple pages which get passed to other WikiAdmin " +"plugins." +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:113 ../lib/plugin/WikiAdminSelect.php:124 +msgid "Go" +msgstr "Vai" + +#: ../lib/plugin/WikiAdminSelect.php:118 +#, fuzzy +msgid "Select: " +msgstr "Rimossa." + +#: ../lib/plugin/WikiAdminSelect.php:157 +#, c-format +msgid "Selected page '%s' passed to '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:194 +#, fuzzy +msgid "Select pages" +msgstr "Rimuovi la pagina" + +#: ../lib/plugin/WikiAdminSetAcl.php:41 +msgid "WikiAdminSetAcl" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:74 +#, fuzzy, c-format +msgid "set acl for page '%s'." +msgstr "Mostra il sorgente della pagina '%s'" + +#: ../lib/plugin/WikiAdminSetAcl.php:77 +#, fuzzy, c-format +msgid "Couldn't setacl page '%s'." +msgstr "Non riesco a stabilire una connessione col database: %s" + +#: ../lib/plugin/WikiAdminSetAcl.php:81 +msgid "Invalid acl" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:151 +msgid "SetAcl" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:181 +#, fuzzy, c-format +msgid "Pages: %s" +msgstr "Il sorgente della %s" + +#: ../lib/plugin/WikiAdminSetAcl.php:184 +#, c-format +msgid "page permission inherited from %s" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:186 +msgid "invidual page permission" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:188 +msgid "default page permission" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:189 +#, fuzzy +msgid "Type: " +msgstr "Nome Della Pagina" + +#: ../lib/plugin/WikiAdminUtils.php:29 +msgid "WikiAdminUtils" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:33 +msgid "Miscellaneous utility functions of use to the administrator." +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:66 +msgid "You must be an administrator to use this plugin." +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:95 +msgid "WikiAdminUtils says:" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:97 ../lib/stdlib.php:1335 +msgid "Okay" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:103 +msgid "Purge Markup Cache" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:104 +msgid "Delete Pages With Invalid Names" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:114 +#, fuzzy +msgid "Markup cache purged!" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:130 +msgid "No pages with bad names were found." +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:138 +#, c-format +msgid "Deleted %s pages with invalid names:" +msgstr "" + +#: ../lib/plugin/WikiBlog.php:77 +msgid "WikiBlog" +msgstr "" + +#: ../lib/plugin/WikiBlog.php:81 +#, fuzzy, c-format +msgid "Show and add blogs for %s" +msgstr "Mostra il sorgente della pagina e le sue referenze" + +#: ../lib/plugin/WikiBlog.php:156 +#, fuzzy, c-format +msgid "No page specified for %s" +msgstr "Le %d pagine più popolari di questo wiki sono:" + +#: ../lib/plugin/WikiBlog.php:186 ../lib/plugin/WikiForum.php:136 +msgid "New comment." +msgstr "" + +#: ../lib/plugin/WikiBlog.php:265 ../lib/plugin/WikiForum.php:208 +#, c-format +msgid "Comments on %s:" +msgstr "" + +#: ../lib/plugin/WikiForm.php:32 +msgid "WikiForm" +msgstr "" + +#: ../lib/plugin/WikiForm.php:67 +#, fuzzy +msgid "Load File" +msgstr "archivio del testo %s" + +#: ../lib/plugin/WikiForm.php:73 +msgid "Login" +msgstr "" + +#: ../lib/plugin/WikiForm.php:81 +msgid "Dump Pages" +msgstr "" + +#: ../lib/plugin/WikiForm.php:89 +msgid "Dump Pages as XHTML" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:174 +#: ../lib/plugin/WikiForm.php:104 +#, c-format +msgid "WikiForm: %s: unknown action" +msgstr "" + +#: ../lib/plugin/WikiForum.php:46 +msgid "WikiForum" +msgstr "" + +#: ../lib/plugin/WikiForum.php:50 +msgid "Handles threaded topics with comments/news and provide a input form" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:59 +msgid "WikiPoll" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:63 +msgid "Enable configurable polls" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:185 +msgid "Not enough questions answered!" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:194 ../lib/plugin/WikiPoll.php:255 +#, fuzzy, c-format +msgid "Missing %s for %s" +msgstr "versione %d della %s" + +#: ../lib/plugin/WikiPoll.php:222 +msgid "Ok" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:225 +#, fuzzy +msgid "Reset" +msgstr "Inserire dalla %s" + +#: ../lib/plugin/WikiPoll.php:271 ../lib/plugin/WikiPoll.php:285 +#, c-format +msgid " %d%% (%d/%d)" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:301 ../lib/plugin/WikiPoll.php:303 +msgid "The result of this poll so far:" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:301 +#, fuzzy +msgid "Thanks for participating!" +msgstr "Grazie per le modifiche! %s." + +#: ../lib/plugin/_AuthInfo.php:35 +#, fuzzy +msgid "_AuthInfo" +msgstr "Autore:" + +#: ../lib/plugin/_AuthInfo.php:39 +msgid "Display general and user specific auth information." +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:65 +msgid "General Auth Settings" +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:100 +#, c-format +msgid "Personal Auth Settings for '%s'" +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:102 +msgid "No userid" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:30 ../lib/plugin/_WikiTranslation.php:57 +#: ../themes/Portland/templates/actionbar.tmpl:21 +#: ../themes/default/templates/actionbar.tmpl:32 +#: ../themes/smaller/templates/info.tmpl:175 +msgid "DebugInfo" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:34 +#, c-format +msgid "Get debugging information for %s." +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:54 +#, c-format +msgid "Querying backend directly for '%s'" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:64 +#, c-format +msgid "No pagedata for %s" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:95 +msgid "" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:95 +msgid "" +msgstr "" + +#: ../lib/plugin/_PreferencesInfo.php:30 +#: ../themes/default/templates/userprefs.tmpl:12 +#, fuzzy +msgid "PreferencesInfo" +msgstr "Preferenze" + +#: ../lib/plugin/_PreferencesInfo.php:34 +#, c-format +msgid "Get preferences information for current user %s." +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:47 +#, fuzzy +msgid "AddCommentPlugin" +msgstr "Indice" + +#: ../lib/plugin/_WikiTranslation.php:48 +#, fuzzy +msgid "AddingPages" +msgstr "Errore durante il salvataggio della pagina '%s'" + +#: ../lib/plugin/_WikiTranslation.php:49 +msgid "AuthorHistoryPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:51 +#, fuzzy +msgid "CalendarListPlugin" +msgstr "Calendario" + +#: ../lib/plugin/_WikiTranslation.php:52 +#, fuzzy +msgid "CalendarPlugin" +msgstr "Calendario" + +#: ../lib/plugin/_WikiTranslation.php:53 +#, fuzzy +msgid "CategoryCategory" +msgstr "Pagina corrente:" + +#: ../lib/plugin/_WikiTranslation.php:54 +#, fuzzy +msgid "CategoryHomePages" +msgstr "Pagina corrente:" + +#: ../lib/plugin/_WikiTranslation.php:55 +#, fuzzy +msgid "CommentPlugin" +msgstr "Indice" + +#: ../lib/plugin/_WikiTranslation.php:56 +#, fuzzy +msgid "CreateTocPlugin" +msgstr "Salvata: %s" + +#: ../lib/plugin/_WikiTranslation.php:58 +msgid "EditMetaDataPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:59 +#, fuzzy +msgid "ExternalSearchPlugin" +msgstr "RicercaSuTutto" + +#: ../lib/plugin/_WikiTranslation.php:60 +#: ../themes/Portland/templates/navbar.tmpl:8 +#: ../themes/default/templates/head.tmpl:35 +#: ../themes/default/templates/navbar.tmpl:11 +#: ../themes/smaller/templates/navbar.tmpl:11 +msgid "FindPage" +msgstr "TrovaPagina" + +#: ../lib/plugin/_WikiTranslation.php:61 +#, fuzzy +msgid "FrameIncludePlugin" +msgstr "InserireLaPagina" + +#: ../lib/plugin/_WikiTranslation.php:62 +#, fuzzy +msgid "FullRecentChanges" +msgstr "CambiamentiRecenti o ModificheRecenti?" + +#: ../lib/plugin/_WikiTranslation.php:63 +msgid "HelloWorldPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:64 +#, fuzzy +msgid "HomePageAlias" +msgstr "PaginaPrincipale" + +#: ../lib/plugin/_WikiTranslation.php:65 #, fuzzy -msgid "Remove selected pages" -msgstr "Rimuovi la pagina" +msgid "IncludePagePlugin" +msgstr "InserireLaPagina" -#: ../lib/plugin/WikiAdminRemove.php:175 +#: ../lib/plugin/_WikiTranslation.php:66 #, fuzzy -msgid "Permanently remove the selected files:" -msgstr "Rimuovi la pagina" +msgid "InterWiki" +msgstr "RicercaSuTutto" -#: ../lib/plugin/WikiAdminRemove.php:178 -#, c-format -msgid "Also pages which have been deleted at least %s days." +#: ../lib/plugin/_WikiTranslation.php:67 +msgid "LinkIcons" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:182 -#, fuzzy -msgid "List all pages." -msgstr "Errore durante il salvataggio della pagina '%s'" +#: ../lib/plugin/_WikiTranslation.php:68 +msgid "MagicPhpWikiURLs" +msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:188 -#, c-format -msgid "(Pages which have been deleted at least %s days are already checked.)" +#: ../lib/plugin/_WikiTranslation.php:69 +msgid "MoreAboutMechanics" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:195 ../lib/plugin/WikiAdminSelect.php:195 -#: ../lib/plugin/WikiAdminSelect.php:216 ../lib/removepage.php:22 -#: ../themes/default/templates/login.tmpl:72 -#: ../themes/default/templates/userprefs.tmpl:214 -msgid "Cancel" -msgstr "Annulla" +#: ../lib/plugin/_WikiTranslation.php:70 +msgid "NewMarkupTestPage" +msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:41 -msgid "WikiAdminSelect" +#: ../lib/plugin/_WikiTranslation.php:71 +msgid "OldMarkupTestPage" msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:45 -msgid "" -"Allows selection of multiple pages which get passed to other WikiAdmin " -"plugins." +#: ../lib/plugin/_WikiTranslation.php:72 +msgid "OldStyleTablePlugin" msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:88 ../lib/plugin/WikiAdminSelect.php:112 -#: ../lib/plugin/WikiAdminSelect.php:123 -msgid "Go" -msgstr "Vai" +#: ../lib/plugin/_WikiTranslation.php:73 +#, fuzzy +msgid "PageDump" +msgstr "Il sorgente della %s" -#: ../lib/plugin/WikiAdminSelect.php:117 +#: ../lib/plugin/_WikiTranslation.php:74 #, fuzzy -msgid "Select: " -msgstr "Rimossa." +msgid "PageGroupTest" +msgstr "Il sorgente della %s" -#: ../lib/plugin/WikiAdminSelect.php:156 -#, c-format -msgid "Selected page '%s' passed to '%s'." -msgstr "" +#: ../lib/plugin/_WikiTranslation.php:75 +#, fuzzy +msgid "PageGroupTestFour" +msgstr "Il sorgente della %s" -#: ../lib/plugin/WikiAdminSelect.php:193 +#: ../lib/plugin/_WikiTranslation.php:76 #, fuzzy -msgid "Select pages" -msgstr "Rimuovi la pagina" +msgid "PageGroupTestOne" +msgstr "Il sorgente della %s" -#: ../lib/plugin/WikiAdminUtils.php:29 -msgid "WikiAdminUtils" +#: ../lib/plugin/_WikiTranslation.php:77 +#, fuzzy +msgid "PageGroupTestThree" +msgstr "Il sorgente della %s" + +#: ../lib/plugin/_WikiTranslation.php:78 +#, fuzzy +msgid "PageGroupTestTwo" +msgstr "Il sorgente della %s" + +#: ../lib/plugin/_WikiTranslation.php:80 +msgid "PhotoAlbumPlugin" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:33 -msgid "Miscellaneous utility functions of use to the administrator." +#: ../lib/plugin/_WikiTranslation.php:81 +msgid "PhpHighlightPlugin" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:65 -msgid "You must be an administrator to use this plugin." +#: ../lib/plugin/_WikiTranslation.php:82 +msgid "PhpWeatherPlugin" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:93 -msgid "WikiAdminUtils says:" +#: ../lib/plugin/_WikiTranslation.php:83 +msgid "PhpWiki" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:95 ../lib/stdlib.php:1320 -msgid "Okay" +#: ../lib/plugin/_WikiTranslation.php:84 +msgid "PhpWikiAdministration/Chmod" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:101 -msgid "Purge Markup Cache" +#: ../lib/plugin/_WikiTranslation.php:85 +msgid "PhpWikiAdministration/Remove" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:102 -msgid "Delete Pages With Invalid Names" +#: ../lib/plugin/_WikiTranslation.php:86 +msgid "PhpWikiAdministration/Rename" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:112 -#, fuzzy -msgid "Markup cache purged!" -msgstr "" +#: ../lib/plugin/_WikiTranslation.php:87 +msgid "PhpWikiAdministration/Replace" +msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:128 -msgid "No pages with bad names were found." +#: ../lib/plugin/_WikiTranslation.php:88 +msgid "PhpWikiDocumentation" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:136 -#, c-format -msgid "Deleted %s pages with invalid names:" +#: ../lib/plugin/_WikiTranslation.php:89 +msgid "PhpWikiPoll" msgstr "" -#: ../lib/plugin/WikiBlog.php:74 -msgid "WikiBlog" +#: ../lib/plugin/_WikiTranslation.php:90 +msgid "RawHtmlPlugin" msgstr "" -#: ../lib/plugin/WikiBlog.php:78 -#, fuzzy, c-format -msgid "Show and add blogs for %s" -msgstr "Mostra il sorgente della pagina e le sue referenze" +#: ../lib/plugin/_WikiTranslation.php:91 +msgid "RecentVisitors" +msgstr "" -#: ../lib/plugin/WikiBlog.php:183 -msgid "New comment." +#: ../lib/plugin/_WikiTranslation.php:92 +#, fuzzy +msgid "RedirectToPlugin" +msgstr "Inserire dalla %s" + +#: ../lib/plugin/_WikiTranslation.php:93 +msgid "ReleaseNotes" msgstr "" -#: ../lib/plugin/WikiBlog.php:257 -#, c-format -msgid "Comments on %s:" +#: ../lib/plugin/_WikiTranslation.php:94 +msgid "RichTablePlugin" msgstr "" -#: ../lib/plugin/WikiForm.php:32 -msgid "WikiForm" +#: ../lib/plugin/_WikiTranslation.php:95 +msgid "SteveWainstead" msgstr "" -#: ../lib/plugin/WikiForm.php:67 +#: ../lib/plugin/_WikiTranslation.php:96 +msgid "SystemInfoPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:97 #, fuzzy -msgid "Load File" -msgstr "archivio del testo %s" +msgid "TranscludePlugin" +msgstr "InserireLaPagina" -#: ../lib/plugin/WikiForm.php:73 -msgid "Login" +#: ../lib/plugin/_WikiTranslation.php:99 +msgid "UnfoldSubpagesPlugin" msgstr "" -#: ../lib/plugin/WikiForm.php:81 -msgid "Dump Pages" +#: ../lib/plugin/_WikiTranslation.php:100 +msgid "UpLoad" msgstr "" -#: ../lib/plugin/WikiForm.php:89 -msgid "Dump Pages as XHTML" +#: ../lib/plugin/_WikiTranslation.php:101 +msgid "WabiSabi" msgstr "" -#: ../lib/plugin/WikiForm.php:104 -#, c-format -msgid "WikiForm: %s: unknown action" +#: ../lib/plugin/_WikiTranslation.php:102 +msgid "WikiBlogPlugin" msgstr "" -#: ../lib/plugin/_BackendInfo.php:30 -#: ../themes/Portland/templates/actionbar.tmpl:21 -#: ../themes/default/templates/actionbar.tmpl:32 -msgid "DebugInfo" +#: ../lib/plugin/_WikiTranslation.php:103 +msgid "WikiPlugin" msgstr "" -#: ../lib/plugin/_BackendInfo.php:34 -#, c-format -msgid "Get debugging information for %s." +#: ../lib/plugin/_WikiTranslation.php:104 +#: ../themes/default/templates/head.tmpl:70 +msgid "WikiWikiWeb" msgstr "" -#: ../lib/plugin/_BackendInfo.php:54 -#, c-format -msgid "Querying backend directly for '%s'" +#: ../lib/plugin/_WikiTranslation.php:113 +msgid "_WikiTranslation" msgstr "" -#: ../lib/plugin/_BackendInfo.php:64 -#, c-format -msgid "No pagedata for %s" +#: ../lib/plugin/_WikiTranslation.php:117 +msgid "Show translations of various words or pages" msgstr "" -#: ../lib/plugin/_BackendInfo.php:95 -msgid "" +#: ../lib/plugin/_WikiTranslation.php:266 +#, c-format +msgid "" +"TODO: Google can only translate from english and french. Find a translation " +"service for %s to language %s" msgstr "" -#: ../lib/plugin/_BackendInfo.php:95 -msgid "" +#: ../lib/plugin/_WikiTranslation.php:270 +#, c-format +msgid "%s is empty" msgstr "" -#: ../lib/plugin/_PreferencesInfo.php:30 -#: ../themes/default/templates/userprefs.tmpl:12 -#, fuzzy -msgid "PreferencesInfo" -msgstr "Preferenze" - -#: ../lib/plugin/_PreferencesInfo.php:34 +#: ../lib/plugin/_WikiTranslation.php:360 #, c-format -msgid "Get preferences information for current user %s." +msgid "Define the translation for %s in %s" msgstr "" #: ../lib/plugin/text2png.php:46 @@ -2623,101 +3732,109 @@ msgstr "" msgid "Remove page" msgstr "Rimuovi la pagina" -#: ../lib/stdlib.php:236 ../lib/stdlib.php:255 +#: ../lib/stdlib.php:234 ../lib/stdlib.php:253 msgid "BAD URL -- remove all of <, >, \"" msgstr "" -#: ../lib/stdlib.php:316 +#: ../lib/stdlib.php:314 msgid "BAD phpwiki: URL" msgstr "" -#: ../lib/stdlib.php:354 +#: ../lib/stdlib.php:352 msgid "Lock page to enable link" msgstr "" -#: ../lib/stdlib.php:453 +#: ../lib/stdlib.php:451 #, c-format msgid "'%s': Bad page name: %s" msgstr "" -#: ../lib/stdlib.php:490 +#: ../lib/stdlib.php:488 msgid "White space converted to single space" msgstr "" -#: ../lib/stdlib.php:495 +#: ../lib/stdlib.php:493 msgid "Control characters not allowed" msgstr "" -#: ../lib/stdlib.php:504 +#: ../lib/stdlib.php:502 #, c-format msgid "Leading %s not allowed" msgstr "" -#: ../lib/stdlib.php:507 +#: ../lib/stdlib.php:505 msgid "';' and ':' in pagenames are deprecated" msgstr "" -#: ../lib/stdlib.php:511 +#: ../lib/stdlib.php:509 msgid "too long" msgstr "" -#: ../lib/stdlib.php:516 +#: ../lib/stdlib.php:514 msgid "illegal pagename" msgstr "" -#: ../lib/stdlib.php:758 +#: ../lib/stdlib.php:756 msgid "Revision Not Found" msgstr "" -#: ../lib/stdlib.php:759 +#: ../lib/stdlib.php:757 #, fuzzy, c-format msgid "I'm sorry. Version %d of %s is not in the database." msgstr "La pagina '%s' non è presente nel database" -#: ../lib/stdlib.php:762 +#: ../lib/stdlib.php:760 #, fuzzy msgid "Bad Version" msgstr "Versione" -#: ../lib/stdlib.php:898 +#: ../lib/stdlib.php:896 msgid "-???" msgstr "" -#: ../lib/stdlib.php:901 +#: ../lib/stdlib.php:899 #, fuzzy, c-format msgid "%s b" msgstr "%s byte" -#: ../lib/stdlib.php:903 +#: ../lib/stdlib.php:901 ../themes/smaller/templates/info.tmpl:29 #, c-format msgid "%s bytes" msgstr "%s byte" -#: ../lib/stdlib.php:908 +#: ../lib/stdlib.php:906 #, c-format msgid "%s k" msgstr "" -#: ../lib/stdlib.php:910 +#: ../lib/stdlib.php:908 ../themes/smaller/templates/info.tmpl:32 #, c-format msgid "%s Kb (%s bytes)" msgstr "%s Kb (%s byte)" -#: ../lib/stdlib.php:1006 +#: ../lib/stdlib.php:1004 #, c-format msgid "%s: argument index out of range" msgstr "" -#: ../lib/stdlib.php:1046 ../themes/Hawaiian/lib/random.php:20 +#: ../lib/stdlib.php:1073 ../themes/Hawaiian/lib/random.php:20 #, c-format msgid "%s is empty." msgstr "" -#: ../lib/stdlib.php:1053 +#: ../lib/stdlib.php:1080 #, c-format msgid "Unable to open directory '%s' for reading" msgstr "" +#: ../lib/upgrade.php:134 +msgid "Upgrade disabled: user != isAdmin" +msgstr "" + +#: ../lib/upgrade.php:138 +msgid "Upgrading this PhpWiki" +msgstr "" + #: ../lib/ziplib.php:209 msgid "Can't inflate data: zlib support not enabled in this PHP" msgstr "" @@ -2744,16 +3861,18 @@ msgstr "Preferenze" #: ../themes/Hawaiian/themeinfo.php:29 ../themes/MacOSX/themeinfo.php:104 #: ../themes/Portland/themeinfo.php:59 ../themes/Sidebar/themeinfo.php:32 #: ../themes/SpaceWiki/themeinfo.php:43 ../themes/default/themeinfo.php:24 +#: ../themes/smaller/themeinfo.php:26 msgid "Printer" msgstr "Stampante" #: ../themes/Hawaiian/themeinfo.php:30 ../themes/Portland/themeinfo.php:60 #: ../themes/Sidebar/themeinfo.php:33 ../themes/SpaceWiki/themeinfo.php:44 -#: ../themes/default/themeinfo.php:26 +#: ../themes/default/themeinfo.php:26 ../themes/smaller/themeinfo.php:28 msgid "Modern" msgstr "Moderno" #: ../themes/MacOSX/themeinfo.php:105 ../themes/default/themeinfo.php:25 +#: ../themes/smaller/themeinfo.php:27 msgid "Top & bottom toolbars" msgstr "" @@ -2763,12 +3882,15 @@ msgstr "ModificaIlTesto" #: ../themes/Portland/templates/actionbar.tmpl:8 #: ../themes/default/templates/actionbar.tmpl:5 +#: ../themes/smaller/templates/actionbar.tmpl:6 msgid "Edit Old Revision" msgstr "" #: ../themes/Portland/templates/actionbar.tmpl:10 #: ../themes/default/templates/actionbar.tmpl:7 #: ../themes/default/templates/head.tmpl:45 +#: ../themes/smaller/templates/actionbar.tmpl:8 +#: ../themes/smaller/templates/info.tmpl:167 #, fuzzy msgid "View Source" msgstr "Mostra il sorgente della pagina" @@ -2806,18 +3928,18 @@ msgid "Page Execution took %s seconds" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:46 -#: ../themes/default/templates/editpage.tmpl:41 +#: ../themes/default/templates/editpage.tmpl:40 msgid "Warning: You are editing an old revision." msgstr "" #: ../themes/Portland/templates/editpage.tmpl:47 -#: ../themes/default/templates/editpage.tmpl:42 +#: ../themes/default/templates/editpage.tmpl:41 #, fuzzy msgid "Saving this page will overwrite the current version." msgstr "Mostra il versione corrente" #: ../themes/Portland/templates/editpage.tmpl:62 -#: ../themes/default/templates/editpage.tmpl:89 +#: ../themes/default/templates/editpage.tmpl:95 #, c-format msgid "Author will be logged as %s." msgstr "" @@ -2834,69 +3956,63 @@ msgid "Edit Area Size" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:69 -#: ../themes/default/templates/editpage.tmpl:63 +#: ../themes/default/templates/editpage.tmpl:69 msgid "H" msgstr "A" #: ../themes/Portland/templates/editpage.tmpl:71 -#: ../themes/default/templates/editpage.tmpl:64 +#: ../themes/default/templates/editpage.tmpl:70 msgid "W" msgstr "L" #: ../themes/Portland/templates/editpage.tmpl:73 -#: ../themes/default/templates/editpage.tmpl:65 +#: ../themes/default/templates/editpage.tmpl:71 msgid "Adjust" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:75 -#: ../themes/default/templates/editpage.tmpl:78 +#: ../themes/default/templates/editpage.tmpl:84 msgid "Use old markup" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:80 -#: ../themes/default/templates/editpage.tmpl:25 +#: ../themes/default/templates/editpage.tmpl:24 msgid "Preview only! Changes not saved." msgstr "" #: ../themes/Portland/templates/editpage.tmpl:103 #: ../themes/Portland/templates/editpage.tmpl:108 -#: ../themes/default/templates/editpage.tmpl:120 -#: ../themes/default/templates/editpage.tmpl:125 +#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:131 #, c-format msgid "See %s tips for editing." msgstr "Vedere %s consigli per le modifiche." #: ../themes/Portland/templates/editpage.tmpl:103 #: ../themes/Portland/templates/editpage.tmpl:108 -#: ../themes/default/templates/editpage.tmpl:120 -#: ../themes/default/templates/editpage.tmpl:125 +#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:131 msgid "GoodStyle" msgstr "BuonStile" #: ../themes/Portland/templates/editpage.tmpl:104 -#: ../themes/default/templates/editpage.tmpl:121 +#: ../themes/default/templates/editpage.tmpl:127 #, fuzzy msgid "OldTextFormattingRules" msgstr "RegoleDiFormattazioneDelTesto" #: ../themes/Portland/templates/editpage.tmpl:104 #: ../themes/Portland/templates/editpage.tmpl:109 -#: ../themes/default/templates/editpage.tmpl:121 -#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:127 +#: ../themes/default/templates/editpage.tmpl:132 msgid "Synopsis" msgstr "Sinossi" #: ../themes/Portland/templates/editpage.tmpl:109 -#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:132 msgid "TextFormattingRules" msgstr "RegoleDiFormattazioneDelTesto" -#: ../themes/Portland/templates/navbar.tmpl:8 -#: ../themes/default/templates/head.tmpl:35 -#: ../themes/default/templates/navbar.tmpl:11 -msgid "FindPage" -msgstr "TrovaPagina" - #: ../themes/Portland/templates/viewsource.tmpl:6 #: ../themes/default/templates/viewsource.tmpl:6 msgid "This page has been locked by the administrator and cannot be edited." @@ -2914,10 +4030,14 @@ msgid "diff" msgstr "diff" #: ../themes/default/templates/actionbar.tmpl:35 +#: ../themes/smaller/templates/actionbar.tmpl:38 +#: ../themes/smaller/templates/info.tmpl:178 msgid "PurgeHtmlCache" msgstr "" #: ../themes/default/templates/actionbar.tmpl:36 +#: ../themes/smaller/templates/actionbar.tmpl:39 +#: ../themes/smaller/templates/info.tmpl:179 msgid "" "Purge HTML cache for this page. Regenerate from WikiMarkup when next " "accessed." @@ -2929,8 +4049,10 @@ msgid "Add a Comment" msgstr "Indice" #: ../themes/default/templates/blogform.tmpl:12 -#: ../themes/default/templates/editpage.tmpl:71 +#: ../themes/default/templates/editpage.tmpl:77 +#: ../themes/default/templates/forum-thread.tmpl:39 #: ../themes/default/templates/info.tmpl:72 +#: ../themes/smaller/templates/info.tmpl:78 #, fuzzy msgid "Summary:" msgstr "Commenti:" @@ -2940,28 +4062,80 @@ msgstr "Commenti:" msgid "Comment:" msgstr "Indice" +#: ../themes/default/templates/comment.tmpl:18 +#: ../themes/default/templates/wikiblog.tmpl:19 +#, fuzzy, c-format +msgid "Comment modified on %s by %s" +msgstr "ultima modifica su %s" + +#: ../themes/default/templates/comment.tmpl:28 +#, fuzzy, c-format +msgid "%s by %s" +msgstr "di %s" + #: ../themes/default/templates/dialog.tmpl:18 msgid "Dialog" msgstr "" -#: ../themes/default/templates/editpage.tmpl:29 +#: ../themes/default/templates/editpage.tmpl:28 #, c-format msgid "" "Please continue editing. (You'll find your %s at the bottom of the page.)" msgstr "" -#: ../themes/default/templates/editpage.tmpl:30 +#: ../themes/default/templates/editpage.tmpl:29 msgid "edit area" msgstr "" -#: ../themes/default/templates/editpage.tmpl:62 +#: ../themes/default/templates/editpage.tmpl:68 msgid "Edit Area Size:" msgstr "" -#: ../themes/default/templates/editpage.tmpl:77 +#: ../themes/default/templates/editpage.tmpl:83 msgid "This is a minor change." msgstr "" +#: ../themes/default/templates/forum-thread.tmpl:19 +#: ../themes/default/templates/forum-topics.tmpl:18 +msgid "New Topic" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:19 +#: ../themes/default/templates/forum-thread.tmpl:37 +msgid "Post new" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:21 +msgid "Message" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:27 +#, fuzzy, c-format +msgid "Posted: %s" +msgstr "Il sorgente della %s" + +#: ../themes/default/templates/forum-thread.tmpl:28 +#: ../themes/default/templates/forum-thread.tmpl:43 +msgid "Reply" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:21 +msgid "Topics" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:22 +msgid "Replies" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:24 +msgid "Views" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:25 +#, fuzzy +msgid "Last Post" +msgstr "Ultima" + #: ../themes/default/templates/head.tmpl:31 msgid "HowToUseWiki" msgstr "" @@ -2970,10 +4144,6 @@ msgstr "" msgid "SandBox" msgstr "" -#: ../themes/default/templates/head.tmpl:70 -msgid "WikiWikiWeb" -msgstr "" - #: ../themes/default/templates/homepage.tmpl:10 #, c-format msgid "You can personalize various settings in %s." @@ -2994,101 +4164,122 @@ msgid "CategoryHomepage" msgstr "Pagina corrente:" #: ../themes/default/templates/info.tmpl:31 +#: ../themes/smaller/templates/info.tmpl:37 #, fuzzy msgid "1 word" msgstr "%s giorni" #: ../themes/default/templates/info.tmpl:33 +#: ../themes/smaller/templates/info.tmpl:39 #, fuzzy, c-format msgid "%s words" msgstr "%s giorni" #: ../themes/default/templates/info.tmpl:37 +#: ../themes/smaller/templates/info.tmpl:43 #, c-format msgid "Version %s" msgstr "Versione %s" #: ../themes/default/templates/info.tmpl:38 +#: ../themes/smaller/templates/info.tmpl:44 msgid "Original (1.2 or 1.0)" msgstr "" #: ../themes/default/templates/info.tmpl:65 +#: ../themes/smaller/templates/info.tmpl:71 msgid "Last Modified:" msgstr "Ultima Modifica:" #: ../themes/default/templates/info.tmpl:66 +#: ../themes/smaller/templates/info.tmpl:72 #, fuzzy msgid "Last Author:" msgstr "Autore:" #: ../themes/default/templates/info.tmpl:67 +#: ../themes/smaller/templates/info.tmpl:73 #, fuzzy msgid "Last Summary:" msgstr "Commenti:" #: ../themes/default/templates/info.tmpl:70 +#: ../themes/smaller/templates/info.tmpl:76 #, fuzzy msgid "Saved on:" msgstr "Salvata su: %s" #: ../themes/default/templates/info.tmpl:71 +#: ../themes/smaller/templates/info.tmpl:77 #, fuzzy msgid "Author:" msgstr "Autore:" #: ../themes/default/templates/info.tmpl:75 +#: ../themes/smaller/templates/info.tmpl:81 #, fuzzy, c-format msgid "Statistics about %s." msgstr "Informazioni della %s." #: ../themes/default/templates/info.tmpl:86 +#: ../themes/smaller/templates/info.tmpl:92 #, fuzzy msgid "Supplanted on:" msgstr "Salvata su: %s" #: ../themes/default/templates/info.tmpl:103 +#: ../themes/smaller/templates/info.tmpl:109 #, fuzzy msgid "Page Version:" msgstr "Versione" #: ../themes/default/templates/info.tmpl:107 +#: ../themes/smaller/templates/info.tmpl:113 msgid "Markup:" msgstr "" #: ../themes/default/templates/info.tmpl:111 +#: ../themes/smaller/templates/info.tmpl:117 #, fuzzy msgid "Size:" msgstr "Dimensione:" #: ../themes/default/templates/info.tmpl:116 +#: ../themes/smaller/templates/info.tmpl:122 msgid "Hits:" msgstr "" #: ../themes/default/templates/info.tmpl:133 +#: ../themes/smaller/templates/info.tmpl:139 #, fuzzy msgid "home page" msgstr "Errore durante il salvataggio della pagina '%s'" #: ../themes/default/templates/info.tmpl:136 +#: ../themes/smaller/templates/info.tmpl:142 #, fuzzy msgid "User page" msgstr "nuova pagina" #: ../themes/default/templates/info.tmpl:139 +#: ../themes/smaller/templates/info.tmpl:145 #, fuzzy msgid "Action page" msgstr "Errore durante il salvataggio della pagina '%s'" #: ../themes/default/templates/info.tmpl:142 +#: ../themes/smaller/templates/info.tmpl:148 #, fuzzy msgid "Blog page" msgstr "Errore durante il salvataggio della pagina '%s'" #: ../themes/default/templates/info.tmpl:148 +#: ../themes/smaller/templates/info.tmpl:154 msgid "Subpage" msgstr "" #: ../themes/default/templates/info.tmpl:153 +#: ../themes/smaller/templates/info.tmpl:159 #, fuzzy msgid "Page Type:" msgstr "Nome Della Pagina" @@ -3101,30 +4292,24 @@ msgid "" "in RecentChanges to your home page." msgstr "" -#: ../themes/default/templates/login.tmpl:39 -msgid "" -"Note: If you create your personal HomePage with same the pagename as your " -"user id, you will be able to store your UserPreferences also. Otherwise not." -msgstr "" - -#: ../themes/default/templates/login.tmpl:42 +#: ../themes/default/templates/login.tmpl:51 msgid "New users may use an empty password." msgstr "" -#: ../themes/default/templates/login.tmpl:49 +#: ../themes/default/templates/login.tmpl:58 msgid "UserId:" msgstr "" -#: ../themes/default/templates/login.tmpl:53 +#: ../themes/default/templates/login.tmpl:62 #, fuzzy msgid "Password:" msgstr "%s giorni" -#: ../themes/default/templates/navbar.tmpl:33 +#: ../themes/default/templates/navbar.tmpl:34 msgid "Today" msgstr "Oggi" -#: ../themes/default/templates/navbar.tmpl:36 +#: ../themes/default/templates/navbar.tmpl:37 msgid "Admin" msgstr "" @@ -3136,6 +4321,72 @@ msgstr "" msgid "You have not made any changes so no new version has been saved." msgstr "" +#: ../themes/default/templates/online.tmpl:8 +#: ../themes/default/templates/online.tmpl:16 +#: ../themes/default/templates/online.tmpl:58 +msgid "Who Is Online" +msgstr "" + +#: ../themes/default/templates/online.tmpl:16 +msgid "Switch to detailed list" +msgstr "" + +#: ../themes/default/templates/online.tmpl:22 +#, c-format +msgid "Our users created a total of %d pages." +msgstr "" + +#: ../themes/default/templates/online.tmpl:23 +#, c-format +msgid "We have a total of %d registered users." +msgstr "" + +#: ../themes/default/templates/online.tmpl:24 +#, c-format +msgid "The newest registered user is %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:28 +#, c-format +msgid "" +"In total there are %d user sessions online :: Unique %d Registered and %d " +"Guests" +msgstr "" + +#: ../themes/default/templates/online.tmpl:30 +#, c-format +msgid "Most users ever online was %d at %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:31 +msgid "Registered Users Online: " +msgstr "" + +#: ../themes/default/templates/online.tmpl:42 +msgid "Admin is also online." +msgstr "" + +#: ../themes/default/templates/online.tmpl:46 +#, c-format +msgid "This data is based on users active over the past %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:50 +msgid "Sorry, no dynamic DB Session support." +msgstr "" + +#: ../themes/default/templates/online.tmpl:58 +msgid "Switch to summary" +msgstr "" + +#: ../themes/default/templates/online.tmpl:62 +msgid "Registered Users" +msgstr "" + +#: ../themes/default/templates/online.tmpl:77 +msgid "Guests" +msgstr "" + #: ../themes/default/templates/redirect.tmpl:19 #: ../themes/default/templates/redirect.tmpl:40 #, fuzzy @@ -3160,16 +4411,18 @@ msgstr "La tua cura verso il dettaglio msgid "Warning!" msgstr "Avvertimento!" -#: ../themes/default/templates/signin.tmpl:18 +#: ../themes/default/templates/signin.tmpl:19 +#: ../themes/smaller/templates/signin.tmpl:33 #, c-format msgid "You are signed in as %s" msgstr "" -#: ../themes/default/templates/signin.tmpl:39 +#: ../themes/default/templates/signin.tmpl:40 +#: ../themes/smaller/templates/signin.tmpl:53 msgid "Enter your UserId to sign in" msgstr "" -#: ../themes/default/templates/signin.tmpl:54 +#: ../themes/default/templates/signin.tmpl:55 msgid "Sign in as:" msgstr "" @@ -3350,18 +4603,72 @@ msgstr "" msgid "Update Preferences" msgstr "Preferenze" -#: ../themes/default/templates/wikiblog.tmpl:19 -#, fuzzy, c-format -msgid "Comment modified on %s by %s" -msgstr "ultima modifica su %s" +#: ../themes/smaller/templates/actionbar.tmpl:31 +#, fuzzy +msgid "Info" +msgstr "Autore:" +#: ../themes/smaller/templates/info.tmpl:171 #, fuzzy -#~ msgid "Selected" -#~ msgstr "Rimossa." +msgid "Diff previous Revision" +msgstr "Precedente" + +#: ../themes/smaller/templates/info.tmpl:172 +#, fuzzy +msgid "Diff previous Author" +msgstr "Precedente" + +#, fuzzy +#~ msgid "First Name:" +#~ msgstr "Prima" + +#, fuzzy +#~ msgid "Last Name:" +#~ msgstr "Nome Della Pagina" + +#, fuzzy +#~ msgid "browse pages in this wiki" +#~ msgstr "Le %d pagine più popolari di questo wiki sono:" + +#, fuzzy +#~ msgid "diff pages in this wiki" +#~ msgstr "Le %d pagine più popolari di questo wiki sono:" + +#, fuzzy +#~ msgid "dump html pages from this wiki" +#~ msgstr "Le %d pagine più popolari di questo wiki sono:" + +#, fuzzy +#~ msgid "dump serial pages from this wiki" +#~ msgstr "Le %d pagine più popolari di questo wiki sono:" + +#, fuzzy +#~ msgid "edit pages in this wiki" +#~ msgstr "Le %d pagine più popolari di questo wiki sono:" + +#, fuzzy +#~ msgid "create pages in this wiki" +#~ msgstr "Le %d pagine più popolari di questo wiki sono:" + +#, fuzzy +#~ msgid "lock pages in this wiki" +#~ msgstr "Le %d pagine più popolari di questo wiki sono:" + +#, fuzzy +#~ msgid "remove pages from this wiki" +#~ msgstr "Le %d pagine più popolari di questo wiki sono:" + +#, fuzzy +#~ msgid "unlock pages in this wiki" +#~ msgstr "Le %d pagine più popolari di questo wiki sono:" + +#, fuzzy +#~ msgid "view the source of pages in this wiki" +#~ msgstr "Le %d pagine più popolari di questo wiki sono:" #, fuzzy -#~ msgid "Removed page '%s' succesfully." -#~ msgstr "La pagina '%s' è stata rimossa correttamente." +#~ msgid "Selected" +#~ msgstr "Rimossa." #, fuzzy #~ msgid "Included frame from %s" @@ -3449,10 +4756,6 @@ msgstr "ultima modifica su %s" #~ msgid "returning old version" #~ msgstr "Versione archiviata" -#, fuzzy -#~ msgid "Copied to [%s]" -#~ msgstr "Copia di %s" - #~ msgid "PHP %s Warnings" #~ msgstr "Avvertimenti Di PHP %s" @@ -3460,13 +4763,6 @@ msgstr "ultima modifica su %s" #~ msgid "ViewSource" #~ msgstr "Mostra il sorgente della pagina" -#, fuzzy -#~ msgid "View Wiki code for page '%s'." -#~ msgstr "Mostra il sorgente della pagina '%s'" - -#~ msgid "version %d of %s" -#~ msgstr "versione %d della %s" - #~ msgid "Click here to remove the page now." #~ msgstr "Per rimuovere la pagina clicca qua." diff --git a/locale/po/ja.po b/locale/po/ja.po index f06ded023..3047ae7e6 100644 --- a/locale/po/ja.po +++ b/locale/po/ja.po @@ -5,7 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: PhpWiki-1.3.4pre\n" -"POT-Creation-Date: 2003-06-07 08:49+0900\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-03-17 15:58+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi \n" "Language-Team: LANGUAGE \n" @@ -13,195 +14,377 @@ msgstr "" "Content-Type: text/plain; charset=euc-jp\n" "Content-Transfer-Encoding: 8bit\n" +#: ../lib/DB_Session.php:42 +#, c-format +msgid "" +"Your WikiDB DB backend '%s' cannot be used for DB_Session. Set " +"USE_DB_SESSION to false." +msgstr "" + #: ../lib/ErrorManager.php:172 #, c-format msgid "%s: error while handling error:" msgstr "" -#: ../lib/FileFinder.php:143 ../lib/loadsave.php:497 +#: ../lib/FileFinder.php:143 ../lib/loadsave.php:540 #, c-format msgid "%s: file not found" msgstr "%s: ¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó¡£" -#: ../lib/PageList.php:71 +#: ../lib/Google.php:157 +#, c-format +msgid "" +"You must first obtain a license key at %s to be able to use the Google API." +msgstr "" + +#: ../lib/Google.php:159 +msgid "It's free however." +msgstr "" + +#: ../lib/PageList.php:92 #, c-format msgid "Sort by %s" msgstr "%s¤Ç¥½¡¼¥È¤·¤Þ¤¹¡£" -#: ../lib/PageList.php:183 ../lib/plugin/WantedPages.php:121 +#: ../lib/PageList.php:126 +msgid "Click to sort" +msgstr "" + +#: ../lib/PageList.php:131 +msgid "Click to reverse sort order" +msgstr "" + +#: ../lib/PageList.php:139 +#, fuzzy, c-format +msgid "Click to sort by %s" +msgstr "%s¤Ç¥½¡¼¥È¤·¤Þ¤¹¡£" + +#: ../lib/PageList.php:212 +msgid "Click to de-/select all pages" +msgstr "" + +#: ../lib/PageList.php:267 ../lib/PageList.php:669 +#, fuzzy +msgid "Remove" +msgstr "¥Ú¡¼¥¸ºï½ü" + +#: ../lib/PageList.php:283 +msgid "This page already exists" +msgstr "" + +#: ../lib/PageList.php:297 ../lib/plugin/UnfoldSubpages.php:158 +#, c-format +msgid " ... first %d bytes" +msgstr "" + +#: ../lib/PageList.php:302 +#, c-format +msgid " ... around %s" +msgstr "" + +#: ../lib/PageList.php:325 +#, fuzzy, c-format +msgid "%s not found" +msgstr "%s: ¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó¡£" + +#: ../lib/PageList.php:394 ../lib/plugin/AuthorHistory.php:174 +#: ../lib/plugin/WantedPages.php:140 msgid "Page Name" msgstr "¥Ú¡¼¥¸Ì¾" -#: ../lib/PageList.php:236 ../lib/plugin/FullTextSearch.php:75 +#: ../lib/PageList.php:466 ../lib/plugin/FullTextSearch.php:93 msgid "" msgstr "<°ìÃפ·¤Þ¤»¤ó>" -#: ../lib/PageList.php:334 -msgid "Selected" -msgstr "ÁªÂò¤·¤Þ¤·¤¿" +#: ../lib/PageList.php:665 ../lib/PageList.php:667 +#, fuzzy +msgid "Content" +msgstr "¥³¥ó¥Æ¥ó¥Ä" + +#: ../lib/PageList.php:671 +msgid "Rename to" +msgstr "" + +#: ../lib/PageList.php:673 +#, fuzzy +msgid "Permission" +msgstr "¥Ð¡¼¥¸¥ç¥ó" + +#: ../lib/PageList.php:675 +msgid "ACL" +msgstr "" + +#: ../lib/PageList.php:677 +#, fuzzy +msgid "Select" +msgstr "ÁªÂò:" -#: ../lib/PageList.php:340 +#: ../lib/PageList.php:681 msgid "Last Modified" msgstr "ºÇ½ª¹¹¿·Æü»þ" -#: ../lib/PageList.php:342 +#: ../lib/PageList.php:683 msgid "Hits" msgstr "¥Ò¥Ã¥È" -#: ../lib/PageList.php:345 +#: ../lib/PageList.php:685 +#, fuzzy +msgid "Size" +msgstr "¥µ¥¤¥º:" + +#: ../lib/PageList.php:688 msgid "Last Summary" msgstr "ºÇ½ªÍ×Ìó" -#: ../lib/PageList.php:348 ../lib/plugin/PluginManager.php:90 +#: ../lib/PageList.php:690 ../lib/plugin/AuthorHistory.php:123 +#: ../lib/plugin/AuthorHistory.php:176 ../lib/plugin/PluginManager.php:90 msgid "Version" msgstr "¥Ð¡¼¥¸¥ç¥ó" -#: ../lib/PageList.php:352 +#: ../lib/PageList.php:693 msgid "Last Author" msgstr "ºÇ½ªÊÔ½¸¼Ô" -#: ../lib/PageList.php:354 ../themes/default/templates/editpage.tmpl:95 -#: ../themes/default/templates/info.tmpl:133 +#: ../lib/PageList.php:695 ../lib/WikiGroup.php:39 +msgid "Owner" +msgstr "" + +#: ../lib/PageList.php:697 +#, fuzzy +msgid "Group" +msgstr "¥Ú¡¼¥¸¥°¥ë¡¼¥×" + +#: ../lib/PageList.php:699 ../themes/default/templates/editpage.tmpl:101 +#: ../themes/default/templates/info.tmpl:127 +#: ../themes/smaller/templates/info.tmpl:133 msgid "Locked" msgstr "¥í¥Ã¥¯¤·¤Þ¤·¤¿" -#: ../lib/PageList.php:355 +#: ../lib/PageList.php:700 msgid "locked" msgstr "¥í¥Ã¥¯¤·¤Þ¤·¤¿" -#: ../lib/PageList.php:358 +#: ../lib/PageList.php:703 msgid "Minor Edit" msgstr "" -#: ../lib/PageList.php:358 +#: ../lib/PageList.php:703 msgid "minor" msgstr "" -#: ../lib/PageList.php:360 +#: ../lib/PageList.php:705 msgid "Markup" msgstr "¥Þ¡¼¥¯¥¢¥Ã¥×" -#: ../lib/PageList.php:405 ../lib/plugin/WantedPages.php:148 +#: ../lib/PageList.php:756 ../lib/plugin/WantedPages.php:167 #, c-format msgid "Columns: %s." msgstr "" -#: ../lib/PageType.php:194 +#: ../lib/PagePerm.php:260 +#, fuzzy +msgid "List this page and all subpages" +msgstr "Á´¥Ú¡¼¥¸°ìÍ÷" + +#: ../lib/PagePerm.php:261 +msgid "View this page and all subpages" +msgstr "" + +#: ../lib/PagePerm.php:262 +msgid "Edit this page and all subpages" +msgstr "" + +#: ../lib/PagePerm.php:263 +#, fuzzy +msgid "Create a new (sub)page" +msgstr "¥Û¡¼¥à¥Ú¡¼¥¸ºîÀ®:" + +#: ../lib/PagePerm.php:264 +msgid "Download the page contents" +msgstr "" + +#: ../lib/PagePerm.php:265 +msgid "Change page attributes" +msgstr "" + +#: ../lib/PagePerm.php:266 +#, fuzzy +msgid "Remove this page" +msgstr "¥Ú¡¼¥¸ºï½ü" + +#: ../lib/PagePerm.php:295 +#, c-format +msgid "Unsupported ACL access type %s ignored." +msgstr "" + +#: ../lib/PageType.php:125 ../lib/loadsave.php:409 +#: ../themes/default/templates/info.tmpl:144 +#: ../themes/default/templates/info.tmpl:145 +#: ../themes/smaller/templates/info.tmpl:150 +#: ../themes/smaller/templates/info.tmpl:151 +msgid "InterWikiMap" +msgstr "" + +#: ../lib/PageType.php:211 ../lib/loadsave.php:552 +#, c-format +msgid "Loading InterWikiMap from external file %s." +msgstr "" + +#: ../lib/PageType.php:309 msgid "Moniker" msgstr "" -#: ../lib/PageType.php:195 +#: ../lib/PageType.php:310 msgid "InterWiki Address" msgstr "InterWiki¥¢¥É¥ì¥¹" -#: ../lib/RSSWriter091.php:116 ../lib/loadsave.php:819 +#: ../lib/RSSWriter091.php:116 ../lib/loadsave.php:872 #: ../lib/plugin/RecentChanges.php:250 ../lib/plugin/RecentChanges.php:263 -#: ../lib/plugin/RecentChanges.php:363 ../lib/plugin/RecentChanges.php:434 -#: ../lib/plugin/RecentChanges.php:525 ../lib/plugin/RecentChanges.php:601 +#: ../lib/plugin/RecentChanges.php:365 ../lib/plugin/RecentChanges.php:441 +#: ../lib/plugin/RecentChanges.php:535 ../lib/plugin/RecentChanges.php:611 #: ../themes/Portland/templates/navbar.tmpl:28 #: ../themes/default/templates/navbar.tmpl:10 +#: ../themes/smaller/templates/navbar.tmpl:10 msgid "RecentChanges" msgstr "Êѹ¹ÍúÎò" -#: ../lib/Template.php:152 +#: ../lib/Request.php:57 ../lib/main.php:756 ../lib/main.php:769 +#, c-format +msgid "%s is not writable." +msgstr "" + +#: ../lib/Request.php:57 +msgid "The PhpWiki access log file" +msgstr "" + +#: ../lib/Request.php:59 ../lib/main.php:759 +#, c-format +msgid "Please ensure that %s is writable, or redefine %s in index.php." +msgstr "" + +#: ../lib/Request.php:60 +#, fuzzy, c-format +msgid "the file '%s'" +msgstr "MIME¥Õ¥¡¥¤¥ë %s" + +#: ../lib/Template.php:153 #, c-format msgid "%4d %s\n" msgstr "" -#: ../lib/Theme.php:344 +#: ../lib/Theme.php:368 msgid "Never edited." msgstr "" -#: ../lib/Theme.php:351 +#: ../lib/Theme.php:375 #, c-format msgid "%s at %s" msgstr "" -#: ../lib/Theme.php:355 +#: ../lib/Theme.php:379 #, c-format msgid "Version %s, saved %s." msgstr "" -#: ../lib/Theme.php:357 +#: ../lib/Theme.php:381 #, c-format msgid "Last edited %s." msgstr "ºÇ½ªÊÔ½¸Æü»þ" -#: ../lib/Theme.php:366 +#: ../lib/Theme.php:390 #, c-format msgid "Version %s, saved on %s." msgstr "" -#: ../lib/Theme.php:368 +#: ../lib/Theme.php:392 #, c-format msgid "Last edited on %s." msgstr "ºÇ½ªÊÔ½¸Æü»þ: %s" -#: ../lib/Theme.php:380 +#: ../lib/Theme.php:408 msgid "today" msgstr "º£Æü" -#: ../lib/Theme.php:386 +#: ../lib/Theme.php:414 msgid "yesterday" msgstr "ºòÆü" -#: ../lib/Theme.php:480 ../themes/MacOSX/themeinfo.php:72 +#: ../lib/Theme.php:518 +#, c-format +msgid "Empty link to: %s" +msgstr "" + +#: ../lib/Theme.php:530 ../themes/MacOSX/themeinfo.php:71 #, c-format msgid "Create: %s" msgstr "ºîÀ®: %s" -#: ../lib/Theme.php:514 +#: ../lib/Theme.php:566 #, c-format msgid "'%s': Bad page name" msgstr "'%s': ¥Ú¡¼¥¸Ì¾¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó" -#: ../lib/Theme.php:777 ../themes/default/templates/actionbar.tmpl:5 +#: ../lib/Theme.php:837 ../themes/default/templates/actionbar.tmpl:5 +#: ../themes/smaller/templates/actionbar.tmpl:6 msgid "Edit" msgstr "ÊÔ½¸" -#: ../lib/Theme.php:778 +#: ../lib/Theme.php:838 ../lib/plugin/Diff.php:36 msgid "Diff" msgstr "º¹Ê¬" -#: ../lib/Theme.php:779 ../themes/default/templates/signin.tmpl:5 -#: ../themes/default/templates/signin.tmpl:29 +#: ../lib/Theme.php:839 ../themes/default/templates/signin.tmpl:16 +#: ../themes/default/templates/signin.tmpl:32 +#: ../themes/smaller/templates/signin.tmpl:21 +#: ../themes/smaller/templates/signin.tmpl:44 msgid "Sign Out" msgstr "¥µ¥¤¥ó¥µ¥¦¥È" -#: ../lib/Theme.php:780 ../lib/WikiUser.php:182 -#: ../themes/default/templates/login.tmpl:44 -#: ../themes/default/templates/signin.tmpl:55 +#: ../lib/Theme.php:840 ../lib/WikiUser.php:204 ../lib/WikiUserNew.php:415 +#: ../lib/WikiUserNew.php:1161 ../themes/default/templates/login.tmpl:66 +#: ../themes/default/templates/signin.tmpl:60 +#: ../themes/smaller/templates/signin.tmpl:54 +#: ../themes/smaller/templates/signin.tmpl:57 msgid "Sign In" msgstr "¥µ¥¤¥ó¥¤¥ó" -#: ../lib/Theme.php:781 ../themes/MacOSX/themeinfo.php:126 +#: ../lib/Theme.php:841 ../themes/MacOSX/themeinfo.php:135 msgid "Lock Page" msgstr "¥Ú¡¼¥¸¥í¥Ã¥¯" -#: ../lib/Theme.php:782 ../themes/MacOSX/themeinfo.php:127 +#: ../lib/Theme.php:842 ../themes/MacOSX/themeinfo.php:136 msgid "Unlock Page" msgstr "¥Ú¡¼¥¸¥í¥Ã¥¯²ò½ü" -#: ../lib/Theme.php:783 +#: ../lib/Theme.php:843 msgid "Remove Page" msgstr "¥Ú¡¼¥¸ºï½ü" -#: ../lib/WikiDB.php:642 +#: ../lib/WikiDB.php:405 +#, fuzzy, c-format +msgid "renamed from %s" +msgstr "%s ¤«¤éÆɹþ¤Þ¤ì¤Þ¤·¤¿¡£" + +#: ../lib/WikiDB.php:410 +msgid "WikiDB::renamePage() not yet implemented for this backend" +msgstr "" + +#: ../lib/WikiDB.php:698 #, c-format msgid "%s: Date of new revision is %s" msgstr "" -#: ../lib/WikiDB.php:705 +#: ../lib/WikiDB.php:761 #, c-format msgid "Optimizing %s" msgstr "%s ¤òºÇŬ²½Ãæ¤Ç¤¹" -#: ../lib/WikiDB.php:1147 +#: ../lib/WikiDB.php:1205 ../themes/default/templates/homepage.tmpl:7 #, c-format msgid "Describe %s here." msgstr "¤³¤³¤Ë%s¤òµ­½Ò¤·¤Þ¤¹¡£" -#: ../lib/WikiDB.php:1182 +#: ../lib/WikiDB.php:1240 #, c-format msgid "Acck! Revision %s of %s seems to have been deleted!" msgstr "" @@ -223,172 +406,322 @@ msgid "" "DB file to a permanent location or risk losing all the pages!" msgstr "" -#: ../lib/WikiPlugin.php:111 +#: ../lib/WikiGroup.php:29 ../lib/WikiGroup.php:122 +msgid "No or unsupported GROUP_METHOD defined" +msgstr "" + +#: ../lib/WikiGroup.php:32 +msgid "Every" +msgstr "" + +#: ../lib/WikiGroup.php:33 +msgid "Anonymous Users" +msgstr "" + +#: ../lib/WikiGroup.php:34 +msgid "Bogo Users" +msgstr "" + +#: ../lib/WikiGroup.php:35 +#, fuzzy +msgid "HasHomePage" +msgstr "¥Û¡¼¥à¥Ú¡¼¥¸" + +#: ../lib/WikiGroup.php:36 +msgid "Signed Users" +msgstr "" + +#: ../lib/WikiGroup.php:37 +msgid "Authenticated Users" +msgstr "" + +#: ../lib/WikiGroup.php:38 +msgid "Administrators" +msgstr "" + +#: ../lib/WikiGroup.php:40 +msgid "Creator" +msgstr "" + +#: ../lib/WikiGroup.php:164 +#, c-format +msgid "Undefined method %s for special group %s" +msgstr "" + +#: ../lib/WikiGroup.php:169 ../lib/WikiGroup.php:184 ../lib/WikiGroup.php:289 +#: ../lib/WikiGroup.php:294 ../lib/WikiGroup.php:310 ../lib/WikiGroup.php:326 +#, c-format +msgid "Method '%s' not implemented in this GROUP_METHOD %s" +msgstr "" + +#: ../lib/WikiGroup.php:454 +#, c-format +msgid "Group %s does not exist" +msgstr "" + +#: ../lib/WikiGroup.php:486 +#, fuzzy +msgid "CategoryGroup" +msgstr "¥Û¡¼¥à¥Ú¡¼¥¸ºîÀ®:" + +#: ../lib/WikiGroup.php:561 +msgid "No or not enough GROUP_DB SQL statements defined" +msgstr "" + +#: ../lib/WikiGroup.php:767 +msgid "AUTH_GROUP_FILE not defined" +msgstr "" + +#: ../lib/WikiGroup.php:771 +#, c-format +msgid "Cannot open AUTH_GROUP_FILE %s" +msgstr "" + +#: ../lib/WikiGroup.php:878 +msgid "LDAP_AUTH_HOST not defined" +msgstr "" + +#: ../lib/WikiGroup.php:884 +msgid "No LDAP in this PHP version" +msgstr "" + +#: ../lib/WikiGroup.php:963 ../lib/WikiUserNew.php:1679 +#, c-format +msgid "Unable to connect to LDAP server %s" +msgstr "" + +#: ../lib/WikiPlugin.php:88 +msgid "n/a" +msgstr "" + +#: ../lib/WikiPlugin.php:118 ../lib/plugin/WikiPoll.php:114 #, c-format msgid "argument '%s' not declared by plugin" msgstr "" -#: ../lib/WikiPlugin.php:175 +#: ../lib/WikiPlugin.php:189 #, c-format msgid "trailing cruft in plugin args: '%s'" msgstr "" -#: ../lib/WikiPlugin.php:284 +#: ../lib/WikiPlugin.php:303 #, c-format msgid "Plugin %s failed." msgstr "¥×¥é¥°¥¤¥ó %s ¤¬¼ºÇÔ¤·¤Þ¤·¤¿¡£" -#: ../lib/WikiPlugin.php:290 +#: ../lib/WikiPlugin.php:309 #, c-format msgid "Plugin %s disabled." msgstr "¥×¥é¥°¥¤¥ó %s ¤Ï̵¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£" -#: ../lib/WikiPlugin.php:376 +#: ../lib/WikiPlugin.php:400 #, c-format msgid "Include of '%s' failed" msgstr "%s ¤Î¥¤¥ó¥¯¥ë¡¼¥É¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£" -#: ../lib/WikiPluginCached.php:572 +#: ../lib/WikiPluginCached.php:575 #, c-format msgid "" "There is no image creation data available to id '%s'. Please reload " "referring page." msgstr "" -#: ../lib/WikiUser.php:155 +#: ../lib/WikiUser.php:177 ../lib/WikiUserNew.php:482 msgid "Invalid password or userid." msgstr "¥æ¡¼¥¶¡¼ID¤«¥Ñ¥¹¥ï¡¼¥É¤¬Ìµ¸ú¤Ç¤¹¡£" -#: ../lib/WikiUser.php:157 +#: ../lib/WikiUser.php:179 ../lib/WikiUserNew.php:484 msgid "Insufficient permissions." msgstr "" -#: ../lib/WikiUser.php:208 +#: ../lib/WikiUser.php:232 msgid "" "You forgot to set ENCRYPTED_PASSWD to true. Please update your /index.php" msgstr "" -#: ../lib/WikiUser.php:424 +#: ../lib/WikiUser.php:351 +msgid "" +"Your home page has not been created yet so your preferences cannot not be " +"saved." +msgstr "" + +#: ../lib/WikiUser.php:368 +msgid "Your home page is locked so your preferences cannot not be saved." +msgstr "" + +#: ../lib/WikiUser.php:369 +msgid "Please contact your PhpWiki administrator for assistance." +msgstr "" + +#: ../lib/WikiUser.php:475 #, c-format msgid "" "Old UserPage %s without stored password updated with empty password. Set a " "password in your UserPreferences." msgstr "" -#: ../lib/XmlElement.php:401 ../lib/stdlib.php:967 +#: ../lib/WikiUserNew.php:514 +msgid "Format of UserPreferences cookie not recognised." +msgstr "" + +#: ../lib/WikiUserNew.php:515 +msgid "Default preferences will be used." +msgstr "" + +#: ../lib/WikiUserNew.php:922 +msgid "" +"The length of the stored password is shorter than the system policy allows. " +"Sorry, you cannot login.\n" +" You have to ask the System Administrator to reset your password." +msgstr "" + +#: ../lib/WikiUserNew.php:935 +msgid "The crypt function is not available in this version of PHP." +msgstr "" + +#: ../lib/WikiUserNew.php:936 +msgid "" +"Please set ENCRYPTED_PASSWD to false in index.php and probably change " +"ADMIN_PASSWD." +msgstr "" + +#: ../lib/WikiUserNew.php:949 +msgid "Please set ENCRYPTED_PASSWD to true in index.php." +msgstr "" + +#: ../lib/WikiUserNew.php:1073 +#, c-format +msgid "" +"\n" +"You stored an empty password in your %s page.\n" +msgstr "" + +#: ../lib/WikiUserNew.php:1074 +msgid "Your access permissions are only for a BogoUser.\n" +msgstr "" + +#: ../lib/WikiUserNew.php:1075 +msgid "Please set your password in UserPreferences." +msgstr "" + +#: ../lib/WikiUserNew.php:1717 +msgid "Unable to connect to LDAP server " +msgstr "" + +#: ../lib/WikiUserNew.php:1747 +msgid "Unable to connect to IMAP server " +msgstr "" + +#: ../lib/XmlElement.php:417 ../lib/stdlib.php:995 #, c-format msgid "Can't mix '%s' with '%s' type format strings" msgstr "" -#: ../lib/config.php:146 +#: ../lib/config.php:125 #, c-format msgid "Can't set locale: '%s'" msgstr "" -#: ../lib/config.php:378 +#: ../lib/config.php:387 msgid "An unnamed PhpWiki" msgstr "" -#: ../lib/config.php:384 ../lib/imagecache.php:55 -#: ../themes/default/templates/userprefs.tmpl:109 +#: ../lib/config.php:390 ../lib/imagecache.php:57 +#: ../themes/default/templates/userprefs.tmpl:113 msgid "HomePage" msgstr "¥Û¡¼¥à¥Ú¡¼¥¸" -#: ../lib/config.php:399 +#: ../lib/config.php:404 #, c-format msgid "Encrypted passwords cannot be used: %s." msgstr "" -#: ../lib/config.php:405 +#: ../lib/config.php:410 msgid "The admin password cannot be empty. Please update your /index.php" msgstr "" -#: ../lib/config.php:409 -#, c-format -msgid "You can use %s only with %s" -msgstr "" - -#: ../lib/config.php:415 +#: ../lib/config.php:414 msgid "" "Empty db_session_table. Turn USE_DB_SESSION off or define the table name." msgstr "" -#: ../lib/diff.php:254 +#: ../lib/diff.php:253 ../lib/plugin/Diff.php:72 #, c-format msgid "version %s" msgstr "¥Ð¡¼¥¸¥ç¥ó %s" -#: ../lib/diff.php:257 +#: ../lib/diff.php:256 ../lib/plugin/Diff.php:75 #, c-format msgid "by %s" msgstr "" -#: ../lib/diff.php:259 +#: ../lib/diff.php:258 ../lib/plugin/Diff.php:77 msgid "None" msgstr "¤Ê¤·" -#: ../lib/diff.php:281 ../lib/plugin/PageHistory.php:312 -#: ../lib/plugin/PageInfo.php:59 +#: ../lib/diff.php:280 ../lib/plugin/Diff.php:94 +#: ../lib/plugin/PageHistory.php:312 ../lib/plugin/PageInfo.php:59 #, c-format msgid "I'm sorry, there is no such page as %s." msgstr "" -#: ../lib/diff.php:284 ../lib/diff.php:385 +#: ../lib/diff.php:283 ../lib/diff.php:384 #, c-format msgid "Diff: %s" msgstr "º¹Ê¬: %s" -#: ../lib/diff.php:291 ../lib/diff.php:301 +#: ../lib/diff.php:290 ../lib/diff.php:300 ../lib/plugin/Diff.php:102 +#: ../lib/plugin/Diff.php:112 #, c-format msgid "version %d" msgstr "¥Ð¡¼¥¸¥ç¥ó %d" -#: ../lib/diff.php:295 +#: ../lib/diff.php:294 ../lib/plugin/Diff.php:106 msgid "current version" msgstr "¸½ºß¤Î¥Ð¡¼¥¸¥ç¥ó" -#: ../lib/diff.php:312 +#: ../lib/diff.php:311 ../lib/plugin/Diff.php:123 msgid "revision by previous author" msgstr "" -#: ../lib/diff.php:318 +#: ../lib/diff.php:317 ../lib/plugin/Diff.php:129 msgid "previous revision" msgstr "Á°¤Î¥ê¥Ó¥¸¥ç¥ó" -#: ../lib/diff.php:328 +#: ../lib/diff.php:327 ../lib/plugin/Diff.php:139 msgid "predecessor to the previous major change" msgstr "" -#: ../lib/diff.php:338 +#: ../lib/diff.php:337 ../lib/plugin/Diff.php:149 #, c-format msgid "Differences between %s and %s of %s." msgstr "" -#: ../lib/diff.php:341 +#: ../lib/diff.php:340 ../lib/plugin/Diff.php:152 msgid "Other diffs:" msgstr "" -#: ../lib/diff.php:342 +#: ../lib/diff.php:341 ../lib/plugin/Diff.php:153 msgid "Previous Major Revision" msgstr "" -#: ../lib/diff.php:343 +#: ../lib/diff.php:342 ../lib/plugin/Diff.php:154 msgid "Previous Revision" msgstr "Á°¤Î¥ê¥Ó¥¸¥ç¥ó" -#: ../lib/diff.php:344 +#: ../lib/diff.php:343 ../lib/plugin/Diff.php:155 msgid "Previous Author" msgstr "Á°¤ÎÊÔ½¸¼Ô" -#: ../lib/diff.php:361 +#: ../lib/diff.php:360 ../lib/plugin/Diff.php:172 msgid "Newer page:" msgstr "" -#: ../lib/diff.php:363 +#: ../lib/diff.php:362 ../lib/plugin/Diff.php:174 msgid "Older page:" msgstr "" -#: ../lib/diff.php:371 +#: ../lib/diff.php:370 ../lib/plugin/Diff.php:182 msgid "Versions are identical" msgstr "" @@ -397,14 +730,16 @@ msgstr "" #: ../lib/display.php:54 ../lib/plugin/PageGroup.php:91 #: ../lib/plugin/PageGroup.php:156 ../lib/plugin/PageGroup.php:167 #: ../lib/plugin/PageGroup.php:183 ../lib/plugin/PageGroup.php:190 -#: ../lib/plugin/PageHistory.php:216 ../lib/plugin/UnfoldSubpages.php:164 -#: ../themes/default/templates/head.tmpl:46 +#: ../lib/plugin/PageHistory.php:216 ../lib/plugin/UnfoldSubpages.php:165 +#: ../themes/default/templates/head.tmpl:45 #, c-format msgid "%s: %s" msgstr "" #: ../lib/display.php:104 ../lib/display.php:111 -#: ../lib/plugin/BackLinks.php:31 ../themes/default/templates/navbar.tmpl:22 +#: ../lib/plugin/BackLinks.php:31 ../lib/plugin/_WikiTranslation.php:50 +#: ../themes/default/templates/navbar.tmpl:23 +#: ../themes/smaller/templates/navbar.tmpl:19 msgid "BackLinks" msgstr "" @@ -418,58 +753,58 @@ msgstr "" msgid "(Redirected from %s)" msgstr "" -#: ../lib/editpage.php:77 ../lib/editpage.php:261 +#: ../lib/editpage.php:90 ../lib/editpage.php:360 msgid "Your version" msgstr "" -#: ../lib/editpage.php:77 ../lib/editpage.php:262 +#: ../lib/editpage.php:90 ../lib/editpage.php:361 msgid "Other version" msgstr "" -#: ../lib/editpage.php:94 +#: ../lib/editpage.php:176 #, c-format msgid "Edit: %s" msgstr "ÊÔ½¸: %s" -#: ../lib/editpage.php:124 +#: ../lib/editpage.php:210 #, c-format msgid "View Source: %s" msgstr "¥½¡¼¥¹¤ò¸«¤ë: %s" -#: ../lib/editpage.php:138 +#: ../lib/editpage.php:224 msgid "Page now locked." msgstr "¥Ú¡¼¥¸¤Ï¥í¥Ã¥¯Ãæ¤Ç¤¹¡£" -#: ../lib/editpage.php:138 +#: ../lib/editpage.php:224 msgid "Page now unlocked." msgstr "¥Ú¡¼¥¸¤Ï¥í¥Ã¥¯²ò½üÃæ¤Ç¤¹¡£" -#: ../lib/editpage.php:211 +#: ../lib/editpage.php:298 #, c-format msgid "Saved: %s" msgstr "Êݸ¤·¤Þ¤·¤¿: 5s" -#: ../lib/editpage.php:244 ../themes/MacOSX/themeinfo.php:128 +#: ../lib/editpage.php:343 ../themes/MacOSX/themeinfo.php:137 msgid "Page Locked" msgstr "¥Ú¡¼¥¸¤ò¥í¥Ã¥¯¤·¤Þ¤·¤¿¡£" -#: ../lib/editpage.php:245 +#: ../lib/editpage.php:344 msgid "" "This page has been locked by the administrator so your changes can not be " "saved." msgstr "" -#: ../lib/editpage.php:246 +#: ../lib/editpage.php:345 msgid "" "(Copy your changes to the clipboard. You can try editing a different page or " "save your text in a text editor.)" msgstr "" -#: ../lib/editpage.php:247 +#: ../lib/editpage.php:346 msgid "Sorry for the inconvenience." msgstr "" -#: ../lib/editpage.php:260 ../lib/editpage.php:503 +#: ../lib/editpage.php:359 ../lib/editpage.php:612 #, c-format msgid "" "Some of the changes could not automatically be combined. Please look for " @@ -477,51 +812,40 @@ msgid "" "those sections by hand before you click Save." msgstr "" -#: ../lib/editpage.php:264 ../lib/editpage.php:506 +#: ../lib/editpage.php:363 ../lib/editpage.php:615 msgid "Please check it through before saving." msgstr "" -#: ../lib/editpage.php:275 +#: ../lib/editpage.php:374 msgid "Conflicting Edits!" msgstr "" -#: ../lib/editpage.php:276 +#: ../lib/editpage.php:375 msgid "" "In the time since you started editing this page, another user has saved a " "new version of it." msgstr "" -#: ../lib/editpage.php:277 +#: ../lib/editpage.php:376 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." msgstr "" -#: ../lib/editpage.php:339 +#: ../lib/editpage.php:447 msgid "Preview" msgstr "¥×¥ì¥Ó¥å¡¼¤¹¤ë" -#: ../lib/editpage.php:343 +#: ../lib/editpage.php:451 msgid "Save" msgstr "Êݸ¤¹¤ë" -#: ../lib/editpage.php:478 +#: ../lib/editpage.php:587 #, c-format msgid "Merge and Edit: %s" msgstr "" -#: ../lib/interwiki.php:7 ../lib/loadsave.php:373 -#: ../themes/default/templates/info.tmpl:150 -#: ../themes/default/templates/info.tmpl:151 -msgid "InterWikiMap" -msgstr "" - -#: ../lib/interwiki.php:90 ../lib/loadsave.php:509 -#, c-format -msgid "Loading InterWikiMap from external file %s." -msgstr "" - #: ../lib/loadsave.php:42 msgid "Complete." msgstr "´°Î»¤·¤Þ¤·¤¿¡£" @@ -531,369 +855,511 @@ msgstr " msgid "Return to %s" msgstr "%s ¤ËÌá¤ë" -#: ../lib/loadsave.php:174 ../lib/loadsave.php:232 +#: ../lib/loadsave.php:129 +msgid "FullDump" +msgstr "" + +#: ../lib/loadsave.php:133 +msgid "LatestSnapshot" +msgstr "" + +#: ../lib/loadsave.php:175 ../lib/loadsave.php:234 msgid "You must specify a directory to dump to" msgstr "" -#: ../lib/loadsave.php:179 ../lib/loadsave.php:237 +#: ../lib/loadsave.php:180 ../lib/loadsave.php:239 #, c-format msgid "Cannot create directory '%s'" msgstr "¥Ç¥£¥ì¥¯¥È¥ê '%s' ¤òºîÀ®½ÐÍè¤Þ¤»¤ó¡£" -#: ../lib/loadsave.php:181 ../lib/loadsave.php:239 +#: ../lib/loadsave.php:182 ../lib/loadsave.php:241 #, c-format msgid "Created directory '%s' for the page dump..." msgstr "" -#: ../lib/loadsave.php:184 ../lib/loadsave.php:242 +#: ../lib/loadsave.php:185 ../lib/loadsave.php:244 #, c-format msgid "Using directory '%s'" msgstr "¥Ç¥£¥ì¥¯¥È¥ê '%s' ¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤¹¡£" -#: ../lib/loadsave.php:187 ../lib/loadsave.php:245 +#: ../lib/loadsave.php:188 ../lib/loadsave.php:247 msgid "Dumping Pages" msgstr "" -#: ../lib/loadsave.php:200 ../lib/loadsave.php:263 +#: ../lib/loadsave.php:202 ../lib/loadsave.php:269 #, c-format msgid "saved as %s" msgstr "%s ¤òÊݸ¤·¤Þ¤·¤¿¡£" -#: ../lib/loadsave.php:210 ../lib/loadsave.php:278 +#: ../lib/loadsave.php:212 ../lib/loadsave.php:282 #: ../lib/plugin/text2png.php:183 #, c-format msgid "couldn't open file '%s' for writing" msgstr "" -#: ../lib/loadsave.php:216 ../lib/loadsave.php:284 +#: ../lib/loadsave.php:218 ../lib/loadsave.php:288 #, c-format msgid "%s bytes written" msgstr "%s ¥Ð¥¤¥È½ñ¤­¹þ¤ß¤Þ¤·¤¿¡£" -#: ../lib/loadsave.php:363 +#: ../lib/loadsave.php:302 ../lib/loadsave.php:316 +#, c-format +msgid "... copied to %s" +msgstr "" + +#: ../lib/loadsave.php:306 ../lib/loadsave.php:320 +#, fuzzy +msgid "... not found" +msgstr "%s: ¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó¡£" + +#: ../lib/loadsave.php:399 msgid "Empty pagename!" msgstr "¥Ú¡¼¥¸Ì¾¤¬Ì¤»ØÄê¤Ç¤¹!" -#: ../lib/loadsave.php:419 +#: ../lib/loadsave.php:455 #, c-format msgid "from %s" msgstr "%s ¤«¤é" -#: ../lib/loadsave.php:424 +#: ../lib/loadsave.php:460 msgid "new page" msgstr "¿·µ¬¥Ú¡¼¥¸" -#: ../lib/loadsave.php:432 +#: ../lib/loadsave.php:468 msgid "has edit conflicts - overwriting anyway" msgstr "" -#: ../lib/loadsave.php:435 ../lib/loadsave.php:787 +#: ../lib/loadsave.php:471 ../lib/loadsave.php:837 ../lib/loadsave.php:840 msgid "The PhpWiki programming team" msgstr "" -#: ../lib/loadsave.php:440 +#: ../lib/loadsave.php:476 msgid "has edit conflicts - skipped" msgstr "" -#: ../lib/loadsave.php:448 +#: ../lib/loadsave.php:484 #, c-format msgid "is identical to current version %d - skipped" msgstr "" -#: ../lib/loadsave.php:458 +#: ../lib/loadsave.php:494 #, c-format msgid "- saved to database as version %d" msgstr "" -#: ../lib/loadsave.php:464 ../lib/loadsave.php:603 +#: ../lib/loadsave.php:500 ../lib/loadsave.php:647 #, c-format msgid "MIME file %s" msgstr "MIME¥Õ¥¡¥¤¥ë %s" -#: ../lib/loadsave.php:465 ../lib/loadsave.php:608 +#: ../lib/loadsave.php:501 ../lib/loadsave.php:652 #, c-format msgid "Serialized file %s" msgstr "¥·¥ê¥¢¥é¥¤¥º¥Õ¥¡¥¤¥ë %s" -#: ../lib/loadsave.php:466 ../lib/loadsave.php:622 +#: ../lib/loadsave.php:502 ../lib/loadsave.php:666 #, c-format msgid "plain file %s" msgstr "¥×¥ì¥¤¥ó¥Õ¥¡¥¤¥ë %s" -#: ../lib/loadsave.php:469 ../lib/loadsave.php:473 +#: ../lib/loadsave.php:509 +msgid "Merge Edit" +msgstr "" + +#: ../lib/loadsave.php:510 ../lib/loadsave.php:516 +#: ../lib/plugin/WikiAdminSelect.php:170 #: ../themes/Portland/templates/navbar.tmpl:30 -#: ../themes/default/templates/navbar.tmpl:36 +#: ../themes/default/templates/head.tmpl:76 +#: ../themes/default/templates/navbar.tmpl:37 +#: ../themes/smaller/templates/navbar.tmpl:22 msgid "PhpWikiAdministration" msgstr "" -#: ../lib/loadsave.php:472 +#: ../lib/loadsave.php:515 msgid "Restore Anyway" msgstr "" -#: ../lib/loadsave.php:493 +#: ../lib/loadsave.php:536 #, c-format msgid "%s: not defined" msgstr "%s: ̤ÄêµÁ¤Ç¤·¤¿¡£" -#: ../lib/loadsave.php:502 +#: ../lib/loadsave.php:545 msgid "Default InterWiki map file not loaded." msgstr "" -#: ../lib/loadsave.php:636 ../lib/loadsave.php:648 +#: ../lib/loadsave.php:680 ../lib/loadsave.php:692 msgid "Skipping" msgstr "" -#: ../lib/loadsave.php:745 +#: ../lib/loadsave.php:791 #, c-format msgid "Unable to load: %s" msgstr "" -#: ../lib/loadsave.php:752 +#: ../lib/loadsave.php:798 #, c-format msgid "Bad file type: %s" msgstr "" -#: ../lib/loadsave.php:766 +#: ../lib/loadsave.php:812 #, c-format msgid "Loading '%s'" msgstr "'%s' ¤òÆɹþ¤ßÃæ¤Ç¤¹¡£" -#: ../lib/loadsave.php:790 +#: ../lib/loadsave.php:843 msgid "Loading up virgin wiki" msgstr "" -#: ../lib/loadsave.php:810 +#: ../lib/loadsave.php:863 msgid "No uploaded file to upload?" msgstr "" -#: ../lib/loadsave.php:814 +#: ../lib/loadsave.php:867 #, c-format msgid "Uploading %s" msgstr "%s ¤ò¥¢¥Ã¥×¥í¡¼¥ÉÃæ¤Ç¤¹¡£" -#: ../lib/main.php:243 +#: ../lib/main.php:264 #, c-format msgid "%s is disallowed on this wiki." msgstr "" -#: ../lib/main.php:247 +#: ../lib/main.php:268 #, c-format msgid "You must sign in to %s." msgstr "" -#: ../lib/main.php:249 +#: ../lib/main.php:270 #, c-format msgid "You must log in to %s." msgstr "" -#: ../lib/main.php:251 ../lib/plugin/PluginManager.php:65 +#: ../lib/main.php:272 ../lib/plugin/PluginManager.php:65 #, c-format msgid "You must be an administrator to %s." msgstr "" -#: ../lib/main.php:262 -msgid "browse pages in this wiki" -msgstr "" +#: ../lib/main.php:285 +#, fuzzy +msgid "view this page" +msgstr "¿·µ¬¥Ú¡¼¥¸" -#: ../lib/main.php:263 -msgid "diff pages in this wiki" -msgstr "" +#: ../lib/main.php:286 +#, fuzzy +msgid "diff this page" +msgstr "¥Ú¡¼¥¸¤òÊÔ½¸¤·¤Æ¤¤¤Þ¤¹¡£" -#: ../lib/main.php:264 -msgid "dump html pages from this wiki" -msgstr "" +#: ../lib/main.php:287 +#, fuzzy +msgid "dump html pages" +msgstr "HTML¥Ú¡¼¥¸¤ò½ÐÎϤ·¤Æ¤¤¤Þ¤¹¡£" -#: ../lib/main.php:265 -msgid "dump serial pages from this wiki" -msgstr "" +#: ../lib/main.php:288 +#, fuzzy +msgid "dump serial pages" +msgstr "¥·¥ê¥¢¥é¥¤¥º¥Ú¡¼¥¸¤ò½ÐÎϤ·¤Æ¤¤¤Þ¤¹¡£" -#: ../lib/main.php:266 -msgid "edit pages in this wiki" -msgstr "" +#: ../lib/main.php:289 +#, fuzzy +msgid "edit this page" +msgstr "¥Ú¡¼¥¸¤òÊÔ½¸¤·¤Æ¤¤¤Þ¤¹¡£" -#: ../lib/main.php:267 -msgid "create pages in this wiki" -msgstr "" +#: ../lib/main.php:290 +#, fuzzy +msgid "create this page" +msgstr "¥Ú¡¼¥¸¤òºîÀ®¤·¤Æ¤¤¤Þ¤¹¡£" -#: ../lib/main.php:268 +#: ../lib/main.php:291 msgid "load files into this wiki" msgstr "" -#: ../lib/main.php:269 -msgid "lock pages in this wiki" -msgstr "" +#: ../lib/main.php:292 +#, fuzzy +msgid "lock this page" +msgstr "¥Ú¡¼¥¸¤Î¥í¥Ã¥¯¤ò²ò½üÃæ¤Ç¤¹¡£" -#: ../lib/main.php:270 -msgid "remove pages from this wiki" -msgstr "" +#: ../lib/main.php:293 +#, fuzzy +msgid "remove this page" +msgstr "¥Ú¡¼¥¸ºï½ü" -#: ../lib/main.php:271 -msgid "unlock pages in this wiki" -msgstr "" +#: ../lib/main.php:294 +#, fuzzy +msgid "unlock this page" +msgstr "¥Ú¡¼¥¸¤Î¥í¥Ã¥¯¤ò²ò½üÃæ¤Ç¤¹¡£" -#: ../lib/main.php:272 -msgid "upload a zip dump to this wiki" +#: ../lib/main.php:295 +msgid "upload a zip dump" msgstr "" -#: ../lib/main.php:273 +#: ../lib/main.php:296 msgid "verify the current action" msgstr "" -#: ../lib/main.php:274 -msgid "view the source of pages in this wiki" +#: ../lib/main.php:297 +msgid "view the source of this page" msgstr "" -#: ../lib/main.php:275 +#: ../lib/main.php:298 msgid "access this wiki via XML-RPC" msgstr "" -#: ../lib/main.php:276 +#: ../lib/main.php:299 msgid "download a zip dump from this wiki" msgstr "" -#: ../lib/main.php:277 +#: ../lib/main.php:300 msgid "download an html zip dump from this wiki" msgstr "" -#: ../lib/main.php:289 +#: ../lib/main.php:312 msgid "Browsing pages" msgstr "¥Ú¡¼¥¸¤ò±ÜÍ÷Ãæ¤Ç¤¹¡£" -#: ../lib/main.php:290 +#: ../lib/main.php:313 msgid "Diffing pages" msgstr "¥Ú¡¼¥¸¤Îº¹Ê¬¤ò½ÐÎϤ·¤Æ¤¤¤Þ¤¹¡£" -#: ../lib/main.php:291 +#: ../lib/main.php:314 msgid "Dumping html pages" msgstr "HTML¥Ú¡¼¥¸¤ò½ÐÎϤ·¤Æ¤¤¤Þ¤¹¡£" -#: ../lib/main.php:292 +#: ../lib/main.php:315 msgid "Dumping serial pages" msgstr "¥·¥ê¥¢¥é¥¤¥º¥Ú¡¼¥¸¤ò½ÐÎϤ·¤Æ¤¤¤Þ¤¹¡£" -#: ../lib/main.php:293 +#: ../lib/main.php:316 msgid "Editing pages" msgstr "¥Ú¡¼¥¸¤òÊÔ½¸¤·¤Æ¤¤¤Þ¤¹¡£" -#: ../lib/main.php:294 +#: ../lib/main.php:317 msgid "Creating pages" msgstr "¥Ú¡¼¥¸¤òºîÀ®¤·¤Æ¤¤¤Þ¤¹¡£" -#: ../lib/main.php:295 +#: ../lib/main.php:318 msgid "Loading files" msgstr "¥Õ¥¡¥¤¥ë¤òÆɹþ¤ßÃæ¤Ç¤¹¡£" -#: ../lib/main.php:296 +#: ../lib/main.php:319 msgid "Locking pages" msgstr "¥Ú¡¼¥¸¤ò¥í¥Ã¥¯Ãæ¤Ç¤¹¡£" -#: ../lib/main.php:297 +#: ../lib/main.php:320 msgid "Removing pages" msgstr "¥Ú¡¼¥¸¤òºï½üÃæ¤Ç¤¹¡£" -#: ../lib/main.php:298 +#: ../lib/main.php:321 msgid "Unlocking pages" msgstr "¥Ú¡¼¥¸¤Î¥í¥Ã¥¯¤ò²ò½üÃæ¤Ç¤¹¡£" -#: ../lib/main.php:299 +#: ../lib/main.php:322 msgid "Uploading zip dumps" msgstr "" -#: ../lib/main.php:300 +#: ../lib/main.php:323 msgid "Verify the current action" msgstr "" -#: ../lib/main.php:301 +#: ../lib/main.php:324 msgid "Viewing the source of pages" msgstr "" -#: ../lib/main.php:302 +#: ../lib/main.php:325 msgid "XML-RPC access" msgstr "" -#: ../lib/main.php:303 +#: ../lib/main.php:326 msgid "Downloading zip dumps" msgstr "" -#: ../lib/main.php:304 +#: ../lib/main.php:327 msgid "Downloading html zip dumps" msgstr "" -#: ../lib/main.php:407 +#: ../lib/main.php:436 #, c-format msgid "%s: Bad action" msgstr "%s: Àµ¤·¤¯¤Ê¤¤Áàºî¤Ç¤¹¡£" -#: ../lib/main.php:429 +#: ../lib/main.php:458 msgid "Fatal PhpWiki Error" msgstr "Ã×̿Ū¤ÊPhpWiki¤Î¥¨¥é¡¼¤Ç¤¹¡£" -#: ../lib/main.php:604 ../lib/plugin/FullTextSearch.php:31 +#: ../lib/main.php:641 ../lib/plugin/FullTextSearch.php:32 +#: ../lib/plugin/WantedPages.php:123 msgid "FullTextSearch" msgstr "Á´Ê¸¸¡º÷" -#: ../lib/main.php:607 ../lib/plugin/RecentChanges.php:515 +#: ../lib/main.php:644 ../lib/plugin/RecentChanges.php:525 #: ../lib/plugin/TitleSearch.php:31 msgid "TitleSearch" msgstr "¥¿¥¤¥È¥ë¸¡º÷" -#: ../lib/plugin/AllPages.php:31 -msgid "AllPages" -msgstr "Á´¥Ú¡¼¥¸" - -#: ../lib/plugin/AllPages.php:35 -msgid "List all pages in this wiki." +#: ../lib/main.php:757 +msgid "The session.save_path directory" msgstr "" -#: ../lib/plugin/AllPages.php:65 +#: ../lib/main.php:760 +#, fuzzy, c-format +msgid "the directory '%s'" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê '%s' ¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤¹¡£" + +#: ../lib/main.php:764 #, c-format -msgid "Pages in this wiki (%d total):" +msgid "Attempting to use the directory '%s' instead." msgstr "" -#: ../lib/plugin/AllPages.php:77 ../lib/plugin/AllUsers.php:89 -#, c-format -msgid "Elapsed time: %s s" +#: ../lib/main.php:771 +msgid "Users will not be able to sign in." msgstr "" -#: ../lib/plugin/AllUsers.php:35 -msgid "AllUsers" -msgstr "Á´¥æ¡¼¥¶¡¼" +#: ../lib/plugin/AddComment.php:39 +#, fuzzy +msgid "AddComment" +msgstr "¥³¥á¥ó¥ÈÄɲÃ" -#: ../lib/plugin/AllUsers.php:39 -msgid "" +#: ../lib/plugin/AddComment.php:43 +#, c-format +msgid "Show and add comments for %s" +msgstr "" + +#: ../lib/plugin/AddComment.php:106 ../lib/plugin/CreateToc.php:203 +#, fuzzy +msgid "Click to display" +msgstr "¥Ú¡¼¥¸¤Î¥í¥Ã¥¯¤ò²ò½üÃæ¤Ç¤¹¡£" + +#: ../lib/plugin/AddComment.php:108 +#, fuzzy +msgid "Comments" +msgstr "¥³¥á¥ó¥È" + +#: ../lib/plugin/AllPages.php:31 +msgid "AllPages" +msgstr "Á´¥Ú¡¼¥¸" + +#: ../lib/plugin/AllPages.php:35 +msgid "List all pages in this wiki." +msgstr "" + +#: ../lib/plugin/AllPages.php:69 +#, c-format +msgid "Pages in this wiki (%d total):" +msgstr "" + +#: ../lib/plugin/AllPages.php:81 ../lib/plugin/AllUsers.php:100 +#, c-format +msgid "Elapsed time: %s s" +msgstr "" + +#: ../lib/plugin/AllUsers.php:36 +msgid "AllUsers" +msgstr "Á´¥æ¡¼¥¶¡¼" + +#: ../lib/plugin/AllUsers.php:40 +msgid "" "With external authentication all users which stored their Preferences. " "Without external authentication all once signed-in users (from version 1.3.4 " "on)." msgstr "" -#: ../lib/plugin/AllUsers.php:73 +#: ../lib/plugin/AllUsers.php:76 #, c-format msgid "Authenticated users on this wiki (%d total):" msgstr "" +#: ../lib/plugin/AuthorHistory.php:70 +#: ../themes/smaller/templates/info.tmpl:169 +#, fuzzy +msgid "AuthorHistory" +msgstr "ÊÔ½¸¼Ô:" + +#: ../lib/plugin/AuthorHistory.php:74 +msgid "" +"List all page revisions edited by one user with diff links, or show a " +"PageHistory-like list of a single page for only one user." +msgstr "" + +#: ../lib/plugin/AuthorHistory.php:124 ../lib/plugin/AuthorHistory.php:177 +msgid "Minor" +msgstr "" + +#: ../lib/plugin/AuthorHistory.php:125 +#: ../themes/default/templates/forum-thread.tmpl:21 +#: ../themes/default/templates/forum-topics.tmpl:23 +#, fuzzy +msgid "Author" +msgstr "ÊÔ½¸¼Ô:" + +#: ../lib/plugin/AuthorHistory.php:126 ../lib/plugin/AuthorHistory.php:178 +#: ../themes/Portland/templates/editpage.tmpl:60 +msgid "Summary" +msgstr "Í×Ìó" + +#: ../lib/plugin/AuthorHistory.php:127 ../lib/plugin/AuthorHistory.php:179 +#, fuzzy +msgid "Modified" +msgstr "ºÇ½ª¹¹¿·Æü»þ" + +#: ../lib/plugin/AuthorHistory.php:156 +#, c-format +msgid "History of all major and minor edits by %s to page %s." +msgstr "" + +#: ../lib/plugin/AuthorHistory.php:156 +#, c-format +msgid "History of all major edits by %s to page %s." +msgstr "" + +#: ../lib/plugin/AuthorHistory.php:218 +#, c-format +msgid "History of all major and minor modifications for any page edited by %s." +msgstr "" + +#: ../lib/plugin/AuthorHistory.php:218 +#, c-format +msgid "History of major modifications for any page edited by %s." +msgstr "" + #: ../lib/plugin/BackLinks.php:35 #, c-format msgid "List all pages which link to %s." msgstr "" -#: ../lib/plugin/BackLinks.php:74 +#: ../lib/plugin/BackLinks.php:90 +#, c-format +msgid "No other page links to %s yet." +msgstr "" + +#: ../lib/plugin/BackLinks.php:93 +#, c-format +msgid "One page would link to %s:" +msgstr "" + +#: ../lib/plugin/BackLinks.php:102 #, c-format -msgid "No pages link to %s." +msgid "%s pages would link to %s:" msgstr "" -#: ../lib/plugin/BackLinks.php:77 +#: ../lib/plugin/BackLinks.php:110 +#, c-format +msgid "No page links to %s." +msgstr "" + +#: ../lib/plugin/BackLinks.php:115 #, c-format msgid "One page links to %s:" msgstr "" -#: ../lib/plugin/BackLinks.php:80 +#: ../lib/plugin/BackLinks.php:124 #, c-format msgid "%s pages link to %s:" msgstr "" #: ../lib/plugin/Calendar.php:41 ../lib/plugin/Calendar.php:45 -#: ../themes/default/templates/head.tmpl:82 -#: ../themes/default/templates/navbar.tmpl:27 +#: ../themes/default/templates/head.tmpl:85 +#: ../themes/default/templates/homepage.tmpl:15 +#: ../themes/default/templates/navbar.tmpl:28 msgid "Calendar" msgstr "¥«¥ì¥ó¥À¡¼" @@ -905,11 +1371,16 @@ msgstr " msgid "Next Month" msgstr "¼¡¤Î·î" -#: ../lib/plugin/Calendar.php:149 +#: ../lib/plugin/Calendar.php:149 ../lib/plugin/CalendarList.php:60 #, c-format msgid "Edit %s" msgstr "%s ¤òÊÔ½¸" +#: ../lib/plugin/CalendarList.php:22 ../lib/plugin/CalendarList.php:26 +#, fuzzy +msgid "CalendarList" +msgstr "¥«¥ì¥ó¥À¡¼" + #: ../lib/plugin/Comment.php:22 msgid "Comment" msgstr "¥³¥á¥ó¥È" @@ -918,6 +1389,42 @@ msgstr " msgid "Embed hidden comments in WikiPages." msgstr "" +#: ../lib/plugin/CreatePage.php:37 +#, fuzzy +msgid "CreatePage" +msgstr "¥Ú¡¼¥¸¤òºîÀ®¤·¤Æ¤¤¤Þ¤¹¡£" + +#: ../lib/plugin/CreatePage.php:41 +#, fuzzy +msgid "Create a Wiki page." +msgstr "¥Ú¡¼¥¸¤òºîÀ®¤·¤Æ¤¤¤Þ¤¹¡£" + +#: ../lib/plugin/CreateToc.php:34 +#, fuzzy +msgid "CreateToc" +msgstr "ºîÀ®: %s" + +#: ../lib/plugin/CreateToc.php:38 +msgid "Automatically link headers at the top" +msgstr "" + +#: ../lib/plugin/CreateToc.php:146 ../lib/plugin/IncludePage.php:116 +msgid "no page specified" +msgstr "" + +#: ../lib/plugin/CreateToc.php:205 ../lib/plugin/CreateToc.php:208 +#, fuzzy +msgid "Table Of Contents" +msgstr "¥³¥ó¥Æ¥ó¥Ä" + +#: ../lib/plugin/Diff.php:40 +msgid "Display differences between revisions" +msgstr "" + +#: ../lib/plugin/Diff.php:52 +msgid "World" +msgstr "" + #: ../lib/plugin/EditMetaData.php:45 msgid "EditMetaData" msgstr "META¥Ç¡¼¥¿¤ÎÊÔ½¸" @@ -963,12 +1470,12 @@ msgid "" "Displays a url in a seperate frame inside our body. Only one frame allowed." msgstr "" -#: ../lib/plugin/FrameInclude.php:93 ../lib/plugin/IncludePage.php:124 +#: ../lib/plugin/FrameInclude.php:93 ../lib/plugin/IncludePage.php:123 #, c-format msgid "recursive inclusion of page %s" msgstr "" -#: ../lib/plugin/FrameInclude.php:99 ../lib/plugin/RedirectTo.php:91 +#: ../lib/plugin/FrameInclude.php:99 ../lib/plugin/RedirectTo.php:92 #, c-format msgid "%s or %s parameter missing" msgstr "" @@ -984,11 +1491,16 @@ msgstr "" msgid "See %s" msgstr "%s ¤ò»²¾È" -#: ../lib/plugin/FullTextSearch.php:35 +#: ../lib/plugin/FullTextSearch.php:36 msgid "Search the content of all pages in this wiki." msgstr "" -#: ../lib/plugin/FullTextSearch.php:80 +#: ../lib/plugin/FullTextSearch.php:91 +#, c-format +msgid "only %d pages displayed" +msgstr "" + +#: ../lib/plugin/FullTextSearch.php:97 #, c-format msgid "Full text search results for '%s'" msgstr "" @@ -1023,6 +1535,15 @@ msgstr "" msgid "Sound Score" msgstr "¥µ¥¦¥ó¥É¥¹¥³¥¢" +#: ../lib/plugin/GooglePlugin.php:43 +#, fuzzy +msgid "GooglePlugin" +msgstr "¥×¥é¥°¥¤¥ó" + +#: ../lib/plugin/GooglePlugin.php:47 +msgid "Make use of the Google API" +msgstr "" + #: ../lib/plugin/HelloWorld.php:46 msgid "HelloWorld" msgstr "" @@ -1040,25 +1561,31 @@ msgid "Include text from another wiki page." msgstr "" #: ../lib/plugin/IncludePage.php:93 ../lib/plugin/PageGroup.php:80 -#: ../lib/plugin/UnfoldSubpages.php:114 +#: ../lib/plugin/UnfoldSubpages.php:117 #, c-format msgid "<%s: no such section>" msgstr "" -#: ../lib/plugin/IncludePage.php:117 -msgid "no page specified" -msgstr "" - -#: ../lib/plugin/IncludePage.php:133 ../lib/plugin/PageGroup.php:121 +#: ../lib/plugin/IncludePage.php:132 ../lib/plugin/PageGroup.php:121 #, c-format msgid "%s(%d): no such revision" msgstr "" -#: ../lib/plugin/IncludePage.php:162 +#: ../lib/plugin/IncludePage.php:161 #, c-format msgid "Included from %s" msgstr "%s ¤«¤éÆɹþ¤Þ¤ì¤Þ¤·¤¿¡£" +#: ../lib/plugin/IncludeSiteMap.php:52 +#, fuzzy +msgid "IncludeSiteMap" +msgstr "¥µ¥¤¥È¥Þ¥Ã¥×" + +#: ../lib/plugin/IncludeSiteMap.php:56 +#, c-format +msgid "Include recursively all linked pages starting at %s" +msgstr "" + #: ../lib/plugin/InterWikiSearch.php:31 msgid "InterWikiSearch" msgstr "InterWiki¸¡º÷" @@ -1067,16 +1594,17 @@ msgstr "InterWiki msgid "Perform searches on InterWiki sites listed in InterWikiMap." msgstr "" -#: ../lib/plugin/InterWikiSearch.php:70 +#: ../lib/plugin/InterWikiSearch.php:91 msgid "Wiki Name" msgstr "Wiki̾" -#: ../lib/plugin/InterWikiSearch.php:71 ../lib/plugin/RecentChanges.php:512 +#: ../lib/plugin/InterWikiSearch.php:92 ../lib/plugin/RecentChanges.php:522 msgid "Search" msgstr "¸¡º÷" #: ../lib/plugin/LikePages.php:32 ../themes/Portland/templates/navbar.tmpl:10 -#: ../themes/default/templates/navbar.tmpl:21 +#: ../themes/default/templates/navbar.tmpl:22 +#: ../themes/smaller/templates/navbar.tmpl:18 msgid "LikePages" msgstr "" @@ -1100,6 +1628,29 @@ msgstr "" msgid "These pages share an initial or final title word with '%s'" msgstr "" +#: ../lib/plugin/ListSubpages.php:34 +#, fuzzy +msgid "ListSubpages" +msgstr "¥µ¥Ö¥Ú¡¼¥¸" + +#: ../lib/plugin/ListSubpages.php:38 +msgid "Lists the names of all SubPages of the current page." +msgstr "" + +#: ../lib/plugin/ListSubpages.php:68 ../lib/plugin/UnfoldSubpages.php:127 +msgid "The current page has no subpages defined." +msgstr "" + +#: ../lib/plugin/ListSubpages.php:80 +#, fuzzy, c-format +msgid "SubPages of %s:" +msgstr "%s ¤Î¥Ú¡¼¥¸ÍúÎò" + +#: ../lib/plugin/ListSubpages.php:90 ../lib/plugin/UnfoldSubpages.php:137 +#, c-format +msgid "recursive inclusion of page %s ignored" +msgstr "" + #: ../lib/plugin/MostPopular.php:32 msgid "MostPopular" msgstr "" @@ -1108,20 +1659,28 @@ msgstr "" msgid "List the most popular pages." msgstr "" -#: ../lib/plugin/MostPopular.php:78 +#: ../lib/plugin/MostPopular.php:80 #, c-format msgid "The %d most popular pages of this wiki:" msgstr "" -#: ../lib/plugin/MostPopular.php:81 +#: ../lib/plugin/MostPopular.php:83 #, c-format msgid "The %d least popular pages of this wiki:" msgstr "" -#: ../lib/plugin/MostPopular.php:83 +#: ../lib/plugin/MostPopular.php:85 msgid "Visited pages on this wiki, ordered by popularity:" msgstr "" +#: ../lib/plugin/NoCache.php:39 +msgid "NoCache" +msgstr "" + +#: ../lib/plugin/NoCache.php:43 +msgid "Don't cache this page." +msgstr "" + #: ../lib/plugin/OldStyleTable.php:49 msgid "OldStyleTable" msgstr "µì¥¹¥¿¥¤¥ë¤Î¥Æ¡¼¥Ö¥ë" @@ -1130,7 +1689,7 @@ msgstr " msgid "Layout tables using the old markup style." msgstr "" -#: ../lib/plugin/OldStyleTable.php:78 +#: ../lib/plugin/OldStyleTable.php:109 msgid "Line does not begin with a '|'." msgstr "" @@ -1147,6 +1706,63 @@ msgstr "" msgid "Orphaned Pages in this wiki (%d total):" msgstr "" +#: ../lib/plugin/PageDump.php:63 +#, fuzzy, c-format +msgid "Page %s not found." +msgstr "¥Ú¡¼¥¸¤Ï¥í¥Ã¥¯²ò½üÃæ¤Ç¤¹¡£" + +#: ../lib/plugin/PageDump.php:118 +msgid "Download for CVS" +msgstr "" + +#: ../lib/plugin/PageDump.php:123 +msgid "Download for backup" +msgstr "" + +#: ../lib/plugin/PageDump.php:127 +#, c-format +msgid "Preview: Page dump of %s" +msgstr "" + +#: ../lib/plugin/PageDump.php:130 +msgid "(formatted for PhpWiki developers, not for backing up)" +msgstr "" + +#: ../lib/plugin/PageDump.php:132 +msgid "Preview as backup format" +msgstr "" + +#: ../lib/plugin/PageDump.php:137 +msgid "(formatted for backing up)" +msgstr "" + +#: ../lib/plugin/PageDump.php:140 +msgid "Preview as developer format" +msgstr "" + +#: ../lib/plugin/PageDump.php:145 +msgid "" +"Please use one of the downloadable versions rather than copying and pasting " +"from the above preview." +msgstr "" + +#: ../lib/plugin/PageDump.php:147 +msgid "" +"The wordwrap of the preview doesn't take nested markup or list indentation " +"into consideration!" +msgstr "" + +#: ../lib/plugin/PageDump.php:150 +msgid "" +"PhpWiki developers should manually inspect the downloaded file for nested " +"markup before rewrapping with emacs and checking into CVS." +msgstr "" + +#: ../lib/plugin/PageDump.php:162 +#, fuzzy +msgid "Warning:" +msgstr "·Ù¹ð!" + #: ../lib/plugin/PageGroup.php:44 msgid "PageGroup" msgstr "¥Ú¡¼¥¸¥°¥ë¡¼¥×" @@ -1214,6 +1830,8 @@ msgstr " #: ../themes/SpaceWiki/lib/RecentChanges.php:35 #: ../themes/default/templates/info.tmpl:18 #: ../themes/default/templates/info.tmpl:22 +#: ../themes/smaller/templates/info.tmpl:19 +#: ../themes/smaller/templates/info.tmpl:23 msgid "minor edit" msgstr "" @@ -1224,6 +1842,8 @@ msgstr " #: ../lib/plugin/PageHistory.php:247 ../lib/plugin/RecentChanges.php:65 #: ../themes/Portland/templates/actionbar.tmpl:18 #: ../themes/default/templates/actionbar.tmpl:27 +#: ../themes/smaller/templates/actionbar.tmpl:33 +#: ../themes/smaller/templates/info.tmpl:168 msgid "PageHistory" msgstr "¥Ú¡¼¥¸ÍúÎò" @@ -1243,33 +1863,40 @@ msgstr " msgid "Show extra page Info and statistics for %s." msgstr "" -#: ../lib/plugin/PageTrail.php:43 +#: ../lib/plugin/PageTrail.php:45 msgid "PageTrail" msgstr "" -#: ../lib/plugin/PageTrail.php:47 +#: ../lib/plugin/PageTrail.php:49 msgid "PageTrail Plugin" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:53 +#: ../lib/plugin/PhotoAlbum.php:146 msgid "PhotoAlbum" msgstr "¥Õ¥©¥È¥¢¥ë¥Ð¥à" -#: ../lib/plugin/PhotoAlbum.php:57 +#: ../lib/plugin/PhotoAlbum.php:150 msgid "" "Displays a set of photos listed in a text file with optional descriptions" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:80 ../lib/plugin/Transclude.php:76 -#, c-format -msgid "%s parameter missing" +#: ../lib/plugin/PhotoAlbum.php:433 +msgid "Fixed album location is not allowed." +msgstr "" + +#: ../lib/plugin/PhotoAlbum.php:434 +msgid "));" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:84 ../lib/plugin/Transclude.php:85 +#: ../lib/plugin/PhotoAlbum.php:452 ../lib/plugin/Transclude.php:85 msgid "Bad url in src: remove all of <, >, \"" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:90 +#: ../lib/plugin/PhotoAlbum.php:476 +msgid "Wrong server setting: allow_url_fopen set to Off" +msgstr "" + +#: ../lib/plugin/PhotoAlbum.php:480 #, c-format msgid "Unable to read %s " msgstr "" @@ -1326,7 +1953,7 @@ msgid "PluginManager" msgstr "¥×¥é¥°¥¤¥ó´ÉÍý" #: ../lib/plugin/PluginManager.php:35 -msgid "Provides a list of plugins on this wiki." +msgid "Description: Provides a list of plugins on this wiki." msgstr "" #: ../lib/plugin/PluginManager.php:54 @@ -1349,6 +1976,15 @@ msgstr " msgid "Arguments" msgstr "°ú¿ô°ìÍ÷" +#: ../lib/plugin/PluginManager.php:123 +#, c-format +msgid "%s does not appear to be a WikiPlugin." +msgstr "" + +#: ../lib/plugin/PluginManager.php:203 ../lib/plugin/PluginManager.php:219 +msgid "(Not a WikiWord)" +msgstr "" + #: ../lib/plugin/PrevNext.php:32 msgid "PrevNext" msgstr "Á°¸å" @@ -1382,7 +2018,7 @@ msgstr "" msgid "Raw HTML is disabled in this wiki." msgstr "" -#: ../lib/plugin/RawHtml.php:65 ../lib/plugin/RedirectTo.php:81 +#: ../lib/plugin/RawHtml.php:65 ../lib/plugin/RedirectTo.php:82 #, c-format msgid "%s is only allowed in locked pages." msgstr "" @@ -1466,7 +2102,7 @@ msgid "All %s are listed below." msgstr "" #: ../lib/plugin/RecentChanges.php:250 ../lib/plugin/RecentChanges.php:263 -#: ../lib/plugin/RecentChanges.php:363 ../lib/plugin/RecentChanges.php:434 +#: ../lib/plugin/RecentChanges.php:365 ../lib/plugin/RecentChanges.php:441 #: ../themes/Portland/templates/editpage.tmpl:66 msgid "RecentEdits" msgstr "" @@ -1475,70 +2111,91 @@ msgstr "" msgid "No changes found" msgstr "Êѹ¹ÅÀ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿¡£" -#: ../lib/plugin/RecentChanges.php:513 +#: ../lib/plugin/RecentChanges.php:523 msgid "Title Search" msgstr "¥¿¥¤¥È¥ë¸¡º÷" -#: ../lib/plugin/RecentChanges.php:736 +#: ../lib/plugin/RecentChanges.php:746 msgid "Show minor edits for:" msgstr "" -#: ../lib/plugin/RecentChanges.php:738 +#: ../lib/plugin/RecentChanges.php:748 msgid "Show all changes for:" msgstr "" -#: ../lib/plugin/RecentChanges.php:740 +#: ../lib/plugin/RecentChanges.php:750 msgid "Show changes for:" msgstr "" -#: ../lib/plugin/RecentChanges.php:760 +#: ../lib/plugin/RecentChanges.php:770 msgid "1 day" msgstr "" -#: ../lib/plugin/RecentChanges.php:764 +#: ../lib/plugin/RecentChanges.php:774 #, c-format msgid "%s days" msgstr "" -#: ../lib/plugin/RedirectTo.php:46 +#: ../lib/plugin/RedirectTo.php:47 msgid "RedirectTo" msgstr "" -#: ../lib/plugin/RedirectTo.php:50 +#: ../lib/plugin/RedirectTo.php:51 msgid "Redirects to another url or page." msgstr "" -#: ../lib/plugin/RedirectTo.php:82 +#: ../lib/plugin/RedirectTo.php:83 msgid "Redirect to an external url" msgstr "" -#: ../lib/plugin/RedirectTo.php:96 +#: ../lib/plugin/RedirectTo.php:97 #, c-format msgid "Recursive redirect to self: '%s'" msgstr "" -#: ../lib/plugin/RedirectTo.php:105 +#: ../lib/plugin/RedirectTo.php:106 msgid "Double redirect not allowed." msgstr "" -#: ../lib/plugin/RedirectTo.php:109 +#: ../lib/plugin/RedirectTo.php:110 msgid "Viewing redirecting page." msgstr "" -#: ../lib/plugin/SiteMap.php:49 +#: ../lib/plugin/RichTable.php:32 +msgid "RichTable" +msgstr "" + +#: ../lib/plugin/RichTable.php:36 +msgid "Layout tables using a very rich markup style." +msgstr "" + +#: ../lib/plugin/SiteMap.php:51 msgid "SiteMap" msgstr "¥µ¥¤¥È¥Þ¥Ã¥×" -#: ../lib/plugin/SiteMap.php:53 +#: ../lib/plugin/SiteMap.php:55 #, c-format msgid "Recursively get BackLinks or links for %s" msgstr "" -#: ../lib/plugin/SiteMap.php:160 +#: ../lib/plugin/SiteMap.php:169 #, c-format msgid "(max. recursion level: %d)" msgstr "" +#: ../lib/plugin/SqlResult.php:42 +msgid "SqlResult" +msgstr "" + +#: ../lib/plugin/SqlResult.php:46 +msgid "Display arbitrary SQL result tables" +msgstr "" + +#: ../lib/plugin/SqlResult.php:81 ../lib/plugin/WikiPoll.php:159 +#: ../lib/plugin/WikiPoll.php:228 +msgid "Sorry! You must wait at least 20 minutes until you can vote again!" +msgstr "" + #: ../lib/plugin/SystemInfo.php:52 msgid "SystemInfo" msgstr "¥·¥¹¥Æ¥à¾ðÊó" @@ -1766,7 +2423,7 @@ msgstr "" msgid "Search the titles of all pages in this wiki." msgstr "" -#: ../lib/plugin/TitleSearch.php:67 +#: ../lib/plugin/TitleSearch.php:74 #, c-format msgid "Title search results for '%s'" msgstr "" @@ -1779,6 +2436,11 @@ msgstr "" msgid "Include an external web page within the body of a wiki page." msgstr "" +#: ../lib/plugin/Transclude.php:76 +#, c-format +msgid "%s parameter missing" +msgstr "" + #: ../lib/plugin/Transclude.php:88 msgid "Transcluded page" msgstr "" @@ -1793,181 +2455,673 @@ msgstr " msgid "Transcluded from %s" msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:33 -msgid "UnfoldSubpages" +#: ../lib/plugin/TranslateText.php:44 ../lib/plugin/_WikiTranslation.php:98 +msgid "TranslateText" msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:37 -msgid "Includes the content of all SubPages of the current page." +#: ../lib/plugin/TranslateText.php:48 +msgid "Define a translation for a specified text" msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:82 -#, c-format -msgid "... first %d words" +#: ../lib/plugin/TranslateText.php:68 +msgid "This internal action page cannot viewed." msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:123 -msgid "The current page has no subpages defined." +#: ../lib/plugin/TranslateText.php:69 +msgid "You can only use it via the _WikiTranslation plugin." msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:136 -#, c-format -msgid "recursive inclusion of page %s ignored" +#: ../lib/plugin/TranslateText.php:76 +msgid "Translation Error!" msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:151 -#, c-format -msgid " ... first %d lines" +#: ../lib/plugin/TranslateText.php:77 +msgid "" +"Your translated text is either empty or equal to the untranslated text. " +"Please try again." msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:157 +#: ../lib/plugin/TranslateText.php:82 +msgid "ContributedTranslations" +msgstr "" + +#: ../lib/plugin/TranslateText.php:96 #, c-format -msgid " ... first %d bytes" +msgid "Translate '%s' to '%s' in *%s*" msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:175 +#: ../lib/plugin/TranslateText.php:99 #, c-format -msgid "Included from %s:" +msgid "Translate %s to %s in %s" msgstr "" -#: ../lib/plugin/UserPreferences.php:14 -msgid "UserPreferences" -msgstr "¥æ¡¼¥¶¡¼ÀßÄê" +#: ../lib/plugin/TranslateText.php:103 +msgid "Thanks for adding this translation!" +msgstr "" -#: ../lib/plugin/UserPreferences.php:48 +#: ../lib/plugin/TranslateText.php:104 +#, c-format msgid "" -"Error: The page with the UserPreferences plugin must be valid WikiWord or a " -"Preferences subpage of the users HomePage. Sorry, UserPreferences cannot be " -"saved." +"Your translated text doesn't yet appear in this %s, but the Administrator " +"will pick it up and add to the installation." msgstr "" -#: ../lib/plugin/UserPreferences.php:62 -msgid "No changes." -msgstr "Êѹ¹¤·¤Þ¤»¤ó¤Ç¤·¤¿¡£" - -#: ../lib/plugin/UserPreferences.php:64 +#: ../lib/plugin/TranslateText.php:106 #, c-format -msgid "%d UserPreferences fields successfully updated." +msgid "Your translation is stored in %s" msgstr "" -#: ../lib/plugin/VisualWiki.php:90 -msgid "" -"Visualizes the Wiki structure in a graph using the 'dot' commandline tool " -"from graphviz." +#: ../lib/plugin/TranslateText.php:112 ../lib/plugin/TranslateText.php:114 +#, c-format +msgid "From english to %s: " msgstr "" -#: ../lib/plugin/VisualWiki.php:550 -msgid "Legend" +#: ../lib/plugin/TranslateText.php:115 +msgid "Translate" msgstr "" -#: ../lib/plugin/VisualWiki.php:556 -msgid "days" +#: ../lib/plugin/TranslateText.php:118 ../lib/plugin/WikiAdminChmod.php:163 +#: ../lib/plugin/WikiAdminRemove.php:201 ../lib/plugin/WikiAdminRename.php:158 +#: ../lib/plugin/WikiAdminSearchReplace.php:185 +#: ../lib/plugin/WikiAdminSelect.php:196 ../lib/plugin/WikiAdminSelect.php:217 +#: ../lib/plugin/WikiAdminSetAcl.php:157 ../lib/removepage.php:22 +#: ../themes/default/templates/login.tmpl:68 +#: ../themes/default/templates/userprefs.tmpl:214 +msgid "Cancel" msgstr "" -#: ../lib/plugin/WantedPages.php:33 ../lib/plugin/WantedPages.php:62 -msgid "WantedPages" +#: ../lib/plugin/UnfoldSubpages.php:36 +msgid "UnfoldSubpages" msgstr "" -#: ../lib/plugin/WantedPages.php:37 -msgid "Lists referenced page names which do not exist yet." +#: ../lib/plugin/UnfoldSubpages.php:40 +msgid "Includes the content of all SubPages of the current page." msgstr "" -#: ../lib/plugin/WantedPages.php:47 -msgid "PgsrcTranslation" +#: ../lib/plugin/UnfoldSubpages.php:84 +#, c-format +msgid "... first %d words" msgstr "" -#: ../lib/plugin/WantedPages.php:89 -msgid "" -msgstr "<¤Ê¤·>" - -#: ../lib/plugin/WantedPages.php:104 +#: ../lib/plugin/UnfoldSubpages.php:152 #, c-format -msgid "Wanted Pages for %s (%d total):" +msgid " ... first %d lines" msgstr "" -#: ../lib/plugin/WantedPages.php:119 +#: ../lib/plugin/UnfoldSubpages.php:176 #, c-format -msgid "Wanted Pages in this wiki (%d total):" +msgid "Included from %s:" msgstr "" -#: ../lib/plugin/WantedPages.php:121 -msgid "Count" -msgstr "¥«¥¦¥ó¥È" - -#: ../lib/plugin/WikiAdminRemove.php:39 -msgid "WikiAdminRemove" +#: ../lib/plugin/UpLoad.php:53 +msgid "Upload files to the local InterWiki Upload:" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:43 -msgid "Permanently remove all selected pages." +#: ../lib/plugin/UpLoad.php:84 ../lib/plugin/WikiForm.php:100 +msgid "Upload" +msgstr "¥¢¥Ã¥×¥í¡¼¥É" + +#: ../lib/plugin/UpLoad.php:100 +msgid "ACCESS DENIED: You must log in to upload files." msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:115 ../lib/removepage.php:46 +#: ../lib/plugin/UpLoad.php:112 #, c-format -msgid "Removed page '%s' succesfully." -msgstr "'%s' ¤Îºï½ü¤ËÀ®¸ù¤·¤Þ¤·¤¿¡£" - -#: ../lib/plugin/WikiAdminRemove.php:172 -msgid "Permanently remove selected pages" +msgid "Files with extension %s are not allowed" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:174 -msgid "Are you sure you want to permanently remove the selected files?" +#: ../lib/plugin/UpLoad.php:116 +#, c-format +msgid "There is already a file with name %s uploaded" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:177 -msgid "Remove selected pages" -msgstr "ÁªÂò¥Ú¡¼¥¸¤òÁ´¤Æºï½ü" +#: ../lib/plugin/UpLoad.php:120 +msgid "Sorry but this file is too big" +msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:180 -#, c-format -msgid "Listing pages which have been deleted at least %s days." +#: ../lib/plugin/UpLoad.php:127 +msgid "File successfully uploaded." msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:184 -msgid "Listing all pages." -msgstr "Á´¥Ú¡¼¥¸°ìÍ÷" +#: ../lib/plugin/UpLoad.php:144 +#, fuzzy, c-format +msgid "uploaded %s" +msgstr "%s ¤ò¥¢¥Ã¥×¥í¡¼¥ÉÃæ¤Ç¤¹¡£" -#: ../lib/plugin/WikiAdminRemove.php:190 -#, c-format -msgid "" -"(Automatically checking pages which have been deleted at least %s days.)" +#: ../lib/plugin/UpLoad.php:150 +#, fuzzy +msgid "Uploading failed: " +msgstr "¥Õ¥¡¥¤¥ë¤òÆɹþ¤ßÃæ¤Ç¤¹¡£" + +#: ../lib/plugin/UpLoad.php:168 +msgid "Error: the upload log is not writable" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:197 ../lib/plugin/WikiAdminSelect.php:154 -#: ../lib/plugin/WikiAdminSelect.php:173 ../lib/removepage.php:22 -#: ../themes/default/templates/login.tmpl:46 -#: ../themes/default/templates/userprefs.tmpl:195 -msgid "Cancel" +#: ../lib/plugin/UpLoad.php:172 +msgid "Error: can't open the upload logfile" msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:41 -msgid "WikiAdminSelect" +#: ../lib/plugin/UserFileManagement.php:38 +msgid "UserFileManagement" msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:45 -msgid "" -"Allows selection of multiple pages which get passed to other WikiAdmin " -"plugins." +#: ../lib/plugin/UserFileManagement.php:42 +msgid "Allows registered users to manipulate his/her files" msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:108 -msgid "Select: " -msgstr "ÁªÂò:" +#: ../lib/plugin/UserFileManagement.php:136 +#, fuzzy +msgid "Current directory: " +msgstr "¥Ç¥£¥ì¥¯¥È¥ê '%s' ¤òºîÀ®½ÐÍè¤Þ¤»¤ó¡£" + +#: ../lib/plugin/UserPreferences.php:34 +#: ../themes/default/templates/head.tmpl:82 +#: ../themes/default/templates/homepage.tmpl:11 +#: ../themes/smaller/templates/navbar.tmpl:25 +msgid "UserPreferences" +msgstr "¥æ¡¼¥¶¡¼ÀßÄê" + +#: ../lib/plugin/UserPreferences.php:64 +msgid "" +"Error: The user HomePage must be a valid WikiWord. Sorry, UserPreferences " +"cannot be saved." +msgstr "" + +#: ../lib/plugin/UserPreferences.php:80 +msgid "Wrong password. Try again." +msgstr "" + +#: ../lib/plugin/UserPreferences.php:97 +#, fuzzy +msgid "Password updated." +msgstr "¥Ñ¥¹¥ï¡¼¥É" + +#: ../lib/plugin/UserPreferences.php:99 ../lib/plugin/UserPreferences.php:102 +msgid "Password cannot be changed." +msgstr "" + +#: ../lib/plugin/UserPreferences.php:106 +msgid "No changes." +msgstr "Êѹ¹¤·¤Þ¤»¤ó¤Ç¤·¤¿¡£" + +#: ../lib/plugin/UserPreferences.php:109 +#, c-format +msgid "%d UserPreferences fields successfully updated." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:16 +msgid "UserRegistration" +msgstr "" + +#: ../lib/plugin/UserRegistration.php:28 +msgid "Only the administrator is allowed to register new users." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:31 +msgid "Warning: You are already signed in, you cannot create another account." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:56 +msgid "Error: You must specify a user-id for the account." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:59 +msgid "Error: The user-id you specified is too short." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:63 +msgid "Error: The user-id you specified is not a valid WikiWord." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:66 +msgid "" +"Error: The user-id you specified is already in use, please choose another." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:72 +msgid "Error: You must specify a password for the account." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:74 +msgid "Error: The password you specified is too short." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:78 +msgid "Error: You must specify an email address." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:81 +msgid "Error: The email address you specified is not valid." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:84 +msgid "Error: You must specify a first name." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:87 +msgid "Error: You must specify a last name." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:97 +msgid "" +"Error: There seemed to be some problem creating the new home page. Please " +"try again or contact the administrator for assistance." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:112 +msgid "You have been registered at " +msgstr "" + +#: ../lib/plugin/UserRegistration.php:114 +msgid "Your username is: " +msgstr "" + +#: ../lib/plugin/UserRegistration.php:115 +msgid "Your password is: " +msgstr "" + +#: ../lib/plugin/UserRegistration.php:116 +#, fuzzy +msgid "Your home page is: " +msgstr "¥Û¡¼¥à¥Ú¡¼¥¸" + +#: ../lib/plugin/UserRegistration.php:118 +msgid "Welcome to our Wiki." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:126 +msgid " has been created." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:130 +msgid "The user has been sent their login information by email." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:132 +msgid "" +"Your password was sent to your email address. Please check your mail and " +"then login." +msgstr "" + +#: ../lib/plugin/VisualWiki.php:93 +msgid "" +"Visualizes the Wiki structure in a graph using the 'dot' commandline tool " +"from graphviz." +msgstr "" + +#: ../lib/plugin/VisualWiki.php:553 +msgid "Legend" +msgstr "" + +#: ../lib/plugin/VisualWiki.php:559 +msgid "days" +msgstr "" + +#: ../lib/plugin/WantedPages.php:33 ../lib/plugin/WantedPages.php:62 +msgid "WantedPages" +msgstr "" + +#: ../lib/plugin/WantedPages.php:37 +msgid "Lists referenced page names which do not exist yet." +msgstr "" + +#: ../lib/plugin/WantedPages.php:47 ../lib/plugin/_WikiTranslation.php:79 +msgid "PgsrcTranslation" +msgstr "" + +#: ../lib/plugin/WantedPages.php:89 +msgid "" +msgstr "<¤Ê¤·>" + +#: ../lib/plugin/WantedPages.php:104 +#, c-format +msgid "Wanted Pages for %s (%d total):" +msgstr "" + +#: ../lib/plugin/WantedPages.php:138 +#, c-format +msgid "Wanted Pages in this wiki (%d total):" +msgstr "" + +#: ../lib/plugin/WantedPages.php:140 +msgid "Count" +msgstr "¥«¥¦¥ó¥È" + +#: ../lib/plugin/WhoIsOnline.php:38 +msgid "WhoIsOnline" +msgstr "" + +#: ../lib/plugin/WhoIsOnline.php:42 +msgid "Show summary information of the current user sessions." +msgstr "" + +#: ../lib/plugin/WhoIsOnline.php:98 +msgid "Guest" +msgstr "" + +#: ../lib/plugin/WhoIsOnline.php:108 +#, fuzzy +msgid "" +msgstr "<¤Ê¤·>" + +#: ../lib/plugin/WhoIsOnline.php:169 +#, c-format +msgid "%d minutes" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:42 +msgid "WikiAdminChmod" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:46 ../lib/plugin/WikiAdminSetAcl.php:45 +msgid "Set individual page permissions." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:80 +#, c-format +msgid "chmod page '%s' to '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:83 +#, c-format +msgid "Couldn't chmod page '%s' to '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:87 +msgid "Invalid chmod string" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:92 ../lib/plugin/WikiAdminSetAcl.php:86 +#, c-format +msgid "%s pages have been changed." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:95 +#: ../lib/plugin/WikiAdminSearchReplace.php:108 +#: ../lib/plugin/WikiAdminSetAcl.php:89 +#, fuzzy +msgid "No pages changed." +msgstr "Êѹ¹¤·¤Þ¤»¤ó¤Ç¤·¤¿¡£" + +#: ../lib/plugin/WikiAdminChmod.php:150 ../lib/plugin/WikiAdminRemove.php:175 +#: ../lib/plugin/WikiAdminRename.php:144 +#: ../lib/plugin/WikiAdminSearchReplace.php:171 +#: ../lib/plugin/WikiAdminSetAcl.php:144 +msgid "Yes" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:154 ../lib/plugin/WikiAdminSetAcl.php:148 +msgid "Are you sure you want to permanently change the selected files?" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:157 +msgid "Chmod" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:159 ../lib/plugin/WikiAdminSetAcl.php:153 +#, fuzzy +msgid "Select the pages to change:" +msgstr "µ®Êý¸Ä¿Í¤Î¸À¸ì¤òÁªÂò" + +#: ../lib/plugin/WikiAdminChmod.php:180 ../lib/plugin/WikiAdminSetAcl.php:173 +msgid "This plugin is currently under development and does not work!" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:181 +msgid "Chmod to permission:" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:184 +msgid "(ugo : rwx)" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:191 ../lib/plugin/WikiAdminSetAcl.php:206 +msgid "Propagate new permissions to all subpages?" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:193 ../lib/plugin/WikiAdminSetAcl.php:208 +msgid "(disable individual page permissions, enable inheritance)?" +msgstr "" + +#: ../lib/plugin/WikiAdminRemove.php:39 +msgid "WikiAdminRemove" +msgstr "" + +#: ../lib/plugin/WikiAdminRemove.php:43 +msgid "Permanently remove all selected pages." +msgstr "" + +#: ../lib/plugin/WikiAdminRemove.php:117 ../lib/removepage.php:46 +#, fuzzy, c-format +msgid "Removed page '%s' successfully." +msgstr "'%s' ¤Îºï½ü¤ËÀ®¸ù¤·¤Þ¤·¤¿¡£" + +#: ../lib/plugin/WikiAdminRemove.php:177 +msgid "Are you sure you want to permanently remove the selected files?" +msgstr "" + +#: ../lib/plugin/WikiAdminRemove.php:180 +msgid "Remove selected pages" +msgstr "ÁªÂò¥Ú¡¼¥¸¤òÁ´¤Æºï½ü" + +#: ../lib/plugin/WikiAdminRemove.php:181 +msgid "Permanently remove the selected files:" +msgstr "" + +#: ../lib/plugin/WikiAdminRemove.php:184 +#, c-format +msgid "Also pages which have been deleted at least %s days." +msgstr "" + +#: ../lib/plugin/WikiAdminRemove.php:188 +#, fuzzy +msgid "List all pages." +msgstr "Á´¥Ú¡¼¥¸°ìÍ÷" + +#: ../lib/plugin/WikiAdminRemove.php:194 +#, c-format +msgid "(Pages which have been deleted at least %s days are already checked.)" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:39 +msgid "WikiAdminRename" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:43 +#, fuzzy +msgid "Rename selected pages." +msgstr "ÁªÂò¥Ú¡¼¥¸¤òÁ´¤Æºï½ü" + +#: ../lib/plugin/WikiAdminRename.php:76 +#, fuzzy, c-format +msgid "Renamed page '%s' to '%s'." +msgstr "'%s' ¤Îºï½ü¤ËÀ®¸ù¤·¤Þ¤·¤¿¡£" + +#: ../lib/plugin/WikiAdminRename.php:79 +#, c-format +msgid "Couldn't rename page '%s' to '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:85 +#, c-format +msgid "%s pages have been permanently renamed." +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:88 +#, fuzzy +msgid "No pages renamed." +msgstr "Êѹ¹ÅÀ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿¡£" + +#: ../lib/plugin/WikiAdminRename.php:147 +msgid "Are you sure you want to permanently rename the selected files?" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:151 +#, fuzzy +msgid "Rename selected pages" +msgstr "ÁªÂò¥Ú¡¼¥¸¤òÁ´¤Æºï½ü" + +#: ../lib/plugin/WikiAdminRename.php:152 +#, fuzzy +msgid "Select the pages to rename:" +msgstr "¤¢¤Ê¤¿¤Î¸Ä¿Í¤Î¥Æ¡¼¥Þ¤òÁªÂò:" + +#: ../lib/plugin/WikiAdminRename.php:173 +#, fuzzy +msgid "Rename" +msgstr "̾¾Î" + +#: ../lib/plugin/WikiAdminRename.php:173 +#, fuzzy +msgid "from" +msgstr "%s ¤«¤é" + +#: ../lib/plugin/WikiAdminRename.php:176 +msgid "to" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:179 +msgid "(no regex, case-sensitive)" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:182 +msgid "Change pagename in all linked pages also?" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:39 +msgid "WikiAdminSearchReplace" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:43 +msgid "Search and replace text in selected wiki pages." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:81 +#, c-format +msgid "WikiAdminSearchReplace %s by %s" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:89 +msgid "Error: Empty search string." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:96 +#, c-format +msgid "Replaced '%s' with '%s' in page '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:99 +#, c-format +msgid "Search string '%s' not found in page '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:105 +#, c-format +msgid "%s pages changed." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:169 +msgid "Warning: The search string cannot be empty!" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:174 +msgid "" +"Are you sure you want to permanently search & replace text in the selected " +"files?" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:178 +msgid "Search & Replace" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:180 +msgid "Select the pages to search:" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:200 +msgid "Replace: " +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:203 +msgid "by" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:206 +msgid "(no regex) Case-exact: " +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:41 +msgid "WikiAdminSelect" +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:45 +msgid "" +"Allows selection of multiple pages which get passed to other WikiAdmin " +"plugins." +msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:114 +#: ../lib/plugin/WikiAdminSelect.php:113 ../lib/plugin/WikiAdminSelect.php:124 msgid "Go" msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:134 +#: ../lib/plugin/WikiAdminSelect.php:118 +msgid "Select: " +msgstr "ÁªÂò:" + +#: ../lib/plugin/WikiAdminSelect.php:157 #, c-format msgid "Selected page '%s' passed to '%s'." msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:152 +#: ../lib/plugin/WikiAdminSelect.php:194 msgid "Select pages" msgstr "" +#: ../lib/plugin/WikiAdminSetAcl.php:41 +msgid "WikiAdminSetAcl" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:74 +#, fuzzy, c-format +msgid "set acl for page '%s'." +msgstr "Á´¥Ú¡¼¥¸°ìÍ÷" + +#: ../lib/plugin/WikiAdminSetAcl.php:77 +#, c-format +msgid "Couldn't setacl page '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:81 +msgid "Invalid acl" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:151 +msgid "SetAcl" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:181 +#, fuzzy, c-format +msgid "Pages: %s" +msgstr "Êݸ¤·¤Þ¤·¤¿: 5s" + +#: ../lib/plugin/WikiAdminSetAcl.php:184 +#, c-format +msgid "page permission inherited from %s" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:186 +msgid "invidual page permission" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:188 +msgid "default page permission" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:189 +#, fuzzy +msgid "Type: " +msgstr "¥Ú¡¼¥¸¤Î¼ïÎà<:" + #: ../lib/plugin/WikiAdminUtils.php:29 msgid "WikiAdminUtils" msgstr "" @@ -1976,53 +3130,58 @@ msgstr "" msgid "Miscellaneous utility functions of use to the administrator." msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:65 +#: ../lib/plugin/WikiAdminUtils.php:66 msgid "You must be an administrator to use this plugin." msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:93 +#: ../lib/plugin/WikiAdminUtils.php:95 msgid "WikiAdminUtils says:" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:95 ../lib/stdlib.php:1289 +#: ../lib/plugin/WikiAdminUtils.php:97 ../lib/stdlib.php:1335 msgid "Okay" msgstr "¤ª¤Ã¤±¡¼" -#: ../lib/plugin/WikiAdminUtils.php:101 +#: ../lib/plugin/WikiAdminUtils.php:103 msgid "Purge Markup Cache" msgstr "¥Þ¡¼¥¯¥¢¥Ã¥×¥­¥ã¥Ã¥·¥å¤ÎÇË´þ" -#: ../lib/plugin/WikiAdminUtils.php:102 +#: ../lib/plugin/WikiAdminUtils.php:104 msgid "Delete Pages With Invalid Names" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:112 +#: ../lib/plugin/WikiAdminUtils.php:114 msgid "Markup cache purged!" msgstr "¥Þ¡¼¥¯¥¢¥Ã¥×¥­¥ã¥Ã¥·¥å¤òÇË´þ¤·¤Þ¤·¤¿!" -#: ../lib/plugin/WikiAdminUtils.php:128 +#: ../lib/plugin/WikiAdminUtils.php:130 msgid "No pages with bad names were found." msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:136 +#: ../lib/plugin/WikiAdminUtils.php:138 #, c-format msgid "Deleted %s pages with invalid names:" msgstr "" -#: ../lib/plugin/WikiBlog.php:74 +#: ../lib/plugin/WikiBlog.php:77 msgid "WikiBlog" msgstr "" -#: ../lib/plugin/WikiBlog.php:78 +#: ../lib/plugin/WikiBlog.php:81 #, c-format msgid "Show and add blogs for %s" msgstr "" -#: ../lib/plugin/WikiBlog.php:183 +#: ../lib/plugin/WikiBlog.php:156 +#, c-format +msgid "No page specified for %s" +msgstr "" + +#: ../lib/plugin/WikiBlog.php:186 ../lib/plugin/WikiForum.php:136 msgid "New comment." msgstr "¿·µ¬¥³¥á¥ó¥È" -#: ../lib/plugin/WikiBlog.php:256 +#: ../lib/plugin/WikiBlog.php:265 ../lib/plugin/WikiForum.php:208 #, c-format msgid "Comments on %s:" msgstr "" @@ -2035,64 +3194,407 @@ msgstr "" msgid "Load File" msgstr "¥Õ¥¡¥¤¥ëÆɹþ¤ß" -#: ../lib/plugin/WikiForm.php:73 -msgid "Login" -msgstr "¥í¥°¥¤¥ó" +#: ../lib/plugin/WikiForm.php:73 +msgid "Login" +msgstr "¥í¥°¥¤¥ó" + +#: ../lib/plugin/WikiForm.php:81 +msgid "Dump Pages" +msgstr "" + +#: ../lib/plugin/WikiForm.php:89 +msgid "Dump Pages as XHTML" +msgstr "XHTML¤Ç½ÐÎÏ" + +#: ../lib/plugin/WikiForm.php:104 +#, c-format +msgid "WikiForm: %s: unknown action" +msgstr "WikiForm: '%s' ¤Ï̤ÃΤÎÁàºî¤Ç¤¹¡£" + +#: ../lib/plugin/WikiForum.php:46 +msgid "WikiForum" +msgstr "" + +#: ../lib/plugin/WikiForum.php:50 +msgid "Handles threaded topics with comments/news and provide a input form" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:59 +msgid "WikiPoll" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:63 +msgid "Enable configurable polls" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:185 +msgid "Not enough questions answered!" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:194 ../lib/plugin/WikiPoll.php:255 +#, c-format +msgid "Missing %s for %s" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:222 +#, fuzzy +msgid "Ok" +msgstr "¤ª¤Ã¤±¡¼" + +#: ../lib/plugin/WikiPoll.php:225 +#, fuzzy +msgid "Reset" +msgstr "žÁ÷" + +#: ../lib/plugin/WikiPoll.php:271 ../lib/plugin/WikiPoll.php:285 +#, c-format +msgid " %d%% (%d/%d)" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:301 ../lib/plugin/WikiPoll.php:303 +msgid "The result of this poll so far:" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:301 +msgid "Thanks for participating!" +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:35 +#, fuzzy +msgid "_AuthInfo" +msgstr "ÊÔ½¸¼Ô:" + +#: ../lib/plugin/_AuthInfo.php:39 +msgid "Display general and user specific auth information." +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:65 +msgid "General Auth Settings" +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:100 +#, c-format +msgid "Personal Auth Settings for '%s'" +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:102 +msgid "No userid" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:30 ../lib/plugin/_WikiTranslation.php:57 +#: ../themes/Portland/templates/actionbar.tmpl:21 +#: ../themes/default/templates/actionbar.tmpl:32 +#: ../themes/smaller/templates/info.tmpl:175 +msgid "DebugInfo" +msgstr "¥Ç¥Ð¥°¾ðÊó" + +#: ../lib/plugin/_BackendInfo.php:34 +#, c-format +msgid "Get debugging information for %s." +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:54 +#, c-format +msgid "Querying backend directly for '%s'" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:64 +#, c-format +msgid "No pagedata for %s" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:95 +msgid "" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:95 +msgid "" +msgstr "" + +#: ../lib/plugin/_PreferencesInfo.php:30 +#: ../themes/default/templates/userprefs.tmpl:12 +msgid "PreferencesInfo" +msgstr "" + +#: ../lib/plugin/_PreferencesInfo.php:34 +#, c-format +msgid "Get preferences information for current user %s." +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:47 +#, fuzzy +msgid "AddCommentPlugin" +msgstr "¥³¥á¥ó¥È" + +#: ../lib/plugin/_WikiTranslation.php:48 +#, fuzzy +msgid "AddingPages" +msgstr "¥Ú¡¼¥¸¤òÊÔ½¸¤·¤Æ¤¤¤Þ¤¹¡£" + +#: ../lib/plugin/_WikiTranslation.php:49 +#, fuzzy +msgid "AuthorHistoryPlugin" +msgstr "ÊÔ½¸¼Ô:" + +#: ../lib/plugin/_WikiTranslation.php:51 +#, fuzzy +msgid "CalendarListPlugin" +msgstr "¥«¥ì¥ó¥À¡¼" + +#: ../lib/plugin/_WikiTranslation.php:52 +#, fuzzy +msgid "CalendarPlugin" +msgstr "¥«¥ì¥ó¥À¡¼" + +#: ../lib/plugin/_WikiTranslation.php:53 +#, fuzzy +msgid "CategoryCategory" +msgstr "¥Û¡¼¥à¥Ú¡¼¥¸ºîÀ®:" + +#: ../lib/plugin/_WikiTranslation.php:54 +#, fuzzy +msgid "CategoryHomePages" +msgstr "¥Û¡¼¥à¥Ú¡¼¥¸ºîÀ®:" + +#: ../lib/plugin/_WikiTranslation.php:55 +#, fuzzy +msgid "CommentPlugin" +msgstr "¥³¥á¥ó¥È" + +#: ../lib/plugin/_WikiTranslation.php:56 +#, fuzzy +msgid "CreateTocPlugin" +msgstr "ºîÀ®: %s" + +#: ../lib/plugin/_WikiTranslation.php:58 +#, fuzzy +msgid "EditMetaDataPlugin" +msgstr "META¥Ç¡¼¥¿¤ÎÊÔ½¸" + +#: ../lib/plugin/_WikiTranslation.php:59 +msgid "ExternalSearchPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:60 +#: ../themes/Portland/templates/navbar.tmpl:8 +#: ../themes/default/templates/head.tmpl:35 +#: ../themes/default/templates/navbar.tmpl:11 +#: ../themes/smaller/templates/navbar.tmpl:11 +msgid "FindPage" +msgstr "¥Ú¡¼¥¸¸¡º÷" + +#: ../lib/plugin/_WikiTranslation.php:61 +msgid "FrameIncludePlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:62 +#, fuzzy +msgid "FullRecentChanges" +msgstr "Êѹ¹ÍúÎò" + +#: ../lib/plugin/_WikiTranslation.php:63 +#, fuzzy +msgid "HelloWorldPlugin" +msgstr "¥×¥é¥°¥¤¥ó" + +#: ../lib/plugin/_WikiTranslation.php:64 +#, fuzzy +msgid "HomePageAlias" +msgstr "¥Û¡¼¥à¥Ú¡¼¥¸" + +#: ../lib/plugin/_WikiTranslation.php:65 +msgid "IncludePagePlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:66 +#, fuzzy +msgid "InterWiki" +msgstr "InterWiki¸¡º÷" + +#: ../lib/plugin/_WikiTranslation.php:67 +msgid "LinkIcons" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:68 +msgid "MagicPhpWikiURLs" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:69 +msgid "MoreAboutMechanics" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:70 +msgid "NewMarkupTestPage" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:71 +msgid "OldMarkupTestPage" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:72 +#, fuzzy +msgid "OldStyleTablePlugin" +msgstr "µì¥¹¥¿¥¤¥ë¤Î¥Æ¡¼¥Ö¥ë" + +#: ../lib/plugin/_WikiTranslation.php:73 +#, fuzzy +msgid "PageDump" +msgstr "¥Ú¡¼¥¸¥°¥ë¡¼¥×" + +#: ../lib/plugin/_WikiTranslation.php:74 +#, fuzzy +msgid "PageGroupTest" +msgstr "¥Ú¡¼¥¸¥°¥ë¡¼¥×" + +#: ../lib/plugin/_WikiTranslation.php:75 +#, fuzzy +msgid "PageGroupTestFour" +msgstr "¥Ú¡¼¥¸¥°¥ë¡¼¥×" + +#: ../lib/plugin/_WikiTranslation.php:76 +#, fuzzy +msgid "PageGroupTestOne" +msgstr "¥Ú¡¼¥¸¥°¥ë¡¼¥×" + +#: ../lib/plugin/_WikiTranslation.php:77 +#, fuzzy +msgid "PageGroupTestThree" +msgstr "¥Ú¡¼¥¸¥°¥ë¡¼¥×" + +#: ../lib/plugin/_WikiTranslation.php:78 +#, fuzzy +msgid "PageGroupTestTwo" +msgstr "¥Ú¡¼¥¸¥°¥ë¡¼¥×" + +#: ../lib/plugin/_WikiTranslation.php:80 +#, fuzzy +msgid "PhotoAlbumPlugin" +msgstr "¥Õ¥©¥È¥¢¥ë¥Ð¥à" + +#: ../lib/plugin/_WikiTranslation.php:81 +#, fuzzy +msgid "PhpHighlightPlugin" +msgstr "PHP¥Ï¥¤¥é¥¤¥È" + +#: ../lib/plugin/_WikiTranslation.php:82 +msgid "PhpWeatherPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:83 +msgid "PhpWiki" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:84 +msgid "PhpWikiAdministration/Chmod" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:85 +msgid "PhpWikiAdministration/Remove" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:86 +msgid "PhpWikiAdministration/Rename" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:87 +msgid "PhpWikiAdministration/Replace" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:88 +msgid "PhpWikiDocumentation" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:89 +msgid "PhpWikiPoll" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:90 +#, fuzzy +msgid "RawHtmlPlugin" +msgstr "¥×¥é¥°¥¤¥ó" + +#: ../lib/plugin/_WikiTranslation.php:91 +msgid "RecentVisitors" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:92 +#, fuzzy +msgid "RedirectToPlugin" +msgstr "žÁ÷" + +#: ../lib/plugin/_WikiTranslation.php:93 +msgid "ReleaseNotes" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:94 +#, fuzzy +msgid "RichTablePlugin" +msgstr "Í­¸ú¤Ê¥×¥é¥°¥¤¥ó°ìÍ÷" + +#: ../lib/plugin/_WikiTranslation.php:95 +msgid "SteveWainstead" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:96 +#, fuzzy +msgid "SystemInfoPlugin" +msgstr "¥·¥¹¥Æ¥à¾ðÊó" -#: ../lib/plugin/WikiForm.php:81 -msgid "Dump Pages" +#: ../lib/plugin/_WikiTranslation.php:97 +msgid "TranscludePlugin" msgstr "" -#: ../lib/plugin/WikiForm.php:89 -msgid "Dump Pages as XHTML" -msgstr "XHTML¤Ç½ÐÎÏ" +#: ../lib/plugin/_WikiTranslation.php:99 +msgid "UnfoldSubpagesPlugin" +msgstr "" -#: ../lib/plugin/WikiForm.php:100 -msgid "Upload" +#: ../lib/plugin/_WikiTranslation.php:100 +#, fuzzy +msgid "UpLoad" msgstr "¥¢¥Ã¥×¥í¡¼¥É" -#: ../lib/plugin/WikiForm.php:104 -#, c-format -msgid "WikiForm: %s: unknown action" -msgstr "WikiForm: '%s' ¤Ï̤ÃΤÎÁàºî¤Ç¤¹¡£" +#: ../lib/plugin/_WikiTranslation.php:101 +msgid "WabiSabi" +msgstr "" -#: ../lib/plugin/_BackendInfo.php:30 -#: ../themes/Portland/templates/actionbar.tmpl:21 -#: ../themes/default/templates/actionbar.tmpl:31 -msgid "DebugInfo" -msgstr "¥Ç¥Ð¥°¾ðÊó" +#: ../lib/plugin/_WikiTranslation.php:102 +#, fuzzy +msgid "WikiBlogPlugin" +msgstr "¥×¥é¥°¥¤¥ó" -#: ../lib/plugin/_BackendInfo.php:34 -#, c-format -msgid "Get debugging information for %s." -msgstr "" +#: ../lib/plugin/_WikiTranslation.php:103 +#, fuzzy +msgid "WikiPlugin" +msgstr "¥×¥é¥°¥¤¥ó" -#: ../lib/plugin/_BackendInfo.php:54 -#, c-format -msgid "Querying backend directly for '%s'" +#: ../lib/plugin/_WikiTranslation.php:104 +#: ../themes/default/templates/head.tmpl:70 +msgid "WikiWikiWeb" msgstr "" -#: ../lib/plugin/_BackendInfo.php:64 -#, c-format -msgid "No pagedata for %s" +#: ../lib/plugin/_WikiTranslation.php:113 +msgid "_WikiTranslation" msgstr "" -#: ../lib/plugin/_BackendInfo.php:95 -msgid "" +#: ../lib/plugin/_WikiTranslation.php:117 +msgid "Show translations of various words or pages" msgstr "" -#: ../lib/plugin/_BackendInfo.php:95 -msgid "" +#: ../lib/plugin/_WikiTranslation.php:266 +#, c-format +msgid "" +"TODO: Google can only translate from english and french. Find a translation " +"service for %s to language %s" msgstr "" -#: ../lib/plugin/_PreferencesInfo.php:30 -#: ../themes/default/templates/userprefs.tmpl:12 -msgid "PreferencesInfo" -msgstr "" +#: ../lib/plugin/_WikiTranslation.php:270 +#, fuzzy, c-format +msgid "%s is empty" +msgstr "%s ¤¬¶õ¤Ç¤¹¡£" -#: ../lib/plugin/_PreferencesInfo.php:34 +#: ../lib/plugin/_WikiTranslation.php:360 #, c-format -msgid "Get preferences information for current user %s." +msgid "Define the translation for %s in %s" msgstr "" #: ../lib/plugin/text2png.php:46 @@ -2144,122 +3646,163 @@ msgstr "" msgid "Remove page" msgstr "¥Ú¡¼¥¸ºï½ü" -#: ../lib/stdlib.php:233 ../lib/stdlib.php:252 +#: ../lib/stdlib.php:234 ../lib/stdlib.php:253 msgid "BAD URL -- remove all of <, >, \"" msgstr "" -#: ../lib/stdlib.php:313 +#: ../lib/stdlib.php:314 msgid "BAD phpwiki: URL" msgstr "" -#: ../lib/stdlib.php:351 +#: ../lib/stdlib.php:352 msgid "Lock page to enable link" msgstr "" -#: ../lib/stdlib.php:450 +#: ../lib/stdlib.php:451 #, c-format msgid "'%s': Bad page name: %s" msgstr "" -#: ../lib/stdlib.php:487 +#: ../lib/stdlib.php:488 msgid "White space converted to single space" msgstr "" -#: ../lib/stdlib.php:492 +#: ../lib/stdlib.php:493 msgid "Control characters not allowed" msgstr "" -#: ../lib/stdlib.php:501 +#: ../lib/stdlib.php:502 #, c-format msgid "Leading %s not allowed" msgstr "" -#: ../lib/stdlib.php:504 +#: ../lib/stdlib.php:505 msgid "';' and ':' in pagenames are deprecated" msgstr "" -#: ../lib/stdlib.php:508 +#: ../lib/stdlib.php:509 msgid "too long" msgstr "Ť¹¤®¤Þ¤¹¡£" -#: ../lib/stdlib.php:513 +#: ../lib/stdlib.php:514 msgid "illegal pagename" msgstr "¥Ú¡¼¥¸Ì¾¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó¡£" -#: ../lib/stdlib.php:755 +#: ../lib/stdlib.php:756 msgid "Revision Not Found" msgstr "¥ê¥Ó¥¸¥ç¥ó¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: ../lib/stdlib.php:756 +#: ../lib/stdlib.php:757 #, c-format msgid "I'm sorry. Version %d of %s is not in the database." msgstr "" -#: ../lib/stdlib.php:759 +#: ../lib/stdlib.php:760 msgid "Bad Version" msgstr "¥Ð¡¼¥¸¥ç¥ó¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó¡£" -#: ../lib/stdlib.php:976 +#: ../lib/stdlib.php:896 +msgid "-???" +msgstr "" + +#: ../lib/stdlib.php:899 +#, fuzzy, c-format +msgid "%s b" +msgstr "%s ¥Ð¥¤¥È" + +#: ../lib/stdlib.php:901 ../themes/smaller/templates/info.tmpl:29 +#, c-format +msgid "%s bytes" +msgstr "%s ¥Ð¥¤¥È" + +#: ../lib/stdlib.php:906 +#, c-format +msgid "%s k" +msgstr "" + +#: ../lib/stdlib.php:908 ../themes/smaller/templates/info.tmpl:32 +#, c-format +msgid "%s Kb (%s bytes)" +msgstr "%s ¥­¥í¥Ð¥¤¥È(%s ¥Ð¥¤¥È)" + +#: ../lib/stdlib.php:1004 #, c-format msgid "%s: argument index out of range" msgstr "" -#: ../lib/stdlib.php:1016 ../themes/Hawaiian/lib/random.php:20 +#: ../lib/stdlib.php:1073 ../themes/Hawaiian/lib/random.php:20 #, c-format msgid "%s is empty." msgstr "%s ¤¬¶õ¤Ç¤¹¡£" -#: ../lib/stdlib.php:1023 +#: ../lib/stdlib.php:1080 #, c-format msgid "Unable to open directory '%s' for reading" msgstr "" -#: ../lib/ziplib.php:197 +#: ../lib/upgrade.php:134 +msgid "Upgrade disabled: user != isAdmin" +msgstr "" + +#: ../lib/upgrade.php:138 +msgid "Upgrading this PhpWiki" +msgstr "" + +#: ../lib/ziplib.php:209 msgid "Can't inflate data: zlib support not enabled in this PHP" msgstr "" -#: ../lib/ziplib.php:387 +#: ../lib/ziplib.php:399 #, c-format msgid "Can't open zip file '%s' for reading" msgstr "" -#: ../lib/ziplib.php:394 +#: ../lib/ziplib.php:406 msgid "Unexpected EOF in zip file" msgstr "" -#: ../lib/ziplib.php:691 +#: ../lib/ziplib.php:703 #, c-format msgid "[%d] See [%s]" msgstr "" -#: ../lib/ziplib.php:699 +#: ../lib/ziplib.php:711 msgid "References" msgstr "»²¾È°ìÍ÷" -#: ../themes/Hawaiian/themeinfo.php:29 ../themes/MacOSX/themeinfo.php:97 +#: ../themes/Hawaiian/themeinfo.php:29 ../themes/MacOSX/themeinfo.php:104 #: ../themes/Portland/themeinfo.php:59 ../themes/Sidebar/themeinfo.php:32 -#: ../themes/SpaceWiki/themeinfo.php:43 +#: ../themes/SpaceWiki/themeinfo.php:43 ../themes/default/themeinfo.php:24 +#: ../themes/smaller/themeinfo.php:26 msgid "Printer" msgstr "¥×¥ê¥ó¥¿¡¼" -#: ../themes/Hawaiian/themeinfo.php:30 ../themes/MacOSX/themeinfo.php:98 -#: ../themes/Portland/themeinfo.php:60 ../themes/Sidebar/themeinfo.php:33 -#: ../themes/SpaceWiki/themeinfo.php:44 ../themes/default/themeinfo.php:26 +#: ../themes/Hawaiian/themeinfo.php:30 ../themes/Portland/themeinfo.php:60 +#: ../themes/Sidebar/themeinfo.php:33 ../themes/SpaceWiki/themeinfo.php:44 +#: ../themes/default/themeinfo.php:26 ../themes/smaller/themeinfo.php:28 msgid "Modern" msgstr "" +#: ../themes/MacOSX/themeinfo.php:105 ../themes/default/themeinfo.php:25 +#: ../themes/smaller/themeinfo.php:27 +msgid "Top & bottom toolbars" +msgstr "¾åÉô¤È²¼Éô¤Î¥Ä¡¼¥ë¥Ð¡¼" + #: ../themes/Portland/templates/actionbar.tmpl:8 msgid "EditText" msgstr "" #: ../themes/Portland/templates/actionbar.tmpl:8 #: ../themes/default/templates/actionbar.tmpl:5 +#: ../themes/smaller/templates/actionbar.tmpl:6 msgid "Edit Old Revision" msgstr "¸Å¤¤¥ê¥Ó¥¸¥ç¥ó¤òÊÔ½¸¤¹¤ë" #: ../themes/Portland/templates/actionbar.tmpl:10 #: ../themes/default/templates/actionbar.tmpl:7 -#: ../themes/default/templates/head.tmpl:46 +#: ../themes/default/templates/head.tmpl:45 +#: ../themes/smaller/templates/actionbar.tmpl:8 +#: ../themes/smaller/templates/info.tmpl:167 msgid "View Source" msgstr "¥½¡¼¥¹¤ò¸«¤ë" @@ -2289,22 +3832,24 @@ msgstr "" msgid "View the current version" msgstr "¸½ºß¤Î¥Ð¡¼¥¸¥ç¥ó¤òɽ¼¨¤¹¤ë" +#: ../themes/Portland/templates/debug.tmpl:11 +#: ../themes/default/templates/debug.tmpl:18 +#, c-format +msgid "Page Execution took %s seconds" +msgstr "" + #: ../themes/Portland/templates/editpage.tmpl:46 -#: ../themes/default/templates/editpage.tmpl:41 +#: ../themes/default/templates/editpage.tmpl:40 msgid "Warning: You are editing an old revision." msgstr "·Ù¹ð: ¤¢¤Ê¤¿¤Ï¸Å¤¤¥ê¥Ó¥¸¥ç¥ó¤òÊÔ½¸¤·¤Æ¤¤¤Þ¤¹¡£" #: ../themes/Portland/templates/editpage.tmpl:47 -#: ../themes/default/templates/editpage.tmpl:42 +#: ../themes/default/templates/editpage.tmpl:41 msgid "Saving this page will overwrite the current version." msgstr "" -#: ../themes/Portland/templates/editpage.tmpl:60 -msgid "Summary" -msgstr "Í×Ìó" - #: ../themes/Portland/templates/editpage.tmpl:62 -#: ../themes/default/templates/editpage.tmpl:89 +#: ../themes/default/templates/editpage.tmpl:95 #, c-format msgid "Author will be logged as %s." msgstr "" @@ -2316,72 +3861,67 @@ msgid "" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:69 -#: ../themes/default/templates/userprefs.tmpl:158 +#: ../themes/default/templates/userprefs.tmpl:175 msgid "Edit Area Size" msgstr "ÊÔ½¸¥¨¥ê¥¢¤Î¥µ¥¤¥º" #: ../themes/Portland/templates/editpage.tmpl:69 -#: ../themes/default/templates/editpage.tmpl:63 +#: ../themes/default/templates/editpage.tmpl:69 msgid "H" msgstr "¹â¤µ" #: ../themes/Portland/templates/editpage.tmpl:71 -#: ../themes/default/templates/editpage.tmpl:64 +#: ../themes/default/templates/editpage.tmpl:70 msgid "W" msgstr "Éý" #: ../themes/Portland/templates/editpage.tmpl:73 -#: ../themes/default/templates/editpage.tmpl:65 +#: ../themes/default/templates/editpage.tmpl:71 msgid "Adjust" msgstr "Ä´À°" #: ../themes/Portland/templates/editpage.tmpl:75 -#: ../themes/default/templates/editpage.tmpl:78 +#: ../themes/default/templates/editpage.tmpl:84 msgid "Use old markup" msgstr "¸Å¤¤¥Þ¡¼¥¯¥¢¥Ã¥×¤ò»ÈÍÑ" #: ../themes/Portland/templates/editpage.tmpl:80 -#: ../themes/default/templates/editpage.tmpl:25 +#: ../themes/default/templates/editpage.tmpl:24 msgid "Preview only! Changes not saved." msgstr "¥×¥ì¥Ó¥å¡¼¤·¤Æ¤¤¤ë¤À¤±¤Ç¤¹! ¤Þ¤ÀÊݸ¤Ï¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£" #: ../themes/Portland/templates/editpage.tmpl:103 #: ../themes/Portland/templates/editpage.tmpl:108 -#: ../themes/default/templates/editpage.tmpl:120 -#: ../themes/default/templates/editpage.tmpl:125 +#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:131 #, c-format msgid "See %s tips for editing." msgstr "" #: ../themes/Portland/templates/editpage.tmpl:103 #: ../themes/Portland/templates/editpage.tmpl:108 -#: ../themes/default/templates/editpage.tmpl:120 -#: ../themes/default/templates/editpage.tmpl:125 +#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:131 msgid "GoodStyle" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:104 -#: ../themes/default/templates/editpage.tmpl:121 +#: ../themes/default/templates/editpage.tmpl:127 msgid "OldTextFormattingRules" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:104 #: ../themes/Portland/templates/editpage.tmpl:109 -#: ../themes/default/templates/editpage.tmpl:121 -#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:127 +#: ../themes/default/templates/editpage.tmpl:132 msgid "Synopsis" msgstr "Í×Ìó" #: ../themes/Portland/templates/editpage.tmpl:109 -#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:132 msgid "TextFormattingRules" msgstr "" -#: ../themes/Portland/templates/navbar.tmpl:8 -#: ../themes/default/templates/navbar.tmpl:11 -msgid "FindPage" -msgstr "¥Ú¡¼¥¸¸¡º÷" - #: ../themes/Portland/templates/viewsource.tmpl:6 #: ../themes/default/templates/viewsource.tmpl:6 msgid "This page has been locked by the administrator and cannot be edited." @@ -2395,13 +3935,30 @@ msgstr " msgid "diff" msgstr "º¹Ê¬" +#: ../themes/default/templates/actionbar.tmpl:35 +#: ../themes/smaller/templates/actionbar.tmpl:38 +#: ../themes/smaller/templates/info.tmpl:178 +#, fuzzy +msgid "PurgeHtmlCache" +msgstr "¥Þ¡¼¥¯¥¢¥Ã¥×¥­¥ã¥Ã¥·¥å¤ÎÇË´þ" + +#: ../themes/default/templates/actionbar.tmpl:36 +#: ../themes/smaller/templates/actionbar.tmpl:39 +#: ../themes/smaller/templates/info.tmpl:179 +msgid "" +"Purge HTML cache for this page. Regenerate from WikiMarkup when next " +"accessed." +msgstr "" + #: ../themes/default/templates/blogform.tmpl:10 msgid "Add a Comment" msgstr "¥³¥á¥ó¥ÈÄɲÃ" #: ../themes/default/templates/blogform.tmpl:12 -#: ../themes/default/templates/editpage.tmpl:71 -#: ../themes/default/templates/info.tmpl:78 +#: ../themes/default/templates/editpage.tmpl:77 +#: ../themes/default/templates/forum-thread.tmpl:39 +#: ../themes/default/templates/info.tmpl:72 +#: ../themes/smaller/templates/info.tmpl:78 msgid "Summary:" msgstr "Í×Ìó" @@ -2409,164 +3966,240 @@ msgstr " msgid "Comment:" msgstr "¥³¥á¥ó¥È" -#: ../themes/default/templates/debug.tmpl:23 +#: ../themes/default/templates/comment.tmpl:18 +#: ../themes/default/templates/wikiblog.tmpl:19 #, c-format -msgid "Page Execution took %s seconds" +msgid "Comment modified on %s by %s" msgstr "" +#: ../themes/default/templates/comment.tmpl:28 +#, fuzzy, c-format +msgid "%s by %s" +msgstr "%s ¥Ð¥¤¥È" + #: ../themes/default/templates/dialog.tmpl:18 msgid "Dialog" msgstr "¥À¥¤¥¢¥í¥°" -#: ../themes/default/templates/editpage.tmpl:29 +#: ../themes/default/templates/editpage.tmpl:28 #, c-format msgid "" "Please continue editing. (You'll find your %s at the bottom of the page.)" msgstr "ÊÔ½¸¤ò³¤±¤Æ²¼¤µ¤¤¡£ (%s ¤Î¥Ú¡¼¥¸¤Î²¼Éô¤â¸«¤Æ¤¯¤À¤µ¤¤)" -#: ../themes/default/templates/editpage.tmpl:30 +#: ../themes/default/templates/editpage.tmpl:29 msgid "edit area" msgstr "ÊÔ½¸¥¨¥ê¥¢" -#: ../themes/default/templates/editpage.tmpl:62 +#: ../themes/default/templates/editpage.tmpl:68 msgid "Edit Area Size:" msgstr "ÊÔ½¸¥¨¥ê¥¢¥µ¥¤¥º" -#: ../themes/default/templates/editpage.tmpl:77 +#: ../themes/default/templates/editpage.tmpl:83 msgid "This is a minor change." msgstr "" -#: ../themes/default/templates/head.tmpl:32 -#: ../themes/default/templates/htmldump.tmpl:25 -msgid "The PhpWiki Programming Team" -msgstr "PukiWiki¥×¥í¥°¥é¥ß¥ó¥°¥Á¡¼¥à" +#: ../themes/default/templates/forum-thread.tmpl:19 +#: ../themes/default/templates/forum-topics.tmpl:18 +msgid "New Topic" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:19 +#: ../themes/default/templates/forum-thread.tmpl:37 +msgid "Post new" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:21 +msgid "Message" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:27 +#, fuzzy, c-format +msgid "Posted: %s" +msgstr "Êݸ¤·¤Þ¤·¤¿: 5s" + +#: ../themes/default/templates/forum-thread.tmpl:28 +#: ../themes/default/templates/forum-thread.tmpl:43 +msgid "Reply" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:21 +msgid "Topics" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:22 +msgid "Replies" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:24 +msgid "Views" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:25 +#, fuzzy +msgid "Last Post" +msgstr "ºÇ¸å¤Ø" + +#: ../themes/default/templates/head.tmpl:31 +msgid "HowToUseWiki" +msgstr "" + +#: ../themes/default/templates/head.tmpl:68 +msgid "SandBox" +msgstr "" -#: ../themes/default/templates/info.tmpl:29 +#: ../themes/default/templates/homepage.tmpl:10 #, c-format -msgid "%s bytes" -msgstr "%s ¥Ð¥¤¥È" +msgid "You can personalize various settings in %s." +msgstr "" + +#: ../themes/default/templates/homepage.tmpl:13 +msgid "(Your preferences are stored as hidden data within this page)." +msgstr "" -#: ../themes/default/templates/info.tmpl:32 +#: ../themes/default/templates/homepage.tmpl:16 #, c-format -msgid "%s Kb (%s bytes)" -msgstr "%s ¥­¥í¥Ð¥¤¥È(%s ¥Ð¥¤¥È)" +msgid "The %s subpage enables simple weblogging." +msgstr "" -#: ../themes/default/templates/info.tmpl:37 +#: ../themes/default/templates/homepage.tmpl:37 +#, fuzzy +msgid "CategoryHomepage" +msgstr "¥Û¡¼¥à¥Ú¡¼¥¸ºîÀ®:" + +#: ../themes/default/templates/info.tmpl:31 +#: ../themes/smaller/templates/info.tmpl:37 msgid "1 word" msgstr "" -#: ../themes/default/templates/info.tmpl:39 +#: ../themes/default/templates/info.tmpl:33 +#: ../themes/smaller/templates/info.tmpl:39 #, c-format msgid "%s words" msgstr "" -#: ../themes/default/templates/info.tmpl:43 +#: ../themes/default/templates/info.tmpl:37 +#: ../themes/smaller/templates/info.tmpl:43 #, c-format msgid "Version %s" msgstr "¥Ð¡¼¥¸¥ç¥ó %s" -#: ../themes/default/templates/info.tmpl:44 +#: ../themes/default/templates/info.tmpl:38 +#: ../themes/smaller/templates/info.tmpl:44 msgid "Original (1.2 or 1.0)" msgstr "" -#: ../themes/default/templates/info.tmpl:71 +#: ../themes/default/templates/info.tmpl:65 +#: ../themes/smaller/templates/info.tmpl:71 msgid "Last Modified:" msgstr "ºÇ½ª¹¹¿·Æü»þ" -#: ../themes/default/templates/info.tmpl:72 +#: ../themes/default/templates/info.tmpl:66 +#: ../themes/smaller/templates/info.tmpl:72 msgid "Last Author:" msgstr "ºÇ½ªÊÔ½¸¼Ô" -#: ../themes/default/templates/info.tmpl:73 +#: ../themes/default/templates/info.tmpl:67 +#: ../themes/smaller/templates/info.tmpl:73 msgid "Last Summary:" msgstr "ºÇ½ª³µÍ×" -#: ../themes/default/templates/info.tmpl:76 +#: ../themes/default/templates/info.tmpl:70 +#: ../themes/smaller/templates/info.tmpl:76 msgid "Saved on:" msgstr "" -#: ../themes/default/templates/info.tmpl:77 +#: ../themes/default/templates/info.tmpl:71 +#: ../themes/smaller/templates/info.tmpl:77 msgid "Author:" msgstr "ÊÔ½¸¼Ô:" -#: ../themes/default/templates/info.tmpl:81 +#: ../themes/default/templates/info.tmpl:75 +#: ../themes/smaller/templates/info.tmpl:81 #, c-format msgid "Statistics about %s." msgstr "" -#: ../themes/default/templates/info.tmpl:92 +#: ../themes/default/templates/info.tmpl:86 +#: ../themes/smaller/templates/info.tmpl:92 msgid "Supplanted on:" msgstr "" -#: ../themes/default/templates/info.tmpl:109 +#: ../themes/default/templates/info.tmpl:103 +#: ../themes/smaller/templates/info.tmpl:109 msgid "Page Version:" msgstr "¥Ú¡¼¥¸¥Ð¡¼¥¸¥ç¥ó:" -#: ../themes/default/templates/info.tmpl:113 +#: ../themes/default/templates/info.tmpl:107 +#: ../themes/smaller/templates/info.tmpl:113 msgid "Markup:" msgstr "¥Þ¡¼¥¯¥¢¥Ã¥×:" -#: ../themes/default/templates/info.tmpl:117 +#: ../themes/default/templates/info.tmpl:111 +#: ../themes/smaller/templates/info.tmpl:117 msgid "Size:" msgstr "¥µ¥¤¥º:" -#: ../themes/default/templates/info.tmpl:122 +#: ../themes/default/templates/info.tmpl:116 +#: ../themes/smaller/templates/info.tmpl:122 msgid "Hits:" msgstr "¥Ò¥Ã¥È¿ô:" -#: ../themes/default/templates/info.tmpl:139 +#: ../themes/default/templates/info.tmpl:133 +#: ../themes/smaller/templates/info.tmpl:139 msgid "home page" msgstr "¥Û¡¼¥à¥Ú¡¼¥¸" -#: ../themes/default/templates/info.tmpl:142 +#: ../themes/default/templates/info.tmpl:136 +#: ../themes/smaller/templates/info.tmpl:142 msgid "User page" msgstr "¥æ¡¼¥¶¡¼¥Ú¡¼¥¸" -#: ../themes/default/templates/info.tmpl:145 +#: ../themes/default/templates/info.tmpl:139 +#: ../themes/smaller/templates/info.tmpl:145 msgid "Action page" msgstr "Áàºî¥Ú¡¼¥¸" -#: ../themes/default/templates/info.tmpl:148 +#: ../themes/default/templates/info.tmpl:142 +#: ../themes/smaller/templates/info.tmpl:148 msgid "Blog page" msgstr "Blog¥Ú¡¼¥¸" -#: ../themes/default/templates/info.tmpl:154 +#: ../themes/default/templates/info.tmpl:148 +#: ../themes/smaller/templates/info.tmpl:154 msgid "Subpage" msgstr "¥µ¥Ö¥Ú¡¼¥¸" -#: ../themes/default/templates/info.tmpl:159 +#: ../themes/default/templates/info.tmpl:153 +#: ../themes/smaller/templates/info.tmpl:159 msgid "Page Type:" msgstr "¥Ú¡¼¥¸¤Î¼ïÎà<:" -#: ../themes/default/templates/login.tmpl:18 +#: ../themes/default/templates/login.tmpl:35 #, c-format msgid "" -"You may sign in using any WikiWord as a UserId. (%s etc. may be used too). " -"The UserId will be used as a link in RecentChanges to your UserId page, your " -"HomePage." +"You may sign in using any [WikiWord|AddingPages] as a user id. (Any " +"characters in %s etc. may be used too). The user id will be used as a link " +"in RecentChanges to your home page." msgstr "" -#: ../themes/default/templates/login.tmpl:20 +#: ../themes/default/templates/login.tmpl:51 msgid "New users may use an empty password." msgstr "" -#: ../themes/default/templates/login.tmpl:28 +#: ../themes/default/templates/login.tmpl:58 msgid "UserId:" msgstr "¥æ¡¼¥¶¡¼ID:" -#: ../themes/default/templates/login.tmpl:32 +#: ../themes/default/templates/login.tmpl:62 msgid "Password:" msgstr "¥Ñ¥¹¥ï¡¼¥É:" -#: ../themes/default/templates/login.tmpl:40 -msgid "Create Homepage:" -msgstr "¥Û¡¼¥à¥Ú¡¼¥¸ºîÀ®:" - -#: ../themes/default/templates/navbar.tmpl:33 +#: ../themes/default/templates/navbar.tmpl:34 msgid "Today" msgstr "º£Æü" -#: ../themes/default/templates/navbar.tmpl:36 +#: ../themes/default/templates/navbar.tmpl:37 msgid "Admin" msgstr "´ÉÍý" @@ -2578,6 +4211,72 @@ msgstr " msgid "You have not made any changes so no new version has been saved." msgstr "" +#: ../themes/default/templates/online.tmpl:8 +#: ../themes/default/templates/online.tmpl:16 +#: ../themes/default/templates/online.tmpl:58 +msgid "Who Is Online" +msgstr "" + +#: ../themes/default/templates/online.tmpl:16 +msgid "Switch to detailed list" +msgstr "" + +#: ../themes/default/templates/online.tmpl:22 +#, c-format +msgid "Our users created a total of %d pages." +msgstr "" + +#: ../themes/default/templates/online.tmpl:23 +#, c-format +msgid "We have a total of %d registered users." +msgstr "" + +#: ../themes/default/templates/online.tmpl:24 +#, c-format +msgid "The newest registered user is %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:28 +#, c-format +msgid "" +"In total there are %d user sessions online :: Unique %d Registered and %d " +"Guests" +msgstr "" + +#: ../themes/default/templates/online.tmpl:30 +#, c-format +msgid "Most users ever online was %d at %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:31 +msgid "Registered Users Online: " +msgstr "" + +#: ../themes/default/templates/online.tmpl:42 +msgid "Admin is also online." +msgstr "" + +#: ../themes/default/templates/online.tmpl:46 +#, c-format +msgid "This data is based on users active over the past %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:50 +msgid "Sorry, no dynamic DB Session support." +msgstr "" + +#: ../themes/default/templates/online.tmpl:58 +msgid "Switch to summary" +msgstr "" + +#: ../themes/default/templates/online.tmpl:62 +msgid "Registered Users" +msgstr "" + +#: ../themes/default/templates/online.tmpl:77 +msgid "Guests" +msgstr "" + #: ../themes/default/templates/redirect.tmpl:19 #: ../themes/default/templates/redirect.tmpl:40 msgid "Redirect" @@ -2601,195 +4300,243 @@ msgstr "" msgid "Warning!" msgstr "·Ù¹ð!" -#: ../themes/default/templates/signin.tmpl:17 +#: ../themes/default/templates/signin.tmpl:19 +#: ../themes/smaller/templates/signin.tmpl:33 #, c-format msgid "You are signed in as %s" msgstr "%s ¤È¤·¤Æ¥µ¥¤¥ó¥¤¥ó¤·¤Þ¤·¤¿" -#: ../themes/default/templates/signin.tmpl:37 +#: ../themes/default/templates/signin.tmpl:40 +#: ../themes/smaller/templates/signin.tmpl:53 msgid "Enter your UserId to sign in" msgstr "¥æ¡¼¥¶¡¼ID¤òÆþÎϤ·¤Æ¥µ¥¤¥ó¥¤¥ó¤·¤Æ¤¯¤À¤µ¤¤¡£" -#: ../themes/default/templates/userprefs.tmpl:51 -#: ../themes/default/templates/userprefs.tmpl:53 +#: ../themes/default/templates/signin.tmpl:55 +#, fuzzy +msgid "Sign in as:" +msgstr "¥µ¥¤¥ó¥¤¥ó" + +#: ../themes/default/templates/userprefs.tmpl:12 +#, fuzzy +msgid "_PreferencesInfo" +msgstr "¥æ¡¼¥¶¡¼ÀßÄê" + +#: ../themes/default/templates/userprefs.tmpl:54 +#: ../themes/default/templates/userprefs.tmpl:56 msgid "" msgstr "<¥·¥¹¥Æ¥à¥Æ¡¼¥Þ>" -#: ../themes/default/templates/userprefs.tmpl:62 -msgid "Select your personal theme:" -msgstr "¤¢¤Ê¤¿¤Î¸Ä¿Í¤Î¥Æ¡¼¥Þ¤òÁªÂò:" +#: ../themes/default/templates/userprefs.tmpl:65 +#: ../themes/default/templates/userprefs.tmpl:91 +msgid "Personal theme:" +msgstr "¸Ä¿Í¥Æ¡¼¥Þ" -#: ../themes/default/templates/userprefs.tmpl:68 -#: ../themes/default/templates/userprefs.tmpl:70 +#: ../themes/default/templates/userprefs.tmpl:71 +#: ../themes/default/templates/userprefs.tmpl:73 msgid "" msgstr "<¥·¥¹¥Æ¥à¸À¸ì>" -#: ../themes/default/templates/userprefs.tmpl:79 -msgid "Select your personal language:" -msgstr "µ®Êý¸Ä¿Í¤Î¸À¸ì¤òÁªÂò" - -#: ../themes/default/templates/userprefs.tmpl:88 -msgid "Personal theme:" -msgstr "¸Ä¿Í¥Æ¡¼¥Þ" - -#: ../themes/default/templates/userprefs.tmpl:89 +#: ../themes/default/templates/userprefs.tmpl:82 +#: ../themes/default/templates/userprefs.tmpl:92 msgid "Personal language:" msgstr "¸Ä¿Í¸À¸ì" -#: ../themes/default/templates/userprefs.tmpl:104 +#: ../themes/default/templates/userprefs.tmpl:108 msgid "UserId" msgstr "¥æ¡¼¥¶¡¼ID" -#: ../themes/default/templates/userprefs.tmpl:106 -msgid "Password" -msgstr "¥Ñ¥¹¥ï¡¼¥É" - -#: ../themes/default/templates/userprefs.tmpl:108 +#: ../themes/default/templates/userprefs.tmpl:112 msgid "Auth Level" msgstr "ǧ¾Ú¥ì¥Ù¥ë" -#: ../themes/default/templates/userprefs.tmpl:108 +#: ../themes/default/templates/userprefs.tmpl:112 msgid "Auth Method" msgstr "ǧ¾ÚÊýË¡" -#: ../themes/default/templates/userprefs.tmpl:110 +#: ../themes/default/templates/userprefs.tmpl:114 msgid "E-Mail" msgstr "¥á¡¼¥ë" -#: ../themes/default/templates/userprefs.tmpl:111 -msgid "Notify" -msgstr "ÄÌÃÎ" - -#: ../themes/default/templates/userprefs.tmpl:112 +#: ../themes/default/templates/userprefs.tmpl:116 msgid "Theme" msgstr "¥Æ¡¼¥Þ" -#: ../themes/default/templates/userprefs.tmpl:112 +#: ../themes/default/templates/userprefs.tmpl:116 msgid "Current Theme" msgstr "" -#: ../themes/default/templates/userprefs.tmpl:113 +#: ../themes/default/templates/userprefs.tmpl:117 msgid "Language" msgstr "¸À¸ì" -#: ../themes/default/templates/userprefs.tmpl:113 +#: ../themes/default/templates/userprefs.tmpl:117 msgid "Current Language" msgstr "¸½ºß¤Î¸À¸ì" -#: ../themes/default/templates/userprefs.tmpl:118 +#: ../themes/default/templates/userprefs.tmpl:122 msgid "Change Password" msgstr "¥Ñ¥¹¥ï¡¼¥ÉÊѹ¹" -#: ../themes/default/templates/userprefs.tmpl:119 +#: ../themes/default/templates/userprefs.tmpl:124 msgid "New password" msgstr "¿·µ¬¥Ñ¥¹¥ï¡¼¥É" -#: ../themes/default/templates/userprefs.tmpl:120 +#: ../themes/default/templates/userprefs.tmpl:126 msgid "Type it again" msgstr "¤â¤¦°ìÅÙÆþÎÏ" -#: ../themes/default/templates/userprefs.tmpl:123 -msgid "Email Notification" -msgstr "¥á¡¼¥ëÄÌÃÎ" +#: ../themes/default/templates/userprefs.tmpl:131 +#, fuzzy +msgid "E-mail" +msgstr "¥á¡¼¥ë" -#: ../themes/default/templates/userprefs.tmpl:124 +#: ../themes/default/templates/userprefs.tmpl:132 msgid "Your E-Mail:" msgstr "¤¢¤Ê¤¿¤Î¥á¡¼¥ë¥¢¥É¥ì¥¹:" -#: ../themes/default/templates/userprefs.tmpl:131 +#: ../themes/default/templates/userprefs.tmpl:139 msgid "Status:" msgstr "¾õ¶·:" -#: ../themes/default/templates/userprefs.tmpl:133 +#: ../themes/default/templates/userprefs.tmpl:141 msgid "Email verified." msgstr "¥á¡¼¥ë¥¢¥É¥ì¥¹¤ò³Îǧ½ÐÍè¤Þ¤·¤¿¡£" -#: ../themes/default/templates/userprefs.tmpl:135 +#: ../themes/default/templates/userprefs.tmpl:143 msgid "Email not yet verified." msgstr "¥á¡¼¥ë¥¢¥É¥ì¥¹¤ò³Îǧ½ÐÍè¤Þ¤»¤ó¤Ç¤·¤¿¡£" -#: ../themes/default/templates/userprefs.tmpl:138 +#: ../themes/default/templates/userprefs.tmpl:146 msgid "Note, that user accounts with bouncing emails will be disabled." msgstr "" -#: ../themes/default/templates/userprefs.tmpl:139 +#: ../themes/default/templates/userprefs.tmpl:152 msgid "Get an email notification at changes of the following pages:" msgstr "" -#: ../themes/default/templates/userprefs.tmpl:143 +#: ../themes/default/templates/userprefs.tmpl:155 msgid "" "Enter pages seperated by space or comma. Wildcards (fileglobbing) allowed." msgstr "" -#: ../themes/default/templates/userprefs.tmpl:149 +#: ../themes/default/templates/userprefs.tmpl:160 msgid "Appearance" msgstr "³°´Ñ" -#: ../themes/default/templates/userprefs.tmpl:151 -msgid "Default system theme:" -msgstr "¥Ç¥Õ¥©¥ë¥È¥·¥¹¥Æ¥à¥Æ¡¼¥Þ" - -#: ../themes/default/templates/userprefs.tmpl:151 -msgid "Default system language:" -msgstr "¥Ç¥Õ¥©¥ë¥È¥·¥¹¥Æ¥à¸À¸ì" - -#: ../themes/default/templates/userprefs.tmpl:156 +#: ../themes/default/templates/userprefs.tmpl:161 msgid "" "Here you can override site-specific default values. Currently not " "recommended!" msgstr "" -#: ../themes/default/templates/userprefs.tmpl:159 +#: ../themes/default/templates/userprefs.tmpl:166 +#: ../themes/default/templates/userprefs.tmpl:169 +msgid "System default:" +msgstr "" + +#: ../themes/default/templates/userprefs.tmpl:170 +#, fuzzy, c-format +msgid "Hide %s:" +msgstr "¥Ò¥Ã¥È¿ô:" + +#: ../themes/default/templates/userprefs.tmpl:172 +msgid "" +"Hide or show LinkIcons (if supported by the current theme). Useful for text-" +"only browsers or slow connections." +msgstr "" + +#: ../themes/default/templates/userprefs.tmpl:176 msgid "Height" msgstr "¹â¤µ" -#: ../themes/default/templates/userprefs.tmpl:166 +#: ../themes/default/templates/userprefs.tmpl:183 msgid "Width" msgstr "Éý" -#: ../themes/default/templates/userprefs.tmpl:174 +#: ../themes/default/templates/userprefs.tmpl:191 msgid "" "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." msgstr "" -#: ../themes/default/templates/userprefs.tmpl:176 +#: ../themes/default/templates/userprefs.tmpl:193 msgid "Time Zone" msgstr "¥¿¥¤¥à¥¾¡¼¥ó" -#: ../themes/default/templates/userprefs.tmpl:178 +#: ../themes/default/templates/userprefs.tmpl:195 #, c-format msgid "Add %s hours to the server's local time when reporting times." msgstr "" -#: ../themes/default/templates/userprefs.tmpl:182 +#: ../themes/default/templates/userprefs.tmpl:199 #, c-format msgid "The current time at the server is %s." msgstr "" -#: ../themes/default/templates/userprefs.tmpl:184 +#: ../themes/default/templates/userprefs.tmpl:201 #, c-format msgid "With the current offset, this would be reported as %s." msgstr "" -#: ../themes/default/templates/userprefs.tmpl:188 +#: ../themes/default/templates/userprefs.tmpl:205 msgid "Date Format" msgstr "¥Ç¡¼¥¿¥Õ¥©¡¼¥Þ¥Ã¥È" -#: ../themes/default/templates/userprefs.tmpl:190 -msgid "Show relative dates using 'Today' and 'Yesterday'." +#: ../themes/default/templates/userprefs.tmpl:207 +msgid "Show relative dates using 'Today' and 'Yesterday'" msgstr "" -#: ../themes/default/templates/userprefs.tmpl:195 +#: ../themes/default/templates/userprefs.tmpl:213 msgid "Update Preferences" msgstr "ÀßÄê¤ò¹¹¿·¤·¤Þ¤·¤¿" -#: ../themes/default/templates/wikiblog.tmpl:19 -#, c-format -msgid "Comment modified on %s by %s" -msgstr "" +#: ../themes/smaller/templates/actionbar.tmpl:31 +#, fuzzy +msgid "Info" +msgstr "ÊÔ½¸¼Ô:" -#: ../themes/default/themeinfo.php:25 -msgid "Top & bottom toolbars" -msgstr "¾åÉô¤È²¼Éô¤Î¥Ä¡¼¥ë¥Ð¡¼" +#: ../themes/smaller/templates/info.tmpl:171 +#, fuzzy +msgid "Diff previous Revision" +msgstr "Á°¤Î¥ê¥Ó¥¸¥ç¥ó" + +#: ../themes/smaller/templates/info.tmpl:172 +#, fuzzy +msgid "Diff previous Author" +msgstr "Á°¤ÎÊÔ½¸¼Ô" + +#, fuzzy +#~ msgid "User-ID:" +#~ msgstr "¥æ¡¼¥¶¡¼ID:" + +#, fuzzy +#~ msgid "E-Mail:" +#~ msgstr "¥á¡¼¥ë" + +#, fuzzy +#~ msgid "First Name:" +#~ msgstr "ºÇ½é¤Ø" + +#, fuzzy +#~ msgid "Last Name:" +#~ msgstr "¥Ú¡¼¥¸Ì¾" + +#, fuzzy +#~ msgid "Send Notification:" +#~ msgstr "¥á¡¼¥ëÄÌÃÎ" + +#~ msgid "Selected" +#~ msgstr "ÁªÂò¤·¤Þ¤·¤¿" + +#~ msgid "The PhpWiki Programming Team" +#~ msgstr "PukiWiki¥×¥í¥°¥é¥ß¥ó¥°¥Á¡¼¥à" + +#~ msgid "Notify" +#~ msgstr "ÄÌÃÎ" + +#~ msgid "Default system theme:" +#~ msgstr "¥Ç¥Õ¥©¥ë¥È¥·¥¹¥Æ¥à¥Æ¡¼¥Þ" + +#~ msgid "Default system language:" +#~ msgstr "¥Ç¥Õ¥©¥ë¥È¥·¥¹¥Æ¥à¸À¸ì" diff --git a/locale/po/nl.po b/locale/po/nl.po index 8f46855cd..1a4885bee 100644 --- a/locale/po/nl.po +++ b/locale/po/nl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PhpWiki-1.3.4pre\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-02-15 22:43+0100\n" +"POT-Creation-Date: 2004-03-17 15:58+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen \n" "Language-Team: Dutch \n" @@ -18,153 +18,255 @@ msgstr "" "Date: 1998-05-26 11:26:28+0200\n" "From: \n" +#: ../lib/DB_Session.php:42 +#, c-format +msgid "" +"Your WikiDB DB backend '%s' cannot be used for DB_Session. Set " +"USE_DB_SESSION to false." +msgstr "" + #: ../lib/ErrorManager.php:172 #, c-format msgid "%s: error while handling error:" msgstr "" -#: ../lib/FileFinder.php:143 ../lib/loadsave.php:503 +#: ../lib/FileFinder.php:143 ../lib/loadsave.php:540 #, c-format msgid "%s: file not found" msgstr "" -#: ../lib/PageList.php:71 +#: ../lib/Google.php:157 +#, c-format +msgid "" +"You must first obtain a license key at %s to be able to use the Google API." +msgstr "" + +#: ../lib/Google.php:159 +msgid "It's free however." +msgstr "" + +#: ../lib/PageList.php:92 #, fuzzy, c-format msgid "Sort by %s" msgstr "door %s" -#: ../lib/PageList.php:133 +#: ../lib/PageList.php:126 +msgid "Click to sort" +msgstr "" + +#: ../lib/PageList.php:131 +msgid "Click to reverse sort order" +msgstr "" + +#: ../lib/PageList.php:139 +#, fuzzy, c-format +msgid "Click to sort by %s" +msgstr "door %s" + +#: ../lib/PageList.php:212 msgid "Click to de-/select all pages" msgstr "" -#: ../lib/PageList.php:187 ../lib/PageList.php:484 +#: ../lib/PageList.php:267 ../lib/PageList.php:669 #, fuzzy msgid "Remove" msgstr "Verwijder Pagina" -#: ../lib/PageList.php:211 ../lib/plugin/UnfoldSubpages.php:170 +#: ../lib/PageList.php:283 +msgid "This page already exists" +msgstr "" + +#: ../lib/PageList.php:297 ../lib/plugin/UnfoldSubpages.php:158 #, c-format msgid " ... first %d bytes" msgstr "" -#: ../lib/PageList.php:215 +#: ../lib/PageList.php:302 #, c-format msgid " ... around %s" msgstr "" -#: ../lib/PageList.php:237 +#: ../lib/PageList.php:325 #, fuzzy, c-format msgid "%s not found" msgstr "Sidan är Sluit" -#: ../lib/PageList.php:277 ../lib/plugin/AuthorHistory.php:174 +#: ../lib/PageList.php:394 ../lib/plugin/AuthorHistory.php:174 #: ../lib/plugin/WantedPages.php:140 msgid "Page Name" msgstr "Pagina Naam" -#: ../lib/PageList.php:334 ../lib/plugin/FullTextSearch.php:75 +#: ../lib/PageList.php:466 ../lib/plugin/FullTextSearch.php:93 msgid "" msgstr "" -#: ../lib/PageList.php:478 ../lib/PageList.php:481 +#: ../lib/PageList.php:665 ../lib/PageList.php:667 #, fuzzy msgid "Content" msgstr "Klaar." -#: ../lib/PageList.php:487 +#: ../lib/PageList.php:671 msgid "Rename to" msgstr "" -#: ../lib/PageList.php:490 +#: ../lib/PageList.php:673 +#, fuzzy +msgid "Permission" +msgstr "Versie" + +#: ../lib/PageList.php:675 +msgid "ACL" +msgstr "" + +#: ../lib/PageList.php:677 #, fuzzy msgid "Select" msgstr "Verwijder pagina" -#: ../lib/PageList.php:497 +#: ../lib/PageList.php:681 #, fuzzy msgid "Last Modified" msgstr "meest recente verandering" -#: ../lib/PageList.php:499 +#: ../lib/PageList.php:683 msgid "Hits" msgstr "Teller" -#: ../lib/PageList.php:502 +#: ../lib/PageList.php:685 msgid "Size" msgstr "" -#: ../lib/PageList.php:506 +#: ../lib/PageList.php:688 #, fuzzy msgid "Last Summary" msgstr "Vorige Auteur" -#: ../lib/PageList.php:509 ../lib/plugin/AuthorHistory.php:123 +#: ../lib/PageList.php:690 ../lib/plugin/AuthorHistory.php:123 #: ../lib/plugin/AuthorHistory.php:176 ../lib/plugin/PluginManager.php:90 msgid "Version" msgstr "Versie" -#: ../lib/PageList.php:513 +#: ../lib/PageList.php:693 msgid "Last Author" msgstr "Vorige Auteur" -#: ../lib/PageList.php:515 ../themes/default/templates/editpage.tmpl:95 +#: ../lib/PageList.php:695 ../lib/WikiGroup.php:39 +msgid "Owner" +msgstr "" + +#: ../lib/PageList.php:697 +msgid "Group" +msgstr "" + +#: ../lib/PageList.php:699 ../themes/default/templates/editpage.tmpl:101 #: ../themes/default/templates/info.tmpl:127 +#: ../themes/smaller/templates/info.tmpl:133 msgid "Locked" msgstr "Låst" -#: ../lib/PageList.php:516 +#: ../lib/PageList.php:700 msgid "locked" msgstr "låst" -#: ../lib/PageList.php:519 +#: ../lib/PageList.php:703 msgid "Minor Edit" msgstr "" -#: ../lib/PageList.php:519 +#: ../lib/PageList.php:703 msgid "minor" msgstr "" -#: ../lib/PageList.php:521 +#: ../lib/PageList.php:705 msgid "Markup" msgstr "" -#: ../lib/PageList.php:572 ../lib/plugin/WantedPages.php:167 +#: ../lib/PageList.php:756 ../lib/plugin/WantedPages.php:167 #, c-format msgid "Columns: %s." msgstr "" -#: ../lib/PageType.php:194 +#: ../lib/PagePerm.php:260 +#, fuzzy +msgid "List this page and all subpages" +msgstr "Fout bij schrijven pagina '%s'" + +#: ../lib/PagePerm.php:261 +msgid "View this page and all subpages" +msgstr "" + +#: ../lib/PagePerm.php:262 +msgid "Edit this page and all subpages" +msgstr "" + +#: ../lib/PagePerm.php:263 +#, fuzzy +msgid "Create a new (sub)page" +msgstr "Fout bij schrijven pagina '%s'" + +#: ../lib/PagePerm.php:264 +msgid "Download the page contents" +msgstr "" + +#: ../lib/PagePerm.php:265 +msgid "Change page attributes" +msgstr "" + +#: ../lib/PagePerm.php:266 +#, fuzzy +msgid "Remove this page" +msgstr "Verwijder pagina" + +#: ../lib/PagePerm.php:295 +#, c-format +msgid "Unsupported ACL access type %s ignored." +msgstr "" + +#: ../lib/PageType.php:125 ../lib/loadsave.php:409 +#: ../themes/default/templates/info.tmpl:144 +#: ../themes/default/templates/info.tmpl:145 +#: ../themes/smaller/templates/info.tmpl:150 +#: ../themes/smaller/templates/info.tmpl:151 +msgid "InterWikiMap" +msgstr "" + +#: ../lib/PageType.php:211 ../lib/loadsave.php:552 +#, c-format +msgid "Loading InterWikiMap from external file %s." +msgstr "" + +#: ../lib/PageType.php:309 msgid "Moniker" msgstr "" -#: ../lib/PageType.php:195 +#: ../lib/PageType.php:310 msgid "InterWiki Address" msgstr "" -#: ../lib/RSSWriter091.php:116 ../lib/loadsave.php:832 +#: ../lib/RSSWriter091.php:116 ../lib/loadsave.php:872 #: ../lib/plugin/RecentChanges.php:250 ../lib/plugin/RecentChanges.php:263 -#: ../lib/plugin/RecentChanges.php:362 ../lib/plugin/RecentChanges.php:438 -#: ../lib/plugin/RecentChanges.php:529 ../lib/plugin/RecentChanges.php:605 +#: ../lib/plugin/RecentChanges.php:365 ../lib/plugin/RecentChanges.php:441 +#: ../lib/plugin/RecentChanges.php:535 ../lib/plugin/RecentChanges.php:611 #: ../themes/Portland/templates/navbar.tmpl:28 #: ../themes/default/templates/navbar.tmpl:10 +#: ../themes/smaller/templates/navbar.tmpl:10 msgid "RecentChanges" msgstr "RecenteVeranderingen" -#: ../lib/Request.php:39 ../lib/main.php:771 ../lib/main.php:784 +#: ../lib/Request.php:57 ../lib/main.php:756 ../lib/main.php:769 #, c-format msgid "%s is not writable." msgstr "" -#: ../lib/Request.php:39 +#: ../lib/Request.php:57 msgid "The PhpWiki access log file" msgstr "" -#: ../lib/Request.php:41 ../lib/main.php:774 +#: ../lib/Request.php:59 ../lib/main.php:759 #, c-format msgid "Please ensure that %s is writable, or redefine %s in index.php." msgstr "" -#: ../lib/Request.php:42 +#: ../lib/Request.php:60 #, fuzzy, c-format msgid "the file '%s'" msgstr "MIME bestand %" @@ -174,109 +276,119 @@ msgstr "MIME bestand %" msgid "%4d %s\n" msgstr "%4d %s\n" -#: ../lib/Theme.php:344 +#: ../lib/Theme.php:368 msgid "Never edited." msgstr "" -#: ../lib/Theme.php:351 +#: ../lib/Theme.php:375 #, fuzzy, c-format msgid "%s at %s" msgstr "%s: %s" -#: ../lib/Theme.php:355 +#: ../lib/Theme.php:379 #, c-format msgid "Version %s, saved %s." msgstr "Versie %s, bewarrd %s." -#: ../lib/Theme.php:357 +#: ../lib/Theme.php:381 #, fuzzy, c-format msgid "Last edited %s." msgstr "Meest recente verandering %s." -#: ../lib/Theme.php:366 +#: ../lib/Theme.php:390 #, c-format msgid "Version %s, saved on %s." msgstr "Versie %s, bewarrd op %s." -#: ../lib/Theme.php:368 +#: ../lib/Theme.php:392 #, c-format msgid "Last edited on %s." msgstr "Meest recente verandering op %s." -#: ../lib/Theme.php:384 +#: ../lib/Theme.php:408 msgid "today" msgstr "" -#: ../lib/Theme.php:390 +#: ../lib/Theme.php:414 msgid "yesterday" msgstr "" -#: ../lib/Theme.php:484 ../themes/MacOSX/themeinfo.php:71 +#: ../lib/Theme.php:518 +#, fuzzy, c-format +msgid "Empty link to: %s" +msgstr "Je bent ingelogd als %s." + +#: ../lib/Theme.php:530 ../themes/MacOSX/themeinfo.php:71 #, fuzzy, c-format msgid "Create: %s" msgstr "Bewaard: %s" -#: ../lib/Theme.php:518 +#: ../lib/Theme.php:566 #, c-format msgid "'%s': Bad page name" msgstr "" -#: ../lib/Theme.php:783 ../themes/default/templates/actionbar.tmpl:5 +#: ../lib/Theme.php:837 ../themes/default/templates/actionbar.tmpl:5 +#: ../themes/smaller/templates/actionbar.tmpl:6 msgid "Edit" msgstr "Verander" -#: ../lib/Theme.php:784 +#: ../lib/Theme.php:838 ../lib/plugin/Diff.php:36 msgid "Diff" msgstr "Diff" -#: ../lib/Theme.php:785 ../themes/default/templates/signin.tmpl:15 -#: ../themes/default/templates/signin.tmpl:31 +#: ../lib/Theme.php:839 ../themes/default/templates/signin.tmpl:16 +#: ../themes/default/templates/signin.tmpl:32 +#: ../themes/smaller/templates/signin.tmpl:21 +#: ../themes/smaller/templates/signin.tmpl:44 msgid "Sign Out" msgstr "" -#: ../lib/Theme.php:786 ../lib/WikiUser.php:206 -#: ../themes/default/templates/login.tmpl:70 -#: ../themes/default/templates/signin.tmpl:59 +#: ../lib/Theme.php:840 ../lib/WikiUser.php:204 ../lib/WikiUserNew.php:415 +#: ../lib/WikiUserNew.php:1161 ../themes/default/templates/login.tmpl:66 +#: ../themes/default/templates/signin.tmpl:60 +#: ../themes/smaller/templates/signin.tmpl:54 +#: ../themes/smaller/templates/signin.tmpl:57 msgid "Sign In" msgstr "" -#: ../lib/Theme.php:787 ../themes/MacOSX/themeinfo.php:135 +#: ../lib/Theme.php:841 ../themes/MacOSX/themeinfo.php:135 msgid "Lock Page" msgstr "Open Pagina" -#: ../lib/Theme.php:788 ../themes/MacOSX/themeinfo.php:136 +#: ../lib/Theme.php:842 ../themes/MacOSX/themeinfo.php:136 msgid "Unlock Page" msgstr "Sluit Pagina Af" -#: ../lib/Theme.php:789 +#: ../lib/Theme.php:843 msgid "Remove Page" msgstr "Verwijder Pagina" -#: ../lib/WikiDB.php:407 +#: ../lib/WikiDB.php:405 #, fuzzy, c-format msgid "renamed from %s" msgstr "van %s" -#: ../lib/WikiDB.php:412 +#: ../lib/WikiDB.php:410 msgid "WikiDB::renamePage() not yet implemented for this backend" msgstr "" -#: ../lib/WikiDB.php:700 +#: ../lib/WikiDB.php:698 #, c-format msgid "%s: Date of new revision is %s" msgstr "" -#: ../lib/WikiDB.php:763 +#: ../lib/WikiDB.php:761 #, c-format msgid "Optimizing %s" msgstr "" -#: ../lib/WikiDB.php:1207 ../themes/default/templates/homepage.tmpl:7 +#: ../lib/WikiDB.php:1205 ../themes/default/templates/homepage.tmpl:7 #, c-format msgid "Describe %s here." msgstr "Beschrijf %s hier." -#: ../lib/WikiDB.php:1242 +#: ../lib/WikiDB.php:1240 #, c-format msgid "Acck! Revision %s of %s seems to have been deleted!" msgstr "" @@ -298,7 +410,7 @@ msgid "" "DB file to a permanent location or risk losing all the pages!" msgstr "" -#: ../lib/WikiGroup.php:29 ../lib/WikiGroup.php:110 +#: ../lib/WikiGroup.php:29 ../lib/WikiGroup.php:122 msgid "No or unsupported GROUP_METHOD defined" msgstr "" @@ -315,79 +427,98 @@ msgid "Bogo Users" msgstr "" #: ../lib/WikiGroup.php:35 +#, fuzzy +msgid "HasHomePage" +msgstr "ThuisPagina" + +#: ../lib/WikiGroup.php:36 msgid "Signed Users" msgstr "" -#: ../lib/WikiGroup.php:36 +#: ../lib/WikiGroup.php:37 msgid "Authenticated Users" msgstr "" -#: ../lib/WikiGroup.php:37 +#: ../lib/WikiGroup.php:38 msgid "Administrators" msgstr "" -#: ../lib/WikiGroup.php:146 +#: ../lib/WikiGroup.php:40 +msgid "Creator" +msgstr "" + +#: ../lib/WikiGroup.php:164 #, c-format msgid "Undefined method %s for special group %s" msgstr "" -#: ../lib/WikiGroup.php:151 ../lib/WikiGroup.php:166 ../lib/WikiGroup.php:181 -#: ../lib/WikiGroup.php:197 ../lib/WikiGroup.php:213 +#: ../lib/WikiGroup.php:169 ../lib/WikiGroup.php:184 ../lib/WikiGroup.php:289 +#: ../lib/WikiGroup.php:294 ../lib/WikiGroup.php:310 ../lib/WikiGroup.php:326 #, c-format msgid "Method '%s' not implemented in this GROUP_METHOD %s" msgstr "" -#: ../lib/WikiGroup.php:339 +#: ../lib/WikiGroup.php:454 #, c-format msgid "Group %s does not exist" msgstr "" -#: ../lib/WikiGroup.php:437 +#: ../lib/WikiGroup.php:486 +#, fuzzy +msgid "CategoryGroup" +msgstr "Huidige pagina:" + +#: ../lib/WikiGroup.php:561 msgid "No or not enough GROUP_DB SQL statements defined" msgstr "" -#: ../lib/WikiGroup.php:541 +#: ../lib/WikiGroup.php:767 msgid "AUTH_GROUP_FILE not defined" msgstr "" -#: ../lib/WikiGroup.php:545 +#: ../lib/WikiGroup.php:771 #, c-format msgid "Cannot open AUTH_GROUP_FILE %s" msgstr "" -#: ../lib/WikiGroup.php:644 +#: ../lib/WikiGroup.php:878 msgid "LDAP_AUTH_HOST not defined" msgstr "" -#: ../lib/WikiGroup.php:650 +#: ../lib/WikiGroup.php:884 msgid "No LDAP in this PHP version" msgstr "" +#: ../lib/WikiGroup.php:963 ../lib/WikiUserNew.php:1679 +#, c-format +msgid "Unable to connect to LDAP server %s" +msgstr "" + #: ../lib/WikiPlugin.php:88 msgid "n/a" msgstr "" -#: ../lib/WikiPlugin.php:118 +#: ../lib/WikiPlugin.php:118 ../lib/plugin/WikiPoll.php:114 #, c-format msgid "argument '%s' not declared by plugin" msgstr "" -#: ../lib/WikiPlugin.php:182 +#: ../lib/WikiPlugin.php:189 #, c-format msgid "trailing cruft in plugin args: '%s'" msgstr "" -#: ../lib/WikiPlugin.php:291 +#: ../lib/WikiPlugin.php:303 #, fuzzy, c-format msgid "Plugin %s failed." msgstr "Insert van '%s' gefaald" -#: ../lib/WikiPlugin.php:297 +#: ../lib/WikiPlugin.php:309 #, fuzzy, c-format msgid "Plugin %s disabled." msgstr "Insert van '%s' gefaald" -#: ../lib/WikiPlugin.php:384 +#: ../lib/WikiPlugin.php:400 #, c-format msgid "Include of '%s' failed" msgstr "Insert van '%s' gefaald" @@ -399,20 +530,20 @@ msgid "" "referring page." msgstr "" -#: ../lib/WikiUser.php:177 +#: ../lib/WikiUser.php:177 ../lib/WikiUserNew.php:482 msgid "Invalid password or userid." msgstr "" -#: ../lib/WikiUser.php:179 +#: ../lib/WikiUser.php:179 ../lib/WikiUserNew.php:484 msgid "Insufficient permissions." msgstr "" -#: ../lib/WikiUser.php:234 +#: ../lib/WikiUser.php:232 msgid "" "You forgot to set ENCRYPTED_PASSWD to true. Please update your /index.php" msgstr "" -#: ../lib/WikiUser.php:353 +#: ../lib/WikiUser.php:351 #, fuzzy msgid "" "Your home page has not been created yet so your preferences cannot not be " @@ -421,79 +552,126 @@ msgstr "" "Deze pagina is afgesloten door de beheerder en je veranderingen kan niet " "bewaar worden." -#: ../lib/WikiUser.php:370 +#: ../lib/WikiUser.php:368 #, fuzzy msgid "Your home page is locked so your preferences cannot not be saved." msgstr "" "Deze pagina is afgesloten door de beheerder en je veranderingen kan niet " "bewaar worden." -#: ../lib/WikiUser.php:371 +#: ../lib/WikiUser.php:369 msgid "Please contact your PhpWiki administrator for assistance." msgstr "" -#: ../lib/WikiUser.php:477 +#: ../lib/WikiUser.php:475 #, c-format msgid "" "Old UserPage %s without stored password updated with empty password. Set a " "password in your UserPreferences." msgstr "" -#: ../lib/XmlElement.php:401 ../lib/stdlib.php:997 +#: ../lib/WikiUserNew.php:514 +msgid "Format of UserPreferences cookie not recognised." +msgstr "" + +#: ../lib/WikiUserNew.php:515 +msgid "Default preferences will be used." +msgstr "" + +#: ../lib/WikiUserNew.php:922 +msgid "" +"The length of the stored password is shorter than the system policy allows. " +"Sorry, you cannot login.\n" +" You have to ask the System Administrator to reset your password." +msgstr "" + +#: ../lib/WikiUserNew.php:935 +msgid "The crypt function is not available in this version of PHP." +msgstr "" + +#: ../lib/WikiUserNew.php:936 +msgid "" +"Please set ENCRYPTED_PASSWD to false in index.php and probably change " +"ADMIN_PASSWD." +msgstr "" + +#: ../lib/WikiUserNew.php:949 +msgid "Please set ENCRYPTED_PASSWD to true in index.php." +msgstr "" + +#: ../lib/WikiUserNew.php:1073 +#, c-format +msgid "" +"\n" +"You stored an empty password in your %s page.\n" +msgstr "" + +#: ../lib/WikiUserNew.php:1074 +msgid "Your access permissions are only for a BogoUser.\n" +msgstr "" + +#: ../lib/WikiUserNew.php:1075 +msgid "Please set your password in UserPreferences." +msgstr "" + +#: ../lib/WikiUserNew.php:1717 +msgid "Unable to connect to LDAP server " +msgstr "" + +#: ../lib/WikiUserNew.php:1747 +msgid "Unable to connect to IMAP server " +msgstr "" + +#: ../lib/XmlElement.php:417 ../lib/stdlib.php:995 #, c-format msgid "Can't mix '%s' with '%s' type format strings" msgstr "" -#: ../lib/config.php:145 +#: ../lib/config.php:125 #, fuzzy, c-format msgid "Can't set locale: '%s'" msgstr "Kan verbinding naar data base niet tot stand brengen, geef op." -#: ../lib/config.php:377 +#: ../lib/config.php:387 #, fuzzy msgid "An unnamed PhpWiki" msgstr "Naamloos PhpWiki" -#: ../lib/config.php:383 ../lib/imagecache.php:57 +#: ../lib/config.php:390 ../lib/imagecache.php:57 #: ../themes/default/templates/userprefs.tmpl:113 msgid "HomePage" msgstr "ThuisPagina" -#: ../lib/config.php:398 +#: ../lib/config.php:404 #, c-format msgid "Encrypted passwords cannot be used: %s." msgstr "" -#: ../lib/config.php:404 +#: ../lib/config.php:410 msgid "The admin password cannot be empty. Please update your /index.php" msgstr "" -#: ../lib/config.php:408 -#, c-format -msgid "You can use %s only with %s" -msgstr "" - -#: ../lib/config.php:415 +#: ../lib/config.php:414 msgid "" "Empty db_session_table. Turn USE_DB_SESSION off or define the table name." msgstr "" -#: ../lib/diff.php:253 +#: ../lib/diff.php:253 ../lib/plugin/Diff.php:72 #, c-format msgid "version %s" msgstr "versie %s" -#: ../lib/diff.php:256 +#: ../lib/diff.php:256 ../lib/plugin/Diff.php:75 #, c-format msgid "by %s" msgstr "door %s" -#: ../lib/diff.php:258 +#: ../lib/diff.php:258 ../lib/plugin/Diff.php:77 msgid "None" msgstr "Geen" -#: ../lib/diff.php:280 ../lib/plugin/PageHistory.php:312 -#: ../lib/plugin/PageInfo.php:59 +#: ../lib/diff.php:280 ../lib/plugin/Diff.php:94 +#: ../lib/plugin/PageHistory.php:312 ../lib/plugin/PageInfo.php:59 #, c-format msgid "I'm sorry, there is no such page as %s." msgstr "" @@ -503,77 +681,80 @@ msgstr "" msgid "Diff: %s" msgstr "Diff van: %s" -#: ../lib/diff.php:290 ../lib/diff.php:300 +#: ../lib/diff.php:290 ../lib/diff.php:300 ../lib/plugin/Diff.php:102 +#: ../lib/plugin/Diff.php:112 #, c-format msgid "version %d" msgstr "versie %d" -#: ../lib/diff.php:294 +#: ../lib/diff.php:294 ../lib/plugin/Diff.php:106 msgid "current version" msgstr "huidige versie" -#: ../lib/diff.php:311 +#: ../lib/diff.php:311 ../lib/plugin/Diff.php:123 #, fuzzy msgid "revision by previous author" msgstr "Vorige Auteur" -#: ../lib/diff.php:317 +#: ../lib/diff.php:317 ../lib/plugin/Diff.php:129 #, fuzzy msgid "previous revision" msgstr "Vorige" -#: ../lib/diff.php:327 +#: ../lib/diff.php:327 ../lib/plugin/Diff.php:139 msgid "predecessor to the previous major change" msgstr "" -#: ../lib/diff.php:337 +#: ../lib/diff.php:337 ../lib/plugin/Diff.php:149 #, c-format msgid "Differences between %s and %s of %s." msgstr "" -#: ../lib/diff.php:340 +#: ../lib/diff.php:340 ../lib/plugin/Diff.php:152 msgid "Other diffs:" msgstr "" -#: ../lib/diff.php:341 +#: ../lib/diff.php:341 ../lib/plugin/Diff.php:153 #, fuzzy msgid "Previous Major Revision" msgstr "Vorige" -#: ../lib/diff.php:342 +#: ../lib/diff.php:342 ../lib/plugin/Diff.php:154 #, fuzzy msgid "Previous Revision" msgstr "Vorige" -#: ../lib/diff.php:343 +#: ../lib/diff.php:343 ../lib/plugin/Diff.php:155 msgid "Previous Author" msgstr "Vorige Auteur" -#: ../lib/diff.php:360 +#: ../lib/diff.php:360 ../lib/plugin/Diff.php:172 #, fuzzy msgid "Newer page:" msgstr "Nieuw pagina." -#: ../lib/diff.php:362 +#: ../lib/diff.php:362 ../lib/plugin/Diff.php:174 #, fuzzy msgid "Older page:" msgstr "nieuw pagina" -#: ../lib/diff.php:370 +#: ../lib/diff.php:370 ../lib/plugin/Diff.php:182 msgid "Versions are identical" msgstr "Versies zijn identiek" #: ../lib/display.php:54 ../lib/plugin/PageGroup.php:91 #: ../lib/plugin/PageGroup.php:156 ../lib/plugin/PageGroup.php:167 #: ../lib/plugin/PageGroup.php:183 ../lib/plugin/PageGroup.php:190 -#: ../lib/plugin/PageHistory.php:216 ../lib/plugin/UnfoldSubpages.php:177 +#: ../lib/plugin/PageHistory.php:216 ../lib/plugin/UnfoldSubpages.php:165 #: ../themes/default/templates/head.tmpl:45 #, c-format msgid "%s: %s" msgstr "%s: %s" #: ../lib/display.php:104 ../lib/display.php:111 -#: ../lib/plugin/BackLinks.php:31 ../themes/default/templates/navbar.tmpl:22 +#: ../lib/plugin/BackLinks.php:31 ../lib/plugin/_WikiTranslation.php:50 +#: ../themes/default/templates/navbar.tmpl:23 +#: ../themes/smaller/templates/navbar.tmpl:19 msgid "BackLinks" msgstr "TerugLinks" @@ -587,46 +768,46 @@ msgstr "" msgid "(Redirected from %s)" msgstr "van %s" -#: ../lib/editpage.php:82 ../lib/editpage.php:283 +#: ../lib/editpage.php:90 ../lib/editpage.php:360 #, fuzzy msgid "Your version" msgstr "huidige versie" -#: ../lib/editpage.php:82 ../lib/editpage.php:284 +#: ../lib/editpage.php:90 ../lib/editpage.php:361 #, fuzzy msgid "Other version" msgstr "huidige versie" -#: ../lib/editpage.php:99 +#: ../lib/editpage.php:176 #, c-format msgid "Edit: %s" msgstr "Verander: %s" -#: ../lib/editpage.php:133 +#: ../lib/editpage.php:210 #, c-format msgid "View Source: %s" msgstr "Bron tekst: %s" -#: ../lib/editpage.php:147 +#: ../lib/editpage.php:224 #, fuzzy msgid "Page now locked." msgstr "Sidan är Låst" -#: ../lib/editpage.php:147 +#: ../lib/editpage.php:224 #, fuzzy msgid "Page now unlocked." msgstr "Sidan är Sluit" -#: ../lib/editpage.php:221 +#: ../lib/editpage.php:298 #, c-format msgid "Saved: %s" msgstr "Bewaard: %s" -#: ../lib/editpage.php:266 ../themes/MacOSX/themeinfo.php:137 +#: ../lib/editpage.php:343 ../themes/MacOSX/themeinfo.php:137 msgid "Page Locked" msgstr "Sidan är Låst" -#: ../lib/editpage.php:267 +#: ../lib/editpage.php:344 msgid "" "This page has been locked by the administrator so your changes can not be " "saved." @@ -634,7 +815,7 @@ msgstr "" "Deze pagina is afgesloten door de beheerder en je veranderingen kan niet " "bewaar worden." -#: ../lib/editpage.php:268 +#: ../lib/editpage.php:345 #, fuzzy msgid "" "(Copy your changes to the clipboard. You can try editing a different page or " @@ -643,11 +824,11 @@ msgstr "" "Kopier je veranderingen naar het klipbord of een andere tijdelijke plaats " "(bijv. een tekst editor)." -#: ../lib/editpage.php:269 +#: ../lib/editpage.php:346 msgid "Sorry for the inconvenience." msgstr "Excuses voor het ongemak." -#: ../lib/editpage.php:282 ../lib/editpage.php:535 +#: ../lib/editpage.php:359 ../lib/editpage.php:612 #, c-format msgid "" "Some of the changes could not automatically be combined. Please look for " @@ -655,51 +836,40 @@ msgid "" "those sections by hand before you click Save." msgstr "" -#: ../lib/editpage.php:286 ../lib/editpage.php:538 +#: ../lib/editpage.php:363 ../lib/editpage.php:615 msgid "Please check it through before saving." msgstr "" -#: ../lib/editpage.php:297 +#: ../lib/editpage.php:374 msgid "Conflicting Edits!" msgstr "" -#: ../lib/editpage.php:298 +#: ../lib/editpage.php:375 msgid "" "In the time since you started editing this page, another user has saved a " "new version of it." msgstr "" -#: ../lib/editpage.php:299 +#: ../lib/editpage.php:376 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." msgstr "" -#: ../lib/editpage.php:370 +#: ../lib/editpage.php:447 msgid "Preview" msgstr "Voorvertonig" -#: ../lib/editpage.php:374 +#: ../lib/editpage.php:451 msgid "Save" msgstr "Bewaar" -#: ../lib/editpage.php:510 +#: ../lib/editpage.php:587 #, fuzzy, c-format msgid "Merge and Edit: %s" msgstr "Verander: %s" -#: ../lib/interwiki.php:7 ../lib/loadsave.php:373 -#: ../themes/default/templates/info.tmpl:144 -#: ../themes/default/templates/info.tmpl:145 -msgid "InterWikiMap" -msgstr "" - -#: ../lib/interwiki.php:90 ../lib/loadsave.php:515 -#, c-format -msgid "Loading InterWikiMap from external file %s." -msgstr "" - #: ../lib/loadsave.php:42 msgid "Complete." msgstr "Klaar." @@ -717,366 +887,397 @@ msgstr "" msgid "LatestSnapshot" msgstr "" -#: ../lib/loadsave.php:174 ../lib/loadsave.php:232 +#: ../lib/loadsave.php:175 ../lib/loadsave.php:234 msgid "You must specify a directory to dump to" msgstr "Je moet een directory specificeren om in te storten" -#: ../lib/loadsave.php:179 ../lib/loadsave.php:237 +#: ../lib/loadsave.php:180 ../lib/loadsave.php:239 #, c-format msgid "Cannot create directory '%s'" msgstr "" -#: ../lib/loadsave.php:181 ../lib/loadsave.php:239 +#: ../lib/loadsave.php:182 ../lib/loadsave.php:241 #, c-format msgid "Created directory '%s' for the page dump..." msgstr "" -#: ../lib/loadsave.php:184 ../lib/loadsave.php:242 +#: ../lib/loadsave.php:185 ../lib/loadsave.php:244 #, c-format msgid "Using directory '%s'" msgstr "" -#: ../lib/loadsave.php:187 ../lib/loadsave.php:245 +#: ../lib/loadsave.php:188 ../lib/loadsave.php:247 #, fuzzy msgid "Dumping Pages" msgstr "Verwijder pagina" -#: ../lib/loadsave.php:200 ../lib/loadsave.php:263 +#: ../lib/loadsave.php:202 ../lib/loadsave.php:269 #, c-format msgid "saved as %s" msgstr "bewaard als %s" -#: ../lib/loadsave.php:210 ../lib/loadsave.php:278 +#: ../lib/loadsave.php:212 ../lib/loadsave.php:282 #: ../lib/plugin/text2png.php:183 #, c-format msgid "couldn't open file '%s' for writing" msgstr "" -#: ../lib/loadsave.php:216 ../lib/loadsave.php:284 +#: ../lib/loadsave.php:218 ../lib/loadsave.php:288 #, fuzzy, c-format msgid "%s bytes written" msgstr "%s: %s" -#: ../lib/loadsave.php:363 +#: ../lib/loadsave.php:302 ../lib/loadsave.php:316 +#, fuzzy, c-format +msgid "... copied to %s" +msgstr "Kopie van [%s]" + +#: ../lib/loadsave.php:306 ../lib/loadsave.php:320 +#, fuzzy +msgid "... not found" +msgstr "Sidan är Sluit" + +#: ../lib/loadsave.php:399 msgid "Empty pagename!" msgstr "" -#: ../lib/loadsave.php:419 +#: ../lib/loadsave.php:455 #, c-format msgid "from %s" msgstr "van %s" -#: ../lib/loadsave.php:424 +#: ../lib/loadsave.php:460 msgid "new page" msgstr "nieuw pagina" -#: ../lib/loadsave.php:432 +#: ../lib/loadsave.php:468 msgid "has edit conflicts - overwriting anyway" msgstr "" -#: ../lib/loadsave.php:435 ../lib/loadsave.php:797 ../lib/loadsave.php:800 +#: ../lib/loadsave.php:471 ../lib/loadsave.php:837 ../lib/loadsave.php:840 msgid "The PhpWiki programming team" msgstr "Het PhpWiki programmeerteam" -#: ../lib/loadsave.php:440 +#: ../lib/loadsave.php:476 msgid "has edit conflicts - skipped" msgstr "" -#: ../lib/loadsave.php:448 +#: ../lib/loadsave.php:484 #, c-format msgid "is identical to current version %d - skipped" msgstr "is gelijk aaan huidige versie %d - overgeslagen" -#: ../lib/loadsave.php:458 +#: ../lib/loadsave.php:494 #, c-format msgid "- saved to database as version %d" msgstr "- bewaard in de data base als versie %d" -#: ../lib/loadsave.php:464 ../lib/loadsave.php:609 +#: ../lib/loadsave.php:500 ../lib/loadsave.php:647 #, c-format msgid "MIME file %s" msgstr "MIME bestand %" -#: ../lib/loadsave.php:465 ../lib/loadsave.php:614 +#: ../lib/loadsave.php:501 ../lib/loadsave.php:652 #, c-format msgid "Serialized file %s" msgstr "Geserialiseerd bestand %s" -#: ../lib/loadsave.php:466 ../lib/loadsave.php:628 +#: ../lib/loadsave.php:502 ../lib/loadsave.php:666 #, c-format msgid "plain file %s" msgstr "plat bestand %" -#: ../lib/loadsave.php:472 +#: ../lib/loadsave.php:509 #, fuzzy msgid "Merge Edit" msgstr "Verander: %s" -#: ../lib/loadsave.php:473 ../lib/loadsave.php:480 -#: ../lib/plugin/WikiAdminSelect.php:169 +#: ../lib/loadsave.php:510 ../lib/loadsave.php:516 +#: ../lib/plugin/WikiAdminSelect.php:170 #: ../themes/Portland/templates/navbar.tmpl:30 #: ../themes/default/templates/head.tmpl:76 -#: ../themes/default/templates/navbar.tmpl:36 +#: ../themes/default/templates/navbar.tmpl:37 +#: ../themes/smaller/templates/navbar.tmpl:22 msgid "PhpWikiAdministration" msgstr "" -#: ../lib/loadsave.php:479 +#: ../lib/loadsave.php:515 msgid "Restore Anyway" msgstr "" -#: ../lib/loadsave.php:499 +#: ../lib/loadsave.php:536 #, c-format msgid "%s: not defined" msgstr "" -#: ../lib/loadsave.php:508 +#: ../lib/loadsave.php:545 msgid "Default InterWiki map file not loaded." msgstr "" -#: ../lib/loadsave.php:642 ../lib/loadsave.php:654 +#: ../lib/loadsave.php:680 ../lib/loadsave.php:692 msgid "Skipping" msgstr "Overgeslagen" -#: ../lib/loadsave.php:751 +#: ../lib/loadsave.php:791 #, c-format msgid "Unable to load: %s" msgstr "" -#: ../lib/loadsave.php:758 +#: ../lib/loadsave.php:798 #, c-format msgid "Bad file type: %s" msgstr "" -#: ../lib/loadsave.php:772 +#: ../lib/loadsave.php:812 #, fuzzy, c-format msgid "Loading '%s'" msgstr "plat bestand %" -#: ../lib/loadsave.php:803 +#: ../lib/loadsave.php:843 msgid "Loading up virgin wiki" msgstr "Laden van maagdelijke wiki" -#: ../lib/loadsave.php:823 +#: ../lib/loadsave.php:863 msgid "No uploaded file to upload?" msgstr "" -#: ../lib/loadsave.php:827 +#: ../lib/loadsave.php:867 #, fuzzy, c-format msgid "Uploading %s" msgstr "plat bestand %" -#: ../lib/main.php:288 +#: ../lib/main.php:264 #, fuzzy, c-format msgid "%s is disallowed on this wiki." msgstr "Actie %s is niet beschikbaar in deze wiki" -#: ../lib/main.php:292 +#: ../lib/main.php:268 #, fuzzy, c-format msgid "You must sign in to %s." msgstr "Je bent ingelogd als %s." -#: ../lib/main.php:294 +#: ../lib/main.php:270 #, fuzzy, c-format msgid "You must log in to %s." msgstr "Je bent ingelogd als %s." -#: ../lib/main.php:296 ../lib/plugin/PluginManager.php:65 +#: ../lib/main.php:272 ../lib/plugin/PluginManager.php:65 #, fuzzy, c-format msgid "You must be an administrator to %s." msgstr "Je moet ingelogd zijn als beheerder om te %s in deze wiki" -#: ../lib/main.php:309 +#: ../lib/main.php:285 #, fuzzy -msgid "browse pages in this wiki" -msgstr "HTML is niet beschikbaar in deze wiki" +msgid "view this page" +msgstr "nieuw pagina" -#: ../lib/main.php:310 +#: ../lib/main.php:286 #, fuzzy -msgid "diff pages in this wiki" -msgstr "De %d meestbezochte pagina's van deze Wiki:" +msgid "diff this page" +msgstr "Fout bij schrijven pagina '%s'" -#: ../lib/main.php:311 +#: ../lib/main.php:287 #, fuzzy -msgid "dump html pages from this wiki" -msgstr "De %d meestbezochte pagina's van deze Wiki:" +msgid "dump html pages" +msgstr "Verwijder pagina" -#: ../lib/main.php:312 +#: ../lib/main.php:288 #, fuzzy -msgid "dump serial pages from this wiki" +msgid "dump serial pages" msgstr "De %d meestbezochte pagina's van deze Wiki:" -#: ../lib/main.php:313 +#: ../lib/main.php:289 #, fuzzy -msgid "edit pages in this wiki" -msgstr "De %d meestbezochte pagina's van deze Wiki:" +msgid "edit this page" +msgstr "Fout bij schrijven pagina '%s'" -#: ../lib/main.php:314 +#: ../lib/main.php:290 #, fuzzy -msgid "create pages in this wiki" -msgstr "De %d meestbezochte pagina's van deze Wiki:" +msgid "create this page" +msgstr "Fout bij schrijven pagina '%s'" -#: ../lib/main.php:315 +#: ../lib/main.php:291 #, fuzzy msgid "load files into this wiki" msgstr "HTML is niet beschikbaar in deze wiki" -#: ../lib/main.php:316 +#: ../lib/main.php:292 #, fuzzy -msgid "lock pages in this wiki" -msgstr "De %d meestbezochte pagina's van deze Wiki:" +msgid "lock this page" +msgstr "Sluit Pagina Af" -#: ../lib/main.php:317 +#: ../lib/main.php:293 #, fuzzy -msgid "remove pages from this wiki" -msgstr "De %d meestbezochte pagina's van deze Wiki:" +msgid "remove this page" +msgstr "Verwijder pagina" -#: ../lib/main.php:318 +#: ../lib/main.php:294 #, fuzzy -msgid "unlock pages in this wiki" -msgstr "De %d meestbezochte pagina's van deze Wiki:" +msgid "unlock this page" +msgstr "Sluit Pagina Af" -#: ../lib/main.php:319 +#: ../lib/main.php:295 #, fuzzy -msgid "upload a zip dump to this wiki" +msgid "upload a zip dump" msgstr "HTML is niet beschikbaar in deze wiki" -#: ../lib/main.php:320 +#: ../lib/main.php:296 #, fuzzy msgid "verify the current action" msgstr "huidige versie" -#: ../lib/main.php:321 +#: ../lib/main.php:297 #, fuzzy -msgid "view the source of pages in this wiki" +msgid "view the source of this page" msgstr "De %d meestbezochte pagina's van deze Wiki:" -#: ../lib/main.php:322 +#: ../lib/main.php:298 msgid "access this wiki via XML-RPC" msgstr "" -#: ../lib/main.php:323 +#: ../lib/main.php:299 #, fuzzy msgid "download a zip dump from this wiki" msgstr "De %d meestbezochte pagina's van deze Wiki:" -#: ../lib/main.php:324 +#: ../lib/main.php:300 #, fuzzy msgid "download an html zip dump from this wiki" msgstr "De %d meestbezochte pagina's van deze Wiki:" -#: ../lib/main.php:336 +#: ../lib/main.php:312 #, fuzzy msgid "Browsing pages" msgstr "Fout bij schrijven pagina '%s'" -#: ../lib/main.php:337 +#: ../lib/main.php:313 #, fuzzy msgid "Diffing pages" msgstr "Fout bij schrijven pagina '%s'" -#: ../lib/main.php:338 +#: ../lib/main.php:314 #, fuzzy msgid "Dumping html pages" msgstr "Verwijder pagina" -#: ../lib/main.php:339 +#: ../lib/main.php:315 #, fuzzy msgid "Dumping serial pages" msgstr "De %d meestbezochte pagina's van deze Wiki:" -#: ../lib/main.php:340 +#: ../lib/main.php:316 #, fuzzy msgid "Editing pages" msgstr "Fout bij schrijven pagina '%s'" -#: ../lib/main.php:341 +#: ../lib/main.php:317 #, fuzzy msgid "Creating pages" msgstr "Fout bij schrijven pagina '%s'" -#: ../lib/main.php:342 +#: ../lib/main.php:318 #, fuzzy msgid "Loading files" msgstr "plat bestand %" -#: ../lib/main.php:343 +#: ../lib/main.php:319 #, fuzzy msgid "Locking pages" msgstr "Open Pagina" -#: ../lib/main.php:344 +#: ../lib/main.php:320 #, fuzzy msgid "Removing pages" msgstr "Verwijder pagina" -#: ../lib/main.php:345 +#: ../lib/main.php:321 #, fuzzy msgid "Unlocking pages" msgstr "Sluit Pagina Af" -#: ../lib/main.php:346 +#: ../lib/main.php:322 msgid "Uploading zip dumps" msgstr "" -#: ../lib/main.php:347 +#: ../lib/main.php:323 #, fuzzy msgid "Verify the current action" msgstr "huidige versie" -#: ../lib/main.php:348 +#: ../lib/main.php:324 #, fuzzy msgid "Viewing the source of pages" msgstr "De %d meestbezochte pagina's van deze Wiki:" -#: ../lib/main.php:349 +#: ../lib/main.php:325 msgid "XML-RPC access" msgstr "" -#: ../lib/main.php:350 +#: ../lib/main.php:326 msgid "Downloading zip dumps" msgstr "" -#: ../lib/main.php:351 +#: ../lib/main.php:327 msgid "Downloading html zip dumps" msgstr "" -#: ../lib/main.php:458 +#: ../lib/main.php:436 #, c-format msgid "%s: Bad action" msgstr "" -#: ../lib/main.php:480 +#: ../lib/main.php:458 msgid "Fatal PhpWiki Error" msgstr "PhpWiki Fatale Fout" -#: ../lib/main.php:661 ../lib/plugin/FullTextSearch.php:31 +#: ../lib/main.php:641 ../lib/plugin/FullTextSearch.php:32 #: ../lib/plugin/WantedPages.php:123 msgid "FullTextSearch" msgstr "VolledigeTekstZoek" -#: ../lib/main.php:664 ../lib/plugin/RecentChanges.php:519 +#: ../lib/main.php:644 ../lib/plugin/RecentChanges.php:525 #: ../lib/plugin/TitleSearch.php:31 msgid "TitleSearch" msgstr "TitelZoek" -#: ../lib/main.php:772 +#: ../lib/main.php:757 msgid "The session.save_path directory" msgstr "" -#: ../lib/main.php:775 +#: ../lib/main.php:760 #, c-format msgid "the directory '%s'" msgstr "" -#: ../lib/main.php:779 +#: ../lib/main.php:764 #, c-format msgid "Attempting to use the directory '%s' instead." msgstr "" -#: ../lib/main.php:786 +#: ../lib/main.php:771 msgid "Users will not be able to sign in." msgstr "" +#: ../lib/plugin/AddComment.php:39 +#, fuzzy +msgid "AddComment" +msgstr "Klaar." + +#: ../lib/plugin/AddComment.php:43 +#, c-format +msgid "Show and add comments for %s" +msgstr "" + +#: ../lib/plugin/AddComment.php:106 ../lib/plugin/CreateToc.php:203 +#, fuzzy +msgid "Click to display" +msgstr "Sluit Pagina Af" + +#: ../lib/plugin/AddComment.php:108 +#, fuzzy +msgid "Comments" +msgstr "Klaar." + #: ../lib/plugin/AllPages.php:31 msgid "AllPages" msgstr "" @@ -1091,28 +1292,29 @@ msgstr "De %d meestbezochte pagina's van deze Wiki:" msgid "Pages in this wiki (%d total):" msgstr "De %d meestbezochte pagina's van deze Wiki:" -#: ../lib/plugin/AllPages.php:82 ../lib/plugin/AllUsers.php:94 +#: ../lib/plugin/AllPages.php:81 ../lib/plugin/AllUsers.php:100 #, c-format msgid "Elapsed time: %s s" msgstr "" -#: ../lib/plugin/AllUsers.php:33 +#: ../lib/plugin/AllUsers.php:36 msgid "AllUsers" msgstr "" -#: ../lib/plugin/AllUsers.php:37 +#: ../lib/plugin/AllUsers.php:40 msgid "" "With external authentication all users which stored their Preferences. " "Without external authentication all once signed-in users (from version 1.3.4 " "on)." msgstr "" -#: ../lib/plugin/AllUsers.php:72 +#: ../lib/plugin/AllUsers.php:76 #, fuzzy, c-format msgid "Authenticated users on this wiki (%d total):" msgstr "De %d meestbezochte pagina's van deze Wiki:" #: ../lib/plugin/AuthorHistory.php:70 +#: ../themes/smaller/templates/info.tmpl:169 msgid "AuthorHistory" msgstr "" @@ -1127,6 +1329,8 @@ msgid "Minor" msgstr "" #: ../lib/plugin/AuthorHistory.php:125 +#: ../themes/default/templates/forum-thread.tmpl:21 +#: ../themes/default/templates/forum-topics.tmpl:23 #, fuzzy msgid "Author" msgstr "Vorige Auteur" @@ -1153,12 +1357,12 @@ msgstr "" #: ../lib/plugin/AuthorHistory.php:218 #, c-format -msgid "History of all major and minor modifcations for any page edited by %s." +msgid "History of all major and minor modifications for any page edited by %s." msgstr "" #: ../lib/plugin/AuthorHistory.php:218 #, c-format -msgid "History of major modifcations for any page edited by %s." +msgid "History of major modifications for any page edited by %s." msgstr "" #: ../lib/plugin/BackLinks.php:35 @@ -1199,7 +1403,7 @@ msgstr "" #: ../lib/plugin/Calendar.php:41 ../lib/plugin/Calendar.php:45 #: ../themes/default/templates/head.tmpl:85 #: ../themes/default/templates/homepage.tmpl:15 -#: ../themes/default/templates/navbar.tmpl:27 +#: ../themes/default/templates/navbar.tmpl:28 msgid "Calendar" msgstr "" @@ -1231,6 +1435,41 @@ msgstr "Klaar." msgid "Embed hidden comments in WikiPages." msgstr "" +#: ../lib/plugin/CreatePage.php:37 +#, fuzzy +msgid "CreatePage" +msgstr "ZoekPagina" + +#: ../lib/plugin/CreatePage.php:41 +#, fuzzy +msgid "Create a Wiki page." +msgstr "Fout bij schrijven pagina '%s'" + +#: ../lib/plugin/CreateToc.php:34 +#, fuzzy +msgid "CreateToc" +msgstr "Bewaard: %s" + +#: ../lib/plugin/CreateToc.php:38 +msgid "Automatically link headers at the top" +msgstr "" + +#: ../lib/plugin/CreateToc.php:146 ../lib/plugin/IncludePage.php:116 +msgid "no page specified" +msgstr "" + +#: ../lib/plugin/CreateToc.php:205 ../lib/plugin/CreateToc.php:208 +msgid "Table Of Contents" +msgstr "" + +#: ../lib/plugin/Diff.php:40 +msgid "Display differences between revisions" +msgstr "" + +#: ../lib/plugin/Diff.php:52 +msgid "World" +msgstr "" + #: ../lib/plugin/EditMetaData.php:45 msgid "EditMetaData" msgstr "" @@ -1277,7 +1516,7 @@ msgid "" "Displays a url in a seperate frame inside our body. Only one frame allowed." msgstr "" -#: ../lib/plugin/FrameInclude.php:93 ../lib/plugin/IncludePage.php:124 +#: ../lib/plugin/FrameInclude.php:93 ../lib/plugin/IncludePage.php:123 #, c-format msgid "recursive inclusion of page %s" msgstr "" @@ -1298,12 +1537,17 @@ msgstr "" msgid "See %s" msgstr "Zie %s" -#: ../lib/plugin/FullTextSearch.php:35 +#: ../lib/plugin/FullTextSearch.php:36 #, fuzzy msgid "Search the content of all pages in this wiki." msgstr "De %d meestbezochte pagina's van deze Wiki:" -#: ../lib/plugin/FullTextSearch.php:80 +#: ../lib/plugin/FullTextSearch.php:91 +#, c-format +msgid "only %d pages displayed" +msgstr "" + +#: ../lib/plugin/FullTextSearch.php:97 #, c-format msgid "Full text search results for '%s'" msgstr "Volledige tekst zoek resultaten naar '%s'" @@ -1339,6 +1583,14 @@ msgstr "" msgid "Sound Score" msgstr "" +#: ../lib/plugin/GooglePlugin.php:43 +msgid "GooglePlugin" +msgstr "" + +#: ../lib/plugin/GooglePlugin.php:47 +msgid "Make use of the Google API" +msgstr "" + #: ../lib/plugin/HelloWorld.php:46 msgid "HelloWorld" msgstr "" @@ -1357,25 +1609,31 @@ msgid "Include text from another wiki page." msgstr "" #: ../lib/plugin/IncludePage.php:93 ../lib/plugin/PageGroup.php:80 -#: ../lib/plugin/UnfoldSubpages.php:116 +#: ../lib/plugin/UnfoldSubpages.php:117 #, c-format msgid "<%s: no such section>" msgstr "" -#: ../lib/plugin/IncludePage.php:117 -msgid "no page specified" -msgstr "" - -#: ../lib/plugin/IncludePage.php:133 ../lib/plugin/PageGroup.php:121 +#: ../lib/plugin/IncludePage.php:132 ../lib/plugin/PageGroup.php:121 #, c-format msgid "%s(%d): no such revision" msgstr "" -#: ../lib/plugin/IncludePage.php:162 +#: ../lib/plugin/IncludePage.php:161 #, fuzzy, c-format msgid "Included from %s" msgstr "van %s" +#: ../lib/plugin/IncludeSiteMap.php:52 +#, fuzzy +msgid "IncludeSiteMap" +msgstr "ZoekPagina" + +#: ../lib/plugin/IncludeSiteMap.php:56 +#, c-format +msgid "Include recursively all linked pages starting at %s" +msgstr "" + #: ../lib/plugin/InterWikiSearch.php:31 #, fuzzy msgid "InterWikiSearch" @@ -1385,17 +1643,18 @@ msgstr "TitelZoek" msgid "Perform searches on InterWiki sites listed in InterWikiMap." msgstr "" -#: ../lib/plugin/InterWikiSearch.php:70 +#: ../lib/plugin/InterWikiSearch.php:91 #, fuzzy msgid "Wiki Name" msgstr "Pagina Naam" -#: ../lib/plugin/InterWikiSearch.php:71 ../lib/plugin/RecentChanges.php:516 +#: ../lib/plugin/InterWikiSearch.php:92 ../lib/plugin/RecentChanges.php:522 msgid "Search" msgstr "Zoek" #: ../lib/plugin/LikePages.php:32 ../themes/Portland/templates/navbar.tmpl:10 -#: ../themes/default/templates/navbar.tmpl:21 +#: ../themes/default/templates/navbar.tmpl:22 +#: ../themes/smaller/templates/navbar.tmpl:18 msgid "LikePages" msgstr "" @@ -1427,7 +1686,7 @@ msgstr "" msgid "Lists the names of all SubPages of the current page." msgstr "" -#: ../lib/plugin/ListSubpages.php:68 ../lib/plugin/UnfoldSubpages.php:133 +#: ../lib/plugin/ListSubpages.php:68 ../lib/plugin/UnfoldSubpages.php:127 msgid "The current page has no subpages defined." msgstr "" @@ -1436,7 +1695,7 @@ msgstr "" msgid "SubPages of %s:" msgstr "PaginaGeschiedenis" -#: ../lib/plugin/ListSubpages.php:90 ../lib/plugin/UnfoldSubpages.php:149 +#: ../lib/plugin/ListSubpages.php:90 ../lib/plugin/UnfoldSubpages.php:137 #, c-format msgid "recursive inclusion of page %s ignored" msgstr "" @@ -1450,20 +1709,29 @@ msgstr "Meestbezochte" msgid "List the most popular pages." msgstr "Lijst de meestbezochte pagina's" -#: ../lib/plugin/MostPopular.php:78 +#: ../lib/plugin/MostPopular.php:80 #, c-format msgid "The %d most popular pages of this wiki:" msgstr "De %d meestbezochte pagina's van deze Wiki:" -#: ../lib/plugin/MostPopular.php:81 +#: ../lib/plugin/MostPopular.php:83 #, fuzzy, c-format msgid "The %d least popular pages of this wiki:" msgstr "De %d meestbezochte pagina's van deze Wiki:" -#: ../lib/plugin/MostPopular.php:83 +#: ../lib/plugin/MostPopular.php:85 msgid "Visited pages on this wiki, ordered by popularity:" msgstr "" +#: ../lib/plugin/NoCache.php:39 +#, fuzzy +msgid "NoCache" +msgstr "Annuleer" + +#: ../lib/plugin/NoCache.php:43 +msgid "Don't cache this page." +msgstr "" + #: ../lib/plugin/OldStyleTable.php:49 msgid "OldStyleTable" msgstr "" @@ -1613,6 +1881,8 @@ msgstr "Versie %d" #: ../themes/SpaceWiki/lib/RecentChanges.php:35 #: ../themes/default/templates/info.tmpl:18 #: ../themes/default/templates/info.tmpl:22 +#: ../themes/smaller/templates/info.tmpl:19 +#: ../themes/smaller/templates/info.tmpl:23 msgid "minor edit" msgstr "" @@ -1623,6 +1893,8 @@ msgstr "" #: ../lib/plugin/PageHistory.php:247 ../lib/plugin/RecentChanges.php:65 #: ../themes/Portland/templates/actionbar.tmpl:18 #: ../themes/default/templates/actionbar.tmpl:27 +#: ../themes/smaller/templates/actionbar.tmpl:33 +#: ../themes/smaller/templates/info.tmpl:168 msgid "PageHistory" msgstr "PaginaGeschiedenis" @@ -1643,33 +1915,40 @@ msgstr "PaginaInfo" msgid "Show extra page Info and statistics for %s." msgstr "" -#: ../lib/plugin/PageTrail.php:43 +#: ../lib/plugin/PageTrail.php:45 msgid "PageTrail" msgstr "" -#: ../lib/plugin/PageTrail.php:47 +#: ../lib/plugin/PageTrail.php:49 msgid "PageTrail Plugin" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:53 +#: ../lib/plugin/PhotoAlbum.php:146 msgid "PhotoAlbum" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:57 +#: ../lib/plugin/PhotoAlbum.php:150 msgid "" "Displays a set of photos listed in a text file with optional descriptions" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:80 ../lib/plugin/Transclude.php:76 -#, c-format -msgid "%s parameter missing" +#: ../lib/plugin/PhotoAlbum.php:433 +msgid "Fixed album location is not allowed." +msgstr "" + +#: ../lib/plugin/PhotoAlbum.php:434 +msgid "));" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:84 ../lib/plugin/Transclude.php:85 +#: ../lib/plugin/PhotoAlbum.php:452 ../lib/plugin/Transclude.php:85 msgid "Bad url in src: remove all of <, >, \"" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:90 +#: ../lib/plugin/PhotoAlbum.php:476 +msgid "Wrong server setting: allow_url_fopen set to Off" +msgstr "" + +#: ../lib/plugin/PhotoAlbum.php:480 #, c-format msgid "Unable to read %s " msgstr "" @@ -1879,7 +2158,7 @@ msgid "All %s are listed below." msgstr "De %d meest recent %s staan hieronder." #: ../lib/plugin/RecentChanges.php:250 ../lib/plugin/RecentChanges.php:263 -#: ../lib/plugin/RecentChanges.php:362 ../lib/plugin/RecentChanges.php:438 +#: ../lib/plugin/RecentChanges.php:365 ../lib/plugin/RecentChanges.php:441 #: ../themes/Portland/templates/editpage.tmpl:66 msgid "RecentEdits" msgstr "" @@ -1888,27 +2167,27 @@ msgstr "" msgid "No changes found" msgstr "" -#: ../lib/plugin/RecentChanges.php:517 +#: ../lib/plugin/RecentChanges.php:523 msgid "Title Search" msgstr "Titel Zoek" -#: ../lib/plugin/RecentChanges.php:740 +#: ../lib/plugin/RecentChanges.php:746 msgid "Show minor edits for:" msgstr "" -#: ../lib/plugin/RecentChanges.php:742 +#: ../lib/plugin/RecentChanges.php:748 msgid "Show all changes for:" msgstr "" -#: ../lib/plugin/RecentChanges.php:744 +#: ../lib/plugin/RecentChanges.php:750 msgid "Show changes for:" msgstr "" -#: ../lib/plugin/RecentChanges.php:764 +#: ../lib/plugin/RecentChanges.php:770 msgid "1 day" msgstr "" -#: ../lib/plugin/RecentChanges.php:768 +#: ../lib/plugin/RecentChanges.php:774 #, fuzzy, c-format msgid "%s days" msgstr "%s: %s" @@ -1939,20 +2218,41 @@ msgstr "" msgid "Viewing redirecting page." msgstr "De %d meestbezochte pagina's van deze Wiki:" -#: ../lib/plugin/SiteMap.php:49 +#: ../lib/plugin/RichTable.php:32 +msgid "RichTable" +msgstr "" + +#: ../lib/plugin/RichTable.php:36 +msgid "Layout tables using a very rich markup style." +msgstr "" + +#: ../lib/plugin/SiteMap.php:51 msgid "SiteMap" msgstr "" -#: ../lib/plugin/SiteMap.php:53 +#: ../lib/plugin/SiteMap.php:55 #, c-format msgid "Recursively get BackLinks or links for %s" msgstr "" -#: ../lib/plugin/SiteMap.php:161 +#: ../lib/plugin/SiteMap.php:169 #, c-format msgid "(max. recursion level: %d)" msgstr "" +#: ../lib/plugin/SqlResult.php:42 +msgid "SqlResult" +msgstr "" + +#: ../lib/plugin/SqlResult.php:46 +msgid "Display arbitrary SQL result tables" +msgstr "" + +#: ../lib/plugin/SqlResult.php:81 ../lib/plugin/WikiPoll.php:159 +#: ../lib/plugin/WikiPoll.php:228 +msgid "Sorry! You must wait at least 20 minutes until you can vote again!" +msgstr "" + #: ../lib/plugin/SystemInfo.php:52 msgid "SystemInfo" msgstr "" @@ -2198,6 +2498,11 @@ msgstr "van %s" msgid "Include an external web page within the body of a wiki page." msgstr "" +#: ../lib/plugin/Transclude.php:76 +#, c-format +msgid "%s parameter missing" +msgstr "" + #: ../lib/plugin/Transclude.php:88 #, fuzzy msgid "Transcluded page" @@ -2213,7 +2518,85 @@ msgstr "Zie %s" msgid "Transcluded from %s" msgstr "van %s" -#: ../lib/plugin/UnfoldSubpages.php:36 +#: ../lib/plugin/TranslateText.php:44 ../lib/plugin/_WikiTranslation.php:98 +#, fuzzy +msgid "TranslateText" +msgstr "van %s" + +#: ../lib/plugin/TranslateText.php:48 +msgid "Define a translation for a specified text" +msgstr "" + +#: ../lib/plugin/TranslateText.php:68 +msgid "This internal action page cannot viewed." +msgstr "" + +#: ../lib/plugin/TranslateText.php:69 +msgid "You can only use it via the _WikiTranslation plugin." +msgstr "" + +#: ../lib/plugin/TranslateText.php:76 +msgid "Translation Error!" +msgstr "" + +#: ../lib/plugin/TranslateText.php:77 +msgid "" +"Your translated text is either empty or equal to the untranslated text. " +"Please try again." +msgstr "" + +#: ../lib/plugin/TranslateText.php:82 +msgid "ContributedTranslations" +msgstr "" + +#: ../lib/plugin/TranslateText.php:96 +#, c-format +msgid "Translate '%s' to '%s' in *%s*" +msgstr "" + +#: ../lib/plugin/TranslateText.php:99 +#, c-format +msgid "Translate %s to %s in %s" +msgstr "" + +#: ../lib/plugin/TranslateText.php:103 +#, fuzzy +msgid "Thanks for adding this translation!" +msgstr "Bedankt voor het veranderen van %s." + +#: ../lib/plugin/TranslateText.php:104 +#, c-format +msgid "" +"Your translated text doesn't yet appear in this %s, but the Administrator " +"will pick it up and add to the installation." +msgstr "" + +#: ../lib/plugin/TranslateText.php:106 +#, c-format +msgid "Your translation is stored in %s" +msgstr "" + +#: ../lib/plugin/TranslateText.php:112 ../lib/plugin/TranslateText.php:114 +#, fuzzy, c-format +msgid "From english to %s: " +msgstr "Je bent ingelogd als %s." + +#: ../lib/plugin/TranslateText.php:115 +#, fuzzy +msgid "Translate" +msgstr "van %s" + +#: ../lib/plugin/TranslateText.php:118 ../lib/plugin/WikiAdminChmod.php:163 +#: ../lib/plugin/WikiAdminRemove.php:201 ../lib/plugin/WikiAdminRename.php:158 +#: ../lib/plugin/WikiAdminSearchReplace.php:185 +#: ../lib/plugin/WikiAdminSelect.php:196 ../lib/plugin/WikiAdminSelect.php:217 +#: ../lib/plugin/WikiAdminSetAcl.php:157 ../lib/removepage.php:22 +#: ../themes/default/templates/login.tmpl:68 +#: ../themes/default/templates/userprefs.tmpl:214 +msgid "Cancel" +msgstr "Annuleer" + +#: ../lib/plugin/UnfoldSubpages.php:36 msgid "UnfoldSubpages" msgstr "" @@ -2221,67 +2604,86 @@ msgstr "" msgid "Includes the content of all SubPages of the current page." msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:83 +#: ../lib/plugin/UnfoldSubpages.php:84 #, c-format msgid "... first %d words" msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:164 +#: ../lib/plugin/UnfoldSubpages.php:152 #, c-format msgid " ... first %d lines" msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:188 +#: ../lib/plugin/UnfoldSubpages.php:176 #, fuzzy, c-format msgid "Included from %s:" msgstr "van %s" -#: ../lib/plugin/UpLoad.php:52 -msgid "Simple Plugin to load files up to server" +#: ../lib/plugin/UpLoad.php:53 +msgid "Upload files to the local InterWiki Upload:" msgstr "" -#: ../lib/plugin/UpLoad.php:79 ../lib/plugin/WikiForm.php:100 +#: ../lib/plugin/UpLoad.php:84 ../lib/plugin/WikiForm.php:100 msgid "Upload" msgstr "" -#: ../lib/plugin/UpLoad.php:102 -msgid "ACCESS DENIED: Please log in to upload files" -msgstr "" +#: ../lib/plugin/UpLoad.php:100 +#, fuzzy +msgid "ACCESS DENIED: You must log in to upload files." +msgstr "Je bent ingelogd als %s." -#: ../lib/plugin/UpLoad.php:116 +#: ../lib/plugin/UpLoad.php:112 #, c-format msgid "Files with extension %s are not allowed" msgstr "" -#: ../lib/plugin/UpLoad.php:122 +#: ../lib/plugin/UpLoad.php:116 #, c-format msgid "There is already a file with name %s uploaded" msgstr "" -#: ../lib/plugin/UpLoad.php:128 +#: ../lib/plugin/UpLoad.php:120 msgid "Sorry but this file is too big" msgstr "" -#: ../lib/plugin/UpLoad.php:133 -msgid "File successfully uploaded to location:" +#: ../lib/plugin/UpLoad.php:127 +msgid "File successfully uploaded." msgstr "" -#: ../lib/plugin/UpLoad.php:141 +#: ../lib/plugin/UpLoad.php:144 +#, fuzzy, c-format +msgid "uploaded %s" +msgstr "plat bestand %" + +#: ../lib/plugin/UpLoad.php:150 +#, fuzzy +msgid "Uploading failed: " +msgstr "plat bestand %" + +#: ../lib/plugin/UpLoad.php:168 msgid "Error: the upload log is not writable" msgstr "" -#: ../lib/plugin/UpLoad.php:145 +#: ../lib/plugin/UpLoad.php:172 msgid "Error: can't open the upload logfile" msgstr "" -#: ../lib/plugin/UpLoad.php:164 -#, fuzzy -msgid "Uploading failed." -msgstr "plat bestand %" +#: ../lib/plugin/UserFileManagement.php:38 +msgid "UserFileManagement" +msgstr "" + +#: ../lib/plugin/UserFileManagement.php:42 +msgid "Allows registered users to manipulate his/her files" +msgstr "" + +#: ../lib/plugin/UserFileManagement.php:136 +msgid "Current directory: " +msgstr "" #: ../lib/plugin/UserPreferences.php:34 #: ../themes/default/templates/head.tmpl:82 #: ../themes/default/templates/homepage.tmpl:11 +#: ../themes/smaller/templates/navbar.tmpl:25 msgid "UserPreferences" msgstr "GebruikersVoorkeuren" @@ -2291,19 +2693,126 @@ msgid "" "cannot be saved." msgstr "" -#: ../lib/plugin/UserPreferences.php:79 +#: ../lib/plugin/UserPreferences.php:80 msgid "Wrong password. Try again." msgstr "" -#: ../lib/plugin/UserPreferences.php:85 +#: ../lib/plugin/UserPreferences.php:97 +msgid "Password updated." +msgstr "" + +#: ../lib/plugin/UserPreferences.php:99 ../lib/plugin/UserPreferences.php:102 +msgid "Password cannot be changed." +msgstr "" + +#: ../lib/plugin/UserPreferences.php:106 msgid "No changes." msgstr "" -#: ../lib/plugin/UserPreferences.php:89 +#: ../lib/plugin/UserPreferences.php:109 #, c-format msgid "%d UserPreferences fields successfully updated." msgstr "" +#: ../lib/plugin/UserRegistration.php:16 +msgid "UserRegistration" +msgstr "" + +#: ../lib/plugin/UserRegistration.php:28 +msgid "Only the administrator is allowed to register new users." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:31 +msgid "Warning: You are already signed in, you cannot create another account." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:56 +#, fuzzy +msgid "Error: You must specify a user-id for the account." +msgstr "Je moet een bron specificeren om van te lezen." + +#: ../lib/plugin/UserRegistration.php:59 +msgid "Error: The user-id you specified is too short." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:63 +msgid "Error: The user-id you specified is not a valid WikiWord." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:66 +msgid "" +"Error: The user-id you specified is already in use, please choose another." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:72 +#, fuzzy +msgid "Error: You must specify a password for the account." +msgstr "Je moet een bron specificeren om van te lezen." + +#: ../lib/plugin/UserRegistration.php:74 +msgid "Error: The password you specified is too short." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:78 +#, fuzzy +msgid "Error: You must specify an email address." +msgstr "Je moet een bron specificeren om van te lezen." + +#: ../lib/plugin/UserRegistration.php:81 +msgid "Error: The email address you specified is not valid." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:84 +#, fuzzy +msgid "Error: You must specify a first name." +msgstr "Je moet een bron specificeren om van te lezen." + +#: ../lib/plugin/UserRegistration.php:87 +#, fuzzy +msgid "Error: You must specify a last name." +msgstr "Je moet een bron specificeren om van te lezen." + +#: ../lib/plugin/UserRegistration.php:97 +msgid "" +"Error: There seemed to be some problem creating the new home page. Please " +"try again or contact the administrator for assistance." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:112 +msgid "You have been registered at " +msgstr "" + +#: ../lib/plugin/UserRegistration.php:114 +msgid "Your username is: " +msgstr "" + +#: ../lib/plugin/UserRegistration.php:115 +msgid "Your password is: " +msgstr "" + +#: ../lib/plugin/UserRegistration.php:116 +#, fuzzy +msgid "Your home page is: " +msgstr "Fout bij schrijven pagina '%s'" + +#: ../lib/plugin/UserRegistration.php:118 +msgid "Welcome to our Wiki." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:126 +msgid " has been created." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:130 +msgid "The user has been sent their login information by email." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:132 +msgid "" +"Your password was sent to your email address. Please check your mail and " +"then login." +msgstr "" + #: ../lib/plugin/VisualWiki.php:93 msgid "" "Visualizes the Wiki structure in a graph using the 'dot' commandline tool " @@ -2328,7 +2837,7 @@ msgstr "ZoekPagina" msgid "Lists referenced page names which do not exist yet." msgstr "" -#: ../lib/plugin/WantedPages.php:47 +#: ../lib/plugin/WantedPages.php:47 ../lib/plugin/_WikiTranslation.php:79 msgid "PgsrcTranslation" msgstr "" @@ -2351,6 +2860,102 @@ msgstr "De %d meestbezochte pagina's van deze Wiki:" msgid "Count" msgstr "" +#: ../lib/plugin/WhoIsOnline.php:38 +msgid "WhoIsOnline" +msgstr "" + +#: ../lib/plugin/WhoIsOnline.php:42 +msgid "Show summary information of the current user sessions." +msgstr "" + +#: ../lib/plugin/WhoIsOnline.php:98 +msgid "Guest" +msgstr "" + +#: ../lib/plugin/WhoIsOnline.php:108 +#, fuzzy +msgid "" +msgstr "Geen" + +#: ../lib/plugin/WhoIsOnline.php:169 +#, c-format +msgid "%d minutes" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:42 +msgid "WikiAdminChmod" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:46 ../lib/plugin/WikiAdminSetAcl.php:45 +msgid "Set individual page permissions." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:80 +#, fuzzy, c-format +msgid "chmod page '%s' to '%s'." +msgstr "Je bent ingelogd als %s." + +#: ../lib/plugin/WikiAdminChmod.php:83 +#, c-format +msgid "Couldn't chmod page '%s' to '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:87 +msgid "Invalid chmod string" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:92 ../lib/plugin/WikiAdminSetAcl.php:86 +#, c-format +msgid "%s pages have been changed." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:95 +#: ../lib/plugin/WikiAdminSearchReplace.php:108 +#: ../lib/plugin/WikiAdminSetAcl.php:89 +msgid "No pages changed." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:150 ../lib/plugin/WikiAdminRemove.php:175 +#: ../lib/plugin/WikiAdminRename.php:144 +#: ../lib/plugin/WikiAdminSearchReplace.php:171 +#: ../lib/plugin/WikiAdminSetAcl.php:144 +msgid "Yes" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:154 ../lib/plugin/WikiAdminSetAcl.php:148 +#, fuzzy +msgid "Are you sure you want to permanently change the selected files?" +msgstr "Verwijder pagina" + +#: ../lib/plugin/WikiAdminChmod.php:157 +msgid "Chmod" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:159 ../lib/plugin/WikiAdminSetAcl.php:153 +#, fuzzy +msgid "Select the pages to change:" +msgstr "Verwijder pagina" + +#: ../lib/plugin/WikiAdminChmod.php:180 ../lib/plugin/WikiAdminSetAcl.php:173 +msgid "This plugin is currently under development and does not work!" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:181 +msgid "Chmod to permission:" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:184 +msgid "(ugo : rwx)" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:191 ../lib/plugin/WikiAdminSetAcl.php:206 +msgid "Propagate new permissions to all subpages?" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:193 ../lib/plugin/WikiAdminSetAcl.php:208 +msgid "(disable individual page permissions, enable inheritance)?" +msgstr "" + #: ../lib/plugin/WikiAdminRemove.php:39 msgid "WikiAdminRemove" msgstr "" @@ -2360,205 +2965,703 @@ msgstr "" msgid "Permanently remove all selected pages." msgstr "Verwijder pagina" -#: ../lib/plugin/WikiAdminRemove.php:116 ../lib/removepage.php:46 +#: ../lib/plugin/WikiAdminRemove.php:117 ../lib/removepage.php:46 #, c-format msgid "Removed page '%s' successfully." msgstr "Pagina '%s' verwijderd." -#: ../lib/plugin/WikiAdminRemove.php:169 -msgid "Yes" -msgstr "" +#: ../lib/plugin/WikiAdminRemove.php:177 +msgid "Are you sure you want to permanently remove the selected files?" +msgstr "" + +#: ../lib/plugin/WikiAdminRemove.php:180 +#, fuzzy +msgid "Remove selected pages" +msgstr "Verwijder pagina" + +#: ../lib/plugin/WikiAdminRemove.php:181 +#, fuzzy +msgid "Permanently remove the selected files:" +msgstr "Verwijder pagina" + +#: ../lib/plugin/WikiAdminRemove.php:184 +#, c-format +msgid "Also pages which have been deleted at least %s days." +msgstr "" + +#: ../lib/plugin/WikiAdminRemove.php:188 +#, fuzzy +msgid "List all pages." +msgstr "Fout bij schrijven pagina '%s'" + +#: ../lib/plugin/WikiAdminRemove.php:194 +#, c-format +msgid "(Pages which have been deleted at least %s days are already checked.)" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:39 +msgid "WikiAdminRename" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:43 +#, fuzzy +msgid "Rename selected pages." +msgstr "Verwijder pagina" + +#: ../lib/plugin/WikiAdminRename.php:76 +#, fuzzy, c-format +msgid "Renamed page '%s' to '%s'." +msgstr "Pagina '%s' verwijderd." + +#: ../lib/plugin/WikiAdminRename.php:79 +#, c-format +msgid "Couldn't rename page '%s' to '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:85 +#, c-format +msgid "%s pages have been permanently renamed." +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:88 +msgid "No pages renamed." +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:147 +#, fuzzy +msgid "Are you sure you want to permanently rename the selected files?" +msgstr "Verwijder pagina" + +#: ../lib/plugin/WikiAdminRename.php:151 +#, fuzzy +msgid "Rename selected pages" +msgstr "Verwijder pagina" + +#: ../lib/plugin/WikiAdminRename.php:152 +#, fuzzy +msgid "Select the pages to rename:" +msgstr "Verwijder pagina" + +#: ../lib/plugin/WikiAdminRename.php:173 +#, fuzzy +msgid "Rename" +msgstr "Verwijder Pagina" + +#: ../lib/plugin/WikiAdminRename.php:173 +#, fuzzy +msgid "from" +msgstr "van %s" + +#: ../lib/plugin/WikiAdminRename.php:176 +msgid "to" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:179 +msgid "(no regex, case-sensitive)" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:182 +msgid "Change pagename in all linked pages also?" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:39 +msgid "WikiAdminSearchReplace" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:43 +msgid "Search and replace text in selected wiki pages." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:81 +#, c-format +msgid "WikiAdminSearchReplace %s by %s" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:89 +msgid "Error: Empty search string." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:96 +#, c-format +msgid "Replaced '%s' with '%s' in page '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:99 +#, c-format +msgid "Search string '%s' not found in page '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:105 +#, c-format +msgid "%s pages changed." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:169 +msgid "Warning: The search string cannot be empty!" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:174 +msgid "" +"Are you sure you want to permanently search & replace text in the selected " +"files?" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:178 +msgid "Search & Replace" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:180 +#, fuzzy +msgid "Select the pages to search:" +msgstr "Verwijder pagina" + +#: ../lib/plugin/WikiAdminSearchReplace.php:200 +msgid "Replace: " +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:203 +msgid "by" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:206 +msgid "(no regex) Case-exact: " +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:41 +msgid "WikiAdminSelect" +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:45 +msgid "" +"Allows selection of multiple pages which get passed to other WikiAdmin " +"plugins." +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:113 ../lib/plugin/WikiAdminSelect.php:124 +msgid "Go" +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:118 +#, fuzzy +msgid "Select: " +msgstr "Verwijder pagina" + +#: ../lib/plugin/WikiAdminSelect.php:157 +#, c-format +msgid "Selected page '%s' passed to '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:194 +#, fuzzy +msgid "Select pages" +msgstr "Verwijder pagina" + +#: ../lib/plugin/WikiAdminSetAcl.php:41 +msgid "WikiAdminSetAcl" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:74 +#, fuzzy, c-format +msgid "set acl for page '%s'." +msgstr "Toon de pagina bron tekst '%s'." + +#: ../lib/plugin/WikiAdminSetAcl.php:77 +#, fuzzy, c-format +msgid "Couldn't setacl page '%s'." +msgstr "Kan verbinding naar data base niet tot stand brengen, geef op." + +#: ../lib/plugin/WikiAdminSetAcl.php:81 +msgid "Invalid acl" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:151 +msgid "SetAcl" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:181 +#, fuzzy, c-format +msgid "Pages: %s" +msgstr "PaginaGeschiedenis" + +#: ../lib/plugin/WikiAdminSetAcl.php:184 +#, c-format +msgid "page permission inherited from %s" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:186 +msgid "invidual page permission" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:188 +msgid "default page permission" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:189 +#, fuzzy +msgid "Type: " +msgstr "Pagina Naam" + +#: ../lib/plugin/WikiAdminUtils.php:29 +msgid "WikiAdminUtils" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:33 +msgid "Miscellaneous utility functions of use to the administrator." +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:66 +#, fuzzy +msgid "You must be an administrator to use this plugin." +msgstr "Je moet ingelogd zijn als beheerder om te %s in deze wiki" + +#: ../lib/plugin/WikiAdminUtils.php:95 +msgid "WikiAdminUtils says:" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:97 ../lib/stdlib.php:1335 +msgid "Okay" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:103 +msgid "Purge Markup Cache" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:104 +msgid "Delete Pages With Invalid Names" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:114 +msgid "Markup cache purged!" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:130 +msgid "No pages with bad names were found." +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:138 +#, c-format +msgid "Deleted %s pages with invalid names:" +msgstr "" + +#: ../lib/plugin/WikiBlog.php:77 +msgid "WikiBlog" +msgstr "" + +#: ../lib/plugin/WikiBlog.php:81 +#, c-format +msgid "Show and add blogs for %s" +msgstr "" + +#: ../lib/plugin/WikiBlog.php:156 +#, fuzzy, c-format +msgid "No page specified for %s" +msgstr "Je bent ingelogd als %s." + +#: ../lib/plugin/WikiBlog.php:186 ../lib/plugin/WikiForum.php:136 +msgid "New comment." +msgstr "" + +#: ../lib/plugin/WikiBlog.php:265 ../lib/plugin/WikiForum.php:208 +#, c-format +msgid "Comments on %s:" +msgstr "" + +#: ../lib/plugin/WikiForm.php:32 +msgid "WikiForm" +msgstr "" + +#: ../lib/plugin/WikiForm.php:67 +#, fuzzy +msgid "Load File" +msgstr "plat bestand %" + +#: ../lib/plugin/WikiForm.php:73 +msgid "Login" +msgstr "" + +#: ../lib/plugin/WikiForm.php:81 +msgid "Dump Pages" +msgstr "" + +#: ../lib/plugin/WikiForm.php:89 +msgid "Dump Pages as XHTML" +msgstr "" + +#: ../lib/plugin/WikiForm.php:104 +#, c-format +msgid "WikiForm: %s: unknown action" +msgstr "" + +#: ../lib/plugin/WikiForum.php:46 +msgid "WikiForum" +msgstr "" + +#: ../lib/plugin/WikiForum.php:50 +msgid "Handles threaded topics with comments/news and provide a input form" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:59 +msgid "WikiPoll" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:63 +msgid "Enable configurable polls" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:185 +msgid "Not enough questions answered!" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:194 ../lib/plugin/WikiPoll.php:255 +#, fuzzy, c-format +msgid "Missing %s for %s" +msgstr "versie %d van %s" + +#: ../lib/plugin/WikiPoll.php:222 +msgid "Ok" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:225 +#, fuzzy +msgid "Reset" +msgstr "van %s" + +#: ../lib/plugin/WikiPoll.php:271 ../lib/plugin/WikiPoll.php:285 +#, c-format +msgid " %d%% (%d/%d)" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:301 ../lib/plugin/WikiPoll.php:303 +msgid "The result of this poll so far:" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:301 +#, fuzzy +msgid "Thanks for participating!" +msgstr "Bedankt voor het veranderen van %s." + +#: ../lib/plugin/_AuthInfo.php:35 +#, fuzzy +msgid "_AuthInfo" +msgstr "Vorige Auteur" + +#: ../lib/plugin/_AuthInfo.php:39 +msgid "Display general and user specific auth information." +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:65 +msgid "General Auth Settings" +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:100 +#, c-format +msgid "Personal Auth Settings for '%s'" +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:102 +msgid "No userid" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:30 ../lib/plugin/_WikiTranslation.php:57 +#: ../themes/Portland/templates/actionbar.tmpl:21 +#: ../themes/default/templates/actionbar.tmpl:32 +#: ../themes/smaller/templates/info.tmpl:175 +msgid "DebugInfo" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:34 +#, c-format +msgid "Get debugging information for %s." +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:54 +#, c-format +msgid "Querying backend directly for '%s'" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:64 +#, c-format +msgid "No pagedata for %s" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:95 +msgid "" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:95 +msgid "" +msgstr "" + +#: ../lib/plugin/_PreferencesInfo.php:30 +#: ../themes/default/templates/userprefs.tmpl:12 +#, fuzzy +msgid "PreferencesInfo" +msgstr "Referenties" + +#: ../lib/plugin/_PreferencesInfo.php:34 +#, c-format +msgid "Get preferences information for current user %s." +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:47 +#, fuzzy +msgid "AddCommentPlugin" +msgstr "Klaar." + +#: ../lib/plugin/_WikiTranslation.php:48 +#, fuzzy +msgid "AddingPages" +msgstr "Fout bij schrijven pagina '%s'" + +#: ../lib/plugin/_WikiTranslation.php:49 +msgid "AuthorHistoryPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:51 +msgid "CalendarListPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:52 +msgid "CalendarPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:53 +#, fuzzy +msgid "CategoryCategory" +msgstr "Huidige pagina:" + +#: ../lib/plugin/_WikiTranslation.php:54 +#, fuzzy +msgid "CategoryHomePages" +msgstr "Huidige pagina:" + +#: ../lib/plugin/_WikiTranslation.php:55 +#, fuzzy +msgid "CommentPlugin" +msgstr "Klaar." + +#: ../lib/plugin/_WikiTranslation.php:56 +#, fuzzy +msgid "CreateTocPlugin" +msgstr "Bewaard: %s" + +#: ../lib/plugin/_WikiTranslation.php:58 +msgid "EditMetaDataPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:59 +#, fuzzy +msgid "ExternalSearchPlugin" +msgstr "TitelZoek" + +#: ../lib/plugin/_WikiTranslation.php:60 +#: ../themes/Portland/templates/navbar.tmpl:8 +#: ../themes/default/templates/head.tmpl:35 +#: ../themes/default/templates/navbar.tmpl:11 +#: ../themes/smaller/templates/navbar.tmpl:11 +msgid "FindPage" +msgstr "ZoekPagina" + +#: ../lib/plugin/_WikiTranslation.php:61 +#, fuzzy +msgid "FrameIncludePlugin" +msgstr "ZoekPagina" + +#: ../lib/plugin/_WikiTranslation.php:62 +#, fuzzy +msgid "FullRecentChanges" +msgstr "RecenteVeranderingen" -#: ../lib/plugin/WikiAdminRemove.php:171 -msgid "Are you sure you want to permanently remove the selected files?" +#: ../lib/plugin/_WikiTranslation.php:63 +msgid "HelloWorldPlugin" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:174 +#: ../lib/plugin/_WikiTranslation.php:64 #, fuzzy -msgid "Remove selected pages" -msgstr "Verwijder pagina" +msgid "HomePageAlias" +msgstr "ThuisPagina" -#: ../lib/plugin/WikiAdminRemove.php:175 +#: ../lib/plugin/_WikiTranslation.php:65 #, fuzzy -msgid "Permanently remove the selected files:" -msgstr "Verwijder pagina" - -#: ../lib/plugin/WikiAdminRemove.php:178 -#, c-format -msgid "Also pages which have been deleted at least %s days." -msgstr "" +msgid "IncludePagePlugin" +msgstr "ZoekPagina" -#: ../lib/plugin/WikiAdminRemove.php:182 +#: ../lib/plugin/_WikiTranslation.php:66 #, fuzzy -msgid "List all pages." -msgstr "Fout bij schrijven pagina '%s'" +msgid "InterWiki" +msgstr "TitelZoek" -#: ../lib/plugin/WikiAdminRemove.php:188 -#, c-format -msgid "(Pages which have been deleted at least %s days are already checked.)" +#: ../lib/plugin/_WikiTranslation.php:67 +msgid "LinkIcons" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:195 ../lib/plugin/WikiAdminSelect.php:195 -#: ../lib/plugin/WikiAdminSelect.php:216 ../lib/removepage.php:22 -#: ../themes/default/templates/login.tmpl:72 -#: ../themes/default/templates/userprefs.tmpl:214 -msgid "Cancel" -msgstr "Annuleer" +#: ../lib/plugin/_WikiTranslation.php:68 +msgid "MagicPhpWikiURLs" +msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:41 -msgid "WikiAdminSelect" +#: ../lib/plugin/_WikiTranslation.php:69 +msgid "MoreAboutMechanics" msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:45 -msgid "" -"Allows selection of multiple pages which get passed to other WikiAdmin " -"plugins." +#: ../lib/plugin/_WikiTranslation.php:70 +msgid "NewMarkupTestPage" msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:88 ../lib/plugin/WikiAdminSelect.php:112 -#: ../lib/plugin/WikiAdminSelect.php:123 -msgid "Go" +#: ../lib/plugin/_WikiTranslation.php:71 +msgid "OldMarkupTestPage" msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:117 -#, fuzzy -msgid "Select: " -msgstr "Verwijder pagina" +#: ../lib/plugin/_WikiTranslation.php:72 +msgid "OldStyleTablePlugin" +msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:156 -#, c-format -msgid "Selected page '%s' passed to '%s'." +#: ../lib/plugin/_WikiTranslation.php:73 +msgid "PageDump" msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:193 -#, fuzzy -msgid "Select pages" -msgstr "Verwijder pagina" +#: ../lib/plugin/_WikiTranslation.php:74 +msgid "PageGroupTest" +msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:29 -msgid "WikiAdminUtils" +#: ../lib/plugin/_WikiTranslation.php:75 +msgid "PageGroupTestFour" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:33 -msgid "Miscellaneous utility functions of use to the administrator." +#: ../lib/plugin/_WikiTranslation.php:76 +msgid "PageGroupTestOne" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:65 -#, fuzzy -msgid "You must be an administrator to use this plugin." -msgstr "Je moet ingelogd zijn als beheerder om te %s in deze wiki" +#: ../lib/plugin/_WikiTranslation.php:77 +msgid "PageGroupTestThree" +msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:93 -msgid "WikiAdminUtils says:" +#: ../lib/plugin/_WikiTranslation.php:78 +msgid "PageGroupTestTwo" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:95 ../lib/stdlib.php:1320 -msgid "Okay" +#: ../lib/plugin/_WikiTranslation.php:80 +msgid "PhotoAlbumPlugin" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:101 -msgid "Purge Markup Cache" +#: ../lib/plugin/_WikiTranslation.php:81 +msgid "PhpHighlightPlugin" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:102 -msgid "Delete Pages With Invalid Names" +#: ../lib/plugin/_WikiTranslation.php:82 +msgid "PhpWeatherPlugin" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:112 -msgid "Markup cache purged!" +#: ../lib/plugin/_WikiTranslation.php:83 +msgid "PhpWiki" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:128 -msgid "No pages with bad names were found." +#: ../lib/plugin/_WikiTranslation.php:84 +msgid "PhpWikiAdministration/Chmod" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:136 -#, c-format -msgid "Deleted %s pages with invalid names:" +#: ../lib/plugin/_WikiTranslation.php:85 +msgid "PhpWikiAdministration/Remove" msgstr "" -#: ../lib/plugin/WikiBlog.php:74 -msgid "WikiBlog" +#: ../lib/plugin/_WikiTranslation.php:86 +msgid "PhpWikiAdministration/Rename" msgstr "" -#: ../lib/plugin/WikiBlog.php:78 -#, c-format -msgid "Show and add blogs for %s" +#: ../lib/plugin/_WikiTranslation.php:87 +msgid "PhpWikiAdministration/Replace" msgstr "" -#: ../lib/plugin/WikiBlog.php:183 -msgid "New comment." +#: ../lib/plugin/_WikiTranslation.php:88 +msgid "PhpWikiDocumentation" msgstr "" -#: ../lib/plugin/WikiBlog.php:257 -#, c-format -msgid "Comments on %s:" +#: ../lib/plugin/_WikiTranslation.php:89 +msgid "PhpWikiPoll" msgstr "" -#: ../lib/plugin/WikiForm.php:32 -msgid "WikiForm" +#: ../lib/plugin/_WikiTranslation.php:90 +msgid "RawHtmlPlugin" msgstr "" -#: ../lib/plugin/WikiForm.php:67 +#: ../lib/plugin/_WikiTranslation.php:91 +msgid "RecentVisitors" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:92 #, fuzzy -msgid "Load File" -msgstr "plat bestand %" +msgid "RedirectToPlugin" +msgstr "van %s" -#: ../lib/plugin/WikiForm.php:73 -msgid "Login" +#: ../lib/plugin/_WikiTranslation.php:93 +msgid "ReleaseNotes" msgstr "" -#: ../lib/plugin/WikiForm.php:81 -msgid "Dump Pages" +#: ../lib/plugin/_WikiTranslation.php:94 +msgid "RichTablePlugin" msgstr "" -#: ../lib/plugin/WikiForm.php:89 -msgid "Dump Pages as XHTML" +#: ../lib/plugin/_WikiTranslation.php:95 +msgid "SteveWainstead" msgstr "" -#: ../lib/plugin/WikiForm.php:104 -#, c-format -msgid "WikiForm: %s: unknown action" +#: ../lib/plugin/_WikiTranslation.php:96 +msgid "SystemInfoPlugin" msgstr "" -#: ../lib/plugin/_BackendInfo.php:30 -#: ../themes/Portland/templates/actionbar.tmpl:21 -#: ../themes/default/templates/actionbar.tmpl:32 -msgid "DebugInfo" +#: ../lib/plugin/_WikiTranslation.php:97 +#, fuzzy +msgid "TranscludePlugin" +msgstr "van %s" + +#: ../lib/plugin/_WikiTranslation.php:99 +msgid "UnfoldSubpagesPlugin" msgstr "" -#: ../lib/plugin/_BackendInfo.php:34 -#, c-format -msgid "Get debugging information for %s." +#: ../lib/plugin/_WikiTranslation.php:100 +#, fuzzy +msgid "UpLoad" +msgstr "Låst" + +#: ../lib/plugin/_WikiTranslation.php:101 +msgid "WabiSabi" msgstr "" -#: ../lib/plugin/_BackendInfo.php:54 -#, c-format -msgid "Querying backend directly for '%s'" +#: ../lib/plugin/_WikiTranslation.php:102 +msgid "WikiBlogPlugin" msgstr "" -#: ../lib/plugin/_BackendInfo.php:64 -#, c-format -msgid "No pagedata for %s" +#: ../lib/plugin/_WikiTranslation.php:103 +msgid "WikiPlugin" msgstr "" -#: ../lib/plugin/_BackendInfo.php:95 -msgid "" +#: ../lib/plugin/_WikiTranslation.php:104 +#: ../themes/default/templates/head.tmpl:70 +msgid "WikiWikiWeb" msgstr "" -#: ../lib/plugin/_BackendInfo.php:95 -msgid "" +#: ../lib/plugin/_WikiTranslation.php:113 +msgid "_WikiTranslation" msgstr "" -#: ../lib/plugin/_PreferencesInfo.php:30 -#: ../themes/default/templates/userprefs.tmpl:12 -#, fuzzy -msgid "PreferencesInfo" -msgstr "Referenties" +#: ../lib/plugin/_WikiTranslation.php:117 +msgid "Show translations of various words or pages" +msgstr "" -#: ../lib/plugin/_PreferencesInfo.php:34 +#: ../lib/plugin/_WikiTranslation.php:266 #, c-format -msgid "Get preferences information for current user %s." +msgid "" +"TODO: Google can only translate from english and french. Find a translation " +"service for %s to language %s" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:270 +#, c-format +msgid "%s is empty" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:360 +#, c-format +msgid "Define the translation for %s in %s" msgstr "" #: ../lib/plugin/text2png.php:46 @@ -2611,101 +3714,109 @@ msgstr "" msgid "Remove page" msgstr "Verwijder pagina" -#: ../lib/stdlib.php:236 ../lib/stdlib.php:255 +#: ../lib/stdlib.php:234 ../lib/stdlib.php:253 msgid "BAD URL -- remove all of <, >, \"" msgstr "" -#: ../lib/stdlib.php:316 +#: ../lib/stdlib.php:314 msgid "BAD phpwiki: URL" msgstr "" -#: ../lib/stdlib.php:354 +#: ../lib/stdlib.php:352 msgid "Lock page to enable link" msgstr "" -#: ../lib/stdlib.php:453 +#: ../lib/stdlib.php:451 #, c-format msgid "'%s': Bad page name: %s" msgstr "" -#: ../lib/stdlib.php:490 +#: ../lib/stdlib.php:488 msgid "White space converted to single space" msgstr "" -#: ../lib/stdlib.php:495 +#: ../lib/stdlib.php:493 msgid "Control characters not allowed" msgstr "" -#: ../lib/stdlib.php:504 +#: ../lib/stdlib.php:502 #, c-format msgid "Leading %s not allowed" msgstr "" -#: ../lib/stdlib.php:507 +#: ../lib/stdlib.php:505 msgid "';' and ':' in pagenames are deprecated" msgstr "" -#: ../lib/stdlib.php:511 +#: ../lib/stdlib.php:509 msgid "too long" msgstr "" -#: ../lib/stdlib.php:516 +#: ../lib/stdlib.php:514 msgid "illegal pagename" msgstr "" -#: ../lib/stdlib.php:758 +#: ../lib/stdlib.php:756 msgid "Revision Not Found" msgstr "" -#: ../lib/stdlib.php:759 +#: ../lib/stdlib.php:757 #, fuzzy, c-format msgid "I'm sorry. Version %d of %s is not in the database." msgstr "Pagina naam '%s' staat niet in de data base" -#: ../lib/stdlib.php:762 +#: ../lib/stdlib.php:760 #, fuzzy msgid "Bad Version" msgstr "versie" -#: ../lib/stdlib.php:898 +#: ../lib/stdlib.php:896 msgid "-???" msgstr "" -#: ../lib/stdlib.php:901 +#: ../lib/stdlib.php:899 #, fuzzy, c-format msgid "%s b" msgstr "%s: %s" -#: ../lib/stdlib.php:903 +#: ../lib/stdlib.php:901 ../themes/smaller/templates/info.tmpl:29 #, fuzzy, c-format msgid "%s bytes" msgstr "%s: %s" -#: ../lib/stdlib.php:908 +#: ../lib/stdlib.php:906 #, c-format msgid "%s k" msgstr "" -#: ../lib/stdlib.php:910 +#: ../lib/stdlib.php:908 ../themes/smaller/templates/info.tmpl:32 #, fuzzy, c-format msgid "%s Kb (%s bytes)" msgstr "%s: %s" -#: ../lib/stdlib.php:1006 +#: ../lib/stdlib.php:1004 #, c-format msgid "%s: argument index out of range" msgstr "" -#: ../lib/stdlib.php:1046 ../themes/Hawaiian/lib/random.php:20 +#: ../lib/stdlib.php:1073 ../themes/Hawaiian/lib/random.php:20 #, c-format msgid "%s is empty." msgstr "" -#: ../lib/stdlib.php:1053 +#: ../lib/stdlib.php:1080 #, c-format msgid "Unable to open directory '%s' for reading" msgstr "" +#: ../lib/upgrade.php:134 +msgid "Upgrade disabled: user != isAdmin" +msgstr "" + +#: ../lib/upgrade.php:138 +msgid "Upgrading this PhpWiki" +msgstr "" + #: ../lib/ziplib.php:209 msgid "Can't inflate data: zlib support not enabled in this PHP" msgstr "" @@ -2731,16 +3842,18 @@ msgstr "Referenties" #: ../themes/Hawaiian/themeinfo.php:29 ../themes/MacOSX/themeinfo.php:104 #: ../themes/Portland/themeinfo.php:59 ../themes/Sidebar/themeinfo.php:32 #: ../themes/SpaceWiki/themeinfo.php:43 ../themes/default/themeinfo.php:24 +#: ../themes/smaller/themeinfo.php:26 msgid "Printer" msgstr "Drukker" #: ../themes/Hawaiian/themeinfo.php:30 ../themes/Portland/themeinfo.php:60 #: ../themes/Sidebar/themeinfo.php:33 ../themes/SpaceWiki/themeinfo.php:44 -#: ../themes/default/themeinfo.php:26 +#: ../themes/default/themeinfo.php:26 ../themes/smaller/themeinfo.php:28 msgid "Modern" msgstr "" #: ../themes/MacOSX/themeinfo.php:105 ../themes/default/themeinfo.php:25 +#: ../themes/smaller/themeinfo.php:27 msgid "Top & bottom toolbars" msgstr "" @@ -2750,12 +3863,15 @@ msgstr "VeranderTekst" #: ../themes/Portland/templates/actionbar.tmpl:8 #: ../themes/default/templates/actionbar.tmpl:5 +#: ../themes/smaller/templates/actionbar.tmpl:6 msgid "Edit Old Revision" msgstr "" #: ../themes/Portland/templates/actionbar.tmpl:10 #: ../themes/default/templates/actionbar.tmpl:7 #: ../themes/default/templates/head.tmpl:45 +#: ../themes/smaller/templates/actionbar.tmpl:8 +#: ../themes/smaller/templates/info.tmpl:167 msgid "View Source" msgstr "Bron Tekst" @@ -2794,18 +3910,18 @@ msgid "Page Execution took %s seconds" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:46 -#: ../themes/default/templates/editpage.tmpl:41 +#: ../themes/default/templates/editpage.tmpl:40 msgid "Warning: You are editing an old revision." msgstr "" #: ../themes/Portland/templates/editpage.tmpl:47 -#: ../themes/default/templates/editpage.tmpl:42 +#: ../themes/default/templates/editpage.tmpl:41 #, fuzzy msgid "Saving this page will overwrite the current version." msgstr "huidige versie" #: ../themes/Portland/templates/editpage.tmpl:62 -#: ../themes/default/templates/editpage.tmpl:89 +#: ../themes/default/templates/editpage.tmpl:95 #, c-format msgid "Author will be logged as %s." msgstr "" @@ -2823,70 +3939,64 @@ msgid "Edit Area Size" msgstr "InvoerVeld Afmetingen" #: ../themes/Portland/templates/editpage.tmpl:69 -#: ../themes/default/templates/editpage.tmpl:63 +#: ../themes/default/templates/editpage.tmpl:69 msgid "H" msgstr "H" #: ../themes/Portland/templates/editpage.tmpl:71 -#: ../themes/default/templates/editpage.tmpl:64 +#: ../themes/default/templates/editpage.tmpl:70 msgid "W" msgstr "B" #: ../themes/Portland/templates/editpage.tmpl:73 -#: ../themes/default/templates/editpage.tmpl:65 +#: ../themes/default/templates/editpage.tmpl:71 #, fuzzy msgid "Adjust" msgstr "Zet" #: ../themes/Portland/templates/editpage.tmpl:75 -#: ../themes/default/templates/editpage.tmpl:78 +#: ../themes/default/templates/editpage.tmpl:84 msgid "Use old markup" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:80 -#: ../themes/default/templates/editpage.tmpl:25 +#: ../themes/default/templates/editpage.tmpl:24 msgid "Preview only! Changes not saved." msgstr "" #: ../themes/Portland/templates/editpage.tmpl:103 #: ../themes/Portland/templates/editpage.tmpl:108 -#: ../themes/default/templates/editpage.tmpl:120 -#: ../themes/default/templates/editpage.tmpl:125 +#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:131 #, c-format msgid "See %s tips for editing." msgstr "%s tips for veranderen." #: ../themes/Portland/templates/editpage.tmpl:103 #: ../themes/Portland/templates/editpage.tmpl:108 -#: ../themes/default/templates/editpage.tmpl:120 -#: ../themes/default/templates/editpage.tmpl:125 +#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:131 msgid "GoodStyle" msgstr "GoedeStijl" #: ../themes/Portland/templates/editpage.tmpl:104 -#: ../themes/default/templates/editpage.tmpl:121 +#: ../themes/default/templates/editpage.tmpl:127 #, fuzzy msgid "OldTextFormattingRules" msgstr "TekstFormatteringsRegels" #: ../themes/Portland/templates/editpage.tmpl:104 #: ../themes/Portland/templates/editpage.tmpl:109 -#: ../themes/default/templates/editpage.tmpl:121 -#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:127 +#: ../themes/default/templates/editpage.tmpl:132 msgid "Synopsis" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:109 -#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:132 msgid "TextFormattingRules" msgstr "TekstFormatteringsRegels" -#: ../themes/Portland/templates/navbar.tmpl:8 -#: ../themes/default/templates/head.tmpl:35 -#: ../themes/default/templates/navbar.tmpl:11 -msgid "FindPage" -msgstr "ZoekPagina" - #: ../themes/Portland/templates/viewsource.tmpl:6 #: ../themes/default/templates/viewsource.tmpl:6 msgid "This page has been locked by the administrator and cannot be edited." @@ -2903,10 +4013,14 @@ msgid "diff" msgstr "diff" #: ../themes/default/templates/actionbar.tmpl:35 +#: ../themes/smaller/templates/actionbar.tmpl:38 +#: ../themes/smaller/templates/info.tmpl:178 msgid "PurgeHtmlCache" msgstr "" #: ../themes/default/templates/actionbar.tmpl:36 +#: ../themes/smaller/templates/actionbar.tmpl:39 +#: ../themes/smaller/templates/info.tmpl:179 msgid "" "Purge HTML cache for this page. Regenerate from WikiMarkup when next " "accessed." @@ -2918,8 +4032,10 @@ msgid "Add a Comment" msgstr "Klaar." #: ../themes/default/templates/blogform.tmpl:12 -#: ../themes/default/templates/editpage.tmpl:71 +#: ../themes/default/templates/editpage.tmpl:77 +#: ../themes/default/templates/forum-thread.tmpl:39 #: ../themes/default/templates/info.tmpl:72 +#: ../themes/smaller/templates/info.tmpl:78 #, fuzzy msgid "Summary:" msgstr "Vorige Auteur" @@ -2928,30 +4044,82 @@ msgstr "Vorige Auteur" msgid "Comment:" msgstr "" +#: ../themes/default/templates/comment.tmpl:18 +#: ../themes/default/templates/wikiblog.tmpl:19 +#, fuzzy, c-format +msgid "Comment modified on %s by %s" +msgstr "meest recente verandering op %s" + +#: ../themes/default/templates/comment.tmpl:28 +#, fuzzy, c-format +msgid "%s by %s" +msgstr "door %s" + #: ../themes/default/templates/dialog.tmpl:18 msgid "Dialog" msgstr "" -#: ../themes/default/templates/editpage.tmpl:29 +#: ../themes/default/templates/editpage.tmpl:28 #, c-format msgid "" "Please continue editing. (You'll find your %s at the bottom of the page.)" msgstr "" -#: ../themes/default/templates/editpage.tmpl:30 +#: ../themes/default/templates/editpage.tmpl:29 #, fuzzy msgid "edit area" msgstr "Verander" -#: ../themes/default/templates/editpage.tmpl:62 +#: ../themes/default/templates/editpage.tmpl:68 #, fuzzy msgid "Edit Area Size:" msgstr "InvoerVeld Afmetingen" -#: ../themes/default/templates/editpage.tmpl:77 +#: ../themes/default/templates/editpage.tmpl:83 msgid "This is a minor change." msgstr "" +#: ../themes/default/templates/forum-thread.tmpl:19 +#: ../themes/default/templates/forum-topics.tmpl:18 +msgid "New Topic" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:19 +#: ../themes/default/templates/forum-thread.tmpl:37 +msgid "Post new" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:21 +msgid "Message" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:27 +#, fuzzy, c-format +msgid "Posted: %s" +msgstr "PaginaGeschiedenis" + +#: ../themes/default/templates/forum-thread.tmpl:28 +#: ../themes/default/templates/forum-thread.tmpl:43 +msgid "Reply" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:21 +msgid "Topics" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:22 +msgid "Replies" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:24 +msgid "Views" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:25 +#, fuzzy +msgid "Last Post" +msgstr "Vorige Auteur" + #: ../themes/default/templates/head.tmpl:31 msgid "HowToUseWiki" msgstr "" @@ -2960,10 +4128,6 @@ msgstr "" msgid "SandBox" msgstr "" -#: ../themes/default/templates/head.tmpl:70 -msgid "WikiWikiWeb" -msgstr "" - #: ../themes/default/templates/homepage.tmpl:10 #, fuzzy, c-format msgid "You can personalize various settings in %s." @@ -2984,100 +4148,121 @@ msgid "CategoryHomepage" msgstr "Huidige pagina:" #: ../themes/default/templates/info.tmpl:31 +#: ../themes/smaller/templates/info.tmpl:37 msgid "1 word" msgstr "" #: ../themes/default/templates/info.tmpl:33 +#: ../themes/smaller/templates/info.tmpl:39 #, c-format msgid "%s words" msgstr "" #: ../themes/default/templates/info.tmpl:37 +#: ../themes/smaller/templates/info.tmpl:43 #, fuzzy, c-format msgid "Version %s" msgstr "versie %s" #: ../themes/default/templates/info.tmpl:38 +#: ../themes/smaller/templates/info.tmpl:44 msgid "Original (1.2 or 1.0)" msgstr "" #: ../themes/default/templates/info.tmpl:65 +#: ../themes/smaller/templates/info.tmpl:71 #, fuzzy msgid "Last Modified:" msgstr "meest recente verandering" #: ../themes/default/templates/info.tmpl:66 +#: ../themes/smaller/templates/info.tmpl:72 #, fuzzy msgid "Last Author:" msgstr "Vorige Auteur" #: ../themes/default/templates/info.tmpl:67 +#: ../themes/smaller/templates/info.tmpl:73 #, fuzzy msgid "Last Summary:" msgstr "Vorige Auteur" #: ../themes/default/templates/info.tmpl:70 +#: ../themes/smaller/templates/info.tmpl:76 #, fuzzy msgid "Saved on:" msgstr ", bewaard op" #: ../themes/default/templates/info.tmpl:71 +#: ../themes/smaller/templates/info.tmpl:77 #, fuzzy msgid "Author:" msgstr "Vorige Auteur" #: ../themes/default/templates/info.tmpl:75 +#: ../themes/smaller/templates/info.tmpl:81 #, c-format msgid "Statistics about %s." msgstr "" #: ../themes/default/templates/info.tmpl:86 +#: ../themes/smaller/templates/info.tmpl:92 #, fuzzy msgid "Supplanted on:" msgstr ", bewaard op" #: ../themes/default/templates/info.tmpl:103 +#: ../themes/smaller/templates/info.tmpl:109 #, fuzzy msgid "Page Version:" msgstr "versie" #: ../themes/default/templates/info.tmpl:107 +#: ../themes/smaller/templates/info.tmpl:113 msgid "Markup:" msgstr "" #: ../themes/default/templates/info.tmpl:111 +#: ../themes/smaller/templates/info.tmpl:117 msgid "Size:" msgstr "" #: ../themes/default/templates/info.tmpl:116 +#: ../themes/smaller/templates/info.tmpl:122 msgid "Hits:" msgstr "Teller:" #: ../themes/default/templates/info.tmpl:133 +#: ../themes/smaller/templates/info.tmpl:139 #, fuzzy msgid "home page" msgstr "Fout bij schrijven pagina '%s'" #: ../themes/default/templates/info.tmpl:136 +#: ../themes/smaller/templates/info.tmpl:142 #, fuzzy msgid "User page" msgstr "nieuw pagina" #: ../themes/default/templates/info.tmpl:139 +#: ../themes/smaller/templates/info.tmpl:145 #, fuzzy msgid "Action page" msgstr "Fout bij schrijven pagina '%s'" #: ../themes/default/templates/info.tmpl:142 +#: ../themes/smaller/templates/info.tmpl:148 #, fuzzy msgid "Blog page" msgstr "Fout bij schrijven pagina '%s'" #: ../themes/default/templates/info.tmpl:148 +#: ../themes/smaller/templates/info.tmpl:154 msgid "Subpage" msgstr "" #: ../themes/default/templates/info.tmpl:153 +#: ../themes/smaller/templates/info.tmpl:159 #, fuzzy msgid "Page Type:" msgstr "Pagina Naam" @@ -3090,29 +4275,23 @@ msgid "" "in RecentChanges to your home page." msgstr "" -#: ../themes/default/templates/login.tmpl:39 -msgid "" -"Note: If you create your personal HomePage with same the pagename as your " -"user id, you will be able to store your UserPreferences also. Otherwise not." -msgstr "" - -#: ../themes/default/templates/login.tmpl:42 +#: ../themes/default/templates/login.tmpl:51 msgid "New users may use an empty password." msgstr "" -#: ../themes/default/templates/login.tmpl:49 +#: ../themes/default/templates/login.tmpl:58 msgid "UserId:" msgstr "" -#: ../themes/default/templates/login.tmpl:53 +#: ../themes/default/templates/login.tmpl:62 msgid "Password:" msgstr "" -#: ../themes/default/templates/navbar.tmpl:33 +#: ../themes/default/templates/navbar.tmpl:34 msgid "Today" msgstr "" -#: ../themes/default/templates/navbar.tmpl:36 +#: ../themes/default/templates/navbar.tmpl:37 msgid "Admin" msgstr "" @@ -3125,6 +4304,72 @@ msgstr "Verander" msgid "You have not made any changes so no new version has been saved." msgstr "" +#: ../themes/default/templates/online.tmpl:8 +#: ../themes/default/templates/online.tmpl:16 +#: ../themes/default/templates/online.tmpl:58 +msgid "Who Is Online" +msgstr "" + +#: ../themes/default/templates/online.tmpl:16 +msgid "Switch to detailed list" +msgstr "" + +#: ../themes/default/templates/online.tmpl:22 +#, c-format +msgid "Our users created a total of %d pages." +msgstr "" + +#: ../themes/default/templates/online.tmpl:23 +#, c-format +msgid "We have a total of %d registered users." +msgstr "" + +#: ../themes/default/templates/online.tmpl:24 +#, c-format +msgid "The newest registered user is %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:28 +#, c-format +msgid "" +"In total there are %d user sessions online :: Unique %d Registered and %d " +"Guests" +msgstr "" + +#: ../themes/default/templates/online.tmpl:30 +#, c-format +msgid "Most users ever online was %d at %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:31 +msgid "Registered Users Online: " +msgstr "" + +#: ../themes/default/templates/online.tmpl:42 +msgid "Admin is also online." +msgstr "" + +#: ../themes/default/templates/online.tmpl:46 +#, c-format +msgid "This data is based on users active over the past %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:50 +msgid "Sorry, no dynamic DB Session support." +msgstr "" + +#: ../themes/default/templates/online.tmpl:58 +msgid "Switch to summary" +msgstr "" + +#: ../themes/default/templates/online.tmpl:62 +msgid "Registered Users" +msgstr "" + +#: ../themes/default/templates/online.tmpl:77 +msgid "Guests" +msgstr "" + #: ../themes/default/templates/redirect.tmpl:19 #: ../themes/default/templates/redirect.tmpl:40 #, fuzzy @@ -3149,16 +4394,18 @@ msgstr "Je zorgvuldige aandacht voor detail wordt erg gewaardeerd." msgid "Warning!" msgstr "" -#: ../themes/default/templates/signin.tmpl:18 +#: ../themes/default/templates/signin.tmpl:19 +#: ../themes/smaller/templates/signin.tmpl:33 #, c-format msgid "You are signed in as %s" msgstr "Je bent ingelogd als %s" -#: ../themes/default/templates/signin.tmpl:39 +#: ../themes/default/templates/signin.tmpl:40 +#: ../themes/smaller/templates/signin.tmpl:53 msgid "Enter your UserId to sign in" msgstr "" -#: ../themes/default/templates/signin.tmpl:54 +#: ../themes/default/templates/signin.tmpl:55 msgid "Sign in as:" msgstr "" @@ -3336,18 +4583,72 @@ msgstr "" msgid "Update Preferences" msgstr "Zet Voorkeuren" -#: ../themes/default/templates/wikiblog.tmpl:19 -#, fuzzy, c-format -msgid "Comment modified on %s by %s" -msgstr "meest recente verandering op %s" +#: ../themes/smaller/templates/actionbar.tmpl:31 +#, fuzzy +msgid "Info" +msgstr "Vorige Auteur" +#: ../themes/smaller/templates/info.tmpl:171 #, fuzzy -#~ msgid "Selected" -#~ msgstr "Verwijder pagina" +msgid "Diff previous Revision" +msgstr "Vorige" + +#: ../themes/smaller/templates/info.tmpl:172 +#, fuzzy +msgid "Diff previous Author" +msgstr "Vorige Auteur" #, fuzzy -#~ msgid "Removed page '%s' succesfully." -#~ msgstr "Pagina '%s' verwijderd." +#~ msgid "First Name:" +#~ msgstr "Pagina Naam" + +#, fuzzy +#~ msgid "Last Name:" +#~ msgstr "Pagina Naam" + +#, fuzzy +#~ msgid "browse pages in this wiki" +#~ msgstr "HTML is niet beschikbaar in deze wiki" + +#, fuzzy +#~ msgid "diff pages in this wiki" +#~ msgstr "De %d meestbezochte pagina's van deze Wiki:" + +#, fuzzy +#~ msgid "dump html pages from this wiki" +#~ msgstr "De %d meestbezochte pagina's van deze Wiki:" + +#, fuzzy +#~ msgid "dump serial pages from this wiki" +#~ msgstr "De %d meestbezochte pagina's van deze Wiki:" + +#, fuzzy +#~ msgid "edit pages in this wiki" +#~ msgstr "De %d meestbezochte pagina's van deze Wiki:" + +#, fuzzy +#~ msgid "create pages in this wiki" +#~ msgstr "De %d meestbezochte pagina's van deze Wiki:" + +#, fuzzy +#~ msgid "lock pages in this wiki" +#~ msgstr "De %d meestbezochte pagina's van deze Wiki:" + +#, fuzzy +#~ msgid "remove pages from this wiki" +#~ msgstr "De %d meestbezochte pagina's van deze Wiki:" + +#, fuzzy +#~ msgid "unlock pages in this wiki" +#~ msgstr "De %d meestbezochte pagina's van deze Wiki:" + +#, fuzzy +#~ msgid "view the source of pages in this wiki" +#~ msgstr "De %d meestbezochte pagina's van deze Wiki:" + +#, fuzzy +#~ msgid "Selected" +#~ msgstr "Verwijder pagina" #~ msgid "The PhpWiki Programming Team" #~ msgstr "Het PhpWiki programmeerteam" @@ -3377,10 +4678,6 @@ msgstr "meest recente verandering op %s" #~ msgid "You do not need to enter a password." #~ msgstr "Je hebt een ongeldige gebruikersnaam of wachtwoord ingevoerd." -#, fuzzy -#~ msgid "Loaded" -#~ msgstr "Låst" - #~ msgid "" #~ "Copy your changes to the clipboard or to another temporary place (e.g. " #~ "text editor)." @@ -3453,21 +4750,12 @@ msgstr "meest recente verandering op %s" #~ msgid "returning old version" #~ msgstr "is gelijk aaan huidige versie %d" -#~ msgid "Copied to [%s]" -#~ msgstr "Kopie van [%s]" - #~ msgid "- skipped" #~ msgstr "- overgeslagen" #~ msgid "ViewSource" #~ msgstr "BronTekst" -#~ msgid "View Wiki code for page '%s'." -#~ msgstr "Toon de pagina bron tekst '%s'." - -#~ msgid "version %d of %s" -#~ msgstr "versie %d van %s" - #~ msgid "Click here to remove the page now." #~ msgstr "Klik hier om de pagina nu te verwijderen." @@ -3507,9 +4795,6 @@ msgstr "meest recente verandering op %s" #~ msgid "%d matches found in %d pages." #~ msgstr "%d keer gevonden in %d pagina's." -#~ msgid "You must specify a source to read from" -#~ msgstr "Je moet een bron specificeren om van te lezen." - #~ msgid "Error message: %s" #~ msgstr "Foutboodschap: %s" diff --git a/locale/po/phpwiki.pot b/locale/po/phpwiki.pot index 8c1e2827c..63ed46523 100644 --- a/locale/po/phpwiki.pot +++ b/locale/po/phpwiki.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PhpWiki-1.3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-02-27 00:25+0100\n" +"POT-Creation-Date: 2004-03-17 15:58+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban \n" "Language-Team: LANGUAGE \n" @@ -31,202 +31,229 @@ msgstr "" msgid "%s: file not found" msgstr "" -#: ../lib/PageList.php:91 ../lib/PageList.php:123 +#: ../lib/Google.php:157 +#, c-format +msgid "" +"You must first obtain a license key at %s to be able to use the Google API." +msgstr "" + +#: ../lib/Google.php:159 +msgid "It's free however." +msgstr "" + +#: ../lib/PageList.php:92 #, c-format msgid "Sort by %s" msgstr "" -#: ../lib/PageList.php:129 +#: ../lib/PageList.php:126 +msgid "Click to sort" +msgstr "" + +#: ../lib/PageList.php:131 msgid "Click to reverse sort order" msgstr "" -#: ../lib/PageList.php:193 +#: ../lib/PageList.php:139 +#, c-format +msgid "Click to sort by %s" +msgstr "" + +#: ../lib/PageList.php:212 msgid "Click to de-/select all pages" msgstr "" -#: ../lib/PageList.php:248 ../lib/PageList.php:630 +#: ../lib/PageList.php:267 ../lib/PageList.php:669 msgid "Remove" msgstr "" -#: ../lib/PageList.php:272 ../lib/plugin/UnfoldSubpages.php:170 +#: ../lib/PageList.php:283 +msgid "This page already exists" +msgstr "" + +#: ../lib/PageList.php:297 ../lib/plugin/UnfoldSubpages.php:158 #, c-format msgid " ... first %d bytes" msgstr "" -#: ../lib/PageList.php:277 +#: ../lib/PageList.php:302 #, c-format msgid " ... around %s" msgstr "" -#: ../lib/PageList.php:300 +#: ../lib/PageList.php:325 #, c-format msgid "%s not found" msgstr "" -#: ../lib/PageList.php:369 ../lib/plugin/AuthorHistory.php:174 +#: ../lib/PageList.php:394 ../lib/plugin/AuthorHistory.php:174 #: ../lib/plugin/WantedPages.php:140 msgid "Page Name" msgstr "" -#: ../lib/PageList.php:436 ../lib/plugin/FullTextSearch.php:93 +#: ../lib/PageList.php:466 ../lib/plugin/FullTextSearch.php:93 msgid "" msgstr "" -#: ../lib/PageList.php:626 ../lib/PageList.php:628 +#: ../lib/PageList.php:665 ../lib/PageList.php:667 msgid "Content" msgstr "" -#: ../lib/PageList.php:632 +#: ../lib/PageList.php:671 msgid "Rename to" msgstr "" -#: ../lib/PageList.php:634 +#: ../lib/PageList.php:673 msgid "Permission" msgstr "" -#: ../lib/PageList.php:636 +#: ../lib/PageList.php:675 msgid "ACL" msgstr "" -#: ../lib/PageList.php:638 +#: ../lib/PageList.php:677 msgid "Select" msgstr "" -#: ../lib/PageList.php:642 +#: ../lib/PageList.php:681 msgid "Last Modified" msgstr "" -#: ../lib/PageList.php:644 +#: ../lib/PageList.php:683 msgid "Hits" msgstr "" -#: ../lib/PageList.php:646 +#: ../lib/PageList.php:685 msgid "Size" msgstr "" -#: ../lib/PageList.php:649 +#: ../lib/PageList.php:688 msgid "Last Summary" msgstr "" -#: ../lib/PageList.php:651 ../lib/plugin/AuthorHistory.php:123 +#: ../lib/PageList.php:690 ../lib/plugin/AuthorHistory.php:123 #: ../lib/plugin/AuthorHistory.php:176 ../lib/plugin/PluginManager.php:90 msgid "Version" msgstr "" -#: ../lib/PageList.php:654 +#: ../lib/PageList.php:693 msgid "Last Author" msgstr "" -#: ../lib/PageList.php:656 ../lib/WikiGroup.php:39 +#: ../lib/PageList.php:695 ../lib/WikiGroup.php:39 msgid "Owner" msgstr "" -#: ../lib/PageList.php:658 +#: ../lib/PageList.php:697 msgid "Group" msgstr "" -#: ../lib/PageList.php:660 ../themes/default/templates/editpage.tmpl:95 +#: ../lib/PageList.php:699 ../themes/default/templates/editpage.tmpl:101 #: ../themes/default/templates/info.tmpl:127 +#: ../themes/smaller/templates/info.tmpl:133 msgid "Locked" msgstr "" -#: ../lib/PageList.php:661 +#: ../lib/PageList.php:700 msgid "locked" msgstr "" -#: ../lib/PageList.php:664 +#: ../lib/PageList.php:703 msgid "Minor Edit" msgstr "" -#: ../lib/PageList.php:664 +#: ../lib/PageList.php:703 msgid "minor" msgstr "" -#: ../lib/PageList.php:666 +#: ../lib/PageList.php:705 msgid "Markup" msgstr "" -#: ../lib/PageList.php:717 ../lib/plugin/WantedPages.php:167 +#: ../lib/PageList.php:756 ../lib/plugin/WantedPages.php:167 #, c-format msgid "Columns: %s." msgstr "" -#: ../lib/PagePerm.php:252 +#: ../lib/PagePerm.php:260 msgid "List this page and all subpages" msgstr "" -#: ../lib/PagePerm.php:253 +#: ../lib/PagePerm.php:261 msgid "View this page and all subpages" msgstr "" -#: ../lib/PagePerm.php:254 +#: ../lib/PagePerm.php:262 msgid "Edit this page and all subpages" msgstr "" -#: ../lib/PagePerm.php:255 +#: ../lib/PagePerm.php:263 msgid "Create a new (sub)page" msgstr "" -#: ../lib/PagePerm.php:256 +#: ../lib/PagePerm.php:264 msgid "Download the page contents" msgstr "" -#: ../lib/PagePerm.php:257 +#: ../lib/PagePerm.php:265 msgid "Change page attributes" msgstr "" -#: ../lib/PagePerm.php:258 +#: ../lib/PagePerm.php:266 msgid "Remove this page" msgstr "" -#: ../lib/PagePerm.php:287 +#: ../lib/PagePerm.php:295 #, c-format msgid "Unsupported ACL access type %s ignored." msgstr "" -#: ../lib/PageType.php:120 ../lib/loadsave.php:409 +#: ../lib/PageType.php:125 ../lib/loadsave.php:409 #: ../themes/default/templates/info.tmpl:144 #: ../themes/default/templates/info.tmpl:145 +#: ../themes/smaller/templates/info.tmpl:150 +#: ../themes/smaller/templates/info.tmpl:151 msgid "InterWikiMap" msgstr "" -#: ../lib/PageType.php:206 ../lib/loadsave.php:552 +#: ../lib/PageType.php:211 ../lib/loadsave.php:552 #, c-format msgid "Loading InterWikiMap from external file %s." msgstr "" -#: ../lib/PageType.php:304 +#: ../lib/PageType.php:309 msgid "Moniker" msgstr "" -#: ../lib/PageType.php:305 +#: ../lib/PageType.php:310 msgid "InterWiki Address" msgstr "" -#: ../lib/RSSWriter091.php:116 ../lib/loadsave.php:870 +#: ../lib/RSSWriter091.php:116 ../lib/loadsave.php:872 #: ../lib/plugin/RecentChanges.php:250 ../lib/plugin/RecentChanges.php:263 -#: ../lib/plugin/RecentChanges.php:362 ../lib/plugin/RecentChanges.php:438 -#: ../lib/plugin/RecentChanges.php:529 ../lib/plugin/RecentChanges.php:605 +#: ../lib/plugin/RecentChanges.php:365 ../lib/plugin/RecentChanges.php:441 +#: ../lib/plugin/RecentChanges.php:535 ../lib/plugin/RecentChanges.php:611 #: ../themes/Portland/templates/navbar.tmpl:28 #: ../themes/default/templates/navbar.tmpl:10 +#: ../themes/smaller/templates/navbar.tmpl:10 msgid "RecentChanges" msgstr "" -#: ../lib/Request.php:39 ../lib/main.php:773 ../lib/main.php:786 +#: ../lib/Request.php:57 ../lib/main.php:756 ../lib/main.php:769 #, c-format msgid "%s is not writable." msgstr "" -#: ../lib/Request.php:39 +#: ../lib/Request.php:57 msgid "The PhpWiki access log file" msgstr "" -#: ../lib/Request.php:41 ../lib/main.php:776 +#: ../lib/Request.php:59 ../lib/main.php:759 #, c-format msgid "Please ensure that %s is writable, or redefine %s in index.php." msgstr "" -#: ../lib/Request.php:42 +#: ../lib/Request.php:60 #, c-format msgid "the file '%s'" msgstr "" @@ -236,114 +263,119 @@ msgstr "" msgid "%4d %s\n" msgstr "" -#: ../lib/Theme.php:346 +#: ../lib/Theme.php:368 msgid "Never edited." msgstr "" -#: ../lib/Theme.php:353 +#: ../lib/Theme.php:375 #, c-format msgid "%s at %s" msgstr "" -#: ../lib/Theme.php:357 +#: ../lib/Theme.php:379 #, c-format msgid "Version %s, saved %s." msgstr "" -#: ../lib/Theme.php:359 +#: ../lib/Theme.php:381 #, c-format msgid "Last edited %s." msgstr "" -#: ../lib/Theme.php:368 +#: ../lib/Theme.php:390 #, c-format msgid "Version %s, saved on %s." msgstr "" -#: ../lib/Theme.php:370 +#: ../lib/Theme.php:392 #, c-format msgid "Last edited on %s." msgstr "" -#: ../lib/Theme.php:386 +#: ../lib/Theme.php:408 msgid "today" msgstr "" -#: ../lib/Theme.php:392 +#: ../lib/Theme.php:414 msgid "yesterday" msgstr "" -#: ../lib/Theme.php:491 +#: ../lib/Theme.php:518 #, c-format msgid "Empty link to: %s" msgstr "" -#: ../lib/Theme.php:497 ../themes/MacOSX/themeinfo.php:71 +#: ../lib/Theme.php:530 ../themes/MacOSX/themeinfo.php:71 #, c-format msgid "Create: %s" msgstr "" -#: ../lib/Theme.php:532 +#: ../lib/Theme.php:566 #, c-format msgid "'%s': Bad page name" msgstr "" -#: ../lib/Theme.php:802 ../themes/default/templates/actionbar.tmpl:5 +#: ../lib/Theme.php:837 ../themes/default/templates/actionbar.tmpl:5 +#: ../themes/smaller/templates/actionbar.tmpl:6 msgid "Edit" msgstr "" -#: ../lib/Theme.php:803 ../lib/plugin/Diff.php:36 +#: ../lib/Theme.php:838 ../lib/plugin/Diff.php:36 msgid "Diff" msgstr "" -#: ../lib/Theme.php:804 ../themes/default/templates/signin.tmpl:16 +#: ../lib/Theme.php:839 ../themes/default/templates/signin.tmpl:16 #: ../themes/default/templates/signin.tmpl:32 +#: ../themes/smaller/templates/signin.tmpl:21 +#: ../themes/smaller/templates/signin.tmpl:44 msgid "Sign Out" msgstr "" -#: ../lib/Theme.php:805 ../lib/WikiUser.php:204 ../lib/WikiUserNew.php:406 -#: ../themes/default/templates/login.tmpl:70 +#: ../lib/Theme.php:840 ../lib/WikiUser.php:204 ../lib/WikiUserNew.php:415 +#: ../lib/WikiUserNew.php:1161 ../themes/default/templates/login.tmpl:66 #: ../themes/default/templates/signin.tmpl:60 +#: ../themes/smaller/templates/signin.tmpl:54 +#: ../themes/smaller/templates/signin.tmpl:57 msgid "Sign In" msgstr "" -#: ../lib/Theme.php:806 ../themes/MacOSX/themeinfo.php:135 +#: ../lib/Theme.php:841 ../themes/MacOSX/themeinfo.php:135 msgid "Lock Page" msgstr "" -#: ../lib/Theme.php:807 ../themes/MacOSX/themeinfo.php:136 +#: ../lib/Theme.php:842 ../themes/MacOSX/themeinfo.php:136 msgid "Unlock Page" msgstr "" -#: ../lib/Theme.php:808 +#: ../lib/Theme.php:843 msgid "Remove Page" msgstr "" -#: ../lib/WikiDB.php:407 +#: ../lib/WikiDB.php:405 #, c-format msgid "renamed from %s" msgstr "" -#: ../lib/WikiDB.php:412 +#: ../lib/WikiDB.php:410 msgid "WikiDB::renamePage() not yet implemented for this backend" msgstr "" -#: ../lib/WikiDB.php:700 +#: ../lib/WikiDB.php:698 #, c-format msgid "%s: Date of new revision is %s" msgstr "" -#: ../lib/WikiDB.php:763 +#: ../lib/WikiDB.php:761 #, c-format msgid "Optimizing %s" msgstr "" -#: ../lib/WikiDB.php:1207 ../themes/default/templates/homepage.tmpl:7 +#: ../lib/WikiDB.php:1205 ../themes/default/templates/homepage.tmpl:7 #, c-format msgid "Describe %s here." msgstr "" -#: ../lib/WikiDB.php:1242 +#: ../lib/WikiDB.php:1240 #, c-format msgid "Acck! Revision %s of %s seems to have been deleted!" msgstr "" @@ -365,7 +397,7 @@ msgid "" "DB file to a permanent location or risk losing all the pages!" msgstr "" -#: ../lib/WikiGroup.php:29 ../lib/WikiGroup.php:113 +#: ../lib/WikiGroup.php:29 ../lib/WikiGroup.php:122 msgid "No or unsupported GROUP_METHOD defined" msgstr "" @@ -401,43 +433,52 @@ msgstr "" msgid "Creator" msgstr "" -#: ../lib/WikiGroup.php:149 +#: ../lib/WikiGroup.php:164 #, c-format msgid "Undefined method %s for special group %s" msgstr "" -#: ../lib/WikiGroup.php:154 ../lib/WikiGroup.php:169 ../lib/WikiGroup.php:184 -#: ../lib/WikiGroup.php:200 ../lib/WikiGroup.php:216 +#: ../lib/WikiGroup.php:169 ../lib/WikiGroup.php:184 ../lib/WikiGroup.php:289 +#: ../lib/WikiGroup.php:294 ../lib/WikiGroup.php:310 ../lib/WikiGroup.php:326 #, c-format msgid "Method '%s' not implemented in this GROUP_METHOD %s" msgstr "" -#: ../lib/WikiGroup.php:342 +#: ../lib/WikiGroup.php:454 #, c-format msgid "Group %s does not exist" msgstr "" -#: ../lib/WikiGroup.php:440 +#: ../lib/WikiGroup.php:486 +msgid "CategoryGroup" +msgstr "" + +#: ../lib/WikiGroup.php:561 msgid "No or not enough GROUP_DB SQL statements defined" msgstr "" -#: ../lib/WikiGroup.php:544 +#: ../lib/WikiGroup.php:767 msgid "AUTH_GROUP_FILE not defined" msgstr "" -#: ../lib/WikiGroup.php:548 +#: ../lib/WikiGroup.php:771 #, c-format msgid "Cannot open AUTH_GROUP_FILE %s" msgstr "" -#: ../lib/WikiGroup.php:647 +#: ../lib/WikiGroup.php:878 msgid "LDAP_AUTH_HOST not defined" msgstr "" -#: ../lib/WikiGroup.php:653 +#: ../lib/WikiGroup.php:884 msgid "No LDAP in this PHP version" msgstr "" +#: ../lib/WikiGroup.php:963 ../lib/WikiUserNew.php:1679 +#, c-format +msgid "Unable to connect to LDAP server %s" +msgstr "" + #: ../lib/WikiPlugin.php:88 msgid "n/a" msgstr "" @@ -447,22 +488,22 @@ msgstr "" msgid "argument '%s' not declared by plugin" msgstr "" -#: ../lib/WikiPlugin.php:182 +#: ../lib/WikiPlugin.php:189 #, c-format msgid "trailing cruft in plugin args: '%s'" msgstr "" -#: ../lib/WikiPlugin.php:291 +#: ../lib/WikiPlugin.php:303 #, c-format msgid "Plugin %s failed." msgstr "" -#: ../lib/WikiPlugin.php:297 +#: ../lib/WikiPlugin.php:309 #, c-format msgid "Plugin %s disabled." msgstr "" -#: ../lib/WikiPlugin.php:385 +#: ../lib/WikiPlugin.php:400 #, c-format msgid "Include of '%s' failed" msgstr "" @@ -474,11 +515,11 @@ msgid "" "referring page." msgstr "" -#: ../lib/WikiUser.php:177 ../lib/WikiUserNew.php:463 +#: ../lib/WikiUser.php:177 ../lib/WikiUserNew.php:482 msgid "Invalid password or userid." msgstr "" -#: ../lib/WikiUser.php:179 ../lib/WikiUserNew.php:465 +#: ../lib/WikiUser.php:179 ../lib/WikiUserNew.php:484 msgid "Insufficient permissions." msgstr "" @@ -508,84 +549,87 @@ msgid "" "password in your UserPreferences." msgstr "" -#: ../lib/WikiUserNew.php:490 +#: ../lib/WikiUserNew.php:514 msgid "Format of UserPreferences cookie not recognised." msgstr "" -#: ../lib/WikiUserNew.php:491 +#: ../lib/WikiUserNew.php:515 msgid "Default preferences will be used." msgstr "" -#: ../lib/WikiUserNew.php:881 +#: ../lib/WikiUserNew.php:922 +msgid "" +"The length of the stored password is shorter than the system policy allows. " +"Sorry, you cannot login.\n" +" You have to ask the System Administrator to reset your password." +msgstr "" + +#: ../lib/WikiUserNew.php:935 msgid "The crypt function is not available in this version of PHP." msgstr "" -#: ../lib/WikiUserNew.php:882 +#: ../lib/WikiUserNew.php:936 msgid "" -"Please set ENCRYPTED_PASSWD to false in index.php and change ADMIN_PASSWD." +"Please set ENCRYPTED_PASSWD to false in index.php and probably change " +"ADMIN_PASSWD." msgstr "" -#: ../lib/WikiUserNew.php:895 +#: ../lib/WikiUserNew.php:949 msgid "Please set ENCRYPTED_PASSWD to true in index.php." msgstr "" -#: ../lib/WikiUserNew.php:966 +#: ../lib/WikiUserNew.php:1073 #, c-format msgid "" "\n" "You stored an empty password in your %s page.\n" msgstr "" -#: ../lib/WikiUserNew.php:967 +#: ../lib/WikiUserNew.php:1074 msgid "Your access permissions are only for a BogoUser.\n" msgstr "" -#: ../lib/WikiUserNew.php:968 +#: ../lib/WikiUserNew.php:1075 msgid "Please set your password in UserPreferences." msgstr "" -#: ../lib/WikiUserNew.php:1430 -#, c-format -msgid "Unable to connect to LDAP server %s" -msgstr "" - -#: ../lib/WikiUserNew.php:1459 +#: ../lib/WikiUserNew.php:1717 msgid "Unable to connect to LDAP server " msgstr "" -#: ../lib/WikiUserNew.php:1493 +#: ../lib/WikiUserNew.php:1747 msgid "Unable to connect to IMAP server " msgstr "" -#: ../lib/XmlElement.php:417 ../lib/stdlib.php:997 +#: ../lib/XmlElement.php:417 ../lib/stdlib.php:995 #, c-format msgid "Can't mix '%s' with '%s' type format strings" msgstr "" -#: ../lib/config.php:146 +#: ../lib/config.php:125 #, c-format msgid "Can't set locale: '%s'" msgstr "" -#: ../lib/config.php:378 +#: ../lib/config.php:387 msgid "An unnamed PhpWiki" msgstr "" -#: ../lib/config.php:384 ../lib/imagecache.php:57 +#: ../lib/config.php:390 ../lib/imagecache.php:57 #: ../themes/default/templates/userprefs.tmpl:113 msgid "HomePage" msgstr "" -#: ../lib/config.php:399 +#: ../lib/config.php:404 #, c-format msgid "Encrypted passwords cannot be used: %s." msgstr "" -#: ../lib/config.php:405 +#: ../lib/config.php:410 msgid "The admin password cannot be empty. Please update your /index.php" msgstr "" -#: ../lib/config.php:409 +#: ../lib/config.php:414 msgid "" "Empty db_session_table. Turn USE_DB_SESSION off or define the table name." msgstr "" @@ -675,14 +719,16 @@ msgstr "" #: ../lib/display.php:54 ../lib/plugin/PageGroup.php:91 #: ../lib/plugin/PageGroup.php:156 ../lib/plugin/PageGroup.php:167 #: ../lib/plugin/PageGroup.php:183 ../lib/plugin/PageGroup.php:190 -#: ../lib/plugin/PageHistory.php:216 ../lib/plugin/UnfoldSubpages.php:177 +#: ../lib/plugin/PageHistory.php:216 ../lib/plugin/UnfoldSubpages.php:165 #: ../themes/default/templates/head.tmpl:45 #, c-format msgid "%s: %s" msgstr "" #: ../lib/display.php:104 ../lib/display.php:111 -#: ../lib/plugin/BackLinks.php:31 ../themes/default/templates/navbar.tmpl:23 +#: ../lib/plugin/BackLinks.php:31 ../lib/plugin/_WikiTranslation.php:50 +#: ../themes/default/templates/navbar.tmpl:23 +#: ../themes/smaller/templates/navbar.tmpl:19 msgid "BackLinks" msgstr "" @@ -696,58 +742,58 @@ msgstr "" msgid "(Redirected from %s)" msgstr "" -#: ../lib/editpage.php:82 ../lib/editpage.php:283 +#: ../lib/editpage.php:90 ../lib/editpage.php:360 msgid "Your version" msgstr "" -#: ../lib/editpage.php:82 ../lib/editpage.php:284 +#: ../lib/editpage.php:90 ../lib/editpage.php:361 msgid "Other version" msgstr "" -#: ../lib/editpage.php:99 +#: ../lib/editpage.php:176 #, c-format msgid "Edit: %s" msgstr "" -#: ../lib/editpage.php:133 +#: ../lib/editpage.php:210 #, c-format msgid "View Source: %s" msgstr "" -#: ../lib/editpage.php:147 +#: ../lib/editpage.php:224 msgid "Page now locked." msgstr "" -#: ../lib/editpage.php:147 +#: ../lib/editpage.php:224 msgid "Page now unlocked." msgstr "" -#: ../lib/editpage.php:221 +#: ../lib/editpage.php:298 #, c-format msgid "Saved: %s" msgstr "" -#: ../lib/editpage.php:266 ../themes/MacOSX/themeinfo.php:137 +#: ../lib/editpage.php:343 ../themes/MacOSX/themeinfo.php:137 msgid "Page Locked" msgstr "" -#: ../lib/editpage.php:267 +#: ../lib/editpage.php:344 msgid "" "This page has been locked by the administrator so your changes can not be " "saved." msgstr "" -#: ../lib/editpage.php:268 +#: ../lib/editpage.php:345 msgid "" "(Copy your changes to the clipboard. You can try editing a different page or " "save your text in a text editor.)" msgstr "" -#: ../lib/editpage.php:269 +#: ../lib/editpage.php:346 msgid "Sorry for the inconvenience." msgstr "" -#: ../lib/editpage.php:282 ../lib/editpage.php:535 +#: ../lib/editpage.php:359 ../lib/editpage.php:612 #, c-format msgid "" "Some of the changes could not automatically be combined. Please look for " @@ -755,36 +801,36 @@ msgid "" "those sections by hand before you click Save." msgstr "" -#: ../lib/editpage.php:286 ../lib/editpage.php:538 +#: ../lib/editpage.php:363 ../lib/editpage.php:615 msgid "Please check it through before saving." msgstr "" -#: ../lib/editpage.php:297 +#: ../lib/editpage.php:374 msgid "Conflicting Edits!" msgstr "" -#: ../lib/editpage.php:298 +#: ../lib/editpage.php:375 msgid "" "In the time since you started editing this page, another user has saved a " "new version of it." msgstr "" -#: ../lib/editpage.php:299 +#: ../lib/editpage.php:376 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." msgstr "" -#: ../lib/editpage.php:370 +#: ../lib/editpage.php:447 msgid "Preview" msgstr "" -#: ../lib/editpage.php:374 +#: ../lib/editpage.php:451 msgid "Save" msgstr "" -#: ../lib/editpage.php:510 +#: ../lib/editpage.php:587 #, c-format msgid "Merge and Edit: %s" msgstr "" @@ -871,7 +917,7 @@ msgstr "" msgid "has edit conflicts - overwriting anyway" msgstr "" -#: ../lib/loadsave.php:471 ../lib/loadsave.php:835 ../lib/loadsave.php:838 +#: ../lib/loadsave.php:471 ../lib/loadsave.php:837 ../lib/loadsave.php:840 msgid "The PhpWiki programming team" msgstr "" @@ -913,6 +959,7 @@ msgstr "" #: ../themes/Portland/templates/navbar.tmpl:30 #: ../themes/default/templates/head.tmpl:76 #: ../themes/default/templates/navbar.tmpl:37 +#: ../themes/smaller/templates/navbar.tmpl:22 msgid "PhpWikiAdministration" msgstr "" @@ -933,219 +980,236 @@ msgstr "" msgid "Skipping" msgstr "" -#: ../lib/loadsave.php:789 +#: ../lib/loadsave.php:791 #, c-format msgid "Unable to load: %s" msgstr "" -#: ../lib/loadsave.php:796 +#: ../lib/loadsave.php:798 #, c-format msgid "Bad file type: %s" msgstr "" -#: ../lib/loadsave.php:810 +#: ../lib/loadsave.php:812 #, c-format msgid "Loading '%s'" msgstr "" -#: ../lib/loadsave.php:841 +#: ../lib/loadsave.php:843 msgid "Loading up virgin wiki" msgstr "" -#: ../lib/loadsave.php:861 +#: ../lib/loadsave.php:863 msgid "No uploaded file to upload?" msgstr "" -#: ../lib/loadsave.php:865 +#: ../lib/loadsave.php:867 #, c-format msgid "Uploading %s" msgstr "" -#: ../lib/main.php:288 +#: ../lib/main.php:264 #, c-format msgid "%s is disallowed on this wiki." msgstr "" -#: ../lib/main.php:292 +#: ../lib/main.php:268 #, c-format msgid "You must sign in to %s." msgstr "" -#: ../lib/main.php:294 +#: ../lib/main.php:270 #, c-format msgid "You must log in to %s." msgstr "" -#: ../lib/main.php:296 ../lib/plugin/PluginManager.php:65 +#: ../lib/main.php:272 ../lib/plugin/PluginManager.php:65 #, c-format msgid "You must be an administrator to %s." msgstr "" -#: ../lib/main.php:309 +#: ../lib/main.php:285 msgid "view this page" msgstr "" -#: ../lib/main.php:310 +#: ../lib/main.php:286 msgid "diff this page" msgstr "" -#: ../lib/main.php:311 +#: ../lib/main.php:287 msgid "dump html pages" msgstr "" -#: ../lib/main.php:312 +#: ../lib/main.php:288 msgid "dump serial pages" msgstr "" -#: ../lib/main.php:313 +#: ../lib/main.php:289 msgid "edit this page" msgstr "" -#: ../lib/main.php:314 +#: ../lib/main.php:290 msgid "create this page" msgstr "" -#: ../lib/main.php:315 +#: ../lib/main.php:291 msgid "load files into this wiki" msgstr "" -#: ../lib/main.php:316 +#: ../lib/main.php:292 msgid "lock this page" msgstr "" -#: ../lib/main.php:317 +#: ../lib/main.php:293 msgid "remove this page" msgstr "" -#: ../lib/main.php:318 +#: ../lib/main.php:294 msgid "unlock this page" msgstr "" -#: ../lib/main.php:319 +#: ../lib/main.php:295 msgid "upload a zip dump" msgstr "" -#: ../lib/main.php:320 +#: ../lib/main.php:296 msgid "verify the current action" msgstr "" -#: ../lib/main.php:321 +#: ../lib/main.php:297 msgid "view the source of this page" msgstr "" -#: ../lib/main.php:322 +#: ../lib/main.php:298 msgid "access this wiki via XML-RPC" msgstr "" -#: ../lib/main.php:323 +#: ../lib/main.php:299 msgid "download a zip dump from this wiki" msgstr "" -#: ../lib/main.php:324 +#: ../lib/main.php:300 msgid "download an html zip dump from this wiki" msgstr "" -#: ../lib/main.php:336 +#: ../lib/main.php:312 msgid "Browsing pages" msgstr "" -#: ../lib/main.php:337 +#: ../lib/main.php:313 msgid "Diffing pages" msgstr "" -#: ../lib/main.php:338 +#: ../lib/main.php:314 msgid "Dumping html pages" msgstr "" -#: ../lib/main.php:339 +#: ../lib/main.php:315 msgid "Dumping serial pages" msgstr "" -#: ../lib/main.php:340 +#: ../lib/main.php:316 msgid "Editing pages" msgstr "" -#: ../lib/main.php:341 +#: ../lib/main.php:317 msgid "Creating pages" msgstr "" -#: ../lib/main.php:342 +#: ../lib/main.php:318 msgid "Loading files" msgstr "" -#: ../lib/main.php:343 +#: ../lib/main.php:319 msgid "Locking pages" msgstr "" -#: ../lib/main.php:344 +#: ../lib/main.php:320 msgid "Removing pages" msgstr "" -#: ../lib/main.php:345 +#: ../lib/main.php:321 msgid "Unlocking pages" msgstr "" -#: ../lib/main.php:346 +#: ../lib/main.php:322 msgid "Uploading zip dumps" msgstr "" -#: ../lib/main.php:347 +#: ../lib/main.php:323 msgid "Verify the current action" msgstr "" -#: ../lib/main.php:348 +#: ../lib/main.php:324 msgid "Viewing the source of pages" msgstr "" -#: ../lib/main.php:349 +#: ../lib/main.php:325 msgid "XML-RPC access" msgstr "" -#: ../lib/main.php:350 +#: ../lib/main.php:326 msgid "Downloading zip dumps" msgstr "" -#: ../lib/main.php:351 +#: ../lib/main.php:327 msgid "Downloading html zip dumps" msgstr "" -#: ../lib/main.php:459 +#: ../lib/main.php:436 #, c-format msgid "%s: Bad action" msgstr "" -#: ../lib/main.php:481 +#: ../lib/main.php:458 msgid "Fatal PhpWiki Error" msgstr "" -#: ../lib/main.php:664 ../lib/plugin/FullTextSearch.php:32 +#: ../lib/main.php:641 ../lib/plugin/FullTextSearch.php:32 #: ../lib/plugin/WantedPages.php:123 msgid "FullTextSearch" msgstr "" -#: ../lib/main.php:667 ../lib/plugin/RecentChanges.php:519 +#: ../lib/main.php:644 ../lib/plugin/RecentChanges.php:525 #: ../lib/plugin/TitleSearch.php:31 msgid "TitleSearch" msgstr "" -#: ../lib/main.php:774 +#: ../lib/main.php:757 msgid "The session.save_path directory" msgstr "" -#: ../lib/main.php:777 +#: ../lib/main.php:760 #, c-format msgid "the directory '%s'" msgstr "" -#: ../lib/main.php:781 +#: ../lib/main.php:764 #, c-format msgid "Attempting to use the directory '%s' instead." msgstr "" -#: ../lib/main.php:788 +#: ../lib/main.php:771 msgid "Users will not be able to sign in." msgstr "" +#: ../lib/plugin/AddComment.php:39 +msgid "AddComment" +msgstr "" + +#: ../lib/plugin/AddComment.php:43 +#, c-format +msgid "Show and add comments for %s" +msgstr "" + +#: ../lib/plugin/AddComment.php:106 ../lib/plugin/CreateToc.php:203 +msgid "Click to display" +msgstr "" + +#: ../lib/plugin/AddComment.php:108 +msgid "Comments" +msgstr "" + #: ../lib/plugin/AllPages.php:31 msgid "AllPages" msgstr "" @@ -1159,28 +1223,29 @@ msgstr "" msgid "Pages in this wiki (%d total):" msgstr "" -#: ../lib/plugin/AllPages.php:81 ../lib/plugin/AllUsers.php:93 +#: ../lib/plugin/AllPages.php:81 ../lib/plugin/AllUsers.php:100 #, c-format msgid "Elapsed time: %s s" msgstr "" -#: ../lib/plugin/AllUsers.php:35 +#: ../lib/plugin/AllUsers.php:36 msgid "AllUsers" msgstr "" -#: ../lib/plugin/AllUsers.php:39 +#: ../lib/plugin/AllUsers.php:40 msgid "" "With external authentication all users which stored their Preferences. " "Without external authentication all once signed-in users (from version 1.3.4 " "on)." msgstr "" -#: ../lib/plugin/AllUsers.php:75 +#: ../lib/plugin/AllUsers.php:76 #, c-format msgid "Authenticated users on this wiki (%d total):" msgstr "" #: ../lib/plugin/AuthorHistory.php:70 +#: ../themes/smaller/templates/info.tmpl:169 msgid "AuthorHistory" msgstr "" @@ -1195,6 +1260,8 @@ msgid "Minor" msgstr "" #: ../lib/plugin/AuthorHistory.php:125 +#: ../themes/default/templates/forum-thread.tmpl:21 +#: ../themes/default/templates/forum-topics.tmpl:23 msgid "Author" msgstr "" @@ -1294,6 +1361,30 @@ msgstr "" msgid "Embed hidden comments in WikiPages." msgstr "" +#: ../lib/plugin/CreatePage.php:37 +msgid "CreatePage" +msgstr "" + +#: ../lib/plugin/CreatePage.php:41 +msgid "Create a Wiki page." +msgstr "" + +#: ../lib/plugin/CreateToc.php:34 +msgid "CreateToc" +msgstr "" + +#: ../lib/plugin/CreateToc.php:38 +msgid "Automatically link headers at the top" +msgstr "" + +#: ../lib/plugin/CreateToc.php:146 ../lib/plugin/IncludePage.php:116 +msgid "no page specified" +msgstr "" + +#: ../lib/plugin/CreateToc.php:205 ../lib/plugin/CreateToc.php:208 +msgid "Table Of Contents" +msgstr "" + #: ../lib/plugin/Diff.php:40 msgid "Display differences between revisions" msgstr "" @@ -1412,6 +1503,14 @@ msgstr "" msgid "Sound Score" msgstr "" +#: ../lib/plugin/GooglePlugin.php:43 +msgid "GooglePlugin" +msgstr "" + +#: ../lib/plugin/GooglePlugin.php:47 +msgid "Make use of the Google API" +msgstr "" + #: ../lib/plugin/HelloWorld.php:46 msgid "HelloWorld" msgstr "" @@ -1434,10 +1533,6 @@ msgstr "" msgid "<%s: no such section>" msgstr "" -#: ../lib/plugin/IncludePage.php:116 -msgid "no page specified" -msgstr "" - #: ../lib/plugin/IncludePage.php:132 ../lib/plugin/PageGroup.php:121 #, c-format msgid "%s(%d): no such revision" @@ -1448,11 +1543,11 @@ msgstr "" msgid "Included from %s" msgstr "" -#: ../lib/plugin/IncludeSiteMap.php:55 +#: ../lib/plugin/IncludeSiteMap.php:52 msgid "IncludeSiteMap" msgstr "" -#: ../lib/plugin/IncludeSiteMap.php:59 +#: ../lib/plugin/IncludeSiteMap.php:56 #, c-format msgid "Include recursively all linked pages starting at %s" msgstr "" @@ -1469,12 +1564,13 @@ msgstr "" msgid "Wiki Name" msgstr "" -#: ../lib/plugin/InterWikiSearch.php:92 ../lib/plugin/RecentChanges.php:516 +#: ../lib/plugin/InterWikiSearch.php:92 ../lib/plugin/RecentChanges.php:522 msgid "Search" msgstr "" #: ../lib/plugin/LikePages.php:32 ../themes/Portland/templates/navbar.tmpl:10 #: ../themes/default/templates/navbar.tmpl:22 +#: ../themes/smaller/templates/navbar.tmpl:18 msgid "LikePages" msgstr "" @@ -1506,7 +1602,7 @@ msgstr "" msgid "Lists the names of all SubPages of the current page." msgstr "" -#: ../lib/plugin/ListSubpages.php:68 ../lib/plugin/UnfoldSubpages.php:133 +#: ../lib/plugin/ListSubpages.php:68 ../lib/plugin/UnfoldSubpages.php:127 msgid "The current page has no subpages defined." msgstr "" @@ -1515,7 +1611,7 @@ msgstr "" msgid "SubPages of %s:" msgstr "" -#: ../lib/plugin/ListSubpages.php:90 ../lib/plugin/UnfoldSubpages.php:149 +#: ../lib/plugin/ListSubpages.php:90 ../lib/plugin/UnfoldSubpages.php:137 #, c-format msgid "recursive inclusion of page %s ignored" msgstr "" @@ -1528,17 +1624,17 @@ msgstr "" msgid "List the most popular pages." msgstr "" -#: ../lib/plugin/MostPopular.php:78 +#: ../lib/plugin/MostPopular.php:80 #, c-format msgid "The %d most popular pages of this wiki:" msgstr "" -#: ../lib/plugin/MostPopular.php:81 +#: ../lib/plugin/MostPopular.php:83 #, c-format msgid "The %d least popular pages of this wiki:" msgstr "" -#: ../lib/plugin/MostPopular.php:83 +#: ../lib/plugin/MostPopular.php:85 msgid "Visited pages on this wiki, ordered by popularity:" msgstr "" @@ -1698,6 +1794,8 @@ msgstr "" #: ../themes/SpaceWiki/lib/RecentChanges.php:35 #: ../themes/default/templates/info.tmpl:18 #: ../themes/default/templates/info.tmpl:22 +#: ../themes/smaller/templates/info.tmpl:19 +#: ../themes/smaller/templates/info.tmpl:23 msgid "minor edit" msgstr "" @@ -1708,6 +1806,8 @@ msgstr "" #: ../lib/plugin/PageHistory.php:247 ../lib/plugin/RecentChanges.php:65 #: ../themes/Portland/templates/actionbar.tmpl:18 #: ../themes/default/templates/actionbar.tmpl:27 +#: ../themes/smaller/templates/actionbar.tmpl:33 +#: ../themes/smaller/templates/info.tmpl:168 msgid "PageHistory" msgstr "" @@ -1727,33 +1827,40 @@ msgstr "" msgid "Show extra page Info and statistics for %s." msgstr "" -#: ../lib/plugin/PageTrail.php:43 +#: ../lib/plugin/PageTrail.php:45 msgid "PageTrail" msgstr "" -#: ../lib/plugin/PageTrail.php:47 +#: ../lib/plugin/PageTrail.php:49 msgid "PageTrail Plugin" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:53 +#: ../lib/plugin/PhotoAlbum.php:146 msgid "PhotoAlbum" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:57 +#: ../lib/plugin/PhotoAlbum.php:150 msgid "" "Displays a set of photos listed in a text file with optional descriptions" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:80 ../lib/plugin/Transclude.php:76 -#, c-format -msgid "%s parameter missing" +#: ../lib/plugin/PhotoAlbum.php:433 +msgid "Fixed album location is not allowed." +msgstr "" + +#: ../lib/plugin/PhotoAlbum.php:434 +msgid "));" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:84 ../lib/plugin/Transclude.php:85 +#: ../lib/plugin/PhotoAlbum.php:452 ../lib/plugin/Transclude.php:85 msgid "Bad url in src: remove all of <, >, \"" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:90 +#: ../lib/plugin/PhotoAlbum.php:476 +msgid "Wrong server setting: allow_url_fopen set to Off" +msgstr "" + +#: ../lib/plugin/PhotoAlbum.php:480 #, c-format msgid "Unable to read %s " msgstr "" @@ -1958,7 +2065,7 @@ msgid "All %s are listed below." msgstr "" #: ../lib/plugin/RecentChanges.php:250 ../lib/plugin/RecentChanges.php:263 -#: ../lib/plugin/RecentChanges.php:362 ../lib/plugin/RecentChanges.php:438 +#: ../lib/plugin/RecentChanges.php:365 ../lib/plugin/RecentChanges.php:441 #: ../themes/Portland/templates/editpage.tmpl:66 msgid "RecentEdits" msgstr "" @@ -1967,27 +2074,27 @@ msgstr "" msgid "No changes found" msgstr "" -#: ../lib/plugin/RecentChanges.php:517 +#: ../lib/plugin/RecentChanges.php:523 msgid "Title Search" msgstr "" -#: ../lib/plugin/RecentChanges.php:740 +#: ../lib/plugin/RecentChanges.php:746 msgid "Show minor edits for:" msgstr "" -#: ../lib/plugin/RecentChanges.php:742 +#: ../lib/plugin/RecentChanges.php:748 msgid "Show all changes for:" msgstr "" -#: ../lib/plugin/RecentChanges.php:744 +#: ../lib/plugin/RecentChanges.php:750 msgid "Show changes for:" msgstr "" -#: ../lib/plugin/RecentChanges.php:764 +#: ../lib/plugin/RecentChanges.php:770 msgid "1 day" msgstr "" -#: ../lib/plugin/RecentChanges.php:768 +#: ../lib/plugin/RecentChanges.php:774 #, c-format msgid "%s days" msgstr "" @@ -2017,11 +2124,11 @@ msgstr "" msgid "Viewing redirecting page." msgstr "" -#: ../lib/plugin/RichTable.php:35 +#: ../lib/plugin/RichTable.php:32 msgid "RichTable" msgstr "" -#: ../lib/plugin/RichTable.php:39 +#: ../lib/plugin/RichTable.php:36 msgid "Layout tables using a very rich markup style." msgstr "" @@ -2039,6 +2146,19 @@ msgstr "" msgid "(max. recursion level: %d)" msgstr "" +#: ../lib/plugin/SqlResult.php:42 +msgid "SqlResult" +msgstr "" + +#: ../lib/plugin/SqlResult.php:46 +msgid "Display arbitrary SQL result tables" +msgstr "" + +#: ../lib/plugin/SqlResult.php:81 ../lib/plugin/WikiPoll.php:159 +#: ../lib/plugin/WikiPoll.php:228 +msgid "Sorry! You must wait at least 20 minutes until you can vote again!" +msgstr "" + #: ../lib/plugin/SystemInfo.php:52 msgid "SystemInfo" msgstr "" @@ -2279,6 +2399,11 @@ msgstr "" msgid "Include an external web page within the body of a wiki page." msgstr "" +#: ../lib/plugin/Transclude.php:76 +#, c-format +msgid "%s parameter missing" +msgstr "" + #: ../lib/plugin/Transclude.php:88 msgid "Transcluded page" msgstr "" @@ -2293,6 +2418,81 @@ msgstr "" msgid "Transcluded from %s" msgstr "" +#: ../lib/plugin/TranslateText.php:44 ../lib/plugin/_WikiTranslation.php:98 +msgid "TranslateText" +msgstr "" + +#: ../lib/plugin/TranslateText.php:48 +msgid "Define a translation for a specified text" +msgstr "" + +#: ../lib/plugin/TranslateText.php:68 +msgid "This internal action page cannot viewed." +msgstr "" + +#: ../lib/plugin/TranslateText.php:69 +msgid "You can only use it via the _WikiTranslation plugin." +msgstr "" + +#: ../lib/plugin/TranslateText.php:76 +msgid "Translation Error!" +msgstr "" + +#: ../lib/plugin/TranslateText.php:77 +msgid "" +"Your translated text is either empty or equal to the untranslated text. " +"Please try again." +msgstr "" + +#: ../lib/plugin/TranslateText.php:82 +msgid "ContributedTranslations" +msgstr "" + +#: ../lib/plugin/TranslateText.php:96 +#, c-format +msgid "Translate '%s' to '%s' in *%s*" +msgstr "" + +#: ../lib/plugin/TranslateText.php:99 +#, c-format +msgid "Translate %s to %s in %s" +msgstr "" + +#: ../lib/plugin/TranslateText.php:103 +msgid "Thanks for adding this translation!" +msgstr "" + +#: ../lib/plugin/TranslateText.php:104 +#, c-format +msgid "" +"Your translated text doesn't yet appear in this %s, but the Administrator " +"will pick it up and add to the installation." +msgstr "" + +#: ../lib/plugin/TranslateText.php:106 +#, c-format +msgid "Your translation is stored in %s" +msgstr "" + +#: ../lib/plugin/TranslateText.php:112 ../lib/plugin/TranslateText.php:114 +#, c-format +msgid "From english to %s: " +msgstr "" + +#: ../lib/plugin/TranslateText.php:115 +msgid "Translate" +msgstr "" + +#: ../lib/plugin/TranslateText.php:118 ../lib/plugin/WikiAdminChmod.php:163 +#: ../lib/plugin/WikiAdminRemove.php:201 ../lib/plugin/WikiAdminRename.php:158 +#: ../lib/plugin/WikiAdminSearchReplace.php:185 +#: ../lib/plugin/WikiAdminSelect.php:196 ../lib/plugin/WikiAdminSelect.php:217 +#: ../lib/plugin/WikiAdminSetAcl.php:157 ../lib/removepage.php:22 +#: ../themes/default/templates/login.tmpl:68 +#: ../themes/default/templates/userprefs.tmpl:214 +msgid "Cancel" +msgstr "" + #: ../lib/plugin/UnfoldSubpages.php:36 msgid "UnfoldSubpages" msgstr "" @@ -2306,56 +2506,61 @@ msgstr "" msgid "... first %d words" msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:164 +#: ../lib/plugin/UnfoldSubpages.php:152 #, c-format msgid " ... first %d lines" msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:188 +#: ../lib/plugin/UnfoldSubpages.php:176 #, c-format msgid "Included from %s:" msgstr "" -#: ../lib/plugin/UpLoad.php:52 -msgid "Simple Plugin to load files up to server" +#: ../lib/plugin/UpLoad.php:53 +msgid "Upload files to the local InterWiki Upload:" msgstr "" -#: ../lib/plugin/UpLoad.php:79 ../lib/plugin/WikiForm.php:100 +#: ../lib/plugin/UpLoad.php:84 ../lib/plugin/WikiForm.php:100 msgid "Upload" msgstr "" -#: ../lib/plugin/UpLoad.php:102 -msgid "ACCESS DENIED: Please log in to upload files" +#: ../lib/plugin/UpLoad.php:100 +msgid "ACCESS DENIED: You must log in to upload files." msgstr "" -#: ../lib/plugin/UpLoad.php:116 +#: ../lib/plugin/UpLoad.php:112 #, c-format msgid "Files with extension %s are not allowed" msgstr "" -#: ../lib/plugin/UpLoad.php:122 +#: ../lib/plugin/UpLoad.php:116 #, c-format msgid "There is already a file with name %s uploaded" msgstr "" -#: ../lib/plugin/UpLoad.php:128 +#: ../lib/plugin/UpLoad.php:120 msgid "Sorry but this file is too big" msgstr "" -#: ../lib/plugin/UpLoad.php:133 -msgid "File successfully uploaded to location:" +#: ../lib/plugin/UpLoad.php:127 +msgid "File successfully uploaded." msgstr "" -#: ../lib/plugin/UpLoad.php:141 -msgid "Error: the upload log is not writable" +#: ../lib/plugin/UpLoad.php:144 +#, c-format +msgid "uploaded %s" msgstr "" -#: ../lib/plugin/UpLoad.php:145 -msgid "Error: can't open the upload logfile" +#: ../lib/plugin/UpLoad.php:150 +msgid "Uploading failed: " +msgstr "" + +#: ../lib/plugin/UpLoad.php:168 +msgid "Error: the upload log is not writable" msgstr "" -#: ../lib/plugin/UpLoad.php:164 -msgid "Uploading failed." +#: ../lib/plugin/UpLoad.php:172 +msgid "Error: can't open the upload logfile" msgstr "" #: ../lib/plugin/UserFileManagement.php:38 @@ -2373,6 +2578,7 @@ msgstr "" #: ../lib/plugin/UserPreferences.php:34 #: ../themes/default/templates/head.tmpl:82 #: ../themes/default/templates/homepage.tmpl:11 +#: ../themes/smaller/templates/navbar.tmpl:25 msgid "UserPreferences" msgstr "" @@ -2382,15 +2588,23 @@ msgid "" "cannot be saved." msgstr "" -#: ../lib/plugin/UserPreferences.php:79 +#: ../lib/plugin/UserPreferences.php:80 msgid "Wrong password. Try again." msgstr "" -#: ../lib/plugin/UserPreferences.php:85 +#: ../lib/plugin/UserPreferences.php:97 +msgid "Password updated." +msgstr "" + +#: ../lib/plugin/UserPreferences.php:99 ../lib/plugin/UserPreferences.php:102 +msgid "Password cannot be changed." +msgstr "" + +#: ../lib/plugin/UserPreferences.php:106 msgid "No changes." msgstr "" -#: ../lib/plugin/UserPreferences.php:89 +#: ../lib/plugin/UserPreferences.php:109 #, c-format msgid "%d UserPreferences fields successfully updated." msgstr "" @@ -2510,7 +2724,7 @@ msgstr "" msgid "Lists referenced page names which do not exist yet." msgstr "" -#: ../lib/plugin/WantedPages.php:47 +#: ../lib/plugin/WantedPages.php:47 ../lib/plugin/_WikiTranslation.php:79 msgid "PgsrcTranslation" msgstr "" @@ -2548,7 +2762,7 @@ msgstr "" msgid "" msgstr "" -#: ../lib/plugin/WhoIsOnline.php:161 +#: ../lib/plugin/WhoIsOnline.php:169 #, c-format msgid "%d minutes" msgstr "" @@ -2586,53 +2800,42 @@ msgstr "" msgid "No pages changed." msgstr "" -#: ../lib/plugin/WikiAdminChmod.php:144 ../lib/plugin/WikiAdminRemove.php:170 -#: ../lib/plugin/WikiAdminRename.php:136 -#: ../lib/plugin/WikiAdminSearchReplace.php:165 -#: ../lib/plugin/WikiAdminSetAcl.php:138 +#: ../lib/plugin/WikiAdminChmod.php:150 ../lib/plugin/WikiAdminRemove.php:175 +#: ../lib/plugin/WikiAdminRename.php:144 +#: ../lib/plugin/WikiAdminSearchReplace.php:171 +#: ../lib/plugin/WikiAdminSetAcl.php:144 msgid "Yes" msgstr "" -#: ../lib/plugin/WikiAdminChmod.php:148 ../lib/plugin/WikiAdminSetAcl.php:142 +#: ../lib/plugin/WikiAdminChmod.php:154 ../lib/plugin/WikiAdminSetAcl.php:148 msgid "Are you sure you want to permanently change the selected files?" msgstr "" -#: ../lib/plugin/WikiAdminChmod.php:151 +#: ../lib/plugin/WikiAdminChmod.php:157 msgid "Chmod" msgstr "" -#: ../lib/plugin/WikiAdminChmod.php:153 ../lib/plugin/WikiAdminSetAcl.php:147 +#: ../lib/plugin/WikiAdminChmod.php:159 ../lib/plugin/WikiAdminSetAcl.php:153 msgid "Select the pages to change:" msgstr "" -#: ../lib/plugin/WikiAdminChmod.php:157 ../lib/plugin/WikiAdminRemove.php:196 -#: ../lib/plugin/WikiAdminRename.php:150 -#: ../lib/plugin/WikiAdminSearchReplace.php:179 -#: ../lib/plugin/WikiAdminSelect.php:196 ../lib/plugin/WikiAdminSelect.php:217 -#: ../lib/plugin/WikiAdminSetAcl.php:151 ../lib/removepage.php:22 -#: ../themes/default/templates/login.tmpl:72 -#: ../themes/default/templates/userprefs.tmpl:214 -#: ../themes/default/templates/userregistration.tmpl:99 -msgid "Cancel" -msgstr "" - -#: ../lib/plugin/WikiAdminChmod.php:174 ../lib/plugin/WikiAdminSetAcl.php:167 +#: ../lib/plugin/WikiAdminChmod.php:180 ../lib/plugin/WikiAdminSetAcl.php:173 msgid "This plugin is currently under development and does not work!" msgstr "" -#: ../lib/plugin/WikiAdminChmod.php:175 +#: ../lib/plugin/WikiAdminChmod.php:181 msgid "Chmod to permission:" msgstr "" -#: ../lib/plugin/WikiAdminChmod.php:178 +#: ../lib/plugin/WikiAdminChmod.php:184 msgid "(ugo : rwx)" msgstr "" -#: ../lib/plugin/WikiAdminChmod.php:185 ../lib/plugin/WikiAdminSetAcl.php:200 +#: ../lib/plugin/WikiAdminChmod.php:191 ../lib/plugin/WikiAdminSetAcl.php:206 msgid "Propagate new permissions to all subpages?" msgstr "" -#: ../lib/plugin/WikiAdminChmod.php:187 ../lib/plugin/WikiAdminSetAcl.php:202 +#: ../lib/plugin/WikiAdminChmod.php:193 ../lib/plugin/WikiAdminSetAcl.php:208 msgid "(disable individual page permissions, enable inheritance)?" msgstr "" @@ -2649,28 +2852,28 @@ msgstr "" msgid "Removed page '%s' successfully." msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:172 +#: ../lib/plugin/WikiAdminRemove.php:177 msgid "Are you sure you want to permanently remove the selected files?" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:175 +#: ../lib/plugin/WikiAdminRemove.php:180 msgid "Remove selected pages" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:176 +#: ../lib/plugin/WikiAdminRemove.php:181 msgid "Permanently remove the selected files:" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:179 +#: ../lib/plugin/WikiAdminRemove.php:184 #, c-format msgid "Also pages which have been deleted at least %s days." msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:183 +#: ../lib/plugin/WikiAdminRemove.php:188 msgid "List all pages." msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:189 +#: ../lib/plugin/WikiAdminRemove.php:194 #, c-format msgid "(Pages which have been deleted at least %s days are already checked.)" msgstr "" @@ -2683,54 +2886,54 @@ msgstr "" msgid "Rename selected pages." msgstr "" -#: ../lib/plugin/WikiAdminRename.php:75 +#: ../lib/plugin/WikiAdminRename.php:76 #, c-format msgid "Renamed page '%s' to '%s'." msgstr "" -#: ../lib/plugin/WikiAdminRename.php:78 +#: ../lib/plugin/WikiAdminRename.php:79 #, c-format msgid "Couldn't rename page '%s' to '%s'." msgstr "" -#: ../lib/plugin/WikiAdminRename.php:84 +#: ../lib/plugin/WikiAdminRename.php:85 #, c-format msgid "%s pages have been permanently renamed." msgstr "" -#: ../lib/plugin/WikiAdminRename.php:87 +#: ../lib/plugin/WikiAdminRename.php:88 msgid "No pages renamed." msgstr "" -#: ../lib/plugin/WikiAdminRename.php:139 +#: ../lib/plugin/WikiAdminRename.php:147 msgid "Are you sure you want to permanently rename the selected files?" msgstr "" -#: ../lib/plugin/WikiAdminRename.php:143 +#: ../lib/plugin/WikiAdminRename.php:151 msgid "Rename selected pages" msgstr "" -#: ../lib/plugin/WikiAdminRename.php:144 +#: ../lib/plugin/WikiAdminRename.php:152 msgid "Select the pages to rename:" msgstr "" -#: ../lib/plugin/WikiAdminRename.php:165 +#: ../lib/plugin/WikiAdminRename.php:173 msgid "Rename" msgstr "" -#: ../lib/plugin/WikiAdminRename.php:165 +#: ../lib/plugin/WikiAdminRename.php:173 msgid "from" msgstr "" -#: ../lib/plugin/WikiAdminRename.php:168 +#: ../lib/plugin/WikiAdminRename.php:176 msgid "to" msgstr "" -#: ../lib/plugin/WikiAdminRename.php:171 +#: ../lib/plugin/WikiAdminRename.php:179 msgid "(no regex, case-sensitive)" msgstr "" -#: ../lib/plugin/WikiAdminRename.php:174 +#: ../lib/plugin/WikiAdminRename.php:182 msgid "Change pagename in all linked pages also?" msgstr "" @@ -2766,33 +2969,33 @@ msgstr "" msgid "%s pages changed." msgstr "" -#: ../lib/plugin/WikiAdminSearchReplace.php:163 +#: ../lib/plugin/WikiAdminSearchReplace.php:169 msgid "Warning: The search string cannot be empty!" msgstr "" -#: ../lib/plugin/WikiAdminSearchReplace.php:168 +#: ../lib/plugin/WikiAdminSearchReplace.php:174 msgid "" "Are you sure you want to permanently search & replace text in the selected " "files?" msgstr "" -#: ../lib/plugin/WikiAdminSearchReplace.php:172 +#: ../lib/plugin/WikiAdminSearchReplace.php:178 msgid "Search & Replace" msgstr "" -#: ../lib/plugin/WikiAdminSearchReplace.php:174 +#: ../lib/plugin/WikiAdminSearchReplace.php:180 msgid "Select the pages to search:" msgstr "" -#: ../lib/plugin/WikiAdminSearchReplace.php:194 +#: ../lib/plugin/WikiAdminSearchReplace.php:200 msgid "Replace: " msgstr "" -#: ../lib/plugin/WikiAdminSearchReplace.php:197 +#: ../lib/plugin/WikiAdminSearchReplace.php:203 msgid "by" msgstr "" -#: ../lib/plugin/WikiAdminSearchReplace.php:200 +#: ../lib/plugin/WikiAdminSearchReplace.php:206 msgid "(no regex) Case-exact: " msgstr "" @@ -2841,29 +3044,29 @@ msgstr "" msgid "Invalid acl" msgstr "" -#: ../lib/plugin/WikiAdminSetAcl.php:145 +#: ../lib/plugin/WikiAdminSetAcl.php:151 msgid "SetAcl" msgstr "" -#: ../lib/plugin/WikiAdminSetAcl.php:175 +#: ../lib/plugin/WikiAdminSetAcl.php:181 #, c-format msgid "Pages: %s" msgstr "" -#: ../lib/plugin/WikiAdminSetAcl.php:178 +#: ../lib/plugin/WikiAdminSetAcl.php:184 #, c-format msgid "page permission inherited from %s" msgstr "" -#: ../lib/plugin/WikiAdminSetAcl.php:180 +#: ../lib/plugin/WikiAdminSetAcl.php:186 msgid "invidual page permission" msgstr "" -#: ../lib/plugin/WikiAdminSetAcl.php:182 +#: ../lib/plugin/WikiAdminSetAcl.php:188 msgid "default page permission" msgstr "" -#: ../lib/plugin/WikiAdminSetAcl.php:183 +#: ../lib/plugin/WikiAdminSetAcl.php:189 msgid "Type: " msgstr "" @@ -2875,53 +3078,58 @@ msgstr "" msgid "Miscellaneous utility functions of use to the administrator." msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:65 +#: ../lib/plugin/WikiAdminUtils.php:66 msgid "You must be an administrator to use this plugin." msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:93 +#: ../lib/plugin/WikiAdminUtils.php:95 msgid "WikiAdminUtils says:" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:95 ../lib/stdlib.php:1320 +#: ../lib/plugin/WikiAdminUtils.php:97 ../lib/stdlib.php:1335 msgid "Okay" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:101 +#: ../lib/plugin/WikiAdminUtils.php:103 msgid "Purge Markup Cache" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:102 +#: ../lib/plugin/WikiAdminUtils.php:104 msgid "Delete Pages With Invalid Names" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:112 +#: ../lib/plugin/WikiAdminUtils.php:114 msgid "Markup cache purged!" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:128 +#: ../lib/plugin/WikiAdminUtils.php:130 msgid "No pages with bad names were found." msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:136 +#: ../lib/plugin/WikiAdminUtils.php:138 #, c-format msgid "Deleted %s pages with invalid names:" msgstr "" -#: ../lib/plugin/WikiBlog.php:74 +#: ../lib/plugin/WikiBlog.php:77 msgid "WikiBlog" msgstr "" -#: ../lib/plugin/WikiBlog.php:78 +#: ../lib/plugin/WikiBlog.php:81 #, c-format msgid "Show and add blogs for %s" msgstr "" -#: ../lib/plugin/WikiBlog.php:183 ../lib/plugin/WikiForum.php:136 +#: ../lib/plugin/WikiBlog.php:156 +#, c-format +msgid "No page specified for %s" +msgstr "" + +#: ../lib/plugin/WikiBlog.php:186 ../lib/plugin/WikiForum.php:136 msgid "New comment." msgstr "" -#: ../lib/plugin/WikiBlog.php:257 ../lib/plugin/WikiForum.php:208 +#: ../lib/plugin/WikiBlog.php:265 ../lib/plugin/WikiForum.php:208 #, c-format msgid "Comments on %s:" msgstr "" @@ -2967,15 +3175,11 @@ msgstr "" msgid "Enable configurable polls" msgstr "" -#: ../lib/plugin/WikiPoll.php:159 ../lib/plugin/WikiPoll.php:228 -msgid "Sorry! You must wait at least 20 minutes until you can vote again!" -msgstr "" - #: ../lib/plugin/WikiPoll.php:185 msgid "Not enough questions answered!" msgstr "" -#: ../lib/plugin/WikiPoll.php:194 ../lib/plugin/WikiPoll.php:243 +#: ../lib/plugin/WikiPoll.php:194 ../lib/plugin/WikiPoll.php:255 #, c-format msgid "Missing %s for %s" msgstr "" @@ -2988,43 +3192,44 @@ msgstr "" msgid "Reset" msgstr "" -#: ../lib/plugin/WikiPoll.php:258 ../lib/plugin/WikiPoll.php:271 +#: ../lib/plugin/WikiPoll.php:271 ../lib/plugin/WikiPoll.php:285 #, c-format -msgid " %d%% selected this (%d/%d)" +msgid " %d%% (%d/%d)" msgstr "" -#: ../lib/plugin/WikiPoll.php:286 ../lib/plugin/WikiPoll.php:288 +#: ../lib/plugin/WikiPoll.php:301 ../lib/plugin/WikiPoll.php:303 msgid "The result of this poll so far:" msgstr "" -#: ../lib/plugin/WikiPoll.php:286 +#: ../lib/plugin/WikiPoll.php:301 msgid "Thanks for participating!" msgstr "" -#: ../lib/plugin/_AuthInfo.php:34 -msgid "AuthInfo" +#: ../lib/plugin/_AuthInfo.php:35 +msgid "_AuthInfo" msgstr "" -#: ../lib/plugin/_AuthInfo.php:38 +#: ../lib/plugin/_AuthInfo.php:39 msgid "Display general and user specific auth information." msgstr "" -#: ../lib/plugin/_AuthInfo.php:60 +#: ../lib/plugin/_AuthInfo.php:65 msgid "General Auth Settings" msgstr "" -#: ../lib/plugin/_AuthInfo.php:92 +#: ../lib/plugin/_AuthInfo.php:100 #, c-format msgid "Personal Auth Settings for '%s'" msgstr "" -#: ../lib/plugin/_AuthInfo.php:94 +#: ../lib/plugin/_AuthInfo.php:102 msgid "No userid" msgstr "" -#: ../lib/plugin/_BackendInfo.php:30 +#: ../lib/plugin/_BackendInfo.php:30 ../lib/plugin/_WikiTranslation.php:57 #: ../themes/Portland/templates/actionbar.tmpl:21 #: ../themes/default/templates/actionbar.tmpl:32 +#: ../themes/smaller/templates/info.tmpl:175 msgid "DebugInfo" msgstr "" @@ -3061,6 +3266,252 @@ msgstr "" msgid "Get preferences information for current user %s." msgstr "" +#: ../lib/plugin/_WikiTranslation.php:47 +msgid "AddCommentPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:48 +msgid "AddingPages" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:49 +msgid "AuthorHistoryPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:51 +msgid "CalendarListPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:52 +msgid "CalendarPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:53 +msgid "CategoryCategory" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:54 +msgid "CategoryHomePages" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:55 +msgid "CommentPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:56 +msgid "CreateTocPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:58 +msgid "EditMetaDataPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:59 +msgid "ExternalSearchPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:60 +#: ../themes/Portland/templates/navbar.tmpl:8 +#: ../themes/default/templates/head.tmpl:35 +#: ../themes/default/templates/navbar.tmpl:11 +#: ../themes/smaller/templates/navbar.tmpl:11 +msgid "FindPage" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:61 +msgid "FrameIncludePlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:62 +msgid "FullRecentChanges" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:63 +msgid "HelloWorldPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:64 +msgid "HomePageAlias" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:65 +msgid "IncludePagePlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:66 +msgid "InterWiki" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:67 +msgid "LinkIcons" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:68 +msgid "MagicPhpWikiURLs" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:69 +msgid "MoreAboutMechanics" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:70 +msgid "NewMarkupTestPage" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:71 +msgid "OldMarkupTestPage" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:72 +msgid "OldStyleTablePlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:73 +msgid "PageDump" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:74 +msgid "PageGroupTest" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:75 +msgid "PageGroupTestFour" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:76 +msgid "PageGroupTestOne" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:77 +msgid "PageGroupTestThree" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:78 +msgid "PageGroupTestTwo" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:80 +msgid "PhotoAlbumPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:81 +msgid "PhpHighlightPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:82 +msgid "PhpWeatherPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:83 +msgid "PhpWiki" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:84 +msgid "PhpWikiAdministration/Chmod" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:85 +msgid "PhpWikiAdministration/Remove" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:86 +msgid "PhpWikiAdministration/Rename" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:87 +msgid "PhpWikiAdministration/Replace" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:88 +msgid "PhpWikiDocumentation" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:89 +msgid "PhpWikiPoll" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:90 +msgid "RawHtmlPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:91 +msgid "RecentVisitors" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:92 +msgid "RedirectToPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:93 +msgid "ReleaseNotes" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:94 +msgid "RichTablePlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:95 +msgid "SteveWainstead" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:96 +msgid "SystemInfoPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:97 +msgid "TranscludePlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:99 +msgid "UnfoldSubpagesPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:100 +msgid "UpLoad" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:101 +msgid "WabiSabi" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:102 +msgid "WikiBlogPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:103 +msgid "WikiPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:104 +#: ../themes/default/templates/head.tmpl:70 +msgid "WikiWikiWeb" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:113 +msgid "_WikiTranslation" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:117 +msgid "Show translations of various words or pages" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:266 +#, c-format +msgid "" +"TODO: Google can only translate from english and french. Find a translation " +"service for %s to language %s" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:270 +#, c-format +msgid "%s is empty" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:360 +#, c-format +msgid "Define the translation for %s in %s" +msgstr "" + #: ../lib/plugin/text2png.php:46 msgid "Convert text into a png image using GD." msgstr "" @@ -3110,100 +3561,108 @@ msgstr "" msgid "Remove page" msgstr "" -#: ../lib/stdlib.php:236 ../lib/stdlib.php:255 +#: ../lib/stdlib.php:234 ../lib/stdlib.php:253 msgid "BAD URL -- remove all of <, >, \"" msgstr "" -#: ../lib/stdlib.php:316 +#: ../lib/stdlib.php:314 msgid "BAD phpwiki: URL" msgstr "" -#: ../lib/stdlib.php:354 +#: ../lib/stdlib.php:352 msgid "Lock page to enable link" msgstr "" -#: ../lib/stdlib.php:453 +#: ../lib/stdlib.php:451 #, c-format msgid "'%s': Bad page name: %s" msgstr "" -#: ../lib/stdlib.php:490 +#: ../lib/stdlib.php:488 msgid "White space converted to single space" msgstr "" -#: ../lib/stdlib.php:495 +#: ../lib/stdlib.php:493 msgid "Control characters not allowed" msgstr "" -#: ../lib/stdlib.php:504 +#: ../lib/stdlib.php:502 #, c-format msgid "Leading %s not allowed" msgstr "" -#: ../lib/stdlib.php:507 +#: ../lib/stdlib.php:505 msgid "';' and ':' in pagenames are deprecated" msgstr "" -#: ../lib/stdlib.php:511 +#: ../lib/stdlib.php:509 msgid "too long" msgstr "" -#: ../lib/stdlib.php:516 +#: ../lib/stdlib.php:514 msgid "illegal pagename" msgstr "" -#: ../lib/stdlib.php:758 +#: ../lib/stdlib.php:756 msgid "Revision Not Found" msgstr "" -#: ../lib/stdlib.php:759 +#: ../lib/stdlib.php:757 #, c-format msgid "I'm sorry. Version %d of %s is not in the database." msgstr "" -#: ../lib/stdlib.php:762 +#: ../lib/stdlib.php:760 msgid "Bad Version" msgstr "" -#: ../lib/stdlib.php:898 +#: ../lib/stdlib.php:896 msgid "-???" msgstr "" -#: ../lib/stdlib.php:901 +#: ../lib/stdlib.php:899 #, c-format msgid "%s b" msgstr "" -#: ../lib/stdlib.php:903 +#: ../lib/stdlib.php:901 ../themes/smaller/templates/info.tmpl:29 #, c-format msgid "%s bytes" msgstr "" -#: ../lib/stdlib.php:908 +#: ../lib/stdlib.php:906 #, c-format msgid "%s k" msgstr "" -#: ../lib/stdlib.php:910 +#: ../lib/stdlib.php:908 ../themes/smaller/templates/info.tmpl:32 #, c-format msgid "%s Kb (%s bytes)" msgstr "" -#: ../lib/stdlib.php:1006 +#: ../lib/stdlib.php:1004 #, c-format msgid "%s: argument index out of range" msgstr "" -#: ../lib/stdlib.php:1046 ../themes/Hawaiian/lib/random.php:20 +#: ../lib/stdlib.php:1073 ../themes/Hawaiian/lib/random.php:20 #, c-format msgid "%s is empty." msgstr "" -#: ../lib/stdlib.php:1053 +#: ../lib/stdlib.php:1080 #, c-format msgid "Unable to open directory '%s' for reading" msgstr "" +#: ../lib/upgrade.php:134 +msgid "Upgrade disabled: user != isAdmin" +msgstr "" + +#: ../lib/upgrade.php:138 +msgid "Upgrading this PhpWiki" +msgstr "" + #: ../lib/ziplib.php:209 msgid "Can't inflate data: zlib support not enabled in this PHP" msgstr "" @@ -3229,16 +3688,18 @@ msgstr "" #: ../themes/Hawaiian/themeinfo.php:29 ../themes/MacOSX/themeinfo.php:104 #: ../themes/Portland/themeinfo.php:59 ../themes/Sidebar/themeinfo.php:32 #: ../themes/SpaceWiki/themeinfo.php:43 ../themes/default/themeinfo.php:24 +#: ../themes/smaller/themeinfo.php:26 msgid "Printer" msgstr "" #: ../themes/Hawaiian/themeinfo.php:30 ../themes/Portland/themeinfo.php:60 #: ../themes/Sidebar/themeinfo.php:33 ../themes/SpaceWiki/themeinfo.php:44 -#: ../themes/default/themeinfo.php:26 +#: ../themes/default/themeinfo.php:26 ../themes/smaller/themeinfo.php:28 msgid "Modern" msgstr "" #: ../themes/MacOSX/themeinfo.php:105 ../themes/default/themeinfo.php:25 +#: ../themes/smaller/themeinfo.php:27 msgid "Top & bottom toolbars" msgstr "" @@ -3248,12 +3709,15 @@ msgstr "" #: ../themes/Portland/templates/actionbar.tmpl:8 #: ../themes/default/templates/actionbar.tmpl:5 +#: ../themes/smaller/templates/actionbar.tmpl:6 msgid "Edit Old Revision" msgstr "" #: ../themes/Portland/templates/actionbar.tmpl:10 #: ../themes/default/templates/actionbar.tmpl:7 #: ../themes/default/templates/head.tmpl:45 +#: ../themes/smaller/templates/actionbar.tmpl:8 +#: ../themes/smaller/templates/info.tmpl:167 msgid "View Source" msgstr "" @@ -3290,17 +3754,17 @@ msgid "Page Execution took %s seconds" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:46 -#: ../themes/default/templates/editpage.tmpl:41 +#: ../themes/default/templates/editpage.tmpl:40 msgid "Warning: You are editing an old revision." msgstr "" #: ../themes/Portland/templates/editpage.tmpl:47 -#: ../themes/default/templates/editpage.tmpl:42 +#: ../themes/default/templates/editpage.tmpl:41 msgid "Saving this page will overwrite the current version." msgstr "" #: ../themes/Portland/templates/editpage.tmpl:62 -#: ../themes/default/templates/editpage.tmpl:89 +#: ../themes/default/templates/editpage.tmpl:95 #, c-format msgid "Author will be logged as %s." msgstr "" @@ -3317,68 +3781,62 @@ msgid "Edit Area Size" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:69 -#: ../themes/default/templates/editpage.tmpl:63 +#: ../themes/default/templates/editpage.tmpl:69 msgid "H" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:71 -#: ../themes/default/templates/editpage.tmpl:64 +#: ../themes/default/templates/editpage.tmpl:70 msgid "W" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:73 -#: ../themes/default/templates/editpage.tmpl:65 +#: ../themes/default/templates/editpage.tmpl:71 msgid "Adjust" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:75 -#: ../themes/default/templates/editpage.tmpl:78 +#: ../themes/default/templates/editpage.tmpl:84 msgid "Use old markup" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:80 -#: ../themes/default/templates/editpage.tmpl:25 +#: ../themes/default/templates/editpage.tmpl:24 msgid "Preview only! Changes not saved." msgstr "" #: ../themes/Portland/templates/editpage.tmpl:103 #: ../themes/Portland/templates/editpage.tmpl:108 -#: ../themes/default/templates/editpage.tmpl:120 -#: ../themes/default/templates/editpage.tmpl:125 +#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:131 #, c-format msgid "See %s tips for editing." msgstr "" #: ../themes/Portland/templates/editpage.tmpl:103 #: ../themes/Portland/templates/editpage.tmpl:108 -#: ../themes/default/templates/editpage.tmpl:120 -#: ../themes/default/templates/editpage.tmpl:125 +#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:131 msgid "GoodStyle" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:104 -#: ../themes/default/templates/editpage.tmpl:121 +#: ../themes/default/templates/editpage.tmpl:127 msgid "OldTextFormattingRules" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:104 #: ../themes/Portland/templates/editpage.tmpl:109 -#: ../themes/default/templates/editpage.tmpl:121 -#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:127 +#: ../themes/default/templates/editpage.tmpl:132 msgid "Synopsis" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:109 -#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:132 msgid "TextFormattingRules" msgstr "" -#: ../themes/Portland/templates/navbar.tmpl:8 -#: ../themes/default/templates/head.tmpl:35 -#: ../themes/default/templates/navbar.tmpl:11 -msgid "FindPage" -msgstr "" - #: ../themes/Portland/templates/viewsource.tmpl:6 #: ../themes/default/templates/viewsource.tmpl:6 msgid "This page has been locked by the administrator and cannot be edited." @@ -3393,54 +3851,108 @@ msgid "diff" msgstr "" #: ../themes/default/templates/actionbar.tmpl:35 +#: ../themes/smaller/templates/actionbar.tmpl:38 +#: ../themes/smaller/templates/info.tmpl:178 msgid "PurgeHtmlCache" msgstr "" #: ../themes/default/templates/actionbar.tmpl:36 +#: ../themes/smaller/templates/actionbar.tmpl:39 +#: ../themes/smaller/templates/info.tmpl:179 msgid "" "Purge HTML cache for this page. Regenerate from WikiMarkup when next " "accessed." msgstr "" #: ../themes/default/templates/blogform.tmpl:10 -#: ../themes/default/templates/forumform.tmpl:10 msgid "Add a Comment" msgstr "" #: ../themes/default/templates/blogform.tmpl:12 -#: ../themes/default/templates/editpage.tmpl:71 -#: ../themes/default/templates/forumform.tmpl:12 +#: ../themes/default/templates/editpage.tmpl:77 +#: ../themes/default/templates/forum-thread.tmpl:39 #: ../themes/default/templates/info.tmpl:72 +#: ../themes/smaller/templates/info.tmpl:78 msgid "Summary:" msgstr "" #: ../themes/default/templates/blogform.tmpl:16 -#: ../themes/default/templates/forumform.tmpl:16 msgid "Comment:" msgstr "" +#: ../themes/default/templates/comment.tmpl:18 +#: ../themes/default/templates/wikiblog.tmpl:19 +#, c-format +msgid "Comment modified on %s by %s" +msgstr "" + +#: ../themes/default/templates/comment.tmpl:28 +#, c-format +msgid "%s by %s" +msgstr "" + #: ../themes/default/templates/dialog.tmpl:18 msgid "Dialog" msgstr "" -#: ../themes/default/templates/editpage.tmpl:29 +#: ../themes/default/templates/editpage.tmpl:28 #, c-format msgid "" "Please continue editing. (You'll find your %s at the bottom of the page.)" msgstr "" -#: ../themes/default/templates/editpage.tmpl:30 +#: ../themes/default/templates/editpage.tmpl:29 msgid "edit area" msgstr "" -#: ../themes/default/templates/editpage.tmpl:62 +#: ../themes/default/templates/editpage.tmpl:68 msgid "Edit Area Size:" msgstr "" -#: ../themes/default/templates/editpage.tmpl:77 +#: ../themes/default/templates/editpage.tmpl:83 msgid "This is a minor change." msgstr "" +#: ../themes/default/templates/forum-thread.tmpl:19 +#: ../themes/default/templates/forum-topics.tmpl:18 +msgid "New Topic" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:19 +#: ../themes/default/templates/forum-thread.tmpl:37 +msgid "Post new" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:21 +msgid "Message" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:27 +#, c-format +msgid "Posted: %s" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:28 +#: ../themes/default/templates/forum-thread.tmpl:43 +msgid "Reply" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:21 +msgid "Topics" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:22 +msgid "Replies" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:24 +msgid "Views" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:25 +msgid "Last Post" +msgstr "" + #: ../themes/default/templates/head.tmpl:31 msgid "HowToUseWiki" msgstr "" @@ -3449,10 +3961,6 @@ msgstr "" msgid "SandBox" msgstr "" -#: ../themes/default/templates/head.tmpl:70 -msgid "WikiWikiWeb" -msgstr "" - #: ../themes/default/templates/homepage.tmpl:10 #, c-format msgid "You can personalize various settings in %s." @@ -3472,89 +3980,110 @@ msgid "CategoryHomepage" msgstr "" #: ../themes/default/templates/info.tmpl:31 +#: ../themes/smaller/templates/info.tmpl:37 msgid "1 word" msgstr "" #: ../themes/default/templates/info.tmpl:33 +#: ../themes/smaller/templates/info.tmpl:39 #, c-format msgid "%s words" msgstr "" #: ../themes/default/templates/info.tmpl:37 +#: ../themes/smaller/templates/info.tmpl:43 #, c-format msgid "Version %s" msgstr "" #: ../themes/default/templates/info.tmpl:38 +#: ../themes/smaller/templates/info.tmpl:44 msgid "Original (1.2 or 1.0)" msgstr "" #: ../themes/default/templates/info.tmpl:65 +#: ../themes/smaller/templates/info.tmpl:71 msgid "Last Modified:" msgstr "" #: ../themes/default/templates/info.tmpl:66 +#: ../themes/smaller/templates/info.tmpl:72 msgid "Last Author:" msgstr "" #: ../themes/default/templates/info.tmpl:67 +#: ../themes/smaller/templates/info.tmpl:73 msgid "Last Summary:" msgstr "" #: ../themes/default/templates/info.tmpl:70 +#: ../themes/smaller/templates/info.tmpl:76 msgid "Saved on:" msgstr "" #: ../themes/default/templates/info.tmpl:71 +#: ../themes/smaller/templates/info.tmpl:77 msgid "Author:" msgstr "" #: ../themes/default/templates/info.tmpl:75 +#: ../themes/smaller/templates/info.tmpl:81 #, c-format msgid "Statistics about %s." msgstr "" #: ../themes/default/templates/info.tmpl:86 +#: ../themes/smaller/templates/info.tmpl:92 msgid "Supplanted on:" msgstr "" #: ../themes/default/templates/info.tmpl:103 +#: ../themes/smaller/templates/info.tmpl:109 msgid "Page Version:" msgstr "" #: ../themes/default/templates/info.tmpl:107 +#: ../themes/smaller/templates/info.tmpl:113 msgid "Markup:" msgstr "" #: ../themes/default/templates/info.tmpl:111 +#: ../themes/smaller/templates/info.tmpl:117 msgid "Size:" msgstr "" #: ../themes/default/templates/info.tmpl:116 +#: ../themes/smaller/templates/info.tmpl:122 msgid "Hits:" msgstr "" #: ../themes/default/templates/info.tmpl:133 +#: ../themes/smaller/templates/info.tmpl:139 msgid "home page" msgstr "" #: ../themes/default/templates/info.tmpl:136 +#: ../themes/smaller/templates/info.tmpl:142 msgid "User page" msgstr "" #: ../themes/default/templates/info.tmpl:139 +#: ../themes/smaller/templates/info.tmpl:145 msgid "Action page" msgstr "" #: ../themes/default/templates/info.tmpl:142 +#: ../themes/smaller/templates/info.tmpl:148 msgid "Blog page" msgstr "" #: ../themes/default/templates/info.tmpl:148 +#: ../themes/smaller/templates/info.tmpl:154 msgid "Subpage" msgstr "" #: ../themes/default/templates/info.tmpl:153 +#: ../themes/smaller/templates/info.tmpl:159 msgid "Page Type:" msgstr "" @@ -3566,22 +4095,15 @@ msgid "" "in RecentChanges to your home page." msgstr "" -#: ../themes/default/templates/login.tmpl:39 -msgid "" -"Note: If you create your personal HomePage with same the pagename as your " -"user id, you will be able to store your UserPreferences also. Otherwise not." -msgstr "" - -#: ../themes/default/templates/login.tmpl:42 +#: ../themes/default/templates/login.tmpl:51 msgid "New users may use an empty password." msgstr "" -#: ../themes/default/templates/login.tmpl:49 +#: ../themes/default/templates/login.tmpl:58 msgid "UserId:" msgstr "" -#: ../themes/default/templates/login.tmpl:53 -#: ../themes/default/templates/userregistration.tmpl:49 +#: ../themes/default/templates/login.tmpl:62 msgid "Password:" msgstr "" @@ -3603,59 +4125,67 @@ msgstr "" #: ../themes/default/templates/online.tmpl:8 #: ../themes/default/templates/online.tmpl:16 -#: ../themes/default/templates/online.tmpl:64 +#: ../themes/default/templates/online.tmpl:58 msgid "Who Is Online" msgstr "" -#: ../themes/default/templates/online.tmpl:28 +#: ../themes/default/templates/online.tmpl:16 +msgid "Switch to detailed list" +msgstr "" + +#: ../themes/default/templates/online.tmpl:22 #, c-format msgid "Our users created a total of %d pages." msgstr "" -#: ../themes/default/templates/online.tmpl:29 +#: ../themes/default/templates/online.tmpl:23 #, c-format msgid "We have a total of %d registered users." msgstr "" -#: ../themes/default/templates/online.tmpl:30 +#: ../themes/default/templates/online.tmpl:24 #, c-format msgid "The newest registered user is %s" msgstr "" -#: ../themes/default/templates/online.tmpl:34 +#: ../themes/default/templates/online.tmpl:28 #, c-format msgid "" "In total there are %d user sessions online :: Unique %d Registered and %d " "Guests" msgstr "" -#: ../themes/default/templates/online.tmpl:36 +#: ../themes/default/templates/online.tmpl:30 #, c-format msgid "Most users ever online was %d at %s" msgstr "" -#: ../themes/default/templates/online.tmpl:37 +#: ../themes/default/templates/online.tmpl:31 msgid "Registered Users Online: " msgstr "" -#: ../themes/default/templates/online.tmpl:48 +#: ../themes/default/templates/online.tmpl:42 msgid "Admin is also online." msgstr "" -#: ../themes/default/templates/online.tmpl:52 +#: ../themes/default/templates/online.tmpl:46 #, c-format msgid "This data is based on users active over the past %s" msgstr "" -#: ../themes/default/templates/online.tmpl:56 +#: ../themes/default/templates/online.tmpl:50 msgid "Sorry, no dynamic DB Session support." msgstr "" -#: ../themes/default/templates/online.tmpl:68 +#: ../themes/default/templates/online.tmpl:58 +msgid "Switch to summary" +msgstr "" + +#: ../themes/default/templates/online.tmpl:62 msgid "Registered Users" msgstr "" -#: ../themes/default/templates/online.tmpl:83 +#: ../themes/default/templates/online.tmpl:77 msgid "Guests" msgstr "" @@ -3683,11 +4213,13 @@ msgid "Warning!" msgstr "" #: ../themes/default/templates/signin.tmpl:19 +#: ../themes/smaller/templates/signin.tmpl:33 #, c-format msgid "You are signed in as %s" msgstr "" #: ../themes/default/templates/signin.tmpl:40 +#: ../themes/smaller/templates/signin.tmpl:53 msgid "Enter your UserId to sign in" msgstr "" @@ -3868,31 +4400,14 @@ msgstr "" msgid "Update Preferences" msgstr "" -#: ../themes/default/templates/userregistration.tmpl:39 -msgid "User-ID:" -msgstr "" - -#: ../themes/default/templates/userregistration.tmpl:59 -msgid "E-Mail:" -msgstr "" - -#: ../themes/default/templates/userregistration.tmpl:68 -msgid "First Name:" -msgstr "" - -#: ../themes/default/templates/userregistration.tmpl:77 -msgid "Last Name:" -msgstr "" - -#: ../themes/default/templates/userregistration.tmpl:87 -msgid "Send Notification:" +#: ../themes/smaller/templates/actionbar.tmpl:31 +msgid "Info" msgstr "" -#: ../themes/default/templates/userregistration.tmpl:98 -msgid "Register" +#: ../themes/smaller/templates/info.tmpl:171 +msgid "Diff previous Revision" msgstr "" -#: ../themes/default/templates/wikiblog.tmpl:19 -#, c-format -msgid "Comment modified on %s by %s" +#: ../themes/smaller/templates/info.tmpl:172 +msgid "Diff previous Author" msgstr "" diff --git a/locale/po/sv.po b/locale/po/sv.po index 26916fbc4..de0ecbc7a 100644 --- a/locale/po/sv.po +++ b/locale/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PhpWiki-1.3.4pre\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-02-15 22:43+0100\n" +"POT-Creation-Date: 2004-03-17 15:58+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund \n" "Language-Team: \n" @@ -15,152 +15,255 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" +#: ../lib/DB_Session.php:42 +#, c-format +msgid "" +"Your WikiDB DB backend '%s' cannot be used for DB_Session. Set " +"USE_DB_SESSION to false." +msgstr "" + #: ../lib/ErrorManager.php:172 #, c-format msgid "%s: error while handling error:" msgstr "" -#: ../lib/FileFinder.php:143 ../lib/loadsave.php:503 +#: ../lib/FileFinder.php:143 ../lib/loadsave.php:540 #, c-format msgid "%s: file not found" msgstr "%s: fila ingen funna" -#: ../lib/PageList.php:71 +#: ../lib/Google.php:157 +#, c-format +msgid "" +"You must first obtain a license key at %s to be able to use the Google API." +msgstr "" + +#: ../lib/Google.php:159 +msgid "It's free however." +msgstr "" + +#: ../lib/PageList.php:92 #, fuzzy, c-format msgid "Sort by %s" msgstr "av %s" -#: ../lib/PageList.php:133 +#: ../lib/PageList.php:126 +msgid "Click to sort" +msgstr "" + +#: ../lib/PageList.php:131 +msgid "Click to reverse sort order" +msgstr "" + +#: ../lib/PageList.php:139 +#, fuzzy, c-format +msgid "Click to sort by %s" +msgstr "av %s" + +#: ../lib/PageList.php:212 msgid "Click to de-/select all pages" msgstr "" -#: ../lib/PageList.php:187 ../lib/PageList.php:484 +#: ../lib/PageList.php:267 ../lib/PageList.php:669 #, fuzzy msgid "Remove" msgstr "Ta bort sida" -#: ../lib/PageList.php:211 ../lib/plugin/UnfoldSubpages.php:170 +#: ../lib/PageList.php:283 +msgid "This page already exists" +msgstr "" + +#: ../lib/PageList.php:297 ../lib/plugin/UnfoldSubpages.php:158 #, c-format msgid " ... first %d bytes" msgstr "" -#: ../lib/PageList.php:215 +#: ../lib/PageList.php:302 #, c-format msgid " ... around %s" msgstr "" -#: ../lib/PageList.php:237 +#: ../lib/PageList.php:325 #, fuzzy, c-format msgid "%s not found" msgstr "%s: fila ingen funna" -#: ../lib/PageList.php:277 ../lib/plugin/AuthorHistory.php:174 +#: ../lib/PageList.php:394 ../lib/plugin/AuthorHistory.php:174 #: ../lib/plugin/WantedPages.php:140 msgid "Page Name" msgstr "Namn på Sidan" -#: ../lib/PageList.php:334 ../lib/plugin/FullTextSearch.php:75 +#: ../lib/PageList.php:466 ../lib/plugin/FullTextSearch.php:93 msgid "" msgstr "" -#: ../lib/PageList.php:478 ../lib/PageList.php:481 +#: ../lib/PageList.php:665 ../lib/PageList.php:667 #, fuzzy msgid "Content" msgstr "Innehåll" -#: ../lib/PageList.php:487 +#: ../lib/PageList.php:671 msgid "Rename to" msgstr "" -#: ../lib/PageList.php:490 +#: ../lib/PageList.php:673 +#, fuzzy +msgid "Permission" +msgstr "Version" + +#: ../lib/PageList.php:675 +msgid "ACL" +msgstr "" + +#: ../lib/PageList.php:677 #, fuzzy msgid "Select" msgstr "Ta bort sida nu" -#: ../lib/PageList.php:497 +#: ../lib/PageList.php:681 msgid "Last Modified" msgstr "Ändringsdatum" -#: ../lib/PageList.php:499 +#: ../lib/PageList.php:683 msgid "Hits" msgstr "Träffar" -#: ../lib/PageList.php:502 +#: ../lib/PageList.php:685 msgid "Size" msgstr "" -#: ../lib/PageList.php:506 +#: ../lib/PageList.php:688 msgid "Last Summary" msgstr "Senaste Kommentar" -#: ../lib/PageList.php:509 ../lib/plugin/AuthorHistory.php:123 +#: ../lib/PageList.php:690 ../lib/plugin/AuthorHistory.php:123 #: ../lib/plugin/AuthorHistory.php:176 ../lib/plugin/PluginManager.php:90 msgid "Version" msgstr "Version" -#: ../lib/PageList.php:513 +#: ../lib/PageList.php:693 msgid "Last Author" msgstr "Göregående Författare" -#: ../lib/PageList.php:515 ../themes/default/templates/editpage.tmpl:95 +#: ../lib/PageList.php:695 ../lib/WikiGroup.php:39 +msgid "Owner" +msgstr "" + +#: ../lib/PageList.php:697 +#, fuzzy +msgid "Group" +msgstr "Visa källkoden för %s" + +#: ../lib/PageList.php:699 ../themes/default/templates/editpage.tmpl:101 #: ../themes/default/templates/info.tmpl:127 +#: ../themes/smaller/templates/info.tmpl:133 msgid "Locked" msgstr "Låst" -#: ../lib/PageList.php:516 +#: ../lib/PageList.php:700 msgid "locked" msgstr "låst" -#: ../lib/PageList.php:519 +#: ../lib/PageList.php:703 msgid "Minor Edit" msgstr "" -#: ../lib/PageList.php:519 +#: ../lib/PageList.php:703 msgid "minor" msgstr "" -#: ../lib/PageList.php:521 +#: ../lib/PageList.php:705 msgid "Markup" msgstr "" -#: ../lib/PageList.php:572 ../lib/plugin/WantedPages.php:167 +#: ../lib/PageList.php:756 ../lib/plugin/WantedPages.php:167 #, c-format msgid "Columns: %s." msgstr "" -#: ../lib/PageType.php:194 +#: ../lib/PagePerm.php:260 +#, fuzzy +msgid "List this page and all subpages" +msgstr "Kunde inte spara sidan \"%s\"" + +#: ../lib/PagePerm.php:261 +msgid "View this page and all subpages" +msgstr "" + +#: ../lib/PagePerm.php:262 +msgid "Edit this page and all subpages" +msgstr "" + +#: ../lib/PagePerm.php:263 +#, fuzzy +msgid "Create a new (sub)page" +msgstr "Kunde inte spara sidan \"%s\"" + +#: ../lib/PagePerm.php:264 +msgid "Download the page contents" +msgstr "" + +#: ../lib/PagePerm.php:265 +msgid "Change page attributes" +msgstr "" + +#: ../lib/PagePerm.php:266 +#, fuzzy +msgid "Remove this page" +msgstr "Ta bort sida" + +#: ../lib/PagePerm.php:295 +#, c-format +msgid "Unsupported ACL access type %s ignored." +msgstr "" + +#: ../lib/PageType.php:125 ../lib/loadsave.php:409 +#: ../themes/default/templates/info.tmpl:144 +#: ../themes/default/templates/info.tmpl:145 +#: ../themes/smaller/templates/info.tmpl:150 +#: ../themes/smaller/templates/info.tmpl:151 +msgid "InterWikiMap" +msgstr "" + +#: ../lib/PageType.php:211 ../lib/loadsave.php:552 +#, c-format +msgid "Loading InterWikiMap from external file %s." +msgstr "" + +#: ../lib/PageType.php:309 #, fuzzy msgid "Moniker" msgstr "Ny|modig" -#: ../lib/PageType.php:195 +#: ../lib/PageType.php:310 msgid "InterWiki Address" msgstr "" -#: ../lib/RSSWriter091.php:116 ../lib/loadsave.php:832 +#: ../lib/RSSWriter091.php:116 ../lib/loadsave.php:872 #: ../lib/plugin/RecentChanges.php:250 ../lib/plugin/RecentChanges.php:263 -#: ../lib/plugin/RecentChanges.php:362 ../lib/plugin/RecentChanges.php:438 -#: ../lib/plugin/RecentChanges.php:529 ../lib/plugin/RecentChanges.php:605 +#: ../lib/plugin/RecentChanges.php:365 ../lib/plugin/RecentChanges.php:441 +#: ../lib/plugin/RecentChanges.php:535 ../lib/plugin/RecentChanges.php:611 #: ../themes/Portland/templates/navbar.tmpl:28 #: ../themes/default/templates/navbar.tmpl:10 +#: ../themes/smaller/templates/navbar.tmpl:10 msgid "RecentChanges" msgstr "SenasteÄndringar" -#: ../lib/Request.php:39 ../lib/main.php:771 ../lib/main.php:784 +#: ../lib/Request.php:57 ../lib/main.php:756 ../lib/main.php:769 #, c-format msgid "%s is not writable." msgstr "" -#: ../lib/Request.php:39 +#: ../lib/Request.php:57 msgid "The PhpWiki access log file" msgstr "" -#: ../lib/Request.php:41 ../lib/main.php:774 +#: ../lib/Request.php:59 ../lib/main.php:759 #, c-format msgid "Please ensure that %s is writable, or redefine %s in index.php." msgstr "" -#: ../lib/Request.php:42 +#: ../lib/Request.php:60 #, fuzzy, c-format msgid "the file '%s'" msgstr "senast ändrad %s" @@ -170,109 +273,119 @@ msgstr "senast msgid "%4d %s\n" msgstr "%4d %s\n" -#: ../lib/Theme.php:344 +#: ../lib/Theme.php:368 msgid "Never edited." msgstr "" -#: ../lib/Theme.php:351 +#: ../lib/Theme.php:375 #, c-format msgid "%s at %s" msgstr "%s i %s" -#: ../lib/Theme.php:355 +#: ../lib/Theme.php:379 #, c-format msgid "Version %s, saved %s." msgstr "Version %s, sparade %s" -#: ../lib/Theme.php:357 +#: ../lib/Theme.php:381 #, c-format msgid "Last edited %s." msgstr "Senast ändrad %s." -#: ../lib/Theme.php:366 +#: ../lib/Theme.php:390 #, c-format msgid "Version %s, saved on %s." msgstr "Version %s, sparade %s" -#: ../lib/Theme.php:368 +#: ../lib/Theme.php:392 #, c-format msgid "Last edited on %s." msgstr "Senast ändrad %s." -#: ../lib/Theme.php:384 +#: ../lib/Theme.php:408 msgid "today" msgstr "i dag" -#: ../lib/Theme.php:390 +#: ../lib/Theme.php:414 msgid "yesterday" msgstr "i går" -#: ../lib/Theme.php:484 ../themes/MacOSX/themeinfo.php:71 +#: ../lib/Theme.php:518 +#, fuzzy, c-format +msgid "Empty link to: %s" +msgstr "De %d mest populära sidorna för den här wikin:" + +#: ../lib/Theme.php:530 ../themes/MacOSX/themeinfo.php:71 #, fuzzy, c-format msgid "Create: %s" msgstr "Sparade: %s" -#: ../lib/Theme.php:518 +#: ../lib/Theme.php:566 #, c-format msgid "'%s': Bad page name" msgstr "" -#: ../lib/Theme.php:783 ../themes/default/templates/actionbar.tmpl:5 +#: ../lib/Theme.php:837 ../themes/default/templates/actionbar.tmpl:5 +#: ../themes/smaller/templates/actionbar.tmpl:6 msgid "Edit" msgstr "Redigera" -#: ../lib/Theme.php:784 +#: ../lib/Theme.php:838 ../lib/plugin/Diff.php:36 msgid "Diff" msgstr "Diff" -#: ../lib/Theme.php:785 ../themes/default/templates/signin.tmpl:15 -#: ../themes/default/templates/signin.tmpl:31 +#: ../lib/Theme.php:839 ../themes/default/templates/signin.tmpl:16 +#: ../themes/default/templates/signin.tmpl:32 +#: ../themes/smaller/templates/signin.tmpl:21 +#: ../themes/smaller/templates/signin.tmpl:44 msgid "Sign Out" msgstr "Logga ut" -#: ../lib/Theme.php:786 ../lib/WikiUser.php:206 -#: ../themes/default/templates/login.tmpl:70 -#: ../themes/default/templates/signin.tmpl:59 +#: ../lib/Theme.php:840 ../lib/WikiUser.php:204 ../lib/WikiUserNew.php:415 +#: ../lib/WikiUserNew.php:1161 ../themes/default/templates/login.tmpl:66 +#: ../themes/default/templates/signin.tmpl:60 +#: ../themes/smaller/templates/signin.tmpl:54 +#: ../themes/smaller/templates/signin.tmpl:57 msgid "Sign In" msgstr "Anslut" -#: ../lib/Theme.php:787 ../themes/MacOSX/themeinfo.php:135 +#: ../lib/Theme.php:841 ../themes/MacOSX/themeinfo.php:135 msgid "Lock Page" msgstr "Lås Sida" -#: ../lib/Theme.php:788 ../themes/MacOSX/themeinfo.php:136 +#: ../lib/Theme.php:842 ../themes/MacOSX/themeinfo.php:136 msgid "Unlock Page" msgstr "Lås upp Sida" -#: ../lib/Theme.php:789 +#: ../lib/Theme.php:843 msgid "Remove Page" msgstr "Ta bort sida" -#: ../lib/WikiDB.php:407 +#: ../lib/WikiDB.php:405 #, fuzzy, c-format msgid "renamed from %s" msgstr "Insättning från %s" -#: ../lib/WikiDB.php:412 +#: ../lib/WikiDB.php:410 msgid "WikiDB::renamePage() not yet implemented for this backend" msgstr "" -#: ../lib/WikiDB.php:700 +#: ../lib/WikiDB.php:698 #, c-format msgid "%s: Date of new revision is %s" msgstr "" -#: ../lib/WikiDB.php:763 +#: ../lib/WikiDB.php:761 #, c-format msgid "Optimizing %s" msgstr "" -#: ../lib/WikiDB.php:1207 ../themes/default/templates/homepage.tmpl:7 +#: ../lib/WikiDB.php:1205 ../themes/default/templates/homepage.tmpl:7 #, c-format msgid "Describe %s here." msgstr "Beskriv %s här." -#: ../lib/WikiDB.php:1242 +#: ../lib/WikiDB.php:1240 #, c-format msgid "Acck! Revision %s of %s seems to have been deleted!" msgstr "" @@ -294,7 +407,7 @@ msgid "" "DB file to a permanent location or risk losing all the pages!" msgstr "" -#: ../lib/WikiGroup.php:29 ../lib/WikiGroup.php:110 +#: ../lib/WikiGroup.php:29 ../lib/WikiGroup.php:122 msgid "No or unsupported GROUP_METHOD defined" msgstr "" @@ -311,79 +424,98 @@ msgid "Bogo Users" msgstr "" #: ../lib/WikiGroup.php:35 +#, fuzzy +msgid "HasHomePage" +msgstr "Framsida" + +#: ../lib/WikiGroup.php:36 msgid "Signed Users" msgstr "" -#: ../lib/WikiGroup.php:36 +#: ../lib/WikiGroup.php:37 msgid "Authenticated Users" msgstr "" -#: ../lib/WikiGroup.php:37 +#: ../lib/WikiGroup.php:38 msgid "Administrators" msgstr "" -#: ../lib/WikiGroup.php:146 +#: ../lib/WikiGroup.php:40 +msgid "Creator" +msgstr "" + +#: ../lib/WikiGroup.php:164 #, c-format msgid "Undefined method %s for special group %s" msgstr "" -#: ../lib/WikiGroup.php:151 ../lib/WikiGroup.php:166 ../lib/WikiGroup.php:181 -#: ../lib/WikiGroup.php:197 ../lib/WikiGroup.php:213 +#: ../lib/WikiGroup.php:169 ../lib/WikiGroup.php:184 ../lib/WikiGroup.php:289 +#: ../lib/WikiGroup.php:294 ../lib/WikiGroup.php:310 ../lib/WikiGroup.php:326 #, c-format msgid "Method '%s' not implemented in this GROUP_METHOD %s" msgstr "" -#: ../lib/WikiGroup.php:339 +#: ../lib/WikiGroup.php:454 #, c-format msgid "Group %s does not exist" msgstr "" -#: ../lib/WikiGroup.php:437 +#: ../lib/WikiGroup.php:486 +#, fuzzy +msgid "CategoryGroup" +msgstr "Nuvarande sida:" + +#: ../lib/WikiGroup.php:561 msgid "No or not enough GROUP_DB SQL statements defined" msgstr "" -#: ../lib/WikiGroup.php:541 +#: ../lib/WikiGroup.php:767 msgid "AUTH_GROUP_FILE not defined" msgstr "" -#: ../lib/WikiGroup.php:545 +#: ../lib/WikiGroup.php:771 #, c-format msgid "Cannot open AUTH_GROUP_FILE %s" msgstr "" -#: ../lib/WikiGroup.php:644 +#: ../lib/WikiGroup.php:878 msgid "LDAP_AUTH_HOST not defined" msgstr "" -#: ../lib/WikiGroup.php:650 +#: ../lib/WikiGroup.php:884 msgid "No LDAP in this PHP version" msgstr "" +#: ../lib/WikiGroup.php:963 ../lib/WikiUserNew.php:1679 +#, c-format +msgid "Unable to connect to LDAP server %s" +msgstr "" + #: ../lib/WikiPlugin.php:88 msgid "n/a" msgstr "" -#: ../lib/WikiPlugin.php:118 +#: ../lib/WikiPlugin.php:118 ../lib/plugin/WikiPoll.php:114 #, c-format msgid "argument '%s' not declared by plugin" msgstr "" -#: ../lib/WikiPlugin.php:182 +#: ../lib/WikiPlugin.php:189 #, c-format msgid "trailing cruft in plugin args: '%s'" msgstr "" -#: ../lib/WikiPlugin.php:291 +#: ../lib/WikiPlugin.php:303 #, fuzzy, c-format msgid "Plugin %s failed." msgstr "Insättning för '%s' misslyckades" -#: ../lib/WikiPlugin.php:297 +#: ../lib/WikiPlugin.php:309 #, fuzzy, c-format msgid "Plugin %s disabled." msgstr "Insättning för '%s' misslyckades" -#: ../lib/WikiPlugin.php:384 +#: ../lib/WikiPlugin.php:400 #, c-format msgid "Include of '%s' failed" msgstr "Insättning för '%s' misslyckades" @@ -395,96 +527,143 @@ msgid "" "referring page." msgstr "" -#: ../lib/WikiUser.php:177 +#: ../lib/WikiUser.php:177 ../lib/WikiUserNew.php:482 msgid "Invalid password or userid." msgstr "" -#: ../lib/WikiUser.php:179 +#: ../lib/WikiUser.php:179 ../lib/WikiUserNew.php:484 msgid "Insufficient permissions." msgstr "" -#: ../lib/WikiUser.php:234 +#: ../lib/WikiUser.php:232 msgid "" "You forgot to set ENCRYPTED_PASSWD to true. Please update your /index.php" msgstr "" -#: ../lib/WikiUser.php:353 +#: ../lib/WikiUser.php:351 #, fuzzy msgid "" "Your home page has not been created yet so your preferences cannot not be " "saved." msgstr "Den här sidan är låst av administratören och kan ej redigeras." -#: ../lib/WikiUser.php:370 +#: ../lib/WikiUser.php:368 #, fuzzy msgid "Your home page is locked so your preferences cannot not be saved." msgstr "Den här sidan är låst av administratören och kan ej redigeras." -#: ../lib/WikiUser.php:371 +#: ../lib/WikiUser.php:369 msgid "Please contact your PhpWiki administrator for assistance." msgstr "" -#: ../lib/WikiUser.php:477 +#: ../lib/WikiUser.php:475 #, c-format msgid "" "Old UserPage %s without stored password updated with empty password. Set a " "password in your UserPreferences." msgstr "" -#: ../lib/XmlElement.php:401 ../lib/stdlib.php:997 +#: ../lib/WikiUserNew.php:514 +msgid "Format of UserPreferences cookie not recognised." +msgstr "" + +#: ../lib/WikiUserNew.php:515 +msgid "Default preferences will be used." +msgstr "" + +#: ../lib/WikiUserNew.php:922 +msgid "" +"The length of the stored password is shorter than the system policy allows. " +"Sorry, you cannot login.\n" +" You have to ask the System Administrator to reset your password." +msgstr "" + +#: ../lib/WikiUserNew.php:935 +msgid "The crypt function is not available in this version of PHP." +msgstr "" + +#: ../lib/WikiUserNew.php:936 +msgid "" +"Please set ENCRYPTED_PASSWD to false in index.php and probably change " +"ADMIN_PASSWD." +msgstr "" + +#: ../lib/WikiUserNew.php:949 +msgid "Please set ENCRYPTED_PASSWD to true in index.php." +msgstr "" + +#: ../lib/WikiUserNew.php:1073 +#, c-format +msgid "" +"\n" +"You stored an empty password in your %s page.\n" +msgstr "" + +#: ../lib/WikiUserNew.php:1074 +msgid "Your access permissions are only for a BogoUser.\n" +msgstr "" + +#: ../lib/WikiUserNew.php:1075 +msgid "Please set your password in UserPreferences." +msgstr "" + +#: ../lib/WikiUserNew.php:1717 +msgid "Unable to connect to LDAP server " +msgstr "" + +#: ../lib/WikiUserNew.php:1747 +msgid "Unable to connect to IMAP server " +msgstr "" + +#: ../lib/XmlElement.php:417 ../lib/stdlib.php:995 #, c-format msgid "Can't mix '%s' with '%s' type format strings" msgstr "" -#: ../lib/config.php:145 +#: ../lib/config.php:125 #, fuzzy, c-format msgid "Can't set locale: '%s'" msgstr "Ger upp, kan ej skapa anslutning till databasen: %s" -#: ../lib/config.php:377 +#: ../lib/config.php:387 msgid "An unnamed PhpWiki" msgstr "" -#: ../lib/config.php:383 ../lib/imagecache.php:57 +#: ../lib/config.php:390 ../lib/imagecache.php:57 #: ../themes/default/templates/userprefs.tmpl:113 msgid "HomePage" msgstr "Framsida" -#: ../lib/config.php:398 +#: ../lib/config.php:404 #, c-format msgid "Encrypted passwords cannot be used: %s." msgstr "" -#: ../lib/config.php:404 +#: ../lib/config.php:410 msgid "The admin password cannot be empty. Please update your /index.php" msgstr "" -#: ../lib/config.php:408 -#, c-format -msgid "You can use %s only with %s" -msgstr "" - -#: ../lib/config.php:415 +#: ../lib/config.php:414 msgid "" "Empty db_session_table. Turn USE_DB_SESSION off or define the table name." msgstr "" -#: ../lib/diff.php:253 +#: ../lib/diff.php:253 ../lib/plugin/Diff.php:72 #, c-format msgid "version %s" msgstr "version %s" -#: ../lib/diff.php:256 +#: ../lib/diff.php:256 ../lib/plugin/Diff.php:75 #, c-format msgid "by %s" msgstr "av %s" -#: ../lib/diff.php:258 +#: ../lib/diff.php:258 ../lib/plugin/Diff.php:77 msgid "None" msgstr "Ingen" -#: ../lib/diff.php:280 ../lib/plugin/PageHistory.php:312 -#: ../lib/plugin/PageInfo.php:59 +#: ../lib/diff.php:280 ../lib/plugin/Diff.php:94 +#: ../lib/plugin/PageHistory.php:312 ../lib/plugin/PageInfo.php:59 #, c-format msgid "I'm sorry, there is no such page as %s." msgstr "" @@ -494,76 +673,79 @@ msgstr "" msgid "Diff: %s" msgstr "Diff av: %s" -#: ../lib/diff.php:290 ../lib/diff.php:300 +#: ../lib/diff.php:290 ../lib/diff.php:300 ../lib/plugin/Diff.php:102 +#: ../lib/plugin/Diff.php:112 #, c-format msgid "version %d" msgstr "version %d" -#: ../lib/diff.php:294 +#: ../lib/diff.php:294 ../lib/plugin/Diff.php:106 msgid "current version" msgstr "nuvarande version" -#: ../lib/diff.php:311 +#: ../lib/diff.php:311 ../lib/plugin/Diff.php:123 msgid "revision by previous author" msgstr "version från föregående författare" -#: ../lib/diff.php:317 +#: ../lib/diff.php:317 ../lib/plugin/Diff.php:129 #, fuzzy msgid "previous revision" msgstr "Föregående Månad" -#: ../lib/diff.php:327 +#: ../lib/diff.php:327 ../lib/plugin/Diff.php:139 msgid "predecessor to the previous major change" msgstr "" -#: ../lib/diff.php:337 +#: ../lib/diff.php:337 ../lib/plugin/Diff.php:149 #, c-format msgid "Differences between %s and %s of %s." msgstr "" -#: ../lib/diff.php:340 +#: ../lib/diff.php:340 ../lib/plugin/Diff.php:152 msgid "Other diffs:" msgstr "" -#: ../lib/diff.php:341 +#: ../lib/diff.php:341 ../lib/plugin/Diff.php:153 #, fuzzy msgid "Previous Major Revision" msgstr "Föregående Månad" -#: ../lib/diff.php:342 +#: ../lib/diff.php:342 ../lib/plugin/Diff.php:154 #, fuzzy msgid "Previous Revision" msgstr "Föregående Månad" -#: ../lib/diff.php:343 +#: ../lib/diff.php:343 ../lib/plugin/Diff.php:155 msgid "Previous Author" msgstr "Göregående Författare" -#: ../lib/diff.php:360 +#: ../lib/diff.php:360 ../lib/plugin/Diff.php:172 #, fuzzy msgid "Newer page:" msgstr "Ta bort sida" -#: ../lib/diff.php:362 +#: ../lib/diff.php:362 ../lib/plugin/Diff.php:174 #, fuzzy msgid "Older page:" msgstr "Kunde inte spara sidan \"%s\"" -#: ../lib/diff.php:370 +#: ../lib/diff.php:370 ../lib/plugin/Diff.php:182 msgid "Versions are identical" msgstr "Versionerna är identiska" #: ../lib/display.php:54 ../lib/plugin/PageGroup.php:91 #: ../lib/plugin/PageGroup.php:156 ../lib/plugin/PageGroup.php:167 #: ../lib/plugin/PageGroup.php:183 ../lib/plugin/PageGroup.php:190 -#: ../lib/plugin/PageHistory.php:216 ../lib/plugin/UnfoldSubpages.php:177 +#: ../lib/plugin/PageHistory.php:216 ../lib/plugin/UnfoldSubpages.php:165 #: ../themes/default/templates/head.tmpl:45 #, c-format msgid "%s: %s" msgstr "%s: %s" #: ../lib/display.php:104 ../lib/display.php:111 -#: ../lib/plugin/BackLinks.php:31 ../themes/default/templates/navbar.tmpl:22 +#: ../lib/plugin/BackLinks.php:31 ../lib/plugin/_WikiTranslation.php:50 +#: ../themes/default/templates/navbar.tmpl:23 +#: ../themes/smaller/templates/navbar.tmpl:19 msgid "BackLinks" msgstr "" @@ -577,53 +759,53 @@ msgstr "" msgid "(Redirected from %s)" msgstr "(Insättning från %s)" -#: ../lib/editpage.php:82 ../lib/editpage.php:283 +#: ../lib/editpage.php:90 ../lib/editpage.php:360 #, fuzzy msgid "Your version" msgstr "nuvarande version" -#: ../lib/editpage.php:82 ../lib/editpage.php:284 +#: ../lib/editpage.php:90 ../lib/editpage.php:361 #, fuzzy msgid "Other version" msgstr "nuvarande version" -#: ../lib/editpage.php:99 +#: ../lib/editpage.php:176 #, c-format msgid "Edit: %s" msgstr "Redigera: %s" -#: ../lib/editpage.php:133 +#: ../lib/editpage.php:210 #, c-format msgid "View Source: %s" msgstr "Visa Källkoden: %s" -#: ../lib/editpage.php:147 +#: ../lib/editpage.php:224 #, fuzzy msgid "Page now locked." msgstr "Sidan är Låst" -#: ../lib/editpage.php:147 +#: ../lib/editpage.php:224 #, fuzzy msgid "Page now unlocked." msgstr "Sidan är Låst" -#: ../lib/editpage.php:221 +#: ../lib/editpage.php:298 #, c-format msgid "Saved: %s" msgstr "Sparade: %s" -#: ../lib/editpage.php:266 ../themes/MacOSX/themeinfo.php:137 +#: ../lib/editpage.php:343 ../themes/MacOSX/themeinfo.php:137 msgid "Page Locked" msgstr "Sidan är Låst" -#: ../lib/editpage.php:267 +#: ../lib/editpage.php:344 #, fuzzy msgid "" "This page has been locked by the administrator so your changes can not be " "saved." msgstr "Den här sidan är låst av administratören och kan ej redigeras." -#: ../lib/editpage.php:268 +#: ../lib/editpage.php:345 #, fuzzy msgid "" "(Copy your changes to the clipboard. You can try editing a different page or " @@ -632,11 +814,11 @@ msgstr "" "Kopiera dina ändringar till urklippet eller till ett annat temporärt ställe " "(t.ex. en texteditor)." -#: ../lib/editpage.php:269 +#: ../lib/editpage.php:346 msgid "Sorry for the inconvenience." msgstr "Ledsen för allt besvär." -#: ../lib/editpage.php:282 ../lib/editpage.php:535 +#: ../lib/editpage.php:359 ../lib/editpage.php:612 #, c-format msgid "" "Some of the changes could not automatically be combined. Please look for " @@ -644,51 +826,40 @@ msgid "" "those sections by hand before you click Save." msgstr "" -#: ../lib/editpage.php:286 ../lib/editpage.php:538 +#: ../lib/editpage.php:363 ../lib/editpage.php:615 msgid "Please check it through before saving." msgstr "" -#: ../lib/editpage.php:297 +#: ../lib/editpage.php:374 msgid "Conflicting Edits!" msgstr "" -#: ../lib/editpage.php:298 +#: ../lib/editpage.php:375 msgid "" "In the time since you started editing this page, another user has saved a " "new version of it." msgstr "" -#: ../lib/editpage.php:299 +#: ../lib/editpage.php:376 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." msgstr "" -#: ../lib/editpage.php:370 +#: ../lib/editpage.php:447 msgid "Preview" msgstr "Översikt" -#: ../lib/editpage.php:374 +#: ../lib/editpage.php:451 msgid "Save" msgstr "Spara" -#: ../lib/editpage.php:510 +#: ../lib/editpage.php:587 #, fuzzy, c-format msgid "Merge and Edit: %s" msgstr "Redigera: %s" -#: ../lib/interwiki.php:7 ../lib/loadsave.php:373 -#: ../themes/default/templates/info.tmpl:144 -#: ../themes/default/templates/info.tmpl:145 -msgid "InterWikiMap" -msgstr "" - -#: ../lib/interwiki.php:90 ../lib/loadsave.php:515 -#, c-format -msgid "Loading InterWikiMap from external file %s." -msgstr "" - #: ../lib/loadsave.php:42 msgid "Complete." msgstr "Komplett." @@ -706,365 +877,396 @@ msgstr "" msgid "LatestSnapshot" msgstr "" -#: ../lib/loadsave.php:174 ../lib/loadsave.php:232 +#: ../lib/loadsave.php:175 ../lib/loadsave.php:234 msgid "You must specify a directory to dump to" msgstr "" -#: ../lib/loadsave.php:179 ../lib/loadsave.php:237 +#: ../lib/loadsave.php:180 ../lib/loadsave.php:239 #, c-format msgid "Cannot create directory '%s'" msgstr "" -#: ../lib/loadsave.php:181 ../lib/loadsave.php:239 +#: ../lib/loadsave.php:182 ../lib/loadsave.php:241 #, c-format msgid "Created directory '%s' for the page dump..." msgstr "" -#: ../lib/loadsave.php:184 ../lib/loadsave.php:242 +#: ../lib/loadsave.php:185 ../lib/loadsave.php:244 #, c-format msgid "Using directory '%s'" msgstr "" -#: ../lib/loadsave.php:187 ../lib/loadsave.php:245 +#: ../lib/loadsave.php:188 ../lib/loadsave.php:247 #, fuzzy msgid "Dumping Pages" msgstr "Ta bort sida" -#: ../lib/loadsave.php:200 ../lib/loadsave.php:263 +#: ../lib/loadsave.php:202 ../lib/loadsave.php:269 #, fuzzy, c-format msgid "saved as %s" msgstr "Sparade: %s" -#: ../lib/loadsave.php:210 ../lib/loadsave.php:278 +#: ../lib/loadsave.php:212 ../lib/loadsave.php:282 #: ../lib/plugin/text2png.php:183 #, c-format msgid "couldn't open file '%s' for writing" msgstr "" -#: ../lib/loadsave.php:216 ../lib/loadsave.php:284 +#: ../lib/loadsave.php:218 ../lib/loadsave.php:288 #, fuzzy, c-format msgid "%s bytes written" msgstr "%s dar" -#: ../lib/loadsave.php:363 +#: ../lib/loadsave.php:302 ../lib/loadsave.php:316 +#, fuzzy, c-format +msgid "... copied to %s" +msgstr "Kopia är [%s]" + +#: ../lib/loadsave.php:306 ../lib/loadsave.php:320 +#, fuzzy +msgid "... not found" +msgstr "%s: fila ingen funna" + +#: ../lib/loadsave.php:399 msgid "Empty pagename!" msgstr "Ange ett sidnamn!" -#: ../lib/loadsave.php:419 +#: ../lib/loadsave.php:455 #, c-format msgid "from %s" msgstr "från %s" -#: ../lib/loadsave.php:424 +#: ../lib/loadsave.php:460 #, fuzzy msgid "new page" msgstr "Ta bort sida" -#: ../lib/loadsave.php:432 +#: ../lib/loadsave.php:468 msgid "has edit conflicts - overwriting anyway" msgstr "" -#: ../lib/loadsave.php:435 ../lib/loadsave.php:797 ../lib/loadsave.php:800 +#: ../lib/loadsave.php:471 ../lib/loadsave.php:837 ../lib/loadsave.php:840 msgid "The PhpWiki programming team" msgstr "" -#: ../lib/loadsave.php:440 +#: ../lib/loadsave.php:476 msgid "has edit conflicts - skipped" msgstr "" -#: ../lib/loadsave.php:448 +#: ../lib/loadsave.php:484 #, c-format msgid "is identical to current version %d - skipped" msgstr "" -#: ../lib/loadsave.php:458 +#: ../lib/loadsave.php:494 #, fuzzy, c-format msgid "- saved to database as version %d" msgstr "version %d" -#: ../lib/loadsave.php:464 ../lib/loadsave.php:609 +#: ../lib/loadsave.php:500 ../lib/loadsave.php:647 #, c-format msgid "MIME file %s" msgstr "" -#: ../lib/loadsave.php:465 ../lib/loadsave.php:614 +#: ../lib/loadsave.php:501 ../lib/loadsave.php:652 #, c-format msgid "Serialized file %s" msgstr "" -#: ../lib/loadsave.php:466 ../lib/loadsave.php:628 +#: ../lib/loadsave.php:502 ../lib/loadsave.php:666 #, fuzzy, c-format msgid "plain file %s" msgstr "senast ändrad %s" -#: ../lib/loadsave.php:472 +#: ../lib/loadsave.php:509 #, fuzzy msgid "Merge Edit" msgstr "Redigera: %s" -#: ../lib/loadsave.php:473 ../lib/loadsave.php:480 -#: ../lib/plugin/WikiAdminSelect.php:169 +#: ../lib/loadsave.php:510 ../lib/loadsave.php:516 +#: ../lib/plugin/WikiAdminSelect.php:170 #: ../themes/Portland/templates/navbar.tmpl:30 #: ../themes/default/templates/head.tmpl:76 -#: ../themes/default/templates/navbar.tmpl:36 +#: ../themes/default/templates/navbar.tmpl:37 +#: ../themes/smaller/templates/navbar.tmpl:22 msgid "PhpWikiAdministration" msgstr "" -#: ../lib/loadsave.php:479 +#: ../lib/loadsave.php:515 msgid "Restore Anyway" msgstr "" -#: ../lib/loadsave.php:499 +#: ../lib/loadsave.php:536 #, fuzzy, c-format msgid "%s: not defined" msgstr "%s: fila ingen funna" -#: ../lib/loadsave.php:508 +#: ../lib/loadsave.php:545 msgid "Default InterWiki map file not loaded." msgstr "" -#: ../lib/loadsave.php:642 ../lib/loadsave.php:654 +#: ../lib/loadsave.php:680 ../lib/loadsave.php:692 msgid "Skipping" msgstr "" -#: ../lib/loadsave.php:751 +#: ../lib/loadsave.php:791 #, c-format msgid "Unable to load: %s" msgstr "" -#: ../lib/loadsave.php:758 +#: ../lib/loadsave.php:798 #, c-format msgid "Bad file type: %s" msgstr "" -#: ../lib/loadsave.php:772 +#: ../lib/loadsave.php:812 #, c-format msgid "Loading '%s'" msgstr "" -#: ../lib/loadsave.php:803 +#: ../lib/loadsave.php:843 msgid "Loading up virgin wiki" msgstr "" -#: ../lib/loadsave.php:823 +#: ../lib/loadsave.php:863 msgid "No uploaded file to upload?" msgstr "" -#: ../lib/loadsave.php:827 +#: ../lib/loadsave.php:867 #, c-format msgid "Uploading %s" msgstr "" -#: ../lib/main.php:288 +#: ../lib/main.php:264 #, fuzzy, c-format msgid "%s is disallowed on this wiki." msgstr "De %d mest populära sidorna för den här wikin:" -#: ../lib/main.php:292 +#: ../lib/main.php:268 #, c-format msgid "You must sign in to %s." msgstr "" -#: ../lib/main.php:294 +#: ../lib/main.php:270 #, c-format msgid "You must log in to %s." msgstr "" -#: ../lib/main.php:296 ../lib/plugin/PluginManager.php:65 +#: ../lib/main.php:272 ../lib/plugin/PluginManager.php:65 #, c-format msgid "You must be an administrator to %s." msgstr "" -#: ../lib/main.php:309 +#: ../lib/main.php:285 #, fuzzy -msgid "browse pages in this wiki" -msgstr "De %d mest populära sidorna för den här wikin:" +msgid "view this page" +msgstr "%s för den här sidan" -#: ../lib/main.php:310 +#: ../lib/main.php:286 #, fuzzy -msgid "diff pages in this wiki" -msgstr "De %d mest populära sidorna för den här wikin:" +msgid "diff this page" +msgstr "%s för den här sidan" -#: ../lib/main.php:311 +#: ../lib/main.php:287 #, fuzzy -msgid "dump html pages from this wiki" -msgstr "De %d mest populära sidorna för den här wikin:" +msgid "dump html pages" +msgstr "Ta bort sida" -#: ../lib/main.php:312 +#: ../lib/main.php:288 #, fuzzy -msgid "dump serial pages from this wiki" +msgid "dump serial pages" msgstr "De %d mest populära sidorna för den här wikin:" -#: ../lib/main.php:313 +#: ../lib/main.php:289 #, fuzzy -msgid "edit pages in this wiki" -msgstr "De %d mest populära sidorna för den här wikin:" +msgid "edit this page" +msgstr "%s för den här sidan" -#: ../lib/main.php:314 +#: ../lib/main.php:290 #, fuzzy -msgid "create pages in this wiki" -msgstr "De %d mest populära sidorna för den här wikin:" +msgid "create this page" +msgstr "Kunde inte spara sidan \"%s\"" -#: ../lib/main.php:315 +#: ../lib/main.php:291 #, fuzzy msgid "load files into this wiki" msgstr "De %d mest populära sidorna för den här wikin:" -#: ../lib/main.php:316 +#: ../lib/main.php:292 #, fuzzy -msgid "lock pages in this wiki" -msgstr "De %d mest populära sidorna för den här wikin:" +msgid "lock this page" +msgstr "%s för den här sidan" -#: ../lib/main.php:317 +#: ../lib/main.php:293 #, fuzzy -msgid "remove pages from this wiki" -msgstr "De %d mest populära sidorna för den här wikin:" +msgid "remove this page" +msgstr "Ta bort sida nu" -#: ../lib/main.php:318 +#: ../lib/main.php:294 #, fuzzy -msgid "unlock pages in this wiki" -msgstr "De %d mest populära sidorna för den här wikin:" +msgid "unlock this page" +msgstr "Lås upp Sida" -#: ../lib/main.php:319 +#: ../lib/main.php:295 #, fuzzy -msgid "upload a zip dump to this wiki" +msgid "upload a zip dump" msgstr "De %d mest populära sidorna för den här wikin:" -#: ../lib/main.php:320 +#: ../lib/main.php:296 msgid "verify the current action" msgstr "" -#: ../lib/main.php:321 +#: ../lib/main.php:297 #, fuzzy -msgid "view the source of pages in this wiki" +msgid "view the source of this page" msgstr "De %d mest populära sidorna för den här wikin:" -#: ../lib/main.php:322 +#: ../lib/main.php:298 msgid "access this wiki via XML-RPC" msgstr "" -#: ../lib/main.php:323 +#: ../lib/main.php:299 #, fuzzy msgid "download a zip dump from this wiki" msgstr "De %d mest populära sidorna för den här wikin:" -#: ../lib/main.php:324 +#: ../lib/main.php:300 #, fuzzy msgid "download an html zip dump from this wiki" msgstr "De %d mest populära sidorna för den här wikin:" -#: ../lib/main.php:336 +#: ../lib/main.php:312 #, fuzzy msgid "Browsing pages" msgstr "Kunde inte spara sidan \"%s\"" -#: ../lib/main.php:337 +#: ../lib/main.php:313 #, fuzzy msgid "Diffing pages" msgstr "Kunde inte spara sidan \"%s\"" -#: ../lib/main.php:338 +#: ../lib/main.php:314 #, fuzzy msgid "Dumping html pages" msgstr "Ta bort sida" -#: ../lib/main.php:339 +#: ../lib/main.php:315 #, fuzzy msgid "Dumping serial pages" msgstr "De %d mest populära sidorna för den här wikin:" -#: ../lib/main.php:340 +#: ../lib/main.php:316 #, fuzzy msgid "Editing pages" msgstr "Kunde inte spara sidan \"%s\"" -#: ../lib/main.php:341 +#: ../lib/main.php:317 #, fuzzy msgid "Creating pages" msgstr "Kunde inte spara sidan \"%s\"" -#: ../lib/main.php:342 +#: ../lib/main.php:318 #, fuzzy msgid "Loading files" msgstr "Lås Sida" -#: ../lib/main.php:343 +#: ../lib/main.php:319 #, fuzzy msgid "Locking pages" msgstr "Lås Sida" -#: ../lib/main.php:344 +#: ../lib/main.php:320 #, fuzzy msgid "Removing pages" msgstr "Ta bort sida" -#: ../lib/main.php:345 +#: ../lib/main.php:321 #, fuzzy msgid "Unlocking pages" msgstr "Lås upp Sida" -#: ../lib/main.php:346 +#: ../lib/main.php:322 msgid "Uploading zip dumps" msgstr "" -#: ../lib/main.php:347 +#: ../lib/main.php:323 msgid "Verify the current action" msgstr "" -#: ../lib/main.php:348 +#: ../lib/main.php:324 #, fuzzy msgid "Viewing the source of pages" msgstr "De %d mest populära sidorna för den här wikin:" -#: ../lib/main.php:349 +#: ../lib/main.php:325 msgid "XML-RPC access" msgstr "" -#: ../lib/main.php:350 +#: ../lib/main.php:326 msgid "Downloading zip dumps" msgstr "" -#: ../lib/main.php:351 +#: ../lib/main.php:327 msgid "Downloading html zip dumps" msgstr "" -#: ../lib/main.php:458 +#: ../lib/main.php:436 #, c-format msgid "%s: Bad action" msgstr "" -#: ../lib/main.php:480 +#: ../lib/main.php:458 msgid "Fatal PhpWiki Error" msgstr "PhpWiki Fatal Error" -#: ../lib/main.php:661 ../lib/plugin/FullTextSearch.php:31 +#: ../lib/main.php:641 ../lib/plugin/FullTextSearch.php:32 #: ../lib/plugin/WantedPages.php:123 msgid "FullTextSearch" msgstr "Fulltextsökning" -#: ../lib/main.php:664 ../lib/plugin/RecentChanges.php:519 +#: ../lib/main.php:644 ../lib/plugin/RecentChanges.php:525 #: ../lib/plugin/TitleSearch.php:31 msgid "TitleSearch" msgstr "Titelsökningen" -#: ../lib/main.php:772 +#: ../lib/main.php:757 msgid "The session.save_path directory" msgstr "" -#: ../lib/main.php:775 +#: ../lib/main.php:760 #, c-format msgid "the directory '%s'" msgstr "" -#: ../lib/main.php:779 +#: ../lib/main.php:764 #, c-format msgid "Attempting to use the directory '%s' instead." msgstr "" -#: ../lib/main.php:786 +#: ../lib/main.php:771 msgid "Users will not be able to sign in." msgstr "" +#: ../lib/plugin/AddComment.php:39 +#, fuzzy +msgid "AddComment" +msgstr "Innehåll" + +#: ../lib/plugin/AddComment.php:43 +#, fuzzy, c-format +msgid "Show and add comments for %s" +msgstr "Visa källkoden och referenser för sidan" + +#: ../lib/plugin/AddComment.php:106 ../lib/plugin/CreateToc.php:203 +#, fuzzy +msgid "Click to display" +msgstr "%s för den här sidan" + +#: ../lib/plugin/AddComment.php:108 +#, fuzzy +msgid "Comments" +msgstr "Innehåll" + #: ../lib/plugin/AllPages.php:31 msgid "AllPages" msgstr "" @@ -1079,28 +1281,29 @@ msgstr "De %d mest popul msgid "Pages in this wiki (%d total):" msgstr "De %d mest populära sidorna för den här wikin:" -#: ../lib/plugin/AllPages.php:82 ../lib/plugin/AllUsers.php:94 +#: ../lib/plugin/AllPages.php:81 ../lib/plugin/AllUsers.php:100 #, c-format msgid "Elapsed time: %s s" msgstr "" -#: ../lib/plugin/AllUsers.php:33 +#: ../lib/plugin/AllUsers.php:36 msgid "AllUsers" msgstr "" -#: ../lib/plugin/AllUsers.php:37 +#: ../lib/plugin/AllUsers.php:40 msgid "" "With external authentication all users which stored their Preferences. " "Without external authentication all once signed-in users (from version 1.3.4 " "on)." msgstr "" -#: ../lib/plugin/AllUsers.php:72 +#: ../lib/plugin/AllUsers.php:76 #, fuzzy, c-format msgid "Authenticated users on this wiki (%d total):" msgstr "De %d mest populära sidorna för den här wikin:" #: ../lib/plugin/AuthorHistory.php:70 +#: ../themes/smaller/templates/info.tmpl:169 msgid "AuthorHistory" msgstr "" @@ -1115,6 +1318,8 @@ msgid "Minor" msgstr "" #: ../lib/plugin/AuthorHistory.php:125 +#: ../themes/default/templates/forum-thread.tmpl:21 +#: ../themes/default/templates/forum-topics.tmpl:23 #, fuzzy msgid "Author" msgstr "Författare:" @@ -1142,12 +1347,12 @@ msgstr "" #: ../lib/plugin/AuthorHistory.php:218 #, c-format -msgid "History of all major and minor modifcations for any page edited by %s." +msgid "History of all major and minor modifications for any page edited by %s." msgstr "" #: ../lib/plugin/AuthorHistory.php:218 #, c-format -msgid "History of major modifcations for any page edited by %s." +msgid "History of major modifications for any page edited by %s." msgstr "" #: ../lib/plugin/BackLinks.php:35 @@ -1188,7 +1393,7 @@ msgstr "" #: ../lib/plugin/Calendar.php:41 ../lib/plugin/Calendar.php:45 #: ../themes/default/templates/head.tmpl:85 #: ../themes/default/templates/homepage.tmpl:15 -#: ../themes/default/templates/navbar.tmpl:27 +#: ../themes/default/templates/navbar.tmpl:28 msgid "Calendar" msgstr "Kalender" @@ -1219,6 +1424,42 @@ msgstr "Inneh msgid "Embed hidden comments in WikiPages." msgstr "" +#: ../lib/plugin/CreatePage.php:37 +#, fuzzy +msgid "CreatePage" +msgstr "SökEfterSida" + +#: ../lib/plugin/CreatePage.php:41 +#, fuzzy +msgid "Create a Wiki page." +msgstr "Kunde inte spara sidan \"%s\"" + +#: ../lib/plugin/CreateToc.php:34 +#, fuzzy +msgid "CreateToc" +msgstr "Sparade: %s" + +#: ../lib/plugin/CreateToc.php:38 +msgid "Automatically link headers at the top" +msgstr "" + +#: ../lib/plugin/CreateToc.php:146 ../lib/plugin/IncludePage.php:116 +msgid "no page specified" +msgstr "" + +#: ../lib/plugin/CreateToc.php:205 ../lib/plugin/CreateToc.php:208 +#, fuzzy +msgid "Table Of Contents" +msgstr "Innehåll" + +#: ../lib/plugin/Diff.php:40 +msgid "Display differences between revisions" +msgstr "" + +#: ../lib/plugin/Diff.php:52 +msgid "World" +msgstr "" + #: ../lib/plugin/EditMetaData.php:45 msgid "EditMetaData" msgstr "" @@ -1266,7 +1507,7 @@ msgid "" "Displays a url in a seperate frame inside our body. Only one frame allowed." msgstr "" -#: ../lib/plugin/FrameInclude.php:93 ../lib/plugin/IncludePage.php:124 +#: ../lib/plugin/FrameInclude.php:93 ../lib/plugin/IncludePage.php:123 #, c-format msgid "recursive inclusion of page %s" msgstr "" @@ -1287,12 +1528,17 @@ msgstr "" msgid "See %s" msgstr "Sparade: %s" -#: ../lib/plugin/FullTextSearch.php:35 +#: ../lib/plugin/FullTextSearch.php:36 #, fuzzy msgid "Search the content of all pages in this wiki." msgstr "De %d mest populära sidorna för den här wikin:" -#: ../lib/plugin/FullTextSearch.php:80 +#: ../lib/plugin/FullTextSearch.php:91 +#, c-format +msgid "only %d pages displayed" +msgstr "" + +#: ../lib/plugin/FullTextSearch.php:97 #, c-format msgid "Full text search results for '%s'" msgstr "Sökresultat för fulltextsökning för '%s'" @@ -1329,6 +1575,14 @@ msgstr "" msgid "Sound Score" msgstr "" +#: ../lib/plugin/GooglePlugin.php:43 +msgid "GooglePlugin" +msgstr "" + +#: ../lib/plugin/GooglePlugin.php:47 +msgid "Make use of the Google API" +msgstr "" + #: ../lib/plugin/HelloWorld.php:46 msgid "HelloWorld" msgstr "" @@ -1347,25 +1601,31 @@ msgid "Include text from another wiki page." msgstr "" #: ../lib/plugin/IncludePage.php:93 ../lib/plugin/PageGroup.php:80 -#: ../lib/plugin/UnfoldSubpages.php:116 +#: ../lib/plugin/UnfoldSubpages.php:117 #, c-format msgid "<%s: no such section>" msgstr "" -#: ../lib/plugin/IncludePage.php:117 -msgid "no page specified" -msgstr "" - -#: ../lib/plugin/IncludePage.php:133 ../lib/plugin/PageGroup.php:121 +#: ../lib/plugin/IncludePage.php:132 ../lib/plugin/PageGroup.php:121 #, c-format msgid "%s(%d): no such revision" msgstr "" -#: ../lib/plugin/IncludePage.php:162 +#: ../lib/plugin/IncludePage.php:161 #, c-format msgid "Included from %s" msgstr "Insättning från %s" +#: ../lib/plugin/IncludeSiteMap.php:52 +#, fuzzy +msgid "IncludeSiteMap" +msgstr "Insättning" + +#: ../lib/plugin/IncludeSiteMap.php:56 +#, c-format +msgid "Include recursively all linked pages starting at %s" +msgstr "" + #: ../lib/plugin/InterWikiSearch.php:31 #, fuzzy msgid "InterWikiSearch" @@ -1375,17 +1635,18 @@ msgstr "Titels msgid "Perform searches on InterWiki sites listed in InterWikiMap." msgstr "" -#: ../lib/plugin/InterWikiSearch.php:70 +#: ../lib/plugin/InterWikiSearch.php:91 #, fuzzy msgid "Wiki Name" msgstr "Namn på Sidan" -#: ../lib/plugin/InterWikiSearch.php:71 ../lib/plugin/RecentChanges.php:516 +#: ../lib/plugin/InterWikiSearch.php:92 ../lib/plugin/RecentChanges.php:522 msgid "Search" msgstr "Sök" #: ../lib/plugin/LikePages.php:32 ../themes/Portland/templates/navbar.tmpl:10 -#: ../themes/default/templates/navbar.tmpl:21 +#: ../themes/default/templates/navbar.tmpl:22 +#: ../themes/smaller/templates/navbar.tmpl:18 #, fuzzy msgid "LikePages" msgstr "Lås Sida" @@ -1418,7 +1679,7 @@ msgstr "" msgid "Lists the names of all SubPages of the current page." msgstr "" -#: ../lib/plugin/ListSubpages.php:68 ../lib/plugin/UnfoldSubpages.php:133 +#: ../lib/plugin/ListSubpages.php:68 ../lib/plugin/UnfoldSubpages.php:127 msgid "The current page has no subpages defined." msgstr "" @@ -1427,7 +1688,7 @@ msgstr "" msgid "SubPages of %s:" msgstr "Visa källkoden för %s" -#: ../lib/plugin/ListSubpages.php:90 ../lib/plugin/UnfoldSubpages.php:149 +#: ../lib/plugin/ListSubpages.php:90 ../lib/plugin/UnfoldSubpages.php:137 #, c-format msgid "recursive inclusion of page %s ignored" msgstr "" @@ -1441,20 +1702,29 @@ msgstr "MestPopul msgid "List the most popular pages." msgstr "De %d mest populära sidorna för den här wikin:" -#: ../lib/plugin/MostPopular.php:78 +#: ../lib/plugin/MostPopular.php:80 #, c-format msgid "The %d most popular pages of this wiki:" msgstr "De %d mest populära sidorna för den här wikin:" -#: ../lib/plugin/MostPopular.php:81 +#: ../lib/plugin/MostPopular.php:83 #, fuzzy, c-format msgid "The %d least popular pages of this wiki:" msgstr "De %d mest populära sidorna för den här wikin:" -#: ../lib/plugin/MostPopular.php:83 +#: ../lib/plugin/MostPopular.php:85 msgid "Visited pages on this wiki, ordered by popularity:" msgstr "" +#: ../lib/plugin/NoCache.php:39 +#, fuzzy +msgid "NoCache" +msgstr "Avbyrt" + +#: ../lib/plugin/NoCache.php:43 +msgid "Don't cache this page." +msgstr "" + #: ../lib/plugin/OldStyleTable.php:49 msgid "OldStyleTable" msgstr "" @@ -1606,6 +1876,8 @@ msgstr "Version %d" #: ../themes/SpaceWiki/lib/RecentChanges.php:35 #: ../themes/default/templates/info.tmpl:18 #: ../themes/default/templates/info.tmpl:22 +#: ../themes/smaller/templates/info.tmpl:19 +#: ../themes/smaller/templates/info.tmpl:23 msgid "minor edit" msgstr "" @@ -1617,6 +1889,8 @@ msgstr "Visa k #: ../lib/plugin/PageHistory.php:247 ../lib/plugin/RecentChanges.php:65 #: ../themes/Portland/templates/actionbar.tmpl:18 #: ../themes/default/templates/actionbar.tmpl:27 +#: ../themes/smaller/templates/actionbar.tmpl:33 +#: ../themes/smaller/templates/info.tmpl:168 msgid "PageHistory" msgstr "" @@ -1636,33 +1910,40 @@ msgstr "" msgid "Show extra page Info and statistics for %s." msgstr "" -#: ../lib/plugin/PageTrail.php:43 +#: ../lib/plugin/PageTrail.php:45 msgid "PageTrail" msgstr "" -#: ../lib/plugin/PageTrail.php:47 +#: ../lib/plugin/PageTrail.php:49 msgid "PageTrail Plugin" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:53 +#: ../lib/plugin/PhotoAlbum.php:146 msgid "PhotoAlbum" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:57 +#: ../lib/plugin/PhotoAlbum.php:150 msgid "" "Displays a set of photos listed in a text file with optional descriptions" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:80 ../lib/plugin/Transclude.php:76 -#, c-format -msgid "%s parameter missing" +#: ../lib/plugin/PhotoAlbum.php:433 +msgid "Fixed album location is not allowed." +msgstr "" + +#: ../lib/plugin/PhotoAlbum.php:434 +msgid "));" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:84 ../lib/plugin/Transclude.php:85 +#: ../lib/plugin/PhotoAlbum.php:452 ../lib/plugin/Transclude.php:85 msgid "Bad url in src: remove all of <, >, \"" msgstr "" -#: ../lib/plugin/PhotoAlbum.php:90 +#: ../lib/plugin/PhotoAlbum.php:476 +msgid "Wrong server setting: allow_url_fopen set to Off" +msgstr "" + +#: ../lib/plugin/PhotoAlbum.php:480 #, c-format msgid "Unable to read %s " msgstr "" @@ -1872,7 +2153,7 @@ msgid "All %s are listed below." msgstr "%s listas nedan." #: ../lib/plugin/RecentChanges.php:250 ../lib/plugin/RecentChanges.php:263 -#: ../lib/plugin/RecentChanges.php:362 ../lib/plugin/RecentChanges.php:438 +#: ../lib/plugin/RecentChanges.php:365 ../lib/plugin/RecentChanges.php:441 #: ../themes/Portland/templates/editpage.tmpl:66 msgid "RecentEdits" msgstr "" @@ -1882,30 +2163,30 @@ msgstr "" msgid "No changes found" msgstr "Visa källkoden och referenser för sidan" -#: ../lib/plugin/RecentChanges.php:517 +#: ../lib/plugin/RecentChanges.php:523 msgid "Title Search" msgstr "Titelsökningen" -#: ../lib/plugin/RecentChanges.php:740 +#: ../lib/plugin/RecentChanges.php:746 #, fuzzy msgid "Show minor edits for:" msgstr "Visa källkoden och referenser för sidan" -#: ../lib/plugin/RecentChanges.php:742 +#: ../lib/plugin/RecentChanges.php:748 #, fuzzy msgid "Show all changes for:" msgstr "Visa källkoden och referenser för sidan" -#: ../lib/plugin/RecentChanges.php:744 +#: ../lib/plugin/RecentChanges.php:750 #, fuzzy msgid "Show changes for:" msgstr "Visa källkoden och referenser för sidan" -#: ../lib/plugin/RecentChanges.php:764 +#: ../lib/plugin/RecentChanges.php:770 msgid "1 day" msgstr "1 dag" -#: ../lib/plugin/RecentChanges.php:768 +#: ../lib/plugin/RecentChanges.php:774 #, c-format msgid "%s days" msgstr "%s dar" @@ -1936,20 +2217,41 @@ msgstr "" msgid "Viewing redirecting page." msgstr "De %d mest populära sidorna för den här wikin:" -#: ../lib/plugin/SiteMap.php:49 +#: ../lib/plugin/RichTable.php:32 +msgid "RichTable" +msgstr "" + +#: ../lib/plugin/RichTable.php:36 +msgid "Layout tables using a very rich markup style." +msgstr "" + +#: ../lib/plugin/SiteMap.php:51 msgid "SiteMap" msgstr "" -#: ../lib/plugin/SiteMap.php:53 +#: ../lib/plugin/SiteMap.php:55 #, c-format msgid "Recursively get BackLinks or links for %s" msgstr "" -#: ../lib/plugin/SiteMap.php:161 +#: ../lib/plugin/SiteMap.php:169 #, c-format msgid "(max. recursion level: %d)" msgstr "" +#: ../lib/plugin/SqlResult.php:42 +msgid "SqlResult" +msgstr "" + +#: ../lib/plugin/SqlResult.php:46 +msgid "Display arbitrary SQL result tables" +msgstr "" + +#: ../lib/plugin/SqlResult.php:81 ../lib/plugin/WikiPoll.php:159 +#: ../lib/plugin/WikiPoll.php:228 +msgid "Sorry! You must wait at least 20 minutes until you can vote again!" +msgstr "" + #: ../lib/plugin/SystemInfo.php:52 msgid "SystemInfo" msgstr "" @@ -2196,9 +2498,14 @@ msgstr "Ins msgid "Include an external web page within the body of a wiki page." msgstr "" -#: ../lib/plugin/Transclude.php:88 -#, fuzzy -msgid "Transcluded page" +#: ../lib/plugin/Transclude.php:76 +#, c-format +msgid "%s parameter missing" +msgstr "" + +#: ../lib/plugin/Transclude.php:88 +#, fuzzy +msgid "Transcluded page" msgstr "Insättning" #: ../lib/plugin/Transclude.php:97 @@ -2211,6 +2518,84 @@ msgstr "Sparade: %s" msgid "Transcluded from %s" msgstr "Insättning från %s" +#: ../lib/plugin/TranslateText.php:44 ../lib/plugin/_WikiTranslation.php:98 +#, fuzzy +msgid "TranslateText" +msgstr "Insättning" + +#: ../lib/plugin/TranslateText.php:48 +msgid "Define a translation for a specified text" +msgstr "" + +#: ../lib/plugin/TranslateText.php:68 +msgid "This internal action page cannot viewed." +msgstr "" + +#: ../lib/plugin/TranslateText.php:69 +msgid "You can only use it via the _WikiTranslation plugin." +msgstr "" + +#: ../lib/plugin/TranslateText.php:76 +msgid "Translation Error!" +msgstr "" + +#: ../lib/plugin/TranslateText.php:77 +msgid "" +"Your translated text is either empty or equal to the untranslated text. " +"Please try again." +msgstr "" + +#: ../lib/plugin/TranslateText.php:82 +msgid "ContributedTranslations" +msgstr "" + +#: ../lib/plugin/TranslateText.php:96 +#, c-format +msgid "Translate '%s' to '%s' in *%s*" +msgstr "" + +#: ../lib/plugin/TranslateText.php:99 +#, c-format +msgid "Translate %s to %s in %s" +msgstr "" + +#: ../lib/plugin/TranslateText.php:103 +#, fuzzy +msgid "Thanks for adding this translation!" +msgstr "Tack för att du redigerade %s." + +#: ../lib/plugin/TranslateText.php:104 +#, c-format +msgid "" +"Your translated text doesn't yet appear in this %s, but the Administrator " +"will pick it up and add to the installation." +msgstr "" + +#: ../lib/plugin/TranslateText.php:106 +#, c-format +msgid "Your translation is stored in %s" +msgstr "" + +#: ../lib/plugin/TranslateText.php:112 ../lib/plugin/TranslateText.php:114 +#, fuzzy, c-format +msgid "From english to %s: " +msgstr "De %d mest populära sidorna för den här wikin:" + +#: ../lib/plugin/TranslateText.php:115 +#, fuzzy +msgid "Translate" +msgstr "Insättning" + +#: ../lib/plugin/TranslateText.php:118 ../lib/plugin/WikiAdminChmod.php:163 +#: ../lib/plugin/WikiAdminRemove.php:201 ../lib/plugin/WikiAdminRename.php:158 +#: ../lib/plugin/WikiAdminSearchReplace.php:185 +#: ../lib/plugin/WikiAdminSelect.php:196 ../lib/plugin/WikiAdminSelect.php:217 +#: ../lib/plugin/WikiAdminSetAcl.php:157 ../lib/removepage.php:22 +#: ../themes/default/templates/login.tmpl:68 +#: ../themes/default/templates/userprefs.tmpl:214 +msgid "Cancel" +msgstr "Avbyrt" + #: ../lib/plugin/UnfoldSubpages.php:36 msgid "UnfoldSubpages" msgstr "" @@ -2219,67 +2604,85 @@ msgstr "" msgid "Includes the content of all SubPages of the current page." msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:83 +#: ../lib/plugin/UnfoldSubpages.php:84 #, c-format msgid "... first %d words" msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:164 +#: ../lib/plugin/UnfoldSubpages.php:152 #, c-format msgid " ... first %d lines" msgstr "" -#: ../lib/plugin/UnfoldSubpages.php:188 +#: ../lib/plugin/UnfoldSubpages.php:176 #, fuzzy, c-format msgid "Included from %s:" msgstr "Insättning från %s" -#: ../lib/plugin/UpLoad.php:52 -msgid "Simple Plugin to load files up to server" +#: ../lib/plugin/UpLoad.php:53 +msgid "Upload files to the local InterWiki Upload:" msgstr "" -#: ../lib/plugin/UpLoad.php:79 ../lib/plugin/WikiForm.php:100 +#: ../lib/plugin/UpLoad.php:84 ../lib/plugin/WikiForm.php:100 msgid "Upload" msgstr "" -#: ../lib/plugin/UpLoad.php:102 -msgid "ACCESS DENIED: Please log in to upload files" +#: ../lib/plugin/UpLoad.php:100 +msgid "ACCESS DENIED: You must log in to upload files." msgstr "" -#: ../lib/plugin/UpLoad.php:116 +#: ../lib/plugin/UpLoad.php:112 #, c-format msgid "Files with extension %s are not allowed" msgstr "" -#: ../lib/plugin/UpLoad.php:122 +#: ../lib/plugin/UpLoad.php:116 #, c-format msgid "There is already a file with name %s uploaded" msgstr "" -#: ../lib/plugin/UpLoad.php:128 +#: ../lib/plugin/UpLoad.php:120 msgid "Sorry but this file is too big" msgstr "" -#: ../lib/plugin/UpLoad.php:133 -msgid "File successfully uploaded to location:" +#: ../lib/plugin/UpLoad.php:127 +msgid "File successfully uploaded." msgstr "" -#: ../lib/plugin/UpLoad.php:141 +#: ../lib/plugin/UpLoad.php:144 +#, fuzzy, c-format +msgid "uploaded %s" +msgstr "Sparade: %s" + +#: ../lib/plugin/UpLoad.php:150 +#, fuzzy +msgid "Uploading failed: " +msgstr "Lås Sida" + +#: ../lib/plugin/UpLoad.php:168 msgid "Error: the upload log is not writable" msgstr "" -#: ../lib/plugin/UpLoad.php:145 +#: ../lib/plugin/UpLoad.php:172 msgid "Error: can't open the upload logfile" msgstr "" -#: ../lib/plugin/UpLoad.php:164 -#, fuzzy -msgid "Uploading failed." -msgstr "Lås Sida" +#: ../lib/plugin/UserFileManagement.php:38 +msgid "UserFileManagement" +msgstr "" + +#: ../lib/plugin/UserFileManagement.php:42 +msgid "Allows registered users to manipulate his/her files" +msgstr "" + +#: ../lib/plugin/UserFileManagement.php:136 +msgid "Current directory: " +msgstr "" #: ../lib/plugin/UserPreferences.php:34 #: ../themes/default/templates/head.tmpl:82 #: ../themes/default/templates/homepage.tmpl:11 +#: ../themes/smaller/templates/navbar.tmpl:25 #, fuzzy msgid "UserPreferences" msgstr "Inställningar" @@ -2290,20 +2693,123 @@ msgid "" "cannot be saved." msgstr "" -#: ../lib/plugin/UserPreferences.php:79 +#: ../lib/plugin/UserPreferences.php:80 msgid "Wrong password. Try again." msgstr "" -#: ../lib/plugin/UserPreferences.php:85 +#: ../lib/plugin/UserPreferences.php:97 +#, fuzzy +msgid "Password updated." +msgstr "Lösenord" + +#: ../lib/plugin/UserPreferences.php:99 ../lib/plugin/UserPreferences.php:102 +msgid "Password cannot be changed." +msgstr "" + +#: ../lib/plugin/UserPreferences.php:106 #, fuzzy msgid "No changes." msgstr "Visa källkoden och referenser för sidan" -#: ../lib/plugin/UserPreferences.php:89 +#: ../lib/plugin/UserPreferences.php:109 #, c-format msgid "%d UserPreferences fields successfully updated." msgstr "" +#: ../lib/plugin/UserRegistration.php:16 +msgid "UserRegistration" +msgstr "" + +#: ../lib/plugin/UserRegistration.php:28 +msgid "Only the administrator is allowed to register new users." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:31 +msgid "Warning: You are already signed in, you cannot create another account." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:56 +msgid "Error: You must specify a user-id for the account." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:59 +msgid "Error: The user-id you specified is too short." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:63 +msgid "Error: The user-id you specified is not a valid WikiWord." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:66 +msgid "" +"Error: The user-id you specified is already in use, please choose another." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:72 +msgid "Error: You must specify a password for the account." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:74 +msgid "Error: The password you specified is too short." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:78 +msgid "Error: You must specify an email address." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:81 +msgid "Error: The email address you specified is not valid." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:84 +msgid "Error: You must specify a first name." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:87 +msgid "Error: You must specify a last name." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:97 +msgid "" +"Error: There seemed to be some problem creating the new home page. Please " +"try again or contact the administrator for assistance." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:112 +msgid "You have been registered at " +msgstr "" + +#: ../lib/plugin/UserRegistration.php:114 +msgid "Your username is: " +msgstr "" + +#: ../lib/plugin/UserRegistration.php:115 +msgid "Your password is: " +msgstr "" + +#: ../lib/plugin/UserRegistration.php:116 +#, fuzzy +msgid "Your home page is: " +msgstr "Kunde inte spara sidan \"%s\"" + +#: ../lib/plugin/UserRegistration.php:118 +msgid "Welcome to our Wiki." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:126 +msgid " has been created." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:130 +msgid "The user has been sent their login information by email." +msgstr "" + +#: ../lib/plugin/UserRegistration.php:132 +msgid "" +"Your password was sent to your email address. Please check your mail and " +"then login." +msgstr "" + #: ../lib/plugin/VisualWiki.php:93 msgid "" "Visualizes the Wiki structure in a graph using the 'dot' commandline tool " @@ -2328,7 +2834,7 @@ msgstr "S msgid "Lists referenced page names which do not exist yet." msgstr "" -#: ../lib/plugin/WantedPages.php:47 +#: ../lib/plugin/WantedPages.php:47 ../lib/plugin/_WikiTranslation.php:79 msgid "PgsrcTranslation" msgstr "" @@ -2352,6 +2858,103 @@ msgstr "De %d mest popul msgid "Count" msgstr "Innehåll" +#: ../lib/plugin/WhoIsOnline.php:38 +msgid "WhoIsOnline" +msgstr "" + +#: ../lib/plugin/WhoIsOnline.php:42 +msgid "Show summary information of the current user sessions." +msgstr "" + +#: ../lib/plugin/WhoIsOnline.php:98 +msgid "Guest" +msgstr "" + +#: ../lib/plugin/WhoIsOnline.php:108 +#, fuzzy +msgid "" +msgstr "Ingen" + +#: ../lib/plugin/WhoIsOnline.php:169 +#, c-format +msgid "%d minutes" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:42 +msgid "WikiAdminChmod" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:46 ../lib/plugin/WikiAdminSetAcl.php:45 +msgid "Set individual page permissions." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:80 +#, fuzzy, c-format +msgid "chmod page '%s' to '%s'." +msgstr "De %d mest populära sidorna för den här wikin:" + +#: ../lib/plugin/WikiAdminChmod.php:83 +#, c-format +msgid "Couldn't chmod page '%s' to '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:87 +msgid "Invalid chmod string" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:92 ../lib/plugin/WikiAdminSetAcl.php:86 +#, c-format +msgid "%s pages have been changed." +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:95 +#: ../lib/plugin/WikiAdminSearchReplace.php:108 +#: ../lib/plugin/WikiAdminSetAcl.php:89 +#, fuzzy +msgid "No pages changed." +msgstr "Visa källkoden och referenser för sidan" + +#: ../lib/plugin/WikiAdminChmod.php:150 ../lib/plugin/WikiAdminRemove.php:175 +#: ../lib/plugin/WikiAdminRename.php:144 +#: ../lib/plugin/WikiAdminSearchReplace.php:171 +#: ../lib/plugin/WikiAdminSetAcl.php:144 +msgid "Yes" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:154 ../lib/plugin/WikiAdminSetAcl.php:148 +#, fuzzy +msgid "Are you sure you want to permanently change the selected files?" +msgstr "Ta bort sida nu" + +#: ../lib/plugin/WikiAdminChmod.php:157 +msgid "Chmod" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:159 ../lib/plugin/WikiAdminSetAcl.php:153 +#, fuzzy +msgid "Select the pages to change:" +msgstr "Ta bort sida nu" + +#: ../lib/plugin/WikiAdminChmod.php:180 ../lib/plugin/WikiAdminSetAcl.php:173 +msgid "This plugin is currently under development and does not work!" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:181 +msgid "Chmod to permission:" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:184 +msgid "(ugo : rwx)" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:191 ../lib/plugin/WikiAdminSetAcl.php:206 +msgid "Propagate new permissions to all subpages?" +msgstr "" + +#: ../lib/plugin/WikiAdminChmod.php:193 ../lib/plugin/WikiAdminSetAcl.php:208 +msgid "(disable individual page permissions, enable inheritance)?" +msgstr "" + #: ../lib/plugin/WikiAdminRemove.php:39 msgid "WikiAdminRemove" msgstr "" @@ -2361,205 +2964,711 @@ msgstr "" msgid "Permanently remove all selected pages." msgstr "Ta bort sida nu" -#: ../lib/plugin/WikiAdminRemove.php:116 ../lib/removepage.php:46 +#: ../lib/plugin/WikiAdminRemove.php:117 ../lib/removepage.php:46 #, c-format msgid "Removed page '%s' successfully." msgstr "Tog bort sidan '%s'." -#: ../lib/plugin/WikiAdminRemove.php:169 -msgid "Yes" +#: ../lib/plugin/WikiAdminRemove.php:177 +msgid "Are you sure you want to permanently remove the selected files?" +msgstr "" + +#: ../lib/plugin/WikiAdminRemove.php:180 +#, fuzzy +msgid "Remove selected pages" +msgstr "Ta bort sida nu" + +#: ../lib/plugin/WikiAdminRemove.php:181 +#, fuzzy +msgid "Permanently remove the selected files:" +msgstr "Ta bort sida nu" + +#: ../lib/plugin/WikiAdminRemove.php:184 +#, c-format +msgid "Also pages which have been deleted at least %s days." +msgstr "" + +#: ../lib/plugin/WikiAdminRemove.php:188 +#, fuzzy +msgid "List all pages." +msgstr "Kunde inte spara sidan \"%s\"" + +#: ../lib/plugin/WikiAdminRemove.php:194 +#, c-format +msgid "(Pages which have been deleted at least %s days are already checked.)" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:171 -msgid "Are you sure you want to permanently remove the selected files?" +#: ../lib/plugin/WikiAdminRename.php:39 +msgid "WikiAdminRename" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:43 +#, fuzzy +msgid "Rename selected pages." +msgstr "Ta bort sida nu" + +#: ../lib/plugin/WikiAdminRename.php:76 +#, fuzzy, c-format +msgid "Renamed page '%s' to '%s'." +msgstr "Tog bort sidan '%s'." + +#: ../lib/plugin/WikiAdminRename.php:79 +#, c-format +msgid "Couldn't rename page '%s' to '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:85 +#, c-format +msgid "%s pages have been permanently renamed." +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:88 +#, fuzzy +msgid "No pages renamed." +msgstr "Visa källkoden och referenser för sidan" + +#: ../lib/plugin/WikiAdminRename.php:147 +#, fuzzy +msgid "Are you sure you want to permanently rename the selected files?" +msgstr "Ta bort sida nu" + +#: ../lib/plugin/WikiAdminRename.php:151 +#, fuzzy +msgid "Rename selected pages" +msgstr "Ta bort sida nu" + +#: ../lib/plugin/WikiAdminRename.php:152 +#, fuzzy +msgid "Select the pages to rename:" +msgstr "Ta bort sida nu" + +#: ../lib/plugin/WikiAdminRename.php:173 +#, fuzzy +msgid "Rename" +msgstr "Ta bort sida" + +#: ../lib/plugin/WikiAdminRename.php:173 +#, fuzzy +msgid "from" +msgstr "från %s" + +#: ../lib/plugin/WikiAdminRename.php:176 +msgid "to" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:179 +msgid "(no regex, case-sensitive)" +msgstr "" + +#: ../lib/plugin/WikiAdminRename.php:182 +msgid "Change pagename in all linked pages also?" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:39 +msgid "WikiAdminSearchReplace" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:43 +msgid "Search and replace text in selected wiki pages." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:81 +#, c-format +msgid "WikiAdminSearchReplace %s by %s" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:89 +msgid "Error: Empty search string." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:96 +#, c-format +msgid "Replaced '%s' with '%s' in page '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:99 +#, c-format +msgid "Search string '%s' not found in page '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:105 +#, c-format +msgid "%s pages changed." +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:169 +msgid "Warning: The search string cannot be empty!" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:174 +msgid "" +"Are you sure you want to permanently search & replace text in the selected " +"files?" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:178 +msgid "Search & Replace" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:180 +#, fuzzy +msgid "Select the pages to search:" +msgstr "Ta bort sida nu" + +#: ../lib/plugin/WikiAdminSearchReplace.php:200 +msgid "Replace: " +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:203 +msgid "by" +msgstr "" + +#: ../lib/plugin/WikiAdminSearchReplace.php:206 +msgid "(no regex) Case-exact: " +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:41 +msgid "WikiAdminSelect" +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:45 +msgid "" +"Allows selection of multiple pages which get passed to other WikiAdmin " +"plugins." +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:113 ../lib/plugin/WikiAdminSelect.php:124 +msgid "Go" +msgstr "\"Gå till sidan\"" + +#: ../lib/plugin/WikiAdminSelect.php:118 +#, fuzzy +msgid "Select: " +msgstr "Ta bort sida nu" + +#: ../lib/plugin/WikiAdminSelect.php:157 +#, c-format +msgid "Selected page '%s' passed to '%s'." +msgstr "" + +#: ../lib/plugin/WikiAdminSelect.php:194 +#, fuzzy +msgid "Select pages" +msgstr "Ta bort sida nu" + +#: ../lib/plugin/WikiAdminSetAcl.php:41 +msgid "WikiAdminSetAcl" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:74 +#, fuzzy, c-format +msgid "set acl for page '%s'." +msgstr "Kunde inte spara sidan \"%s\"" + +#: ../lib/plugin/WikiAdminSetAcl.php:77 +#, fuzzy, c-format +msgid "Couldn't setacl page '%s'." +msgstr "Ger upp, kan ej skapa anslutning till databasen: %s" + +#: ../lib/plugin/WikiAdminSetAcl.php:81 +msgid "Invalid acl" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:151 +msgid "SetAcl" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:181 +#, fuzzy, c-format +msgid "Pages: %s" +msgstr "Visa källkoden för %s" + +#: ../lib/plugin/WikiAdminSetAcl.php:184 +#, c-format +msgid "page permission inherited from %s" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:186 +msgid "invidual page permission" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:188 +msgid "default page permission" +msgstr "" + +#: ../lib/plugin/WikiAdminSetAcl.php:189 +#, fuzzy +msgid "Type: " +msgstr "Namn på Sidan" + +#: ../lib/plugin/WikiAdminUtils.php:29 +msgid "WikiAdminUtils" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:33 +msgid "Miscellaneous utility functions of use to the administrator." +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:66 +msgid "You must be an administrator to use this plugin." +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:95 +msgid "WikiAdminUtils says:" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:97 ../lib/stdlib.php:1335 +msgid "Okay" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:103 +msgid "Purge Markup Cache" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:104 +msgid "Delete Pages With Invalid Names" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:114 +#, fuzzy +msgid "Markup cache purged!" +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:130 +msgid "No pages with bad names were found." +msgstr "" + +#: ../lib/plugin/WikiAdminUtils.php:138 +#, c-format +msgid "Deleted %s pages with invalid names:" +msgstr "" + +#: ../lib/plugin/WikiBlog.php:77 +msgid "WikiBlog" +msgstr "" + +#: ../lib/plugin/WikiBlog.php:81 +#, fuzzy, c-format +msgid "Show and add blogs for %s" +msgstr "Visa källkoden och referenser för sidan" + +#: ../lib/plugin/WikiBlog.php:156 +#, fuzzy, c-format +msgid "No page specified for %s" +msgstr "De %d mest populära sidorna för den här wikin:" + +#: ../lib/plugin/WikiBlog.php:186 ../lib/plugin/WikiForum.php:136 +msgid "New comment." +msgstr "" + +#: ../lib/plugin/WikiBlog.php:265 ../lib/plugin/WikiForum.php:208 +#, c-format +msgid "Comments on %s:" +msgstr "" + +#: ../lib/plugin/WikiForm.php:32 +msgid "WikiForm" +msgstr "" + +#: ../lib/plugin/WikiForm.php:67 +#, fuzzy +msgid "Load File" +msgstr "Låst" + +#: ../lib/plugin/WikiForm.php:73 +msgid "Login" +msgstr "" + +#: ../lib/plugin/WikiForm.php:81 +msgid "Dump Pages" +msgstr "" + +#: ../lib/plugin/WikiForm.php:89 +msgid "Dump Pages as XHTML" +msgstr "" + +#: ../lib/plugin/WikiForm.php:104 +#, c-format +msgid "WikiForm: %s: unknown action" +msgstr "" + +#: ../lib/plugin/WikiForum.php:46 +msgid "WikiForum" +msgstr "" + +#: ../lib/plugin/WikiForum.php:50 +msgid "Handles threaded topics with comments/news and provide a input form" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:59 +msgid "WikiPoll" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:63 +msgid "Enable configurable polls" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:185 +msgid "Not enough questions answered!" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:194 ../lib/plugin/WikiPoll.php:255 +#, fuzzy, c-format +msgid "Missing %s for %s" +msgstr "version %s för %s" + +#: ../lib/plugin/WikiPoll.php:222 +msgid "Ok" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:225 +#, fuzzy +msgid "Reset" +msgstr "Insättning från %s" + +#: ../lib/plugin/WikiPoll.php:271 ../lib/plugin/WikiPoll.php:285 +#, c-format +msgid " %d%% (%d/%d)" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:301 ../lib/plugin/WikiPoll.php:303 +msgid "The result of this poll so far:" +msgstr "" + +#: ../lib/plugin/WikiPoll.php:301 +#, fuzzy +msgid "Thanks for participating!" +msgstr "Tack för att du redigerade %s." + +#: ../lib/plugin/_AuthInfo.php:35 +#, fuzzy +msgid "_AuthInfo" +msgstr "Författare:" + +#: ../lib/plugin/_AuthInfo.php:39 +msgid "Display general and user specific auth information." +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:65 +msgid "General Auth Settings" +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:100 +#, c-format +msgid "Personal Auth Settings for '%s'" +msgstr "" + +#: ../lib/plugin/_AuthInfo.php:102 +msgid "No userid" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:30 ../lib/plugin/_WikiTranslation.php:57 +#: ../themes/Portland/templates/actionbar.tmpl:21 +#: ../themes/default/templates/actionbar.tmpl:32 +#: ../themes/smaller/templates/info.tmpl:175 +msgid "DebugInfo" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:34 +#, c-format +msgid "Get debugging information for %s." +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:54 +#, c-format +msgid "Querying backend directly for '%s'" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:64 +#, c-format +msgid "No pagedata for %s" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:95 +msgid "" +msgstr "" + +#: ../lib/plugin/_BackendInfo.php:95 +msgid "" +msgstr "" + +#: ../lib/plugin/_PreferencesInfo.php:30 +#: ../themes/default/templates/userprefs.tmpl:12 +#, fuzzy +msgid "PreferencesInfo" +msgstr "Inställningar" + +#: ../lib/plugin/_PreferencesInfo.php:34 +#, c-format +msgid "Get preferences information for current user %s." +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:47 +#, fuzzy +msgid "AddCommentPlugin" +msgstr "Innehåll" + +#: ../lib/plugin/_WikiTranslation.php:48 +#, fuzzy +msgid "AddingPages" +msgstr "Kunde inte spara sidan \"%s\"" + +#: ../lib/plugin/_WikiTranslation.php:49 +msgid "AuthorHistoryPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:51 +#, fuzzy +msgid "CalendarListPlugin" +msgstr "Kalender" + +#: ../lib/plugin/_WikiTranslation.php:52 +#, fuzzy +msgid "CalendarPlugin" +msgstr "Kalender" + +#: ../lib/plugin/_WikiTranslation.php:53 +#, fuzzy +msgid "CategoryCategory" +msgstr "Nuvarande sida:" + +#: ../lib/plugin/_WikiTranslation.php:54 +#, fuzzy +msgid "CategoryHomePages" +msgstr "Nuvarande sida:" + +#: ../lib/plugin/_WikiTranslation.php:55 +#, fuzzy +msgid "CommentPlugin" +msgstr "Innehåll" + +#: ../lib/plugin/_WikiTranslation.php:56 +#, fuzzy +msgid "CreateTocPlugin" +msgstr "Sparade: %s" + +#: ../lib/plugin/_WikiTranslation.php:58 +msgid "EditMetaDataPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:59 +#, fuzzy +msgid "ExternalSearchPlugin" +msgstr "Titelsökningen" + +#: ../lib/plugin/_WikiTranslation.php:60 +#: ../themes/Portland/templates/navbar.tmpl:8 +#: ../themes/default/templates/head.tmpl:35 +#: ../themes/default/templates/navbar.tmpl:11 +#: ../themes/smaller/templates/navbar.tmpl:11 +msgid "FindPage" +msgstr "SökEfterSida" + +#: ../lib/plugin/_WikiTranslation.php:61 +#, fuzzy +msgid "FrameIncludePlugin" +msgstr "Insättning" + +#: ../lib/plugin/_WikiTranslation.php:62 +#, fuzzy +msgid "FullRecentChanges" +msgstr "SenasteÄndringar" + +#: ../lib/plugin/_WikiTranslation.php:63 +msgid "HelloWorldPlugin" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:174 +#: ../lib/plugin/_WikiTranslation.php:64 #, fuzzy -msgid "Remove selected pages" -msgstr "Ta bort sida nu" +msgid "HomePageAlias" +msgstr "Framsida" -#: ../lib/plugin/WikiAdminRemove.php:175 +#: ../lib/plugin/_WikiTranslation.php:65 #, fuzzy -msgid "Permanently remove the selected files:" -msgstr "Ta bort sida nu" +msgid "IncludePagePlugin" +msgstr "Insättning" -#: ../lib/plugin/WikiAdminRemove.php:178 -#, c-format -msgid "Also pages which have been deleted at least %s days." +#: ../lib/plugin/_WikiTranslation.php:66 +#, fuzzy +msgid "InterWiki" +msgstr "Titelsökningen" + +#: ../lib/plugin/_WikiTranslation.php:67 +msgid "LinkIcons" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:182 -#, fuzzy -msgid "List all pages." -msgstr "Kunde inte spara sidan \"%s\"" +#: ../lib/plugin/_WikiTranslation.php:68 +msgid "MagicPhpWikiURLs" +msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:188 -#, c-format -msgid "(Pages which have been deleted at least %s days are already checked.)" +#: ../lib/plugin/_WikiTranslation.php:69 +msgid "MoreAboutMechanics" msgstr "" -#: ../lib/plugin/WikiAdminRemove.php:195 ../lib/plugin/WikiAdminSelect.php:195 -#: ../lib/plugin/WikiAdminSelect.php:216 ../lib/removepage.php:22 -#: ../themes/default/templates/login.tmpl:72 -#: ../themes/default/templates/userprefs.tmpl:214 -msgid "Cancel" -msgstr "Avbyrt" +#: ../lib/plugin/_WikiTranslation.php:70 +msgid "NewMarkupTestPage" +msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:41 -msgid "WikiAdminSelect" +#: ../lib/plugin/_WikiTranslation.php:71 +msgid "OldMarkupTestPage" msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:45 -msgid "" -"Allows selection of multiple pages which get passed to other WikiAdmin " -"plugins." +#: ../lib/plugin/_WikiTranslation.php:72 +msgid "OldStyleTablePlugin" msgstr "" -#: ../lib/plugin/WikiAdminSelect.php:88 ../lib/plugin/WikiAdminSelect.php:112 -#: ../lib/plugin/WikiAdminSelect.php:123 -msgid "Go" -msgstr "\"Gå till sidan\"" +#: ../lib/plugin/_WikiTranslation.php:73 +#, fuzzy +msgid "PageDump" +msgstr "Visa källkoden för %s" -#: ../lib/plugin/WikiAdminSelect.php:117 +#: ../lib/plugin/_WikiTranslation.php:74 #, fuzzy -msgid "Select: " -msgstr "Ta bort sida nu" +msgid "PageGroupTest" +msgstr "Visa källkoden för %s" -#: ../lib/plugin/WikiAdminSelect.php:156 -#, c-format -msgid "Selected page '%s' passed to '%s'." -msgstr "" +#: ../lib/plugin/_WikiTranslation.php:75 +#, fuzzy +msgid "PageGroupTestFour" +msgstr "Visa källkoden för %s" -#: ../lib/plugin/WikiAdminSelect.php:193 +#: ../lib/plugin/_WikiTranslation.php:76 #, fuzzy -msgid "Select pages" -msgstr "Ta bort sida nu" +msgid "PageGroupTestOne" +msgstr "Visa källkoden för %s" -#: ../lib/plugin/WikiAdminUtils.php:29 -msgid "WikiAdminUtils" +#: ../lib/plugin/_WikiTranslation.php:77 +#, fuzzy +msgid "PageGroupTestThree" +msgstr "Visa källkoden för %s" + +#: ../lib/plugin/_WikiTranslation.php:78 +#, fuzzy +msgid "PageGroupTestTwo" +msgstr "Visa källkoden för %s" + +#: ../lib/plugin/_WikiTranslation.php:80 +msgid "PhotoAlbumPlugin" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:33 -msgid "Miscellaneous utility functions of use to the administrator." +#: ../lib/plugin/_WikiTranslation.php:81 +msgid "PhpHighlightPlugin" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:65 -msgid "You must be an administrator to use this plugin." +#: ../lib/plugin/_WikiTranslation.php:82 +msgid "PhpWeatherPlugin" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:93 -msgid "WikiAdminUtils says:" +#: ../lib/plugin/_WikiTranslation.php:83 +msgid "PhpWiki" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:95 ../lib/stdlib.php:1320 -msgid "Okay" +#: ../lib/plugin/_WikiTranslation.php:84 +msgid "PhpWikiAdministration/Chmod" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:101 -msgid "Purge Markup Cache" +#: ../lib/plugin/_WikiTranslation.php:85 +msgid "PhpWikiAdministration/Remove" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:102 -msgid "Delete Pages With Invalid Names" +#: ../lib/plugin/_WikiTranslation.php:86 +msgid "PhpWikiAdministration/Rename" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:112 -#, fuzzy -msgid "Markup cache purged!" -msgstr "" +#: ../lib/plugin/_WikiTranslation.php:87 +msgid "PhpWikiAdministration/Replace" +msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:128 -msgid "No pages with bad names were found." +#: ../lib/plugin/_WikiTranslation.php:88 +msgid "PhpWikiDocumentation" msgstr "" -#: ../lib/plugin/WikiAdminUtils.php:136 -#, c-format -msgid "Deleted %s pages with invalid names:" +#: ../lib/plugin/_WikiTranslation.php:89 +msgid "PhpWikiPoll" msgstr "" -#: ../lib/plugin/WikiBlog.php:74 -msgid "WikiBlog" +#: ../lib/plugin/_WikiTranslation.php:90 +msgid "RawHtmlPlugin" msgstr "" -#: ../lib/plugin/WikiBlog.php:78 -#, fuzzy, c-format -msgid "Show and add blogs for %s" -msgstr "Visa källkoden och referenser för sidan" +#: ../lib/plugin/_WikiTranslation.php:91 +msgid "RecentVisitors" +msgstr "" -#: ../lib/plugin/WikiBlog.php:183 -msgid "New comment." +#: ../lib/plugin/_WikiTranslation.php:92 +#, fuzzy +msgid "RedirectToPlugin" +msgstr "Insättning från %s" + +#: ../lib/plugin/_WikiTranslation.php:93 +msgid "ReleaseNotes" msgstr "" -#: ../lib/plugin/WikiBlog.php:257 -#, c-format -msgid "Comments on %s:" +#: ../lib/plugin/_WikiTranslation.php:94 +msgid "RichTablePlugin" msgstr "" -#: ../lib/plugin/WikiForm.php:32 -msgid "WikiForm" +#: ../lib/plugin/_WikiTranslation.php:95 +msgid "SteveWainstead" msgstr "" -#: ../lib/plugin/WikiForm.php:67 +#: ../lib/plugin/_WikiTranslation.php:96 +msgid "SystemInfoPlugin" +msgstr "" + +#: ../lib/plugin/_WikiTranslation.php:97 #, fuzzy -msgid "Load File" -msgstr "Låst" +msgid "TranscludePlugin" +msgstr "Insättning" -#: ../lib/plugin/WikiForm.php:73 -msgid "Login" +#: ../lib/plugin/_WikiTranslation.php:99 +msgid "UnfoldSubpagesPlugin" msgstr "" -#: ../lib/plugin/WikiForm.php:81 -msgid "Dump Pages" +#: ../lib/plugin/_WikiTranslation.php:100 +msgid "UpLoad" msgstr "" -#: ../lib/plugin/WikiForm.php:89 -msgid "Dump Pages as XHTML" +#: ../lib/plugin/_WikiTranslation.php:101 +msgid "WabiSabi" msgstr "" -#: ../lib/plugin/WikiForm.php:104 -#, c-format -msgid "WikiForm: %s: unknown action" +#: ../lib/plugin/_WikiTranslation.php:102 +msgid "WikiBlogPlugin" msgstr "" -#: ../lib/plugin/_BackendInfo.php:30 -#: ../themes/Portland/templates/actionbar.tmpl:21 -#: ../themes/default/templates/actionbar.tmpl:32 -msgid "DebugInfo" +#: ../lib/plugin/_WikiTranslation.php:103 +msgid "WikiPlugin" msgstr "" -#: ../lib/plugin/_BackendInfo.php:34 -#, c-format -msgid "Get debugging information for %s." +#: ../lib/plugin/_WikiTranslation.php:104 +#: ../themes/default/templates/head.tmpl:70 +msgid "WikiWikiWeb" msgstr "" -#: ../lib/plugin/_BackendInfo.php:54 -#, c-format -msgid "Querying backend directly for '%s'" +#: ../lib/plugin/_WikiTranslation.php:113 +msgid "_WikiTranslation" msgstr "" -#: ../lib/plugin/_BackendInfo.php:64 -#, c-format -msgid "No pagedata for %s" +#: ../lib/plugin/_WikiTranslation.php:117 +msgid "Show translations of various words or pages" msgstr "" -#: ../lib/plugin/_BackendInfo.php:95 -msgid "" +#: ../lib/plugin/_WikiTranslation.php:266 +#, c-format +msgid "" +"TODO: Google can only translate from english and french. Find a translation " +"service for %s to language %s" msgstr "" -#: ../lib/plugin/_BackendInfo.php:95 -msgid "" +#: ../lib/plugin/_WikiTranslation.php:270 +#, c-format +msgid "%s is empty" msgstr "" -#: ../lib/plugin/_PreferencesInfo.php:30 -#: ../themes/default/templates/userprefs.tmpl:12 -#, fuzzy -msgid "PreferencesInfo" -msgstr "Inställningar" - -#: ../lib/plugin/_PreferencesInfo.php:34 +#: ../lib/plugin/_WikiTranslation.php:360 #, c-format -msgid "Get preferences information for current user %s." +msgid "Define the translation for %s in %s" msgstr "" #: ../lib/plugin/text2png.php:46 @@ -2612,101 +3721,109 @@ msgstr "" msgid "Remove page" msgstr "Ta bort sida" -#: ../lib/stdlib.php:236 ../lib/stdlib.php:255 +#: ../lib/stdlib.php:234 ../lib/stdlib.php:253 msgid "BAD URL -- remove all of <, >, \"" msgstr "" -#: ../lib/stdlib.php:316 +#: ../lib/stdlib.php:314 msgid "BAD phpwiki: URL" msgstr "" -#: ../lib/stdlib.php:354 +#: ../lib/stdlib.php:352 msgid "Lock page to enable link" msgstr "" -#: ../lib/stdlib.php:453 +#: ../lib/stdlib.php:451 #, c-format msgid "'%s': Bad page name: %s" msgstr "" -#: ../lib/stdlib.php:490 +#: ../lib/stdlib.php:488 msgid "White space converted to single space" msgstr "" -#: ../lib/stdlib.php:495 +#: ../lib/stdlib.php:493 msgid "Control characters not allowed" msgstr "" -#: ../lib/stdlib.php:504 +#: ../lib/stdlib.php:502 #, c-format msgid "Leading %s not allowed" msgstr "" -#: ../lib/stdlib.php:507 +#: ../lib/stdlib.php:505 msgid "';' and ':' in pagenames are deprecated" msgstr "" -#: ../lib/stdlib.php:511 +#: ../lib/stdlib.php:509 msgid "too long" msgstr "" -#: ../lib/stdlib.php:516 +#: ../lib/stdlib.php:514 msgid "illegal pagename" msgstr "" -#: ../lib/stdlib.php:758 +#: ../lib/stdlib.php:756 msgid "Revision Not Found" msgstr "" -#: ../lib/stdlib.php:759 +#: ../lib/stdlib.php:757 #, fuzzy, c-format msgid "I'm sorry. Version %d of %s is not in the database." msgstr "Ledsen. Version %d för %s finns inte i databasen" -#: ../lib/stdlib.php:762 +#: ../lib/stdlib.php:760 #, fuzzy msgid "Bad Version" msgstr "version %s" -#: ../lib/stdlib.php:898 +#: ../lib/stdlib.php:896 msgid "-???" msgstr "" -#: ../lib/stdlib.php:901 +#: ../lib/stdlib.php:899 #, fuzzy, c-format msgid "%s b" msgstr "%s dar" -#: ../lib/stdlib.php:903 +#: ../lib/stdlib.php:901 ../themes/smaller/templates/info.tmpl:29 #, fuzzy, c-format msgid "%s bytes" msgstr "%s dar" -#: ../lib/stdlib.php:908 +#: ../lib/stdlib.php:906 #, c-format msgid "%s k" msgstr "" -#: ../lib/stdlib.php:910 +#: ../lib/stdlib.php:908 ../themes/smaller/templates/info.tmpl:32 #, fuzzy, c-format msgid "%s Kb (%s bytes)" msgstr "%s dar" -#: ../lib/stdlib.php:1006 +#: ../lib/stdlib.php:1004 #, c-format msgid "%s: argument index out of range" msgstr "" -#: ../lib/stdlib.php:1046 ../themes/Hawaiian/lib/random.php:20 +#: ../lib/stdlib.php:1073 ../themes/Hawaiian/lib/random.php:20 #, c-format msgid "%s is empty." msgstr "" -#: ../lib/stdlib.php:1053 +#: ../lib/stdlib.php:1080 #, c-format msgid "Unable to open directory '%s' for reading" msgstr "" +#: ../lib/upgrade.php:134 +msgid "Upgrade disabled: user != isAdmin" +msgstr "" + +#: ../lib/upgrade.php:138 +msgid "Upgrading this PhpWiki" +msgstr "" + #: ../lib/ziplib.php:209 msgid "Can't inflate data: zlib support not enabled in this PHP" msgstr "" @@ -2733,16 +3850,18 @@ msgstr "Inst #: ../themes/Hawaiian/themeinfo.php:29 ../themes/MacOSX/themeinfo.php:104 #: ../themes/Portland/themeinfo.php:59 ../themes/Sidebar/themeinfo.php:32 #: ../themes/SpaceWiki/themeinfo.php:43 ../themes/default/themeinfo.php:24 +#: ../themes/smaller/themeinfo.php:26 msgid "Printer" msgstr "Skrivare" #: ../themes/Hawaiian/themeinfo.php:30 ../themes/Portland/themeinfo.php:60 #: ../themes/Sidebar/themeinfo.php:33 ../themes/SpaceWiki/themeinfo.php:44 -#: ../themes/default/themeinfo.php:26 +#: ../themes/default/themeinfo.php:26 ../themes/smaller/themeinfo.php:28 msgid "Modern" msgstr "Ny|modig" #: ../themes/MacOSX/themeinfo.php:105 ../themes/default/themeinfo.php:25 +#: ../themes/smaller/themeinfo.php:27 msgid "Top & bottom toolbars" msgstr "" @@ -2752,12 +3871,15 @@ msgstr "RedigeraText" #: ../themes/Portland/templates/actionbar.tmpl:8 #: ../themes/default/templates/actionbar.tmpl:5 +#: ../themes/smaller/templates/actionbar.tmpl:6 msgid "Edit Old Revision" msgstr "" #: ../themes/Portland/templates/actionbar.tmpl:10 #: ../themes/default/templates/actionbar.tmpl:7 #: ../themes/default/templates/head.tmpl:45 +#: ../themes/smaller/templates/actionbar.tmpl:8 +#: ../themes/smaller/templates/info.tmpl:167 msgid "View Source" msgstr "Visa Källkoden" @@ -2796,17 +3918,17 @@ msgid "Page Execution took %s seconds" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:46 -#: ../themes/default/templates/editpage.tmpl:41 +#: ../themes/default/templates/editpage.tmpl:40 msgid "Warning: You are editing an old revision." msgstr "" #: ../themes/Portland/templates/editpage.tmpl:47 -#: ../themes/default/templates/editpage.tmpl:42 +#: ../themes/default/templates/editpage.tmpl:41 msgid "Saving this page will overwrite the current version." msgstr "" #: ../themes/Portland/templates/editpage.tmpl:62 -#: ../themes/default/templates/editpage.tmpl:89 +#: ../themes/default/templates/editpage.tmpl:95 #, c-format msgid "Author will be logged as %s." msgstr "" @@ -2824,69 +3946,63 @@ msgid "Edit Area Size" msgstr "Redigera" #: ../themes/Portland/templates/editpage.tmpl:69 -#: ../themes/default/templates/editpage.tmpl:63 +#: ../themes/default/templates/editpage.tmpl:69 msgid "H" msgstr "H" #: ../themes/Portland/templates/editpage.tmpl:71 -#: ../themes/default/templates/editpage.tmpl:64 +#: ../themes/default/templates/editpage.tmpl:70 msgid "W" msgstr "B" #: ../themes/Portland/templates/editpage.tmpl:73 -#: ../themes/default/templates/editpage.tmpl:65 +#: ../themes/default/templates/editpage.tmpl:71 msgid "Adjust" msgstr "Justera" #: ../themes/Portland/templates/editpage.tmpl:75 -#: ../themes/default/templates/editpage.tmpl:78 +#: ../themes/default/templates/editpage.tmpl:84 msgid "Use old markup" msgstr "" #: ../themes/Portland/templates/editpage.tmpl:80 -#: ../themes/default/templates/editpage.tmpl:25 +#: ../themes/default/templates/editpage.tmpl:24 msgid "Preview only! Changes not saved." msgstr "" #: ../themes/Portland/templates/editpage.tmpl:103 #: ../themes/Portland/templates/editpage.tmpl:108 -#: ../themes/default/templates/editpage.tmpl:120 -#: ../themes/default/templates/editpage.tmpl:125 +#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:131 #, c-format msgid "See %s tips for editing." msgstr "%s: Redigeringstips." #: ../themes/Portland/templates/editpage.tmpl:103 #: ../themes/Portland/templates/editpage.tmpl:108 -#: ../themes/default/templates/editpage.tmpl:120 -#: ../themes/default/templates/editpage.tmpl:125 +#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:131 msgid "GoodStyle" msgstr "BraStil" #: ../themes/Portland/templates/editpage.tmpl:104 -#: ../themes/default/templates/editpage.tmpl:121 +#: ../themes/default/templates/editpage.tmpl:127 #, fuzzy msgid "OldTextFormattingRules" msgstr "Textformateringsregler" #: ../themes/Portland/templates/editpage.tmpl:104 #: ../themes/Portland/templates/editpage.tmpl:109 -#: ../themes/default/templates/editpage.tmpl:121 -#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:127 +#: ../themes/default/templates/editpage.tmpl:132 msgid "Synopsis" msgstr "Översikt" #: ../themes/Portland/templates/editpage.tmpl:109 -#: ../themes/default/templates/editpage.tmpl:126 +#: ../themes/default/templates/editpage.tmpl:132 msgid "TextFormattingRules" msgstr "Textformateringsregler" -#: ../themes/Portland/templates/navbar.tmpl:8 -#: ../themes/default/templates/head.tmpl:35 -#: ../themes/default/templates/navbar.tmpl:11 -msgid "FindPage" -msgstr "SökEfterSida" - #: ../themes/Portland/templates/viewsource.tmpl:6 #: ../themes/default/templates/viewsource.tmpl:6 msgid "This page has been locked by the administrator and cannot be edited." @@ -2902,10 +4018,14 @@ msgid "diff" msgstr "diff" #: ../themes/default/templates/actionbar.tmpl:35 +#: ../themes/smaller/templates/actionbar.tmpl:38 +#: ../themes/smaller/templates/info.tmpl:178 msgid "PurgeHtmlCache" msgstr "" #: ../themes/default/templates/actionbar.tmpl:36 +#: ../themes/smaller/templates/actionbar.tmpl:39 +#: ../themes/smaller/templates/info.tmpl:179 msgid "" "Purge HTML cache for this page. Regenerate from WikiMarkup when next " "accessed." @@ -2917,8 +4037,10 @@ msgid "Add a Comment" msgstr "Innehåll" #: ../themes/default/templates/blogform.tmpl:12 -#: ../themes/default/templates/editpage.tmpl:71 +#: ../themes/default/templates/editpage.tmpl:77 +#: ../themes/default/templates/forum-thread.tmpl:39 #: ../themes/default/templates/info.tmpl:72 +#: ../themes/smaller/templates/info.tmpl:78 #, fuzzy msgid "Summary:" msgstr "Kommentar:" @@ -2928,30 +4050,82 @@ msgstr "Kommentar:" msgid "Comment:" msgstr "Innehåll" +#: ../themes/default/templates/comment.tmpl:18 +#: ../themes/default/templates/wikiblog.tmpl:19 +#, fuzzy, c-format +msgid "Comment modified on %s by %s" +msgstr "senast ändrad %s" + +#: ../themes/default/templates/comment.tmpl:28 +#, fuzzy, c-format +msgid "%s by %s" +msgstr "av %s" + #: ../themes/default/templates/dialog.tmpl:18 msgid "Dialog" msgstr "" -#: ../themes/default/templates/editpage.tmpl:29 +#: ../themes/default/templates/editpage.tmpl:28 #, c-format msgid "" "Please continue editing. (You'll find your %s at the bottom of the page.)" msgstr "" -#: ../themes/default/templates/editpage.tmpl:30 +#: ../themes/default/templates/editpage.tmpl:29 #, fuzzy msgid "edit area" msgstr "Redigera" -#: ../themes/default/templates/editpage.tmpl:62 +#: ../themes/default/templates/editpage.tmpl:68 #, fuzzy msgid "Edit Area Size:" msgstr "Redigera" -#: ../themes/default/templates/editpage.tmpl:77 +#: ../themes/default/templates/editpage.tmpl:83 msgid "This is a minor change." msgstr "" +#: ../themes/default/templates/forum-thread.tmpl:19 +#: ../themes/default/templates/forum-topics.tmpl:18 +msgid "New Topic" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:19 +#: ../themes/default/templates/forum-thread.tmpl:37 +msgid "Post new" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:21 +msgid "Message" +msgstr "" + +#: ../themes/default/templates/forum-thread.tmpl:27 +#, fuzzy, c-format +msgid "Posted: %s" +msgstr "Visa källkoden för %s" + +#: ../themes/default/templates/forum-thread.tmpl:28 +#: ../themes/default/templates/forum-thread.tmpl:43 +msgid "Reply" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:21 +msgid "Topics" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:22 +msgid "Replies" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:24 +msgid "Views" +msgstr "" + +#: ../themes/default/templates/forum-topics.tmpl:25 +#, fuzzy +msgid "Last Post" +msgstr "Senaste" + #: ../themes/default/templates/head.tmpl:31 msgid "HowToUseWiki" msgstr "" @@ -2960,10 +4134,6 @@ msgstr "" msgid "SandBox" msgstr "" -#: ../themes/default/templates/head.tmpl:70 -msgid "WikiWikiWeb" -msgstr "" - #: ../themes/default/templates/homepage.tmpl:10 #, c-format msgid "You can personalize various settings in %s." @@ -2984,98 +4154,119 @@ msgid "CategoryHomepage" msgstr "Nuvarande sida:" #: ../themes/default/templates/info.tmpl:31 +#: ../themes/smaller/templates/info.tmpl:37 #, fuzzy msgid "1 word" msgstr "%s dar" #: ../themes/default/templates/info.tmpl:33 +#: ../themes/smaller/templates/info.tmpl:39 #, fuzzy, c-format msgid "%s words" msgstr "%s dar" #: ../themes/default/templates/info.tmpl:37 +#: ../themes/smaller/templates/info.tmpl:43 #, fuzzy, c-format msgid "Version %s" msgstr "version %s" #: ../themes/default/templates/info.tmpl:38 +#: ../themes/smaller/templates/info.tmpl:44 msgid "Original (1.2 or 1.0)" msgstr "" #: ../themes/default/templates/info.tmpl:65 +#: ../themes/smaller/templates/info.tmpl:71 msgid "Last Modified:" msgstr "Ändringsdatum:" #: ../themes/default/templates/info.tmpl:66 +#: ../themes/smaller/templates/info.tmpl:72 msgid "Last Author:" msgstr "Göregående Författare:" #: ../themes/default/templates/info.tmpl:67 +#: ../themes/smaller/templates/info.tmpl:73 msgid "Last Summary:" msgstr "Senaste Kommentar:" #: ../themes/default/templates/info.tmpl:70 +#: ../themes/smaller/templates/info.tmpl:76 #, fuzzy msgid "Saved on:" msgstr "Sparade: %s" #: ../themes/default/templates/info.tmpl:71 +#: ../themes/smaller/templates/info.tmpl:77 #, fuzzy msgid "Author:" msgstr "Författare:" #: ../themes/default/templates/info.tmpl:75 +#: ../themes/smaller/templates/info.tmpl:81 #, fuzzy, c-format msgid "Statistics about %s." msgstr "Sidinformation för %s." #: ../themes/default/templates/info.tmpl:86 +#: ../themes/smaller/templates/info.tmpl:92 #, fuzzy msgid "Supplanted on:" msgstr "Sparade: %s" #: ../themes/default/templates/info.tmpl:103 +#: ../themes/smaller/templates/info.tmpl:109 #, fuzzy msgid "Page Version:" msgstr "version %s" #: ../themes/default/templates/info.tmpl:107 +#: ../themes/smaller/templates/info.tmpl:113 msgid "Markup:" msgstr "" #: ../themes/default/templates/info.tmpl:111 +#: ../themes/smaller/templates/info.tmpl:117 msgid "Size:" msgstr "" #: ../themes/default/templates/info.tmpl:116 +#: ../themes/smaller/templates/info.tmpl:122 msgid "Hits:" msgstr "Träffar:" #: ../themes/default/templates/info.tmpl:133 +#: ../themes/smaller/templates/info.tmpl:139 #, fuzzy msgid "home page" msgstr "Kunde inte spara sidan \"%s\"" #: ../themes/default/templates/info.tmpl:136 +#: ../themes/smaller/templates/info.tmpl:142 #, fuzzy msgid "User page" msgstr "Ta bort sida" #: ../themes/default/templates/info.tmpl:139 +#: ../themes/smaller/templates/info.tmpl:145 #, fuzzy msgid "Action page" msgstr "Kunde inte spara sidan \"%s\"" #: ../themes/default/templates/info.tmpl:142 +#: ../themes/smaller/templates/info.tmpl:148 #, fuzzy msgid "Blog page" msgstr "Kunde inte spara sidan \"%s\"" #: ../themes/default/templates/info.tmpl:148 +#: ../themes/smaller/templates/info.tmpl:154 msgid "Subpage" msgstr "" #: ../themes/default/templates/info.tmpl:153 +#: ../themes/smaller/templates/info.tmpl:159 #, fuzzy msgid "Page Type:" msgstr "Namn på Sidan" @@ -3088,32 +4279,26 @@ msgid "" "in RecentChanges to your home page." msgstr "" -#: ../themes/default/templates/login.tmpl:39 -msgid "" -"Note: If you create your personal HomePage with same the pagename as your " -"user id, you will be able to store your UserPreferences also. Otherwise not." -msgstr "" - -#: ../themes/default/templates/login.tmpl:42 +#: ../themes/default/templates/login.tmpl:51 msgid "New users may use an empty password." msgstr "" -#: ../themes/default/templates/login.tmpl:49 +#: ../themes/default/templates/login.tmpl:58 #, fuzzy msgid "UserId:" msgstr "Namn" -#: ../themes/default/templates/login.tmpl:53 +#: ../themes/default/templates/login.tmpl:62 #, fuzzy msgid "Password:" msgstr "Lösenord" -#: ../themes/default/templates/navbar.tmpl:33 +#: ../themes/default/templates/navbar.tmpl:34 #, fuzzy msgid "Today" msgstr "i dag" -#: ../themes/default/templates/navbar.tmpl:36 +#: ../themes/default/templates/navbar.tmpl:37 msgid "Admin" msgstr "" @@ -3126,6 +4311,72 @@ msgstr "Redigera" msgid "You have not made any changes so no new version has been saved." msgstr "" +#: ../themes/default/templates/online.tmpl:8 +#: ../themes/default/templates/online.tmpl:16 +#: ../themes/default/templates/online.tmpl:58 +msgid "Who Is Online" +msgstr "" + +#: ../themes/default/templates/online.tmpl:16 +msgid "Switch to detailed list" +msgstr "" + +#: ../themes/default/templates/online.tmpl:22 +#, c-format +msgid "Our users created a total of %d pages." +msgstr "" + +#: ../themes/default/templates/online.tmpl:23 +#, c-format +msgid "We have a total of %d registered users." +msgstr "" + +#: ../themes/default/templates/online.tmpl:24 +#, c-format +msgid "The newest registered user is %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:28 +#, c-format +msgid "" +"In total there are %d user sessions online :: Unique %d Registered and %d " +"Guests" +msgstr "" + +#: ../themes/default/templates/online.tmpl:30 +#, c-format +msgid "Most users ever online was %d at %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:31 +msgid "Registered Users Online: " +msgstr "" + +#: ../themes/default/templates/online.tmpl:42 +msgid "Admin is also online." +msgstr "" + +#: ../themes/default/templates/online.tmpl:46 +#, c-format +msgid "This data is based on users active over the past %s" +msgstr "" + +#: ../themes/default/templates/online.tmpl:50 +msgid "Sorry, no dynamic DB Session support." +msgstr "" + +#: ../themes/default/templates/online.tmpl:58 +msgid "Switch to summary" +msgstr "" + +#: ../themes/default/templates/online.tmpl:62 +msgid "Registered Users" +msgstr "" + +#: ../themes/default/templates/online.tmpl:77 +msgid "Guests" +msgstr "" + #: ../themes/default/templates/redirect.tmpl:19 #: ../themes/default/templates/redirect.tmpl:40 #, fuzzy @@ -3150,16 +4401,18 @@ msgstr "Din omst msgid "Warning!" msgstr "Varning!" -#: ../themes/default/templates/signin.tmpl:18 +#: ../themes/default/templates/signin.tmpl:19 +#: ../themes/smaller/templates/signin.tmpl:33 #, c-format msgid "You are signed in as %s" msgstr "" -#: ../themes/default/templates/signin.tmpl:39 +#: ../themes/default/templates/signin.tmpl:40 +#: ../themes/smaller/templates/signin.tmpl:53 msgid "Enter your UserId to sign in" msgstr "" -#: ../themes/default/templates/signin.tmpl:54 +#: ../themes/default/templates/signin.tmpl:55 #, fuzzy msgid "Sign in as:" msgstr "Anslut" @@ -3343,21 +4596,76 @@ msgstr "Andv msgid "Update Preferences" msgstr "Inställningar" -#: ../themes/default/templates/wikiblog.tmpl:19 -#, fuzzy, c-format -msgid "Comment modified on %s by %s" -msgstr "senast ändrad %s" +#: ../themes/smaller/templates/actionbar.tmpl:31 +#, fuzzy +msgid "Info" +msgstr "Författare:" +#: ../themes/smaller/templates/info.tmpl:171 #, fuzzy -#~ msgid "Selected" -#~ msgstr "Ta bort sida nu" +msgid "Diff previous Revision" +msgstr "Föregående Månad" +#: ../themes/smaller/templates/info.tmpl:172 #, fuzzy -#~ msgid "Removed page '%s' succesfully." -#~ msgstr "Tog bort sidan '%s'." +msgid "Diff previous Author" +msgstr "Göregående Författare" + +#, fuzzy +#~ msgid "User-ID:" +#~ msgstr "Namn" + +#, fuzzy +#~ msgid "First Name:" +#~ msgstr "Namn på Sidan" + +#, fuzzy +#~ msgid "Last Name:" +#~ msgstr "Namn på Sidan" + +#, fuzzy +#~ msgid "browse pages in this wiki" +#~ msgstr "De %d mest populära sidorna för den här wikin:" + +#, fuzzy +#~ msgid "diff pages in this wiki" +#~ msgstr "De %d mest populära sidorna för den här wikin:" + +#, fuzzy +#~ msgid "dump html pages from this wiki" +#~ msgstr "De %d mest populära sidorna för den här wikin:" + +#, fuzzy +#~ msgid "dump serial pages from this wiki" +#~ msgstr "De %d mest populära sidorna för den här wikin:" + +#, fuzzy +#~ msgid "edit pages in this wiki" +#~ msgstr "De %d mest populära sidorna för den här wikin:" + +#, fuzzy +#~ msgid "create pages in this wiki" +#~ msgstr "De %d mest populära sidorna för den här wikin:" + +#, fuzzy +#~ msgid "lock pages in this wiki" +#~ msgstr "De %d mest populära sidorna för den här wikin:" + +#, fuzzy +#~ msgid "remove pages from this wiki" +#~ msgstr "De %d mest populära sidorna för den här wikin:" + +#, fuzzy +#~ msgid "unlock pages in this wiki" +#~ msgstr "De %d mest populära sidorna för den här wikin:" + +#, fuzzy +#~ msgid "view the source of pages in this wiki" +#~ msgstr "De %d mest populära sidorna för den här wikin:" -#~ msgid "Password" -#~ msgstr "Lösenord" +#, fuzzy +#~ msgid "Selected" +#~ msgstr "Ta bort sida nu" #~ msgid "Return to %s." #~ msgstr "Tillbaka till %s." @@ -3460,15 +4768,9 @@ msgstr "senast #~ msgid "Copying from [%s] to [%s]" #~ msgstr "Kopia från [%s] är [%s]" -#~ msgid "Copied to [%s]" -#~ msgstr "Kopia är [%s]" - #~ msgid "ViewSource" #~ msgstr "VisaKällkoden" -#~ msgid "version %d of %s" -#~ msgstr "version %s för %s" - #~ msgid "Click here to remove the page now." #~ msgstr "Klicka shär för att ta bort sidan nu." diff --git a/locale/sv/LC_MESSAGES/phpwiki.mo b/locale/sv/LC_MESSAGES/phpwiki.mo index 72139d23e9619a12855ae45d2045c7eabaf70763..1081c2ae790cd02f4e9a7c9b9bc11f82593f9d50 100644 GIT binary patch delta 23 ecmZ3ivsh -!! Plugin Arguments: +!! Plugin Arguments __jshide__: | Boolean if the comments and/or textbox should be initially hidden and on click expanded. Default: 0 __order__: | diff --git a/pgsrc/PhpWikiAdministration b/pgsrc/PhpWikiAdministration index 52af3133a..1ef37aca1 100644 --- a/pgsrc/PhpWikiAdministration +++ b/pgsrc/PhpWikiAdministration @@ -1,9 +1,9 @@ Date: Wed, 26 Nov 2003 18:34:06 +0100 Mime-Version: 1.0 (Produced by PhpWiki 1.3.7pre) -X-Rcs-Id: $Id: PhpWikiAdministration,v 1.27 2004-04-01 08:05:52 rurban Exp $ +X-Rcs-Id: $Id: PhpWikiAdministration,v 1.28 2004-04-01 15:57:20 rurban Exp $ Content-Type: application/x-phpwiki; pagename=PhpWikiAdministration; - pgsrc_version="2 $Revision: 1.27 $"; + pgsrc_version="2 $Revision: 1.28 $"; flags=PAGE_LOCKED; markup=2; charset=iso-8859-1 @@ -33,7 +33,7 @@ or call the available ~WikiAdmin actions directly: ---- !!! User Management -PhpWiki:EmailVerification is currently non-strict leaving some possible holes, which can be administrated below. +PhpWiki:EmailVerification is currently non-strict, leaving some possible holes, which can be administrated below. This button will show a list of all users with registered emails and buttons to set the verification status manually. diff --git a/pgsrc/ReleaseNotes b/pgsrc/ReleaseNotes index 84b3b190c..749ea0d97 100644 --- a/pgsrc/ReleaseNotes +++ b/pgsrc/ReleaseNotes @@ -1,9 +1,9 @@ Date: Sun, 27 Jan 2002 17:28:55 -0500 Mime-Version: 1.0 (Produced by PhpWiki 1.3.2-jeffs-hacks) -X-Rcs-Id: $Id: ReleaseNotes,v 1.16 2004-03-14 16:34:22 rurban Exp $ +X-Rcs-Id: $Id: ReleaseNotes,v 1.17 2004-04-01 15:57:20 rurban Exp $ Content-Type: application/x-phpwiki; pagename=ReleaseNotes; - pgsrc_version="2 $Revision: 1.16 $"; + pgsrc_version="2 $Revision: 1.17 $"; flags=PAGE_LOCKED; markup=2; charset=iso-8859-1 @@ -14,20 +14,22 @@ Content-Transfer-Encoding: binary * new WikiUserNew class (after a kick in the ass by Carsten Klapp), (recursive) with new Preferences (finally from DB), and improved DB_Session (+ ADODB support) -* individual PagePermissions (not yet enforced) +* enabled WikiGroup (Joby Walker and Reini Urban) +* individual PagePermissions (enabled, but not yet enforced) * fixed WikiAdminSelect, WikiAdminRemove * new WikiAdminRename, WikiAdminSearchReplace, WikiAdminSetAcl -* several other new plugins: WikiPoll, WhoIsOnline, UpLoad, - RichTable, CreateToc +* several other new plugins: UpLoad, IncludeSiteMap, WikiPoll, WhoIsOnline, + RichTable, CreateToc, AddComment, _WikiTranslation => TranslateText, + CreatePage, * pear DB update * InterWiki image buttons * fixed XHTML dumps (css, images, unlinked pages, \r\r\n issue) -* enabled WikiGroup * PageList: enhanced sortby + limit support, sortable gridbuttons enforced * preliminary SOAP support * minor theme/default overhaul and new theme/smaller -* Japanese language support added, thanks to Tadashi Jokagi +* Japanese language support added by Tadashi Jokagi * fixed UnfoldSubpages sortby +* more OldStyleTable arguments, PhotoAlbum local fs support * preliminary action=upgrade 1.3.4 until 1.3.7, 2002-2003 Jeff, Carsten and Steve Wainstead: diff --git a/schemas/psql.sql b/schemas/psql.sql index 28ae253fd..2e09a51e7 100644 --- a/schemas/psql.sql +++ b/schemas/psql.sql @@ -1,4 +1,4 @@ --- $Id: psql.sql,v 1.4 2003-03-04 01:44:58 dairiki Exp $ +-- $Id: psql.sql,v 1.5 2004-04-01 15:57:20 rurban Exp $ \set QUIET @@ -20,7 +20,7 @@ -- Commonly, connections from php are made under -- the user name of 'nobody', 'apache' or 'www'. -\set httpd_user 'apache' +\set httpd_user 'rurban' --================================================================ -- @@ -140,4 +140,4 @@ GRANT ALL ON :version_tbl TO :httpd_user; GRANT ALL ON :recent_tbl TO :httpd_user; GRANT ALL ON :nonempty_tbl TO :httpd_user; GRANT ALL ON :link_tbl TO :httpd_user; -GRANT ALL ON :session_tbl TO :httpd_user; +GRANT ALL ON :session_tbl TO :httpd_user; diff --git a/themes/Sidebar/sidebar.css b/themes/Sidebar/sidebar.css index bcba9dd8c..28ab2f180 100644 --- a/themes/Sidebar/sidebar.css +++ b/themes/Sidebar/sidebar.css @@ -1,5 +1,5 @@ /** - * $Id: sidebar.css,v 1.20 2004-03-26 03:45:43 rurban Exp $ + * $Id: sidebar.css,v 1.21 2004-04-01 15:57:20 rurban Exp $ * * This incarnation of this stylesheet is a complete rewrite from the * ground up. @@ -18,11 +18,6 @@ /** * General settings */ -body { - margin-top: 6ex; /* area under fixed h1 */ - margin-left: 14em; - padding-bottom: 4ex; /* area under fixed #actionbar (editdate) */ -} div.wikitext { margin-left: 0.5em; @@ -40,12 +35,12 @@ div.wikitext { #6d6a5c; #b3ae97; **/ - div#logo img { - position: fixed; + /* position: fixed; */ left: 1ex; - top: 1.2ex; + top: 1ex; } +/* div#clock { position: fixed; left: 0.7ex; @@ -56,7 +51,7 @@ div#calendar { left: 0.7ex; top: 31ex; } - +*/ h1 { position: fixed; top: 0; @@ -102,7 +97,7 @@ h1 a.backlinks { text-decoration: none; } color: black; background: white; text-align: left; - position: fixed; +/* position: fixed; */ left: 0.5em; /* ie5.1 ignores max-width and sets the box width to the width of the whole page. @@ -130,7 +125,7 @@ h1 a.backlinks { text-decoration: none; } div#navbuttons:before { /* bonus for css2 browsers */ display: block; - content: "PhpWiki Navigation"; /* localise with dynamic css? */ + /* content: "PhpWiki Navigation"; */ /* localise with dynamic css? */ border-bottom: 2px solid black; } #navbuttons { top: 5.5ex; } @@ -143,12 +138,12 @@ div#actionbuttons:before { display: block; content: "Actions"; /* localise with dynamic css? */ } -div#actionbuttons { bottom: 10ex; } +/* div#actionbuttons { bottom: 10ex; } */ /** * Sign In */ -div#signin { position: fixed; bottom: 0; } +/* div#signin { position: fixed; bottom: 0; } */ div#signin { margin-bottom: 1ex; @@ -174,6 +169,7 @@ p.editdate { margin-bottom: 0.5ex; } +/* div#actionbar { color: black; background: ivory; @@ -184,7 +180,7 @@ div#actionbar { bottom: 0; margin: 0; } - +*/ /** * Other diff --git a/themes/Sidebar/templates/body.tmpl b/themes/Sidebar/templates/body.tmpl index 2d864675d..61bec1b3c 100644 --- a/themes/Sidebar/templates/body.tmpl +++ b/themes/Sidebar/templates/body.tmpl @@ -1,23 +1,66 @@ getMoreAttr('body') ?>> - - - - -
- - -

diff --git a/themes/Sidebar/themeinfo.php b/themes/Sidebar/themeinfo.php index b1290f361..0b1609522 100644 --- a/themes/Sidebar/themeinfo.php +++ b/themes/Sidebar/themeinfo.php @@ -1,5 +1,5 @@ getButtonSeparator(); + $this->setButtonSeparator(HTML::Raw('
· ')); + //$this->setButtonSeparator("\n"); + //$Theme->setButtonSeparator($old); + } + if ($name == "actionbar" || $name == "signin") { //$old = $Theme->getButtonSeparator(); //$this->setButtonSeparator(HTML::br()); - $this->setButtonSeparator("\n"); + $this->setButtonSeparator(" "); //$Theme->setButtonSeparator($old); } return $this->_path . $this->_findFile("templates/$name.tmpl"); } + function calendarLink($date = false) { - return $this->calendarBase() . SUBPAGE_SEPARATOR . strftime("%Y-%m-%d", $date ? $date : time()); + return $this->calendarBase() . SUBPAGE_SEPARATOR . + strftime("%Y-%m-%d", $date ? $date : time()); } + function calendarBase() { static $UserCalPageTitle = false; - if (!$UserCalPageTitle) $UserCalPageTitle = $GLOBALS['request']->_user->getId() . SUBPAGE_SEPARATOR . _("Calendar"); + if (!$UserCalPageTitle) + $UserCalPageTitle = $GLOBALS['request']->_user->getId() . + SUBPAGE_SEPARATOR . _("Calendar"); return $UserCalPageTitle; } } @@ -34,15 +45,18 @@ $dbi = $GLOBALS['request']->getDbh(); // display flat calender dhtml under the clock if ($dbi->isWikiPage($Theme->calendarBase())) { $jslang = @$GLOBALS['LANG']; - $Theme->addMoreHeaders($Theme->_CSSlink(0,$Theme->_findFile('jscalendar/calendar-phpwiki.css'),'all')); + $Theme->addMoreHeaders($Theme->_CSSlink(0, + $Theme->_findFile('jscalendar/calendar-phpwiki.css'),'all')); $Theme->addMoreHeaders("\n"); - $Theme->addMoreHeaders(JavaScript('',array('src' => $Theme->_findData('jscalendar/calendar_stripped.js')))); + $Theme->addMoreHeaders(JavaScript('', + array('src' => $Theme->_findData('jscalendar/calendar_stripped.js')))); $Theme->addMoreHeaders("\n"); if (!($langfile = $Theme->_findData("jscalendar/lang/calendar-$jslang.js"))) $langfile = $Theme->_findData("jscalendar/lang/calendar-en.js"); $Theme->addMoreHeaders(JavaScript('',array('src' => $langfile))); $Theme->addMoreHeaders("\n"); - $Theme->addMoreHeaders(JavaScript('',array('src' => $Theme->_findData('jscalendar/calendar-setup_stripped.js')))); + $Theme->addMoreHeaders(JavaScript('', + array('src' => $Theme->_findData('jscalendar/calendar-setup_stripped.js')))); $Theme->addMoreHeaders("\n"); } @@ -50,8 +64,9 @@ if ($dbi->isWikiPage($Theme->calendarBase())) { // style. The companion '*-heavy.css' file isn't defined, it's just // expected to be in the same directory that the base style is in. -$Theme->setDefaultCSS(_("Sidebar"), 'sidebar.css'); -$Theme->addAlternateCSS('PhpWiki', 'phpwiki.css'); +//$Theme->setDefaultCSS(_("Sidebar"), 'sidebar.css'); +//$Theme->addAlternateCSS('PhpWiki', 'phpwiki.css'); +$Theme->setDefaultCSS('PhpWiki', 'phpwiki.css'); $Theme->addAlternateCSS(_("Printer"), 'phpwiki-printer.css', 'print, screen'); $Theme->addAlternateCSS(_("Modern"), 'phpwiki-modern.css'); @@ -86,7 +101,15 @@ $Theme->setLinkIcon('*', 'url'); * WikiWords can automatically be split by inserting spaces between * the words. The default is to leave WordsSmashedTogetherLikeSo. */ -//$Theme->setAutosplitWikiWords(false); +$Theme->setAutosplitWikiWords(true); + +/** + * If true (default) show create '?' buttons on not existing pages, even if the + * user is not signed in. + * If false, anon users get no links and it looks cleaner, but then they + * cannot easily fix missing pages. + */ +$Theme->setAnonEditUnknownLinks(false); /* * You may adjust the formats used for formatting dates and times diff --git a/themes/default/phpwiki.css b/themes/default/phpwiki.css index 22357aedc..31a7c99e6 100644 --- a/themes/default/phpwiki.css +++ b/themes/default/phpwiki.css @@ -1,5 +1,5 @@ /** - * $Id: phpwiki.css,v 1.22 2004-03-24 19:40:34 rurban Exp $ + * $Id: phpwiki.css,v 1.23 2004-04-01 15:57:20 rurban Exp $ * * This incarnation of this stylesheet is a complete rewrite from the * ground up. @@ -19,9 +19,9 @@ /** * General */ -img { border: 0; } +img { border: 0ex; } -form { margin: 0; } +form { margin: 0ex; } table { border-spacing: 1px; @@ -763,6 +763,12 @@ td.spacerow{background:#cad9ea;color:#000000} /* This is the outline round the main forum tables */ .forumline{background:#ffffff;color:#000000;border:1px solid #006699} +.box { background:#ffffff; border:1px solid #006699 } +.box-title { font-weight: bold; font-size: 11pt; background:#cad9ea; } +.box-data { width: 160px; font-size: 9pt; font-weight: normal; } +.box-data .wiki { font-weight: normal; } +table.sidebar { border-spacing: 0px; margin: 0ex;} + /* For emacs users * * Local Variables: diff --git a/themes/wikilens/themeinfo.php b/themes/wikilens/themeinfo.php index 538361ed5..92191f30c 100644 --- a/themes/wikilens/themeinfo.php +++ b/themes/wikilens/themeinfo.php @@ -1,5 +1,5 @@ setLinkIcon('https'); $Theme->setLinkIcon('ftp'); $Theme->setLinkIcon('mailto'); //$Theme->setLinkIcon('interwiki'); -//$Theme->setLinkIcon('wikiuser'); +$Theme->setLinkIcon('wikiuser'); //$Theme->setLinkIcon('*', 'url'); //$Theme->setButtonSeparator("\n | "); -- 2.45.0