diff options
-rw-r--r-- | po/de_DE.po | 2 | ||||
-rwxr-xr-x | po/it_IT.po | 2 | ||||
-rw-r--r-- | setup-itypes.c | 14 |
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)); |