mirror of https://github.com/xemu-project/xemu.git
gtk: make more messages translatable
Anthony Liguori <aliguori@us.ibm.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> Reviewed-by: Anthony Liguori <aliguori@us.ibm.com> Message-id: 1364836326-8707-2-git-send-email-aurelien@aurel32.net Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
4690579e9b
commit
d8da9ee847
4
ui/gtk.c
4
ui/gtk.c
|
@ -210,11 +210,11 @@ static void gd_update_caption(GtkDisplayState *s)
|
|||
bool is_paused = !runstate_is_running();
|
||||
|
||||
if (gd_is_grab_active(s)) {
|
||||
grab = " - Press Ctrl+Alt+G to release grab";
|
||||
grab = _(" - Press Ctrl+Alt+G to release grab");
|
||||
}
|
||||
|
||||
if (is_paused) {
|
||||
status = " [Paused]";
|
||||
status = _(" [Paused]");
|
||||
}
|
||||
s->external_pause_update = true;
|
||||
gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(s->pause_item),
|
||||
|
|
Loading…
Reference in New Issue