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/bookmarks | |
parent | e832fe15f66ebacd3e624bc93c7ef8111f061829 (diff) | |
download | gsoc2013-epiphany-16ce1b8ba8df14c4afa53113384197e8a95d5bb8.tar gsoc2013-epiphany-16ce1b8ba8df14c4afa53113384197e8a95d5bb8.tar.gz gsoc2013-epiphany-16ce1b8ba8df14c4afa53113384197e8a95d5bb8.tar.bz2 gsoc2013-epiphany-16ce1b8ba8df14c4afa53113384197e8a95d5bb8.tar.lz gsoc2013-epiphany-16ce1b8ba8df14c4afa53113384197e8a95d5bb8.tar.xz 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/bookmarks')
-rw-r--r-- | src/bookmarks/ephy-bookmarks.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c index 62618a6be..d58bb1ebc 100644 --- a/src/bookmarks/ephy-bookmarks.c +++ b/src/bookmarks/ephy-bookmarks.c @@ -782,7 +782,9 @@ ephy_bookmarks_init (EphyBookmarks *eb) /* Bookmarks */ eb->priv->bookmarks = ephy_node_new_with_id (db, BOOKMARKS_NODE_ID); g_value_init (&value, G_TYPE_STRING); - /* translators: this topic contains all bookmarks */ + /* 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 topic contains all bookmarks */ g_value_set_string (&value, Q_("bookmarks|All")); ephy_node_set_property (eb->priv->bookmarks, EPHY_NODE_KEYWORD_PROP_NAME, @@ -816,7 +818,9 @@ ephy_bookmarks_init (EphyBookmarks *eb) /* Favorites */ eb->priv->favorites = ephy_node_new_with_id (db, FAVORITES_NODE_ID); g_value_init (&value, G_TYPE_STRING); - /* translators: this topic contains the most used bookmarks */ + /* 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 topic contains the most used bookmarks */ g_value_set_string (&value, Q_("bookmarks|Most Visited")); ephy_node_set_property (eb->priv->favorites, EPHY_NODE_KEYWORD_PROP_NAME, @@ -833,7 +837,9 @@ ephy_bookmarks_init (EphyBookmarks *eb) /* Not categorized */ eb->priv->notcategorized = ephy_node_new_with_id (db, BMKS_NOTCATEGORIZED_NODE_ID); g_value_init (&value, G_TYPE_STRING); - /* translators: this topic contains the not categorized bookmarks */ + /* 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 topic contains the not categorized bookmarks */ g_value_set_string (&value, Q_("bookmarks|Not Categorized")); ephy_node_set_property (eb->priv->notcategorized, EPHY_NODE_KEYWORD_PROP_NAME, |