diff options
Diffstat (limited to 'embed')
-rw-r--r-- | embed/downloader-view.c | 10 | ||||
-rw-r--r-- | embed/ephy-embed-event.c | 1 | ||||
-rw-r--r-- | embed/ephy-embed-persist.c | 2 | ||||
-rw-r--r-- | embed/ephy-embed-utils.c | 4 | ||||
-rw-r--r-- | embed/ephy-history.c | 6 | ||||
-rw-r--r-- | embed/mozilla/mozilla-i18n.c | 2 | ||||
-rw-r--r-- | embed/mozilla/mozilla-notifiers.cpp | 4 |
7 files changed, 20 insertions, 9 deletions
diff --git a/embed/downloader-view.c b/embed/downloader-view.c index 500d86d76..7d8d411b0 100644 --- a/embed/downloader-view.c +++ b/embed/downloader-view.c @@ -16,6 +16,10 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include "downloader-view.h" #include "ephy-gui.h" #include "ephy-prefs.h" @@ -27,7 +31,7 @@ #include <gtk/gtktreeview.h> #include <gtk/gtkliststore.h> #include <gtk/gtktreeviewcolumn.h> -#include <libgnome/gnome-i18n.h> +#include <bonobo/bonobo-i18n.h> #include <libgnomeui/gnome-dialog-util.h> #include <libgnomeui/gnome-dialog.h> #include <gtk/gtkprogressbar.h> @@ -356,11 +360,11 @@ downloader_view_update_controls (DownloaderViewPrivate *priv) if (info->is_paused) { - gtk_button_set_label (GTK_BUTTON (priv->pause_button), _("Resume")); + gtk_button_set_label (GTK_BUTTON (priv->pause_button), _("_Resume")); } else { - gtk_button_set_label (GTK_BUTTON (priv->pause_button), _("Pause")); + gtk_button_set_label (GTK_BUTTON (priv->pause_button), _("_Pause")); } g_free (info); diff --git a/embed/ephy-embed-event.c b/embed/ephy-embed-event.c index 440eabadc..4b3c61e4c 100644 --- a/embed/ephy-embed-event.c +++ b/embed/ephy-embed-event.c @@ -18,7 +18,6 @@ #include "ephy-embed-event.h" -#include <bonobo/bonobo-i18n.h> #include <glib/ghash.h> #include <gtk/gtktypeutils.h> diff --git a/embed/ephy-embed-persist.c b/embed/ephy-embed-persist.c index 08dfd025b..cd6e3e20e 100644 --- a/embed/ephy-embed-persist.c +++ b/embed/ephy-embed-persist.c @@ -23,8 +23,6 @@ #include "mozilla-embed.h" #include "mozilla-embed-persist.h" -#include <bonobo/bonobo-i18n.h> - enum { COMPLETED, diff --git a/embed/ephy-embed-utils.c b/embed/ephy-embed-utils.c index 941069b51..76ddd699e 100644 --- a/embed/ephy-embed-utils.c +++ b/embed/ephy-embed-utils.c @@ -16,6 +16,10 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include "eel-gconf-extensions.h" #include "ephy-embed-utils.h" #include "ephy-embed-shell.h" diff --git a/embed/ephy-history.c b/embed/ephy-history.c index 42bf00d25..f59e9169b 100644 --- a/embed/ephy-history.c +++ b/embed/ephy-history.c @@ -16,6 +16,10 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include "ephy-types.h" #include "ephy-history.h" #include "ephy-file-helpers.h" @@ -25,7 +29,7 @@ #include <time.h> #include <string.h> -#include <libgnome/gnome-i18n.h> +#include <bonobo/bonobo-i18n.h> #include <libgnomevfs/gnome-vfs-uri.h> #define EPHY_HISTORY_XML_VERSION "0.1" diff --git a/embed/mozilla/mozilla-i18n.c b/embed/mozilla/mozilla-i18n.c index c974d9765..ce0a5b4ef 100644 --- a/embed/mozilla/mozilla-i18n.c +++ b/embed/mozilla/mozilla-i18n.c @@ -18,7 +18,7 @@ #include "mozilla-i18n.h" -#include <libgnome/gnome-i18n.h> +#include <bonobo/bonobo-i18n.h> const char *lgroups[] = { N_("Arabic"), diff --git a/embed/mozilla/mozilla-notifiers.cpp b/embed/mozilla/mozilla-notifiers.cpp index fd480ebc0..d9cc51689 100644 --- a/embed/mozilla/mozilla-notifiers.cpp +++ b/embed/mozilla/mozilla-notifiers.cpp @@ -16,7 +16,9 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif #include "ephy-embed-shell.h" #include "ephy-embed-single.h" |