diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-12-31 21:57:13 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-12-31 21:57:13 +0800 |
commit | 16ce1b8ba8df14c4afa53113384197e8a95d5bb8 (patch) | |
tree | 49a5cd4190992136ea55eede8e4e2fa976318710 /src/prefs-dialog.c | |
parent | e832fe15f66ebacd3e624bc93c7ef8111f061829 (diff) | |
download | gsoc2013-epiphany-16ce1b8ba8df14c4afa53113384197e8a95d5bb8.tar.gz gsoc2013-epiphany-16ce1b8ba8df14c4afa53113384197e8a95d5bb8.tar.zst gsoc2013-epiphany-16ce1b8ba8df14c4afa53113384197e8a95d5bb8.zip |
Add translator's comments to contextualised strings.
2004-12-31 Christian Persch <chpe@cvs.gnome.org>
* embed/downloader-view.c: (progress_cell_data_func):
* embed/ephy-encodings.c:
* src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init):
* src/prefs-dialog.c: (get_name_for_lang_code):
Add translator's comments to contextualised strings.
Diffstat (limited to 'src/prefs-dialog.c')
-rw-r--r-- | src/prefs-dialog.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/prefs-dialog.c b/src/prefs-dialog.c index efb559220..463d4ba21 100644 --- a/src/prefs-dialog.c +++ b/src/prefs-dialog.c @@ -1006,7 +1006,9 @@ get_name_for_lang_code (PrefsDialog *pd, if (localename != NULL) { - /* translators: the first %s is the language name, and the + /* Translators: The text before the "|" is context to help you decide on + * the correct translation. You MUST OMIT it in the translated string. + * Translators: the first %s is the language name, and the * second %s is the locale name. Example: * "French (France)" */ @@ -1016,13 +1018,17 @@ get_name_for_lang_code (PrefsDialog *pd, } else { + /* Translators: The text before the "|" is context to help you decide on + * the correct translation. You MUST OMIT it in the translated string. */ name = g_strdup_printf (Q_("language|%s (%s)"), dgettext (ISO_639_DOMAIN, langname), str[1]); } } else { - /* translators: this refers to a user-define language code + /* Translators: The text before the "|" is context to help you decide on + * the correct translation. You MUST OMIT it in the translated string. + * Translators: this refers to a user-define language code * (one which isn't in our built-in list). */ name = g_strdup_printf (Q_("language|User defined (%s)"), code); |