diff -Nur undelete-0.0.6/i18n.c undelete-0.0.7/i18n.c --- undelete-0.0.6/i18n.c 2005-11-17 21:05:05.000000000 +0100 +++ undelete-0.0.7/i18n.c 2008-02-02 18:17:20.000000000 +0100 @@ -8,6 +8,10 @@ #include "i18n.h" +const char *i18n_name = 0; + +#if APIVERSNUM < 10507 + const tI18nPhrase Phrases[] = { { "Deleted Recordings", "Gelöschte Aufnahmen", @@ -62,7 +66,7 @@ "",// TODO Magyar "",// TODO Català }, - { " -m --visible_in_mainmenu Show the plugin in the mainmenu\n -M --hide_in_mainmenu Hide the plugin in the mainmenu\n You can start the Plugin in the setupmenu\n -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n (set also -m)\n -c --confirm_purge_rec show confirmation for purge recording\n -C --not_confirm_purge_rec purge recording without confirmation\n -d --confirm_purge_dir show confirmation for purge directory\n -D --not_confirm_purge_dir purge directory without confirmation\n -e --confirm_purge_all show confirmation for purge all function\n -E --not_confirm_purge_all purge all function without confirmation\n -s --confirm_salvage_rec show confirmation for salvage recording\n -S --not_confirm_salvage_rec salvage recording without confirmation\n -t --confirm_salvage_dir show confirmation for salvage directory\n -T --not_confirm_salvage_dir salvage directory without confirmation\n -u --confirm_salvage_all show confirmation for salvage all function\n -U --not_confirm_salvage_all salvage all function without confirmation\n -v --verbose Enable more logging\n -V --noverbose Disable more loggig\n --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n form setup-menu\n @config-file Read also parameters from this file\n note: recording means deleted recordings (there not show in VDR)", + { " -m --visible_in_mainmenu Show the plugin in the mainmenu\n -M --hide_in_mainmenu Hide the plugin in the mainmenu\n You can start the Plugin in the setupmenu\n -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n (set also -m)\n -c --confirm_purge_rec show confirmation for purge recording\n -C --not_confirm_purge_rec purge recording without confirmation\n -d --confirm_purge_dir show confirmation for purge directory\n -D --not_confirm_purge_dir purge directory without confirmation\n -e --confirm_purge_all show confirmation for purge all function\n -E --not_confirm_purge_all purge all function without confirmation\n -s --confirm_salvage_rec show confirmation for salvage recording\n -S --not_confirm_salvage_rec salvage recording without confirmation\n -t --confirm_salvage_dir show confirmation for salvage directory\n -T --not_confirm_salvage_dir salvage directory without confirmation\n -u --confirm_salvage_all show confirmation for salvage all function\n -U --not_confirm_salvage_all salvage all function without confirmation\n -v --verbose Enable more logging\n -V --noverbose Disable more loggig\n --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n form setup-menu\n @config-file Read also parameters from this file\n note: recording means deleted recordings (there not show in VDR)" " -m --visible_in_mainmenu Plugin wird im Hautmenü angezeigt\n -M --hide_in_mainmenu kein Eintrag im Hauptmenü für das Plugin\n es kann über das Setup-Menü gestartet werden\n -n Name --mainmenu_name=Name Name für den Eintrag im Hauptmenü\n (diese Option setzt auch -m)\n -c --confirm_purge_rec Bestätigung für das Löschen von Aufnahmen\n -C --not_confirm_purge_rec keine Bestätigung (löschen Aufnahmen)\n -d --confirm_purge_dir Bestätigung beim Löschen von Verzeichnissen\n -D --not_confirm_purge_dir keine Bestätigung (löschen Verzeichnissen)\n -e --confirm_purge_all Bestätigung beim \"alles Löschen\"\n -E --not_confirm_purge_all \"alles Löschen\" ohne Bestätigung\n -s --confirm_salvage_rec Bestätigung Wiederherstellung von Aufnahmen\n -S --not_confirm_salvage_rec keine Best. Wiederherstellung von Aufnahmen\n -t --confirm_salvage_dir Bestätigung Wiederherstellung von Verzei.\n -T --not_confirm_salvage_dir keine Best. Wiederherstellung von Verzei.\n -u --confirm_salvage_all Bestätigung beim \"alles Wiederherstellen\"\n -U --not_confirm_salvage_all \"alles Wiederherstellen\" ohne Bestätigung\n -v --verbose erweiterte Protokollierung aktivieren\n -V --noverbose keine erweiterte Protokollierung\n --nosetup_commandline Option 'Kommandozeile hat Vorrang'\n im Setup-Menü verbergen\n @config-file Komandozeilenoptionen auch aus der angegebenen\n Datei lesen\n\n Hinweis: Mit Aufnahmen sind hier die gelöschten Aufnahmen gemeint", "",// TODO Slovenski "",// TODO Italiano @@ -1240,3 +1244,5 @@ }, { NULL } }; + +#endif diff -Nur undelete-0.0.6/i18n.h undelete-0.0.7/i18n.h --- undelete-0.0.6/i18n.h 2004-10-08 02:03:31.000000000 +0200 +++ undelete-0.0.7/i18n.h 2008-02-02 18:22:02.000000000 +0100 @@ -11,6 +11,20 @@ #include +extern const char *i18n_name; + +#if APIVERSNUM < 10507 extern const tI18nPhrase Phrases[]; +#endif + +#undef tr +#define tr(s) I18nTranslate(s, i18n_name) + +#ifndef trNOOP +#define trNOOP(s) (s) +#endif +#ifndef trVDR +#define trVDR(s) tr(s) +#endif #endif //_I18N__H diff -Nur undelete-0.0.6/Makefile undelete-0.0.7/Makefile --- undelete-0.0.6/Makefile 2008-01-28 18:57:07.000000000 +0100 +++ undelete-0.0.7/Makefile 2008-02-02 19:48:00.000000000 +0100 @@ -33,8 +33,14 @@ VDRVERSION = $(shell grep 'define VDRVERSION ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g') APIVERSION = $(shell grep 'define APIVERSION ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g') -#VDRVERSNUM = $(shell grep 'define VDRVERSNUM ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g') +VDRVERSNUM = $(shell sed -ne '/define VDRVERSNUM/ s/^.[a-zA-Z ]*\([0-9]*\) .*$$/\1/p' $(VDRDIR)/config.h) +APIVERSNUM = $(shell sed -ne '/define APIVERSNUM/ s/^.[a-zA-Z ]*\([0-9]*\) .*$$/\1/p' $(VDRDIR)/config.h) +ifeq ($(strip $(APIVERSNUM)),) + APIVERSNUM = $(VDRVERSNUM) +endif + + ### The name of the distribution archive: ARCHIVE = $(PLUGIN)-$(VERSION) @@ -68,7 +74,10 @@ ### The object files (add further files here): -OBJS = $(PLUGIN).o i18n.o menuundelete.o menusetup.o vdrtools.o menueditkeys.o menudispkey.o +OBJS = $(PLUGIN).o menuundelete.o menusetup.o vdrtools.o menueditkeys.o menudispkey.o +ifeq ($(shell test $(APIVERSNUM) -lt 10507 ; echo $$?),0) + OBJS += i18n.o +endif ifeq ($(shell test $(VDRVERSNUM) -lt 10308 ; echo $$?),0) OBJS += menutext.o endif @@ -87,9 +96,34 @@ -include $(DEPFILE) +### 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 --no-location -k -ktr -ktrNOOP --msgid-bugs-address='<>' -o $@ $^ + +%.po: $(I18Npot) + msgmerge -U --no-wrap --no-location --backup=none -q $@ $< + @touch $@ + +$(I18Nmsgs): $(LOCALEDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo + @mkdir -p $(dir $@) + cp $< $@ + +.PHONY: i18n +i18n: $(I18Nmsgs) + ### Targets: -all: libvdr-$(PLUGIN).so +all: libvdr-$(PLUGIN).so i18n libvdr-$(PLUGIN).so: $(OBJS) $(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ @@ -104,4 +138,5 @@ @echo Distribution package created as $(PACKAGE).tgz clean: + @-rm -f $(PODIR)/*.mo $(PODIR)/*.pot @-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~ diff -Nur undelete-0.0.6/menudispkey.c undelete-0.0.7/menudispkey.c --- undelete-0.0.6/menudispkey.c 2005-11-17 21:05:05.000000000 +0100 +++ undelete-0.0.7/menudispkey.c 2008-02-02 20:13:28.000000000 +0100 @@ -10,7 +10,9 @@ #include "undelete.h" #include "menunoselectitem.h" #include "menusetup.h" +#if APIVERSNUM < 10507 #include "i18n.h" +#endif #include #include #include diff -Nur undelete-0.0.6/menusetup.c undelete-0.0.7/menusetup.c --- undelete-0.0.6/menusetup.c 2005-11-17 21:05:05.000000000 +0100 +++ undelete-0.0.7/menusetup.c 2008-02-02 20:13:48.000000000 +0100 @@ -9,7 +9,9 @@ #include "menusetup.h" #include "undelete.h" #include "menuundelete.h" +#if APIVERSNUM < 10507 #include "i18n.h" +#endif #include "vdrtools.h" #include "menueditkeys.h" #include "menunoselectitem.h" diff -Nur undelete-0.0.6/menuundelete.c undelete-0.0.7/menuundelete.c --- undelete-0.0.6/menuundelete.c 2006-03-15 22:12:06.000000000 +0100 +++ undelete-0.0.7/menuundelete.c 2008-02-02 20:13:10.000000000 +0100 @@ -12,7 +12,9 @@ #endif #include "undelete.h" #include "menudispkey.h" +#if APIVERSNUM < 10507 #include "i18n.h" +#endif #include "vdrtools.h" #include #include diff -Nur undelete-0.0.6/po/ca_ES.po undelete-0.0.7/po/ca_ES.po --- undelete-0.0.6/po/ca_ES.po 1970-01-01 01:00:00.000000000 +0100 +++ undelete-0.0.7/po/ca_ES.po 2008-02-02 20:14:45.000000000 +0100 @@ -0,0 +1,395 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Marc Rovira Vall , 2003 +# Ramon Roca , 2003 +# Jordi Vilà , 2003 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.5.7\n" +"Report-Msgid-Bugs-To: <>\n" +"POT-Creation-Date: 2008-02-02 19:49+0100\n" +"PO-Revision-Date: 2008-02-02 18:03+0100\n" +"Last-Translator: Jordi Vilà \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Menu$assigned keys" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Help$key\tfunction" +msgstr "" + +msgid "Help$OK" +msgstr "" + +msgid "Help$numerickey" +msgstr "" + +msgid "Setup$Display deleted recordings now" +msgstr "" + +msgid "Setup$Preferr Command Line Parameter" +msgstr "" + +msgid "Setup$Visible in Mainmenu" +msgstr "" + +msgid "Setup$ Name for Mainmenu" +msgstr "" + +msgid "Setup$Confirm purge deleted recordings" +msgstr "" + +msgid "Setup$Confirm purge directories" +msgstr "" + +msgid "Setup$Confirm purge all deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage directories" +msgstr "" + +msgid "Setup$Confirm salvage all deleted recordings" +msgstr "" + +msgid "Setup$Purgeline position" +msgstr "" + +msgid "Setup$ Display bottom purge ex lines" +msgstr "" + +msgid "Setup$Salvageline position" +msgstr "" + +msgid "Setup$ Display bottom salvage ex lines" +msgstr "" + +msgid "Setup$ inward lines" +msgstr "" + +msgid "Choise$purge" +msgstr "" + +msgid "Choise$salvage" +msgstr "" + +msgid "Setup$Change assigned functionkeys" +msgstr "" + +#, c-format +msgid "Setup$ Key for function-%s" +msgstr "" + +msgid "Setup$ ** Spezial handled keys **" +msgstr "" + +msgid "Setup$ OK-key function" +msgstr "" + +msgid "Setup$ Numerickey select the entry and" +msgstr "" + +msgid "Setup$Verbose Log Mode" +msgstr "" + +#, c-format +msgid "Error$Key for funtion %s and %s identical." +msgstr "" + +msgid "Setup$Select" +msgstr "" + +msgid "Deleted Recordings" +msgstr "" + +msgid "Display$prepare recording display..." +msgstr "" + +msgid "Error while accessing recording!" +msgstr "" + +msgid "Display$Purge all records ..." +msgstr "" + +msgid "Display$Salavge all records ..." +msgstr "" + +msgid "Question$Purge recording?" +msgstr "" + +msgid "Question$Purge recordings in diretory?" +msgstr "" + +msgid "Question$Salvage recording?" +msgstr "" + +msgid "Question$Salvage recordings in directory?" +msgstr "" + +msgid "Question$Purge all recordings?" +msgstr "" + +msgid "Question$Salvage all recordings?" +msgstr "" + +msgid "Summary" +msgstr "" + +msgid "Display$please wait ..." +msgstr "" + +msgid "Error$Recording with the same name exists!" +msgstr "" + +msgid "Error$error while read last filenumber" +msgstr "" + +#, c-format +msgid "Error$error accessing vdrfile %03d" +msgstr "" + +msgid "Error$error accessing indexfile" +msgstr "" + +msgid "undelete for recordings" +msgstr "" + +msgid "Choise$none" +msgstr "" + +msgid "Choise$top" +msgstr "" + +msgid "Choise$bottom" +msgstr "" + +msgid "Choise$top and bottom" +msgstr "" + +msgid "Choise$open/summary" +msgstr "" + +msgid "Choise$purge all" +msgstr "" + +msgid "Choise$salvage all" +msgstr "" + +msgid "Choise$open" +msgstr "" + +msgid "Choise$summary" +msgstr "" + +msgid "Choise$switch hotkeys to 1" +msgstr "" + +msgid "Choise$switch hotkeys to 2" +msgstr "" + +msgid "Choise$Display keys" +msgstr "" + +msgid "Display$purge" +msgstr "" + +msgid "Display$salvage" +msgstr "" + +msgid "Display$purge all" +msgstr "" + +msgid "Display$salvage all" +msgstr "" + +msgid "Open" +msgstr "" + +msgid "Display$<--1" +msgstr "" + +msgid "Display$2-->" +msgstr "" + +msgid "Display$disp. keys" +msgstr "" + +msgid "Red" +msgstr "" + +msgid "Green" +msgstr "" + +msgid "Yellow" +msgstr "" + +msgid "Blue" +msgstr "" + +msgid "Choise$User" +msgstr "" + +msgid "" +" -m --visible_in_mainmenu Show the plugin in the mainmenu\n" +" -M --hide_in_mainmenu Hide the plugin in the mainmenu\n" +" You can start the Plugin in the setupmenu\n" +" -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n" +" (set also -m)\n" +" -c --confirm_purge_rec show confirmation for purge recording\n" +" -C --not_confirm_purge_rec purge recording without confirmation\n" +" -d --confirm_purge_dir show confirmation for purge directory\n" +" -D --not_confirm_purge_dir purge directory without confirmation\n" +" -e --confirm_purge_all show confirmation for purge all function\n" +" -E --not_confirm_purge_all purge all function without confirmation\n" +" -s --confirm_salvage_rec show confirmation for salvage recording\n" +" -S --not_confirm_salvage_rec salvage recording without confirmation\n" +" -t --confirm_salvage_dir show confirmation for salvage directory\n" +" -T --not_confirm_salvage_dir salvage directory without confirmation\n" +" -u --confirm_salvage_all show confirmation for salvage all function\n" +" -U --not_confirm_salvage_all salvage all function without confirmation\n" +" -v --verbose Enable more logging\n" +" -V --noverbose Disable more loggig\n" +" --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n" +" form setup-menu\n" +" @config-file Read also parameters from this file\n" +" note: recording means deleted recordings (there not show in VDR)" +msgstr "" + +msgid "Menu$Undelete recordings" +msgstr "" + +msgid "Bytes" +msgstr "" + +msgid "Up" +msgstr "" + +msgid "Down" +msgstr "" + +msgid "Menu" +msgstr "" + +msgid "Ok" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Left" +msgstr "" + +msgid "Right" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Pause" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Record" +msgstr "" + +msgid "FastFwd" +msgstr "" + +msgid "FastRew" +msgstr "" + +msgid "Power" +msgstr "" + +msgid "ChanUp" +msgstr "" + +msgid "ChanDn" +msgstr "" + +msgid "VolUp" +msgstr "" + +msgid "VolDn" +msgstr "" + +msgid "Mute" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Channels" +msgstr "" + +msgid "Timers" +msgstr "" + +msgid "Recordings" +msgstr "" + +msgid "Setup" +msgstr "" + +msgid "Commands" +msgstr "" + +msgid "User1" +msgstr "" + +msgid "User2" +msgstr "" + +msgid "User3" +msgstr "" + +msgid "User4" +msgstr "" + +msgid "User5" +msgstr "" + +msgid "User6" +msgstr "" + +msgid "User7" +msgstr "" + +msgid "User8" +msgstr "" + +msgid "User9" +msgstr "" + +msgid "none" +msgstr "" + +msgid "Kbd" +msgstr "" + +msgid "Salvage" +msgstr "" + +msgid "Purge" +msgstr "" + +msgid "DeleteLine" +msgstr "" + +msgid "HelpKeys" +msgstr "" + +msgid "unknow" +msgstr "" diff -Nur undelete-0.0.6/po/cs_CZ.po undelete-0.0.7/po/cs_CZ.po --- undelete-0.0.6/po/cs_CZ.po 1970-01-01 01:00:00.000000000 +0100 +++ undelete-0.0.7/po/cs_CZ.po 2008-02-02 20:14:45.000000000 +0100 @@ -0,0 +1,393 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Vladimír Bárta , 2006 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.5.7\n" +"Report-Msgid-Bugs-To: <>\n" +"POT-Creation-Date: 2008-02-02 19:49+0100\n" +"PO-Revision-Date: 2008-02-02 18:03+0100\n" +"Last-Translator: Vladimír Bárta \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Menu$assigned keys" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Help$key\tfunction" +msgstr "" + +msgid "Help$OK" +msgstr "" + +msgid "Help$numerickey" +msgstr "" + +msgid "Setup$Display deleted recordings now" +msgstr "" + +msgid "Setup$Preferr Command Line Parameter" +msgstr "" + +msgid "Setup$Visible in Mainmenu" +msgstr "" + +msgid "Setup$ Name for Mainmenu" +msgstr "" + +msgid "Setup$Confirm purge deleted recordings" +msgstr "" + +msgid "Setup$Confirm purge directories" +msgstr "" + +msgid "Setup$Confirm purge all deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage directories" +msgstr "" + +msgid "Setup$Confirm salvage all deleted recordings" +msgstr "" + +msgid "Setup$Purgeline position" +msgstr "" + +msgid "Setup$ Display bottom purge ex lines" +msgstr "" + +msgid "Setup$Salvageline position" +msgstr "" + +msgid "Setup$ Display bottom salvage ex lines" +msgstr "" + +msgid "Setup$ inward lines" +msgstr "" + +msgid "Choise$purge" +msgstr "" + +msgid "Choise$salvage" +msgstr "" + +msgid "Setup$Change assigned functionkeys" +msgstr "" + +#, c-format +msgid "Setup$ Key for function-%s" +msgstr "" + +msgid "Setup$ ** Spezial handled keys **" +msgstr "" + +msgid "Setup$ OK-key function" +msgstr "" + +msgid "Setup$ Numerickey select the entry and" +msgstr "" + +msgid "Setup$Verbose Log Mode" +msgstr "" + +#, c-format +msgid "Error$Key for funtion %s and %s identical." +msgstr "" + +msgid "Setup$Select" +msgstr "" + +msgid "Deleted Recordings" +msgstr "" + +msgid "Display$prepare recording display..." +msgstr "" + +msgid "Error while accessing recording!" +msgstr "" + +msgid "Display$Purge all records ..." +msgstr "" + +msgid "Display$Salavge all records ..." +msgstr "" + +msgid "Question$Purge recording?" +msgstr "" + +msgid "Question$Purge recordings in diretory?" +msgstr "" + +msgid "Question$Salvage recording?" +msgstr "" + +msgid "Question$Salvage recordings in directory?" +msgstr "" + +msgid "Question$Purge all recordings?" +msgstr "" + +msgid "Question$Salvage all recordings?" +msgstr "" + +msgid "Summary" +msgstr "" + +msgid "Display$please wait ..." +msgstr "" + +msgid "Error$Recording with the same name exists!" +msgstr "" + +msgid "Error$error while read last filenumber" +msgstr "" + +#, c-format +msgid "Error$error accessing vdrfile %03d" +msgstr "" + +msgid "Error$error accessing indexfile" +msgstr "" + +msgid "undelete for recordings" +msgstr "" + +msgid "Choise$none" +msgstr "" + +msgid "Choise$top" +msgstr "" + +msgid "Choise$bottom" +msgstr "" + +msgid "Choise$top and bottom" +msgstr "" + +msgid "Choise$open/summary" +msgstr "" + +msgid "Choise$purge all" +msgstr "" + +msgid "Choise$salvage all" +msgstr "" + +msgid "Choise$open" +msgstr "" + +msgid "Choise$summary" +msgstr "" + +msgid "Choise$switch hotkeys to 1" +msgstr "" + +msgid "Choise$switch hotkeys to 2" +msgstr "" + +msgid "Choise$Display keys" +msgstr "" + +msgid "Display$purge" +msgstr "" + +msgid "Display$salvage" +msgstr "" + +msgid "Display$purge all" +msgstr "" + +msgid "Display$salvage all" +msgstr "" + +msgid "Open" +msgstr "" + +msgid "Display$<--1" +msgstr "" + +msgid "Display$2-->" +msgstr "" + +msgid "Display$disp. keys" +msgstr "" + +msgid "Red" +msgstr "" + +msgid "Green" +msgstr "" + +msgid "Yellow" +msgstr "" + +msgid "Blue" +msgstr "" + +msgid "Choise$User" +msgstr "" + +msgid "" +" -m --visible_in_mainmenu Show the plugin in the mainmenu\n" +" -M --hide_in_mainmenu Hide the plugin in the mainmenu\n" +" You can start the Plugin in the setupmenu\n" +" -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n" +" (set also -m)\n" +" -c --confirm_purge_rec show confirmation for purge recording\n" +" -C --not_confirm_purge_rec purge recording without confirmation\n" +" -d --confirm_purge_dir show confirmation for purge directory\n" +" -D --not_confirm_purge_dir purge directory without confirmation\n" +" -e --confirm_purge_all show confirmation for purge all function\n" +" -E --not_confirm_purge_all purge all function without confirmation\n" +" -s --confirm_salvage_rec show confirmation for salvage recording\n" +" -S --not_confirm_salvage_rec salvage recording without confirmation\n" +" -t --confirm_salvage_dir show confirmation for salvage directory\n" +" -T --not_confirm_salvage_dir salvage directory without confirmation\n" +" -u --confirm_salvage_all show confirmation for salvage all function\n" +" -U --not_confirm_salvage_all salvage all function without confirmation\n" +" -v --verbose Enable more logging\n" +" -V --noverbose Disable more loggig\n" +" --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n" +" form setup-menu\n" +" @config-file Read also parameters from this file\n" +" note: recording means deleted recordings (there not show in VDR)" +msgstr "" + +msgid "Menu$Undelete recordings" +msgstr "" + +msgid "Bytes" +msgstr "" + +msgid "Up" +msgstr "" + +msgid "Down" +msgstr "" + +msgid "Menu" +msgstr "" + +msgid "Ok" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Left" +msgstr "" + +msgid "Right" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Pause" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Record" +msgstr "" + +msgid "FastFwd" +msgstr "" + +msgid "FastRew" +msgstr "" + +msgid "Power" +msgstr "" + +msgid "ChanUp" +msgstr "" + +msgid "ChanDn" +msgstr "" + +msgid "VolUp" +msgstr "" + +msgid "VolDn" +msgstr "" + +msgid "Mute" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Channels" +msgstr "" + +msgid "Timers" +msgstr "" + +msgid "Recordings" +msgstr "" + +msgid "Setup" +msgstr "" + +msgid "Commands" +msgstr "" + +msgid "User1" +msgstr "" + +msgid "User2" +msgstr "" + +msgid "User3" +msgstr "" + +msgid "User4" +msgstr "" + +msgid "User5" +msgstr "" + +msgid "User6" +msgstr "" + +msgid "User7" +msgstr "" + +msgid "User8" +msgstr "" + +msgid "User9" +msgstr "" + +msgid "none" +msgstr "" + +msgid "Kbd" +msgstr "" + +msgid "Salvage" +msgstr "" + +msgid "Purge" +msgstr "" + +msgid "DeleteLine" +msgstr "" + +msgid "HelpKeys" +msgstr "" + +msgid "unknow" +msgstr "" diff -Nur undelete-0.0.6/po/da_DK.po undelete-0.0.7/po/da_DK.po --- undelete-0.0.6/po/da_DK.po 1970-01-01 01:00:00.000000000 +0100 +++ undelete-0.0.7/po/da_DK.po 2008-02-02 20:14:45.000000000 +0100 @@ -0,0 +1,393 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Mogens Elneff , 2004 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.5.7\n" +"Report-Msgid-Bugs-To: <>\n" +"POT-Creation-Date: 2008-02-02 19:49+0100\n" +"PO-Revision-Date: 2008-02-02 18:03+0100\n" +"Last-Translator: Mogens Elneff \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Menu$assigned keys" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Help$key\tfunction" +msgstr "" + +msgid "Help$OK" +msgstr "" + +msgid "Help$numerickey" +msgstr "" + +msgid "Setup$Display deleted recordings now" +msgstr "" + +msgid "Setup$Preferr Command Line Parameter" +msgstr "" + +msgid "Setup$Visible in Mainmenu" +msgstr "" + +msgid "Setup$ Name for Mainmenu" +msgstr "" + +msgid "Setup$Confirm purge deleted recordings" +msgstr "" + +msgid "Setup$Confirm purge directories" +msgstr "" + +msgid "Setup$Confirm purge all deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage directories" +msgstr "" + +msgid "Setup$Confirm salvage all deleted recordings" +msgstr "" + +msgid "Setup$Purgeline position" +msgstr "" + +msgid "Setup$ Display bottom purge ex lines" +msgstr "" + +msgid "Setup$Salvageline position" +msgstr "" + +msgid "Setup$ Display bottom salvage ex lines" +msgstr "" + +msgid "Setup$ inward lines" +msgstr "" + +msgid "Choise$purge" +msgstr "" + +msgid "Choise$salvage" +msgstr "" + +msgid "Setup$Change assigned functionkeys" +msgstr "" + +#, c-format +msgid "Setup$ Key for function-%s" +msgstr "" + +msgid "Setup$ ** Spezial handled keys **" +msgstr "" + +msgid "Setup$ OK-key function" +msgstr "" + +msgid "Setup$ Numerickey select the entry and" +msgstr "" + +msgid "Setup$Verbose Log Mode" +msgstr "" + +#, c-format +msgid "Error$Key for funtion %s and %s identical." +msgstr "" + +msgid "Setup$Select" +msgstr "" + +msgid "Deleted Recordings" +msgstr "" + +msgid "Display$prepare recording display..." +msgstr "" + +msgid "Error while accessing recording!" +msgstr "" + +msgid "Display$Purge all records ..." +msgstr "" + +msgid "Display$Salavge all records ..." +msgstr "" + +msgid "Question$Purge recording?" +msgstr "" + +msgid "Question$Purge recordings in diretory?" +msgstr "" + +msgid "Question$Salvage recording?" +msgstr "" + +msgid "Question$Salvage recordings in directory?" +msgstr "" + +msgid "Question$Purge all recordings?" +msgstr "" + +msgid "Question$Salvage all recordings?" +msgstr "" + +msgid "Summary" +msgstr "" + +msgid "Display$please wait ..." +msgstr "" + +msgid "Error$Recording with the same name exists!" +msgstr "" + +msgid "Error$error while read last filenumber" +msgstr "" + +#, c-format +msgid "Error$error accessing vdrfile %03d" +msgstr "" + +msgid "Error$error accessing indexfile" +msgstr "" + +msgid "undelete for recordings" +msgstr "" + +msgid "Choise$none" +msgstr "" + +msgid "Choise$top" +msgstr "" + +msgid "Choise$bottom" +msgstr "" + +msgid "Choise$top and bottom" +msgstr "" + +msgid "Choise$open/summary" +msgstr "" + +msgid "Choise$purge all" +msgstr "" + +msgid "Choise$salvage all" +msgstr "" + +msgid "Choise$open" +msgstr "" + +msgid "Choise$summary" +msgstr "" + +msgid "Choise$switch hotkeys to 1" +msgstr "" + +msgid "Choise$switch hotkeys to 2" +msgstr "" + +msgid "Choise$Display keys" +msgstr "" + +msgid "Display$purge" +msgstr "" + +msgid "Display$salvage" +msgstr "" + +msgid "Display$purge all" +msgstr "" + +msgid "Display$salvage all" +msgstr "" + +msgid "Open" +msgstr "" + +msgid "Display$<--1" +msgstr "" + +msgid "Display$2-->" +msgstr "" + +msgid "Display$disp. keys" +msgstr "" + +msgid "Red" +msgstr "" + +msgid "Green" +msgstr "" + +msgid "Yellow" +msgstr "" + +msgid "Blue" +msgstr "" + +msgid "Choise$User" +msgstr "" + +msgid "" +" -m --visible_in_mainmenu Show the plugin in the mainmenu\n" +" -M --hide_in_mainmenu Hide the plugin in the mainmenu\n" +" You can start the Plugin in the setupmenu\n" +" -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n" +" (set also -m)\n" +" -c --confirm_purge_rec show confirmation for purge recording\n" +" -C --not_confirm_purge_rec purge recording without confirmation\n" +" -d --confirm_purge_dir show confirmation for purge directory\n" +" -D --not_confirm_purge_dir purge directory without confirmation\n" +" -e --confirm_purge_all show confirmation for purge all function\n" +" -E --not_confirm_purge_all purge all function without confirmation\n" +" -s --confirm_salvage_rec show confirmation for salvage recording\n" +" -S --not_confirm_salvage_rec salvage recording without confirmation\n" +" -t --confirm_salvage_dir show confirmation for salvage directory\n" +" -T --not_confirm_salvage_dir salvage directory without confirmation\n" +" -u --confirm_salvage_all show confirmation for salvage all function\n" +" -U --not_confirm_salvage_all salvage all function without confirmation\n" +" -v --verbose Enable more logging\n" +" -V --noverbose Disable more loggig\n" +" --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n" +" form setup-menu\n" +" @config-file Read also parameters from this file\n" +" note: recording means deleted recordings (there not show in VDR)" +msgstr "" + +msgid "Menu$Undelete recordings" +msgstr "" + +msgid "Bytes" +msgstr "" + +msgid "Up" +msgstr "" + +msgid "Down" +msgstr "" + +msgid "Menu" +msgstr "" + +msgid "Ok" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Left" +msgstr "" + +msgid "Right" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Pause" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Record" +msgstr "" + +msgid "FastFwd" +msgstr "" + +msgid "FastRew" +msgstr "" + +msgid "Power" +msgstr "" + +msgid "ChanUp" +msgstr "" + +msgid "ChanDn" +msgstr "" + +msgid "VolUp" +msgstr "" + +msgid "VolDn" +msgstr "" + +msgid "Mute" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Channels" +msgstr "" + +msgid "Timers" +msgstr "" + +msgid "Recordings" +msgstr "" + +msgid "Setup" +msgstr "" + +msgid "Commands" +msgstr "" + +msgid "User1" +msgstr "" + +msgid "User2" +msgstr "" + +msgid "User3" +msgstr "" + +msgid "User4" +msgstr "" + +msgid "User5" +msgstr "" + +msgid "User6" +msgstr "" + +msgid "User7" +msgstr "" + +msgid "User8" +msgstr "" + +msgid "User9" +msgstr "" + +msgid "none" +msgstr "" + +msgid "Kbd" +msgstr "" + +msgid "Salvage" +msgstr "" + +msgid "Purge" +msgstr "" + +msgid "DeleteLine" +msgstr "" + +msgid "HelpKeys" +msgstr "" + +msgid "unknow" +msgstr "" diff -Nur undelete-0.0.6/po/de_DE.po undelete-0.0.7/po/de_DE.po --- undelete-0.0.6/po/de_DE.po 1970-01-01 01:00:00.000000000 +0100 +++ undelete-0.0.7/po/de_DE.po 2008-02-02 20:14:45.000000000 +0100 @@ -0,0 +1,393 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Klaus Schmidinger , 2000 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.5.7\n" +"Report-Msgid-Bugs-To: <>\n" +"POT-Creation-Date: 2008-02-02 19:49+0100\n" +"PO-Revision-Date: 2008-02-02 18:03+0100\n" +"Last-Translator: Klaus Schmidinger \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Menu$assigned keys" +msgstr "Zugewiesene Tasten" + +msgid "Edit" +msgstr "" + +msgid "Help$key\tfunction" +msgstr "Taste\tFunktion" + +msgid "Help$OK" +msgstr "OK" + +msgid "Help$numerickey" +msgstr "Numerntaste" + +msgid "Setup$Display deleted recordings now" +msgstr "Gelöschte Aufnahmen jetzt anzeigen" + +msgid "Setup$Preferr Command Line Parameter" +msgstr "Kommandozeile hat Vorrang" + +msgid "Setup$Visible in Mainmenu" +msgstr "Im Hauptmenü sichtbar" + +msgid "Setup$ Name for Mainmenu" +msgstr " Eintragname im Hauptmenü" + +msgid "Setup$Confirm purge deleted recordings" +msgstr "Aufnahme löschen bestätigen" + +msgid "Setup$Confirm purge directories" +msgstr "Verzeichnisse löschen bestätigen" + +msgid "Setup$Confirm purge all deleted recordings" +msgstr "Bestätigung alles löschen" + +msgid "Setup$Confirm salvage deleted recordings" +msgstr "Wiederherstellung Aufn. bestätigen" + +msgid "Setup$Confirm salvage directories" +msgstr "Wiederherstellung Verz. bestätigen" + +msgid "Setup$Confirm salvage all deleted recordings" +msgstr "Bestätigung alles wiederherst." + +msgid "Setup$Purgeline position" +msgstr "Löschzeilenposition" + +msgid "Setup$ Display bottom purge ex lines" +msgstr " Anzahl Einträge für Darstellung" + +msgid "Setup$Salvageline position" +msgstr "Wiederherstellungszeilenposition" + +msgid "Setup$ Display bottom salvage ex lines" +msgstr " Anzahl Einträge für Darstellung" + +msgid "Setup$ inward lines" +msgstr " Innenliegende Zeilen" + +msgid "Choise$purge" +msgstr "löschen" + +msgid "Choise$salvage" +msgstr "wiederherst." + +msgid "Setup$Change assigned functionkeys" +msgstr "Ändern der Tastenbelegung" + +#, c-format +msgid "Setup$ Key for function-%s" +msgstr " Taste für Funktion-%s" + +msgid "Setup$ ** Spezial handled keys **" +msgstr " ** Spezialtasten **" + +msgid "Setup$ OK-key function" +msgstr " Funktion der OK-Taste" + +msgid "Setup$ Numerickey select the entry and" +msgstr " Auswahl mit Nummern und" + +msgid "Setup$Verbose Log Mode" +msgstr "Ausführliche Protokollierung" + +#, c-format +msgid "Error$Key for funtion %s and %s identical." +msgstr "Tasten von %s und %s sind gleich." + +msgid "Setup$Select" +msgstr "Auswahl" + +msgid "Deleted Recordings" +msgstr "Gelöschte Aufnahmen" + +msgid "Display$prepare recording display..." +msgstr "Listenanzeige wird vorbereitet..." + +msgid "Error while accessing recording!" +msgstr "" + +msgid "Display$Purge all records ..." +msgstr "Alle Aufnahmen endgültig löschen ..." + +msgid "Display$Salavge all records ..." +msgstr "Alle Aufnahmen wiederherstellen ..." + +msgid "Question$Purge recording?" +msgstr "Aufnahme endgültig löschen?" + +msgid "Question$Purge recordings in diretory?" +msgstr "Aufnahmen in Verzeichnis endgültig löschen?" + +msgid "Question$Salvage recording?" +msgstr "Aufnahme wiederherstellen?" + +msgid "Question$Salvage recordings in directory?" +msgstr "Aufnahmen in Verzeichnis wiederherstellen?" + +msgid "Question$Purge all recordings?" +msgstr "Alle Aufnahmen endgültig löschen?" + +msgid "Question$Salvage all recordings?" +msgstr "Alle Aufnahmen wiederherstellen?" + +msgid "Summary" +msgstr "" + +msgid "Display$please wait ..." +msgstr "bitte warten ..." + +msgid "Error$Recording with the same name exists!" +msgstr "Aufnahme mit selben Namen ist vorhanden!" + +msgid "Error$error while read last filenumber" +msgstr "Fehler beim lesen der letzten Dateinummer" + +#, c-format +msgid "Error$error accessing vdrfile %03d" +msgstr "Fehler beim lesen der Videodatei %03d" + +msgid "Error$error accessing indexfile" +msgstr "Fehler beim lesen der Indexdatei" + +msgid "undelete for recordings" +msgstr "Wiederherstellung gelöschter Aufnahmen" + +msgid "Choise$none" +msgstr "ohne" + +msgid "Choise$top" +msgstr "oben" + +msgid "Choise$bottom" +msgstr "unten" + +msgid "Choise$top and bottom" +msgstr "oben & unten" + +msgid "Choise$open/summary" +msgstr "Öffnen/Inhalt" + +msgid "Choise$purge all" +msgstr "alle löschen" + +msgid "Choise$salvage all" +msgstr "alle wiederh." + +msgid "Choise$open" +msgstr "Öffnen" + +msgid "Choise$summary" +msgstr "Inhalt" + +msgid "Choise$switch hotkeys to 1" +msgstr "Tastenbel. 1" + +msgid "Choise$switch hotkeys to 2" +msgstr "Tastenbel. 2" + +msgid "Choise$Display keys" +msgstr "Tastenanzeige" + +msgid "Display$purge" +msgstr "Löschen" + +msgid "Display$salvage" +msgstr "Wiederherst." + +msgid "Display$purge all" +msgstr "alle Löschen" + +msgid "Display$salvage all" +msgstr "alle Wieder." + +msgid "Open" +msgstr "" + +msgid "Display$<--1" +msgstr "<--1" + +msgid "Display$2-->" +msgstr "2-->" + +msgid "Display$disp. keys" +msgstr "Tastenanzeige" + +msgid "Red" +msgstr "" + +msgid "Green" +msgstr "" + +msgid "Yellow" +msgstr "" + +msgid "Blue" +msgstr "" + +msgid "Choise$User" +msgstr "Benutzer" + +msgid "" +" -m --visible_in_mainmenu Show the plugin in the mainmenu\n" +" -M --hide_in_mainmenu Hide the plugin in the mainmenu\n" +" You can start the Plugin in the setupmenu\n" +" -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n" +" (set also -m)\n" +" -c --confirm_purge_rec show confirmation for purge recording\n" +" -C --not_confirm_purge_rec purge recording without confirmation\n" +" -d --confirm_purge_dir show confirmation for purge directory\n" +" -D --not_confirm_purge_dir purge directory without confirmation\n" +" -e --confirm_purge_all show confirmation for purge all function\n" +" -E --not_confirm_purge_all purge all function without confirmation\n" +" -s --confirm_salvage_rec show confirmation for salvage recording\n" +" -S --not_confirm_salvage_rec salvage recording without confirmation\n" +" -t --confirm_salvage_dir show confirmation for salvage directory\n" +" -T --not_confirm_salvage_dir salvage directory without confirmation\n" +" -u --confirm_salvage_all show confirmation for salvage all function\n" +" -U --not_confirm_salvage_all salvage all function without confirmation\n" +" -v --verbose Enable more logging\n" +" -V --noverbose Disable more loggig\n" +" --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n" +" form setup-menu\n" +" @config-file Read also parameters from this file\n" +" note: recording means deleted recordings (there not show in VDR)" +msgstr "Benutzer" + +msgid "Menu$Undelete recordings" +msgstr "Aufnahmen wiederherstellen" + +msgid "Bytes" +msgstr "" + +msgid "Up" +msgstr "" + +msgid "Down" +msgstr "" + +msgid "Menu" +msgstr "" + +msgid "Ok" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Left" +msgstr "" + +msgid "Right" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Pause" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Record" +msgstr "" + +msgid "FastFwd" +msgstr "" + +msgid "FastRew" +msgstr "" + +msgid "Power" +msgstr "" + +msgid "ChanUp" +msgstr "" + +msgid "ChanDn" +msgstr "" + +msgid "VolUp" +msgstr "" + +msgid "VolDn" +msgstr "" + +msgid "Mute" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Channels" +msgstr "" + +msgid "Timers" +msgstr "" + +msgid "Recordings" +msgstr "" + +msgid "Setup" +msgstr "" + +msgid "Commands" +msgstr "" + +msgid "User1" +msgstr "" + +msgid "User2" +msgstr "" + +msgid "User3" +msgstr "" + +msgid "User4" +msgstr "" + +msgid "User5" +msgstr "" + +msgid "User6" +msgstr "" + +msgid "User7" +msgstr "" + +msgid "User8" +msgstr "" + +msgid "User9" +msgstr "" + +msgid "none" +msgstr "" + +msgid "Kbd" +msgstr "" + +msgid "Salvage" +msgstr "Wiederherstellung" + +msgid "Purge" +msgstr "Löschung" + +msgid "DeleteLine" +msgstr "Zeile löschen" + +msgid "HelpKeys" +msgstr "Hilfstasten" + +msgid "unknow" +msgstr "unbekannt" diff -Nur undelete-0.0.6/po/el_GR.po undelete-0.0.7/po/el_GR.po --- undelete-0.0.6/po/el_GR.po 1970-01-01 01:00:00.000000000 +0100 +++ undelete-0.0.7/po/el_GR.po 2008-02-02 20:14:45.000000000 +0100 @@ -0,0 +1,393 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Dimitrios Dimitrakos , 2002 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.5.7\n" +"Report-Msgid-Bugs-To: <>\n" +"POT-Creation-Date: 2008-02-02 19:49+0100\n" +"PO-Revision-Date: 2008-02-02 18:03+0100\n" +"Last-Translator: Dimitrios Dimitrakos \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-7\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Menu$assigned keys" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Help$key\tfunction" +msgstr "" + +msgid "Help$OK" +msgstr "" + +msgid "Help$numerickey" +msgstr "" + +msgid "Setup$Display deleted recordings now" +msgstr "" + +msgid "Setup$Preferr Command Line Parameter" +msgstr "" + +msgid "Setup$Visible in Mainmenu" +msgstr "" + +msgid "Setup$ Name for Mainmenu" +msgstr "" + +msgid "Setup$Confirm purge deleted recordings" +msgstr "" + +msgid "Setup$Confirm purge directories" +msgstr "" + +msgid "Setup$Confirm purge all deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage directories" +msgstr "" + +msgid "Setup$Confirm salvage all deleted recordings" +msgstr "" + +msgid "Setup$Purgeline position" +msgstr "" + +msgid "Setup$ Display bottom purge ex lines" +msgstr "" + +msgid "Setup$Salvageline position" +msgstr "" + +msgid "Setup$ Display bottom salvage ex lines" +msgstr "" + +msgid "Setup$ inward lines" +msgstr "" + +msgid "Choise$purge" +msgstr "" + +msgid "Choise$salvage" +msgstr "" + +msgid "Setup$Change assigned functionkeys" +msgstr "" + +#, c-format +msgid "Setup$ Key for function-%s" +msgstr "" + +msgid "Setup$ ** Spezial handled keys **" +msgstr "" + +msgid "Setup$ OK-key function" +msgstr "" + +msgid "Setup$ Numerickey select the entry and" +msgstr "" + +msgid "Setup$Verbose Log Mode" +msgstr "" + +#, c-format +msgid "Error$Key for funtion %s and %s identical." +msgstr "" + +msgid "Setup$Select" +msgstr "" + +msgid "Deleted Recordings" +msgstr "" + +msgid "Display$prepare recording display..." +msgstr "" + +msgid "Error while accessing recording!" +msgstr "" + +msgid "Display$Purge all records ..." +msgstr "" + +msgid "Display$Salavge all records ..." +msgstr "" + +msgid "Question$Purge recording?" +msgstr "" + +msgid "Question$Purge recordings in diretory?" +msgstr "" + +msgid "Question$Salvage recording?" +msgstr "" + +msgid "Question$Salvage recordings in directory?" +msgstr "" + +msgid "Question$Purge all recordings?" +msgstr "" + +msgid "Question$Salvage all recordings?" +msgstr "" + +msgid "Summary" +msgstr "" + +msgid "Display$please wait ..." +msgstr "" + +msgid "Error$Recording with the same name exists!" +msgstr "" + +msgid "Error$error while read last filenumber" +msgstr "" + +#, c-format +msgid "Error$error accessing vdrfile %03d" +msgstr "" + +msgid "Error$error accessing indexfile" +msgstr "" + +msgid "undelete for recordings" +msgstr "" + +msgid "Choise$none" +msgstr "" + +msgid "Choise$top" +msgstr "" + +msgid "Choise$bottom" +msgstr "" + +msgid "Choise$top and bottom" +msgstr "" + +msgid "Choise$open/summary" +msgstr "" + +msgid "Choise$purge all" +msgstr "" + +msgid "Choise$salvage all" +msgstr "" + +msgid "Choise$open" +msgstr "" + +msgid "Choise$summary" +msgstr "" + +msgid "Choise$switch hotkeys to 1" +msgstr "" + +msgid "Choise$switch hotkeys to 2" +msgstr "" + +msgid "Choise$Display keys" +msgstr "" + +msgid "Display$purge" +msgstr "" + +msgid "Display$salvage" +msgstr "" + +msgid "Display$purge all" +msgstr "" + +msgid "Display$salvage all" +msgstr "" + +msgid "Open" +msgstr "" + +msgid "Display$<--1" +msgstr "" + +msgid "Display$2-->" +msgstr "" + +msgid "Display$disp. keys" +msgstr "" + +msgid "Red" +msgstr "" + +msgid "Green" +msgstr "" + +msgid "Yellow" +msgstr "" + +msgid "Blue" +msgstr "" + +msgid "Choise$User" +msgstr "" + +msgid "" +" -m --visible_in_mainmenu Show the plugin in the mainmenu\n" +" -M --hide_in_mainmenu Hide the plugin in the mainmenu\n" +" You can start the Plugin in the setupmenu\n" +" -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n" +" (set also -m)\n" +" -c --confirm_purge_rec show confirmation for purge recording\n" +" -C --not_confirm_purge_rec purge recording without confirmation\n" +" -d --confirm_purge_dir show confirmation for purge directory\n" +" -D --not_confirm_purge_dir purge directory without confirmation\n" +" -e --confirm_purge_all show confirmation for purge all function\n" +" -E --not_confirm_purge_all purge all function without confirmation\n" +" -s --confirm_salvage_rec show confirmation for salvage recording\n" +" -S --not_confirm_salvage_rec salvage recording without confirmation\n" +" -t --confirm_salvage_dir show confirmation for salvage directory\n" +" -T --not_confirm_salvage_dir salvage directory without confirmation\n" +" -u --confirm_salvage_all show confirmation for salvage all function\n" +" -U --not_confirm_salvage_all salvage all function without confirmation\n" +" -v --verbose Enable more logging\n" +" -V --noverbose Disable more loggig\n" +" --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n" +" form setup-menu\n" +" @config-file Read also parameters from this file\n" +" note: recording means deleted recordings (there not show in VDR)" +msgstr "" + +msgid "Menu$Undelete recordings" +msgstr "" + +msgid "Bytes" +msgstr "" + +msgid "Up" +msgstr "" + +msgid "Down" +msgstr "" + +msgid "Menu" +msgstr "" + +msgid "Ok" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Left" +msgstr "" + +msgid "Right" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Pause" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Record" +msgstr "" + +msgid "FastFwd" +msgstr "" + +msgid "FastRew" +msgstr "" + +msgid "Power" +msgstr "" + +msgid "ChanUp" +msgstr "" + +msgid "ChanDn" +msgstr "" + +msgid "VolUp" +msgstr "" + +msgid "VolDn" +msgstr "" + +msgid "Mute" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Channels" +msgstr "" + +msgid "Timers" +msgstr "" + +msgid "Recordings" +msgstr "" + +msgid "Setup" +msgstr "" + +msgid "Commands" +msgstr "" + +msgid "User1" +msgstr "" + +msgid "User2" +msgstr "" + +msgid "User3" +msgstr "" + +msgid "User4" +msgstr "" + +msgid "User5" +msgstr "" + +msgid "User6" +msgstr "" + +msgid "User7" +msgstr "" + +msgid "User8" +msgstr "" + +msgid "User9" +msgstr "" + +msgid "none" +msgstr "" + +msgid "Kbd" +msgstr "" + +msgid "Salvage" +msgstr "" + +msgid "Purge" +msgstr "" + +msgid "DeleteLine" +msgstr "" + +msgid "HelpKeys" +msgstr "" + +msgid "unknow" +msgstr "" diff -Nur undelete-0.0.6/po/es_ES.po undelete-0.0.7/po/es_ES.po --- undelete-0.0.6/po/es_ES.po 1970-01-01 01:00:00.000000000 +0100 +++ undelete-0.0.7/po/es_ES.po 2008-02-02 20:14:45.000000000 +0100 @@ -0,0 +1,393 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Ruben Nunez Francisco , 2002 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.5.7\n" +"Report-Msgid-Bugs-To: <>\n" +"POT-Creation-Date: 2008-02-02 19:49+0100\n" +"PO-Revision-Date: 2008-02-02 18:03+0100\n" +"Last-Translator: Ruben Nunez Francisco \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Menu$assigned keys" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Help$key\tfunction" +msgstr "" + +msgid "Help$OK" +msgstr "" + +msgid "Help$numerickey" +msgstr "" + +msgid "Setup$Display deleted recordings now" +msgstr "" + +msgid "Setup$Preferr Command Line Parameter" +msgstr "" + +msgid "Setup$Visible in Mainmenu" +msgstr "" + +msgid "Setup$ Name for Mainmenu" +msgstr "" + +msgid "Setup$Confirm purge deleted recordings" +msgstr "" + +msgid "Setup$Confirm purge directories" +msgstr "" + +msgid "Setup$Confirm purge all deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage directories" +msgstr "" + +msgid "Setup$Confirm salvage all deleted recordings" +msgstr "" + +msgid "Setup$Purgeline position" +msgstr "" + +msgid "Setup$ Display bottom purge ex lines" +msgstr "" + +msgid "Setup$Salvageline position" +msgstr "" + +msgid "Setup$ Display bottom salvage ex lines" +msgstr "" + +msgid "Setup$ inward lines" +msgstr "" + +msgid "Choise$purge" +msgstr "" + +msgid "Choise$salvage" +msgstr "" + +msgid "Setup$Change assigned functionkeys" +msgstr "" + +#, c-format +msgid "Setup$ Key for function-%s" +msgstr "" + +msgid "Setup$ ** Spezial handled keys **" +msgstr "" + +msgid "Setup$ OK-key function" +msgstr "" + +msgid "Setup$ Numerickey select the entry and" +msgstr "" + +msgid "Setup$Verbose Log Mode" +msgstr "" + +#, c-format +msgid "Error$Key for funtion %s and %s identical." +msgstr "" + +msgid "Setup$Select" +msgstr "" + +msgid "Deleted Recordings" +msgstr "" + +msgid "Display$prepare recording display..." +msgstr "" + +msgid "Error while accessing recording!" +msgstr "" + +msgid "Display$Purge all records ..." +msgstr "" + +msgid "Display$Salavge all records ..." +msgstr "" + +msgid "Question$Purge recording?" +msgstr "" + +msgid "Question$Purge recordings in diretory?" +msgstr "" + +msgid "Question$Salvage recording?" +msgstr "" + +msgid "Question$Salvage recordings in directory?" +msgstr "" + +msgid "Question$Purge all recordings?" +msgstr "" + +msgid "Question$Salvage all recordings?" +msgstr "" + +msgid "Summary" +msgstr "" + +msgid "Display$please wait ..." +msgstr "" + +msgid "Error$Recording with the same name exists!" +msgstr "" + +msgid "Error$error while read last filenumber" +msgstr "" + +#, c-format +msgid "Error$error accessing vdrfile %03d" +msgstr "" + +msgid "Error$error accessing indexfile" +msgstr "" + +msgid "undelete for recordings" +msgstr "" + +msgid "Choise$none" +msgstr "" + +msgid "Choise$top" +msgstr "" + +msgid "Choise$bottom" +msgstr "" + +msgid "Choise$top and bottom" +msgstr "" + +msgid "Choise$open/summary" +msgstr "" + +msgid "Choise$purge all" +msgstr "" + +msgid "Choise$salvage all" +msgstr "" + +msgid "Choise$open" +msgstr "" + +msgid "Choise$summary" +msgstr "" + +msgid "Choise$switch hotkeys to 1" +msgstr "" + +msgid "Choise$switch hotkeys to 2" +msgstr "" + +msgid "Choise$Display keys" +msgstr "" + +msgid "Display$purge" +msgstr "" + +msgid "Display$salvage" +msgstr "" + +msgid "Display$purge all" +msgstr "" + +msgid "Display$salvage all" +msgstr "" + +msgid "Open" +msgstr "" + +msgid "Display$<--1" +msgstr "" + +msgid "Display$2-->" +msgstr "" + +msgid "Display$disp. keys" +msgstr "" + +msgid "Red" +msgstr "" + +msgid "Green" +msgstr "" + +msgid "Yellow" +msgstr "" + +msgid "Blue" +msgstr "" + +msgid "Choise$User" +msgstr "" + +msgid "" +" -m --visible_in_mainmenu Show the plugin in the mainmenu\n" +" -M --hide_in_mainmenu Hide the plugin in the mainmenu\n" +" You can start the Plugin in the setupmenu\n" +" -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n" +" (set also -m)\n" +" -c --confirm_purge_rec show confirmation for purge recording\n" +" -C --not_confirm_purge_rec purge recording without confirmation\n" +" -d --confirm_purge_dir show confirmation for purge directory\n" +" -D --not_confirm_purge_dir purge directory without confirmation\n" +" -e --confirm_purge_all show confirmation for purge all function\n" +" -E --not_confirm_purge_all purge all function without confirmation\n" +" -s --confirm_salvage_rec show confirmation for salvage recording\n" +" -S --not_confirm_salvage_rec salvage recording without confirmation\n" +" -t --confirm_salvage_dir show confirmation for salvage directory\n" +" -T --not_confirm_salvage_dir salvage directory without confirmation\n" +" -u --confirm_salvage_all show confirmation for salvage all function\n" +" -U --not_confirm_salvage_all salvage all function without confirmation\n" +" -v --verbose Enable more logging\n" +" -V --noverbose Disable more loggig\n" +" --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n" +" form setup-menu\n" +" @config-file Read also parameters from this file\n" +" note: recording means deleted recordings (there not show in VDR)" +msgstr "" + +msgid "Menu$Undelete recordings" +msgstr "" + +msgid "Bytes" +msgstr "" + +msgid "Up" +msgstr "" + +msgid "Down" +msgstr "" + +msgid "Menu" +msgstr "" + +msgid "Ok" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Left" +msgstr "" + +msgid "Right" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Pause" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Record" +msgstr "" + +msgid "FastFwd" +msgstr "" + +msgid "FastRew" +msgstr "" + +msgid "Power" +msgstr "" + +msgid "ChanUp" +msgstr "" + +msgid "ChanDn" +msgstr "" + +msgid "VolUp" +msgstr "" + +msgid "VolDn" +msgstr "" + +msgid "Mute" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Channels" +msgstr "" + +msgid "Timers" +msgstr "" + +msgid "Recordings" +msgstr "" + +msgid "Setup" +msgstr "" + +msgid "Commands" +msgstr "" + +msgid "User1" +msgstr "" + +msgid "User2" +msgstr "" + +msgid "User3" +msgstr "" + +msgid "User4" +msgstr "" + +msgid "User5" +msgstr "" + +msgid "User6" +msgstr "" + +msgid "User7" +msgstr "" + +msgid "User8" +msgstr "" + +msgid "User9" +msgstr "" + +msgid "none" +msgstr "" + +msgid "Kbd" +msgstr "" + +msgid "Salvage" +msgstr "" + +msgid "Purge" +msgstr "" + +msgid "DeleteLine" +msgstr "" + +msgid "HelpKeys" +msgstr "" + +msgid "unknow" +msgstr "" diff -Nur undelete-0.0.6/po/et_EE.po undelete-0.0.7/po/et_EE.po --- undelete-0.0.6/po/et_EE.po 1970-01-01 01:00:00.000000000 +0100 +++ undelete-0.0.7/po/et_EE.po 2008-02-02 20:14:45.000000000 +0100 @@ -0,0 +1,393 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Arthur Konovalov , 2004 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.5.7\n" +"Report-Msgid-Bugs-To: <>\n" +"POT-Creation-Date: 2008-02-02 19:49+0100\n" +"PO-Revision-Date: 2008-02-02 18:03+0100\n" +"Last-Translator: Arthur Konovalov \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-13\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Menu$assigned keys" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Help$key\tfunction" +msgstr "" + +msgid "Help$OK" +msgstr "" + +msgid "Help$numerickey" +msgstr "" + +msgid "Setup$Display deleted recordings now" +msgstr "" + +msgid "Setup$Preferr Command Line Parameter" +msgstr "" + +msgid "Setup$Visible in Mainmenu" +msgstr "" + +msgid "Setup$ Name for Mainmenu" +msgstr "" + +msgid "Setup$Confirm purge deleted recordings" +msgstr "" + +msgid "Setup$Confirm purge directories" +msgstr "" + +msgid "Setup$Confirm purge all deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage directories" +msgstr "" + +msgid "Setup$Confirm salvage all deleted recordings" +msgstr "" + +msgid "Setup$Purgeline position" +msgstr "" + +msgid "Setup$ Display bottom purge ex lines" +msgstr "" + +msgid "Setup$Salvageline position" +msgstr "" + +msgid "Setup$ Display bottom salvage ex lines" +msgstr "" + +msgid "Setup$ inward lines" +msgstr "" + +msgid "Choise$purge" +msgstr "" + +msgid "Choise$salvage" +msgstr "" + +msgid "Setup$Change assigned functionkeys" +msgstr "" + +#, c-format +msgid "Setup$ Key for function-%s" +msgstr "" + +msgid "Setup$ ** Spezial handled keys **" +msgstr "" + +msgid "Setup$ OK-key function" +msgstr "" + +msgid "Setup$ Numerickey select the entry and" +msgstr "" + +msgid "Setup$Verbose Log Mode" +msgstr "" + +#, c-format +msgid "Error$Key for funtion %s and %s identical." +msgstr "" + +msgid "Setup$Select" +msgstr "" + +msgid "Deleted Recordings" +msgstr "" + +msgid "Display$prepare recording display..." +msgstr "" + +msgid "Error while accessing recording!" +msgstr "" + +msgid "Display$Purge all records ..." +msgstr "" + +msgid "Display$Salavge all records ..." +msgstr "" + +msgid "Question$Purge recording?" +msgstr "" + +msgid "Question$Purge recordings in diretory?" +msgstr "" + +msgid "Question$Salvage recording?" +msgstr "" + +msgid "Question$Salvage recordings in directory?" +msgstr "" + +msgid "Question$Purge all recordings?" +msgstr "" + +msgid "Question$Salvage all recordings?" +msgstr "" + +msgid "Summary" +msgstr "" + +msgid "Display$please wait ..." +msgstr "" + +msgid "Error$Recording with the same name exists!" +msgstr "" + +msgid "Error$error while read last filenumber" +msgstr "" + +#, c-format +msgid "Error$error accessing vdrfile %03d" +msgstr "" + +msgid "Error$error accessing indexfile" +msgstr "" + +msgid "undelete for recordings" +msgstr "" + +msgid "Choise$none" +msgstr "" + +msgid "Choise$top" +msgstr "" + +msgid "Choise$bottom" +msgstr "" + +msgid "Choise$top and bottom" +msgstr "" + +msgid "Choise$open/summary" +msgstr "" + +msgid "Choise$purge all" +msgstr "" + +msgid "Choise$salvage all" +msgstr "" + +msgid "Choise$open" +msgstr "" + +msgid "Choise$summary" +msgstr "" + +msgid "Choise$switch hotkeys to 1" +msgstr "" + +msgid "Choise$switch hotkeys to 2" +msgstr "" + +msgid "Choise$Display keys" +msgstr "" + +msgid "Display$purge" +msgstr "" + +msgid "Display$salvage" +msgstr "" + +msgid "Display$purge all" +msgstr "" + +msgid "Display$salvage all" +msgstr "" + +msgid "Open" +msgstr "" + +msgid "Display$<--1" +msgstr "" + +msgid "Display$2-->" +msgstr "" + +msgid "Display$disp. keys" +msgstr "" + +msgid "Red" +msgstr "" + +msgid "Green" +msgstr "" + +msgid "Yellow" +msgstr "" + +msgid "Blue" +msgstr "" + +msgid "Choise$User" +msgstr "" + +msgid "" +" -m --visible_in_mainmenu Show the plugin in the mainmenu\n" +" -M --hide_in_mainmenu Hide the plugin in the mainmenu\n" +" You can start the Plugin in the setupmenu\n" +" -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n" +" (set also -m)\n" +" -c --confirm_purge_rec show confirmation for purge recording\n" +" -C --not_confirm_purge_rec purge recording without confirmation\n" +" -d --confirm_purge_dir show confirmation for purge directory\n" +" -D --not_confirm_purge_dir purge directory without confirmation\n" +" -e --confirm_purge_all show confirmation for purge all function\n" +" -E --not_confirm_purge_all purge all function without confirmation\n" +" -s --confirm_salvage_rec show confirmation for salvage recording\n" +" -S --not_confirm_salvage_rec salvage recording without confirmation\n" +" -t --confirm_salvage_dir show confirmation for salvage directory\n" +" -T --not_confirm_salvage_dir salvage directory without confirmation\n" +" -u --confirm_salvage_all show confirmation for salvage all function\n" +" -U --not_confirm_salvage_all salvage all function without confirmation\n" +" -v --verbose Enable more logging\n" +" -V --noverbose Disable more loggig\n" +" --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n" +" form setup-menu\n" +" @config-file Read also parameters from this file\n" +" note: recording means deleted recordings (there not show in VDR)" +msgstr "" + +msgid "Menu$Undelete recordings" +msgstr "" + +msgid "Bytes" +msgstr "" + +msgid "Up" +msgstr "" + +msgid "Down" +msgstr "" + +msgid "Menu" +msgstr "" + +msgid "Ok" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Left" +msgstr "" + +msgid "Right" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Pause" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Record" +msgstr "" + +msgid "FastFwd" +msgstr "" + +msgid "FastRew" +msgstr "" + +msgid "Power" +msgstr "" + +msgid "ChanUp" +msgstr "" + +msgid "ChanDn" +msgstr "" + +msgid "VolUp" +msgstr "" + +msgid "VolDn" +msgstr "" + +msgid "Mute" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Channels" +msgstr "" + +msgid "Timers" +msgstr "" + +msgid "Recordings" +msgstr "" + +msgid "Setup" +msgstr "" + +msgid "Commands" +msgstr "" + +msgid "User1" +msgstr "" + +msgid "User2" +msgstr "" + +msgid "User3" +msgstr "" + +msgid "User4" +msgstr "" + +msgid "User5" +msgstr "" + +msgid "User6" +msgstr "" + +msgid "User7" +msgstr "" + +msgid "User8" +msgstr "" + +msgid "User9" +msgstr "" + +msgid "none" +msgstr "" + +msgid "Kbd" +msgstr "" + +msgid "Salvage" +msgstr "" + +msgid "Purge" +msgstr "" + +msgid "DeleteLine" +msgstr "" + +msgid "HelpKeys" +msgstr "" + +msgid "unknow" +msgstr "" diff -Nur undelete-0.0.6/po/fi_FI.po undelete-0.0.7/po/fi_FI.po --- undelete-0.0.6/po/fi_FI.po 1970-01-01 01:00:00.000000000 +0100 +++ undelete-0.0.7/po/fi_FI.po 2008-02-02 20:14:45.000000000 +0100 @@ -0,0 +1,396 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Hannu Savolainen , 2002 +# Jaakko Hyvätti , 2002 +# Niko Tarnanen , 2003 +# Rolf Ahrenberg , 2003 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.5.7\n" +"Report-Msgid-Bugs-To: <>\n" +"POT-Creation-Date: 2008-02-02 19:49+0100\n" +"PO-Revision-Date: 2008-02-02 18:03+0100\n" +"Last-Translator: Rolf Ahrenberg \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Menu$assigned keys" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Help$key\tfunction" +msgstr "" + +msgid "Help$OK" +msgstr "" + +msgid "Help$numerickey" +msgstr "" + +msgid "Setup$Display deleted recordings now" +msgstr "" + +msgid "Setup$Preferr Command Line Parameter" +msgstr "" + +msgid "Setup$Visible in Mainmenu" +msgstr "" + +msgid "Setup$ Name for Mainmenu" +msgstr "" + +msgid "Setup$Confirm purge deleted recordings" +msgstr "" + +msgid "Setup$Confirm purge directories" +msgstr "" + +msgid "Setup$Confirm purge all deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage directories" +msgstr "" + +msgid "Setup$Confirm salvage all deleted recordings" +msgstr "" + +msgid "Setup$Purgeline position" +msgstr "" + +msgid "Setup$ Display bottom purge ex lines" +msgstr "" + +msgid "Setup$Salvageline position" +msgstr "" + +msgid "Setup$ Display bottom salvage ex lines" +msgstr "" + +msgid "Setup$ inward lines" +msgstr "" + +msgid "Choise$purge" +msgstr "" + +msgid "Choise$salvage" +msgstr "" + +msgid "Setup$Change assigned functionkeys" +msgstr "" + +#, c-format +msgid "Setup$ Key for function-%s" +msgstr "" + +msgid "Setup$ ** Spezial handled keys **" +msgstr "" + +msgid "Setup$ OK-key function" +msgstr "" + +msgid "Setup$ Numerickey select the entry and" +msgstr "" + +msgid "Setup$Verbose Log Mode" +msgstr "" + +#, c-format +msgid "Error$Key for funtion %s and %s identical." +msgstr "" + +msgid "Setup$Select" +msgstr "" + +msgid "Deleted Recordings" +msgstr "" + +msgid "Display$prepare recording display..." +msgstr "" + +msgid "Error while accessing recording!" +msgstr "" + +msgid "Display$Purge all records ..." +msgstr "" + +msgid "Display$Salavge all records ..." +msgstr "" + +msgid "Question$Purge recording?" +msgstr "" + +msgid "Question$Purge recordings in diretory?" +msgstr "" + +msgid "Question$Salvage recording?" +msgstr "" + +msgid "Question$Salvage recordings in directory?" +msgstr "" + +msgid "Question$Purge all recordings?" +msgstr "" + +msgid "Question$Salvage all recordings?" +msgstr "" + +msgid "Summary" +msgstr "" + +msgid "Display$please wait ..." +msgstr "" + +msgid "Error$Recording with the same name exists!" +msgstr "" + +msgid "Error$error while read last filenumber" +msgstr "" + +#, c-format +msgid "Error$error accessing vdrfile %03d" +msgstr "" + +msgid "Error$error accessing indexfile" +msgstr "" + +msgid "undelete for recordings" +msgstr "" + +msgid "Choise$none" +msgstr "" + +msgid "Choise$top" +msgstr "" + +msgid "Choise$bottom" +msgstr "" + +msgid "Choise$top and bottom" +msgstr "" + +msgid "Choise$open/summary" +msgstr "" + +msgid "Choise$purge all" +msgstr "" + +msgid "Choise$salvage all" +msgstr "" + +msgid "Choise$open" +msgstr "" + +msgid "Choise$summary" +msgstr "" + +msgid "Choise$switch hotkeys to 1" +msgstr "" + +msgid "Choise$switch hotkeys to 2" +msgstr "" + +msgid "Choise$Display keys" +msgstr "" + +msgid "Display$purge" +msgstr "" + +msgid "Display$salvage" +msgstr "" + +msgid "Display$purge all" +msgstr "" + +msgid "Display$salvage all" +msgstr "" + +msgid "Open" +msgstr "" + +msgid "Display$<--1" +msgstr "" + +msgid "Display$2-->" +msgstr "" + +msgid "Display$disp. keys" +msgstr "" + +msgid "Red" +msgstr "" + +msgid "Green" +msgstr "" + +msgid "Yellow" +msgstr "" + +msgid "Blue" +msgstr "" + +msgid "Choise$User" +msgstr "" + +msgid "" +" -m --visible_in_mainmenu Show the plugin in the mainmenu\n" +" -M --hide_in_mainmenu Hide the plugin in the mainmenu\n" +" You can start the Plugin in the setupmenu\n" +" -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n" +" (set also -m)\n" +" -c --confirm_purge_rec show confirmation for purge recording\n" +" -C --not_confirm_purge_rec purge recording without confirmation\n" +" -d --confirm_purge_dir show confirmation for purge directory\n" +" -D --not_confirm_purge_dir purge directory without confirmation\n" +" -e --confirm_purge_all show confirmation for purge all function\n" +" -E --not_confirm_purge_all purge all function without confirmation\n" +" -s --confirm_salvage_rec show confirmation for salvage recording\n" +" -S --not_confirm_salvage_rec salvage recording without confirmation\n" +" -t --confirm_salvage_dir show confirmation for salvage directory\n" +" -T --not_confirm_salvage_dir salvage directory without confirmation\n" +" -u --confirm_salvage_all show confirmation for salvage all function\n" +" -U --not_confirm_salvage_all salvage all function without confirmation\n" +" -v --verbose Enable more logging\n" +" -V --noverbose Disable more loggig\n" +" --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n" +" form setup-menu\n" +" @config-file Read also parameters from this file\n" +" note: recording means deleted recordings (there not show in VDR)" +msgstr "" + +msgid "Menu$Undelete recordings" +msgstr "" + +msgid "Bytes" +msgstr "" + +msgid "Up" +msgstr "" + +msgid "Down" +msgstr "" + +msgid "Menu" +msgstr "" + +msgid "Ok" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Left" +msgstr "" + +msgid "Right" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Pause" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Record" +msgstr "" + +msgid "FastFwd" +msgstr "" + +msgid "FastRew" +msgstr "" + +msgid "Power" +msgstr "" + +msgid "ChanUp" +msgstr "" + +msgid "ChanDn" +msgstr "" + +msgid "VolUp" +msgstr "" + +msgid "VolDn" +msgstr "" + +msgid "Mute" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Channels" +msgstr "" + +msgid "Timers" +msgstr "" + +msgid "Recordings" +msgstr "" + +msgid "Setup" +msgstr "" + +msgid "Commands" +msgstr "" + +msgid "User1" +msgstr "" + +msgid "User2" +msgstr "" + +msgid "User3" +msgstr "" + +msgid "User4" +msgstr "" + +msgid "User5" +msgstr "" + +msgid "User6" +msgstr "" + +msgid "User7" +msgstr "" + +msgid "User8" +msgstr "" + +msgid "User9" +msgstr "" + +msgid "none" +msgstr "" + +msgid "Kbd" +msgstr "" + +msgid "Salvage" +msgstr "" + +msgid "Purge" +msgstr "" + +msgid "DeleteLine" +msgstr "" + +msgid "HelpKeys" +msgstr "" + +msgid "unknow" +msgstr "" diff -Nur undelete-0.0.6/po/fr_FR.po undelete-0.0.7/po/fr_FR.po --- undelete-0.0.6/po/fr_FR.po 1970-01-01 01:00:00.000000000 +0100 +++ undelete-0.0.7/po/fr_FR.po 2008-02-02 20:14:45.000000000 +0100 @@ -0,0 +1,396 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Jean-Claude Repetto , 2001 +# Olivier Jacques , 2003 +# Gregoire Favre , 2003 +# Nicolas Huillard , 2005 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.5.7\n" +"Report-Msgid-Bugs-To: <>\n" +"POT-Creation-Date: 2008-02-02 19:49+0100\n" +"PO-Revision-Date: 2008-02-02 18:03+0100\n" +"Last-Translator: Nicolas Huillard \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Menu$assigned keys" +msgstr "Touches assignées" + +msgid "Edit" +msgstr "" + +msgid "Help$key\tfunction" +msgstr "Touch\tFonction" + +msgid "Help$OK" +msgstr "OK" + +msgid "Help$numerickey" +msgstr "Touch numérique" + +msgid "Setup$Display deleted recordings now" +msgstr "Afficher les enregistrements effacés" + +msgid "Setup$Preferr Command Line Parameter" +msgstr "La ligne de commande a priorité" + +msgid "Setup$Visible in Mainmenu" +msgstr "Visible dans le menu principal" + +msgid "Setup$ Name for Mainmenu" +msgstr " Nom afficher pour le menu principal" + +msgid "Setup$Confirm purge deleted recordings" +msgstr "Confirmer effacer enregistrement" + +msgid "Setup$Confirm purge directories" +msgstr "Confirmer effacer dossier" + +msgid "Setup$Confirm purge all deleted recordings" +msgstr "Confirmation effacer tout" + +msgid "Setup$Confirm salvage deleted recordings" +msgstr "Confirmer restaurer enregistrement" + +msgid "Setup$Confirm salvage directories" +msgstr "Confirmer restaurer dossier" + +msgid "Setup$Confirm salvage all deleted recordings" +msgstr "Confirmer restaurer tout" + +msgid "Setup$Purgeline position" +msgstr "Position de la ligne d'éffacement" + +msgid "Setup$ Display bottom purge ex lines" +msgstr " Nombre de ligne d'affichage d'effacement" + +msgid "Setup$Salvageline position" +msgstr "Position de la ligne de restauration" + +msgid "Setup$ Display bottom salvage ex lines" +msgstr " Nombre de ligne d'affichage" + +msgid "Setup$ inward lines" +msgstr " Ligne interrieur" + +msgid "Choise$purge" +msgstr "effacer" + +msgid "Choise$salvage" +msgstr "restaurer" + +msgid "Setup$Change assigned functionkeys" +msgstr "Changer la configuration des touches" + +#, c-format +msgid "Setup$ Key for function-%s" +msgstr " Touch pour fonction-%s" + +msgid "Setup$ ** Spezial handled keys **" +msgstr " ** Touche spéciale **" + +msgid "Setup$ OK-key function" +msgstr " Fonction touch OK" + +msgid "Setup$ Numerickey select the entry and" +msgstr " Choix avec numéro et" + +msgid "Setup$Verbose Log Mode" +msgstr "Protokolle mode complet" + +#, c-format +msgid "Error$Key for funtion %s and %s identical." +msgstr "Touche de %s et %s sont les mêmes." + +msgid "Setup$Select" +msgstr "Choix" + +msgid "Deleted Recordings" +msgstr "Enregistrements effacés" + +msgid "Display$prepare recording display..." +msgstr "L'affichage liste en préparation..." + +msgid "Error while accessing recording!" +msgstr "" + +msgid "Display$Purge all records ..." +msgstr "Effacer tous les enregistrement définitivement ..." + +msgid "Display$Salavge all records ..." +msgstr "Restaurer tout les enregistrements ..." + +msgid "Question$Purge recording?" +msgstr "" + +msgid "Question$Purge recordings in diretory?" +msgstr "" + +msgid "Question$Salvage recording?" +msgstr "Restaurer enregistrement?" + +msgid "Question$Salvage recordings in directory?" +msgstr "Restaurer l'enregistrement dans dossier?" + +msgid "Question$Purge all recordings?" +msgstr "" + +msgid "Question$Salvage all recordings?" +msgstr "Restaurer tout les enregistrements?" + +msgid "Summary" +msgstr "" + +msgid "Display$please wait ..." +msgstr "attendez, merci" + +msgid "Error$Recording with the same name exists!" +msgstr "Des enregistrements avec le même nom existent!" + +msgid "Error$error while read last filenumber" +msgstr "" + +#, c-format +msgid "Error$error accessing vdrfile %03d" +msgstr "" + +msgid "Error$error accessing indexfile" +msgstr "" + +msgid "undelete for recordings" +msgstr "Restauration d'enregistrement" + +msgid "Choise$none" +msgstr "sans" + +msgid "Choise$top" +msgstr "en haut" + +msgid "Choise$bottom" +msgstr "en bas" + +msgid "Choise$top and bottom" +msgstr "en haut & en bas" + +msgid "Choise$open/summary" +msgstr "Ouvrir/contenu" + +msgid "Choise$purge all" +msgstr "effacer tout" + +msgid "Choise$salvage all" +msgstr "restaurer tout" + +msgid "Choise$open" +msgstr "ouvrir" + +msgid "Choise$summary" +msgstr "Contenu" + +msgid "Choise$switch hotkeys to 1" +msgstr "Choix touche 1" + +msgid "Choise$switch hotkeys to 2" +msgstr "Choix touche 2" + +msgid "Choise$Display keys" +msgstr "Affiche des touches" + +msgid "Display$purge" +msgstr "Effacer" + +msgid "Display$salvage" +msgstr "Restaurer" + +msgid "Display$purge all" +msgstr "effacer tout" + +msgid "Display$salvage all" +msgstr "restaurer tout" + +msgid "Open" +msgstr "" + +msgid "Display$<--1" +msgstr "<--1" + +msgid "Display$2-->" +msgstr "2-->" + +msgid "Display$disp. keys" +msgstr "Afficher les touches" + +msgid "Red" +msgstr "" + +msgid "Green" +msgstr "" + +msgid "Yellow" +msgstr "" + +msgid "Blue" +msgstr "" + +msgid "Choise$User" +msgstr "Utilisateur" + +msgid "" +" -m --visible_in_mainmenu Show the plugin in the mainmenu\n" +" -M --hide_in_mainmenu Hide the plugin in the mainmenu\n" +" You can start the Plugin in the setupmenu\n" +" -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n" +" (set also -m)\n" +" -c --confirm_purge_rec show confirmation for purge recording\n" +" -C --not_confirm_purge_rec purge recording without confirmation\n" +" -d --confirm_purge_dir show confirmation for purge directory\n" +" -D --not_confirm_purge_dir purge directory without confirmation\n" +" -e --confirm_purge_all show confirmation for purge all function\n" +" -E --not_confirm_purge_all purge all function without confirmation\n" +" -s --confirm_salvage_rec show confirmation for salvage recording\n" +" -S --not_confirm_salvage_rec salvage recording without confirmation\n" +" -t --confirm_salvage_dir show confirmation for salvage directory\n" +" -T --not_confirm_salvage_dir salvage directory without confirmation\n" +" -u --confirm_salvage_all show confirmation for salvage all function\n" +" -U --not_confirm_salvage_all salvage all function without confirmation\n" +" -v --verbose Enable more logging\n" +" -V --noverbose Disable more loggig\n" +" --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n" +" form setup-menu\n" +" @config-file Read also parameters from this file\n" +" note: recording means deleted recordings (there not show in VDR)" +msgstr "Utilisateur" + +msgid "Menu$Undelete recordings" +msgstr "Restaurer enregistrement" + +msgid "Bytes" +msgstr "" + +msgid "Up" +msgstr "" + +msgid "Down" +msgstr "" + +msgid "Menu" +msgstr "" + +msgid "Ok" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Left" +msgstr "" + +msgid "Right" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Pause" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Record" +msgstr "" + +msgid "FastFwd" +msgstr "" + +msgid "FastRew" +msgstr "" + +msgid "Power" +msgstr "" + +msgid "ChanUp" +msgstr "" + +msgid "ChanDn" +msgstr "" + +msgid "VolUp" +msgstr "" + +msgid "VolDn" +msgstr "" + +msgid "Mute" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Channels" +msgstr "" + +msgid "Timers" +msgstr "" + +msgid "Recordings" +msgstr "" + +msgid "Setup" +msgstr "" + +msgid "Commands" +msgstr "" + +msgid "User1" +msgstr "" + +msgid "User2" +msgstr "" + +msgid "User3" +msgstr "" + +msgid "User4" +msgstr "" + +msgid "User5" +msgstr "" + +msgid "User6" +msgstr "" + +msgid "User7" +msgstr "" + +msgid "User8" +msgstr "" + +msgid "User9" +msgstr "" + +msgid "none" +msgstr "" + +msgid "Kbd" +msgstr "" + +msgid "Salvage" +msgstr "Restaurer" + +msgid "Purge" +msgstr "Vider" + +msgid "DeleteLine" +msgstr "Effacer ligne" + +msgid "HelpKeys" +msgstr "Touche d'aide" + +msgid "unknow" +msgstr "inconnu" diff -Nur undelete-0.0.6/po/hr_HR.po undelete-0.0.7/po/hr_HR.po --- undelete-0.0.6/po/hr_HR.po 1970-01-01 01:00:00.000000000 +0100 +++ undelete-0.0.7/po/hr_HR.po 2008-02-02 20:14:45.000000000 +0100 @@ -0,0 +1,419 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Drazen Dupor , 2004 +# Dino Ravnic , 2004 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.5.7\n" +"Report-Msgid-Bugs-To: <>\n" +"POT-Creation-Date: 2008-02-02 19:49+0100\n" +"PO-Revision-Date: 2008-02-02 18:03+0100\n" +"Last-Translator: Drazen Dupor \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Menu$assigned keys" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Help$key\tfunction" +msgstr "" + +msgid "Help$OK" +msgstr "" + +msgid "Help$numerickey" +msgstr "" + +msgid "Setup$Display deleted recordings now" +msgstr "" + +msgid "Setup$Preferr Command Line Parameter" +msgstr "" + +msgid "Setup$Visible in Mainmenu" +msgstr "" + +msgid "Setup$ Name for Mainmenu" +msgstr "" + +msgid "Setup$Confirm purge deleted recordings" +msgstr "" + +msgid "Setup$Confirm purge directories" +msgstr "" + +msgid "Setup$Confirm purge all deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage directories" +msgstr "" + +msgid "Setup$Confirm salvage all deleted recordings" +msgstr "" + +msgid "Setup$Purgeline position" +msgstr "" + +msgid "Setup$ Display bottom purge ex lines" +msgstr "" + +msgid "Setup$Salvageline position" +msgstr "" + +msgid "Setup$ Display bottom salvage ex lines" +msgstr "" + +msgid "Setup$ inward lines" +msgstr "" + +msgid "Choise$purge" +msgstr "" + +msgid "Choise$salvage" +msgstr "" + +msgid "Setup$Change assigned functionkeys" +msgstr "" + +#, c-format +msgid "Setup$ Key for function-%s" +msgstr "" + +msgid "Setup$ ** Spezial handled keys **" +msgstr "" + +msgid "Setup$ OK-key function" +msgstr "" + +msgid "Setup$ Numerickey select the entry and" +msgstr "" + +msgid "Setup$Verbose Log Mode" +msgstr "" + +#, c-format +msgid "Error$Key for funtion %s and %s identical." +msgstr "" + +msgid "Setup$Select" +msgstr "" + +msgid "Deleted Recordings" +msgstr "" + +msgid "Display$prepare recording display..." +msgstr "" + +msgid "Error while accessing recording!" +msgstr "" + +msgid "Display$Purge all records ..." +msgstr "" + +msgid "Display$Salavge all records ..." +msgstr "" + +msgid "Question$Purge recording?" +msgstr "" + +msgid "Question$Purge recordings in diretory?" +msgstr "" + +msgid "Question$Salvage recording?" +msgstr "" + +msgid "Question$Salvage recordings in directory?" +msgstr "" + +msgid "Question$Purge all recordings?" +msgstr "" + +msgid "Question$Salvage all recordings?" +msgstr "" + +msgid "Summary" +msgstr "" + +msgid "Display$please wait ..." +msgstr "" + +msgid "Error$Recording with the same name exists!" +msgstr "" + +msgid "Error$error while read last filenumber" +msgstr "" + +#, c-format +msgid "Error$error accessing vdrfile %03d" +msgstr "" + +msgid "Error$error accessing indexfile" +msgstr "" + +msgid "undelete for recordings" +msgstr "" + +msgid "Choise$none" +msgstr "" + +msgid "Choise$top" +msgstr "" + +msgid "Choise$bottom" +msgstr "" + +msgid "Choise$top and bottom" +msgstr "" + +msgid "Choise$open/summary" +msgstr "" + +msgid "Choise$purge all" +msgstr "" + +msgid "Choise$salvage all" +msgstr "" + +msgid "Choise$open" +msgstr "" + +msgid "Choise$summary" +msgstr "" + +msgid "Choise$switch hotkeys to 1" +msgstr "" + +msgid "Choise$switch hotkeys to 2" +msgstr "" + +msgid "Choise$Display keys" +msgstr "" + +msgid "Display$purge" +msgstr "" + +msgid "Display$salvage" +msgstr "" + +msgid "Display$purge all" +msgstr "" + +msgid "Display$salvage all" +msgstr "" + +msgid "Open" +msgstr "" + +msgid "Display$<--1" +msgstr "" + +msgid "Display$2-->" +msgstr "" + +msgid "Display$disp. keys" +msgstr "" + +msgid "Red" +msgstr "" + +msgid "Green" +msgstr "" + +msgid "Yellow" +msgstr "" + +msgid "Blue" +msgstr "" + +msgid "Choise$User" +msgstr "" + +msgid "" +" -m --visible_in_mainmenu Show the plugin in the mainmenu\n" +" -M --hide_in_mainmenu Hide the plugin in the mainmenu\n" +" You can start the Plugin in the setupmenu\n" +" -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n" +" (set also -m)\n" +" -c --confirm_purge_rec show confirmation for purge recording\n" +" -C --not_confirm_purge_rec purge recording without confirmation\n" +" -d --confirm_purge_dir show confirmation for purge directory\n" +" -D --not_confirm_purge_dir purge directory without confirmation\n" +" -e --confirm_purge_all show confirmation for purge all function\n" +" -E --not_confirm_purge_all purge all function without confirmation\n" +" -s --confirm_salvage_rec show confirmation for salvage recording\n" +" -S --not_confirm_salvage_rec salvage recording without confirmation\n" +" -t --confirm_salvage_dir show confirmation for salvage directory\n" +" -T --not_confirm_salvage_dir salvage directory without confirmation\n" +" -u --confirm_salvage_all show confirmation for salvage all function\n" +" -U --not_confirm_salvage_all salvage all function without confirmation\n" +" -v --verbose Enable more logging\n" +" -V --noverbose Disable more loggig\n" +" --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n" +" form setup-menu\n" +" @config-file Read also parameters from this file\n" +" note: recording means deleted recordings (there not show in VDR)" +msgstr "" + +msgid "Menu$Undelete recordings" +msgstr "" + +msgid "Bytes" +msgstr "" + +msgid "Up" +msgstr "" + +msgid "Down" +msgstr "" + +msgid "Menu" +msgstr "" + +msgid "Ok" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Left" +msgstr "" + +msgid "Right" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Pause" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Record" +msgstr "" + +msgid "FastFwd" +msgstr "" + +msgid "FastRew" +msgstr "" + +msgid "Power" +msgstr "" + +msgid "ChanUp" +msgstr "" + +msgid "ChanDn" +msgstr "" + +msgid "VolUp" +msgstr "" + +msgid "VolDn" +msgstr "" + +msgid "Mute" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Channels" +msgstr "" + +msgid "Timers" +msgstr "" + +msgid "Recordings" +msgstr "" + +msgid "Setup" +msgstr "" + +msgid "Commands" +msgstr "" + +msgid "User1" +msgstr "" + +msgid "User2" +msgstr "" + +msgid "User3" +msgstr "" + +msgid "User4" +msgstr "" + +msgid "User5" +msgstr "" + +msgid "User6" +msgstr "" + +msgid "User7" +msgstr "" + +msgid "User8" +msgstr "" + +msgid "User9" +msgstr "" + +msgid "none" +msgstr "" + +msgid "Kbd" +msgstr "" + +msgid "Salvage" +msgstr "" + +msgid "Purge" +msgstr "" + +msgid "DeleteLine" +msgstr "" + +msgid "HelpKeys" +msgstr "" +" -m --visible_in_mainmenu Plugin wird im Hautmenü angezeigt\n" +" -M --hide_in_mainmenu kein Eintrag im Hauptmenü für das Plugin\n" +" es kann über das Setup-Menü gestartet werden\n" +" -n Name --mainmenu_name=Name Name für den Eintrag im Hauptmenü\n" +" (diese Option setzt auch -m)\n" +" -c --confirm_purge_rec Bestätigung für das Löschen von Aufnahmen\n" +" -C --not_confirm_purge_rec keine Bestätigung (löschen Aufnahmen)\n" +" -d --confirm_purge_dir Bestätigung beim Löschen von Verzeichnissen\n" +" -D --not_confirm_purge_dir keine Bestätigung (löschen Verzeichnissen)\n" +" -e --confirm_purge_all Bestätigung beim \"alles Löschen\"\n" +" -E --not_confirm_purge_all \"alles Löschen\" ohne Bestätigung\n" +" -s --confirm_salvage_rec Bestätigung Wiederherstellung von Aufnahmen\n" +" -S --not_confirm_salvage_rec keine Best. Wiederherstellung von Aufnahmen\n" +" -t --confirm_salvage_dir Bestätigung Wiederherstellung von Verzei.\n" +" -T --not_confirm_salvage_dir keine Best. Wiederherstellung von Verzei.\n" +" -u --confirm_salvage_all Bestätigung beim \"alles Wiederherstellen\"\n" +" -U --not_confirm_salvage_all \"alles Wiederherstellen\" ohne Bestätigung\n" +" -v --verbose erweiterte Protokollierung aktivieren\n" +" -V --noverbose keine erweiterte Protokollierung\n" +" --nosetup_commandline Option 'Kommandozeile hat Vorrang'\n" +" im Setup-Menü verbergen\n" +" @config-file Komandozeilenoptionen auch aus der angegebenen\n" +" Datei lesen\n" +"\n" +" Hinweis: Mit Aufnahmen sind hier die gelöschten Aufnahmen gemeint" + +msgid "unknow" +msgstr "" diff -Nur undelete-0.0.6/po/hu_HU.po undelete-0.0.7/po/hu_HU.po --- undelete-0.0.6/po/hu_HU.po 1970-01-01 01:00:00.000000000 +0100 +++ undelete-0.0.7/po/hu_HU.po 2008-02-02 20:14:45.000000000 +0100 @@ -0,0 +1,394 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Istvan Koenigsberger , 2002 +# Guido Josten , 2002 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.5.7\n" +"Report-Msgid-Bugs-To: <>\n" +"POT-Creation-Date: 2008-02-02 19:49+0100\n" +"PO-Revision-Date: 2008-02-02 18:03+0100\n" +"Last-Translator: Istvan Koenigsberger , Guido Josten \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Menu$assigned keys" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Help$key\tfunction" +msgstr "" + +msgid "Help$OK" +msgstr "" + +msgid "Help$numerickey" +msgstr "" + +msgid "Setup$Display deleted recordings now" +msgstr "" + +msgid "Setup$Preferr Command Line Parameter" +msgstr "" + +msgid "Setup$Visible in Mainmenu" +msgstr "" + +msgid "Setup$ Name for Mainmenu" +msgstr "" + +msgid "Setup$Confirm purge deleted recordings" +msgstr "" + +msgid "Setup$Confirm purge directories" +msgstr "" + +msgid "Setup$Confirm purge all deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage directories" +msgstr "" + +msgid "Setup$Confirm salvage all deleted recordings" +msgstr "" + +msgid "Setup$Purgeline position" +msgstr "" + +msgid "Setup$ Display bottom purge ex lines" +msgstr "" + +msgid "Setup$Salvageline position" +msgstr "" + +msgid "Setup$ Display bottom salvage ex lines" +msgstr "" + +msgid "Setup$ inward lines" +msgstr "" + +msgid "Choise$purge" +msgstr "" + +msgid "Choise$salvage" +msgstr "" + +msgid "Setup$Change assigned functionkeys" +msgstr "" + +#, c-format +msgid "Setup$ Key for function-%s" +msgstr "" + +msgid "Setup$ ** Spezial handled keys **" +msgstr "" + +msgid "Setup$ OK-key function" +msgstr "" + +msgid "Setup$ Numerickey select the entry and" +msgstr "" + +msgid "Setup$Verbose Log Mode" +msgstr "" + +#, c-format +msgid "Error$Key for funtion %s and %s identical." +msgstr "" + +msgid "Setup$Select" +msgstr "" + +msgid "Deleted Recordings" +msgstr "" + +msgid "Display$prepare recording display..." +msgstr "" + +msgid "Error while accessing recording!" +msgstr "" + +msgid "Display$Purge all records ..." +msgstr "" + +msgid "Display$Salavge all records ..." +msgstr "" + +msgid "Question$Purge recording?" +msgstr "" + +msgid "Question$Purge recordings in diretory?" +msgstr "" + +msgid "Question$Salvage recording?" +msgstr "" + +msgid "Question$Salvage recordings in directory?" +msgstr "" + +msgid "Question$Purge all recordings?" +msgstr "" + +msgid "Question$Salvage all recordings?" +msgstr "" + +msgid "Summary" +msgstr "" + +msgid "Display$please wait ..." +msgstr "" + +msgid "Error$Recording with the same name exists!" +msgstr "" + +msgid "Error$error while read last filenumber" +msgstr "" + +#, c-format +msgid "Error$error accessing vdrfile %03d" +msgstr "" + +msgid "Error$error accessing indexfile" +msgstr "" + +msgid "undelete for recordings" +msgstr "" + +msgid "Choise$none" +msgstr "" + +msgid "Choise$top" +msgstr "" + +msgid "Choise$bottom" +msgstr "" + +msgid "Choise$top and bottom" +msgstr "" + +msgid "Choise$open/summary" +msgstr "" + +msgid "Choise$purge all" +msgstr "" + +msgid "Choise$salvage all" +msgstr "" + +msgid "Choise$open" +msgstr "" + +msgid "Choise$summary" +msgstr "" + +msgid "Choise$switch hotkeys to 1" +msgstr "" + +msgid "Choise$switch hotkeys to 2" +msgstr "" + +msgid "Choise$Display keys" +msgstr "" + +msgid "Display$purge" +msgstr "" + +msgid "Display$salvage" +msgstr "" + +msgid "Display$purge all" +msgstr "" + +msgid "Display$salvage all" +msgstr "" + +msgid "Open" +msgstr "" + +msgid "Display$<--1" +msgstr "" + +msgid "Display$2-->" +msgstr "" + +msgid "Display$disp. keys" +msgstr "" + +msgid "Red" +msgstr "" + +msgid "Green" +msgstr "" + +msgid "Yellow" +msgstr "" + +msgid "Blue" +msgstr "" + +msgid "Choise$User" +msgstr "" + +msgid "" +" -m --visible_in_mainmenu Show the plugin in the mainmenu\n" +" -M --hide_in_mainmenu Hide the plugin in the mainmenu\n" +" You can start the Plugin in the setupmenu\n" +" -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n" +" (set also -m)\n" +" -c --confirm_purge_rec show confirmation for purge recording\n" +" -C --not_confirm_purge_rec purge recording without confirmation\n" +" -d --confirm_purge_dir show confirmation for purge directory\n" +" -D --not_confirm_purge_dir purge directory without confirmation\n" +" -e --confirm_purge_all show confirmation for purge all function\n" +" -E --not_confirm_purge_all purge all function without confirmation\n" +" -s --confirm_salvage_rec show confirmation for salvage recording\n" +" -S --not_confirm_salvage_rec salvage recording without confirmation\n" +" -t --confirm_salvage_dir show confirmation for salvage directory\n" +" -T --not_confirm_salvage_dir salvage directory without confirmation\n" +" -u --confirm_salvage_all show confirmation for salvage all function\n" +" -U --not_confirm_salvage_all salvage all function without confirmation\n" +" -v --verbose Enable more logging\n" +" -V --noverbose Disable more loggig\n" +" --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n" +" form setup-menu\n" +" @config-file Read also parameters from this file\n" +" note: recording means deleted recordings (there not show in VDR)" +msgstr "" + +msgid "Menu$Undelete recordings" +msgstr "" + +msgid "Bytes" +msgstr "" + +msgid "Up" +msgstr "" + +msgid "Down" +msgstr "" + +msgid "Menu" +msgstr "" + +msgid "Ok" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Left" +msgstr "" + +msgid "Right" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Pause" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Record" +msgstr "" + +msgid "FastFwd" +msgstr "" + +msgid "FastRew" +msgstr "" + +msgid "Power" +msgstr "" + +msgid "ChanUp" +msgstr "" + +msgid "ChanDn" +msgstr "" + +msgid "VolUp" +msgstr "" + +msgid "VolDn" +msgstr "" + +msgid "Mute" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Channels" +msgstr "" + +msgid "Timers" +msgstr "" + +msgid "Recordings" +msgstr "" + +msgid "Setup" +msgstr "" + +msgid "Commands" +msgstr "" + +msgid "User1" +msgstr "" + +msgid "User2" +msgstr "" + +msgid "User3" +msgstr "" + +msgid "User4" +msgstr "" + +msgid "User5" +msgstr "" + +msgid "User6" +msgstr "" + +msgid "User7" +msgstr "" + +msgid "User8" +msgstr "" + +msgid "User9" +msgstr "" + +msgid "none" +msgstr "" + +msgid "Kbd" +msgstr "" + +msgid "Salvage" +msgstr "" + +msgid "Purge" +msgstr "" + +msgid "DeleteLine" +msgstr "" + +msgid "HelpKeys" +msgstr "" + +msgid "unknow" +msgstr "" diff -Nur undelete-0.0.6/po/it_IT.po undelete-0.0.7/po/it_IT.po --- undelete-0.0.6/po/it_IT.po 1970-01-01 01:00:00.000000000 +0100 +++ undelete-0.0.7/po/it_IT.po 2008-02-02 20:14:46.000000000 +0100 @@ -0,0 +1,395 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Alberto Carraro , 2001 +# Antonio Ospite , 2003 +# Sean Carlos , 2005 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.5.7\n" +"Report-Msgid-Bugs-To: <>\n" +"POT-Creation-Date: 2008-02-02 19:49+0100\n" +"PO-Revision-Date: 2008-02-02 18:03+0100\n" +"Last-Translator: Sean Carlos \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Menu$assigned keys" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Help$key\tfunction" +msgstr "" + +msgid "Help$OK" +msgstr "" + +msgid "Help$numerickey" +msgstr "" + +msgid "Setup$Display deleted recordings now" +msgstr "" + +msgid "Setup$Preferr Command Line Parameter" +msgstr "" + +msgid "Setup$Visible in Mainmenu" +msgstr "" + +msgid "Setup$ Name for Mainmenu" +msgstr "" + +msgid "Setup$Confirm purge deleted recordings" +msgstr "" + +msgid "Setup$Confirm purge directories" +msgstr "" + +msgid "Setup$Confirm purge all deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage directories" +msgstr "" + +msgid "Setup$Confirm salvage all deleted recordings" +msgstr "" + +msgid "Setup$Purgeline position" +msgstr "" + +msgid "Setup$ Display bottom purge ex lines" +msgstr "" + +msgid "Setup$Salvageline position" +msgstr "" + +msgid "Setup$ Display bottom salvage ex lines" +msgstr "" + +msgid "Setup$ inward lines" +msgstr "" + +msgid "Choise$purge" +msgstr "" + +msgid "Choise$salvage" +msgstr "" + +msgid "Setup$Change assigned functionkeys" +msgstr "" + +#, c-format +msgid "Setup$ Key for function-%s" +msgstr "" + +msgid "Setup$ ** Spezial handled keys **" +msgstr "" + +msgid "Setup$ OK-key function" +msgstr "" + +msgid "Setup$ Numerickey select the entry and" +msgstr "" + +msgid "Setup$Verbose Log Mode" +msgstr "" + +#, c-format +msgid "Error$Key for funtion %s and %s identical." +msgstr "" + +msgid "Setup$Select" +msgstr "" + +msgid "Deleted Recordings" +msgstr "" + +msgid "Display$prepare recording display..." +msgstr "" + +msgid "Error while accessing recording!" +msgstr "" + +msgid "Display$Purge all records ..." +msgstr "" + +msgid "Display$Salavge all records ..." +msgstr "" + +msgid "Question$Purge recording?" +msgstr "" + +msgid "Question$Purge recordings in diretory?" +msgstr "" + +msgid "Question$Salvage recording?" +msgstr "" + +msgid "Question$Salvage recordings in directory?" +msgstr "" + +msgid "Question$Purge all recordings?" +msgstr "" + +msgid "Question$Salvage all recordings?" +msgstr "" + +msgid "Summary" +msgstr "" + +msgid "Display$please wait ..." +msgstr "" + +msgid "Error$Recording with the same name exists!" +msgstr "" + +msgid "Error$error while read last filenumber" +msgstr "" + +#, c-format +msgid "Error$error accessing vdrfile %03d" +msgstr "" + +msgid "Error$error accessing indexfile" +msgstr "" + +msgid "undelete for recordings" +msgstr "" + +msgid "Choise$none" +msgstr "" + +msgid "Choise$top" +msgstr "" + +msgid "Choise$bottom" +msgstr "" + +msgid "Choise$top and bottom" +msgstr "" + +msgid "Choise$open/summary" +msgstr "" + +msgid "Choise$purge all" +msgstr "" + +msgid "Choise$salvage all" +msgstr "" + +msgid "Choise$open" +msgstr "" + +msgid "Choise$summary" +msgstr "" + +msgid "Choise$switch hotkeys to 1" +msgstr "" + +msgid "Choise$switch hotkeys to 2" +msgstr "" + +msgid "Choise$Display keys" +msgstr "" + +msgid "Display$purge" +msgstr "" + +msgid "Display$salvage" +msgstr "" + +msgid "Display$purge all" +msgstr "" + +msgid "Display$salvage all" +msgstr "" + +msgid "Open" +msgstr "" + +msgid "Display$<--1" +msgstr "" + +msgid "Display$2-->" +msgstr "" + +msgid "Display$disp. keys" +msgstr "" + +msgid "Red" +msgstr "" + +msgid "Green" +msgstr "" + +msgid "Yellow" +msgstr "" + +msgid "Blue" +msgstr "" + +msgid "Choise$User" +msgstr "" + +msgid "" +" -m --visible_in_mainmenu Show the plugin in the mainmenu\n" +" -M --hide_in_mainmenu Hide the plugin in the mainmenu\n" +" You can start the Plugin in the setupmenu\n" +" -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n" +" (set also -m)\n" +" -c --confirm_purge_rec show confirmation for purge recording\n" +" -C --not_confirm_purge_rec purge recording without confirmation\n" +" -d --confirm_purge_dir show confirmation for purge directory\n" +" -D --not_confirm_purge_dir purge directory without confirmation\n" +" -e --confirm_purge_all show confirmation for purge all function\n" +" -E --not_confirm_purge_all purge all function without confirmation\n" +" -s --confirm_salvage_rec show confirmation for salvage recording\n" +" -S --not_confirm_salvage_rec salvage recording without confirmation\n" +" -t --confirm_salvage_dir show confirmation for salvage directory\n" +" -T --not_confirm_salvage_dir salvage directory without confirmation\n" +" -u --confirm_salvage_all show confirmation for salvage all function\n" +" -U --not_confirm_salvage_all salvage all function without confirmation\n" +" -v --verbose Enable more logging\n" +" -V --noverbose Disable more loggig\n" +" --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n" +" form setup-menu\n" +" @config-file Read also parameters from this file\n" +" note: recording means deleted recordings (there not show in VDR)" +msgstr "" + +msgid "Menu$Undelete recordings" +msgstr "" + +msgid "Bytes" +msgstr "" + +msgid "Up" +msgstr "" + +msgid "Down" +msgstr "" + +msgid "Menu" +msgstr "" + +msgid "Ok" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Left" +msgstr "" + +msgid "Right" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Pause" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Record" +msgstr "" + +msgid "FastFwd" +msgstr "" + +msgid "FastRew" +msgstr "" + +msgid "Power" +msgstr "" + +msgid "ChanUp" +msgstr "" + +msgid "ChanDn" +msgstr "" + +msgid "VolUp" +msgstr "" + +msgid "VolDn" +msgstr "" + +msgid "Mute" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Channels" +msgstr "" + +msgid "Timers" +msgstr "" + +msgid "Recordings" +msgstr "" + +msgid "Setup" +msgstr "" + +msgid "Commands" +msgstr "" + +msgid "User1" +msgstr "" + +msgid "User2" +msgstr "" + +msgid "User3" +msgstr "" + +msgid "User4" +msgstr "" + +msgid "User5" +msgstr "" + +msgid "User6" +msgstr "" + +msgid "User7" +msgstr "" + +msgid "User8" +msgstr "" + +msgid "User9" +msgstr "" + +msgid "none" +msgstr "" + +msgid "Kbd" +msgstr "" + +msgid "Salvage" +msgstr "" + +msgid "Purge" +msgstr "" + +msgid "DeleteLine" +msgstr "" + +msgid "HelpKeys" +msgstr "" + +msgid "unknow" +msgstr "" diff -Nur undelete-0.0.6/po/nl_NL.po undelete-0.0.7/po/nl_NL.po --- undelete-0.0.6/po/nl_NL.po 1970-01-01 01:00:00.000000000 +0100 +++ undelete-0.0.7/po/nl_NL.po 2008-02-02 20:14:46.000000000 +0100 @@ -0,0 +1,395 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Arnold Niessen , 2001 +# Hans Dingemans , 2003 +# Maarten Wisse , 2005 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.5.7\n" +"Report-Msgid-Bugs-To: <>\n" +"POT-Creation-Date: 2008-02-02 19:49+0100\n" +"PO-Revision-Date: 2008-02-02 18:03+0100\n" +"Last-Translator: Maarten Wisse \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Menu$assigned keys" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Help$key\tfunction" +msgstr "" + +msgid "Help$OK" +msgstr "" + +msgid "Help$numerickey" +msgstr "" + +msgid "Setup$Display deleted recordings now" +msgstr "" + +msgid "Setup$Preferr Command Line Parameter" +msgstr "" + +msgid "Setup$Visible in Mainmenu" +msgstr "" + +msgid "Setup$ Name for Mainmenu" +msgstr "" + +msgid "Setup$Confirm purge deleted recordings" +msgstr "" + +msgid "Setup$Confirm purge directories" +msgstr "" + +msgid "Setup$Confirm purge all deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage directories" +msgstr "" + +msgid "Setup$Confirm salvage all deleted recordings" +msgstr "" + +msgid "Setup$Purgeline position" +msgstr "" + +msgid "Setup$ Display bottom purge ex lines" +msgstr "" + +msgid "Setup$Salvageline position" +msgstr "" + +msgid "Setup$ Display bottom salvage ex lines" +msgstr "" + +msgid "Setup$ inward lines" +msgstr "" + +msgid "Choise$purge" +msgstr "" + +msgid "Choise$salvage" +msgstr "" + +msgid "Setup$Change assigned functionkeys" +msgstr "" + +#, c-format +msgid "Setup$ Key for function-%s" +msgstr "" + +msgid "Setup$ ** Spezial handled keys **" +msgstr "" + +msgid "Setup$ OK-key function" +msgstr "" + +msgid "Setup$ Numerickey select the entry and" +msgstr "" + +msgid "Setup$Verbose Log Mode" +msgstr "" + +#, c-format +msgid "Error$Key for funtion %s and %s identical." +msgstr "" + +msgid "Setup$Select" +msgstr "" + +msgid "Deleted Recordings" +msgstr "" + +msgid "Display$prepare recording display..." +msgstr "" + +msgid "Error while accessing recording!" +msgstr "" + +msgid "Display$Purge all records ..." +msgstr "" + +msgid "Display$Salavge all records ..." +msgstr "" + +msgid "Question$Purge recording?" +msgstr "" + +msgid "Question$Purge recordings in diretory?" +msgstr "" + +msgid "Question$Salvage recording?" +msgstr "" + +msgid "Question$Salvage recordings in directory?" +msgstr "" + +msgid "Question$Purge all recordings?" +msgstr "" + +msgid "Question$Salvage all recordings?" +msgstr "" + +msgid "Summary" +msgstr "" + +msgid "Display$please wait ..." +msgstr "" + +msgid "Error$Recording with the same name exists!" +msgstr "" + +msgid "Error$error while read last filenumber" +msgstr "" + +#, c-format +msgid "Error$error accessing vdrfile %03d" +msgstr "" + +msgid "Error$error accessing indexfile" +msgstr "" + +msgid "undelete for recordings" +msgstr "" + +msgid "Choise$none" +msgstr "" + +msgid "Choise$top" +msgstr "" + +msgid "Choise$bottom" +msgstr "" + +msgid "Choise$top and bottom" +msgstr "" + +msgid "Choise$open/summary" +msgstr "" + +msgid "Choise$purge all" +msgstr "" + +msgid "Choise$salvage all" +msgstr "" + +msgid "Choise$open" +msgstr "" + +msgid "Choise$summary" +msgstr "" + +msgid "Choise$switch hotkeys to 1" +msgstr "" + +msgid "Choise$switch hotkeys to 2" +msgstr "" + +msgid "Choise$Display keys" +msgstr "" + +msgid "Display$purge" +msgstr "" + +msgid "Display$salvage" +msgstr "" + +msgid "Display$purge all" +msgstr "" + +msgid "Display$salvage all" +msgstr "" + +msgid "Open" +msgstr "" + +msgid "Display$<--1" +msgstr "" + +msgid "Display$2-->" +msgstr "" + +msgid "Display$disp. keys" +msgstr "" + +msgid "Red" +msgstr "" + +msgid "Green" +msgstr "" + +msgid "Yellow" +msgstr "" + +msgid "Blue" +msgstr "" + +msgid "Choise$User" +msgstr "" + +msgid "" +" -m --visible_in_mainmenu Show the plugin in the mainmenu\n" +" -M --hide_in_mainmenu Hide the plugin in the mainmenu\n" +" You can start the Plugin in the setupmenu\n" +" -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n" +" (set also -m)\n" +" -c --confirm_purge_rec show confirmation for purge recording\n" +" -C --not_confirm_purge_rec purge recording without confirmation\n" +" -d --confirm_purge_dir show confirmation for purge directory\n" +" -D --not_confirm_purge_dir purge directory without confirmation\n" +" -e --confirm_purge_all show confirmation for purge all function\n" +" -E --not_confirm_purge_all purge all function without confirmation\n" +" -s --confirm_salvage_rec show confirmation for salvage recording\n" +" -S --not_confirm_salvage_rec salvage recording without confirmation\n" +" -t --confirm_salvage_dir show confirmation for salvage directory\n" +" -T --not_confirm_salvage_dir salvage directory without confirmation\n" +" -u --confirm_salvage_all show confirmation for salvage all function\n" +" -U --not_confirm_salvage_all salvage all function without confirmation\n" +" -v --verbose Enable more logging\n" +" -V --noverbose Disable more loggig\n" +" --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n" +" form setup-menu\n" +" @config-file Read also parameters from this file\n" +" note: recording means deleted recordings (there not show in VDR)" +msgstr "" + +msgid "Menu$Undelete recordings" +msgstr "" + +msgid "Bytes" +msgstr "" + +msgid "Up" +msgstr "" + +msgid "Down" +msgstr "" + +msgid "Menu" +msgstr "" + +msgid "Ok" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Left" +msgstr "" + +msgid "Right" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Pause" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Record" +msgstr "" + +msgid "FastFwd" +msgstr "" + +msgid "FastRew" +msgstr "" + +msgid "Power" +msgstr "" + +msgid "ChanUp" +msgstr "" + +msgid "ChanDn" +msgstr "" + +msgid "VolUp" +msgstr "" + +msgid "VolDn" +msgstr "" + +msgid "Mute" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Channels" +msgstr "" + +msgid "Timers" +msgstr "" + +msgid "Recordings" +msgstr "" + +msgid "Setup" +msgstr "" + +msgid "Commands" +msgstr "" + +msgid "User1" +msgstr "" + +msgid "User2" +msgstr "" + +msgid "User3" +msgstr "" + +msgid "User4" +msgstr "" + +msgid "User5" +msgstr "" + +msgid "User6" +msgstr "" + +msgid "User7" +msgstr "" + +msgid "User8" +msgstr "" + +msgid "User9" +msgstr "" + +msgid "none" +msgstr "" + +msgid "Kbd" +msgstr "" + +msgid "Salvage" +msgstr "" + +msgid "Purge" +msgstr "" + +msgid "DeleteLine" +msgstr "" + +msgid "HelpKeys" +msgstr "" + +msgid "unknow" +msgstr "" diff -Nur undelete-0.0.6/po/nn_NO.po undelete-0.0.7/po/nn_NO.po --- undelete-0.0.6/po/nn_NO.po 1970-01-01 01:00:00.000000000 +0100 +++ undelete-0.0.7/po/nn_NO.po 2008-02-02 20:14:46.000000000 +0100 @@ -0,0 +1,394 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Jørgen Tvedt , 2001 +# Truls Slevigen , 2002 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.5.7\n" +"Report-Msgid-Bugs-To: <>\n" +"POT-Creation-Date: 2008-02-02 19:49+0100\n" +"PO-Revision-Date: 2008-02-02 18:03+0100\n" +"Last-Translator: Truls Slevigen \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Menu$assigned keys" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Help$key\tfunction" +msgstr "" + +msgid "Help$OK" +msgstr "" + +msgid "Help$numerickey" +msgstr "" + +msgid "Setup$Display deleted recordings now" +msgstr "" + +msgid "Setup$Preferr Command Line Parameter" +msgstr "" + +msgid "Setup$Visible in Mainmenu" +msgstr "" + +msgid "Setup$ Name for Mainmenu" +msgstr "" + +msgid "Setup$Confirm purge deleted recordings" +msgstr "" + +msgid "Setup$Confirm purge directories" +msgstr "" + +msgid "Setup$Confirm purge all deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage directories" +msgstr "" + +msgid "Setup$Confirm salvage all deleted recordings" +msgstr "" + +msgid "Setup$Purgeline position" +msgstr "" + +msgid "Setup$ Display bottom purge ex lines" +msgstr "" + +msgid "Setup$Salvageline position" +msgstr "" + +msgid "Setup$ Display bottom salvage ex lines" +msgstr "" + +msgid "Setup$ inward lines" +msgstr "" + +msgid "Choise$purge" +msgstr "" + +msgid "Choise$salvage" +msgstr "" + +msgid "Setup$Change assigned functionkeys" +msgstr "" + +#, c-format +msgid "Setup$ Key for function-%s" +msgstr "" + +msgid "Setup$ ** Spezial handled keys **" +msgstr "" + +msgid "Setup$ OK-key function" +msgstr "" + +msgid "Setup$ Numerickey select the entry and" +msgstr "" + +msgid "Setup$Verbose Log Mode" +msgstr "" + +#, c-format +msgid "Error$Key for funtion %s and %s identical." +msgstr "" + +msgid "Setup$Select" +msgstr "" + +msgid "Deleted Recordings" +msgstr "" + +msgid "Display$prepare recording display..." +msgstr "" + +msgid "Error while accessing recording!" +msgstr "" + +msgid "Display$Purge all records ..." +msgstr "" + +msgid "Display$Salavge all records ..." +msgstr "" + +msgid "Question$Purge recording?" +msgstr "" + +msgid "Question$Purge recordings in diretory?" +msgstr "" + +msgid "Question$Salvage recording?" +msgstr "" + +msgid "Question$Salvage recordings in directory?" +msgstr "" + +msgid "Question$Purge all recordings?" +msgstr "" + +msgid "Question$Salvage all recordings?" +msgstr "" + +msgid "Summary" +msgstr "" + +msgid "Display$please wait ..." +msgstr "" + +msgid "Error$Recording with the same name exists!" +msgstr "" + +msgid "Error$error while read last filenumber" +msgstr "" + +#, c-format +msgid "Error$error accessing vdrfile %03d" +msgstr "" + +msgid "Error$error accessing indexfile" +msgstr "" + +msgid "undelete for recordings" +msgstr "" + +msgid "Choise$none" +msgstr "" + +msgid "Choise$top" +msgstr "" + +msgid "Choise$bottom" +msgstr "" + +msgid "Choise$top and bottom" +msgstr "" + +msgid "Choise$open/summary" +msgstr "" + +msgid "Choise$purge all" +msgstr "" + +msgid "Choise$salvage all" +msgstr "" + +msgid "Choise$open" +msgstr "" + +msgid "Choise$summary" +msgstr "" + +msgid "Choise$switch hotkeys to 1" +msgstr "" + +msgid "Choise$switch hotkeys to 2" +msgstr "" + +msgid "Choise$Display keys" +msgstr "" + +msgid "Display$purge" +msgstr "" + +msgid "Display$salvage" +msgstr "" + +msgid "Display$purge all" +msgstr "" + +msgid "Display$salvage all" +msgstr "" + +msgid "Open" +msgstr "" + +msgid "Display$<--1" +msgstr "" + +msgid "Display$2-->" +msgstr "" + +msgid "Display$disp. keys" +msgstr "" + +msgid "Red" +msgstr "" + +msgid "Green" +msgstr "" + +msgid "Yellow" +msgstr "" + +msgid "Blue" +msgstr "" + +msgid "Choise$User" +msgstr "" + +msgid "" +" -m --visible_in_mainmenu Show the plugin in the mainmenu\n" +" -M --hide_in_mainmenu Hide the plugin in the mainmenu\n" +" You can start the Plugin in the setupmenu\n" +" -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n" +" (set also -m)\n" +" -c --confirm_purge_rec show confirmation for purge recording\n" +" -C --not_confirm_purge_rec purge recording without confirmation\n" +" -d --confirm_purge_dir show confirmation for purge directory\n" +" -D --not_confirm_purge_dir purge directory without confirmation\n" +" -e --confirm_purge_all show confirmation for purge all function\n" +" -E --not_confirm_purge_all purge all function without confirmation\n" +" -s --confirm_salvage_rec show confirmation for salvage recording\n" +" -S --not_confirm_salvage_rec salvage recording without confirmation\n" +" -t --confirm_salvage_dir show confirmation for salvage directory\n" +" -T --not_confirm_salvage_dir salvage directory without confirmation\n" +" -u --confirm_salvage_all show confirmation for salvage all function\n" +" -U --not_confirm_salvage_all salvage all function without confirmation\n" +" -v --verbose Enable more logging\n" +" -V --noverbose Disable more loggig\n" +" --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n" +" form setup-menu\n" +" @config-file Read also parameters from this file\n" +" note: recording means deleted recordings (there not show in VDR)" +msgstr "" + +msgid "Menu$Undelete recordings" +msgstr "" + +msgid "Bytes" +msgstr "" + +msgid "Up" +msgstr "" + +msgid "Down" +msgstr "" + +msgid "Menu" +msgstr "" + +msgid "Ok" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Left" +msgstr "" + +msgid "Right" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Pause" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Record" +msgstr "" + +msgid "FastFwd" +msgstr "" + +msgid "FastRew" +msgstr "" + +msgid "Power" +msgstr "" + +msgid "ChanUp" +msgstr "" + +msgid "ChanDn" +msgstr "" + +msgid "VolUp" +msgstr "" + +msgid "VolDn" +msgstr "" + +msgid "Mute" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Channels" +msgstr "" + +msgid "Timers" +msgstr "" + +msgid "Recordings" +msgstr "" + +msgid "Setup" +msgstr "" + +msgid "Commands" +msgstr "" + +msgid "User1" +msgstr "" + +msgid "User2" +msgstr "" + +msgid "User3" +msgstr "" + +msgid "User4" +msgstr "" + +msgid "User5" +msgstr "" + +msgid "User6" +msgstr "" + +msgid "User7" +msgstr "" + +msgid "User8" +msgstr "" + +msgid "User9" +msgstr "" + +msgid "none" +msgstr "" + +msgid "Kbd" +msgstr "" + +msgid "Salvage" +msgstr "" + +msgid "Purge" +msgstr "" + +msgid "DeleteLine" +msgstr "" + +msgid "HelpKeys" +msgstr "" + +msgid "unknow" +msgstr "" diff -Nur undelete-0.0.6/po/pl_PL.po undelete-0.0.7/po/pl_PL.po --- undelete-0.0.6/po/pl_PL.po 1970-01-01 01:00:00.000000000 +0100 +++ undelete-0.0.7/po/pl_PL.po 2008-02-02 20:14:46.000000000 +0100 @@ -0,0 +1,393 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Michael Rakowski , 2002 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.5.7\n" +"Report-Msgid-Bugs-To: <>\n" +"POT-Creation-Date: 2008-02-02 19:49+0100\n" +"PO-Revision-Date: 2008-02-02 18:03+0100\n" +"Last-Translator: Michael Rakowski \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Menu$assigned keys" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Help$key\tfunction" +msgstr "" + +msgid "Help$OK" +msgstr "" + +msgid "Help$numerickey" +msgstr "" + +msgid "Setup$Display deleted recordings now" +msgstr "" + +msgid "Setup$Preferr Command Line Parameter" +msgstr "" + +msgid "Setup$Visible in Mainmenu" +msgstr "" + +msgid "Setup$ Name for Mainmenu" +msgstr "" + +msgid "Setup$Confirm purge deleted recordings" +msgstr "" + +msgid "Setup$Confirm purge directories" +msgstr "" + +msgid "Setup$Confirm purge all deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage directories" +msgstr "" + +msgid "Setup$Confirm salvage all deleted recordings" +msgstr "" + +msgid "Setup$Purgeline position" +msgstr "" + +msgid "Setup$ Display bottom purge ex lines" +msgstr "" + +msgid "Setup$Salvageline position" +msgstr "" + +msgid "Setup$ Display bottom salvage ex lines" +msgstr "" + +msgid "Setup$ inward lines" +msgstr "" + +msgid "Choise$purge" +msgstr "" + +msgid "Choise$salvage" +msgstr "" + +msgid "Setup$Change assigned functionkeys" +msgstr "" + +#, c-format +msgid "Setup$ Key for function-%s" +msgstr "" + +msgid "Setup$ ** Spezial handled keys **" +msgstr "" + +msgid "Setup$ OK-key function" +msgstr "" + +msgid "Setup$ Numerickey select the entry and" +msgstr "" + +msgid "Setup$Verbose Log Mode" +msgstr "" + +#, c-format +msgid "Error$Key for funtion %s and %s identical." +msgstr "" + +msgid "Setup$Select" +msgstr "" + +msgid "Deleted Recordings" +msgstr "" + +msgid "Display$prepare recording display..." +msgstr "" + +msgid "Error while accessing recording!" +msgstr "" + +msgid "Display$Purge all records ..." +msgstr "" + +msgid "Display$Salavge all records ..." +msgstr "" + +msgid "Question$Purge recording?" +msgstr "" + +msgid "Question$Purge recordings in diretory?" +msgstr "" + +msgid "Question$Salvage recording?" +msgstr "" + +msgid "Question$Salvage recordings in directory?" +msgstr "" + +msgid "Question$Purge all recordings?" +msgstr "" + +msgid "Question$Salvage all recordings?" +msgstr "" + +msgid "Summary" +msgstr "" + +msgid "Display$please wait ..." +msgstr "" + +msgid "Error$Recording with the same name exists!" +msgstr "" + +msgid "Error$error while read last filenumber" +msgstr "" + +#, c-format +msgid "Error$error accessing vdrfile %03d" +msgstr "" + +msgid "Error$error accessing indexfile" +msgstr "" + +msgid "undelete for recordings" +msgstr "" + +msgid "Choise$none" +msgstr "" + +msgid "Choise$top" +msgstr "" + +msgid "Choise$bottom" +msgstr "" + +msgid "Choise$top and bottom" +msgstr "" + +msgid "Choise$open/summary" +msgstr "" + +msgid "Choise$purge all" +msgstr "" + +msgid "Choise$salvage all" +msgstr "" + +msgid "Choise$open" +msgstr "" + +msgid "Choise$summary" +msgstr "" + +msgid "Choise$switch hotkeys to 1" +msgstr "" + +msgid "Choise$switch hotkeys to 2" +msgstr "" + +msgid "Choise$Display keys" +msgstr "" + +msgid "Display$purge" +msgstr "" + +msgid "Display$salvage" +msgstr "" + +msgid "Display$purge all" +msgstr "" + +msgid "Display$salvage all" +msgstr "" + +msgid "Open" +msgstr "" + +msgid "Display$<--1" +msgstr "" + +msgid "Display$2-->" +msgstr "" + +msgid "Display$disp. keys" +msgstr "" + +msgid "Red" +msgstr "" + +msgid "Green" +msgstr "" + +msgid "Yellow" +msgstr "" + +msgid "Blue" +msgstr "" + +msgid "Choise$User" +msgstr "" + +msgid "" +" -m --visible_in_mainmenu Show the plugin in the mainmenu\n" +" -M --hide_in_mainmenu Hide the plugin in the mainmenu\n" +" You can start the Plugin in the setupmenu\n" +" -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n" +" (set also -m)\n" +" -c --confirm_purge_rec show confirmation for purge recording\n" +" -C --not_confirm_purge_rec purge recording without confirmation\n" +" -d --confirm_purge_dir show confirmation for purge directory\n" +" -D --not_confirm_purge_dir purge directory without confirmation\n" +" -e --confirm_purge_all show confirmation for purge all function\n" +" -E --not_confirm_purge_all purge all function without confirmation\n" +" -s --confirm_salvage_rec show confirmation for salvage recording\n" +" -S --not_confirm_salvage_rec salvage recording without confirmation\n" +" -t --confirm_salvage_dir show confirmation for salvage directory\n" +" -T --not_confirm_salvage_dir salvage directory without confirmation\n" +" -u --confirm_salvage_all show confirmation for salvage all function\n" +" -U --not_confirm_salvage_all salvage all function without confirmation\n" +" -v --verbose Enable more logging\n" +" -V --noverbose Disable more loggig\n" +" --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n" +" form setup-menu\n" +" @config-file Read also parameters from this file\n" +" note: recording means deleted recordings (there not show in VDR)" +msgstr "" + +msgid "Menu$Undelete recordings" +msgstr "" + +msgid "Bytes" +msgstr "" + +msgid "Up" +msgstr "" + +msgid "Down" +msgstr "" + +msgid "Menu" +msgstr "" + +msgid "Ok" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Left" +msgstr "" + +msgid "Right" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Pause" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Record" +msgstr "" + +msgid "FastFwd" +msgstr "" + +msgid "FastRew" +msgstr "" + +msgid "Power" +msgstr "" + +msgid "ChanUp" +msgstr "" + +msgid "ChanDn" +msgstr "" + +msgid "VolUp" +msgstr "" + +msgid "VolDn" +msgstr "" + +msgid "Mute" +msgstr "" + +msgid "Schedule" +msgstr "" + +msgid "Channels" +msgstr "" + +msgid "Timers" +msgstr "" + +msgid "Recordings" +msgstr "" + +msgid "Setup" +msgstr "" + +msgid "Commands" +msgstr "" + +msgid "User1" +msgstr "" + +msgid "User2" +msgstr "" + +msgid "User3" +msgstr "" + +msgid "User4" +msgstr "" + +msgid "User5" +msgstr "" + +msgid "User6" +msgstr "" + +msgid "User7" +msgstr "" + +msgid "User8" +msgstr "" + +msgid "User9" +msgstr "" + +msgid "none" +msgstr "" + +msgid "Kbd" +msgstr "" + +msgid "Salvage" +msgstr "" + +msgid "Purge" +msgstr "" + +msgid "DeleteLine" +msgstr "" + +msgid "HelpKeys" +msgstr "" + +msgid "unknow" +msgstr "" diff -Nur undelete-0.0.6/po/pt_PT.po undelete-0.0.7/po/pt_PT.po --- undelete-0.0.6/po/pt_PT.po 1970-01-01 01:00:00.000000000 +0100 +++ undelete-0.0.7/po/pt_PT.po 2008-02-02 20:14:46.000000000 +0100 @@ -0,0 +1,393 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Paulo Lopes , 2001 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.5.7\n" +"Report-Msgid-Bugs-To: <>\n" +"POT-Creation-Date: 2008-02-02 19:49+0100\n" +"PO-Revision-Date: 2008-02-02 18:03+0100\n" +"Last-Translator: Paulo Lopes \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Menu$assigned keys" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Help$key\tfunction" +msgstr "" + +msgid "Help$OK" +msgstr "" + +msgid "Help$numerickey" +msgstr "" + +msgid "Setup$Display deleted recordings now" +msgstr "" + +msgid "Setup$Preferr Command Line Parameter" +msgstr "" + +msgid "Setup$Visible in Mainmenu" +msgstr "" + +msgid "Setup$ Name for Mainmenu" +msgstr "" + +msgid "Setup$Confirm purge deleted recordings" +msgstr "" + +msgid "Setup$Confirm purge directories" +msgstr "" + +msgid "Setup$Confirm purge all deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage deleted recordings" +msgstr "" + +msgid "Setup$Confirm salvage directories" +msgstr "" + +msgid "Setup$Confirm salvage all deleted recordings" +msgstr "" + +msgid "Setup$Purgeline position" +msgstr "" + +msgid "Setup$ Display bottom purge ex lines" +msgstr "" + +msgid "Setup$Salvageline position" +msgstr "" + +msgid "Setup$ Display bottom salvage ex lines" +msgstr "" + +msgid "Setup$ inward lines" +msgstr "" + +msgid "Choise$purge" +msgstr "" + +msgid "Choise$salvage" +msgstr "" + +msgid "Setup$Change assigned functionkeys" +msgstr "" + +#, c-format +msgid "Setup$ Key for function-%s" +msgstr "" + +msgid "Setup$ ** Spezial handled keys **" +msgstr "" + +msgid "Setup$ OK-key function" +msgstr "" + +msgid "Setup$ Numerickey select the entry and" +msgstr "" + +msgid "Setup$Verbose Log Mode" +msgstr "" + +#, c-format +msgid "Error$Key for funtion %s and %s identical." +msgstr "" + +msgid "Setup$Select" +msgstr "" + +msgid "Deleted Recordings" +msgstr "" + +msgid "Display$prepare recording display..." +msgstr "" + +msgid "Error while accessing recording!" +msgstr "" + +msgid "Display$Purge all records ..." +msgstr "" + +msgid "Display$Salavge all records ..." +msgstr "" + +msgid "Question$Purge recording?" +msgstr "" + +msgid "Question$Purge recordings in diretory?" +msgstr "" + +msgid "Question$Salvage recording?" +msgstr "" + +msgid "Question$Salvage recordings in directory?" +msgstr "" + +msgid "Question$Purge all recordings?" +msgstr "" + +msgid "Question$Salvage all recordings?" +msgstr "" + +msgid "Summary" +msgstr "" + +msgid "Display$please wait ..." +msgstr "" + +msgid "Error$Recording with the same name exists!" +msgstr "" + +msgid "Error$error while read last filenumber" +msgstr "" + +#, c-format +msgid "Error$error accessing vdrfile %03d" +msgstr "" + +msgid "Error$error accessing indexfile" +msgstr "" + +msgid "undelete for recordings" +msgstr "" + +msgid "Choise$none" +msgstr "" + +msgid "Choise$top" +msgstr "" + +msgid "Choise$bottom" +msgstr "" + +msgid "Choise$top and bottom" +msgstr "" + +msgid "Choise$open/summary" +msgstr "" + +msgid "Choise$purge all" +msgstr "" + +msgid "Choise$salvage all" +msgstr "" + +msgid "Choise$open" +msgstr "" + +msgid "Choise$summary" +msgstr "" + +msgid "Choise$switch hotkeys to 1" +msgstr "" + +msgid "Choise$switch hotkeys to 2" +msgstr "" + +msgid "Choise$Display keys" +msgstr "" + +msgid "Display$purge" +msgstr "" + +msgid "Display$salvage" +msgstr "" + +msgid "Display$purge all" +msgstr "" + +msgid "Display$salvage all" +msgstr "" + +msgid "Open" +msgstr "" + +msgid "Display$<--1" +msgstr "" + +msgid "Display$2-->" +msgstr "" + +msgid "Display$disp. keys" +msgstr "" + +msgid "Red" +msgstr "" + +msgid "Green" +msgstr "" + +msgid "Yellow" +msgstr "" + +msgid "Blue" +msgstr "" + +msgid "Choise$User" +msgstr "" + +msgid "" +" -m --visible_in_mainmenu Show the plugin in the mainmenu\n" +" -M --hide_in_mainmenu Hide the plugin in the mainmenu\n" +" You can start the Plugin in the setupmenu\n" +" -n Name --mainmenu_name=Name Select Name for entry in the mainmenu\n" +" (set also -m)\n" +" -c --confirm_purge_rec show confirmation for purge recording\n" +" -C --not_confirm_purge_rec purge recording without confirmation\n" +" -d --confirm_purge_dir show confirmation for purge directory\n" +" -D --not_confirm_purge_dir purge directory without confirmation\n" +" -e --confirm_purge_all show confirmation for purge all function\n" +" -E --not_confirm_purge_all purge all function without confirmation\n" +" -s --confirm_salvage_rec show confirmation for salvage recording\n" +" -S --not_confirm_salvage_rec salvage recording without confirmation\n" +" -t --confirm_salvage_dir show confirmation for salvage directory\n" +" -T --not_confirm_salvage_dir salvage directory without confirmation\n" +" -u --confirm_salvage_all show confirmation for salvage all function\n" +" -U --not_confirm_salvage_all salvage all function without confirmation\n" +" -v --verbose Enable more logging\n" +" -V --noverbose Disable more loggig\n" +" --nosetup_commandline Hide the 'Preferr Command Line Parameter'\n" +" form setup-menu\n" +" @config-file Read also parameters from this file\n" +"