french translation correction
This commit is contained in:
parent
f4677b9ef9
commit
a004f30e34
|
@ -922,6 +922,11 @@ class NetmaskOption(Option):
|
||||||
val_netmask, self._name))
|
val_netmask, self._name))
|
||||||
|
|
||||||
|
|
||||||
|
class BroadcastOption(Option):
|
||||||
|
def _validate(self, value):
|
||||||
|
IP('{0}/32'.format(value))
|
||||||
|
|
||||||
|
|
||||||
class DomainnameOption(Option):
|
class DomainnameOption(Option):
|
||||||
"represents the choice of a domain name"
|
"represents the choice of a domain name"
|
||||||
__slots__ = ('_type', '_allow_ip')
|
__slots__ = ('_type', '_allow_ip')
|
||||||
|
|
|
@ -225,7 +225,7 @@ msgstr "nom de l'option dupliqué : {0}"
|
||||||
|
|
||||||
#: tiramisu/option.py:998
|
#: tiramisu/option.py:998
|
||||||
msgid "unknown Option {0} in OptionDescription {1}"
|
msgid "unknown Option {0} in OptionDescription {1}"
|
||||||
msgstr "Option {} inconnue pour l'OptionDescription{}"
|
msgstr "Option {0} inconnue pour l'OptionDescription {1}"
|
||||||
|
|
||||||
#: tiramisu/option.py:1049
|
#: tiramisu/option.py:1049
|
||||||
msgid "duplicate option: {0}"
|
msgid "duplicate option: {0}"
|
||||||
|
|
Loading…
Reference in New Issue