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

(-)Makefile (-3 / +1 lines)
Lines 48-56 Link Here
48
48
49
### The object files (add further files here):
49
### The object files (add further files here):
50
50
51
COMMONOBJS = i18n.o \
51
COMMONOBJS = tools/source.o tools/select.o tools/socket.o tools/tools.o 
52
	\
53
	tools/source.o tools/select.o tools/socket.o tools/tools.o 
54
	
52
	
55
53
56
SERVEROBJS = $(PLUGIN).o \
54
SERVEROBJS = $(PLUGIN).o \
(-)ffnetdev.c (-2 lines)
Lines 10-16 Link Here
10
10
11
#include <vdr/tools.h>
11
#include <vdr/tools.h>
12
12
13
#include "i18n.h"
14
#include "tsworker.h"
13
#include "tsworker.h"
15
#include "netosd.h"
14
#include "netosd.h"
16
#include "ffnetdev.h"
15
#include "ffnetdev.h"
Lines 138-144 Link Here
138
bool cPluginFFNetDev::Start(void)
137
bool cPluginFFNetDev::Start(void)
139
{
138
{
140
  // Start any background activities the plugin shall perform.
139
  // Start any background activities the plugin shall perform.
141
  RegisterI18n(Phrases);
142
  
140
  
143
  	  
141
  	  
144
  cOSDWorker::Init(OSDPort, this);
142
  cOSDWorker::Init(OSDPort, this);
(-)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
(-)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
  };

Return to bug 439970