diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-10 15:38:59 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-10 15:38:59 +0200 |
commit | 1c12948b7ee7df2ff431c17df744fb671ee99a1f (patch) | |
tree | ac7c5362cceda5c4012e8faac3b4791a727ed4a6 | |
parent | 232f4105691952042e8668f4706cb5ca6a55c8a0 (diff) | |
download | vdr-1c12948b7ee7df2ff431c17df744fb671ee99a1f.tar.gz vdr-1c12948b7ee7df2ff431c17df744fb671ee99a1f.tar.bz2 |
Changed the 'Eject DVD' button text to a simple 'Eject'
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | i18n.c | 8 | ||||
-rw-r--r-- | menu.c | 4 |
3 files changed, 8 insertions, 6 deletions
@@ -631,3 +631,5 @@ Video Disk Recorder Revision History - Improved AC3 decoding when replaying DVDs (thanks to Matjaz Thaler). - Fixed handling DVB card indexes when using only one card in a multi-card system. +- Changed the 'Eject DVD' button text to a simple 'Eject' (the German text + was too long...). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * 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> * Italian translations provided by Alberto Carraro <bertocar@tin.it> @@ -330,13 +330,13 @@ const tPhrase Phrases[] = { "Langue", "Språk", }, - { "Eject DVD", - "DVD auswerfen", + { "Eject", + "Auswerfen", "", // TODO "", // TODO "", // TODO "", // TODO - "Ejection DVD", + "Ejection", "", // TODO }, // Confirmations: @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * 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" @@ -1816,7 +1816,7 @@ cMenuMain::cMenuMain(bool Replaying) Add(new cOsdItem(hk(tr(" Cancel editing")), osCancelEdit)); const char *DVDbutton = #ifdef DVDSUPPORT - cDVD::DiscOk() ? tr("Eject DVD") : NULL; + cDVD::DiscOk() ? tr("Eject") : NULL; #else NULL; #endif //DVDSUPPORT |