aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-02-08 20:53:15 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-02-08 20:53:15 +0800
commit161c9b511dce174be1654400ac2f116d64a32747 (patch)
tree40e27f254f3847e3461932c627e374ca7fa8041e
parentfd8fbb88aca38f094ef80e223abfa17e8505e624 (diff)
downloadgsoc2013-epiphany-161c9b511dce174be1654400ac2f116d64a32747.tar
gsoc2013-epiphany-161c9b511dce174be1654400ac2f116d64a32747.tar.gz
gsoc2013-epiphany-161c9b511dce174be1654400ac2f116d64a32747.tar.bz2
gsoc2013-epiphany-161c9b511dce174be1654400ac2f116d64a32747.tar.lz
gsoc2013-epiphany-161c9b511dce174be1654400ac2f116d64a32747.tar.xz
gsoc2013-epiphany-161c9b511dce174be1654400ac2f116d64a32747.tar.zst
gsoc2013-epiphany-161c9b511dce174be1654400ac2f116d64a32747.zip
Fix some i18n problems
2003-02-08 Marco Pesenti Gritti <marco@it.gnome.org> * data/starthere/index.xml.in: Fix some i18n problems * src/ephy-spinner-action.c: (item_parent_set_cb), (connect_proxy): Use connect object to avoid signals on dead widgets.
-rw-r--r--ChangeLog10
-rw-r--r--data/starthere/index.xml.in17
-rw-r--r--src/ephy-spinner-action.c12
3 files changed, 27 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index e35390d99..5689a24fa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
2003-02-08 Marco Pesenti Gritti <marco@it.gnome.org>
+ * data/starthere/index.xml.in:
+
+ Fix some i18n problems
+
+ * src/ephy-spinner-action.c: (item_parent_set_cb), (connect_proxy):
+
+ Use connect object to avoid signals on dead widgets.
+
+2003-02-08 Marco Pesenti Gritti <marco@it.gnome.org>
+
* data/ui/epiphany-toolbar.xml.in:
* lib/widgets/ephy-editable-toolbar.c: (add_action):
* src/ephy-window.c:
diff --git a/data/starthere/index.xml.in b/data/starthere/index.xml.in
index f919d977c..e0b5f3a32 100644
--- a/data/starthere/index.xml.in
+++ b/data/starthere/index.xml.in
@@ -13,13 +13,18 @@ the Enter key. You can remember important visited pages using bookmarks or brows
them with the history dialog.
</_paragraph>
<_title>Getting started</_title>
-<paragraph>
-<_translate>To import bookmarks from another browser installed on your system just
-click on one of the links below:</_translate>
+<_paragraph>
+To import bookmarks from another browser installed on your system just
+click on one of the links below:
+</_paragraph>
+<_paragraph>
<content id="bookmarks-import"/>
-</paragraph>
+</_paragraph>
+<_paragraph>
+If your internet connection requires it, make sure to setup your proxy in the
+desktop wide configuration dialog.
+</_paragraph>
<paragraph>
-<_translate>If your internet connection requires it, make sure to setup your proxy in the
-desktop wide</_translate> <action id="configure-network" param=""><_translate>configuration dialog</_translate></action>.
+<action id="configure-network" param=""><_translate>Proxy configuration</_translate></action>
</paragraph>
</section>
diff --git a/src/ephy-spinner-action.c b/src/ephy-spinner-action.c
index 1ad90ec64..5b0ef5ed8 100644
--- a/src/ephy-spinner-action.c
+++ b/src/ephy-spinner-action.c
@@ -124,9 +124,9 @@ item_parent_set_cb (GtkWidget *item, GtkWidget *previous_parent)
toolbar = EGG_TOOLBAR (item->parent);
- g_signal_connect (toolbar, "style_changed",
- G_CALLBACK (toolbar_style_sync),
- item);
+ g_signal_connect_object (toolbar, "style_changed",
+ G_CALLBACK (toolbar_style_sync),
+ item, 0);
style = egg_toolbar_get_style (toolbar);
toolbar_style_sync (toolbar, style, item);
@@ -138,9 +138,9 @@ connect_proxy (EggAction *action, GtkWidget *proxy)
g_signal_connect_object (action, "notify::throbbing",
G_CALLBACK (ephy_spinner_action_sync_throbbing),
proxy, 0);
- g_signal_connect (proxy, "parent_set",
- G_CALLBACK (item_parent_set_cb),
- NULL);
+ g_signal_connect_object (proxy, "parent_set",
+ G_CALLBACK (item_parent_set_cb),
+ proxy, 0);
(* EGG_ACTION_CLASS (parent_class)->connect_proxy) (action, proxy);
}