diff options
author | anbr <vdr07@deltab.de> | 2011-01-19 19:27:03 +0100 |
---|---|---|
committer | anbr <vdr07@deltab.de> | 2011-01-19 19:27:03 +0100 |
commit | 1177da06e8694db91bb3cd19eaf1a4b8744057c8 (patch) | |
tree | 2bb601849ccb003aa9f87fbe40ebfe404bab47f5 /setup-itypes.c | |
parent | 8b4918746de7be7046365af23444c4de85fe1802 (diff) | |
download | vdr-plugin-dvdswitch-1177da06e8694db91bb3cd19eaf1a4b8744057c8.tar.gz vdr-plugin-dvdswitch-1177da06e8694db91bb3cd19eaf1a4b8744057c8.tar.bz2 |
Allow localized character at title of image menu
Diffstat (limited to 'setup-itypes.c')
-rw-r--r-- | setup-itypes.c | 14 |
1 files changed, 7 insertions, 7 deletions
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)); |