diff options
| author | root <root@elwms02.(none)> | 2010-04-06 16:13:08 +0200 |
|---|---|---|
| committer | root <root@elwms02.(none)> | 2010-04-06 16:13:08 +0200 |
| commit | 0e7005fcc7483c01aa102fbea358c5ac65a48d62 (patch) | |
| tree | 11517ce0d3d2977c6732b3aa583b0008083e0bd3 /plugins/dvdswitch | |
| download | x-vdr-0e7005fcc7483c01aa102fbea358c5ac65a48d62.tar.gz x-vdr-0e7005fcc7483c01aa102fbea358c5ac65a48d62.tar.bz2 | |
hello world
Diffstat (limited to 'plugins/dvdswitch')
| -rw-r--r-- | plugins/dvdswitch/patches/dvdswitch-0.1.3-1.5.4.diff | 19 | ||||
| -rw-r--r-- | plugins/dvdswitch/patches/p1/dvdswitch-0.1.3-gettext-i18n.diff | 11830 | ||||
| -rw-r--r-- | plugins/dvdswitch/plugin.sh | 52 |
3 files changed, 11901 insertions, 0 deletions
diff --git a/plugins/dvdswitch/patches/dvdswitch-0.1.3-1.5.4.diff b/plugins/dvdswitch/patches/dvdswitch-0.1.3-1.5.4.diff new file mode 100644 index 0000000..301df7e --- /dev/null +++ b/plugins/dvdswitch/patches/dvdswitch-0.1.3-1.5.4.diff @@ -0,0 +1,19 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 90_dvdswitch-0.1.3-1.5.4.dpatch by Thomas Günther <tom@toms-cafe.de> +## http://toms-cafe.de/vdr/download/dvdswitch-0.1.3-1.5.4.diff +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Changes for VDR >= 1.5.4. + +@DPATCH@ +--- dvdswitch-0.1.3/helpers.h ++++ dvdswitch-0.1.3/helpers.h +@@ -80,7 +80,7 @@ class cStringListItem : public cListObje + char *Value(void) { return String; } + }; + +-class cStringList : public cList<cStringListItem> {}; ++//class cStringList : public cList<cStringListItem> {}; + + // --- cTokenizer --------------------------------------- + diff --git a/plugins/dvdswitch/patches/p1/dvdswitch-0.1.3-gettext-i18n.diff b/plugins/dvdswitch/patches/p1/dvdswitch-0.1.3-gettext-i18n.diff new file mode 100644 index 0000000..b8fd9d2 --- /dev/null +++ b/plugins/dvdswitch/patches/p1/dvdswitch-0.1.3-gettext-i18n.diff @@ -0,0 +1,11830 @@ +diff -Nru dvdswitch-0.1.3/dvdswitch.c dvdswitch-0.1.3-gettext-i18n/dvdswitch.c +--- dvdswitch-0.1.3/dvdswitch.c 2006-05-01 19:05:39.000000000 +0200 ++++ dvdswitch-0.1.3-gettext-i18n/dvdswitch.c 2008-03-31 04:59:34.000000000 +0200 +@@ -18,8 +18,8 @@ + //#include "dvdlist.h" + + static const char *VERSION = "0.1.3"; +-static const char *DESCRIPTION = "allowed to play DVD-Images"; +-//static const char *MAINMENUENTRY = "DVDSwitch"; ++static const char *DESCRIPTION = trNOOP("allowed to play DVD-Images"); ++//static const char *MAINMENUENTRY = tr("DVDSwitch"); + + class cPluginDvdswitch : public cPlugin { + private: +@@ -65,11 +65,11 @@ + //12345678901234567890123456789012345678901234567890123456789012345678901234567890| + return + " -D LOGFILE, --debug=LOGFILE write Debug-Info's in LOGFILE\n" +- " -r SCRIPT, --readscript=SCRIPT SCRIPT = scriptname with path for reading" +- " DVD as a ISO Image File" +- " -w SCRIPT, --writescript=SCRIPT SCRIPT = scriptname with path to writing" +- " selected DVD Image" +- " -i PATH, --imagedir=PATH Path to DVD-Images. This Option can set" ++ " -r SCRIPT, --readscript=SCRIPT SCRIPT = scriptname with path for reading\n" ++ " DVD as a ISO Image File\n" ++ " -w SCRIPT, --writescript=SCRIPT SCRIPT = scriptname with path to writing\n" ++ " selected DVD Image\n" ++ " -i PATH, --imagedir=PATH Path to DVD-Images. This Option can set\n" + " in SetupMenu optional"; + } + +diff -Nru dvdswitch-0.1.3/Makefile dvdswitch-0.1.3-gettext-i18n/Makefile +--- dvdswitch-0.1.3/Makefile 2006-05-01 19:05:39.000000000 +0200 ++++ dvdswitch-0.1.3-gettext-i18n/Makefile 2008-03-31 04:59:34.000000000 +0200 +@@ -16,7 +16,7 @@ + ### The C++ compiler and options: + + CXX ?= g++ +-CXXFLAGS ?= -O2 -Wall -Woverloaded-virtual ++CXXFLAGS ?= -fPIC -O2 -Wall -Woverloaded-virtual -Wno-parentheses + + ### The directory environment: + +@@ -62,9 +62,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='<micky979@free.fr>' -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 $@ +@@ -79,4 +104,5 @@ + @echo Distribution package created as $(PACKAGE).tgz + + clean: ++ @-rm -f $(PODIR)/*.mo $(PODIR)/*.pot + @-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~ +diff -Nru dvdswitch-0.1.3/po/ca_ES.po dvdswitch-0.1.3-gettext-i18n/po/ca_ES.po +--- dvdswitch-0.1.3/po/ca_ES.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/ca_ES.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,531 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Marc Rovira Vall <tm05462@salleURL.edu>, 2003 ++# Ramon Roca <ramon.roca@xcombo.com>, 2003 ++# Jordi Vilà <jvila@tinet.org>, 2003 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Jordi Vilà <jvila@tinet.org>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-1\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/cs_CZ.po dvdswitch-0.1.3-gettext-i18n/po/cs_CZ.po +--- dvdswitch-0.1.3/po/cs_CZ.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/cs_CZ.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,529 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Vladimír Bárta <vladimir.barta@k2atmitec.cz>, 2006 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Vladimír Bárta <vladimir.barta@k2atmitec.cz>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-2\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/da_DK.po dvdswitch-0.1.3-gettext-i18n/po/da_DK.po +--- dvdswitch-0.1.3/po/da_DK.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/da_DK.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,529 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Mogens Elneff <mogens@elneff.dk>, 2004 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-15\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/de_DE.po dvdswitch-0.1.3-gettext-i18n/po/de_DE.po +--- dvdswitch-0.1.3/po/de_DE.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/de_DE.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,529 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Klaus Schmidinger <kls@cadsoft.de>, 2000 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Klaus Schmidinger <kls@cadsoft.de>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-15\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "Befehle" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "Verzeichnis Management" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "DVD Schublade öffnen" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "DVD Schublade schließen" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "Wiedergabe" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "Image umbenennen" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "Image verschieben" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "Image löschen" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "Image brennen" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "Image von DVD erstellen" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "Verzeichnis auswählen" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "Neu" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "Auswählen" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "Löschen" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "Verschieben" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "Umbenennen" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "Verzeichnisse bearbeiten" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "keine Berechtigung!" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "Wirklich löschen?" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "Verzeichnis ist nicht leer. Dennoch löschen?" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "keine Berechtigung zum Erstellen" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "Neu:" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "Verzeichnis existiert bereits" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "keine Berechtigung zum schreiben" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "Umbenenen:" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "Einfügen" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "Angegebenes Writescript existiert nicht!" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "Kann Writescript nicht ausführen!" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "Jetzt brennen?" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "Lies DVD" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "Angegebenes Readscript existiert nicht!" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "Kann Readscript nicht ausführen!" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "Name:" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "Verzeichnis:" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "ImageTyp:" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "Einlesen" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "ungültiger Dateiname für das DVD-Image" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "Es wurde kein Imagetyp ausgewählt!" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "Es wurde kein Verzeichnis ausgewählt. Standard benutzen?" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "Jetzt einlesen?" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "ermöglicht DVD-Images abzuspielen" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "DVDSwitch" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "Image Verzeichnis ist nicht lesbar oder existiert nicht" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "DVD Plugin nicht gefunden! Funktion deaktiviert!" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "Verzeichnis mit 'VIDEO_TS' Ordner" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "Verzeichnis" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "Datei mit '.iso' Extension" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "Iso-Image" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "Image-Datei" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "Image-Verzeichnis" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "Wechseln" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "Datei existiert bereits im Verzeichnis" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "ohne Kategorie" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "DVD-Laufwerk" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "Imagetypen" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "Eintrag wirklich löschen?" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "Datei" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "Beschreibung:" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "Typ-Bezeichnung:" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "Image Typ" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "Verzeichnis enthält:" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "Datei-Erweiterung:" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "Erweiterung ausblenden" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "'Beschreibung' darf nicht leer sein!" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "'Typ Bezeichnung' darf nicht leer sein!" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "'Verzeichnis enthält' darf nicht leer sein!" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "'Datei Erweiterung' darf nicht leer sein!" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "Alle Images" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "Alle mit Kat." ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "Verzeichnisse" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "Image-Typ" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "Datei-Typ" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "Keine" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "Aufsteigend" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "Absteigend" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "keine Funktion" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "Verz. Management" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "DVD öffnen" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "DVD schließen" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "Image erstellen" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "Verz.Mgmt." ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "Schließen" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "Brennen" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "Erstellen" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "Allgemeine Einstellungen" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "\tVerstecke Hauptmenüeintrag" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "\t Name" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "\tImage Verz." ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "\tImagetypen" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "\tZeige freien Plattenplatz" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "Anzeige Einstellungen" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "\tAnzeige Modus" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "\t Art der Kategorie" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "\t Blende leere Verz./Kat. aus" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "\talphabetische Sortierung" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "\tDVD-LW einblenden" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "Detailierte Anzeige Einstellungen" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "\tZeige Spalte Image-Typ" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "\t Breite für Image-Spalte" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "\tZeige Spalte Image Größe" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "\tZeichen ändern" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "\tZeichen für Kat.Linie" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "\t Anzahl vorm Kat.Namen" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "\tLeerzeichen vor/nach Kat.Name" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "\tTrenntext für Subkat." ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "Navigation" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "\tKat.sprung bei Links/Rechts" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "Tastenbelegung" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "\tTaste 1" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "\tTaste 2" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "\tTaste 3" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "\tTaste 4" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "\tTaste 5" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "\tTaste 6" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "\tTaste 7" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "\tTaste 8" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "\tTaste 9" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "\tTaste 0" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "\tTaste Rot" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "\tTaste Grün" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "\tTaste Gelb" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "\tTaste Blau" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "\tTaste OK" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "Einstellen" +diff -Nru dvdswitch-0.1.3/po/dvdswitch.pot dvdswitch-0.1.3-gettext-i18n/po/dvdswitch.pot +--- dvdswitch-0.1.3/po/dvdswitch.pot 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/dvdswitch.pot 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,530 @@ ++# SOME DESCRIPTIVE TITLE. ++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ++# This file is distributed under the same license as the PACKAGE package. ++# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. ++# ++#, fuzzy ++msgid "" ++msgstr "" ++"Project-Id-Version: PACKAGE VERSION\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" ++"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" ++"Language-Team: LANGUAGE <LL@li.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=CHARSET\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/el_GR.po dvdswitch-0.1.3-gettext-i18n/po/el_GR.po +--- dvdswitch-0.1.3/po/el_GR.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/el_GR.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,529 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Dimitrios Dimitrakos <mail@dimitrios.de>, 2002 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-7\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/es_ES.po dvdswitch-0.1.3-gettext-i18n/po/es_ES.po +--- dvdswitch-0.1.3/po/es_ES.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/es_ES.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,529 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Ruben Nunez Francisco <ruben.nunez@tang-it.com>, 2002 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Ruben Nunez Francisco <ruben.nunez@tang-it.com>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-15\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/et_EE.po dvdswitch-0.1.3-gettext-i18n/po/et_EE.po +--- dvdswitch-0.1.3/po/et_EE.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/et_EE.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,529 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Arthur Konovalov <kasjas@hot.ee>, 2004 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Arthur Konovalov <kasjas@hot.ee>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-13\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/fi_FI.po dvdswitch-0.1.3-gettext-i18n/po/fi_FI.po +--- dvdswitch-0.1.3/po/fi_FI.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/fi_FI.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,532 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Hannu Savolainen <hannu@opensound.com>, 2002 ++# Jaakko Hyvätti <jaakko@hyvatti.iki.fi>, 2002 ++# Niko Tarnanen <niko.tarnanen@hut.fi>, 2003 ++# Rolf Ahrenberg <rahrenbe@cc.hut.fi>, 2003 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-15\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/fr_FR.po dvdswitch-0.1.3-gettext-i18n/po/fr_FR.po +--- dvdswitch-0.1.3/po/fr_FR.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/fr_FR.po 2008-03-31 05:01:26.000000000 +0200 +@@ -0,0 +1,532 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Jean-Claude Repetto <jc@repetto.org>, 2001 ++# Olivier Jacques <jacquesolivier@hotmail.com>, 2003 ++# Gregoire Favre <greg@magma.unil.ch>, 2003 ++# Nicolas Huillard <nhuillard@e-dition.fr>, 2005 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:14+0200\n" ++"PO-Revision-Date: 2008-03-30 14:14+0200\n" ++"Last-Translator: Nicolas Huillard <nhuillard@e-dition.fr>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-1\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "Commandes" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "Management des chemins" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "Ouvrir le lecteur DVD" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "Fermer le lecteur DVD" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "Lire" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "Renommer l'image" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "Déplacer l'image" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "Supprimer l'image" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "Graver l'image" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "Créer l'image du DVD" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "Sélectionner le chemin" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "Nouveau" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "Sélectionner" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "Supprimer" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "Déplacer" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "Renommer" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "Editer le chemin" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "Pas les droits !" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "Supprimer ?" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "Répertoire non vide. Supprimer ?" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "Pas les droits de créer" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "Nouveau :" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "Le chemin existe" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "Pas les droits pour renommer" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "Renommer :" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "Insérer" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "Le Writescript spécifié n'existe pas !" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "Writescript non éxecutable !" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "Graver maintenant ?" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "Lire le DVD" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "Le Readscript spécifié n'existe pas !" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "Readscript non éxecutable !" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "Nom :" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "Chemin :" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "Type d'image :" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "Lu" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "Nom de fichier invalide pour image DVD" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "Pas de type d'image sélectionné" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "Pas de chemin selectionné. Utiliser Standard ?" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "Lire maintenant ?" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "Permet de lire les images DVD" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "DVDSwitch" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "Chemin vers image non lisible ou n'existe pas" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "Plugin DVD non trouvé ! Fonction désactivé !" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "Chemin avec rep. 'VIDEO_TS'" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "Chemin" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "Fichier avec extension '.iso'" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "Image Iso" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "Fichier Image" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "Chemin Image" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "Changer" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "Le fichier n'existe pas dans le chemin" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "Sans catégorie" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "DVD-Drive" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "Type image" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "Editer" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "Supprimer l'entrée ?" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "Fichier" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "Description :" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "Type de titre" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "Type d'image" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "Le chemin contient :" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "Extension de fichier :" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "Masquer les extensions" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "'Description' ne doit pas être vide !" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "'Type Titre' ne doit pas être vide !" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "'Chemin contient' ne doit pas être vide !" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "'Extension fichier' ne doit pas être vide !" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "Toutes les images" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "Tous avec Cat." ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "Chemin" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "Type d'image" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "Type de fichier" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "aucun" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "ascendant" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "descendant" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "Aucune fonction" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "Management des chemins" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "Ouvrir le lecteur" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "Fermer le lecteur" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "Créer image" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "Chemin management" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "Ouvrir" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "Fermer" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "Graver" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "Créer" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "Paramètre générique" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "\tMasquer dans le menu" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "\t Nom" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "\tChemin des images" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "\tType d'image" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "\tAfficher espace libre" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "Paramètres d'affichage" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "\tMode d'affichage" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "\t Type de catégorie" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "\t Rep/Cat. invisible si vide" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "\tTrie alphabétique" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "\tlecteur DVD visible" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "Paramètre d'affichage spécial" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "\tCol. Type-Image visible" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "\t Largeur pour Col. Image" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "\tCol. Taille-Image visible" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "\tChanger caractère" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "\tchar pour Cat.Ligne" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "\t Compte avant Cat.Nom" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "\tEspace avant/après Cat.Nom" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "\tCouper texte pour Subcat" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "Navigation" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "\tCat. Jump par droite/gauche" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "Allocation des touches" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "\tTouche 1" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "\tTouche 2" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "\tTouche 3" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "\tTouche 4" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "\tTouche 5" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "\tTouche 6" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "\tTouche 7" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "\tTouche 8" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "\tTouche 9" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "\tTouche 0" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "\tTouche rouge" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "\tTouche verte" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "\tTouche jaune" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "\tTouche bleu" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "\tTouche OK" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "Ajuster" +diff -Nru dvdswitch-0.1.3/po/hr_HR.po dvdswitch-0.1.3-gettext-i18n/po/hr_HR.po +--- dvdswitch-0.1.3/po/hr_HR.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/hr_HR.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,530 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Drazen Dupor <drazen.dupor@dupor.com>, 2004 ++# Dino Ravnic <dino.ravnic@fer.hr>, 2004 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Drazen Dupor <drazen.dupor@dupor.com>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-2\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/hu_HU.po dvdswitch-0.1.3-gettext-i18n/po/hu_HU.po +--- dvdswitch-0.1.3/po/hu_HU.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/hu_HU.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,530 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Istvan Koenigsberger <istvnko@hotmail.com>, 2002 ++# Guido Josten <guido.josten@t-online.de>, 2002 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Istvan Koenigsberger <istvnko@hotmail.com>, Guido Josten <guido.josten@t-online.de>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-2\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/it_IT.po dvdswitch-0.1.3-gettext-i18n/po/it_IT.po +--- dvdswitch-0.1.3/po/it_IT.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/it_IT.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,531 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Alberto Carraro <bertocar@tin.it>, 2001 ++# Antonio Ospite <ospite@studenti.unina.it>, 2003 ++# Sean Carlos <seanc@libero.it>, 2005 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Sean Carlos <seanc@libero.it>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-15\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/nl_NL.po dvdswitch-0.1.3-gettext-i18n/po/nl_NL.po +--- dvdswitch-0.1.3/po/nl_NL.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/nl_NL.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,531 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Arnold Niessen <niessen@iae.nl> <arnold.niessen@philips.com>, 2001 ++# Hans Dingemans <hans.dingemans@tacticalops.nl>, 2003 ++# Maarten Wisse <Maarten.Wisse@urz.uni-hd.de>, 2005 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Maarten Wisse <Maarten.Wisse@urz.uni-hd.de>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-15\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/nn_NO.po dvdswitch-0.1.3-gettext-i18n/po/nn_NO.po +--- dvdswitch-0.1.3/po/nn_NO.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/nn_NO.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,530 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Jørgen Tvedt <pjtvedt@online.no>, 2001 ++# Truls Slevigen <truls@slevigen.no>, 2002 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Truls Slevigen <truls@slevigen.no>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-1\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/pl_PL.po dvdswitch-0.1.3-gettext-i18n/po/pl_PL.po +--- dvdswitch-0.1.3/po/pl_PL.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/pl_PL.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,529 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Michael Rakowski <mrak@gmx.de>, 2002 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Michael Rakowski <mrak@gmx.de>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-2\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/pt_PT.po dvdswitch-0.1.3-gettext-i18n/po/pt_PT.po +--- dvdswitch-0.1.3/po/pt_PT.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/pt_PT.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,529 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Paulo Lopes <pmml@netvita.pt>, 2001 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Paulo Lopes <pmml@netvita.pt>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-1\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/ro_RO.po dvdswitch-0.1.3-gettext-i18n/po/ro_RO.po +--- dvdswitch-0.1.3/po/ro_RO.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/ro_RO.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,530 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Paul Lacatus <paul@campina.iiruc.ro>, 2002 ++# Lucian Muresan <lucianm@users.sourceforge.net>, 2004 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-2\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/ru_RU.po dvdswitch-0.1.3-gettext-i18n/po/ru_RU.po +--- dvdswitch-0.1.3/po/ru_RU.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/ru_RU.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,529 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Vyacheslav Dikonov <sdiconov@mail.ru>, 2004 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Vyacheslav Dikonov <sdiconov@mail.ru>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-5\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/sl_SI.po dvdswitch-0.1.3-gettext-i18n/po/sl_SI.po +--- dvdswitch-0.1.3/po/sl_SI.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/sl_SI.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,530 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Miha Setina <mihasetina@softhome.net>, 2000 ++# Matjaz Thaler <matjaz.thaler@guest.arnes.si>, 2003 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-2\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/sv_SE.po dvdswitch-0.1.3-gettext-i18n/po/sv_SE.po +--- dvdswitch-0.1.3/po/sv_SE.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/sv_SE.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,530 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Tomas Prybil <tomas@prybil.se>, 2002 ++# Jan Ekholm <chakie@infa.abo.fi>, 2003 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Tomas Prybil <tomas@prybil.se>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-1\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" +diff -Nru dvdswitch-0.1.3/po/tr_TR.po dvdswitch-0.1.3-gettext-i18n/po/tr_TR.po +--- dvdswitch-0.1.3/po/tr_TR.po 1970-01-01 01:00:00.000000000 +0100 ++++ dvdswitch-0.1.3-gettext-i18n/po/tr_TR.po 2008-03-31 04:59:34.000000000 +0200 +@@ -0,0 +1,529 @@ ++# VDR plugin language source file. ++# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de> ++# This file is distributed under the same license as the VDR package. ++# Oktay Yolgeçen <oktay_73@yahoo.de>, 2007 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: VDR 1.5.7\n" ++"Report-Msgid-Bugs-To: micky979@free.fr\n" ++"POT-Creation-Date: 2008-03-30 14:49+0200\n" ++"PO-Revision-Date: 2008-03-30 14:49+0200\n" ++"Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n" ++"Language-Team: <vdr@linuxtv.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=ISO-8859-9\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: commands.c:43 setup.c:94 setup.c:106 ++msgid "Commands" ++msgstr "" ++ ++#: commands.c:49 commands.c:98 commands.c:169 ++msgid "Directory Management" ++msgstr "" ++ ++#: commands.c:50 commands.c:100 ++msgid "DVD-Tray open" ++msgstr "" ++ ++#: commands.c:51 commands.c:102 ++msgid "DVD-Tray close" ++msgstr "" ++ ++#: commands.c:52 commands.c:104 setup.c:88 setup.c:100 ++msgid "Play" ++msgstr "" ++ ++#: commands.c:58 commands.c:106 setup.c:89 ++msgid "Image rename" ++msgstr "" ++ ++#: commands.c:64 commands.c:108 setup.c:90 ++msgid "Image move" ++msgstr "" ++ ++#: commands.c:70 commands.c:110 setup.c:91 ++msgid "Image delete" ++msgstr "" ++ ++#: commands.c:76 commands.c:112 setup.c:92 ++msgid "Image burn" ++msgstr "" ++ ++#: commands.c:82 commands.c:114 ++msgid "Image to create from DVD" ++msgstr "" ++ ++#: commands.c:183 ++msgid "Select Directory" ++msgstr "" ++ ++#: commands.c:200 commands.c:202 commands.c:204 setup-itypes.c:58 ++#: setup-itypes.c:60 setup-itypes.c:63 setup-itypes.c:143 ++msgid "New" ++msgstr "" ++ ++#: commands.c:200 commands.c:761 setup-itypes.c:58 ++msgid "Select" ++msgstr "" ++ ++#: commands.c:202 setup-itypes.c:60 setup.c:103 ++msgid "Delete" ++msgstr "" ++ ++#: commands.c:202 commands.c:526 setup.c:102 ++msgid "Move" ++msgstr "" ++ ++#: commands.c:202 setup.c:101 ++msgid "Rename" ++msgstr "" ++ ++#: commands.c:222 ++msgid "Edit Directories" ++msgstr "" ++ ++#: commands.c:264 commands.c:312 menu.c:782 ++msgid "no Rights!" ++msgstr "" ++ ++#: commands.c:282 commands.c:658 ++msgid "really delete?" ++msgstr "" ++ ++#: commands.c:286 ++msgid "Directory not empty. however delete?" ++msgstr "" ++ ++#: commands.c:369 ++msgid "no Rights to create" ++msgstr "" ++ ++#: commands.c:379 setup.c:252 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-.#~" ++msgstr "" ++ ++#: commands.c:379 ++msgid "New:" ++msgstr "" ++ ++#: commands.c:408 commands.c:497 ++msgid "Directory exists" ++msgstr "" ++ ++#: commands.c:446 menu.c:1048 ++msgid "no Rights to rename" ++msgstr "" ++ ++#: commands.c:466 commands.c:741 commands.c:742 commands.c:743 menu.c:1075 ++msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~" ++msgstr "" ++ ++#: commands.c:466 menu.c:1075 ++msgid "Rename:" ++msgstr "" ++ ++#: commands.c:544 ++msgid "Insert" ++msgstr "" ++ ++#: commands.c:685 ++msgid "Specified Writescript not exist!" ++msgstr "" ++ ++#: commands.c:692 ++msgid "Cannot execute Writescript!" ++msgstr "" ++ ++#: commands.c:700 ++msgid "Burn Now?" ++msgstr "" ++ ++#: commands.c:713 ++msgid "Read DVD" ++msgstr "" ++ ++#: commands.c:723 ++msgid "Specified Readscript not exist!" ++msgstr "" ++ ++#: commands.c:730 ++msgid "Cannot execute Readscript!" ++msgstr "" ++ ++#: commands.c:741 ++msgid "Name:" ++msgstr "" ++ ++#: commands.c:742 ++msgid "Directory:" ++msgstr "" ++ ++#: commands.c:743 ++msgid "Imagetype:" ++msgstr "" ++ ++#: commands.c:761 commands.c:764 ++msgid "read in" ++msgstr "" ++ ++#: commands.c:796 ++msgid "invalid file name for DVD-Image" ++msgstr "" ++ ++#: commands.c:801 ++msgid "No Imagetype selected" ++msgstr "" ++ ++#: commands.c:806 ++msgid "No Directory selected. Use Standard?" ++msgstr "" ++ ++#: commands.c:809 ++msgid "Now Read?" ++msgstr "" ++ ++#: dvdswitch.c:21 ++msgid "allowed to play DVD-Images" ++msgstr "" ++ ++#: dvdswitch.c:22 ++msgid "DVDSwitch" ++msgstr "" ++ ++#: dvdswitch.c:195 ++msgid "Image Directory not readable or not exist" ++msgstr "" ++ ++#: dvdswitch.c:203 ++msgid "DVD-Plugin not found! Function deactivated!" ++msgstr "" ++ ++#: imagelist.c:19 ++msgid "Directory with 'VIDEO_TS' Folder" ++msgstr "" ++ ++#: imagelist.c:20 setup-itypes.c:164 ++msgid "Directory" ++msgstr "" ++ ++#: imagelist.c:24 ++msgid "File with '.iso' Extension" ++msgstr "" ++ ++#: imagelist.c:25 ++msgid "Iso-Image" ++msgstr "" ++ ++#: menu.c:272 ++msgid "Image-File" ++msgstr "" ++ ++#: menu.c:294 ++msgid "Image-Directory" ++msgstr "" ++ ++#: menu.c:388 menu.c:419 menu.c:450 menu.c:481 ++msgid "to change" ++msgstr "" ++ ++#: menu.c:550 ++msgid "File exists in Directory" ++msgstr "" ++ ++#: menu.c:955 ++msgid "without Catergory" ++msgstr "" ++ ++#: menu.c:1002 ++msgid "DVD-Drive" ++msgstr "" ++ ++#: setup-itypes.c:6 ++msgid "Imagetypes" ++msgstr "" ++ ++#: setup-itypes.c:60 setup-itypes.c:147 ++msgid "Edit" ++msgstr "" ++ ++#: setup-itypes.c:83 ++msgid "really delete Entry?" ++msgstr "" ++ ++#: setup-itypes.c:165 ++msgid "File" ++msgstr "" ++ ++#: setup-itypes.c:176 ++msgid "Description:" ++msgstr "" ++ ++#: setup-itypes.c:180 ++msgid "Type-Title:" ++msgstr "" ++ ++#: setup-itypes.c:184 ++msgid "Image Type" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "Directory contains:" ++msgstr "" ++ ++#: setup-itypes.c:185 ++msgid "File Extension:" ++msgstr "" ++ ++#: setup-itypes.c:190 ++msgid "Hide Extension" ++msgstr "" ++ ++#: setup-itypes.c:215 ++msgid "'Description' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:220 ++msgid "'Type-Title' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:226 ++msgid "'Directory contains' must not empty!" ++msgstr "" ++ ++#: setup-itypes.c:228 ++msgid "'File Extension' must not empty!" ++msgstr "" ++ ++#: setup.c:69 ++msgid "All Images" ++msgstr "" ++ ++#: setup.c:70 ++msgid "All with Cat." ++msgstr "" ++ ++#: setup.c:71 setup.c:75 ++msgid "Directories" ++msgstr "" ++ ++#: setup.c:74 ++msgid "Image-Type" ++msgstr "" ++ ++#: setup.c:76 ++msgid "File-Type" ++msgstr "" ++ ++#: setup.c:79 ++msgid "none" ++msgstr "" ++ ++#: setup.c:80 ++msgid "ascending" ++msgstr "" ++ ++#: setup.c:81 ++msgid "descending" ++msgstr "" ++ ++#: setup.c:84 ++msgid "none Function" ++msgstr "" ++ ++#: setup.c:85 ++msgid "Dir. Management" ++msgstr "" ++ ++#: setup.c:86 ++msgid "Tray open" ++msgstr "" ++ ++#: setup.c:87 ++msgid "Tray close" ++msgstr "" ++ ++#: setup.c:93 ++msgid "Image create" ++msgstr "" ++ ++#: setup.c:97 ++msgid "Dir.Mgmt." ++msgstr "" ++ ++#: setup.c:98 ++msgid "Open" ++msgstr "" ++ ++#: setup.c:99 ++msgid "Close" ++msgstr "" ++ ++#: setup.c:104 ++msgid "Burn" ++msgstr "" ++ ++#: setup.c:105 ++msgid "Create" ++msgstr "" ++ ++#: setup.c:243 ++msgid "Generic Settings" ++msgstr "" ++ ++#: setup.c:247 ++msgid "\tHide Mainmenu Entry" ++msgstr "" ++ ++#: setup.c:249 ++msgid "\t Name" ++msgstr "" ++ ++#: setup.c:254 ++msgid "\tImage Dir." ++msgstr "" ++ ++#: setup.c:258 setup.c:431 setup.c:437 ++msgid "\tImagetypes" ++msgstr "" ++ ++#: setup.c:259 ++msgid "\tView free DiskSpace" ++msgstr "" ++ ++#: setup.c:265 ++msgid "Display Settings" ++msgstr "" ++ ++#: setup.c:269 ++msgid "\tDisplay Mode" ++msgstr "" ++ ++#: setup.c:271 ++msgid "\t Category Type" ++msgstr "" ++ ++#: setup.c:273 ++msgid "\t invisible empty Dir's/Cat." ++msgstr "" ++ ++#: setup.c:274 ++msgid "\tAlphabetic Sort" ++msgstr "" ++ ++#: setup.c:275 ++msgid "\tvisible DVD-Drive" ++msgstr "" ++ ++#: setup.c:281 ++msgid "Special Display Settings" ++msgstr "" ++ ++#: setup.c:285 ++msgid "\tvisible Image-Type Col" ++msgstr "" ++ ++#: setup.c:287 ++msgid "\t Width for Image-Col" ++msgstr "" ++ ++#: setup.c:288 ++msgid "\tvisible Image-Size Col" ++msgstr "" ++ ++#: setup.c:289 ++msgid "\tchange Character" ++msgstr "" ++ ++#: setup.c:297 ++msgid "\tchar for Cat.Line" ++msgstr "" ++ ++#: setup.c:300 ++msgid "\t Count before Cat.Name" ++msgstr "" ++ ++#: setup.c:301 ++msgid "\tSpaces before/after Cat.Name" ++msgstr "" ++ ++#: setup.c:303 ++msgid "\tCutText for Subcat" ++msgstr "" ++ ++#: setup.c:315 ++msgid "Navigation" ++msgstr "" ++ ++#: setup.c:319 ++msgid "\tCat.Jump by Left/Right" ++msgstr "" ++ ++#: setup.c:326 ++msgid "Key allocation" ++msgstr "" ++ ++#: setup.c:330 ++msgid "\tKey 1" ++msgstr "" ++ ++#: setup.c:331 ++msgid "\tKey 2" ++msgstr "" ++ ++#: setup.c:332 ++msgid "\tKey 3" ++msgstr "" ++ ++#: setup.c:333 ++msgid "\tKey 4" ++msgstr "" ++ ++#: setup.c:334 ++msgid "\tKey 5" ++msgstr "" ++ ++#: setup.c:335 ++msgid "\tKey 6" ++msgstr "" ++ ++#: setup.c:336 ++msgid "\tKey 7" ++msgstr "" ++ ++#: setup.c:337 ++msgid "\tKey 8" ++msgstr "" ++ ++#: setup.c:338 ++msgid "\tKey 9" ++msgstr "" ++ ++#: setup.c:339 ++msgid "\tKey 0" ++msgstr "" ++ ++#: setup.c:340 ++msgid "\tKey Red" ++msgstr "" ++ ++#: setup.c:341 ++msgid "\tKey Green" ++msgstr "" ++ ++#: setup.c:342 ++msgid "\tKey Yellow" ++msgstr "" ++ ++#: setup.c:343 ++msgid "\tKey Blue" ++msgstr "" ++ ++#: setup.c:344 ++msgid "\tKey OK" ++msgstr "" ++ ++#: setup.c:432 ++msgid "to adjust" ++msgstr "" diff --git a/plugins/dvdswitch/plugin.sh b/plugins/dvdswitch/plugin.sh new file mode 100644 index 0000000..e0c5965 --- /dev/null +++ b/plugins/dvdswitch/plugin.sh @@ -0,0 +1,52 @@ +#!/bin/sh + +# x-vdr (Installations-Skript fuer einen VDR mit Debian als Basis) +# von Marc Wernecke - www.zulu-entertainment.de +# 13.04.2008 +# +# vdr-dvdswitch + +# defaults +source ./../../x-vdr.conf +source ./../../setup.conf +source ./../../functions + +WEB="http://download.schmidtie.de/vdr-dvdswitch-0.1.3.tar.bz2" +VERSION="dvdswitch-0.1.3" +LINK="dvdswitch" + +VAR=`basename $WEB` +DIR=`pwd` + +# plugin entfernen +function clean_plugin() { + cd $SOURCEDIR/VDR/PLUGINS/src + rm -rf $LINK* + rm -f $VDRLIBDIR/libvdr-$LINK* + log "cleaning $LINK" +} + +# plugin installieren +function install_plugin() { + download_plugin + extract_plugin + cd $SOURCEDIR/VDR/PLUGINS/src + rm -f $LINK + ln -vfs $VERSION $LINK + patch_plugin + patch_p1_plugin + + ## plugin specials - start ## + ## plugin specials - ende ## +} + +# plugin commands +if [ $# \> 0 ]; then + cmd=$1 + cmd_plugin +else + install_plugin + log "install-plugin fuer $VERSION ist fertig" +fi + +exit 0 |
