mpdule: Make popup labels translatable.

SVN revision: 83792
This commit is contained in:
Igor Murzov 2013-02-08 15:55:40 +00:00 committed by Tom Hacohen
parent 375415fea7
commit a74c6541a4
1 changed files with 4 additions and 0 deletions

View File

@ -799,6 +799,10 @@ _mpdule_popup_create (Instance * inst, const char *dir)
edje_object_file_set(o_popup, buf, "modules/mpdule/popup");
}
}
edje_object_part_text_set(o_popup, "mpdule.artist_label", D_("Artist:"));
edje_object_part_text_set(o_popup, "mpdule.title_label", D_("Title:"));
edje_object_part_text_set(o_popup, "mpdule.album_label", D_("Album:"));
edje_object_part_text_set(o_popup, "mpdule.genre_label", D_("Genre:"));
evas_object_show (o_popup);
e_gadcon_popup_content_set (inst->popup, o_popup);
edje_object_size_min_calc (o_popup, NULL, NULL);