From: joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> Date: Fri, 2 Mar 2007 04:00:42 +0000 (+0000) Subject: * Add "template" option to inline plugin to allow for use of customised X-Git-Tag: 1.45~68 X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/10b8557946c7a5e4ef2210ac448365ffc6174f81 * Add "template" option to inline plugin to allow for use of customised templates. --- diff --git a/IkiWiki/Plugin/inline.pm b/IkiWiki/Plugin/inline.pm index ebfcee9ed..2db39f777 100644 --- a/IkiWiki/Plugin/inline.pm +++ b/IkiWiki/Plugin/inline.pm @@ -77,6 +77,12 @@ sub preprocess_inline (@) { #{{{ $desc = $config{wikiname}; } my $actions=yesno($params{actions}); + if (exists $params{template}) { + $params{template}=~s/[^-_a-zA-Z0-9]+//g; + } + else { + $params{template} = $archive ? "archivepage" : "inlinepage"; + } my @list; foreach my $page (keys %pagesources) { @@ -131,10 +137,11 @@ sub preprocess_inline (@) { #{{{ $ret.=$linktemplate->output; } - my $template=template( - ($archive ? "inlinepagetitle.tmpl" : "inlinepage.tmpl"), - blind_cache => 1, - ) unless $raw; + my @params=IkiWiki::template_params($params{template}.".tmpl", blind_cache => 1); + if (! @params) { + return sprintf(gettext("nonexistant template %s @params"), $params{template}); + } + my $template=HTML::Template->new(@params) unless $raw; foreach my $page (@list) { my $file = $pagesources{$page}; diff --git a/debian/changelog b/debian/changelog index 77333b0ec..e00ec0bfb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,8 +3,10 @@ ikiwiki (1.45) UNRELEASED; urgency=low * Allow for underscores to appear in page titles, if encoded appropriately (__95__) in filenames. Previously, all underscores were replaced with spaces. Thanks, Enrico Zini for noticing that bug. + * Add "template" option to inline plugin to allow for use of customised + templates. - -- Joey Hess <joeyh@debian.org> Thu, 1 Mar 2007 19:30:36 -0500 + -- Joey Hess <joeyh@debian.org> Thu, 1 Mar 2007 22:55:35 -0500 ikiwiki (1.44) unstable; urgency=low diff --git a/doc/plugins/inline.mdwn b/doc/plugins/inline.mdwn index a607474df..5cb8383c1 100644 --- a/doc/plugins/inline.mdwn +++ b/doc/plugins/inline.mdwn @@ -34,6 +34,11 @@ directive: full controls. * `quick` - Build archives in quick mode, without reading page contents for metadata. By default, this also turns off generation of any feeds. +* `template` - Specifies the template to fill out to display each inlined + page. By default the `inlinepage` [[template|templates]] is used, while + the `archivepage` template is used for archives. Set this parameter to + use some other, custom template. Note that you should still set + `archive=yes` if your custom template does not include the page content. * `raw` - Rather than the default behavior of creating a [[blog]], if raw is set to "yes", the page will be included raw, without additional markup around it, as if it were a literal part of the source of the diff --git a/doc/templates.mdwn b/doc/templates.mdwn index 05fdc4426..1f98334c9 100644 --- a/doc/templates.mdwn +++ b/doc/templates.mdwn @@ -4,7 +4,8 @@ to learn. The aim is to keep almost all html out of ikiwiki and in the templates. -It ships with some basic templates which can be customised: +It ships with some basic templates which can be customised. These are +located in /usr/share/ikiwiki/templates by default. * `page.tmpl` - Used for displaying all regular wiki pages. * `misc.tmpl` - Generic template used for any page that doesn't @@ -22,8 +23,7 @@ It ships with some basic templates which can be customised: * `atomitem.tmpl` - Used for generating individual items on atom feeds. * `inlinepage.tmpl` - Used for adding a page inline in a blog page. -* `inlinepagetitle.tmpl` - Used for listing a page inline in a blog - archive page. +* `archivepage.tmpl` - Used for listing a page in a blog archive page. * `estseek.conf` - Not a html template, this is actually a template for a config file for the [[HyperEstraier]] search engine. If you like you can read the [[HyperEstraier]] docs and configure it using this. diff --git a/doc/todo/Option_to_disable_date_footer_for_inlines.mdwn b/doc/todo/Option_to_disable_date_footer_for_inlines.mdwn index 9575fdb81..7d3438b2e 100644 --- a/doc/todo/Option_to_disable_date_footer_for_inlines.mdwn +++ b/doc/todo/Option_to_disable_date_footer_for_inlines.mdwn @@ -14,3 +14,6 @@ instance. --[[JoshTriplett]] >> In a related note, I'd like an option to include the creation date on some non-inlined pages too. I suppose >> that's doable with some template hook in a plugin, and a command-line parameter pagespec (suffices for me), >> but I haven't got around to that yet. --[[tuomov]] + +Customised templates can now be specified with the `templates` parameter, +so [[todo/done]] --[[Joey]] diff --git a/po/bg.po b/po/bg.po index fa7cdd735..54ba5491d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ikiwiki-bg\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-02-19 21:47-0500\n" +"POT-Creation-Date: 2007-03-01 22:55-0500\n" "PO-Revision-Date: 2007-01-12 01:19+0200\n" "Last-Translator: Damyan Ivanov <dam@modsodtsys.com>\n" "Language-Team: Bulgarian <dict@fsa-bg.org>\n" @@ -20,37 +20,37 @@ msgstr "" msgid "You need to log in first." msgstr "ÐÑÑво ÑÑÑбва да влезеÑе." -#: ../IkiWiki/CGI.pm:267 +#: ../IkiWiki/CGI.pm:274 msgid "Preferences saved." msgstr "ÐÑедпоÑиÑаниÑÑа Ñа запазени." -#: ../IkiWiki/CGI.pm:332 +#: ../IkiWiki/CGI.pm:340 #, perl-format msgid "%s is not an editable page" msgstr "" -#: ../IkiWiki/CGI.pm:420 ../IkiWiki/Plugin/brokenlinks.pm:24 -#: ../IkiWiki/Plugin/inline.pm:164 ../IkiWiki/Plugin/opendiscussion.pm:17 +#: ../IkiWiki/CGI.pm:428 ../IkiWiki/Plugin/brokenlinks.pm:24 +#: ../IkiWiki/Plugin/inline.pm:171 ../IkiWiki/Plugin/opendiscussion.pm:17 #: ../IkiWiki/Plugin/orphans.pm:28 ../IkiWiki/Render.pm:97 #: ../IkiWiki/Render.pm:165 msgid "discussion" msgstr "диÑкÑÑиÑ" -#: ../IkiWiki/CGI.pm:465 +#: ../IkiWiki/CGI.pm:474 #, perl-format msgid "creating %s" msgstr "ÑÑздаване на %s" -#: ../IkiWiki/CGI.pm:482 ../IkiWiki/CGI.pm:510 ../IkiWiki/CGI.pm:543 +#: ../IkiWiki/CGI.pm:491 ../IkiWiki/CGI.pm:527 ../IkiWiki/CGI.pm:571 #, perl-format msgid "editing %s" msgstr "пÑомÑна на %s" -#: ../IkiWiki/CGI.pm:651 +#: ../IkiWiki/CGI.pm:668 msgid "You are banned." msgstr "ÐоÑÑÑпÑÑ Ð²Ð¸ е забÑанен." -#: ../IkiWiki/CGI.pm:683 +#: ../IkiWiki/CGI.pm:700 msgid "login failed, perhaps you need to turn on cookies?" msgstr "" @@ -123,16 +123,21 @@ msgstr "" "ÐогаÑо Ñе използва â--rssâ или â--atomâ ÑÑÑбва да Ñе Ñкаже и " "меÑÑоположениеÑо на ÑикиÑо поÑÑедÑÑвом паÑамеÑÑÑа â--urlâ" -#: ../IkiWiki/Plugin/inline.pm:96 +#: ../IkiWiki/Plugin/inline.pm:102 #, perl-format msgid "unknown sort type %s" msgstr "Ð½ÐµÐ¿Ð¾Ð·Ð½Ð°Ñ Ð²Ð¸Ð´ ÑоÑÑиÑане â%sâ" -#: ../IkiWiki/Plugin/inline.pm:172 ../IkiWiki/Render.pm:101 +#: ../IkiWiki/Plugin/inline.pm:142 +#, perl-format +msgid "nonexistant template %s" +msgstr "" + +#: ../IkiWiki/Plugin/inline.pm:179 ../IkiWiki/Render.pm:101 msgid "Discussion" msgstr "ÐиÑкÑÑиÑ" -#: ../IkiWiki/Plugin/inline.pm:387 +#: ../IkiWiki/Plugin/inline.pm:394 msgid "RPC::XML::Client not found, not pinging" msgstr "модÑлÑÑ âRPC::XML::Clientâ не е намеÑен; изÑоÑникÑÑ Ð½Ðµ е пÑовеÑен" @@ -387,15 +392,15 @@ msgstr "гÑеÑка пÑи ÑеÑене на â%sâ: %s" msgid "generating wrappers.." msgstr "генеÑиÑане на обвивки..." -#: ../IkiWiki/Setup/Standard.pm:68 +#: ../IkiWiki/Setup/Standard.pm:71 msgid "rebuilding wiki.." msgstr "обновÑване на Ñики..." -#: ../IkiWiki/Setup/Standard.pm:71 +#: ../IkiWiki/Setup/Standard.pm:74 msgid "refreshing wiki.." msgstr "оÑÑвÑеменÑване на Ñики..." -#: ../IkiWiki/Setup/Standard.pm:80 +#: ../IkiWiki/Setup/Standard.pm:83 msgid "done" msgstr "гоÑово" @@ -444,13 +449,13 @@ msgstr "ÑÑпеÑно генеÑиÑане на %s" msgid "usage: ikiwiki [options] source dest" msgstr "ÑоÑмаÑ: ikiwiki [опÑии] изÑоÑник меÑÑоназнаÑение" -#: ../IkiWiki.pm:103 +#: ../IkiWiki.pm:104 msgid "Must specify url to wiki with --url when using --cgi" msgstr "" "ÐÑи използване на паÑемеÑÑÑа â--cgiâ е Ð½ÐµÐ¾Ð±Ñ Ð¾Ð´Ð¸Ð¼Ð¾ да Ñе Ñкаже и " "меÑÑоположениеÑо на ÑикиÑо ÑÑез паÑамеÑÑÑа â--urlâ" -#: ../IkiWiki.pm:150 ../IkiWiki.pm:151 +#: ../IkiWiki.pm:151 ../IkiWiki.pm:152 msgid "Error" msgstr "ÐÑеÑка" @@ -458,7 +463,7 @@ msgstr "ÐÑеÑка" #. translators: preprocessor directive name, #. translators: the second a page name, the #. translators: third a number. -#: ../IkiWiki.pm:558 +#: ../IkiWiki.pm:559 #, perl-format msgid "%s preprocessing loop detected on %s at depth %i" msgstr "оÑкÑиÑа е ÑиклиÑна завидимоÑÑ Ð¿Ñи %s на â%sâ на дÑлбоÑина %i" diff --git a/po/cs.po b/po/cs.po index 0851166f4..e346af02c 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ikiwiki\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-02-19 21:47-0500\n" +"POT-Creation-Date: 2007-03-01 22:55-0500\n" "PO-Revision-Date: 2007-02-17 12:07+0100\n" "Last-Translator: Miroslav Kure <kurem@debian.cz>\n" "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n" @@ -19,37 +19,37 @@ msgstr "" msgid "You need to log in first." msgstr "Nejprve se musÃte pÅihlásit." -#: ../IkiWiki/CGI.pm:267 +#: ../IkiWiki/CGI.pm:274 msgid "Preferences saved." msgstr "Nastavenà uloženo." -#: ../IkiWiki/CGI.pm:332 +#: ../IkiWiki/CGI.pm:340 #, perl-format msgid "%s is not an editable page" msgstr "%s nenà editovatelná stránka" -#: ../IkiWiki/CGI.pm:420 ../IkiWiki/Plugin/brokenlinks.pm:24 -#: ../IkiWiki/Plugin/inline.pm:164 ../IkiWiki/Plugin/opendiscussion.pm:17 +#: ../IkiWiki/CGI.pm:428 ../IkiWiki/Plugin/brokenlinks.pm:24 +#: ../IkiWiki/Plugin/inline.pm:171 ../IkiWiki/Plugin/opendiscussion.pm:17 #: ../IkiWiki/Plugin/orphans.pm:28 ../IkiWiki/Render.pm:97 #: ../IkiWiki/Render.pm:165 msgid "discussion" msgstr "diskuse" -#: ../IkiWiki/CGI.pm:465 +#: ../IkiWiki/CGI.pm:474 #, perl-format msgid "creating %s" msgstr "vytváÅÃm %s" -#: ../IkiWiki/CGI.pm:482 ../IkiWiki/CGI.pm:510 ../IkiWiki/CGI.pm:543 +#: ../IkiWiki/CGI.pm:491 ../IkiWiki/CGI.pm:527 ../IkiWiki/CGI.pm:571 #, perl-format msgid "editing %s" msgstr "upravuji %s" -#: ../IkiWiki/CGI.pm:651 +#: ../IkiWiki/CGI.pm:668 msgid "You are banned." msgstr "Jste vyhoÅ¡tÄni." -#: ../IkiWiki/CGI.pm:683 +#: ../IkiWiki/CGI.pm:700 msgid "login failed, perhaps you need to turn on cookies?" msgstr "pÅihlášenà selhalo; možná si musÃte povolit cookies?" @@ -120,16 +120,21 @@ msgstr "googlecalendar v html nenalezl url" msgid "Must specify url to wiki with --url when using --rss or --atom" msgstr "PÅi použÃvánà --rss nebo --atom musÃte pomocà --url zadat url k wiki" -#: ../IkiWiki/Plugin/inline.pm:96 +#: ../IkiWiki/Plugin/inline.pm:102 #, perl-format msgid "unknown sort type %s" msgstr "neznámý typ Åazenà %s" -#: ../IkiWiki/Plugin/inline.pm:172 ../IkiWiki/Render.pm:101 +#: ../IkiWiki/Plugin/inline.pm:142 +#, perl-format +msgid "nonexistant template %s" +msgstr "" + +#: ../IkiWiki/Plugin/inline.pm:179 ../IkiWiki/Render.pm:101 msgid "Discussion" msgstr "Diskuse" -#: ../IkiWiki/Plugin/inline.pm:387 +#: ../IkiWiki/Plugin/inline.pm:394 msgid "RPC::XML::Client not found, not pinging" msgstr "RPC::XML::Client nebyl nalezen, nepinkám" @@ -382,15 +387,15 @@ msgstr "nemohu ÄÃst %s: %s" msgid "generating wrappers.." msgstr "generuji obaly..." -#: ../IkiWiki/Setup/Standard.pm:68 +#: ../IkiWiki/Setup/Standard.pm:71 msgid "rebuilding wiki.." msgstr "znovu vytváÅÃm wiki..." -#: ../IkiWiki/Setup/Standard.pm:71 +#: ../IkiWiki/Setup/Standard.pm:74 msgid "refreshing wiki.." msgstr "obnovuji wiki..." -#: ../IkiWiki/Setup/Standard.pm:80 +#: ../IkiWiki/Setup/Standard.pm:83 msgid "done" msgstr "hotovo" @@ -439,11 +444,11 @@ msgstr "%s byl úspÄÅ¡nÄ vytvoÅen" msgid "usage: ikiwiki [options] source dest" msgstr "použitÃ: ikiwiki [volby] zdroj cÃl" -#: ../IkiWiki.pm:103 +#: ../IkiWiki.pm:104 msgid "Must specify url to wiki with --url when using --cgi" msgstr "PÅi použità --cgi musÃte pomocà --url zadat url k wiki" -#: ../IkiWiki.pm:150 ../IkiWiki.pm:151 +#: ../IkiWiki.pm:151 ../IkiWiki.pm:152 msgid "Error" msgstr "Chyba" @@ -451,7 +456,7 @@ msgstr "Chyba" #. translators: preprocessor directive name, #. translators: the second a page name, the #. translators: third a number. -#: ../IkiWiki.pm:558 +#: ../IkiWiki.pm:559 #, perl-format msgid "%s preprocessing loop detected on %s at depth %i" msgstr "Byla rozpoznána smyÄka direktivy %s na %s v hloubce %i" diff --git a/po/es.po b/po/es.po index 7fba5acfc..e0ee7e5f6 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-02-19 21:47-0500\n" +"POT-Creation-Date: 2007-03-01 22:55-0500\n" "PO-Revision-Date: 2007-02-12 10:31+0100\n" "Last-Translator: VÃctor Moral <victor@taquiones.net>\n" "Language-Team: spanish <es@li.org>\n" @@ -20,37 +20,37 @@ msgstr "" msgid "You need to log in first." msgstr "Antes es necesario identificarse." -#: ../IkiWiki/CGI.pm:267 +#: ../IkiWiki/CGI.pm:274 msgid "Preferences saved." msgstr "Las preferencias se han guardado." -#: ../IkiWiki/CGI.pm:332 +#: ../IkiWiki/CGI.pm:340 #, perl-format msgid "%s is not an editable page" msgstr "la página %s no es modificable" -#: ../IkiWiki/CGI.pm:420 ../IkiWiki/Plugin/brokenlinks.pm:24 -#: ../IkiWiki/Plugin/inline.pm:164 ../IkiWiki/Plugin/opendiscussion.pm:17 +#: ../IkiWiki/CGI.pm:428 ../IkiWiki/Plugin/brokenlinks.pm:24 +#: ../IkiWiki/Plugin/inline.pm:171 ../IkiWiki/Plugin/opendiscussion.pm:17 #: ../IkiWiki/Plugin/orphans.pm:28 ../IkiWiki/Render.pm:97 #: ../IkiWiki/Render.pm:165 msgid "discussion" msgstr "comentarios" -#: ../IkiWiki/CGI.pm:465 +#: ../IkiWiki/CGI.pm:474 #, perl-format msgid "creating %s" msgstr "creando página %s" -#: ../IkiWiki/CGI.pm:482 ../IkiWiki/CGI.pm:510 ../IkiWiki/CGI.pm:543 +#: ../IkiWiki/CGI.pm:491 ../IkiWiki/CGI.pm:527 ../IkiWiki/CGI.pm:571 #, perl-format msgid "editing %s" msgstr "modificando página %s" -#: ../IkiWiki/CGI.pm:651 +#: ../IkiWiki/CGI.pm:668 msgid "You are banned." msgstr "Ha sido expulsado." -#: ../IkiWiki/CGI.pm:683 +#: ../IkiWiki/CGI.pm:700 msgid "login failed, perhaps you need to turn on cookies?" msgstr "" "registro fallido, ¿ tal vez es necesario activar las cookies en el " @@ -126,16 +126,21 @@ msgstr "" "Es obligatorio indicar un url al wiki cuando se usan los parámetros --rss ó " "--atom" -#: ../IkiWiki/Plugin/inline.pm:96 +#: ../IkiWiki/Plugin/inline.pm:102 #, perl-format msgid "unknown sort type %s" msgstr "no conozco este tipo de ordenación %s" -#: ../IkiWiki/Plugin/inline.pm:172 ../IkiWiki/Render.pm:101 +#: ../IkiWiki/Plugin/inline.pm:142 +#, perl-format +msgid "nonexistant template %s" +msgstr "" + +#: ../IkiWiki/Plugin/inline.pm:179 ../IkiWiki/Render.pm:101 msgid "Discussion" msgstr "Comentarios" -#: ../IkiWiki/Plugin/inline.pm:387 +#: ../IkiWiki/Plugin/inline.pm:394 msgid "RPC::XML::Client not found, not pinging" msgstr "No he encontrado el componente RPC::XML::Client, no envÃo señal alguna" @@ -391,15 +396,15 @@ msgstr "no puedo leer el archivo %s: %s" msgid "generating wrappers.." msgstr "generando programas auxiliares.." -#: ../IkiWiki/Setup/Standard.pm:68 +#: ../IkiWiki/Setup/Standard.pm:71 msgid "rebuilding wiki.." msgstr "reconstruyendo el wiki.." -#: ../IkiWiki/Setup/Standard.pm:71 +#: ../IkiWiki/Setup/Standard.pm:74 msgid "refreshing wiki.." msgstr "actualizando el wiki.." -#: ../IkiWiki/Setup/Standard.pm:80 +#: ../IkiWiki/Setup/Standard.pm:83 msgid "done" msgstr "completado" @@ -449,13 +454,13 @@ msgstr "creado con éxito el programa envoltorio %s" msgid "usage: ikiwiki [options] source dest" msgstr "uso: ikiwiki [opciones] origen destino" -#: ../IkiWiki.pm:103 +#: ../IkiWiki.pm:104 msgid "Must specify url to wiki with --url when using --cgi" msgstr "" "Es obligatorio especificar un url al wiki con el parámetro --url si se " "utiliza el parámetro --cgi" -#: ../IkiWiki.pm:150 ../IkiWiki.pm:151 +#: ../IkiWiki.pm:151 ../IkiWiki.pm:152 msgid "Error" msgstr "Error" @@ -463,7 +468,7 @@ msgstr "Error" #. translators: preprocessor directive name, #. translators: the second a page name, the #. translators: third a number. -#: ../IkiWiki.pm:558 +#: ../IkiWiki.pm:559 #, perl-format msgid "%s preprocessing loop detected on %s at depth %i" msgstr "" diff --git a/po/fr.po b/po/fr.po index 585a2ecd8..dba93b7ec 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ikiwiki\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-02-23 19:44-0500\n" +"POT-Creation-Date: 2007-03-01 22:55-0500\n" "PO-Revision-Date: 2007-02-13 13:02+0100\n" "Last-Translator: Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" @@ -31,7 +31,7 @@ msgid "%s is not an editable page" msgstr "%s n'est pas une page éditable" #: ../IkiWiki/CGI.pm:428 ../IkiWiki/Plugin/brokenlinks.pm:24 -#: ../IkiWiki/Plugin/inline.pm:164 ../IkiWiki/Plugin/opendiscussion.pm:17 +#: ../IkiWiki/Plugin/inline.pm:171 ../IkiWiki/Plugin/opendiscussion.pm:17 #: ../IkiWiki/Plugin/orphans.pm:28 ../IkiWiki/Render.pm:97 #: ../IkiWiki/Render.pm:165 msgid "discussion" @@ -125,16 +125,21 @@ msgstr "" "Vous devez indiquer l'url du wiki par --url lors de l'utilisation de --rss " "ou --atom" -#: ../IkiWiki/Plugin/inline.pm:96 +#: ../IkiWiki/Plugin/inline.pm:102 #, perl-format msgid "unknown sort type %s" msgstr "Type de tri %s inconnu" -#: ../IkiWiki/Plugin/inline.pm:172 ../IkiWiki/Render.pm:101 +#: ../IkiWiki/Plugin/inline.pm:142 +#, perl-format +msgid "nonexistant template %s" +msgstr "" + +#: ../IkiWiki/Plugin/inline.pm:179 ../IkiWiki/Render.pm:101 msgid "Discussion" msgstr "Discussion" -#: ../IkiWiki/Plugin/inline.pm:387 +#: ../IkiWiki/Plugin/inline.pm:394 msgid "RPC::XML::Client not found, not pinging" msgstr "RPC::XML::Client introuvable, pas de réponse au ping" @@ -461,7 +466,7 @@ msgstr "Erreur" #. translators: preprocessor directive name, #. translators: the second a page name, the #. translators: third a number. -#: ../IkiWiki.pm:561 +#: ../IkiWiki.pm:559 #, perl-format msgid "%s preprocessing loop detected on %s at depth %i" msgstr "" diff --git a/po/gu.po b/po/gu.po index 564569088..33a8065eb 100644 --- a/po/gu.po +++ b/po/gu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ikiwiki-gu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-02-19 21:47-0500\n" +"POT-Creation-Date: 2007-03-01 22:55-0500\n" "PO-Revision-Date: 2007-01-11 16:05+0530\n" "Last-Translator: Kartik Mistry <kartik.mistry@gmail.com>\n" "Language-Team: Gujarati <team@utkarsh.org>\n" @@ -19,37 +19,37 @@ msgstr "" msgid "You need to log in first." msgstr "તમારૠપà«àª°àª¥àª® લà«àª àªàª¨ થવà«àª પડશà«." -#: ../IkiWiki/CGI.pm:267 +#: ../IkiWiki/CGI.pm:274 msgid "Preferences saved." msgstr "પà«àª°àª¾àª¥àª®àª¿àªàª¤àª¾àª સàªàªà«àª°àª¹àª¾àª." -#: ../IkiWiki/CGI.pm:332 +#: ../IkiWiki/CGI.pm:340 #, perl-format msgid "%s is not an editable page" msgstr "" -#: ../IkiWiki/CGI.pm:420 ../IkiWiki/Plugin/brokenlinks.pm:24 -#: ../IkiWiki/Plugin/inline.pm:164 ../IkiWiki/Plugin/opendiscussion.pm:17 +#: ../IkiWiki/CGI.pm:428 ../IkiWiki/Plugin/brokenlinks.pm:24 +#: ../IkiWiki/Plugin/inline.pm:171 ../IkiWiki/Plugin/opendiscussion.pm:17 #: ../IkiWiki/Plugin/orphans.pm:28 ../IkiWiki/Render.pm:97 #: ../IkiWiki/Render.pm:165 msgid "discussion" msgstr "àªàª°à«àªàª¾" -#: ../IkiWiki/CGI.pm:465 +#: ../IkiWiki/CGI.pm:474 #, perl-format msgid "creating %s" msgstr "%s બનાવૠàªà«" -#: ../IkiWiki/CGI.pm:482 ../IkiWiki/CGI.pm:510 ../IkiWiki/CGI.pm:543 +#: ../IkiWiki/CGI.pm:491 ../IkiWiki/CGI.pm:527 ../IkiWiki/CGI.pm:571 #, perl-format msgid "editing %s" msgstr "%s સà«àª§àª¾àª°à« àªà«" -#: ../IkiWiki/CGI.pm:651 +#: ../IkiWiki/CGI.pm:668 msgid "You are banned." msgstr "તમારા પર પà«àª°àª¤àª¿àª¬àªàª§ àªà«." -#: ../IkiWiki/CGI.pm:683 +#: ../IkiWiki/CGI.pm:700 msgid "login failed, perhaps you need to turn on cookies?" msgstr "" @@ -120,16 +120,21 @@ msgstr "àªà«àªàª²àªà«àª²à«àª¨à«àª¡àª°àª¨à« htmlમાઠયà«àªàª°àª msgid "Must specify url to wiki with --url when using --rss or --atom" msgstr "--rss ઠથવા --atom àªàªªàª¯à«àª àªàª°àª¤à« વàªàª¤à« વà«àªà«àª®àª¾àª --url àªàªªàª¯à«àª àªàª°àªµà«àª ઠપડશà«" -#: ../IkiWiki/Plugin/inline.pm:96 +#: ../IkiWiki/Plugin/inline.pm:102 #, perl-format msgid "unknown sort type %s" msgstr "ઠàªàª¾àª£à«àª¯à« àªà«àª વણૠપà«àª°àªàª¾àª° %s" -#: ../IkiWiki/Plugin/inline.pm:172 ../IkiWiki/Render.pm:101 +#: ../IkiWiki/Plugin/inline.pm:142 +#, perl-format +msgid "nonexistant template %s" +msgstr "" + +#: ../IkiWiki/Plugin/inline.pm:179 ../IkiWiki/Render.pm:101 msgid "Discussion" msgstr "àªàª°à«àªàª¾" -#: ../IkiWiki/Plugin/inline.pm:387 +#: ../IkiWiki/Plugin/inline.pm:394 msgid "RPC::XML::Client not found, not pinging" msgstr "RPC::XML::Client મળà«àª¯à«àª નહà«, પિàªàª àªàª°àªµàª¾àª®àª¾àª àªàªµàª¤à«àª નથà«" @@ -379,15 +384,15 @@ msgstr "વાàªàªà« શàªàª¾àª¤à« નથૠ%s: %s" msgid "generating wrappers.." msgstr "àªàªµàª°àª£ બનાવૠàªà«.." -#: ../IkiWiki/Setup/Standard.pm:68 +#: ../IkiWiki/Setup/Standard.pm:71 msgid "rebuilding wiki.." msgstr "વà«àªà« ફરà«àª¥à« બનાવૠàªà«.." -#: ../IkiWiki/Setup/Standard.pm:71 +#: ../IkiWiki/Setup/Standard.pm:74 msgid "refreshing wiki.." msgstr "વà«àªà«àª¨à« તાàªà« àªàª°à« àªà«.." -#: ../IkiWiki/Setup/Standard.pm:80 +#: ../IkiWiki/Setup/Standard.pm:83 msgid "done" msgstr "સàªàªªà«àª°à«àª£" @@ -436,11 +441,11 @@ msgstr "સફળતાપà«àª°à«àªµàª પà«àª¦àª¾ àªàª°à«àª² àªà« %s" msgid "usage: ikiwiki [options] source dest" msgstr "àªàªªàª¯à«àª: ikiwiki [વિàªàª²à«àªªà«] source dest" -#: ../IkiWiki.pm:103 +#: ../IkiWiki.pm:104 msgid "Must specify url to wiki with --url when using --cgi" msgstr "àªà«àª¯àª¾àª°à« --cgi àªàªªàª¯à«àª àªàª°àª¤àª¾àª હà«àª¯ તà«àª¯àª¾àª°à« વà«àªà«àª¨à«àª યà«àªàª°àªàª² સà«àªªàª·à«àª àªàª°àªµà«àª ઠપડશà«" -#: ../IkiWiki.pm:150 ../IkiWiki.pm:151 +#: ../IkiWiki.pm:151 ../IkiWiki.pm:152 msgid "Error" msgstr "àªà«àª·àª¤àª¿" @@ -448,7 +453,7 @@ msgstr "àªà«àª·àª¤àª¿" #. translators: preprocessor directive name, #. translators: the second a page name, the #. translators: third a number. -#: ../IkiWiki.pm:558 +#: ../IkiWiki.pm:559 #, perl-format msgid "%s preprocessing loop detected on %s at depth %i" msgstr "%s પર શà«àª§àª¾àª¯à«àª² લà«àªª %s પર àªàª²àª¾àªµà« àªà« %i àªàªàª¡àª¾àª£ પર" diff --git a/po/ikiwiki.pot b/po/ikiwiki.pot index ece8ff388..8a9b77cec 100644 --- a/po/ikiwiki.pot +++ b/po/ikiwiki.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-02-24 20:17-0500\n" +"POT-Creation-Date: 2007-03-01 22:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -30,7 +30,7 @@ msgid "%s is not an editable page" msgstr "" #: ../IkiWiki/CGI.pm:428 ../IkiWiki/Plugin/brokenlinks.pm:24 -#: ../IkiWiki/Plugin/inline.pm:164 ../IkiWiki/Plugin/opendiscussion.pm:17 +#: ../IkiWiki/Plugin/inline.pm:171 ../IkiWiki/Plugin/opendiscussion.pm:17 #: ../IkiWiki/Plugin/orphans.pm:28 ../IkiWiki/Render.pm:97 #: ../IkiWiki/Render.pm:165 msgid "discussion" @@ -121,16 +121,21 @@ msgstr "" msgid "Must specify url to wiki with --url when using --rss or --atom" msgstr "" -#: ../IkiWiki/Plugin/inline.pm:96 +#: ../IkiWiki/Plugin/inline.pm:102 #, perl-format msgid "unknown sort type %s" msgstr "" -#: ../IkiWiki/Plugin/inline.pm:172 ../IkiWiki/Render.pm:101 +#: ../IkiWiki/Plugin/inline.pm:142 +#, perl-format +msgid "nonexistant template %s" +msgstr "" + +#: ../IkiWiki/Plugin/inline.pm:179 ../IkiWiki/Render.pm:101 msgid "Discussion" msgstr "" -#: ../IkiWiki/Plugin/inline.pm:387 +#: ../IkiWiki/Plugin/inline.pm:394 msgid "RPC::XML::Client not found, not pinging" msgstr "" @@ -449,7 +454,7 @@ msgstr "" #. translators: preprocessor directive name, #. translators: the second a page name, the #. translators: third a number. -#: ../IkiWiki.pm:561 +#: ../IkiWiki.pm:559 #, perl-format msgid "%s preprocessing loop detected on %s at depth %i" msgstr "" diff --git a/po/pl.po b/po/pl.po index 53cc06f66..9b335cbdb 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ikiwiki 1.37\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-02-19 21:47-0500\n" +"POT-Creation-Date: 2007-03-01 22:55-0500\n" "PO-Revision-Date: 2007-01-05 16:33+100\n" "Last-Translator: PaweÅ TÄcza <ptecza@net.icm.edu.pl>\n" "Language-Team: Debian L10n Polish <debian-l10n-polish@lists.debian.org>\n" @@ -20,37 +20,37 @@ msgstr "" msgid "You need to log in first." msgstr "Konieczne jest zalogowanie siÄ." -#: ../IkiWiki/CGI.pm:267 +#: ../IkiWiki/CGI.pm:274 msgid "Preferences saved." msgstr "Ustawienia zostaÅy zapisane." -#: ../IkiWiki/CGI.pm:332 +#: ../IkiWiki/CGI.pm:340 #, perl-format msgid "%s is not an editable page" msgstr "" -#: ../IkiWiki/CGI.pm:420 ../IkiWiki/Plugin/brokenlinks.pm:24 -#: ../IkiWiki/Plugin/inline.pm:164 ../IkiWiki/Plugin/opendiscussion.pm:17 +#: ../IkiWiki/CGI.pm:428 ../IkiWiki/Plugin/brokenlinks.pm:24 +#: ../IkiWiki/Plugin/inline.pm:171 ../IkiWiki/Plugin/opendiscussion.pm:17 #: ../IkiWiki/Plugin/orphans.pm:28 ../IkiWiki/Render.pm:97 #: ../IkiWiki/Render.pm:165 msgid "discussion" msgstr "dyskusja" -#: ../IkiWiki/CGI.pm:465 +#: ../IkiWiki/CGI.pm:474 #, perl-format msgid "creating %s" msgstr "tworzenie strony %s" -#: ../IkiWiki/CGI.pm:482 ../IkiWiki/CGI.pm:510 ../IkiWiki/CGI.pm:543 +#: ../IkiWiki/CGI.pm:491 ../IkiWiki/CGI.pm:527 ../IkiWiki/CGI.pm:571 #, perl-format msgid "editing %s" msgstr "edycja strony %s" -#: ../IkiWiki/CGI.pm:651 +#: ../IkiWiki/CGI.pm:668 msgid "You are banned." msgstr "DostÄp zostaÅ zabroniony przez administratora." -#: ../IkiWiki/CGI.pm:683 +#: ../IkiWiki/CGI.pm:700 msgid "login failed, perhaps you need to turn on cookies?" msgstr "" @@ -125,16 +125,21 @@ msgstr "" "Użycie parametru --rss lub --atom wymaga podania adresu URL do wiki za " "pomocÄ parametru --url" -#: ../IkiWiki/Plugin/inline.pm:96 +#: ../IkiWiki/Plugin/inline.pm:102 #, perl-format msgid "unknown sort type %s" msgstr "nieznany sposób sortowania %s" -#: ../IkiWiki/Plugin/inline.pm:172 ../IkiWiki/Render.pm:101 +#: ../IkiWiki/Plugin/inline.pm:142 +#, perl-format +msgid "nonexistant template %s" +msgstr "" + +#: ../IkiWiki/Plugin/inline.pm:179 ../IkiWiki/Render.pm:101 msgid "Discussion" msgstr "Dyskusja" -#: ../IkiWiki/Plugin/inline.pm:387 +#: ../IkiWiki/Plugin/inline.pm:394 msgid "RPC::XML::Client not found, not pinging" msgstr "Niezainstalowany moduÅ RPC::XML::Client, brak możliwoÅci pingowania" @@ -391,15 +396,15 @@ msgstr "awaria w trakcie czytania strony %s: %s" msgid "generating wrappers.." msgstr "tworzenie osÅon..." -#: ../IkiWiki/Setup/Standard.pm:68 +#: ../IkiWiki/Setup/Standard.pm:71 msgid "rebuilding wiki.." msgstr "przebudowywanie wiki..." -#: ../IkiWiki/Setup/Standard.pm:71 +#: ../IkiWiki/Setup/Standard.pm:74 msgid "refreshing wiki.." msgstr "odÅwieżanie wiki..." -#: ../IkiWiki/Setup/Standard.pm:80 +#: ../IkiWiki/Setup/Standard.pm:83 msgid "done" msgstr "gotowe" @@ -448,13 +453,13 @@ msgstr "strona pomyÅlnie utworzona %s" msgid "usage: ikiwiki [options] source dest" msgstr "użycie: ikiwiki [parametry] źródÅo cel" -#: ../IkiWiki.pm:103 +#: ../IkiWiki.pm:104 msgid "Must specify url to wiki with --url when using --cgi" msgstr "" "Użycie parametru --cgi wymaga podania adresu URL do wiki za pomocÄ parametru " "--url" -#: ../IkiWiki.pm:150 ../IkiWiki.pm:151 +#: ../IkiWiki.pm:151 ../IkiWiki.pm:152 msgid "Error" msgstr "BÅÄ d" @@ -462,7 +467,7 @@ msgstr "BÅÄ d" #. translators: preprocessor directive name, #. translators: the second a page name, the #. translators: third a number. -#: ../IkiWiki.pm:558 +#: ../IkiWiki.pm:559 #, perl-format msgid "%s preprocessing loop detected on %s at depth %i" msgstr "polecenie preprocesora %s wykryte w %s na gÅÄbokoÅci %i" diff --git a/po/sv.po b/po/sv.po index aa6c15934..473b6df7e 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ikiwiki\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-02-19 21:47-0500\n" +"POT-Creation-Date: 2007-03-01 22:55-0500\n" "PO-Revision-Date: 2007-01-10 23:47+0100\n" "Last-Translator: Daniel Nylander <po@danielnylander.se>\n" "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n" @@ -19,37 +19,37 @@ msgstr "" msgid "You need to log in first." msgstr "Du mÃ¥ste logga in först." -#: ../IkiWiki/CGI.pm:267 +#: ../IkiWiki/CGI.pm:274 msgid "Preferences saved." msgstr "Inställningar sparades." -#: ../IkiWiki/CGI.pm:332 +#: ../IkiWiki/CGI.pm:340 #, perl-format msgid "%s is not an editable page" msgstr "" -#: ../IkiWiki/CGI.pm:420 ../IkiWiki/Plugin/brokenlinks.pm:24 -#: ../IkiWiki/Plugin/inline.pm:164 ../IkiWiki/Plugin/opendiscussion.pm:17 +#: ../IkiWiki/CGI.pm:428 ../IkiWiki/Plugin/brokenlinks.pm:24 +#: ../IkiWiki/Plugin/inline.pm:171 ../IkiWiki/Plugin/opendiscussion.pm:17 #: ../IkiWiki/Plugin/orphans.pm:28 ../IkiWiki/Render.pm:97 #: ../IkiWiki/Render.pm:165 msgid "discussion" msgstr "diskussion" -#: ../IkiWiki/CGI.pm:465 +#: ../IkiWiki/CGI.pm:474 #, perl-format msgid "creating %s" msgstr "skapar %s" -#: ../IkiWiki/CGI.pm:482 ../IkiWiki/CGI.pm:510 ../IkiWiki/CGI.pm:543 +#: ../IkiWiki/CGI.pm:491 ../IkiWiki/CGI.pm:527 ../IkiWiki/CGI.pm:571 #, perl-format msgid "editing %s" msgstr "redigerar %s" -#: ../IkiWiki/CGI.pm:651 +#: ../IkiWiki/CGI.pm:668 msgid "You are banned." msgstr "Du är bannlyst." -#: ../IkiWiki/CGI.pm:683 +#: ../IkiWiki/CGI.pm:700 msgid "login failed, perhaps you need to turn on cookies?" msgstr "" @@ -120,16 +120,21 @@ msgstr "googlecalendar misslyckades med att hitta url i html" msgid "Must specify url to wiki with --url when using --rss or --atom" msgstr "MÃ¥ste ange url till wiki med --url när --rss eller --atom används" -#: ../IkiWiki/Plugin/inline.pm:96 +#: ../IkiWiki/Plugin/inline.pm:102 #, perl-format msgid "unknown sort type %s" msgstr "okänd sorteringstyp %s" -#: ../IkiWiki/Plugin/inline.pm:172 ../IkiWiki/Render.pm:101 +#: ../IkiWiki/Plugin/inline.pm:142 +#, perl-format +msgid "nonexistant template %s" +msgstr "" + +#: ../IkiWiki/Plugin/inline.pm:179 ../IkiWiki/Render.pm:101 msgid "Discussion" msgstr "Diskussion" -#: ../IkiWiki/Plugin/inline.pm:387 +#: ../IkiWiki/Plugin/inline.pm:394 msgid "RPC::XML::Client not found, not pinging" msgstr "RPC::XML::Client hittades inte, pingar inte" @@ -383,15 +388,15 @@ msgstr "kan inte läsa %s: %s" msgid "generating wrappers.." msgstr "genererar wrappers.." -#: ../IkiWiki/Setup/Standard.pm:68 +#: ../IkiWiki/Setup/Standard.pm:71 msgid "rebuilding wiki.." msgstr "bygger om wiki.." -#: ../IkiWiki/Setup/Standard.pm:71 +#: ../IkiWiki/Setup/Standard.pm:74 msgid "refreshing wiki.." msgstr "uppdaterar wiki.." -#: ../IkiWiki/Setup/Standard.pm:80 +#: ../IkiWiki/Setup/Standard.pm:83 msgid "done" msgstr "klar" @@ -440,11 +445,11 @@ msgstr "generering av %s lyckades" msgid "usage: ikiwiki [options] source dest" msgstr "användning: ikiwiki [flaggor] källa mÃ¥l" -#: ../IkiWiki.pm:103 +#: ../IkiWiki.pm:104 msgid "Must specify url to wiki with --url when using --cgi" msgstr "MÃ¥ste ange url till wiki med --url när --cgi används" -#: ../IkiWiki.pm:150 ../IkiWiki.pm:151 +#: ../IkiWiki.pm:151 ../IkiWiki.pm:152 msgid "Error" msgstr "Fel" @@ -452,7 +457,7 @@ msgstr "Fel" #. translators: preprocessor directive name, #. translators: the second a page name, the #. translators: third a number. -#: ../IkiWiki.pm:558 +#: ../IkiWiki.pm:559 #, perl-format msgid "%s preprocessing loop detected on %s at depth %i" msgstr "%s förbehandlingsslinga detekterades pÃ¥ %s, djup %i" diff --git a/po/vi.po b/po/vi.po index d889b61cb..8fd8a4d5e 100644 --- a/po/vi.po +++ b/po/vi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ikiwiki\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-02-19 21:47-0500\n" +"POT-Creation-Date: 2007-03-01 22:55-0500\n" "PO-Revision-Date: 2007-01-13 15:31+1030\n" "Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n" "Language-Team: Vietnamese <vi-VN@googlegroups.com>\n" @@ -20,37 +20,37 @@ msgstr "" msgid "You need to log in first." msgstr "TrÆ°á»c tiên bạn cần phải ÄÄng nháºp." -#: ../IkiWiki/CGI.pm:267 +#: ../IkiWiki/CGI.pm:274 msgid "Preferences saved." msgstr "Tùy thÃch Äã Äược lÆ°u." -#: ../IkiWiki/CGI.pm:332 +#: ../IkiWiki/CGI.pm:340 #, perl-format msgid "%s is not an editable page" msgstr "" -#: ../IkiWiki/CGI.pm:420 ../IkiWiki/Plugin/brokenlinks.pm:24 -#: ../IkiWiki/Plugin/inline.pm:164 ../IkiWiki/Plugin/opendiscussion.pm:17 +#: ../IkiWiki/CGI.pm:428 ../IkiWiki/Plugin/brokenlinks.pm:24 +#: ../IkiWiki/Plugin/inline.pm:171 ../IkiWiki/Plugin/opendiscussion.pm:17 #: ../IkiWiki/Plugin/orphans.pm:28 ../IkiWiki/Render.pm:97 #: ../IkiWiki/Render.pm:165 msgid "discussion" msgstr "thảo luáºn" -#: ../IkiWiki/CGI.pm:465 +#: ../IkiWiki/CGI.pm:474 #, perl-format msgid "creating %s" msgstr "Äang tạo %s" -#: ../IkiWiki/CGI.pm:482 ../IkiWiki/CGI.pm:510 ../IkiWiki/CGI.pm:543 +#: ../IkiWiki/CGI.pm:491 ../IkiWiki/CGI.pm:527 ../IkiWiki/CGI.pm:571 #, perl-format msgid "editing %s" msgstr "Äang sá»a %s" -#: ../IkiWiki/CGI.pm:651 +#: ../IkiWiki/CGI.pm:668 msgid "You are banned." msgstr "Bạn bá» cấm ra." -#: ../IkiWiki/CGI.pm:683 +#: ../IkiWiki/CGI.pm:700 msgid "login failed, perhaps you need to turn on cookies?" msgstr "" @@ -123,16 +123,21 @@ msgstr "" "Cần phải xác Äá»nh Äá»a chá» URL tá»i wiki vá»i « --url » khi dùng « --rss » hay " "« --atom »" -#: ../IkiWiki/Plugin/inline.pm:96 +#: ../IkiWiki/Plugin/inline.pm:102 #, perl-format msgid "unknown sort type %s" msgstr "kiá»u sắp xếp không rõ %s" -#: ../IkiWiki/Plugin/inline.pm:172 ../IkiWiki/Render.pm:101 +#: ../IkiWiki/Plugin/inline.pm:142 +#, perl-format +msgid "nonexistant template %s" +msgstr "" + +#: ../IkiWiki/Plugin/inline.pm:179 ../IkiWiki/Render.pm:101 msgid "Discussion" msgstr "Thảo luáºn" -#: ../IkiWiki/Plugin/inline.pm:387 +#: ../IkiWiki/Plugin/inline.pm:394 msgid "RPC::XML::Client not found, not pinging" msgstr "Không tìm thấy RPC::XML::Client nên không gá»i gói tin ping" @@ -383,15 +388,15 @@ msgstr "không thá» Äá»c %s: %s" msgid "generating wrappers.." msgstr "Äang tạo ra các bá» bao bá»c.." -#: ../IkiWiki/Setup/Standard.pm:68 +#: ../IkiWiki/Setup/Standard.pm:71 msgid "rebuilding wiki.." msgstr "Äang xây dá»±ng lại wiki.." -#: ../IkiWiki/Setup/Standard.pm:71 +#: ../IkiWiki/Setup/Standard.pm:74 msgid "refreshing wiki.." msgstr "Äang là m tÆ°Æ¡i wiki.." -#: ../IkiWiki/Setup/Standard.pm:80 +#: ../IkiWiki/Setup/Standard.pm:83 msgid "done" msgstr "xong" @@ -440,12 +445,12 @@ msgstr "%s Äã Äược tạo ra" msgid "usage: ikiwiki [options] source dest" msgstr "cách sá» dụng: ikiwiki [tùy chá»n] nguá»n ÄÃch" -#: ../IkiWiki.pm:103 +#: ../IkiWiki.pm:104 msgid "Must specify url to wiki with --url when using --cgi" msgstr "" "Cần phải xác Äá»nh Äá»a chá» URL tá»i wiki vá»i « --url » khi dùng « --cgi »" -#: ../IkiWiki.pm:150 ../IkiWiki.pm:151 +#: ../IkiWiki.pm:151 ../IkiWiki.pm:152 msgid "Error" msgstr "Lá»i" @@ -453,7 +458,7 @@ msgstr "Lá»i" #. translators: preprocessor directive name, #. translators: the second a page name, the #. translators: third a number. -#: ../IkiWiki.pm:558 +#: ../IkiWiki.pm:559 #, perl-format msgid "%s preprocessing loop detected on %s at depth %i" msgstr "vòng lặp tiá»n xá» lý %s Äược phát hiá»n trên %s á» Äá» sâu %i" diff --git a/templates/archivepage.tmpl b/templates/archivepage.tmpl new file mode 100644 index 000000000..6bc789dfb --- /dev/null +++ b/templates/archivepage.tmpl @@ -0,0 +1,7 @@ +<p> +<a href="<TMPL_VAR PAGEURL>"><TMPL_VAR TITLE></a><br /> +<i> +Posted <TMPL_VAR CTIME> +</i> + +</p> diff --git a/templates/inlinepagetitle.tmpl b/templates/inlinepagetitle.tmpl deleted file mode 100644 index 6bc789dfb..000000000 --- a/templates/inlinepagetitle.tmpl +++ /dev/null @@ -1,7 +0,0 @@ -<p> -<a href="<TMPL_VAR PAGEURL>"><TMPL_VAR TITLE></a><br /> -<i> -Posted <TMPL_VAR CTIME> -</i> - -</p>