diff options
author | Jonas Smedegaard <dr@jones.dk> | 2009-07-23 00:50:42 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2009-07-23 00:50:42 +0200 |
commit | 28b572a61e71187ecc01ed476e37fbafead11163 (patch) | |
tree | b758f40f8f20e83b4a89919731b3b0325a0c05d8 | |
parent | 106b073ce1b5d9deeb4c7d86dd80e2dc4bb083eb (diff) | |
download | ikiwiki-28b572a61e71187ecc01ed476e37fbafead11163.tar ikiwiki-28b572a61e71187ecc01ed476e37fbafead11163.tar.gz |
Rephrase suggestion to not get confused as info on action already done.
-rw-r--r-- | IkiWiki/Plugin/po.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/IkiWiki/Plugin/po.pm b/IkiWiki/Plugin/po.pm index 193cf0a54..434d9cf4f 100644 --- a/IkiWiki/Plugin/po.pm +++ b/IkiWiki/Plugin/po.pm @@ -441,8 +441,8 @@ sub canremove (@) { my %params = @_; if (istranslation($params{page})) { - return gettext("Can not remove a translation. Removing the master page, ". - "though, removes its translations as well."); + return gettext("Can not remove a translation. If the master page is removed, ". + "however, its translations will be removed as well."); } return undef; } @@ -461,8 +461,8 @@ sub canrename (@) { # saved early in the renaming process. my $orig_torename = $session->param("po_orig_torename"); unless (grep { $_ eq $masterpage } @{$orig_torename}) { - return gettext("Can not rename a translation. Renaming the master page, ". - "though, renames its translations as well."); + return gettext("Can not rename a translation. If the master page is renamed, ". + "however, its translations will be renamed as well."); } } return undef; |