Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 439970 | Differences between
and this patch

Collapse All | Expand All

(-)vdr-ffnetdev-0.1.0.old/ffnetdev.c (-5 / +2 lines)
Lines 9-16 Link Here
9
#include <stdlib.h>
9
#include <stdlib.h>
10
10
11
#include <vdr/tools.h>
11
#include <vdr/tools.h>
12
#include <vdr/i18n.h>
12
13
13
#include "i18n.h"
14
#include "tsworker.h"
14
#include "tsworker.h"
15
#include "netosd.h"
15
#include "netosd.h"
16
#include "ffnetdev.h"
16
#include "ffnetdev.h"
Lines 22-28 Link Here
22
22
23
23
24
const char *cPluginFFNetDev::VERSION = "0.1.0";
24
const char *cPluginFFNetDev::VERSION = "0.1.0";
25
const char *cPluginFFNetDev::DESCRIPTION 		= "Full Featured Network Device for Streaming";
25
const char *cPluginFFNetDev::DESCRIPTION 		= trNOOP("Full Featured Network Device for Streaming");
26
//const char *cOSDWorker::MAINMENUENTRY 		= "FFNetDev";
26
//const char *cOSDWorker::MAINMENUENTRY 		= "FFNetDev";
27
 
27
 
28
// --- cNetOSDProvider -----------------------------------------------
28
// --- cNetOSDProvider -----------------------------------------------
Lines 134-142 Link Here
134
bool cPluginFFNetDev::Start(void)
134
bool cPluginFFNetDev::Start(void)
135
{
135
{
136
  // Start any background activities the plugin shall perform.
136
  // Start any background activities the plugin shall perform.
137
  RegisterI18n(Phrases);
138
  
139
  	  
140
  cOSDWorker::Init(OSDPort, this);
137
  cOSDWorker::Init(OSDPort, this);
141
  cTSWorker::Init(m_StreamDevice, TSPort, this);
138
  cTSWorker::Init(m_StreamDevice, TSPort, this);
142
 
139
 
(-)vdr-ffnetdev-0.1.0.old/i18n.c (-44 lines)
Lines 1-44 Link Here
1
/*
2
 * i18n.c: Internationalization
3
 *
4
 * See the README file for copyright information and how to reach the author.
5
 *
6
 */
7
8
#include "i18n.h"
9
10
const tI18nPhrase Phrases[] = {
11
  { "Full Featured Network Device for Streaming",
12
    "Full Featured Network Device for Streaming",
13
    "",// TODO
14
    "",// TODO
15
    "",// TODO
16
    "",// TODO
17
    "",// TODO
18
    "",// TODO
19
    "",// TODO
20
    "",// TODO
21
    "",// TODO
22
    "",// TODO
23
    "",// TODO
24
    "",// TODO
25
    "",// TODO
26
  },
27
  { "auto set as primary device",
28
    "auto set as primary device",
29
    "",// TODO
30
    "",// TODO
31
    "",// TODO
32
    "",// TODO
33
    "",// TODO
34
    "",// TODO
35
    "",// TODO
36
    "",// TODO
37
    "",// TODO
38
    "",// TODO
39
    "",// TODO
40
    "",// TODO
41
    "",// TODO
42
  },
43
  { NULL }
44
  };
(-)vdr-ffnetdev-0.1.0.old/i18n.h (-15 lines)
Lines 1-15 Link Here
1
/*
2
 * i18n.h: Internationalization
3
 *
4
 * See the README file for copyright information and how to reach the author.
5
 *
6
 */
7
8
#ifndef _I18N__H
9
#define _I18N__H
10
11
#include <vdr/i18n.h>
12
13
extern const tI18nPhrase Phrases[];
14
15
#endif //_I18N__H
(-)vdr-ffnetdev-0.1.0.old/Makefile (-4 / +28 lines)
Lines 46-54 Link Here
46
46
47
### The object files (add further files here):
47
### The object files (add further files here):
48
48
49
COMMONOBJS = i18n.o \
49
COMMONOBJS = tools/source.o tools/select.o tools/socket.o tools/tools.o 
50
	\
51
	tools/source.o tools/select.o tools/socket.o tools/tools.o 
52
	
50
	
53
51
54
SERVEROBJS = $(PLUGIN).o \
52
SERVEROBJS = $(PLUGIN).o \
Lines 87-95 Link Here
87
85
88
-include $(DEPFILE)
86
-include $(DEPFILE)
89
87
88
### Internationalization (I18N):
89
90
PODIR     = po
91
LOCALEDIR = $(VDRDIR)/locale
92
I18Npo    = $(wildcard $(PODIR)/*.po)
93
I18Nmo    = $(addsuffix .mo, $(foreach file, $(I18Npo), $(basename $(file))))
94
I18Ndirs  = $(notdir $(foreach file, $(I18Npo), $(basename $(file))))
95
I18Npot   = $(PODIR)/$(PLUGIN).pot
96
97
%.mo: %.po
98
	msgfmt -c -o $@ $<
99
100
$(I18Npot): $(wildcard *.c)
101
	xgettext -C -cTRANSLATORS --no-wrap -F -k -ktr -ktrNOOP --msgid-bugs-address='<dev@erichseifert.de>' -o $@ $(wildcard *.c)
102
103
$(I18Npo): $(I18Npot)
104
	msgmerge -U --no-wrap -F --backup=none -q $@ $<
105
106
i18n: $(I18Nmo)
107
	@mkdir -p $(LOCALEDIR)
108
	for i in $(I18Ndirs); do\
109
	    mkdir -p $(LOCALEDIR)/$$i/LC_MESSAGES;\
110
	    cp $(PODIR)/$$i.mo $(LOCALEDIR)/$$i/LC_MESSAGES/vdr-$(PLUGIN).mo;\
111
	    done
112
90
### Targets:
113
### Targets:
91
114
92
all: libvdr-$(PLUGIN).so
115
all: libvdr-$(PLUGIN).so i18n
93
116
94
libvdr-$(PLUGIN).so: $(SERVEROBJS) $(COMMONOBJS)
117
libvdr-$(PLUGIN).so: $(SERVEROBJS) $(COMMONOBJS)
95
118
Lines 106-109 Link Here
106
	@echo Distribution package created as $(PACKAGE).tar.bz2
129
	@echo Distribution package created as $(PACKAGE).tar.bz2
107
130
108
clean:
131
clean:
132
	@-rm -f $(PODIR)/*.mo $(PODIR)/*.pot
109
	@-rm -f $(COMMONOBJS) $(SERVEROBJS) $(DEPFILE) *.so *.tar.bz2 core* *~ *.bak
133
	@-rm -f $(COMMONOBJS) $(SERVEROBJS) $(DEPFILE) *.so *.tar.bz2 core* *~ *.bak
(-)vdr-ffnetdev-0.1.0.old/po/ca_ES.po (+31 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Marc Rovira Vall <tm05462@salleURL.edu>, 2003
5
# Ramon Roca <ramon.roca@xcombo.com>, 2003
6
# Jordi Vilà <jvila@tinet.org>, 2003
7
#
8
msgid ""
9
msgstr ""
10
"Project-Id-Version: VDR 1.7.27\n"
11
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
12
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
13
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
14
"Last-Translator: Jordi Vilà <jvila@tinet.org>\n"
15
"Language-Team: <vdr@linuxtv.org>\n"
16
"Language: \n"
17
"MIME-Version: 1.0\n"
18
"Content-Type: text/plain; charset=ISO-8859-1\n"
19
"Content-Transfer-Encoding: 8bit\n"
20
21
#: ffnetdevsetup.c:18
22
msgid "auto set as primary device"
23
msgstr ""
24
25
#: ffnetdevsetup.c:18
26
msgid "no"
27
msgstr ""
28
29
#: ffnetdevsetup.c:18
30
msgid "yes"
31
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/cs_CZ.po (+29 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Vladimír Bárta <vladimir.barta@k2atmitec.cz>, 2006
5
#
6
msgid ""
7
msgstr ""
8
"Project-Id-Version: VDR 1.7.27\n"
9
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
10
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
11
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
12
"Last-Translator: Vladimír Bárta <vladimir.barta@k2atmitec.cz>\n"
13
"Language-Team: <vdr@linuxtv.org>\n"
14
"Language: \n"
15
"MIME-Version: 1.0\n"
16
"Content-Type: text/plain; charset=ISO-8859-2\n"
17
"Content-Transfer-Encoding: 8bit\n"
18
19
#: ffnetdevsetup.c:18
20
msgid "auto set as primary device"
21
msgstr ""
22
23
#: ffnetdevsetup.c:18
24
msgid "no"
25
msgstr ""
26
27
#: ffnetdevsetup.c:18
28
msgid "yes"
29
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/da_DK.po (+29 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Mogens Elneff <mogens@elneff.dk>, 2004
5
#
6
msgid ""
7
msgstr ""
8
"Project-Id-Version: VDR 1.7.27\n"
9
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
10
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
11
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
12
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
13
"Language-Team: <vdr@linuxtv.org>\n"
14
"Language: \n"
15
"MIME-Version: 1.0\n"
16
"Content-Type: text/plain; charset=ISO-8859-15\n"
17
"Content-Transfer-Encoding: 8bit\n"
18
19
#: ffnetdevsetup.c:18
20
msgid "auto set as primary device"
21
msgstr ""
22
23
#: ffnetdevsetup.c:18
24
msgid "no"
25
msgstr ""
26
27
#: ffnetdevsetup.c:18
28
msgid "yes"
29
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/de_DE.po (+30 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Klaus Schmidinger <kls@cadsoft.de>, 2000
5
# Erich Seifert <dev@erichseifert.de>, 2012
6
#
7
msgid ""
8
msgstr ""
9
"Project-Id-Version: VDR 1.7.27\n"
10
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
11
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
12
"PO-Revision-Date: 2012-10-30 14:37+0100\n"
13
"Last-Translator: Klaus Schmidinger <kls@cadsoft.de>\n"
14
"Language-Team: <vdr@linuxtv.org>\n"
15
"Language: \n"
16
"MIME-Version: 1.0\n"
17
"Content-Type: text/plain; charset=ISO-8859-15\n"
18
"Content-Transfer-Encoding: 8bit\n"
19
20
#: ffnetdevsetup.c:18
21
msgid "auto set as primary device"
22
msgstr "Automatisch als primäres Gerät festlegen"
23
24
#: ffnetdevsetup.c:18
25
msgid "no"
26
msgstr "nein"
27
28
#: ffnetdevsetup.c:18
29
msgid "yes"
30
msgstr "ja"
(-)vdr-ffnetdev-0.1.0.old/po/el_GR.po (+29 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Dimitrios Dimitrakos <mail@dimitrios.de>, 2002
5
#
6
msgid ""
7
msgstr ""
8
"Project-Id-Version: VDR 1.7.27\n"
9
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
10
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
11
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
12
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
13
"Language-Team: <vdr@linuxtv.org>\n"
14
"Language: \n"
15
"MIME-Version: 1.0\n"
16
"Content-Type: text/plain; charset=ISO-8859-7\n"
17
"Content-Transfer-Encoding: 8bit\n"
18
19
#: ffnetdevsetup.c:18
20
msgid "auto set as primary device"
21
msgstr ""
22
23
#: ffnetdevsetup.c:18
24
msgid "no"
25
msgstr ""
26
27
#: ffnetdevsetup.c:18
28
msgid "yes"
29
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/es_ES.po (+29 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Ruben Nunez Francisco <ruben.nunez@tang-it.com>, 2002
5
#
6
msgid ""
7
msgstr ""
8
"Project-Id-Version: VDR 1.7.27\n"
9
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
10
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
11
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
12
"Last-Translator: Ruben Nunez Francisco <ruben.nunez@tang-it.com>\n"
13
"Language-Team: <vdr@linuxtv.org>\n"
14
"Language: \n"
15
"MIME-Version: 1.0\n"
16
"Content-Type: text/plain; charset=ISO-8859-15\n"
17
"Content-Transfer-Encoding: 8bit\n"
18
19
#: ffnetdevsetup.c:18
20
msgid "auto set as primary device"
21
msgstr ""
22
23
#: ffnetdevsetup.c:18
24
msgid "no"
25
msgstr ""
26
27
#: ffnetdevsetup.c:18
28
msgid "yes"
29
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/et_EE.po (+29 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Arthur Konovalov <kasjas@hot.ee>, 2004
5
#
6
msgid ""
7
msgstr ""
8
"Project-Id-Version: VDR 1.7.27\n"
9
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
10
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
11
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
12
"Last-Translator: Arthur Konovalov <kasjas@hot.ee>\n"
13
"Language-Team: <vdr@linuxtv.org>\n"
14
"Language: \n"
15
"MIME-Version: 1.0\n"
16
"Content-Type: text/plain; charset=ISO-8859-13\n"
17
"Content-Transfer-Encoding: 8bit\n"
18
19
#: ffnetdevsetup.c:18
20
msgid "auto set as primary device"
21
msgstr ""
22
23
#: ffnetdevsetup.c:18
24
msgid "no"
25
msgstr ""
26
27
#: ffnetdevsetup.c:18
28
msgid "yes"
29
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/ffnetdev.pot (+30 lines)
Line 0 Link Here
1
# SOME DESCRIPTIVE TITLE.
2
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
# This file is distributed under the same license as the PACKAGE package.
4
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
#
6
#, fuzzy
7
msgid ""
8
msgstr ""
9
"Project-Id-Version: PACKAGE VERSION\n"
10
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
11
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
12
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
"Language-Team: LANGUAGE <LL@li.org>\n"
15
"Language: \n"
16
"MIME-Version: 1.0\n"
17
"Content-Type: text/plain; charset=CHARSET\n"
18
"Content-Transfer-Encoding: 8bit\n"
19
20
#: ffnetdevsetup.c:18
21
msgid "auto set as primary device"
22
msgstr ""
23
24
#: ffnetdevsetup.c:18
25
msgid "no"
26
msgstr ""
27
28
#: ffnetdevsetup.c:18
29
msgid "yes"
30
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/fi_FI.po (+32 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Hannu Savolainen <hannu@opensound.com>, 2002
5
# Jaakko Hyvätti <jaakko@hyvatti.iki.fi>, 2002
6
# Niko Tarnanen <niko.tarnanen@hut.fi>, 2003
7
# Rolf Ahrenberg <rahrenbe@cc.hut.fi>, 2003
8
#
9
msgid ""
10
msgstr ""
11
"Project-Id-Version: VDR 1.7.27\n"
12
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
13
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
14
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
15
"Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n"
16
"Language-Team: <vdr@linuxtv.org>\n"
17
"Language: \n"
18
"MIME-Version: 1.0\n"
19
"Content-Type: text/plain; charset=ISO-8859-15\n"
20
"Content-Transfer-Encoding: 8bit\n"
21
22
#: ffnetdevsetup.c:18
23
msgid "auto set as primary device"
24
msgstr ""
25
26
#: ffnetdevsetup.c:18
27
msgid "no"
28
msgstr ""
29
30
#: ffnetdevsetup.c:18
31
msgid "yes"
32
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/fr_FR.po (+32 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Jean-Claude Repetto <jc@repetto.org>, 2001
5
# Olivier Jacques <jacquesolivier@hotmail.com>, 2003
6
# Gregoire Favre <greg@magma.unil.ch>, 2003
7
# Nicolas Huillard <nhuillard@e-dition.fr>, 2005
8
#
9
msgid ""
10
msgstr ""
11
"Project-Id-Version: VDR 1.7.27\n"
12
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
13
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
14
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
15
"Last-Translator: Nicolas Huillard <nhuillard@e-dition.fr>\n"
16
"Language-Team: <vdr@linuxtv.org>\n"
17
"Language: \n"
18
"MIME-Version: 1.0\n"
19
"Content-Type: text/plain; charset=ISO-8859-1\n"
20
"Content-Transfer-Encoding: 8bit\n"
21
22
#: ffnetdevsetup.c:18
23
msgid "auto set as primary device"
24
msgstr ""
25
26
#: ffnetdevsetup.c:18
27
msgid "no"
28
msgstr ""
29
30
#: ffnetdevsetup.c:18
31
msgid "yes"
32
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/hr_HR.po (+30 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Drazen Dupor <drazen.dupor@dupor.com>, 2004
5
# Dino Ravnic <dino.ravnic@fer.hr>, 2004
6
#
7
msgid ""
8
msgstr ""
9
"Project-Id-Version: VDR 1.7.27\n"
10
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
11
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
12
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
13
"Last-Translator: Drazen Dupor <drazen.dupor@dupor.com>\n"
14
"Language-Team: <vdr@linuxtv.org>\n"
15
"Language: \n"
16
"MIME-Version: 1.0\n"
17
"Content-Type: text/plain; charset=ISO-8859-2\n"
18
"Content-Transfer-Encoding: 8bit\n"
19
20
#: ffnetdevsetup.c:18
21
msgid "auto set as primary device"
22
msgstr ""
23
24
#: ffnetdevsetup.c:18
25
msgid "no"
26
msgstr ""
27
28
#: ffnetdevsetup.c:18
29
msgid "yes"
30
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/hu_HU.po (+30 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Istvan Koenigsberger <istvnko@hotmail.com>, 2002
5
# Guido Josten <guido.josten@t-online.de>, 2002
6
#
7
msgid ""
8
msgstr ""
9
"Project-Id-Version: VDR 1.7.27\n"
10
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
11
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
12
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
13
"Last-Translator: Istvan Koenigsberger <istvnko@hotmail.com>, Guido Josten <guido.josten@t-online.de>\n"
14
"Language-Team: <vdr@linuxtv.org>\n"
15
"Language: \n"
16
"MIME-Version: 1.0\n"
17
"Content-Type: text/plain; charset=ISO-8859-2\n"
18
"Content-Transfer-Encoding: 8bit\n"
19
20
#: ffnetdevsetup.c:18
21
msgid "auto set as primary device"
22
msgstr ""
23
24
#: ffnetdevsetup.c:18
25
msgid "no"
26
msgstr ""
27
28
#: ffnetdevsetup.c:18
29
msgid "yes"
30
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/it_IT.po (+31 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Alberto Carraro <bertocar@tin.it>, 2001
5
# Antonio Ospite <ospite@studenti.unina.it>, 2003
6
# Sean Carlos <seanc@libero.it>, 2005
7
#
8
msgid ""
9
msgstr ""
10
"Project-Id-Version: VDR 1.7.27\n"
11
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
12
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
13
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
14
"Last-Translator: Sean Carlos <seanc@libero.it>\n"
15
"Language-Team: <vdr@linuxtv.org>\n"
16
"Language: \n"
17
"MIME-Version: 1.0\n"
18
"Content-Type: text/plain; charset=ISO-8859-15\n"
19
"Content-Transfer-Encoding: 8bit\n"
20
21
#: ffnetdevsetup.c:18
22
msgid "auto set as primary device"
23
msgstr ""
24
25
#: ffnetdevsetup.c:18
26
msgid "no"
27
msgstr ""
28
29
#: ffnetdevsetup.c:18
30
msgid "yes"
31
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/nl_NL.po (+31 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Arnold Niessen <niessen@iae.nl> <arnold.niessen@philips.com>, 2001
5
# Hans Dingemans <hans.dingemans@tacticalops.nl>, 2003
6
# Maarten Wisse <Maarten.Wisse@urz.uni-hd.de>, 2005
7
#
8
msgid ""
9
msgstr ""
10
"Project-Id-Version: VDR 1.7.27\n"
11
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
12
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
13
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
14
"Last-Translator: Maarten Wisse <Maarten.Wisse@urz.uni-hd.de>\n"
15
"Language-Team: <vdr@linuxtv.org>\n"
16
"Language: \n"
17
"MIME-Version: 1.0\n"
18
"Content-Type: text/plain; charset=ISO-8859-15\n"
19
"Content-Transfer-Encoding: 8bit\n"
20
21
#: ffnetdevsetup.c:18
22
msgid "auto set as primary device"
23
msgstr ""
24
25
#: ffnetdevsetup.c:18
26
msgid "no"
27
msgstr ""
28
29
#: ffnetdevsetup.c:18
30
msgid "yes"
31
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/nn_NO.po (+30 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Jørgen Tvedt <pjtvedt@online.no>, 2001
5
# Truls Slevigen <truls@slevigen.no>, 2002
6
#
7
msgid ""
8
msgstr ""
9
"Project-Id-Version: VDR 1.7.27\n"
10
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
11
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
12
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
13
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
14
"Language-Team: <vdr@linuxtv.org>\n"
15
"Language: \n"
16
"MIME-Version: 1.0\n"
17
"Content-Type: text/plain; charset=ISO-8859-1\n"
18
"Content-Transfer-Encoding: 8bit\n"
19
20
#: ffnetdevsetup.c:18
21
msgid "auto set as primary device"
22
msgstr ""
23
24
#: ffnetdevsetup.c:18
25
msgid "no"
26
msgstr ""
27
28
#: ffnetdevsetup.c:18
29
msgid "yes"
30
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/pl_PL.po (+29 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Michael Rakowski <mrak@gmx.de>, 2002
5
#
6
msgid ""
7
msgstr ""
8
"Project-Id-Version: VDR 1.7.27\n"
9
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
10
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
11
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
12
"Last-Translator: Michael Rakowski <mrak@gmx.de>\n"
13
"Language-Team: <vdr@linuxtv.org>\n"
14
"Language: \n"
15
"MIME-Version: 1.0\n"
16
"Content-Type: text/plain; charset=ISO-8859-2\n"
17
"Content-Transfer-Encoding: 8bit\n"
18
19
#: ffnetdevsetup.c:18
20
msgid "auto set as primary device"
21
msgstr ""
22
23
#: ffnetdevsetup.c:18
24
msgid "no"
25
msgstr ""
26
27
#: ffnetdevsetup.c:18
28
msgid "yes"
29
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/pt_PT.po (+29 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Paulo Lopes <pmml@netvita.pt>, 2001
5
#
6
msgid ""
7
msgstr ""
8
"Project-Id-Version: VDR 1.7.27\n"
9
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
10
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
11
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
12
"Last-Translator: Paulo Lopes <pmml@netvita.pt>\n"
13
"Language-Team: <vdr@linuxtv.org>\n"
14
"Language: \n"
15
"MIME-Version: 1.0\n"
16
"Content-Type: text/plain; charset=ISO-8859-1\n"
17
"Content-Transfer-Encoding: 8bit\n"
18
19
#: ffnetdevsetup.c:18
20
msgid "auto set as primary device"
21
msgstr ""
22
23
#: ffnetdevsetup.c:18
24
msgid "no"
25
msgstr ""
26
27
#: ffnetdevsetup.c:18
28
msgid "yes"
29
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/ro_RO.po (+30 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Paul Lacatus <paul@campina.iiruc.ro>, 2002
5
# Lucian Muresan <lucianm@users.sourceforge.net>, 2004
6
#
7
msgid ""
8
msgstr ""
9
"Project-Id-Version: VDR 1.7.27\n"
10
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
11
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
12
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
13
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
14
"Language-Team: <vdr@linuxtv.org>\n"
15
"Language: \n"
16
"MIME-Version: 1.0\n"
17
"Content-Type: text/plain; charset=ISO-8859-2\n"
18
"Content-Transfer-Encoding: 8bit\n"
19
20
#: ffnetdevsetup.c:18
21
msgid "auto set as primary device"
22
msgstr ""
23
24
#: ffnetdevsetup.c:18
25
msgid "no"
26
msgstr ""
27
28
#: ffnetdevsetup.c:18
29
msgid "yes"
30
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/ru_RU.po (+29 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Vyacheslav Dikonov <sdiconov@mail.ru>, 2004
5
#
6
msgid ""
7
msgstr ""
8
"Project-Id-Version: VDR 1.7.27\n"
9
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
10
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
11
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
12
"Last-Translator: Vyacheslav Dikonov <sdiconov@mail.ru>\n"
13
"Language-Team: <vdr@linuxtv.org>\n"
14
"Language: \n"
15
"MIME-Version: 1.0\n"
16
"Content-Type: text/plain; charset=ISO-8859-5\n"
17
"Content-Transfer-Encoding: 8bit\n"
18
19
#: ffnetdevsetup.c:18
20
msgid "auto set as primary device"
21
msgstr ""
22
23
#: ffnetdevsetup.c:18
24
msgid "no"
25
msgstr ""
26
27
#: ffnetdevsetup.c:18
28
msgid "yes"
29
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/sl_SI.po (+30 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Miha Setina <mihasetina@softhome.net>, 2000
5
# Matjaz Thaler <matjaz.thaler@guest.arnes.si>, 2003
6
#
7
msgid ""
8
msgstr ""
9
"Project-Id-Version: VDR 1.7.27\n"
10
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
11
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
12
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
13
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
14
"Language-Team: <vdr@linuxtv.org>\n"
15
"Language: \n"
16
"MIME-Version: 1.0\n"
17
"Content-Type: text/plain; charset=ISO-8859-2\n"
18
"Content-Transfer-Encoding: 8bit\n"
19
20
#: ffnetdevsetup.c:18
21
msgid "auto set as primary device"
22
msgstr ""
23
24
#: ffnetdevsetup.c:18
25
msgid "no"
26
msgstr ""
27
28
#: ffnetdevsetup.c:18
29
msgid "yes"
30
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/sv_SE.po (+30 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Tomas Prybil <tomas@prybil.se>, 2002
5
# Jan Ekholm <chakie@infa.abo.fi>, 2003
6
#
7
msgid ""
8
msgstr ""
9
"Project-Id-Version: VDR 1.7.27\n"
10
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
11
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
12
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
13
"Last-Translator: Tomas Prybil <tomas@prybil.se>\n"
14
"Language-Team: <vdr@linuxtv.org>\n"
15
"Language: \n"
16
"MIME-Version: 1.0\n"
17
"Content-Type: text/plain; charset=ISO-8859-1\n"
18
"Content-Transfer-Encoding: 8bit\n"
19
20
#: ffnetdevsetup.c:18
21
msgid "auto set as primary device"
22
msgstr ""
23
24
#: ffnetdevsetup.c:18
25
msgid "no"
26
msgstr ""
27
28
#: ffnetdevsetup.c:18
29
msgid "yes"
30
msgstr ""
(-)vdr-ffnetdev-0.1.0.old/po/tr_TR.po (+29 lines)
Line 0 Link Here
1
# VDR plugin language source file.
2
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
3
# This file is distributed under the same license as the VDR package.
4
# Oktay Yolgeçen <oktay_73@yahoo.de>, 2007
5
#
6
msgid ""
7
msgstr ""
8
"Project-Id-Version: VDR 1.7.27\n"
9
"Report-Msgid-Bugs-To: dev@erichseifert.de\n"
10
"POT-Creation-Date: 2012-10-30 14:31+0100\n"
11
"PO-Revision-Date: 2012-10-30 14:31+0100\n"
12
"Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n"
13
"Language-Team: <vdr@linuxtv.org>\n"
14
"Language: \n"
15
"MIME-Version: 1.0\n"
16
"Content-Type: text/plain; charset=ISO-8859-9\n"
17
"Content-Transfer-Encoding: 8bit\n"
18
19
#: ffnetdevsetup.c:18
20
msgid "auto set as primary device"
21
msgstr ""
22
23
#: ffnetdevsetup.c:18
24
msgid "no"
25
msgstr ""
26
27
#: ffnetdevsetup.c:18
28
msgid "yes"
29
msgstr ""

Return to bug 439970