mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Changed the 'Eject DVD' button text to a simple 'Eject'
This commit is contained in:
parent
232f410569
commit
1c12948b7e
2
HISTORY
2
HISTORY
@ -631,3 +631,5 @@ Video Disk Recorder Revision History
|
|||||||
- Improved AC3 decoding when replaying DVDs (thanks to Matjaz Thaler).
|
- Improved AC3 decoding when replaying DVDs (thanks to Matjaz Thaler).
|
||||||
- Fixed handling DVB card indexes when using only one card in a multi-card
|
- Fixed handling DVB card indexes when using only one card in a multi-card
|
||||||
system.
|
system.
|
||||||
|
- Changed the 'Eject DVD' button text to a simple 'Eject' (the German text
|
||||||
|
was too long...).
|
||||||
|
8
i18n.c
8
i18n.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: i18n.c 1.28 2001/08/08 16:42:18 kls Exp $
|
* $Id: i18n.c 1.29 2001/08/10 15:37:46 kls Exp $
|
||||||
*
|
*
|
||||||
* Slovenian translations provided by Miha Setina <mihasetina@softhome.net>
|
* Slovenian translations provided by Miha Setina <mihasetina@softhome.net>
|
||||||
* Italian translations provided by Alberto Carraro <bertocar@tin.it>
|
* Italian translations provided by Alberto Carraro <bertocar@tin.it>
|
||||||
@ -330,13 +330,13 @@ const tPhrase Phrases[] = {
|
|||||||
"Langue",
|
"Langue",
|
||||||
"Språk",
|
"Språk",
|
||||||
},
|
},
|
||||||
{ "Eject DVD",
|
{ "Eject",
|
||||||
"DVD auswerfen",
|
"Auswerfen",
|
||||||
"", // TODO
|
"", // TODO
|
||||||
"", // TODO
|
"", // TODO
|
||||||
"", // TODO
|
"", // TODO
|
||||||
"", // TODO
|
"", // TODO
|
||||||
"Ejection DVD",
|
"Ejection",
|
||||||
"", // TODO
|
"", // TODO
|
||||||
},
|
},
|
||||||
// Confirmations:
|
// Confirmations:
|
||||||
|
4
menu.c
4
menu.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: menu.c 1.97 2001/08/10 14:57:17 kls Exp $
|
* $Id: menu.c 1.98 2001/08/10 15:37:53 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
@ -1816,7 +1816,7 @@ cMenuMain::cMenuMain(bool Replaying)
|
|||||||
Add(new cOsdItem(hk(tr(" Cancel editing")), osCancelEdit));
|
Add(new cOsdItem(hk(tr(" Cancel editing")), osCancelEdit));
|
||||||
const char *DVDbutton =
|
const char *DVDbutton =
|
||||||
#ifdef DVDSUPPORT
|
#ifdef DVDSUPPORT
|
||||||
cDVD::DiscOk() ? tr("Eject DVD") : NULL;
|
cDVD::DiscOk() ? tr("Eject") : NULL;
|
||||||
#else
|
#else
|
||||||
NULL;
|
NULL;
|
||||||
#endif //DVDSUPPORT
|
#endif //DVDSUPPORT
|
||||||
|
Loading…
Reference in New Issue
Block a user