diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-01-04 12:00:23 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-01-04 12:00:23 +0000 |
commit | 8daaa11baa70e07f6405ccb4474e97cac9627961 (patch) | |
tree | 2d41f1247187c1337f28f58e6d8453aa69f05d47 /IkiWiki/Plugin | |
parent | 7aa50b3b2cf11efb09e811b8ffc4d3b8e1b0cc0e (diff) |
added some comments for translators
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/shortcut.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/shortcut.pm b/IkiWiki/Plugin/shortcut.pm index 9479306a8..2a4a36a41 100644 --- a/IkiWiki/Plugin/shortcut.pm +++ b/IkiWiki/Plugin/shortcut.pm @@ -27,6 +27,9 @@ sub preprocess_shortcut (@) { #{{{ hook(type => "preprocess", no_override => 1, id => $params{name}, call => sub { shortcut_expand($params{url}, $params{desc}, @_) }); + #translators: This is used to display what shortcuts are defined. + #translators: First parameter is the name of the shortcut, the second + #translators: is an URL. return sprintf(gettext("shortcut %s points to %s"), $params{name}, $params{url}); } # }}} |