mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Completed the Estonian OSD texts and switched to iso8859-13 character set
This commit is contained in:
parent
326cf18915
commit
0d596d0478
2
HISTORY
2
HISTORY
@ -3296,3 +3296,5 @@ Video Disk Recorder Revision History
|
|||||||
in cSkins::Message().
|
in cSkins::Message().
|
||||||
- Completed the Finnish OSD texts and fixed internationalization of the text
|
- Completed the Finnish OSD texts and fixed internationalization of the text
|
||||||
for "Setup/DVB/Audio language(s)" (thanks to Rolf Ahrenberg).
|
for "Setup/DVB/Audio language(s)" (thanks to Rolf Ahrenberg).
|
||||||
|
- Completed the Estonian OSD texts and switched to iso8859-13 character set
|
||||||
|
(thanks to Arthur Konovalov).
|
||||||
|
9
font.c
9
font.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: font.c 1.10 2004/12/18 13:41:19 kls Exp $
|
* $Id: font.c 1.11 2005/01/14 13:25:35 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
@ -28,10 +28,13 @@
|
|||||||
#include "fontosd-iso8859-7.c"
|
#include "fontosd-iso8859-7.c"
|
||||||
#include "fontsml-iso8859-7.c"
|
#include "fontsml-iso8859-7.c"
|
||||||
|
|
||||||
|
#include "fontfix-iso8859-13.c"
|
||||||
|
#include "fontosd-iso8859-13.c"
|
||||||
|
#include "fontsml-iso8859-13.c"
|
||||||
|
|
||||||
#include "fontfix-iso8859-15.c"
|
#include "fontfix-iso8859-15.c"
|
||||||
#include "fontosd-iso8859-15.c"
|
#include "fontosd-iso8859-15.c"
|
||||||
#include "fontsml-iso8859-15.c"
|
#include "fontsml-iso8859-15.c"
|
||||||
|
|
||||||
// --- cFont -----------------------------------------------------------------
|
// --- cFont -----------------------------------------------------------------
|
||||||
|
|
||||||
static void *FontData[eDvbCodeSize][eDvbFontSize] = {
|
static void *FontData[eDvbCodeSize][eDvbFontSize] = {
|
||||||
@ -39,6 +42,7 @@ static void *FontData[eDvbCodeSize][eDvbFontSize] = {
|
|||||||
{ FontOsd_iso8859_2, FontFix_iso8859_2, FontSml_iso8859_2 },
|
{ FontOsd_iso8859_2, FontFix_iso8859_2, FontSml_iso8859_2 },
|
||||||
{ FontOsd_iso8859_5, FontFix_iso8859_5, FontSml_iso8859_5 },
|
{ FontOsd_iso8859_5, FontFix_iso8859_5, FontSml_iso8859_5 },
|
||||||
{ FontOsd_iso8859_7, FontFix_iso8859_7, FontSml_iso8859_7 },
|
{ FontOsd_iso8859_7, FontFix_iso8859_7, FontSml_iso8859_7 },
|
||||||
|
{ FontOsd_iso8859_13, FontFix_iso8859_13, FontSml_iso8859_13 },
|
||||||
{ FontOsd_iso8859_15, FontFix_iso8859_15, FontSml_iso8859_15 },
|
{ FontOsd_iso8859_15, FontFix_iso8859_15, FontSml_iso8859_15 },
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -47,6 +51,7 @@ static const char *FontCode[eDvbCodeSize] = {
|
|||||||
"iso8859-2",
|
"iso8859-2",
|
||||||
"iso8859-5",
|
"iso8859-5",
|
||||||
"iso8859-7",
|
"iso8859-7",
|
||||||
|
"iso8859-13",
|
||||||
"iso8859-15",
|
"iso8859-15",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
3
font.h
3
font.h
@ -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: font.h 1.9 2004/10/23 14:06:37 kls Exp $
|
* $Id: font.h 1.10 2005/01/14 13:25:35 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __FONT_H
|
#ifndef __FONT_H
|
||||||
@ -24,6 +24,7 @@ enum eDvbCode {
|
|||||||
code_iso8859_2,
|
code_iso8859_2,
|
||||||
code_iso8859_5,
|
code_iso8859_5,
|
||||||
code_iso8859_7,
|
code_iso8859_7,
|
||||||
|
code_iso8859_13,
|
||||||
code_iso8859_15,
|
code_iso8859_15,
|
||||||
#define eDvbCodeSize (code_iso8859_15 + 1)
|
#define eDvbCodeSize (code_iso8859_15 + 1)
|
||||||
};
|
};
|
||||||
|
6498
fontfix-iso8859-13.c
Normal file
6498
fontfix-iso8859-13.c
Normal file
File diff suppressed because it is too large
Load Diff
6722
fontosd-iso8859-13.c
Normal file
6722
fontosd-iso8859-13.c
Normal file
File diff suppressed because it is too large
Load Diff
5602
fontsml-iso8859-13.c
Normal file
5602
fontsml-iso8859-13.c
Normal file
File diff suppressed because it is too large
Load Diff
10
i18n.c
10
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.170 2005/01/14 13:16:03 kls Exp $
|
* $Id: i18n.c 1.171 2005/01/14 13:25:35 kls Exp $
|
||||||
*
|
*
|
||||||
* Translations provided by:
|
* Translations provided by:
|
||||||
*
|
*
|
||||||
@ -121,7 +121,7 @@ const tI18nPhrase Phrases[] = {
|
|||||||
"iso8859-1",
|
"iso8859-1",
|
||||||
"iso8859-5",
|
"iso8859-5",
|
||||||
"iso8859-2",
|
"iso8859-2",
|
||||||
"iso8859-15", // or iso8859-1 as alternative
|
"iso8859-13",
|
||||||
"iso8859-1",
|
"iso8859-1",
|
||||||
},
|
},
|
||||||
// The 3-letter names of the language (this MUST be the third phrase!):
|
// The 3-letter names of the language (this MUST be the third phrase!):
|
||||||
@ -2312,7 +2312,7 @@ const tI18nPhrase Phrases[] = {
|
|||||||
"",//TODO
|
"",//TODO
|
||||||
"",//TODO
|
"",//TODO
|
||||||
"",//TODO
|
"",//TODO
|
||||||
"",//TODO
|
"Audio kättesaamatu!",
|
||||||
"",//TODO
|
"",//TODO
|
||||||
},
|
},
|
||||||
// Setup pages:
|
// Setup pages:
|
||||||
@ -3112,7 +3112,7 @@ const tI18nPhrase Phrases[] = {
|
|||||||
"",//TODO
|
"",//TODO
|
||||||
"",//TODO
|
"",//TODO
|
||||||
"",//TODO
|
"",//TODO
|
||||||
"",//TODO
|
"Dolby Digital kasutamine",
|
||||||
"",//TODO
|
"",//TODO
|
||||||
},
|
},
|
||||||
{ "Setup.DVB$Update channels",
|
{ "Setup.DVB$Update channels",
|
||||||
@ -4691,7 +4691,7 @@ const tI18nPhrase Phrases[] = {
|
|||||||
"",// TODO
|
"",// TODO
|
||||||
"",// TODO
|
"",// TODO
|
||||||
"",// TODO
|
"",// TODO
|
||||||
"",// TODO
|
"Audio",
|
||||||
"",// TODO
|
"",// TODO
|
||||||
},
|
},
|
||||||
// Miscellaneous:
|
// Miscellaneous:
|
||||||
|
Loading…
Reference in New Issue
Block a user