changeset 17890:ca6850b9dd9e stable

i18n: add "i18n" comment to error messages of template functions
author FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
date Wed, 31 Oct 2012 03:59:27 +0900
parents ce7bc04d863b
children 8f85151ce201
files mercurial/templater.py
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/templater.py	Wed Oct 31 16:50:22 2012 +0900
+++ b/mercurial/templater.py	Wed Oct 31 03:59:27 2012 +0900
@@ -203,6 +203,7 @@
 
 def join(context, mapping, args):
     if not (1 <= len(args) <= 2):
+        # i18n: "join" is a keyword
         raise error.ParseError(_("join expects one or two arguments"))
 
     joinset = args[0][0](context, mapping, args[0][1])
@@ -223,6 +224,7 @@
 
 def sub(context, mapping, args):
     if len(args) != 3:
+        # i18n: "sub" is a keyword
         raise error.ParseError(_("sub expects three arguments"))
 
     pat = stringify(args[0][0](context, mapping, args[0][1]))
@@ -232,6 +234,7 @@
 
 def if_(context, mapping, args):
     if not (2 <= len(args) <= 3):
+        # i18n: "if" is a keyword
         raise error.ParseError(_("if expects two or three arguments"))
 
     test = stringify(args[0][0](context, mapping, args[0][1]))
@@ -244,6 +247,7 @@
 
 def ifeq(context, mapping, args):
     if not (3 <= len(args) <= 4):
+        # i18n: "ifeq" is a keyword
         raise error.ParseError(_("ifeq expects three or four arguments"))
 
     test = stringify(args[0][0](context, mapping, args[0][1]))