summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoranbr <vdr07@deltab.de>2011-01-19 19:27:03 +0100
committeranbr <vdr07@deltab.de>2011-01-19 19:27:03 +0100
commit1177da06e8694db91bb3cd19eaf1a4b8744057c8 (patch)
tree2bb601849ccb003aa9f87fbe40ebfe404bab47f5
parent8b4918746de7be7046365af23444c4de85fe1802 (diff)
downloadvdr-plugin-dvdswitch-1177da06e8694db91bb3cd19eaf1a4b8744057c8.tar.gz
vdr-plugin-dvdswitch-1177da06e8694db91bb3cd19eaf1a4b8744057c8.tar.bz2
Allow localized character at title of image menu
-rw-r--r--po/de_DE.po2
-rwxr-xr-xpo/it_IT.po2
-rw-r--r--setup-itypes.c14
3 files changed, 7 insertions, 11 deletions
diff --git a/po/de_DE.po b/po/de_DE.po
index 04f0531..f9f3115 100644
--- a/po/de_DE.po
+++ b/po/de_DE.po
@@ -392,5 +392,3 @@ msgstr "Operation fehlgeschlagen"
msgid "No rights to move image"
msgstr "Keine Berechtigung zum Verschieben des Images"
-#~ msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~"
-#~ msgstr " abcdefghijklmnopqrstuvwxyzäöüß0123456789-_.#~"
diff --git a/po/it_IT.po b/po/it_IT.po
index ed5cc68..78951c8 100755
--- a/po/it_IT.po
+++ b/po/it_IT.po
@@ -395,5 +395,3 @@ msgstr "Operazione fallita"
msgid "No rights to move image"
msgstr "Nessun permesso per spostare immagine"
-#~ msgid " abcdefghijklmnopqrstuvwxyz0123456789-_.#~"
-#~ msgstr "áàbcdeéèfghiìîjklmnoòpqrstuùvwxyz0123456789-.,#~\\^$[]|()*+?{}/:%@&°"
diff --git a/setup-itypes.c b/setup-itypes.c
index f6827bd..d151ddd 100644
--- a/setup-itypes.c
+++ b/setup-itypes.c
@@ -169,17 +169,17 @@ void cMenuSetupDSITypesItem::Set(void)
Add(new cMenuEditStrItem(tr("Description"),
LongName,
- 50,
- " abcdefghijklmnopqrstuvwxyz0123456789-.#~'/()[]"));
+ memberof(LongName),
+ tr(" abcdefghijklmnopqrstuvwxyz0123456789-.#~")));
Add(new cMenuEditStrItem(tr("Type title"),
ShortName,
- 20,
- " abcdefghijklmnopqrstuvwxyz0123456789-.#~'/()[]"));
- Add(new cMenuEditStraItem(tr("Image type"), &FileType, 2, FileTypes));
+ memberof(ShortName),
+ tr(" abcdefghijklmnopqrstuvwxyz0123456789-.#~")));
+ Add(new cMenuEditStraItem(tr("Image type"), &FileType, memberof(FileTypes), FileTypes));
Add(new cMenuEditStrItem(!FileType ? tr("Directory contains") : tr("File extension"),
Extension,
- 20,
- "abcdefghijklmnopqrstuvwxyz0123456789-_.#~"));
+ memberof(Extension),
+ tr(" abcdefghijklmnopqrstuvwxyz0123456789-.#~")));
if(FileType)
Add(new cMenuEditBoolItem(tr("Hide extension"), &HideExtension));