From 885e4b607ae6cdcd48c792ce45c8b7faa29a76fb Mon Sep 17 00:00:00 2001 From: intrigeri Date: Wed, 31 Dec 2008 16:45:55 +0100 Subject: po: new po_translation_status_in_links option ... to make configurable the last implemented feature. Signed-off-by: intrigeri --- IkiWiki/Plugin/po.pm | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'IkiWiki/Plugin/po.pm') diff --git a/IkiWiki/Plugin/po.pm b/IkiWiki/Plugin/po.pm index cee7a7654..33bc2b057 100644 --- a/IkiWiki/Plugin/po.pm +++ b/IkiWiki/Plugin/po.pm @@ -110,6 +110,13 @@ sub getsetup () { #{{{ safe => 1, rebuild => 1, }, + po_translation_status_in_links => { + type => "boolean", + example => 1, + description => "display translation status in links to translations", + safe => 1, + rebuild => 1, + }, } #}}} sub checkconfig () { #{{{ @@ -144,6 +151,10 @@ sub checkconfig () { #{{{ warn(gettext('po_link_to=negotiated requires usedirs to be enabled, falling back to po_link_to=default')); $config{po_link_to}='default'; } + if (! exists $config{po_translation_status_in_links} || + ! defined $config{po_translation_status_in_links}) { + $config{po_translation_status_in_links}=1; + } push @{$config{wiki_file_prune_regexps}}, qr/\.pot$/; } #}}} @@ -492,6 +503,7 @@ sub mynicepagetitle ($;$) { #{{{ my $res = $origsubs{'nicepagetitle'}->($page, $unescaped); return $res unless istranslation($page); + return $res unless $config{po_translation_status_in_links}; return $res.' ('.percenttranslated($page).' %)'; } #}}} -- cgit v1.2.3