diff options
author | Matthias Clasen <mclasen@redhat.com> | 2008-01-07 03:39:41 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2008-01-07 03:39:41 +0000 |
commit | 1b2fe32904a5aa34d7890443f48f6c1acb6bb733 (patch) | |
tree | b8cc7679356da49867d04f476a5656b0442746e7 | |
parent | 3f15a98f8d95a3c277078e6a7191cdc95da5f065 (diff) |
Add a translator comment (#503051, Pedro de Medeiros)
2008-01-06 Matthias Clasen <mclasen@redhat.com>
* glib/gregex.c: Add a translator comment (#503051,
Pedro de Medeiros)
svn path=/trunk/; revision=6255
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | glib/gregex.c | 3 |
2 files changed, 8 insertions, 0 deletions
@@ -1,5 +1,10 @@ 2008-01-06 Matthias Clasen <mclasen@redhat.com> + * glib/gregex.c: Add a translator comment (#503051, + Pedro de Medeiros) + +2008-01-06 Matthias Clasen <mclasen@redhat.com> + * glib/gutils.h: Cope with gcc 4.3 changed 'extern inline' semantics. (#315437, patch by Loïc Minier) diff --git a/glib/gregex.c b/glib/gregex.c index fa9cefba1..cc9aa0e6e 100644 --- a/glib/gregex.c +++ b/glib/gregex.c @@ -252,6 +252,9 @@ translate_compile_error (gint *errcode, gchar **errmsg) break; case 129: *errcode = G_REGEX_ERROR_UNMATCHED_PARENTHESIS; + /* translators: '(?R' and '(?[+-]digits' are both meant as (groups of) + * sequences here, '(?-54' would be an example for the second group. + */ *errmsg = _("(?R or (?[+-]digits must be followed by )"); break; case G_REGEX_ERROR_INEXISTENT_SUBPATTERN_REFERENCE: |