Mercurial > audlegacy
changeset 2226:325a97334c11 trunk
[svn] - set the translation domain for UIManager owned objects. Closes #719, #720.
author | nenolod |
---|---|
date | Sun, 31 Dec 2006 11:32:05 -0800 |
parents | a14a871be06b |
children | 649e3418aac2 |
files | ChangeLog audacious/equalizer.c audacious/ui_playlist.c |
diffstat | 3 files changed, 9 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Sat Dec 30 13:15:44 2006 -0800 +++ b/ChangeLog Sun Dec 31 11:32:05 2006 -0800 @@ -1,3 +1,10 @@ +2006-12-30 21:15:44 +0000 Kiyoshi Aman <kiyoshi.aman@gmail.com> + revision [3455] + More eq stuff, from external contributor Michael Faerber <01mf02 -at- gmail.com>. + trunk/audacious/equalizer.c | 71 ++++---------------------------------------- + 1 file changed, 7 insertions(+), 64 deletions(-) + + 2006-12-30 05:01:49 +0000 William Pitcock <nenolod@nenolod.net> revision [3453] - memory_pool_alloc_object()
--- a/audacious/equalizer.c Sat Dec 30 13:15:44 2006 -0800 +++ b/audacious/equalizer.c Sun Dec 31 11:32:05 2006 -0800 @@ -957,6 +957,7 @@ GError *error = NULL; action_group = gtk_action_group_new("equalizer-window"); + gtk_action_group_set_translation_domain(action_group, PACKAGE_NAME); gtk_action_group_add_actions(action_group, equalizerwin_actions, G_N_ELEMENTS(equalizerwin_actions),
--- a/audacious/ui_playlist.c Sat Dec 30 13:15:44 2006 -0800 +++ b/audacious/ui_playlist.c Sun Dec 31 11:32:05 2006 -0800 @@ -2054,6 +2054,7 @@ GError *error = NULL; action_group = gtk_action_group_new("playlistwin"); + gtk_action_group_set_translation_domain(action_group, PACKAGE_NAME); gtk_action_group_add_actions(action_group, playlistwin_actions, G_N_ELEMENTS(playlistwin_actions), NULL);