From patchwork Fri Feb 22 14:56:30 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Kiszka X-Patchwork-Id: 222541 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id E115F2C0292 for ; Sat, 23 Feb 2013 01:56:51 +1100 (EST) Received: from localhost ([::1]:44108 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U8u3O-0002Tm-17 for incoming@patchwork.ozlabs.org; Fri, 22 Feb 2013 09:56:50 -0500 Received: from eggs.gnu.org ([208.118.235.92]:47919) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U8u3A-0002Di-4Y for qemu-devel@nongnu.org; Fri, 22 Feb 2013 09:56:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U8u38-0006tr-3m for qemu-devel@nongnu.org; Fri, 22 Feb 2013 09:56:36 -0500 Received: from david.siemens.de ([192.35.17.14]:24689) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U8u37-0006tG-Qg for qemu-devel@nongnu.org; Fri, 22 Feb 2013 09:56:34 -0500 Received: from mail1.siemens.de (localhost [127.0.0.1]) by david.siemens.de (8.13.6/8.13.6) with ESMTP id r1MEuVbQ013106; Fri, 22 Feb 2013 15:56:31 +0100 Received: from mchn199C.mchp.siemens.de ([139.25.109.49]) by mail1.siemens.de (8.13.6/8.13.6) with ESMTP id r1MEuUQ9030429; Fri, 22 Feb 2013 15:56:30 +0100 Message-ID: <5127871E.9090803@siemens.com> Date: Fri, 22 Feb 2013 15:56:30 +0100 From: Jan Kiszka User-Agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); de; rv:1.8.1.12) Gecko/20080226 SUSE/2.0.0.12-1.1 Thunderbird/2.0.0.12 Mnenhy/0.7.5.666 MIME-Version: 1.0 To: Anthony Liguori X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x X-Received-From: 192.35.17.14 Cc: qemu-devel Subject: [Qemu-devel] [PATCH v2] gtk: Replace bogus term "VGA" with "Screen" X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org VGA is a misnomer, only some of our targets have it. Use the more generic term "Screen" instead. Signed-off-by: Jan Kiszka --- Note that we have "screendump" as well, so this makes more sense than "VGA". Internal renaming across all QEMU can still be done but is beyond the scope of this UI fix. ui/gtk.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/gtk.c b/ui/gtk.c index 29156be..bc4ec67 100644 --- a/ui/gtk.c +++ b/ui/gtk.c @@ -1044,7 +1044,7 @@ static void gd_create_menus(GtkDisplayState *s) separator = gtk_separator_menu_item_new(); gtk_menu_append(GTK_MENU(s->view_menu), separator); - s->vga_item = gtk_radio_menu_item_new_with_mnemonic(group, "_VGA"); + s->vga_item = gtk_radio_menu_item_new_with_mnemonic(group, _("_Screen")); group = gtk_radio_menu_item_get_group(GTK_RADIO_MENU_ITEM(s->vga_item)); gtk_menu_item_set_accel_path(GTK_MENU_ITEM(s->vga_item), "/View/VGA"); @@ -1108,7 +1108,8 @@ void gtk_display_init(DisplayState *ds) qemu_add_mouse_mode_change_notifier(&s->mouse_mode_notifier); qemu_add_vm_change_state_handler(gd_change_runstate, s); - gtk_notebook_append_page(GTK_NOTEBOOK(s->notebook), s->drawing_area, gtk_label_new("VGA")); + gtk_notebook_append_page(GTK_NOTEBOOK(s->notebook), s->drawing_area, + gtk_label_new(_("Screen"))); gd_create_menus(s);