diff options
author | Joachim Wilke <git@joachim-wilke.de> | 2013-01-21 21:30:20 +0100 |
---|---|---|
committer | Joachim Wilke <git@joachim-wilke.de> | 2013-01-21 21:30:20 +0100 |
commit | 16948a8c4094194736f149b7fd74d05161b63e6f (patch) | |
tree | 76709e6241bc995205db09ed0971ca92a23131b7 | |
parent | b5497b7a283296403e2a99a2577438b437d0ffb6 (diff) | |
download | vdr-plugin-lcdproc-rm.tar.gz vdr-plugin-lcdproc-rm.tar.bz2 |
- Update *.po files
-rw-r--r-- | Makefile | 89 | ||||
-rw-r--r-- | po/ca_ES.po | 128 | ||||
-rw-r--r-- | po/cs_CZ.po | 96 | ||||
-rw-r--r-- | po/da_DK.po | 96 | ||||
-rw-r--r-- | po/de_DE.po | 150 | ||||
-rw-r--r-- | po/el_GR.po | 128 | ||||
-rw-r--r-- | po/es_ES.po | 128 | ||||
-rw-r--r-- | po/et_EE.po | 96 | ||||
-rw-r--r-- | po/fi_FI.po | 128 | ||||
-rw-r--r-- | po/fr_FR.po | 128 | ||||
-rw-r--r-- | po/hr_HR.po | 96 | ||||
-rw-r--r-- | po/hu_HU.po | 128 | ||||
-rwxr-xr-x | po/it_IT.po | 157 | ||||
-rw-r--r-- | po/nl_NL.po | 128 | ||||
-rw-r--r-- | po/nn_NO.po | 128 | ||||
-rw-r--r-- | po/pl_PL.po | 128 | ||||
-rw-r--r-- | po/pt_PT.po | 128 | ||||
-rw-r--r-- | po/ro_RO.po | 128 | ||||
-rw-r--r-- | po/ru_RU.po | 157 | ||||
-rw-r--r-- | po/sl_SI.po | 128 | ||||
-rw-r--r-- | po/sv_SE.po | 128 | ||||
-rw-r--r-- | po/tr_TR.po | 96 |
22 files changed, 1023 insertions, 1674 deletions
@@ -6,70 +6,66 @@ # 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. -# IPORTANT: 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 = lcdproc ### The version number of this plugin (taken from the main source file): VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ print $$6 }' | sed -e 's/[";]//g') -### The C++ compiler and options: - -CXX ?= g++ -CXXFLAGS ?= -g -O2 -Wall -Woverloaded-virtual - -### Make sure that necessary options are included: -ifeq ($(strip $(wildcard $(VDRDIR)/Make.global)),) - CXXFLAGS += -fPIC -else - include $(VDRDIR)/Make.global -endif - -### The directory environment: - -VDRDIR ?= ../../.. -LIBDIR = $(VDRDIR)/PLUGINS/lib +# Use package data if installed...otherwise assume we're under the VDR source directory: +PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc)) +LIBDIR = $(DESTDIR)$(call PKGCFG,libdir) +LOCDIR = $(DESTDIR)$(call PKGCFG,locdir) TMPDIR = /tmp -### Allow user defined options to overwrite defaults: - --include $(VDRDIR)/Make.config +### The compiler options: +export CFLAGS = $(call PKGCFG,cflags) +export CXXFLAGS = $(call PKGCFG,cxxflags) -std=c++11 +export LDFLAGS += -lgcrypt -lboost_system -lboost_thread -lpthread ### The version number of VDR's plugin API (taken from VDR's "config.h"): -APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' $(VDRDIR)/config.h) -VDRVERSNUM = $(shell grep 'define VDRVERSNUM ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g') +APIVERSION = $(call PKGCFG,apiversion) DOXYFILE = Doxyfile DOXYGEN = doxygen - ### The name of the distribution archive: ARCHIVE = $(PLUGIN)-$(VERSION) PACKAGE = vdr-$(ARCHIVE) -### Includes and Defines (add further entries here): +### The name of the shared object file: +SOFILE = libvdr-$(PLUGIN).so -INCLUDES += -I$(VDRDIR)/include +### Includes and Defines (add further entries here): -DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"' +DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"' ### The object files (add further files here): OBJS = $(PLUGIN).o lcd.o sockets.o setup.o +### Internationalization (I18N): + +PODIR = po +I18Npo = $(wildcard $(PODIR)/*.po) +I18Nmo = $(addsuffix .mo, $(foreach file, $(I18Npo), $(basename $(file)))) +I18Nmsgs = $(addprefix $(LOCDIR)/, $(addsuffix /LC_MESSAGES/vdr-$(PLUGIN).mo, $(notdir $(foreach file, $(I18Npo), $(basename $(file)))))) +I18Npot = $(PODIR)/$(PLUGIN).pot + ### Targets: -all: libvdr-$(PLUGIN).so i18n -libvdr-$(PLUGIN).so: $(OBJS) +all: $(SOFILE) i18n +$(SOFILE): $(OBJS) $(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ - @cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION) - + +install-lib: $(SOFILE) + install -D $^ $(LIBDIR)/$^.$(APIVERSION) + +install: install-lib install-i18n %.o: %.c $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< - dist: clean @-rm -rf $(TMPDIR)/$(ARCHIVE) @mkdir $(TMPDIR)/$(ARCHIVE) @@ -82,27 +78,25 @@ clean: @-rm -f $(PODIR)/*.mo $(PODIR)/*.pot @-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~ -### Internationalization (I18N): - -PODIR = po -LOCALEDIR = $(VDRDIR)/locale -I18Npo = $(wildcard $(PODIR)/*.po) -I18Nmsgs = $(addprefix $(LOCALEDIR)/, $(addsuffix /LC_MESSAGES/vdr-$(PLUGIN).mo, $(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@joachim-wilke.de>' -o $@ $^ +$(I18Npot): $(wildcard *.c) $(wildcard libfritz++/*.cpp) + xgettext -C -cTRANSLATORS --no-wrap -s --no-location -k -ktr -ktrNOOP -kI18N_NOOP \ + --package-name=vdr-$(PLUGIN) --package-version=$(VERSION) --msgid-bugs-address='<vdr@joachim-wilke.de>' -o $@ `ls $^` + grep -v POT-Creation $(I18Npot) > $(I18Npot)~ + mv $(I18Npot)~ $(I18Npot) %.po: $(I18Npot) - msgmerge -U --no-wrap -F --backup=none -q $@ $< + msgmerge -U --no-wrap --no-location --backup=none -q -N $@ $< @touch $@ -$(I18Nmsgs): $(LOCALEDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo - @mkdir -p $(dir $@) - cp $< $@ +$(I18Nmsgs): $(LOCDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo + install -D -m644 $< $@ + +i18n: $(I18Nmo) $(I18Npot) + +install-i18n: $(I18Nmsgs) .PHONY: i18n i18n: $(I18Nmsgs) @@ -113,7 +107,6 @@ srcdoc: $(DOXYGEN) $(DOXYFILE).tmp @rm $(DOXYFILE).tmp - # Dependencies: MAKEDEP = $(CXX) -MM -MG diff --git a/po/ca_ES.po b/po/ca_ES.po index e53a696..5391716 100644 --- a/po/ca_ES.po +++ b/po/ca_ES.po @@ -9,134 +9,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Jordi Vilΰ <jvila@tinet.org>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" -msgstr "" +msgid "AltShift" +msgstr "AltShift" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " -msgstr "" +msgid "BackLight" +msgstr "BackLight" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." -msgstr "No EPG info available." +msgid "Charmap" +msgstr "Charmap" -#: lcdproc.c:20 -msgid "LCDproc output" -msgstr "" +msgid "FullCycle" +msgstr "FullCycle" -#: lcdproc.c:79 -msgid "Waiting for EPG info." -msgstr "Scanning for EPG info." +msgid "HighClientPriority" +msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" -msgstr "" +msgid "No EPG info available." +msgstr "No EPG info available." -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "OutputNumber" -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" -msgstr "FullCycle" - -#: lcdproc.c:409 -msgid "TimeDateCycle" -msgstr "TimeDateCycle" - -#: lcdproc.c:410 -msgid "VolumeKeep" -msgstr "VolumeKeep" +msgid "Recording status" +msgstr "" -#: lcdproc.c:411 -msgid "Scrollwait" -msgstr "Scrollwait" +msgid "Right channel" +msgstr "" -#: lcdproc.c:412 msgid "Scrollspeed" msgstr "Scrollspeed" -#: lcdproc.c:413 -msgid "Charmap" -msgstr "Charmap" - -#: lcdproc.c:414 -msgid "AltShift" -msgstr "AltShift" - -#: lcdproc.c:415 -msgid "BackLight" -msgstr "BackLight" +msgid "Scrollwait" +msgstr "Scrollwait" -#: lcdproc.c:416 msgid "SetClientPriority" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "Show time" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Stereo" msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "TimeDateCycle" +msgstr "TimeDateCycle" + +msgid "Volume " msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "OutputNumber" +msgid "VolumeKeep" +msgstr "VolumeKeep" -#: lcdproc.c:426 -msgid "Recording status" +msgid "Waiting for EPG info." +msgstr "Scanning for EPG info." + +msgid "auto" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "detailed" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "off" +msgstr "" + +msgid "on" +msgstr "" + +msgid "simple" msgstr "" diff --git a/po/cs_CZ.po b/po/cs_CZ.po index 01c1974..d91773e 100644 --- a/po/cs_CZ.po +++ b/po/cs_CZ.po @@ -7,134 +7,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Vladimνr Bαrta <vladimir.barta@k2atmitec.cz>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" +msgid "AltShift" msgstr "" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " +msgid "BackLight" msgstr "" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." +msgid "Charmap" msgstr "" -#: lcdproc.c:20 -msgid "LCDproc output" +msgid "FullCycle" msgstr "" -#: lcdproc.c:79 -msgid "Waiting for EPG info." +msgid "HighClientPriority" msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" +msgid "No EPG info available." msgstr "" -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "RECORDING" -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" +msgid "Recording status" msgstr "" -#: lcdproc.c:409 -msgid "TimeDateCycle" +msgid "Right channel" msgstr "" -#: lcdproc.c:410 -msgid "VolumeKeep" +msgid "Scrollspeed" msgstr "" -#: lcdproc.c:411 msgid "Scrollwait" msgstr "" -#: lcdproc.c:412 -msgid "Scrollspeed" +msgid "SetClientPriority" msgstr "" -#: lcdproc.c:413 -msgid "Charmap" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:414 -msgid "AltShift" +msgid "Show time" msgstr "" -#: lcdproc.c:415 -msgid "BackLight" +msgid "Stereo" msgstr "" -#: lcdproc.c:416 -msgid "SetClientPriority" +msgid "TimeDateCycle" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Volume " msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "VolumeKeep" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Waiting for EPG info." msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "auto" msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "RECORDING" +msgid "detailed" +msgstr "" -#: lcdproc.c:426 -msgid "Recording status" +msgid "off" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "on" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "simple" msgstr "" diff --git a/po/da_DK.po b/po/da_DK.po index f9d0267..096a011 100644 --- a/po/da_DK.po +++ b/po/da_DK.po @@ -7,134 +7,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Mogens Elneff <mogens@elneff.dk>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" +msgid "AltShift" msgstr "" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " +msgid "BackLight" msgstr "" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." +msgid "Charmap" msgstr "" -#: lcdproc.c:20 -msgid "LCDproc output" +msgid "FullCycle" msgstr "" -#: lcdproc.c:79 -msgid "Waiting for EPG info." +msgid "HighClientPriority" msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" +msgid "No EPG info available." msgstr "" -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "RECORDING" -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" +msgid "Recording status" msgstr "" -#: lcdproc.c:409 -msgid "TimeDateCycle" +msgid "Right channel" msgstr "" -#: lcdproc.c:410 -msgid "VolumeKeep" +msgid "Scrollspeed" msgstr "" -#: lcdproc.c:411 msgid "Scrollwait" msgstr "" -#: lcdproc.c:412 -msgid "Scrollspeed" +msgid "SetClientPriority" msgstr "" -#: lcdproc.c:413 -msgid "Charmap" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:414 -msgid "AltShift" +msgid "Show time" msgstr "" -#: lcdproc.c:415 -msgid "BackLight" +msgid "Stereo" msgstr "" -#: lcdproc.c:416 -msgid "SetClientPriority" +msgid "TimeDateCycle" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Volume " msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "VolumeKeep" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Waiting for EPG info." msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "auto" msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "RECORDING" +msgid "detailed" +msgstr "" -#: lcdproc.c:426 -msgid "Recording status" +msgid "off" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "on" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "simple" msgstr "" diff --git a/po/de_DE.po b/po/de_DE.po index 5aed8f1..66520db 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -7,134 +7,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Joachim Wilke <vdr@joachim-wilke.de>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" -msgstr "Stumm" +msgid "AltShift" +msgstr "Alternative \"Heartbeat\"-Signalisierung" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " -msgstr "Lautstδrke " +msgid "BackLight" +msgstr "Hintergrundbeleuchtung" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" -msgstr "AUFNAHME " +msgid "BackLightWait" +msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." -msgstr "Keine EPG Information verfόgbar." +msgid "Charmap" +msgstr "Zeichenkodierung" -#: lcdproc.c:20 -msgid "LCDproc output" -msgstr "LCDproc Ausgabe" +msgid "FullCycle" +msgstr "Zyklusdauer Statuszeile" -#: lcdproc.c:79 -msgid "Waiting for EPG info." -msgstr "Suche nach EPG Information." +msgid "HighClientPriority" +msgstr "" -#: lcdproc.c:135 -msgid "Stereo" -msgstr "Stereo" +msgid "LCDproc output" +msgstr "LCDproc Ausgabe" -#: lcdproc.c:141 msgid "Left channel" msgstr "Linker Kanal" -#: lcdproc.c:147 -msgid "Right channel" -msgstr "Rechter Kanal" +msgid "Mute" +msgstr "Stumm" -#: lcdproc.c:401 -msgid "off" -msgstr "aus" +msgid "No EPG info available." +msgstr "Keine EPG Information verfόgbar." -#: lcdproc.c:402 -msgid "on" -msgstr "an" +msgid "NormalClientPriority" +msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "auto" +msgid "OutputNumber" +msgstr "Zahl der Ausgδnge am LCD" -#: lcdproc.c:404 -msgid "detailed" -msgstr "detailiert" +msgid "PrioWait" +msgstr "" -#: lcdproc.c:405 -msgid "simple" -msgstr "einfach" +msgid "RECORDING" +msgstr "AUFNAHME " -#: lcdproc.c:408 -msgid "FullCycle" -msgstr "Zyklusdauer Statuszeile" +msgid "Recording status" +msgstr "Aufnahemstatus" -#: lcdproc.c:409 -msgid "TimeDateCycle" -msgstr "davon Dauer Zeitanzeige" +msgid "Right channel" +msgstr "Rechter Kanal" -#: lcdproc.c:410 -msgid "VolumeKeep" -msgstr "Anzeigedauer Lautstδrke" +msgid "Scrollspeed" +msgstr "Rollgeschwindigkeit" -#: lcdproc.c:411 msgid "Scrollwait" msgstr "Zeit bis Text rollen" -#: lcdproc.c:412 -msgid "Scrollspeed" -msgstr "Rollgeschwindigkeit" +msgid "SetClientPriority" +msgstr "" -#: lcdproc.c:413 -msgid "Charmap" -msgstr "Zeichenkodierung" +msgid "Show subtitle" +msgstr "Untertitel anzeigen" -#: lcdproc.c:414 -msgid "AltShift" -msgstr "Alternative \"Heartbeat\"-Signalisierung" +msgid "Show time" +msgstr "Zeit anzeigen" -#: lcdproc.c:415 -msgid "BackLight" -msgstr "Hintergrundbeleuchtung" +msgid "Stereo" +msgstr "Stereo" -#: lcdproc.c:416 -msgid "SetClientPriority" -msgstr "" +msgid "TimeDateCycle" +msgstr "davon Dauer Zeitanzeige" -#: lcdproc.c:417 -msgid "NormalClientPriority" -msgstr "" +msgid "Volume " +msgstr "Lautstδrke " -#: lcdproc.c:418 -msgid "HighClientPriority" -msgstr "" +msgid "VolumeKeep" +msgstr "Anzeigedauer Lautstδrke" -#: lcdproc.c:419 -msgid "BackLightWait" -msgstr "" +msgid "Waiting for EPG info." +msgstr "Suche nach EPG Information." -#: lcdproc.c:420 -msgid "PrioWait" -msgstr "" +msgid "auto" +msgstr "auto" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "Zahl der Ausgδnge am LCD" +msgid "detailed" +msgstr "detailiert" -#: lcdproc.c:426 -msgid "Recording status" -msgstr "Aufnahemstatus" +msgid "off" +msgstr "aus" -#: lcdproc.c:427 -msgid "Show time" -msgstr "Zeit anzeigen" +msgid "on" +msgstr "an" -#: lcdproc.c:428 -msgid "Show subtitle" -msgstr "Untertitel anzeigen" +msgid "simple" +msgstr "einfach" diff --git a/po/el_GR.po b/po/el_GR.po index c90f212..81f0848 100644 --- a/po/el_GR.po +++ b/po/el_GR.po @@ -7,134 +7,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-7\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" -msgstr "" +msgid "AltShift" +msgstr "AltShift" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " -msgstr "" +msgid "BackLight" +msgstr "BackLight" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." -msgstr "No EPG info available." +msgid "Charmap" +msgstr "Charmap" -#: lcdproc.c:20 -msgid "LCDproc output" -msgstr "" +msgid "FullCycle" +msgstr "FullCycle" -#: lcdproc.c:79 -msgid "Waiting for EPG info." -msgstr "Scanning for EPG info." +msgid "HighClientPriority" +msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" -msgstr "" +msgid "No EPG info available." +msgstr "No EPG info available." -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "OutputNumber" -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" -msgstr "FullCycle" - -#: lcdproc.c:409 -msgid "TimeDateCycle" -msgstr "TimeDateCycle" - -#: lcdproc.c:410 -msgid "VolumeKeep" -msgstr "VolumeKeep" +msgid "Recording status" +msgstr "" -#: lcdproc.c:411 -msgid "Scrollwait" -msgstr "Scrollwait" +msgid "Right channel" +msgstr "" -#: lcdproc.c:412 msgid "Scrollspeed" msgstr "Scrollspeed" -#: lcdproc.c:413 -msgid "Charmap" -msgstr "Charmap" - -#: lcdproc.c:414 -msgid "AltShift" -msgstr "AltShift" - -#: lcdproc.c:415 -msgid "BackLight" -msgstr "BackLight" +msgid "Scrollwait" +msgstr "Scrollwait" -#: lcdproc.c:416 msgid "SetClientPriority" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "Show time" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Stereo" msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "TimeDateCycle" +msgstr "TimeDateCycle" + +msgid "Volume " msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "OutputNumber" +msgid "VolumeKeep" +msgstr "VolumeKeep" -#: lcdproc.c:426 -msgid "Recording status" +msgid "Waiting for EPG info." +msgstr "Scanning for EPG info." + +msgid "auto" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "detailed" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "off" +msgstr "" + +msgid "on" +msgstr "" + +msgid "simple" msgstr "" diff --git a/po/es_ES.po b/po/es_ES.po index a1df1fd..cd4ce32 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -7,134 +7,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Ruben Nunez Francisco <ruben.nunez@tang-it.com>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" -msgstr "" +msgid "AltShift" +msgstr "AltShift" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " -msgstr "" +msgid "BackLight" +msgstr "BackLight" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." -msgstr "No EPG info available." +msgid "Charmap" +msgstr "Charmap" -#: lcdproc.c:20 -msgid "LCDproc output" -msgstr "" +msgid "FullCycle" +msgstr "FullCycle" -#: lcdproc.c:79 -msgid "Waiting for EPG info." -msgstr "Scanning for EPG info." +msgid "HighClientPriority" +msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" -msgstr "" +msgid "No EPG info available." +msgstr "No EPG info available." -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "OutputNumber" -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" -msgstr "FullCycle" - -#: lcdproc.c:409 -msgid "TimeDateCycle" -msgstr "TimeDateCycle" - -#: lcdproc.c:410 -msgid "VolumeKeep" -msgstr "VolumeKeep" +msgid "Recording status" +msgstr "" -#: lcdproc.c:411 -msgid "Scrollwait" -msgstr "Scrollwait" +msgid "Right channel" +msgstr "" -#: lcdproc.c:412 msgid "Scrollspeed" msgstr "Scrollspeed" -#: lcdproc.c:413 -msgid "Charmap" -msgstr "Charmap" - -#: lcdproc.c:414 -msgid "AltShift" -msgstr "AltShift" - -#: lcdproc.c:415 -msgid "BackLight" -msgstr "BackLight" +msgid "Scrollwait" +msgstr "Scrollwait" -#: lcdproc.c:416 msgid "SetClientPriority" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "Show time" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Stereo" msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "TimeDateCycle" +msgstr "TimeDateCycle" + +msgid "Volume " msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "OutputNumber" +msgid "VolumeKeep" +msgstr "VolumeKeep" -#: lcdproc.c:426 -msgid "Recording status" +msgid "Waiting for EPG info." +msgstr "Scanning for EPG info." + +msgid "auto" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "detailed" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "off" +msgstr "" + +msgid "on" +msgstr "" + +msgid "simple" msgstr "" diff --git a/po/et_EE.po b/po/et_EE.po index f316c13..72a6d91 100644 --- a/po/et_EE.po +++ b/po/et_EE.po @@ -7,134 +7,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Arthur Konovalov <kasjas@hot.ee>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-13\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" +msgid "AltShift" msgstr "" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " +msgid "BackLight" msgstr "" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." +msgid "Charmap" msgstr "" -#: lcdproc.c:20 -msgid "LCDproc output" +msgid "FullCycle" msgstr "" -#: lcdproc.c:79 -msgid "Waiting for EPG info." +msgid "HighClientPriority" msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" +msgid "No EPG info available." msgstr "" -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "AUFNAHME " -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" +msgid "Recording status" msgstr "" -#: lcdproc.c:409 -msgid "TimeDateCycle" +msgid "Right channel" msgstr "" -#: lcdproc.c:410 -msgid "VolumeKeep" +msgid "Scrollspeed" msgstr "" -#: lcdproc.c:411 msgid "Scrollwait" msgstr "" -#: lcdproc.c:412 -msgid "Scrollspeed" +msgid "SetClientPriority" msgstr "" -#: lcdproc.c:413 -msgid "Charmap" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:414 -msgid "AltShift" +msgid "Show time" msgstr "" -#: lcdproc.c:415 -msgid "BackLight" +msgid "Stereo" msgstr "" -#: lcdproc.c:416 -msgid "SetClientPriority" +msgid "TimeDateCycle" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Volume " msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "VolumeKeep" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Waiting for EPG info." msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "auto" msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "AUFNAHME " +msgid "detailed" +msgstr "" -#: lcdproc.c:426 -msgid "Recording status" +msgid "off" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "on" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "simple" msgstr "" diff --git a/po/fi_FI.po b/po/fi_FI.po index 9852ef0..b5f5859 100644 --- a/po/fi_FI.po +++ b/po/fi_FI.po @@ -10,134 +10,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" -msgstr "" +msgid "AltShift" +msgstr "AltShift" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " -msgstr "" +msgid "BackLight" +msgstr "BackLight" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." -msgstr "No EPG info available." +msgid "Charmap" +msgstr "Charmap" -#: lcdproc.c:20 -msgid "LCDproc output" -msgstr "" +msgid "FullCycle" +msgstr "FullCycle" -#: lcdproc.c:79 -msgid "Waiting for EPG info." -msgstr "Scanning for EPG info." +msgid "HighClientPriority" +msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" -msgstr "" +msgid "No EPG info available." +msgstr "No EPG info available." -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "OutputNumber" -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" -msgstr "FullCycle" - -#: lcdproc.c:409 -msgid "TimeDateCycle" -msgstr "TimeDateCycle" - -#: lcdproc.c:410 -msgid "VolumeKeep" -msgstr "VolumeKeep" +msgid "Recording status" +msgstr "" -#: lcdproc.c:411 -msgid "Scrollwait" -msgstr "Scrollwait" +msgid "Right channel" +msgstr "" -#: lcdproc.c:412 msgid "Scrollspeed" msgstr "Scrollspeed" -#: lcdproc.c:413 -msgid "Charmap" -msgstr "Charmap" - -#: lcdproc.c:414 -msgid "AltShift" -msgstr "AltShift" - -#: lcdproc.c:415 -msgid "BackLight" -msgstr "BackLight" +msgid "Scrollwait" +msgstr "Scrollwait" -#: lcdproc.c:416 msgid "SetClientPriority" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "Show time" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Stereo" msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "TimeDateCycle" +msgstr "TimeDateCycle" + +msgid "Volume " msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "OutputNumber" +msgid "VolumeKeep" +msgstr "VolumeKeep" -#: lcdproc.c:426 -msgid "Recording status" +msgid "Waiting for EPG info." +msgstr "Scanning for EPG info." + +msgid "auto" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "detailed" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "off" +msgstr "" + +msgid "on" +msgstr "" + +msgid "simple" msgstr "" diff --git a/po/fr_FR.po b/po/fr_FR.po index 6f223ac..cda59af 100644 --- a/po/fr_FR.po +++ b/po/fr_FR.po @@ -10,134 +10,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Nicolas Huillard <nhuillard@e-dition.fr>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" -msgstr "" +msgid "AltShift" +msgstr "AltShift" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " -msgstr "" +msgid "BackLight" +msgstr "BackLight" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." -msgstr "No EPG info available." +msgid "Charmap" +msgstr "Charmap" -#: lcdproc.c:20 -msgid "LCDproc output" -msgstr "" +msgid "FullCycle" +msgstr "FullCycle" -#: lcdproc.c:79 -msgid "Waiting for EPG info." -msgstr "Scanning for EPG info." +msgid "HighClientPriority" +msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" -msgstr "" +msgid "No EPG info available." +msgstr "No EPG info available." -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "OutputNumber" -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" -msgstr "FullCycle" - -#: lcdproc.c:409 -msgid "TimeDateCycle" -msgstr "TimeDateCycle" - -#: lcdproc.c:410 -msgid "VolumeKeep" -msgstr "VolumeKeep" +msgid "Recording status" +msgstr "" -#: lcdproc.c:411 -msgid "Scrollwait" -msgstr "Scrollwait" +msgid "Right channel" +msgstr "" -#: lcdproc.c:412 msgid "Scrollspeed" msgstr "Scrollspeed" -#: lcdproc.c:413 -msgid "Charmap" -msgstr "Charmap" - -#: lcdproc.c:414 -msgid "AltShift" -msgstr "AltShift" - -#: lcdproc.c:415 -msgid "BackLight" -msgstr "BackLight" +msgid "Scrollwait" +msgstr "Scrollwait" -#: lcdproc.c:416 msgid "SetClientPriority" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "Show time" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Stereo" msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "TimeDateCycle" +msgstr "TimeDateCycle" + +msgid "Volume " msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "OutputNumber" +msgid "VolumeKeep" +msgstr "VolumeKeep" -#: lcdproc.c:426 -msgid "Recording status" +msgid "Waiting for EPG info." +msgstr "Scanning for EPG info." + +msgid "auto" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "detailed" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "off" +msgstr "" + +msgid "on" +msgstr "" + +msgid "simple" msgstr "" diff --git a/po/hr_HR.po b/po/hr_HR.po index c76d0df..6038d73 100644 --- a/po/hr_HR.po +++ b/po/hr_HR.po @@ -8,134 +8,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Drazen Dupor <drazen.dupor@dupor.com>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" +msgid "AltShift" msgstr "" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " +msgid "BackLight" msgstr "" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." +msgid "Charmap" msgstr "" -#: lcdproc.c:20 -msgid "LCDproc output" +msgid "FullCycle" msgstr "" -#: lcdproc.c:79 -msgid "Waiting for EPG info." +msgid "HighClientPriority" msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" +msgid "No EPG info available." msgstr "" -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "RECORDING" -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" +msgid "Recording status" msgstr "" -#: lcdproc.c:409 -msgid "TimeDateCycle" +msgid "Right channel" msgstr "" -#: lcdproc.c:410 -msgid "VolumeKeep" +msgid "Scrollspeed" msgstr "" -#: lcdproc.c:411 msgid "Scrollwait" msgstr "" -#: lcdproc.c:412 -msgid "Scrollspeed" +msgid "SetClientPriority" msgstr "" -#: lcdproc.c:413 -msgid "Charmap" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:414 -msgid "AltShift" +msgid "Show time" msgstr "" -#: lcdproc.c:415 -msgid "BackLight" +msgid "Stereo" msgstr "" -#: lcdproc.c:416 -msgid "SetClientPriority" +msgid "TimeDateCycle" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Volume " msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "VolumeKeep" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Waiting for EPG info." msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "auto" msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "RECORDING" +msgid "detailed" +msgstr "" -#: lcdproc.c:426 -msgid "Recording status" +msgid "off" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "on" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "simple" msgstr "" diff --git a/po/hu_HU.po b/po/hu_HU.po index e44e282..0438096 100644 --- a/po/hu_HU.po +++ b/po/hu_HU.po @@ -8,134 +8,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Istvan Koenigsberger <istvnko@hotmail.com>, Guido Josten <guido.josten@t-online.de>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" -msgstr "" +msgid "AltShift" +msgstr "AltShift" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " -msgstr "" +msgid "BackLight" +msgstr "BackLight" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." -msgstr "No EPG info available." +msgid "Charmap" +msgstr "Charmap" -#: lcdproc.c:20 -msgid "LCDproc output" -msgstr "" +msgid "FullCycle" +msgstr "FullCycle" -#: lcdproc.c:79 -msgid "Waiting for EPG info." -msgstr "Scanning for EPG info." +msgid "HighClientPriority" +msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" -msgstr "" +msgid "No EPG info available." +msgstr "No EPG info available." -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "OutputNumber" -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" -msgstr "FullCycle" - -#: lcdproc.c:409 -msgid "TimeDateCycle" -msgstr "TimeDateCycle" - -#: lcdproc.c:410 -msgid "VolumeKeep" -msgstr "VolumeKeep" +msgid "Recording status" +msgstr "" -#: lcdproc.c:411 -msgid "Scrollwait" -msgstr "Scrollwait" +msgid "Right channel" +msgstr "" -#: lcdproc.c:412 msgid "Scrollspeed" msgstr "Scrollspeed" -#: lcdproc.c:413 -msgid "Charmap" -msgstr "Charmap" - -#: lcdproc.c:414 -msgid "AltShift" -msgstr "AltShift" - -#: lcdproc.c:415 -msgid "BackLight" -msgstr "BackLight" +msgid "Scrollwait" +msgstr "Scrollwait" -#: lcdproc.c:416 msgid "SetClientPriority" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "Show time" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Stereo" msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "TimeDateCycle" +msgstr "TimeDateCycle" + +msgid "Volume " msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "OutputNumber" +msgid "VolumeKeep" +msgstr "VolumeKeep" -#: lcdproc.c:426 -msgid "Recording status" +msgid "Waiting for EPG info." +msgstr "Scanning for EPG info." + +msgid "auto" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "detailed" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "off" +msgstr "" + +msgid "on" +msgstr "" + +msgid "simple" msgstr "" diff --git a/po/it_IT.po b/po/it_IT.po index 45376f4..0786c3c 100755 --- a/po/it_IT.po +++ b/po/it_IT.po @@ -9,10 +9,11 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2011-03-05 16:24+0100\n" "Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,136 +21,98 @@ msgstr "" "X-Poedit-Country: ITALY\n" "X-Poedit-SourceCharset: utf-8\n" -#: lcd.c:373 -msgid "Mute" -msgstr "Muto" +msgid "AltShift" +msgstr "Alt Shift" -#: lcd.c:379 -#: lcd.c:382 -#: lcd.c:388 -msgid "Volume " -msgstr "Volume" +msgid "BackLight" +msgstr "LuminositΓ sfondo" -#: lcd.c:732 -#: lcd.c:735 -msgid "RECORDING" -msgstr "REGISTRAZIONE" +msgid "BackLightWait" +msgstr "Attesa luminositΓ sfondo" -#: lcd.c:862 -#: lcdproc.c:252 -#: lcdproc.c:262 -msgid "No EPG info available." -msgstr "Nessun info EPG disponibile" +msgid "Charmap" +msgstr "Mappa caratteri" -#: lcdproc.c:20 -msgid "LCDproc output" -msgstr "Uscita LCDproc" +msgid "FullCycle" +msgstr "Ciclo completo" -#: lcdproc.c:79 -msgid "Waiting for EPG info." -msgstr "Attesa info EPG" +msgid "HighClientPriority" +msgstr "PrioritΓ alta client" -#: lcdproc.c:135 -msgid "Stereo" -msgstr "Stereo" +msgid "LCDproc output" +msgstr "Uscita LCDproc" -#: lcdproc.c:141 msgid "Left channel" msgstr "Canale sinistro" -#: lcdproc.c:147 -msgid "Right channel" -msgstr "Canale destro" +msgid "Mute" +msgstr "Muto" -#: lcdproc.c:401 -msgid "off" -msgstr "disattivo" +msgid "No EPG info available." +msgstr "Nessun info EPG disponibile" -#: lcdproc.c:402 -msgid "on" -msgstr "attivo" +msgid "NormalClientPriority" +msgstr "PrioritΓ normale client" -#: lcdproc.c:403 -msgid "auto" -msgstr "auto" +msgid "OutputNumber" +msgstr "Numero uscita" -#: lcdproc.c:404 -msgid "detailed" -msgstr "dettagliato" +msgid "PrioWait" +msgstr "PrioritΓ attesa" -#: lcdproc.c:405 -msgid "simple" -msgstr "semplice" +msgid "RECORDING" +msgstr "REGISTRAZIONE" -#: lcdproc.c:408 -msgid "FullCycle" -msgstr "Ciclo completo" +msgid "Recording status" +msgstr "Stato registrazione" -#: lcdproc.c:409 -msgid "TimeDateCycle" -msgstr "Ciclo Data/Ora" +msgid "Right channel" +msgstr "Canale destro" -#: lcdproc.c:410 -msgid "VolumeKeep" -msgstr "Mantieni volume" +msgid "Scrollspeed" +msgstr "VelocitΓ scorrimento" -#: lcdproc.c:411 msgid "Scrollwait" msgstr "Attesa scorrimento" -#: lcdproc.c:412 -msgid "Scrollspeed" -msgstr "VelocitΓ scorrimento" +msgid "SetClientPriority" +msgstr "Imposta prioritΓ client" -#: lcdproc.c:413 -msgid "Charmap" -msgstr "Mappa caratteri" +msgid "Show subtitle" +msgstr "Mostra sottotitoli" -#: lcdproc.c:414 -msgid "AltShift" -msgstr "Alt Shift" +msgid "Show time" +msgstr "Mostra ora" -#: lcdproc.c:415 -msgid "BackLight" -msgstr "LuminositΓ sfondo" +msgid "Stereo" +msgstr "Stereo" -#: lcdproc.c:416 -msgid "SetClientPriority" -msgstr "Imposta prioritΓ client" +msgid "TimeDateCycle" +msgstr "Ciclo Data/Ora" -#: lcdproc.c:417 -msgid "NormalClientPriority" -msgstr "PrioritΓ normale client" +msgid "Volume " +msgstr "Volume" -#: lcdproc.c:418 -msgid "HighClientPriority" -msgstr "PrioritΓ alta client" +msgid "VolumeKeep" +msgstr "Mantieni volume" -#: lcdproc.c:419 -msgid "BackLightWait" -msgstr "Attesa luminositΓ sfondo" +msgid "Waiting for EPG info." +msgstr "Attesa info EPG" -#: lcdproc.c:420 -msgid "PrioWait" -msgstr "PrioritΓ attesa" +msgid "auto" +msgstr "auto" -#: lcdproc.c:421 -#: lcdproc.c:423 -msgid "OutputNumber" -msgstr "Numero uscita" +msgid "detailed" +msgstr "dettagliato" -#: lcdproc.c:426 -msgid "Recording status" -msgstr "Stato registrazione" +msgid "off" +msgstr "disattivo" -#: lcdproc.c:427 -msgid "Show time" -msgstr "Mostra ora" +msgid "on" +msgstr "attivo" -#: lcdproc.c:428 -msgid "Show subtitle" -msgstr "Mostra sottotitoli" +msgid "simple" +msgstr "semplice" #~ msgid "Schedule - %s" #~ msgstr "Programmi - %s" - diff --git a/po/nl_NL.po b/po/nl_NL.po index b8509ad..c56a265 100644 --- a/po/nl_NL.po +++ b/po/nl_NL.po @@ -9,134 +9,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Maarten Wisse <Maarten.Wisse@urz.uni-hd.de>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" -msgstr "" +msgid "AltShift" +msgstr "AltShift" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " -msgstr "" +msgid "BackLight" +msgstr "BackLight" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." -msgstr "No EPG info available." +msgid "Charmap" +msgstr "Charmap" -#: lcdproc.c:20 -msgid "LCDproc output" -msgstr "" +msgid "FullCycle" +msgstr "FullCycle" -#: lcdproc.c:79 -msgid "Waiting for EPG info." -msgstr "Scanning for EPG info." +msgid "HighClientPriority" +msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" -msgstr "" +msgid "No EPG info available." +msgstr "No EPG info available." -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "OutputNumber" -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" -msgstr "FullCycle" - -#: lcdproc.c:409 -msgid "TimeDateCycle" -msgstr "TimeDateCycle" - -#: lcdproc.c:410 -msgid "VolumeKeep" -msgstr "VolumeKeep" +msgid "Recording status" +msgstr "" -#: lcdproc.c:411 -msgid "Scrollwait" -msgstr "Scrollwait" +msgid "Right channel" +msgstr "" -#: lcdproc.c:412 msgid "Scrollspeed" msgstr "Scrollspeed" -#: lcdproc.c:413 -msgid "Charmap" -msgstr "Charmap" - -#: lcdproc.c:414 -msgid "AltShift" -msgstr "AltShift" - -#: lcdproc.c:415 -msgid "BackLight" -msgstr "BackLight" +msgid "Scrollwait" +msgstr "Scrollwait" -#: lcdproc.c:416 msgid "SetClientPriority" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "Show time" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Stereo" msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "TimeDateCycle" +msgstr "TimeDateCycle" + +msgid "Volume " msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "OutputNumber" +msgid "VolumeKeep" +msgstr "VolumeKeep" -#: lcdproc.c:426 -msgid "Recording status" +msgid "Waiting for EPG info." +msgstr "Scanning for EPG info." + +msgid "auto" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "detailed" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "off" +msgstr "" + +msgid "on" +msgstr "" + +msgid "simple" msgstr "" diff --git a/po/nn_NO.po b/po/nn_NO.po index c24b163..9d88b12 100644 --- a/po/nn_NO.po +++ b/po/nn_NO.po @@ -8,134 +8,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Truls Slevigen <truls@slevigen.no>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" -msgstr "" +msgid "AltShift" +msgstr "AltShift" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " -msgstr "" +msgid "BackLight" +msgstr "BackLight" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." -msgstr "No EPG info available." +msgid "Charmap" +msgstr "Charmap" -#: lcdproc.c:20 -msgid "LCDproc output" -msgstr "" +msgid "FullCycle" +msgstr "FullCycle" -#: lcdproc.c:79 -msgid "Waiting for EPG info." -msgstr "Scanning for EPG info." +msgid "HighClientPriority" +msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" -msgstr "" +msgid "No EPG info available." +msgstr "No EPG info available." -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "OutputNumber" -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" -msgstr "FullCycle" - -#: lcdproc.c:409 -msgid "TimeDateCycle" -msgstr "TimeDateCycle" - -#: lcdproc.c:410 -msgid "VolumeKeep" -msgstr "VolumeKeep" +msgid "Recording status" +msgstr "" -#: lcdproc.c:411 -msgid "Scrollwait" -msgstr "Scrollwait" +msgid "Right channel" +msgstr "" -#: lcdproc.c:412 msgid "Scrollspeed" msgstr "Scrollspeed" -#: lcdproc.c:413 -msgid "Charmap" -msgstr "Charmap" - -#: lcdproc.c:414 -msgid "AltShift" -msgstr "AltShift" - -#: lcdproc.c:415 -msgid "BackLight" -msgstr "BackLight" +msgid "Scrollwait" +msgstr "Scrollwait" -#: lcdproc.c:416 msgid "SetClientPriority" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "Show time" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Stereo" msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "TimeDateCycle" +msgstr "TimeDateCycle" + +msgid "Volume " msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "OutputNumber" +msgid "VolumeKeep" +msgstr "VolumeKeep" -#: lcdproc.c:426 -msgid "Recording status" +msgid "Waiting for EPG info." +msgstr "Scanning for EPG info." + +msgid "auto" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "detailed" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "off" +msgstr "" + +msgid "on" +msgstr "" + +msgid "simple" msgstr "" diff --git a/po/pl_PL.po b/po/pl_PL.po index 57b00d5..0070bda 100644 --- a/po/pl_PL.po +++ b/po/pl_PL.po @@ -7,134 +7,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Michael Rakowski <mrak@gmx.de>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" -msgstr "" +msgid "AltShift" +msgstr "AltShift" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " -msgstr "" +msgid "BackLight" +msgstr "BackLight" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." -msgstr "No EPG info available." +msgid "Charmap" +msgstr "Charmap" -#: lcdproc.c:20 -msgid "LCDproc output" -msgstr "" +msgid "FullCycle" +msgstr "FullCycle" -#: lcdproc.c:79 -msgid "Waiting for EPG info." -msgstr "Scanning for EPG info." +msgid "HighClientPriority" +msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" -msgstr "" +msgid "No EPG info available." +msgstr "No EPG info available." -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "OutputNumber" -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" -msgstr "FullCycle" - -#: lcdproc.c:409 -msgid "TimeDateCycle" -msgstr "TimeDateCycle" - -#: lcdproc.c:410 -msgid "VolumeKeep" -msgstr "VolumeKeep" +msgid "Recording status" +msgstr "" -#: lcdproc.c:411 -msgid "Scrollwait" -msgstr "Scrollwait" +msgid "Right channel" +msgstr "" -#: lcdproc.c:412 msgid "Scrollspeed" msgstr "Scrollspeed" -#: lcdproc.c:413 -msgid "Charmap" -msgstr "Charmap" - -#: lcdproc.c:414 -msgid "AltShift" -msgstr "AltShift" - -#: lcdproc.c:415 -msgid "BackLight" -msgstr "BackLight" +msgid "Scrollwait" +msgstr "Scrollwait" -#: lcdproc.c:416 msgid "SetClientPriority" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "Show time" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Stereo" msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "TimeDateCycle" +msgstr "TimeDateCycle" + +msgid "Volume " msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "OutputNumber" +msgid "VolumeKeep" +msgstr "VolumeKeep" -#: lcdproc.c:426 -msgid "Recording status" +msgid "Waiting for EPG info." +msgstr "Scanning for EPG info." + +msgid "auto" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "detailed" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "off" +msgstr "" + +msgid "on" +msgstr "" + +msgid "simple" msgstr "" diff --git a/po/pt_PT.po b/po/pt_PT.po index 4c2f6e7..713f148 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -7,134 +7,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Paulo Lopes <pmml@netvita.pt>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" -msgstr "" +msgid "AltShift" +msgstr "AltShift" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " -msgstr "" +msgid "BackLight" +msgstr "BackLight" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." -msgstr "No EPG info available." +msgid "Charmap" +msgstr "Charmap" -#: lcdproc.c:20 -msgid "LCDproc output" -msgstr "" +msgid "FullCycle" +msgstr "FullCycle" -#: lcdproc.c:79 -msgid "Waiting for EPG info." -msgstr "Scanning for EPG info." +msgid "HighClientPriority" +msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" -msgstr "" +msgid "No EPG info available." +msgstr "No EPG info available." -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "OutputNumber" -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" -msgstr "FullCycle" - -#: lcdproc.c:409 -msgid "TimeDateCycle" -msgstr "TimeDateCycle" - -#: lcdproc.c:410 -msgid "VolumeKeep" -msgstr "VolumeKeep" +msgid "Recording status" +msgstr "" -#: lcdproc.c:411 -msgid "Scrollwait" -msgstr "Scrollwait" +msgid "Right channel" +msgstr "" -#: lcdproc.c:412 msgid "Scrollspeed" msgstr "Scrollspeed" -#: lcdproc.c:413 -msgid "Charmap" -msgstr "Charmap" - -#: lcdproc.c:414 -msgid "AltShift" -msgstr "AltShift" - -#: lcdproc.c:415 -msgid "BackLight" -msgstr "BackLight" +msgid "Scrollwait" +msgstr "Scrollwait" -#: lcdproc.c:416 msgid "SetClientPriority" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "Show time" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Stereo" msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "TimeDateCycle" +msgstr "TimeDateCycle" + +msgid "Volume " msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "OutputNumber" +msgid "VolumeKeep" +msgstr "VolumeKeep" -#: lcdproc.c:426 -msgid "Recording status" +msgid "Waiting for EPG info." +msgstr "Scanning for EPG info." + +msgid "auto" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "detailed" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "off" +msgstr "" + +msgid "on" +msgstr "" + +msgid "simple" msgstr "" diff --git a/po/ro_RO.po b/po/ro_RO.po index eedf0d0..642db72 100644 --- a/po/ro_RO.po +++ b/po/ro_RO.po @@ -8,134 +8,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" -msgstr "" +msgid "AltShift" +msgstr "AltShift" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " -msgstr "" +msgid "BackLight" +msgstr "BackLight" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." -msgstr "No EPG info available." +msgid "Charmap" +msgstr "Charmap" -#: lcdproc.c:20 -msgid "LCDproc output" -msgstr "" +msgid "FullCycle" +msgstr "FullCycle" -#: lcdproc.c:79 -msgid "Waiting for EPG info." -msgstr "Scanning for EPG info." +msgid "HighClientPriority" +msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" -msgstr "" +msgid "No EPG info available." +msgstr "No EPG info available." -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "OutputNumber" -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" -msgstr "FullCycle" - -#: lcdproc.c:409 -msgid "TimeDateCycle" -msgstr "TimeDateCycle" - -#: lcdproc.c:410 -msgid "VolumeKeep" -msgstr "VolumeKeep" +msgid "Recording status" +msgstr "" -#: lcdproc.c:411 -msgid "Scrollwait" -msgstr "Scrollwait" +msgid "Right channel" +msgstr "" -#: lcdproc.c:412 msgid "Scrollspeed" msgstr "Scrollspeed" -#: lcdproc.c:413 -msgid "Charmap" -msgstr "Charmap" - -#: lcdproc.c:414 -msgid "AltShift" -msgstr "AltShift" - -#: lcdproc.c:415 -msgid "BackLight" -msgstr "BackLight" +msgid "Scrollwait" +msgstr "Scrollwait" -#: lcdproc.c:416 msgid "SetClientPriority" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "Show time" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Stereo" msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "TimeDateCycle" +msgstr "TimeDateCycle" + +msgid "Volume " msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "OutputNumber" +msgid "VolumeKeep" +msgstr "VolumeKeep" -#: lcdproc.c:426 -msgid "Recording status" +msgid "Waiting for EPG info." +msgstr "Scanning for EPG info." + +msgid "auto" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "detailed" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "off" +msgstr "" + +msgid "on" +msgstr "" + +msgid "simple" msgstr "" diff --git a/po/ru_RU.po b/po/ru_RU.po index 009f358..edef8e2 100644 --- a/po/ru_RU.po +++ b/po/ru_RU.po @@ -7,143 +7,106 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.7.16\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2011-01-19 23:59+0100\n" "Last-Translator: Jakob Kais <schpuntik@freenet.de>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Russian\n" "X-Poedit-Country: RUSSIAN FEDERATION\n" -#: lcd.c:373 -msgid "Mute" -msgstr "ΠΡΠΊΠ». ΠΠ²ΡΠΊΠ°" +msgid "AltShift" +msgstr "" -#: lcd.c:379 -#: lcd.c:382 -#: lcd.c:388 -msgid "Volume " -msgstr "ΠΡΠΎΠΌΠΊΠΎΡΡΡ" +msgid "BackLight" +msgstr "ΠΠΎΠ΄ΡΠ²Π΅ΡΠΊΠ°" -#: lcd.c:732 -#: lcd.c:735 -msgid "RECORDING" -msgstr "ΠΠ°ΠΏΠΈΡΡ" +msgid "BackLightWait" +msgstr "" -#: lcd.c:862 -#: lcdproc.c:252 -#: lcdproc.c:262 -msgid "No EPG info available." -msgstr "ΠΠ΅ΡΡ ΠΈΠ½ΡΠΎΡΠΌΠ°ΡΠΈΠΈ Π’Π΅Π»Π΅Π³ΠΈΠ΄Π°" +msgid "Charmap" +msgstr "ΠΠΎΠ΄ΠΈΡΠΎΠ²ΠΊΠ°" -#: lcdproc.c:20 -msgid "LCDproc output" -msgstr "ΠΡΠ²ΠΎΠ΄ LCDproc " +msgid "FullCycle" +msgstr "ΠΠ»ΠΈΡΠ΅Π»ΡΠ½ΠΎΡΡΡ ΠΏΠΎΠ»Π½ΠΎΠ³ΠΎ ΡΠΈΠΊΠ»Π°" -#: lcdproc.c:79 -msgid "Waiting for EPG info." -msgstr "ΠΠΎΠΈΡΠΊ ΠΈΠ½ΡΠΎΡΠΌΠ°ΡΠΈΠΈ Π’Π΅Π»Π΅Π³ΠΈΠ΄Π°" +msgid "HighClientPriority" +msgstr "ΠΡΡΠΎΠΊΠΈΠΉ ΠΏΡΠΈΠΎΡΠΈΡΠ΅Ρ" -#: lcdproc.c:135 -msgid "Stereo" -msgstr "Π‘ΡΠ΅ΡΠ΅ΠΎ" +msgid "LCDproc output" +msgstr "ΠΡΠ²ΠΎΠ΄ LCDproc " -#: lcdproc.c:141 msgid "Left channel" msgstr "ΠΠ΅Π²ΡΠΉ ΠΊΠ°Π½Π°Π»" -#: lcdproc.c:147 -msgid "Right channel" -msgstr "ΠΡΠ°Π²ΡΠΉ ΠΊΠ°Π½Π°Π»" +msgid "Mute" +msgstr "ΠΡΠΊΠ». ΠΠ²ΡΠΊΠ°" -#: lcdproc.c:401 -msgid "off" -msgstr "Π²ΡΠΊΠ»" +msgid "No EPG info available." +msgstr "ΠΠ΅ΡΡ ΠΈΠ½ΡΠΎΡΠΌΠ°ΡΠΈΠΈ Π’Π΅Π»Π΅Π³ΠΈΠ΄Π°" -#: lcdproc.c:402 -msgid "on" -msgstr "Π²ΠΊΠ»" +msgid "NormalClientPriority" +msgstr " ΠΠΎΡΠΌΠ°Π»ΡΠ½ΡΠΉ ΠΏΡΠΈΠΎΡΠΈΡΠ΅Ρ" -#: lcdproc.c:403 -msgid "auto" -msgstr "Π°Π²ΡΠΎ" +msgid "OutputNumber" +msgstr "ΠΠΎΠ»ΠΈΡΠ΅ΡΡΠ²ΠΎ Π²ΡΡ
ΠΎΠ΄ΠΎΠ² Π½Π° LCD" -#: lcdproc.c:404 -msgid "detailed" -msgstr "ΠΏΠΎΠ΄ΡΠΎΠ±Π½ΠΎ" +msgid "PrioWait" +msgstr "" -#: lcdproc.c:405 -msgid "simple" -msgstr "ΠΏΡΠΎΡΡΠΎ" +msgid "RECORDING" +msgstr "ΠΠ°ΠΏΠΈΡΡ" -#: lcdproc.c:408 -msgid "FullCycle" -msgstr "ΠΠ»ΠΈΡΠ΅Π»ΡΠ½ΠΎΡΡΡ ΠΏΠΎΠ»Π½ΠΎΠ³ΠΎ ΡΠΈΠΊΠ»Π°" +msgid "Recording status" +msgstr "Π‘ΡΠ°ΡΡΡ Π·Π°ΠΏΠΈΡΠΈ" -#: lcdproc.c:409 -msgid "TimeDateCycle" -msgstr "ΠΡΠ΅ΠΌΠ΅Π½Π½Π°Ρ Π±Π°Π»ΠΊΠ°" +msgid "Right channel" +msgstr "ΠΡΠ°Π²ΡΠΉ ΠΊΠ°Π½Π°Π»" -#: lcdproc.c:410 -msgid "VolumeKeep" -msgstr "ΠΡΠ΅ΠΌΡ ΠΏΠΎΠΊΠ°Π·Π° Π±Π°Π»ΠΊΠΈ ΠΡΠΎΠΌΠΊΠΎΡΡΠΈ" +msgid "Scrollspeed" +msgstr "Π‘ΠΊΠΎΡΠΎΡΡΡ Π΄Π²ΠΈΠΆΠ΅Π½ΠΈΡ ΡΠ΅ΠΊΡΡΠ°" -#: lcdproc.c:411 msgid "Scrollwait" msgstr "ΠΡΠ΅ΠΌΡ Π΄Π²ΠΈΠΆΠ΅Π½ΠΈΡ ΡΠ΅ΠΊΡΡΠ°" -#: lcdproc.c:412 -msgid "Scrollspeed" -msgstr "Π‘ΠΊΠΎΡΠΎΡΡΡ Π΄Π²ΠΈΠΆΠ΅Π½ΠΈΡ ΡΠ΅ΠΊΡΡΠ°" - -#: lcdproc.c:413 -msgid "Charmap" -msgstr "ΠΠΎΠ΄ΠΈΡΠΎΠ²ΠΊΠ°" +msgid "SetClientPriority" +msgstr "Π£ΡΡΠ°Π½ΠΎΠ²ΠΊΠ° ΠΏΡΠΈΠΎΡΠΈΡΠ΅ΡΠ° ΠΊΠ»ΠΈΠ΅Π½ΡΠ°" -#: lcdproc.c:414 -msgid "AltShift" -msgstr "" +msgid "Show subtitle" +msgstr "ΠΠΎΠΊΠ°Π·Π°ΡΡ ΠΎΠΏΠΈΡΠ°Π½ΠΈΠ΅" -#: lcdproc.c:415 -msgid "BackLight" -msgstr "ΠΠΎΠ΄ΡΠ²Π΅ΡΠΊΠ°" +msgid "Show time" +msgstr "ΠΠΎΠΊΠ°Π·Π°ΡΡ Π²ΡΠ΅ΠΌΡ" -#: lcdproc.c:416 -msgid "SetClientPriority" -msgstr "Π£ΡΡΠ°Π½ΠΎΠ²ΠΊΠ° ΠΏΡΠΈΠΎΡΠΈΡΠ΅ΡΠ° ΠΊΠ»ΠΈΠ΅Π½ΡΠ°" +msgid "Stereo" +msgstr "Π‘ΡΠ΅ΡΠ΅ΠΎ" -#: lcdproc.c:417 -msgid "NormalClientPriority" -msgstr " ΠΠΎΡΠΌΠ°Π»ΡΠ½ΡΠΉ ΠΏΡΠΈΠΎΡΠΈΡΠ΅Ρ" +msgid "TimeDateCycle" +msgstr "ΠΡΠ΅ΠΌΠ΅Π½Π½Π°Ρ Π±Π°Π»ΠΊΠ°" -#: lcdproc.c:418 -msgid "HighClientPriority" -msgstr "ΠΡΡΠΎΠΊΠΈΠΉ ΠΏΡΠΈΠΎΡΠΈΡΠ΅Ρ" +msgid "Volume " +msgstr "ΠΡΠΎΠΌΠΊΠΎΡΡΡ" -#: lcdproc.c:419 -msgid "BackLightWait" -msgstr "" +msgid "VolumeKeep" +msgstr "ΠΡΠ΅ΠΌΡ ΠΏΠΎΠΊΠ°Π·Π° Π±Π°Π»ΠΊΠΈ ΠΡΠΎΠΌΠΊΠΎΡΡΠΈ" -#: lcdproc.c:420 -msgid "PrioWait" -msgstr "" +msgid "Waiting for EPG info." +msgstr "ΠΠΎΠΈΡΠΊ ΠΈΠ½ΡΠΎΡΠΌΠ°ΡΠΈΠΈ Π’Π΅Π»Π΅Π³ΠΈΠ΄Π°" -#: lcdproc.c:421 -#: lcdproc.c:423 -msgid "OutputNumber" -msgstr "ΠΠΎΠ»ΠΈΡΠ΅ΡΡΠ²ΠΎ Π²ΡΡ
ΠΎΠ΄ΠΎΠ² Π½Π° LCD" +msgid "auto" +msgstr "Π°Π²ΡΠΎ" -#: lcdproc.c:426 -msgid "Recording status" -msgstr "Π‘ΡΠ°ΡΡΡ Π·Π°ΠΏΠΈΡΠΈ" +msgid "detailed" +msgstr "ΠΏΠΎΠ΄ΡΠΎΠ±Π½ΠΎ" -#: lcdproc.c:427 -msgid "Show time" -msgstr "ΠΠΎΠΊΠ°Π·Π°ΡΡ Π²ΡΠ΅ΠΌΡ" +msgid "off" +msgstr "Π²ΡΠΊΠ»" -#: lcdproc.c:428 -msgid "Show subtitle" -msgstr "ΠΠΎΠΊΠ°Π·Π°ΡΡ ΠΎΠΏΠΈΡΠ°Π½ΠΈΠ΅" +msgid "on" +msgstr "Π²ΠΊΠ»" +msgid "simple" +msgstr "ΠΏΡΠΎΡΡΠΎ" diff --git a/po/sl_SI.po b/po/sl_SI.po index 906b33f..8eeeb24 100644 --- a/po/sl_SI.po +++ b/po/sl_SI.po @@ -8,134 +8,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" -msgstr "" +msgid "AltShift" +msgstr "AltShift" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " -msgstr "" +msgid "BackLight" +msgstr "BackLight" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." -msgstr "No EPG info available." +msgid "Charmap" +msgstr "Charmap" -#: lcdproc.c:20 -msgid "LCDproc output" -msgstr "" +msgid "FullCycle" +msgstr "FullCycle" -#: lcdproc.c:79 -msgid "Waiting for EPG info." -msgstr "Scanning for EPG info." +msgid "HighClientPriority" +msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" -msgstr "" +msgid "No EPG info available." +msgstr "No EPG info available." -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "OutputNumber" -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" -msgstr "FullCycle" - -#: lcdproc.c:409 -msgid "TimeDateCycle" -msgstr "TimeDateCycle" - -#: lcdproc.c:410 -msgid "VolumeKeep" -msgstr "VolumeKeep" +msgid "Recording status" +msgstr "" -#: lcdproc.c:411 -msgid "Scrollwait" -msgstr "Scrollwait" +msgid "Right channel" +msgstr "" -#: lcdproc.c:412 msgid "Scrollspeed" msgstr "Scrollspeed" -#: lcdproc.c:413 -msgid "Charmap" -msgstr "Charmap" - -#: lcdproc.c:414 -msgid "AltShift" -msgstr "AltShift" - -#: lcdproc.c:415 -msgid "BackLight" -msgstr "BackLight" +msgid "Scrollwait" +msgstr "Scrollwait" -#: lcdproc.c:416 msgid "SetClientPriority" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "Show time" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Stereo" msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "TimeDateCycle" +msgstr "TimeDateCycle" + +msgid "Volume " msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "OutputNumber" +msgid "VolumeKeep" +msgstr "VolumeKeep" -#: lcdproc.c:426 -msgid "Recording status" +msgid "Waiting for EPG info." +msgstr "Scanning for EPG info." + +msgid "auto" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "detailed" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "off" +msgstr "" + +msgid "on" +msgstr "" + +msgid "simple" msgstr "" diff --git a/po/sv_SE.po b/po/sv_SE.po index b5a7c92..b63d811 100644 --- a/po/sv_SE.po +++ b/po/sv_SE.po @@ -8,134 +8,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Tomas Prybil <tomas@prybil.se>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" -msgstr "" +msgid "AltShift" +msgstr "AltShift" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " -msgstr "" +msgid "BackLight" +msgstr "BackLight" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." -msgstr "No EPG info available." +msgid "Charmap" +msgstr "Charmap" -#: lcdproc.c:20 -msgid "LCDproc output" -msgstr "" +msgid "FullCycle" +msgstr "FullCycle" -#: lcdproc.c:79 -msgid "Waiting for EPG info." -msgstr "Scanning for EPG info." +msgid "HighClientPriority" +msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" -msgstr "" +msgid "No EPG info available." +msgstr "No EPG info available." -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "OutputNumber" -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" -msgstr "FullCycle" - -#: lcdproc.c:409 -msgid "TimeDateCycle" -msgstr "TimeDateCycle" - -#: lcdproc.c:410 -msgid "VolumeKeep" -msgstr "VolumeKeep" +msgid "Recording status" +msgstr "" -#: lcdproc.c:411 -msgid "Scrollwait" -msgstr "Scrollwait" +msgid "Right channel" +msgstr "" -#: lcdproc.c:412 msgid "Scrollspeed" msgstr "Scrollspeed" -#: lcdproc.c:413 -msgid "Charmap" -msgstr "Charmap" - -#: lcdproc.c:414 -msgid "AltShift" -msgstr "AltShift" - -#: lcdproc.c:415 -msgid "BackLight" -msgstr "BackLight" +msgid "Scrollwait" +msgstr "Scrollwait" -#: lcdproc.c:416 msgid "SetClientPriority" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "Show time" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Stereo" msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "TimeDateCycle" +msgstr "TimeDateCycle" + +msgid "Volume " msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "OutputNumber" +msgid "VolumeKeep" +msgstr "VolumeKeep" -#: lcdproc.c:426 -msgid "Recording status" +msgid "Waiting for EPG info." +msgstr "Scanning for EPG info." + +msgid "auto" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "detailed" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "off" +msgstr "" + +msgid "on" +msgstr "" + +msgid "simple" msgstr "" diff --git a/po/tr_TR.po b/po/tr_TR.po index 1f22330..90854c7 100644 --- a/po/tr_TR.po +++ b/po/tr_TR.po @@ -7,134 +7,104 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <vdr@joachim-wilke.de>\n" -"POT-Creation-Date: 2011-01-01 16:52+0100\n" +"POT-Creation-Date: 2012-04-23 21:57+0200\n" "PO-Revision-Date: 2007-08-12 20:41+0200\n" "Last-Translator: Oktay Yolgeηen <oktay_73@yahoo.de>\n" "Language-Team: <vdr@linuxtv.org>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-9\n" "Content-Transfer-Encoding: 8bit\n" -#: lcd.c:373 -msgid "Mute" +msgid "AltShift" msgstr "" -#: lcd.c:379 lcd.c:382 lcd.c:388 -msgid "Volume " +msgid "BackLight" msgstr "" -#: lcd.c:732 lcd.c:735 -msgid "RECORDING" +msgid "BackLightWait" msgstr "" -#: lcd.c:862 lcdproc.c:252 lcdproc.c:262 -msgid "No EPG info available." +msgid "Charmap" msgstr "" -#: lcdproc.c:20 -msgid "LCDproc output" +msgid "FullCycle" msgstr "" -#: lcdproc.c:79 -msgid "Waiting for EPG info." +msgid "HighClientPriority" msgstr "" -#: lcdproc.c:135 -msgid "Stereo" +msgid "LCDproc output" msgstr "" -#: lcdproc.c:141 msgid "Left channel" msgstr "" -#: lcdproc.c:147 -msgid "Right channel" +msgid "Mute" msgstr "" -#: lcdproc.c:401 -msgid "off" +msgid "No EPG info available." msgstr "" -#: lcdproc.c:402 -msgid "on" +msgid "NormalClientPriority" msgstr "" -#: lcdproc.c:403 -msgid "auto" -msgstr "" +msgid "OutputNumber" +msgstr "RECORDING" -#: lcdproc.c:404 -msgid "detailed" +msgid "PrioWait" msgstr "" -#: lcdproc.c:405 -msgid "simple" +msgid "RECORDING" msgstr "" -#: lcdproc.c:408 -msgid "FullCycle" +msgid "Recording status" msgstr "" -#: lcdproc.c:409 -msgid "TimeDateCycle" +msgid "Right channel" msgstr "" -#: lcdproc.c:410 -msgid "VolumeKeep" +msgid "Scrollspeed" msgstr "" -#: lcdproc.c:411 msgid "Scrollwait" msgstr "" -#: lcdproc.c:412 -msgid "Scrollspeed" +msgid "SetClientPriority" msgstr "" -#: lcdproc.c:413 -msgid "Charmap" +msgid "Show subtitle" msgstr "" -#: lcdproc.c:414 -msgid "AltShift" +msgid "Show time" msgstr "" -#: lcdproc.c:415 -msgid "BackLight" +msgid "Stereo" msgstr "" -#: lcdproc.c:416 -msgid "SetClientPriority" +msgid "TimeDateCycle" msgstr "" -#: lcdproc.c:417 -msgid "NormalClientPriority" +msgid "Volume " msgstr "" -#: lcdproc.c:418 -msgid "HighClientPriority" +msgid "VolumeKeep" msgstr "" -#: lcdproc.c:419 -msgid "BackLightWait" +msgid "Waiting for EPG info." msgstr "" -#: lcdproc.c:420 -msgid "PrioWait" +msgid "auto" msgstr "" -#: lcdproc.c:421 lcdproc.c:423 -msgid "OutputNumber" -msgstr "RECORDING" +msgid "detailed" +msgstr "" -#: lcdproc.c:426 -msgid "Recording status" +msgid "off" msgstr "" -#: lcdproc.c:427 -msgid "Show time" +msgid "on" msgstr "" -#: lcdproc.c:428 -msgid "Show subtitle" +msgid "simple" msgstr "" |