diff options
| author | Thomas Reufer <thomas@reufer.ch> | 2014-03-24 21:42:55 +0100 |
|---|---|---|
| committer | Thomas Reufer <thomas@reufer.ch> | 2014-03-24 21:42:55 +0100 |
| commit | bdb03849d1e553ea6bc14643f3a135c75079b2f3 (patch) | |
| tree | 53dc9bdfee3678b6e3bc71be382aa6841902f501 | |
| parent | 32d5868acc4c251d979eefb4f8e006b900ca0fd6 (diff) | |
| download | vdr-plugin-rpihddevice-bdb03849d1e553ea6bc14643f3a135c75079b2f3.tar.gz vdr-plugin-rpihddevice-bdb03849d1e553ea6bc14643f3a135c75079b2f3.tar.bz2 | |
added Finnish translations (thanks to Rolf Ahrenberg)
| -rw-r--r-- | po/fi_FI.po | 35 | ||||
| -rw-r--r-- | rpihddevice.c | 4 |
2 files changed, 37 insertions, 2 deletions
diff --git a/po/fi_FI.po b/po/fi_FI.po new file mode 100644 index 0000000..4cb0eba --- /dev/null +++ b/po/fi_FI.po @@ -0,0 +1,35 @@ +# Finnish translations for vdr-rpihddevice package. +# Copyright (C) 2014 THE vdr-rpihddevice'S COPYRIGHT HOLDER +# This file is distributed under the same license as the vdr-rpihddevice package. +# Rolf Ahrenberg, 2014 +# +msgid "" +msgstr "" +"Project-Id-Version: vdr-rpihddevice 0.0.8\n" +"Report-Msgid-Bugs-To: <see README>\n" +"POT-Creation-Date: 2014-03-22 03:22+0200\n" +"PO-Revision-Date: 2014-03-22 03:22+0200\n" +"Last-Translator: Rolf Ahrenberg\n" +"Language-Team: Finnish <vdr@linuxtv.org>\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "video format not supported!" +msgstr "Kuvaformaatti ei ole tuettu!" + +msgid "HD output device for Raspberry Pi" +msgstr "Raspberry Pi HD-ulostulolaite" + +msgid "analog" +msgstr "analoginen" + +msgid "HDMI" +msgstr "HDMI" + +msgid "Audio Port" +msgstr "Äänilähtö" + +msgid "Digital Audio Pass-Through" +msgstr "Digitaaliäänen läpivienti" diff --git a/rpihddevice.c b/rpihddevice.c index 4a3f597..cc10dd3 100644 --- a/rpihddevice.c +++ b/rpihddevice.c @@ -13,7 +13,7 @@ #include "tools.h" static const char *VERSION = "0.0.8"; -static const char *DESCRIPTION = tr("HD output device for Raspberry Pi"); +static const char *DESCRIPTION = trNOOP("HD output device for Raspberry Pi"); class cPluginRpiHdDevice : public cPlugin { @@ -27,7 +27,7 @@ public: cPluginRpiHdDevice(void); virtual ~cPluginRpiHdDevice(); virtual const char *Version(void) { return VERSION; } - virtual const char *Description(void) { return DESCRIPTION; } + virtual const char *Description(void) { return tr(DESCRIPTION); } virtual const char *CommandLineHelp(void) { return NULL; } virtual bool ProcessArgs(int argc, char *argv[]) { return true; } virtual bool Initialize(void); |
