mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Switched I18N to gettext
This commit is contained in:
@@ -49,3 +49,7 @@ VDR Plugin 'hello' Revision History
|
||||
2006-04-22: Version 0.1.1
|
||||
|
||||
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
|
||||
|
||||
2007-08-11: Version 0.2.0
|
||||
|
||||
- Switched to 'gettext' internationalization.
|
||||
|
@@ -1,11 +1,13 @@
|
||||
#
|
||||
# Makefile for a Video Disk Recorder plugin
|
||||
#
|
||||
# $Id: Makefile 1.15 2006/09/09 12:38:35 kls Exp $
|
||||
# $Id: Makefile 1.16 2007/08/11 10:18:16 kls Exp $
|
||||
|
||||
# The official name of this plugin.
|
||||
# This name will be used in the '-P...' option of VDR to load the plugin.
|
||||
# By default the main source file also carries this name.
|
||||
# IMPORTANT: the presence of this macro is important for the Make.config
|
||||
# file. So it must be defined, even if it is not used here!
|
||||
#
|
||||
PLUGIN = hello
|
||||
|
||||
@@ -45,25 +47,50 @@ DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
|
||||
|
||||
### The object files (add further files here):
|
||||
|
||||
OBJS = $(PLUGIN).o i18n.o
|
||||
OBJS = $(PLUGIN).o
|
||||
|
||||
### Implicit rules:
|
||||
|
||||
%.o: %.c
|
||||
$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $<
|
||||
|
||||
# Dependencies:
|
||||
### Dependencies:
|
||||
|
||||
MAKEDEP = g++ -MM -MG
|
||||
MAKEDEP = $(CXX) -MM -MG
|
||||
DEPFILE = .dependencies
|
||||
$(DEPFILE): Makefile
|
||||
@$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@
|
||||
|
||||
-include $(DEPFILE)
|
||||
|
||||
### Internationalization (I18N):
|
||||
|
||||
PODIR = po
|
||||
LOCALEDIR = $(VDRDIR)/locale
|
||||
I18Npo = $(wildcard $(PODIR)/*.po)
|
||||
I18Nmo = $(addsuffix .mo, $(foreach file, $(I18Npo), $(basename $(file))))
|
||||
I18Ndirs = $(notdir $(foreach file, $(I18Npo), $(basename $(file))))
|
||||
I18Npot = $(PODIR)/$(PLUGIN).pot
|
||||
|
||||
%.mo: %.po
|
||||
msgfmt -c -o $@ $<
|
||||
|
||||
$(I18Npot): $(wildcard *.c)
|
||||
xgettext -C -cTRANSLATORS --no-wrap -F -k -ktr -ktrNOOP --msgid-bugs-address='<vdr-bugs@cadsoft.de>' -o $@ $(wildcard *.c)
|
||||
|
||||
$(I18Npo): $(I18Npot)
|
||||
msgmerge -U --no-wrap -F --backup=none -q $@ $<
|
||||
|
||||
i18n: $(I18Nmo)
|
||||
@mkdir -p $(LOCALEDIR)
|
||||
for i in $(I18Ndirs); do\
|
||||
mkdir -p $(LOCALEDIR)/$$i/LC_MESSAGES;\
|
||||
cp $(PODIR)/$$i.mo $(LOCALEDIR)/$$i/LC_MESSAGES/$(PLUGIN).mo;\
|
||||
done
|
||||
|
||||
### Targets:
|
||||
|
||||
all: libvdr-$(PLUGIN).so
|
||||
all: libvdr-$(PLUGIN).so i18n
|
||||
|
||||
libvdr-$(PLUGIN).so: $(OBJS)
|
||||
$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
|
||||
@@ -78,4 +105,5 @@ dist: clean
|
||||
@echo Distribution package created as $(PACKAGE).tgz
|
||||
|
||||
clean:
|
||||
@-rm -f $(PODIR)/*.mo $(PODIR)/*.pot
|
||||
@-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~
|
||||
|
@@ -3,18 +3,18 @@
|
||||
*
|
||||
* See the README file for copyright information and how to reach the author.
|
||||
*
|
||||
* $Id: hello.c 1.12 2006/04/22 09:31:52 kls Exp $
|
||||
* $Id: hello.c 1.13 2007/08/11 09:31:17 kls Exp $
|
||||
*/
|
||||
|
||||
#include <getopt.h>
|
||||
#include <stdlib.h>
|
||||
#include <vdr/i18n.h>
|
||||
#include <vdr/interface.h>
|
||||
#include <vdr/plugin.h>
|
||||
#include "i18n.h"
|
||||
|
||||
static const char *VERSION = "0.1.1";
|
||||
static const char *DESCRIPTION = "A friendly greeting";
|
||||
static const char *MAINMENUENTRY = "Hello";
|
||||
static const char *VERSION = "0.2.0";
|
||||
static const char *DESCRIPTION = trNOOP("A friendly greeting");
|
||||
static const char *MAINMENUENTRY = trNOOP("Hello");
|
||||
|
||||
class cPluginHello : public cPlugin {
|
||||
private:
|
||||
@@ -115,7 +115,6 @@ bool cPluginHello::ProcessArgs(int argc, char *argv[])
|
||||
bool cPluginHello::Start(void)
|
||||
{
|
||||
// Start any background activities the plugin shall perform.
|
||||
RegisterI18n(Phrases);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@@ -1,145 +0,0 @@
|
||||
/*
|
||||
* i18n.c: Internationalization
|
||||
*
|
||||
* See the README file for copyright information and how to reach the author.
|
||||
*
|
||||
* $Id: i18n.c 1.6 2006/04/22 09:30:57 kls Exp $
|
||||
*/
|
||||
|
||||
#include "i18n.h"
|
||||
|
||||
const tI18nPhrase Phrases[] = {
|
||||
{ "Hello",
|
||||
"Hallo",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"Hei",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"Ahoj",
|
||||
},
|
||||
{ "Hello world!",
|
||||
"Hallo Welt!",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"Hei maailma!",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>!",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"Ahoj sv<73>te!",
|
||||
},
|
||||
{ "Howdy folks!",
|
||||
"Tach zusammen!",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"Mit<EFBFBD> kuuluu?",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"<EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>?",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"Nazdar vespolek!",
|
||||
},
|
||||
{ "A friendly greeting",
|
||||
"Ein freundlicher Gru<72>",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"Yst<EFBFBD>v<EFBFBD>llisin terveisin",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"P<EFBFBD><EFBFBD>telsk<EFBFBD> pozdrav",
|
||||
},
|
||||
{ "Greeting time (s)",
|
||||
"Dauer des Gru<72>es (s)",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"Tervehdysaika (s)",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"<EFBFBD>as pozdravu (s)",
|
||||
},
|
||||
{ "Use alternate greeting",
|
||||
"Alternativen Gru<72> verwenden",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"K<EFBFBD>yt<EFBFBD> vaihtoehtoista tervehdyst<73>",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"",// TODO
|
||||
"Pou<EFBFBD><EFBFBD>t alternativn<76> pozdrav",
|
||||
},
|
||||
{ NULL }
|
||||
};
|
@@ -1,16 +0,0 @@
|
||||
/*
|
||||
* i18n.h: Internationalization
|
||||
*
|
||||
* See the README file for copyright information and how to reach the author.
|
||||
*
|
||||
* $Id: i18n.h 1.2 2002/05/11 14:48:16 kls Exp $
|
||||
*/
|
||||
|
||||
#ifndef _I18N__H
|
||||
#define _I18N__H
|
||||
|
||||
#include <vdr/i18n.h>
|
||||
|
||||
extern const tI18nPhrase Phrases[];
|
||||
|
||||
#endif //_I18N__H
|
42
PLUGINS/src/hello/po/ca_ES.po
Normal file
42
PLUGINS/src/hello/po/ca_ES.po
Normal file
@@ -0,0 +1,42 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Marc Rovira Vall <tm05462@salleURL.edu>, 2003
|
||||
# Ramon Roca <ramon.roca@xcombo.com>, 2003
|
||||
# Jordi Vil<69> <jvila@tinet.org>, 2003
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Jordi Vil<69> <jvila@tinet.org>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-1\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr ""
|
40
PLUGINS/src/hello/po/cs_CZ.po
Normal file
40
PLUGINS/src/hello/po/cs_CZ.po
Normal file
@@ -0,0 +1,40 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Vladim<69>r B<>rta <vladimir.barta@k2atmitec.cz>, 2006
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Vladim<69>r B<>rta <vladimir.barta@k2atmitec.cz>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-2\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr "P<><50>telsk<73> pozdrav"
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr "Ahoj"
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr "<22>as pozdravu (s)"
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr "Pou<6F><75>t alternativn<76> pozdrav"
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr "Ahoj sv<73>te!"
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr "Nazdar vespolek!"
|
40
PLUGINS/src/hello/po/da_DK.po
Normal file
40
PLUGINS/src/hello/po/da_DK.po
Normal file
@@ -0,0 +1,40 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Mogens Elneff <mogens@elneff.dk>, 2004
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-15\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr ""
|
40
PLUGINS/src/hello/po/de_DE.po
Normal file
40
PLUGINS/src/hello/po/de_DE.po
Normal file
@@ -0,0 +1,40 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Klaus Schmidinger <kls@cadsoft.de>, 2000
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Klaus Schmidinger <kls@cadsoft.de>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-15\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr "Ein freundlicher Gru<72>"
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr "Hallo"
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr "Dauer des Gru<72>es (s)"
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr "Alternativen Gru<72> verwenden"
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr "Hallo Welt!"
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr "Tach zusammen!"
|
40
PLUGINS/src/hello/po/el_GR.po
Normal file
40
PLUGINS/src/hello/po/el_GR.po
Normal file
@@ -0,0 +1,40 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Dimitrios Dimitrakos <mail@dimitrios.de>, 2002
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-7\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr ""
|
40
PLUGINS/src/hello/po/es_ES.po
Normal file
40
PLUGINS/src/hello/po/es_ES.po
Normal file
@@ -0,0 +1,40 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Ruben Nunez Francisco <ruben.nunez@tang-it.com>, 2002
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Ruben Nunez Francisco <ruben.nunez@tang-it.com>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-15\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr ""
|
40
PLUGINS/src/hello/po/et_EE.po
Normal file
40
PLUGINS/src/hello/po/et_EE.po
Normal file
@@ -0,0 +1,40 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Arthur Konovalov <kasjas@hot.ee>, 2004
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Arthur Konovalov <kasjas@hot.ee>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-13\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr ""
|
43
PLUGINS/src/hello/po/fi_FI.po
Normal file
43
PLUGINS/src/hello/po/fi_FI.po
Normal file
@@ -0,0 +1,43 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Hannu Savolainen <hannu@opensound.com>, 2002
|
||||
# Jaakko Hyv<79>tti <jaakko@hyvatti.iki.fi>, 2002
|
||||
# Niko Tarnanen <niko.tarnanen@hut.fi>, 2003
|
||||
# Rolf Ahrenberg <rahrenbe@cc.hut.fi>, 2003
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-15\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr "Yst<73>v<EFBFBD>llisin terveisin"
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr "Hei"
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr "Tervehdysaika (s)"
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr "K<>yt<79> vaihtoehtoista tervehdyst<73>"
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr "Hei maailma!"
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr "Mit<69> kuuluu?"
|
43
PLUGINS/src/hello/po/fr_FR.po
Normal file
43
PLUGINS/src/hello/po/fr_FR.po
Normal file
@@ -0,0 +1,43 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Jean-Claude Repetto <jc@repetto.org>, 2001
|
||||
# Olivier Jacques <jacquesolivier@hotmail.com>, 2003
|
||||
# Gregoire Favre <greg@magma.unil.ch>, 2003
|
||||
# Nicolas Huillard <nhuillard@e-dition.fr>, 2005
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Nicolas Huillard <nhuillard@e-dition.fr>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-1\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr ""
|
41
PLUGINS/src/hello/po/hr_HR.po
Normal file
41
PLUGINS/src/hello/po/hr_HR.po
Normal file
@@ -0,0 +1,41 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Drazen Dupor <drazen.dupor@dupor.com>, 2004
|
||||
# Dino Ravnic <dino.ravnic@fer.hr>, 2004
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Drazen Dupor <drazen.dupor@dupor.com>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-2\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr ""
|
41
PLUGINS/src/hello/po/hu_HU.po
Normal file
41
PLUGINS/src/hello/po/hu_HU.po
Normal file
@@ -0,0 +1,41 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Istvan Koenigsberger <istvnko@hotmail.com>, 2002
|
||||
# Guido Josten <guido.josten@t-online.de>, 2002
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Istvan Koenigsberger <istvnko@hotmail.com>, Guido Josten <guido.josten@t-online.de>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-2\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr ""
|
42
PLUGINS/src/hello/po/it_IT.po
Normal file
42
PLUGINS/src/hello/po/it_IT.po
Normal file
@@ -0,0 +1,42 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Alberto Carraro <bertocar@tin.it>, 2001
|
||||
# Antonio Ospite <ospite@studenti.unina.it>, 2003
|
||||
# Sean Carlos <seanc@libero.it>, 2005
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Sean Carlos <seanc@libero.it>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-15\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr ""
|
42
PLUGINS/src/hello/po/nl_NL.po
Normal file
42
PLUGINS/src/hello/po/nl_NL.po
Normal file
@@ -0,0 +1,42 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Arnold Niessen <niessen@iae.nl> <arnold.niessen@philips.com>, 2001
|
||||
# Hans Dingemans <hans.dingemans@tacticalops.nl>, 2003
|
||||
# Maarten Wisse <Maarten.Wisse@urz.uni-hd.de>, 2005
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Maarten Wisse <Maarten.Wisse@urz.uni-hd.de>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-15\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr ""
|
41
PLUGINS/src/hello/po/nn_NO.po
Normal file
41
PLUGINS/src/hello/po/nn_NO.po
Normal file
@@ -0,0 +1,41 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# J<>rgen Tvedt <pjtvedt@online.no>, 2001
|
||||
# Truls Slevigen <truls@slevigen.no>, 2002
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-1\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr ""
|
40
PLUGINS/src/hello/po/pl_PL.po
Normal file
40
PLUGINS/src/hello/po/pl_PL.po
Normal file
@@ -0,0 +1,40 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Michael Rakowski <mrak@gmx.de>, 2002
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Michael Rakowski <mrak@gmx.de>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-2\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr ""
|
40
PLUGINS/src/hello/po/pt_PT.po
Normal file
40
PLUGINS/src/hello/po/pt_PT.po
Normal file
@@ -0,0 +1,40 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Paulo Lopes <pmml@netvita.pt>, 2001
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Paulo Lopes <pmml@netvita.pt>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-1\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr ""
|
41
PLUGINS/src/hello/po/ro_RO.po
Normal file
41
PLUGINS/src/hello/po/ro_RO.po
Normal file
@@ -0,0 +1,41 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Paul Lacatus <paul@campina.iiruc.ro>, 2002
|
||||
# Lucian Muresan <lucianm@users.sourceforge.net>, 2004
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-2\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr ""
|
40
PLUGINS/src/hello/po/ru_RU.po
Normal file
40
PLUGINS/src/hello/po/ru_RU.po
Normal file
@@ -0,0 +1,40 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Vyacheslav Dikonov <sdiconov@mail.ru>, 2004
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Vyacheslav Dikonov <sdiconov@mail.ru>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!"
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>!"
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>?"
|
41
PLUGINS/src/hello/po/sl_SI.po
Normal file
41
PLUGINS/src/hello/po/sl_SI.po
Normal file
@@ -0,0 +1,41 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Miha Setina <mihasetina@softhome.net>, 2000
|
||||
# Matjaz Thaler <matjaz.thaler@guest.arnes.si>, 2003
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-2\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr ""
|
41
PLUGINS/src/hello/po/sv_SE.po
Normal file
41
PLUGINS/src/hello/po/sv_SE.po
Normal file
@@ -0,0 +1,41 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Tomas Prybil <tomas@prybil.se>, 2002
|
||||
# Jan Ekholm <chakie@infa.abo.fi>, 2003
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Tomas Prybil <tomas@prybil.se>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-1\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr ""
|
40
PLUGINS/src/hello/po/tr_TR.po
Normal file
40
PLUGINS/src/hello/po/tr_TR.po
Normal file
@@ -0,0 +1,40 @@
|
||||
# VDR plugin language source file.
|
||||
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
|
||||
# This file is distributed under the same license as the VDR package.
|
||||
# Oktay Yolge<67>en <oktay_73@yahoo.de>, 2007
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.5.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@cadsoft.de>\n"
|
||||
"POT-Creation-Date: 2007-08-11 14:35+0200\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:34+0200\n"
|
||||
"Last-Translator: Oktay Yolge<67>en <oktay_73@yahoo.de>\n"
|
||||
"Language-Team: <vdr@linuxtv.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-9\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: hello.c:16
|
||||
msgid "A friendly greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:17
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:60
|
||||
msgid "Greeting time (s)"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:61
|
||||
msgid "Use alternate greeting"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Hello world!"
|
||||
msgstr ""
|
||||
|
||||
#: hello.c:129
|
||||
msgid "Howdy folks!"
|
||||
msgstr ""
|
Reference in New Issue
Block a user