diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2006-02-05 18:00:00 +0100 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2006-02-05 18:00:00 +0100 |
commit | c23992b807aca1cea08193b773f80eee0cb8f829 (patch) | |
tree | 63dd7d414c790c8cb0afdff07a35d77778ed25c6 /PLUGINS/src/hello | |
parent | c37734080c45ef7ba60d589df0d88fb9a6064c1b (diff) | |
download | vdr-patch-lnbsharing-c23992b807aca1cea08193b773f80eee0cb8f829.tar.gz vdr-patch-lnbsharing-c23992b807aca1cea08193b773f80eee0cb8f829.tar.bz2 |
Version 1.3.42vdr-1.3.42
- Removed leftover 'needsBufferReserve' variable from cTransfer (thanks to Marco
Schlüßler).
- Fixed setting "No title" for broken event data (reported by Ronny Kornexl).
- Fixed channel up/down switching on single card systems (reported by Stefan
Huelswitt).
- Fixed handling "pending" timers that blocked others that actually could record
(reported by Thomas Koch).
- Speeded up cVideoRepacker (thanks to Reinhard Nissl).
- Added an 'Id' parameter to cDevice::PlayAudio() to allow plugins to easier
process the audio data (thanks to Marco Schlüßler).
- Added Czech language texts (thanks to VladimÃr Bárta).
Plugin authors may want to add the new entries to their I18N texts and contact
the translators to have their texts translated. Note that there are now 21
different OSD languages, so please make sure you have 21 versions for each of
your texts.
- Updated the Polish OSD texts (thanks to Jaroslaw Swierczynski).
- Fixed auto advance in string entry fields when pressing Up/Down in insert mode
(reported by Udo Richter).
- Fixed handling the "Setup/OSD/Menu button closes" option when set to 'yes' in
case a replay is active (thanks to Udo Richter).
- Improved cUnbufferedFile; USE_FADVISE is now defined in tools.c by default, so
if you don't want to use "fadvise" you need to comment out that line (thanks to
Artur Skawina).
- Fixed a missing ',' in the Swedish OSD texts (thanks to Arthur Konovalov).
- cDevice::Transferring() can now be used to determine whether the (primary)
device is currently playing in Transfer Mode (based on a suggestion by
Reinhard Nissl).
- The 'runvdr' script no longer uses the $VDRUSR environment variable to set
the user id under which 'vdr' shall run. Just add the '-u username' option
when you call 'runvdr'.
- Fixed multiple entries of the same subdirectory in the "Recordings" menu
(reported by Christian Jacobsen).
- Enabled generating a core dump if VDR is run with a different user id (thanks
to Ville Skyttä).
- Fixed handling the "Blue" key in the "Schedule" menu for the current channel
(thanks to Rolf Ahrenberg).
- Renamed the Makefile target 'plugins-clean' to 'clean-plugins' (suggested by
Sebastian Frei).
- Made all font and image data 'const' (thanks to Darren Salt).
- Fixed scrolling with Up/Down in case there are non-selectable items at the
beginning or end of the menu (reported by Helmut Auer).
- Added cSkin::GetTextAreaWidth() and cSkin::GetTextAreaFont(), so that a plugin
that wants to do special text formatting can do so (thanks to Alexander Rieger).
Diffstat (limited to 'PLUGINS/src/hello')
-rw-r--r-- | PLUGINS/src/hello/i18n.c | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/PLUGINS/src/hello/i18n.c b/PLUGINS/src/hello/i18n.c index 304233b..62446a6 100644 --- a/PLUGINS/src/hello/i18n.c +++ b/PLUGINS/src/hello/i18n.c @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: i18n.c 1.4 2004/01/16 13:28:23 kls Exp $ + * $Id: i18n.c 1.5 2006/02/04 10:51:41 kls Exp $ */ #include "i18n.h" @@ -26,6 +26,10 @@ const tI18nPhrase Phrases[] = { "",// TODO "",// TODO "¿àØÒÕâ!", + "",// TODO + "",// TODO + "",// TODO + "Ahoj", }, { "Hello world!", "Hallo Welt!", @@ -44,6 +48,10 @@ const tI18nPhrase Phrases[] = { "",// TODO "",// TODO "·ÔàÐÒáâÒãÙ ÜØà!", + "",// TODO + "",// TODO + "",// TODO + "Ahoj svìte!", }, { "Howdy folks!", "Tach zusammen!", @@ -62,6 +70,10 @@ const tI18nPhrase Phrases[] = { "",// TODO "",// TODO "ºÐÚ ßÞÖØÒÐÕâÕ?", + "",// TODO + "",// TODO + "",// TODO + "Nazdar vespolek!", }, { "A friendly greeting", "Ein freundlicher Gruß", @@ -80,6 +92,10 @@ const tI18nPhrase Phrases[] = { "",// TODO "",// TODO "´àãÖÕáÚÞÕ ßàØÒÕâáâÒØÕ", + "",// TODO + "",// TODO + "",// TODO + "Pøátelský pozdrav", }, { "Greeting time (s)", "Dauer des Grußes (s)", @@ -98,6 +114,10 @@ const tI18nPhrase Phrases[] = { "",// TODO "",// TODO "¿àÞÔÞÛÖØâÕÛìÝÞáâì ßàØÒÕâáâÒØï", + "",// TODO + "",// TODO + "",// TODO + "Èas pozdravu (s)", }, { "Use alternate greeting", "Alternativen Gruß verwenden", @@ -116,6 +136,10 @@ const tI18nPhrase Phrases[] = { "",// TODO "",// TODO "°ÛìâÕàÝÐâØÒÝÞÕ ßàØÒÕâáâÒØÕ", + "",// TODO + "",// TODO + "",// TODO + "Pou¾ít alternativní pozdrav", }, { NULL } }; |