From: Jo-Philipp Wich Date: Fri, 5 Sep 2008 15:32:33 +0000 (+0000) Subject: * luci/libs/uvl: translation fixes X-Git-Tag: 0.8.0~142 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=94996dd63986a153b71e1aec2fd712c1d292781e * luci/libs/uvl: translation fixes --- diff --git a/libs/uvl/luasrc/i18n/uvl.de.lua b/libs/uvl/luasrc/i18n/uvl.de.lua index 49468272f..796216188 100644 --- a/libs/uvl/luasrc/i18n/uvl.de.lua +++ b/libs/uvl/luasrc/i18n/uvl.de.lua @@ -27,8 +27,8 @@ uvl_err_sect_named = 'Die Sektion vom Typ \"%I\" ist anonym in der Konfiguration uvl_err_sect_notfound = 'Sektion vom Typ \"%I\" nicht in der Konfiguration gefunden' uvl_err_opt_unknown = 'Option \"%i\" (%I) nicht im Schema gefunden' uvl_err_opt_required = 'Die benötigte Option \"%i\" hat keinen Wert gesetzt' -uvl_err_opt_badvalue = 'Der Wert \"%v\" von Option \"%i\" ist nicht in der Aufzählung %1 definiert' -uvl_err_opt_invvalue = 'Der Wert \"%v\" von Option \"%i\" ist kein gültiger \"%1\" Datentyp' +uvl_err_opt_badvalue = 'Der Wert \"%1\" von Option \"%i\" ist nicht in der Aufzählung %2 definiert' +uvl_err_opt_invvalue = 'Der Wert \"%1\" von Option \"%i\" ist kein gültiger \"%2\" Datentyp' uvl_err_opt_notlist = 'Option \"%i\" ist als Liste definiert aber als einfache Option gespeichert' uvl_err_opt_datatype = 'Option \"%i\" hat unbekannten Datentyp \"%1\"' uvl_err_opt_notfound = 'Option \"%i\" nicht in der Konfiguration gefunden' diff --git a/libs/uvl/luasrc/i18n/uvl.de.xml b/libs/uvl/luasrc/i18n/uvl.de.xml index b9b89b5b4..9d6ddee9e 100644 --- a/libs/uvl/luasrc/i18n/uvl.de.xml +++ b/libs/uvl/luasrc/i18n/uvl.de.xml @@ -31,8 +31,8 @@ Sektion vom Typ "%I" nicht in der Konfiguration gefunden Option "%i" (%I) nicht im Schema gefunden Die benötigte Option "%i" hat keinen Wert gesetzt -Der Wert "%v" von Option "%i" ist nicht in der Aufzählung %1 definiert -Der Wert "%v" von Option "%i" ist kein gültiger "%1" Datentyp +Der Wert "%1" von Option "%i" ist nicht in der Aufzählung %2 definiert +Der Wert "%1" von Option "%i" ist kein gültiger "%2" Datentyp Option "%i" ist als Liste definiert aber als einfache Option gespeichert Option "%i" hat unbekannten Datentyp "%1" Option "%i" nicht in der Konfiguration gefunden diff --git a/libs/uvl/luasrc/i18n/uvl.en.lua b/libs/uvl/luasrc/i18n/uvl.en.lua index d7d8bfed9..b0944a2b3 100644 --- a/libs/uvl/luasrc/i18n/uvl.en.lua +++ b/libs/uvl/luasrc/i18n/uvl.en.lua @@ -27,8 +27,8 @@ uvl_err_sect_named = 'The section of type \"%p.%s\" is stored anonymously in con uvl_err_sect_notfound = 'Section \"%p.%s\" not found in config' uvl_err_opt_unknown = 'Option \"%i\" (%I) not found in scheme' uvl_err_opt_required = 'Required option \"%i\" has no value' -uvl_err_opt_badvalue = 'Value \"%v\" of option \"%i\" is not defined in enum %1' -uvl_err_opt_invvalue = 'Value \"%v\" of given option \"%i\" does not validate as datatype \"%1\"' +uvl_err_opt_badvalue = 'Value \"%1\" of option \"%i\" is not defined in enum %2' +uvl_err_opt_invvalue = 'Value \"%1\" of option \"%i\" does not validate as datatype \"%2\"' uvl_err_opt_notlist = 'Option \"%i\" is defined as list but stored as plain value' uvl_err_opt_datatype = 'Option \"%i\" has unknown datatype \"%1\"' uvl_err_opt_notfound = 'Option \"%p.%s.%o\" not found in config' diff --git a/libs/uvl/luasrc/i18n/uvl.en.xml b/libs/uvl/luasrc/i18n/uvl.en.xml index 17711f124..e26f947bf 100644 --- a/libs/uvl/luasrc/i18n/uvl.en.xml +++ b/libs/uvl/luasrc/i18n/uvl.en.xml @@ -31,8 +31,8 @@ Section "%p.%s" not found in config Option "%i" (%I) not found in scheme Required option "%i" has no value -Value "%v" of option "%i" is not defined in enum %1 -Value "%v" of given option "%i" does not validate as datatype "%1" +Value "%1" of option "%i" is not defined in enum %2 +Value "%1" of option "%i" does not validate as datatype "%2" Option "%i" is defined as list but stored as plain value Option "%i" has unknown datatype "%1" Option "%p.%s.%o" not found in config diff --git a/libs/uvl/luasrc/uvl/errors.lua b/libs/uvl/luasrc/uvl/errors.lua index aa1d8fb35..8e0d78ad1 100644 --- a/libs/uvl/luasrc/uvl/errors.lua +++ b/libs/uvl/luasrc/uvl/errors.lua @@ -54,7 +54,7 @@ ERRCODES = { { 'OPT_UNKNOWN', 'Option "%i" (%I) not found in scheme' }, { 'OPT_REQUIRED', 'Required option "%i" has no value' }, { 'OPT_BADVALUE', 'Value "%1" of option "%i" is not defined in enum %2' }, - { 'OPT_INVVALUE', 'Value "%1" of given option "%i" does not validate as datatype "%2"' }, + { 'OPT_INVVALUE', 'Value "%1" of option "%i" does not validate as datatype "%2"' }, { 'OPT_NOTLIST', 'Option "%i" is defined as list but stored as plain value' }, { 'OPT_DATATYPE', 'Option "%i" has unknown datatype "%1"' }, { 'OPT_NOTFOUND', 'Option "%p.%s.%o" not found in config' },