diff options
author | Xan Lopez <xan@src.gnome.org> | 2003-03-09 09:09:05 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2003-03-09 09:09:05 +0800 |
commit | 52f73aa03ed70ff89f1e53f632539bd8d3c8359a (patch) | |
tree | 08f07d104bde324731bcc520f2d9ad31769b209e | |
parent | 054c98c402cf486d55185ba286d5415b47bf4db7 (diff) | |
download | gsoc2013-epiphany-52f73aa03ed70ff89f1e53f632539bd8d3c8359a.tar gsoc2013-epiphany-52f73aa03ed70ff89f1e53f632539bd8d3c8359a.tar.gz gsoc2013-epiphany-52f73aa03ed70ff89f1e53f632539bd8d3c8359a.tar.bz2 gsoc2013-epiphany-52f73aa03ed70ff89f1e53f632539bd8d3c8359a.tar.lz gsoc2013-epiphany-52f73aa03ed70ff89f1e53f632539bd8d3c8359a.tar.xz gsoc2013-epiphany-52f73aa03ed70ff89f1e53f632539bd8d3c8359a.tar.zst gsoc2013-epiphany-52f73aa03ed70ff89f1e53f632539bd8d3c8359a.zip |
s/Keywords/Topics/
s/Keywords/Topics/
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 4 | ||||
-rw-r--r-- | src/bookmarks/ephy-new-bookmark.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index fafe08aa9..bac2591cd 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -528,7 +528,7 @@ build_editing_table (EphyBookmarksEditor *editor) /* Keywords entry */ label = gtk_label_new (NULL); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); - str = g_strconcat ("<b>", _("Keywords:"), "</b>", NULL); + str = g_strconcat ("<b>", _("Topics:"), "</b>", NULL); gtk_label_set_markup (GTK_LABEL (label), str); g_free (str); gtk_widget_show (label); @@ -692,7 +692,7 @@ ephy_bookmarks_editor_construct (EphyBookmarksEditor *editor) /* Keywords View */ key_view = ephy_node_view_new (node, NULL); ephy_node_view_set_browse_mode (key_view); - ephy_node_view_add_column (key_view, _("Keywords"), + ephy_node_view_add_column (key_view, _("Topics"), EPHY_TREE_MODEL_NODE_COL_KEYWORD, TRUE); gtk_box_pack_start (GTK_BOX (hbox), GTK_WIDGET (key_view), FALSE, TRUE, 0); gtk_widget_set_size_request (GTK_WIDGET (key_view), 130, -1); diff --git a/src/bookmarks/ephy-new-bookmark.c b/src/bookmarks/ephy-new-bookmark.c index dab846439..a4e65b772 100644 --- a/src/bookmarks/ephy-new-bookmark.c +++ b/src/bookmarks/ephy-new-bookmark.c @@ -206,7 +206,7 @@ build_editing_table (EphyNewBookmark *editor) label = gtk_label_new (NULL); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); - str = g_strconcat ("<b>", _("Keywords:"), "</b>", NULL); + str = g_strconcat ("<b>", _("Topics:"), "</b>", NULL); gtk_label_set_markup (GTK_LABEL (label), str); g_free (str); gtk_widget_show (label); |