[gnumeric] GUI: Arrange for proper translation of entries in the toolbar menu.
- From: Morten Welinder <mortenw src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gnumeric] GUI: Arrange for proper translation of entries in the toolbar menu.
- Date: Fri, 25 Sep 2009 01:03:39 +0000 (UTC)
commit 7079de79dce8b0e299d7769670cb545542df1668
Author: Morten Welinder <terra gnome org>
Date: Thu Sep 24 21:03:08 2009 -0400
GUI: Arrange for proper translation of entries in the toolbar menu.
ChangeLog | 2 ++
NEWS | 1 +
src/wbc-gtk.c | 27 +++++++++++++++++++++++++--
3 files changed, 28 insertions(+), 2 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index d9a5081..d9181ae 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
* src/wbc-gtk.c (set_toolbar_position): When moving to a new
position, preserve the original order.
+ (cb_add_menus_toolbars): Arrange for proper translation of entries
+ in the toolbar menu.
2009-09-24 Andreas J. Guelzow <aguelzow pyrshep ca>
diff --git a/NEWS b/NEWS
index e382522..b02505d 100644
--- a/NEWS
+++ b/NEWS
@@ -16,6 +16,7 @@ Morten:
* Make inter-process pasting use the sax parser.
* Make auto-format templates use the sax parser.
* Improve consistency when moving toolbars around.
+ * Fix translation problem with toolbar menu.
--------------------------------------------------------------------------
Gnumeric 1.9.13
diff --git a/src/wbc-gtk.c b/src/wbc-gtk.c
index 6245bd7..2f56747 100644
--- a/src/wbc-gtk.c
+++ b/src/wbc-gtk.c
@@ -3639,6 +3639,19 @@ cb_toolbar_box_visible (GtkWidget *box, G_GNUC_UNUSED GParamSpec *pspec,
}
}
+static struct ToolbarInfo {
+ const char *name;
+ const char *menu_text;
+ const char *accel;
+} toolbar_info[] = {
+ { "StandardToolbar", N_("Standard Toolbar"), "<control>7" },
+ { "FormatToolbar", N_("Format Toolbar"), NULL },
+ { "LongFormatToolbar", N_("Long Format Toolbar"), NULL },
+ { "ObjectToolbar", N_("Object Toolbar"), NULL },
+ { NULL }
+};
+
+
static void
cb_add_menus_toolbars (G_GNUC_UNUSED GtkUIManager *ui,
GtkWidget *w, WBCGtk *gtk)
@@ -3652,6 +3665,7 @@ cb_add_menus_toolbars (G_GNUC_UNUSED GtkUIManager *ui,
gboolean visible = gnm_conf_get_toolbar_visible (name);
int n = g_hash_table_size (wbcg->visibility_widgets);
GtkWidget *vw;
+ const struct ToolbarInfo *ti;
#ifdef GNM_USE_HILDON
hildon_window_add_toolbar (HILDON_WINDOW (wbcg_toplevel (wbcg)), GTK_TOOLBAR (w));
@@ -3706,11 +3720,20 @@ cb_add_menus_toolbars (G_GNUC_UNUSED GtkUIManager *ui,
entry.name = toggle_name;
entry.stock_id = NULL;
- entry.label = _(name);
- entry.accelerator = (0 == strcmp (name, "StandardToolbar")) ? "<control>7" : NULL;
+ entry.label = name;
+ entry.accelerator = NULL;
entry.tooltip = tooltip;
entry.callback = G_CALLBACK (cb_toolbar_activate);
entry.is_active = visible;
+
+ for (ti = toolbar_info; ti->name; ti++) {
+ if (strcmp (name, ti->name) == 0) {
+ entry.label = _(ti->menu_text);
+ entry.accelerator = ti->accel;
+ break;
+ }
+ }
+
gtk_action_group_add_toggle_actions (gtk->toolbar.actions,
&entry, 1, wbcg);
g_object_set_data (G_OBJECT (box), "toggle_action",
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]