1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Added Czech language texts

This commit is contained in:
Klaus Schmidinger 2006-02-04 10:51:41 +01:00
parent 5fdc421a10
commit ba17fe565e
5 changed files with 302 additions and 4 deletions

View File

@ -1719,3 +1719,6 @@ Suur Karu <suurkaru@fastmail.fm>
Ronny Kornexl <ronny.kornexl@online.de> Ronny Kornexl <ronny.kornexl@online.de>
for reporting a problem with setting "No title" for broken event data for reporting a problem with setting "No title" for broken event data
Bárta Vladimír <vladimir.barta@k2atmitec.cz>
for translating OSD texts to the Czech language

View File

@ -4283,3 +4283,8 @@ Video Disk Recorder Revision History
- Speeded up cVideoRepacker (thanks to Reinhard Nissl). - Speeded up cVideoRepacker (thanks to Reinhard Nissl).
- Added an 'Id' parameter to cDevice::PlayAudio() to allow plugins to easier - Added an 'Id' parameter to cDevice::PlayAudio() to allow plugins to easier
process the audio data (thanks to Marco Schlüßler). process the audio data (thanks to Marco Schlüßler).
- Added Czech language texts (thanks to Bárta Vladimír).
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.

View File

@ -3,7 +3,7 @@
* *
* See the README file for copyright information and how to reach the author. * 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" #include "i18n.h"
@ -26,6 +26,10 @@ const tI18nPhrase Phrases[] = {
"",// TODO "",// TODO
"",// TODO "",// TODO
"¿àØÒÕâ!", "¿àØÒÕâ!",
"",// TODO
"",// TODO
"",// TODO
"Ahoj",
}, },
{ "Hello world!", { "Hello world!",
"Hallo Welt!", "Hallo Welt!",
@ -44,6 +48,10 @@ const tI18nPhrase Phrases[] = {
"",// TODO "",// TODO
"",// TODO "",// TODO
"·ÔàÐÒáâÒãÙ ÜØà!", "·ÔàÐÒáâÒãÙ ÜØà!",
"",// TODO
"",// TODO
"",// TODO
"Ahoj svìte!",
}, },
{ "Howdy folks!", { "Howdy folks!",
"Tach zusammen!", "Tach zusammen!",
@ -62,6 +70,10 @@ const tI18nPhrase Phrases[] = {
"",// TODO "",// TODO
"",// TODO "",// TODO
"ºÐÚ ßÞÖØÒÐÕâÕ?", "ºÐÚ ßÞÖØÒÐÕâÕ?",
"",// TODO
"",// TODO
"",// TODO
"Nazdar vespolek!",
}, },
{ "A friendly greeting", { "A friendly greeting",
"Ein freundlicher Gruß", "Ein freundlicher Gruß",
@ -80,6 +92,10 @@ const tI18nPhrase Phrases[] = {
"",// TODO "",// TODO
"",// TODO "",// TODO
"´àãÖÕáÚÞÕ ßàØÒÕâáâÒØÕ", "´àãÖÕáÚÞÕ ßàØÒÕâáâÒØÕ",
"",// TODO
"",// TODO
"",// TODO
"Pøátelský pozdrav",
}, },
{ "Greeting time (s)", { "Greeting time (s)",
"Dauer des Grußes (s)", "Dauer des Grußes (s)",
@ -98,6 +114,10 @@ const tI18nPhrase Phrases[] = {
"",// TODO "",// TODO
"",// TODO "",// TODO
"¿àÞÔÞÛÖØâÕÛìÝÞáâì ßàØÒÕâáâÒØï", "¿àÞÔÞÛÖØâÕÛìÝÞáâì ßàØÒÕâáâÒØï",
"",// TODO
"",// TODO
"",// TODO
"Èas pozdravu (s)",
}, },
{ "Use alternate greeting", { "Use alternate greeting",
"Alternativen Gruß verwenden", "Alternativen Gruß verwenden",
@ -116,6 +136,10 @@ const tI18nPhrase Phrases[] = {
"",// TODO "",// TODO
"",// TODO "",// TODO
"°ÛìâÕàÝÐâØÒÝÞÕ ßàØÒÕâáâÒØÕ", "°ÛìâÕàÝÐâØÒÝÞÕ ßàØÒÕâáâÒØÕ",
"",// TODO
"",// TODO
"",// TODO
"Pou¾ít alternativní pozdrav",
}, },
{ NULL } { NULL }
}; };

268
i18n.c

File diff suppressed because it is too large Load Diff

4
i18n.h
View File

@ -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.h 1.16 2005/09/09 14:50:35 kls Exp $ * $Id: i18n.h 1.17 2006/02/04 10:41:16 kls Exp $
*/ */
#ifndef __I18N_H #ifndef __I18N_H
@ -12,7 +12,7 @@
#include <stdio.h> #include <stdio.h>
const int I18nNumLanguages = 20; const int I18nNumLanguages = 21;
typedef const char *tI18nPhrase[I18nNumLanguages]; typedef const char *tI18nPhrase[I18nNumLanguages];