aboutsummaryrefslogtreecommitdiffstats
path: root/src/bookmarks
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-12-26 00:43:22 +0800
committerChristian Persch <chpe@src.gnome.org>2004-12-26 00:43:22 +0800
commit490d923c81ec7fb222ca4d57bc799f72d461e496 (patch)
tree454da3ab1bb99817910527b56e5feb171a8a5a28 /src/bookmarks
parent84862972eb6111ae08fd740680a3bdc2e028a696 (diff)
downloadgsoc2013-epiphany-490d923c81ec7fb222ca4d57bc799f72d461e496.tar
gsoc2013-epiphany-490d923c81ec7fb222ca4d57bc799f72d461e496.tar.gz
gsoc2013-epiphany-490d923c81ec7fb222ca4d57bc799f72d461e496.tar.bz2
gsoc2013-epiphany-490d923c81ec7fb222ca4d57bc799f72d461e496.tar.lz
gsoc2013-epiphany-490d923c81ec7fb222ca4d57bc799f72d461e496.tar.xz
gsoc2013-epiphany-490d923c81ec7fb222ca4d57bc799f72d461e496.tar.zst
gsoc2013-epiphany-490d923c81ec7fb222ca4d57bc799f72d461e496.zip
Add context to ambiguous strings. Fixes bug #113932.
2004-12-25 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-encodings.c: (ephy_encodings_init): * lib/ephy-langs.c: * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init): * src/ephy-window.c: (show_embed_popup), (tab_context_menu_cb), (ephy_window_set_active_tab): * src/prefs-dialog.c: (create_fonts_language_menu): Add context to ambiguous strings. Fixes bug #113932.
Diffstat (limited to 'src/bookmarks')
-rw-r--r--src/bookmarks/ephy-bookmarks.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c
index f8e9fe428..62618a6be 100644
--- a/src/bookmarks/ephy-bookmarks.c
+++ b/src/bookmarks/ephy-bookmarks.c
@@ -782,7 +782,8 @@ 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);
- g_value_set_string (&value, _("All"));
+ /* 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,
&value);
@@ -815,7 +816,8 @@ 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);
- g_value_set_string (&value, _("Most Visited"));
+ /* 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,
&value);
@@ -831,7 +833,8 @@ 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);
- g_value_set_string (&value, _("Not Categorized"));
+ /* 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,
&value);