From: Felix Paul Kühne Date: Sun, 4 Jan 2004 21:44:44 +0000 (+0000) Subject: Fixed a small bug which prevented the translation of a string. X-Git-Tag: 0.7.1~629 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=01cb2578c44361abeb4312bf5a26a716159619fe;p=vlc Fixed a small bug which prevented the translation of a string. --- diff --git a/modules/gui/macosx/intf.h b/modules/gui/macosx/intf.h index 7aa5f26394..e8f7ce4764 100644 --- a/modules/gui/macosx/intf.h +++ b/modules/gui/macosx/intf.h @@ -2,7 +2,7 @@ * intf.h: MacOS X interface plugin ***************************************************************************** * Copyright (C) 2002-2003 VideoLAN - * $Id: intf.h,v 1.53 2003/12/22 14:32:56 sam Exp $ + * $Id: intf.h,v 1.54 2004/01/04 21:44:44 kuehne Exp $ * * Authors: Jon Lech Johansen * Christophe Massiot @@ -226,6 +226,7 @@ struct intf_sys_t IBOutlet id o_dmi_stop; IBOutlet id o_dmi_next; IBOutlet id o_dmi_previous; + IBOutlet id o_dmi_mute; } - (id)getControls; diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m index decbd2ad66..0a0d039464 100644 --- a/modules/gui/macosx/intf.m +++ b/modules/gui/macosx/intf.m @@ -2,7 +2,7 @@ * intf.m: MacOS X interface plugin ***************************************************************************** * Copyright (C) 2002-2003 VideoLAN - * $Id: intf.m,v 1.110 2003/12/22 17:08:22 bigben Exp $ + * $Id: intf.m,v 1.111 2004/01/04 21:44:44 kuehne Exp $ * * Authors: Jon Lech Johansen * Christophe Massiot @@ -435,7 +435,7 @@ unsigned int VLCModifiersToCocoa( unsigned int i_key ) } -- (void)initStrings + - (void)initStrings { [o_window setTitle: _NS("VLC - Controller")]; [o_scrollfield setStringValue: _NS("VLC Media Player")]; @@ -548,6 +548,7 @@ unsigned int VLCModifiersToCocoa( unsigned int i_key ) [o_dmi_stop setTitle: _NS("Stop")]; [o_dmi_next setTitle: _NS("Next")]; [o_dmi_previous setTitle: _NS("Previous")]; + [o_dmi_mute setTitle: _NS("Mute")]; /* error panel */ [o_error setTitle: _NS("Error")];