[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Denemo-devel] Clef drop down menu order - missing internationalization
From: |
Roy Rankin |
Subject: |
[Denemo-devel] Clef drop down menu order - missing internationalization in view.c |
Date: |
Sat, 19 Jul 2008 14:48:27 +1000 |
User-agent: |
Thunderbird 2.0.0.14 (X11/20080501) |
I noticed that the clef drop down menu had a different order for
initial, and insert change than time and key do. This change fixes that.
diff --git a/src/denemoui.xml b/src/denemoui.xml
index 8354735..30b55fb 100644
--- a/src/denemoui.xml
+++ b/src/denemoui.xml
@@ -438,8 +438,8 @@
<menu action="ClefMenu">
- <menuitem action="InsertClef"/>
<menuitem action="InitialClef"/>
+ <menuitem action="InsertClef"/>
</menu>
<menu action="Key">
I also notice a string with internationalization missing in view.c. I
assume translations need to be generated for this change.
diff --git a/src/view.c b/src/view.c
index d93c5f9..ee3b608 100644
--- a/src/view.c
+++ b/src/view.c
@@ -1138,7 +1138,7 @@ GtkActionEntry menu_entries[] = {
G_CALLBACK (staff_properties_change)},
{"InsertMenu", NULL, N_("Insert")},
{"Clef", NULL, N_("_Clef")},
- {"InitialClef", NULL, N_("Initial Clef"), NULL, "Change the initial
clef of the current staff",
+ {"InitialClef", NULL, N_("Initial Clef"), NULL, N_("Change the
initial clef of the current staff"),
G_CALLBACK (clef_change_initial)},
{"InsertClef", NULL, N_("Insert Clef Change"), NULL, N_("Insert a
change of clef at the cursor"),
G_CALLBACK (clef_change_insert)},
Regards,
Roy Rankin
- [Denemo-devel] Clef drop down menu order - missing internationalization in view.c,
Roy Rankin <=