mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added Estonian language texts
This commit is contained in:
parent
27895be475
commit
a31266c9ec
@ -1076,3 +1076,6 @@ Dick Streefland <Dick.Streefland@xs4all.nl>
|
|||||||
|
|
||||||
Kimmo Tykkala <tykkala@iki.fi>
|
Kimmo Tykkala <tykkala@iki.fi>
|
||||||
for pointing out a problem in showing the replay mode if the OSD is currently in use
|
for pointing out a problem in showing the replay mode if the OSD is currently in use
|
||||||
|
|
||||||
|
Arthur Konovalov <kasjas@hot.ee>
|
||||||
|
for translating OSD texts to the Estonian language
|
||||||
|
1
HISTORY
1
HISTORY
@ -3012,3 +3012,4 @@ Video Disk Recorder Revision History
|
|||||||
- cOsdProvider::NewOsd() now always returns a valid pointer, even if the OSD is
|
- cOsdProvider::NewOsd() now always returns a valid pointer, even if the OSD is
|
||||||
currently in use (it will then return a dummy cOsd object and write a message to
|
currently in use (it will then return a dummy cOsd object and write a message to
|
||||||
the log file).
|
the log file).
|
||||||
|
- Added Estonian language texts (thanks to Arthur Konovalov).
|
||||||
|
16
Makefile
16
Makefile
@ -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: Makefile 1.67 2004/05/16 10:51:44 kls Exp $
|
# $Id: Makefile 1.68 2004/10/16 11:58:14 kls Exp $
|
||||||
|
|
||||||
.DELETE_ON_ERROR:
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
@ -56,6 +56,10 @@ FIXFONT_ISO8859_7 = --user-medium-r-normal--26-171-110-110-m-140-iso8859-7
|
|||||||
OSDFONT_ISO8859_7 = --user-medium-r-normal--23-179-85-85-m-120-iso8859-7
|
OSDFONT_ISO8859_7 = --user-medium-r-normal--23-179-85-85-m-120-iso8859-7
|
||||||
SMLFONT_ISO8859_7 = --user-medium-r-normal--19-160-72-72-m-110-iso8859-7
|
SMLFONT_ISO8859_7 = --user-medium-r-normal--19-160-72-72-m-110-iso8859-7
|
||||||
|
|
||||||
|
FIXFONT_ISO8859_15 = -adobe-courier-bold-r-normal--25-*-100-100-m-*-iso8859-15
|
||||||
|
OSDFONT_ISO8859_15 = -adobe-helvetica-medium-r-normal--23-*-100-100-p-*-iso8859-15
|
||||||
|
SMLFONT_ISO8859_15 = -adobe-helvetica-medium-r-normal--18-*-100-100-p-*-iso8859-15
|
||||||
|
|
||||||
ifndef NO_KBD
|
ifndef NO_KBD
|
||||||
DEFINES += -DREMOTE_KBD
|
DEFINES += -DREMOTE_KBD
|
||||||
endif
|
endif
|
||||||
@ -77,7 +81,8 @@ font: genfontfile\
|
|||||||
fontfix.c fontosd.c fontsml.c\
|
fontfix.c fontosd.c fontsml.c\
|
||||||
fontfix-iso8859-2.c fontosd-iso8859-2.c fontsml-iso8859-2.c\
|
fontfix-iso8859-2.c fontosd-iso8859-2.c fontsml-iso8859-2.c\
|
||||||
fontfix_iso8859_5.c fontosd_iso8859_5.c fontsml_iso8859_5.c\
|
fontfix_iso8859_5.c fontosd_iso8859_5.c fontsml_iso8859_5.c\
|
||||||
fontfix_iso8859_7.c fontosd_iso8859_7.c fontsml_iso8859_7.c
|
fontfix_iso8859_7.c fontosd_iso8859_7.c fontsml_iso8859_7.c\
|
||||||
|
fontfix_iso8859_15.c fontosd_iso8859_15.c fontsml_iso8859_15.c
|
||||||
@echo "font files created."
|
@echo "font files created."
|
||||||
|
|
||||||
# Implicit rules:
|
# Implicit rules:
|
||||||
@ -129,6 +134,13 @@ fontosd-iso8859-7.c:
|
|||||||
fontsml-iso8859-7.c:
|
fontsml-iso8859-7.c:
|
||||||
./genfontfile "cFont::tPixelData FontSml_iso8859_7" "$(SMLFONT_ISO8859_7)" > $@
|
./genfontfile "cFont::tPixelData FontSml_iso8859_7" "$(SMLFONT_ISO8859_7)" > $@
|
||||||
|
|
||||||
|
fontfix-iso8859-15.c:
|
||||||
|
./genfontfile "cFont::tPixelData FontFix_iso8859_15" "$(FIXFONT_ISO8859_15)" > $@
|
||||||
|
fontosd-iso8859-15.c:
|
||||||
|
./genfontfile "cFont::tPixelData FontOsd_iso8859_15" "$(OSDFONT_ISO8859_15)" > $@
|
||||||
|
fontsml-iso8859-15.c:
|
||||||
|
./genfontfile "cFont::tPixelData FontSml_iso8859_15" "$(SMLFONT_ISO8859_15)" > $@
|
||||||
|
|
||||||
# The font file generator:
|
# The font file generator:
|
||||||
|
|
||||||
genfontfile: genfontfile.c
|
genfontfile: genfontfile.c
|
||||||
|
4
i18n.h
4
i18n.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: i18n.h 1.12 2004/05/16 10:52:40 kls Exp $
|
* $Id: i18n.h 1.13 2004/10/16 11:50:41 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __I18N_H
|
#ifndef __I18N_H
|
||||||
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
const int I18nNumLanguages = 18;
|
const int I18nNumLanguages = 19;
|
||||||
|
|
||||||
typedef const char *tI18nPhrase[I18nNumLanguages];
|
typedef const char *tI18nPhrase[I18nNumLanguages];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user