fix typo in translation

This commit is contained in:
bkfox 2016-10-10 16:47:37 +02:00
parent 26888a45ed
commit 8ec3693b39
2 changed files with 14 additions and 14 deletions

View File

@ -181,7 +181,7 @@ msgstr "commentaire"
#: aircox_cms/models.py:176 #: aircox_cms/models.py:176
#, python-brace-format #, python-brace-format
msgid "{date}, {author}: {content}..." msgid "{date}, {author}: {content}..."
msgstr "{date}, {auteur}: {contenu}..." msgstr "{date}, {author}: {content}..."
#: aircox_cms/models.py:219 #: aircox_cms/models.py:219
msgid "publish as program" msgid "publish as program"
@ -479,7 +479,7 @@ msgstr "Général"
#: aircox_cms/sections.py:484 #: aircox_cms/sections.py:484
msgid "Section Items" msgid "Section Items"
msgstr "" msgstr "Éléments de la section"
#: aircox_cms/sections.py:518 #: aircox_cms/sections.py:518
msgid "item" msgid "item"
@ -499,7 +499,7 @@ msgstr "si actif, montre un titre dans l'entête de cette section"
#: aircox_cms/sections.py:572 #: aircox_cms/sections.py:572
msgid "CSS class" msgid "CSS class"
msgstr "casse CSS msgstr "classes CSS"
#: aircox_cms/sections.py:575 #: aircox_cms/sections.py:575
msgid "section container's \"class\" attribute" msgid "section container's \"class\" attribute"
@ -534,16 +534,16 @@ msgid "width"
msgstr "largeur" msgstr "largeur"
#: aircox_cms/sections.py:703 #: aircox_cms/sections.py:703
msgid "if set and > 0, set a maximum width for the image" msgid "if set and > 0, sets a maximum width for the image"
msgstr "si actif et plus grand que zéro, fixer une largeur maximum pour l'image" msgstr "si actif et > 0, fixe une largeur maximum pour l'image"
#: aircox_cms/sections.py:706 #: aircox_cms/sections.py:706
msgid "height" msgid "height"
msgstr "hauteur" msgstr "hauteur"
#: aircox_cms/sections.py:708 #: aircox_cms/sections.py:708
msgid "if set 0 and > 0, set a maximum height for the image" msgid "if set 0 and > 0, sets a maximum height for the image"
msgstr "si actif et > 0, fixez une hauteur maximum pour l'image" msgstr "si actif et > 0, fixe une hauteur maximum pour l'image"
#: aircox_cms/sections.py:711 #: aircox_cms/sections.py:711
msgid "resize mode" msgid "resize mode"
@ -594,8 +594,8 @@ msgid ""
"use this text to display an URL to the complete list. If empty, does not " "use this text to display an URL to the complete list. If empty, does not "
"print an address" "print an address"
msgstr "" msgstr ""
"utiliser ce texte pour afficher un URL dans la liste complète. Si vide, n'imprime" "utiliser ce texte pour afficher un URL dans la liste complète. Si vide, "
"pas une adresse" "n'imprime pas une adresse"
#: aircox_cms/sections.py:822 #: aircox_cms/sections.py:822
msgid "Rendering" msgid "Rendering"
@ -731,7 +731,7 @@ msgid ""
" " " "
msgstr "" msgstr ""
"\n" "\n"
" %(jour)s %(début)s jusqu'à %(fin)s, %(frequency)s\n" " %(day)s %(start)s jusqu'à %(end)s, %(frequency)s\n"
#: aircox_cms/templates/aircox_cms/program_page.html:24 #: aircox_cms/templates/aircox_cms/program_page.html:24
msgid "Rerun" msgid "Rerun"
@ -787,7 +787,7 @@ msgstr "page suivante"
#: aircox_cms/templates/aircox_cms/snippets/player.html:5 #: aircox_cms/templates/aircox_cms/snippets/player.html:5
msgid "Your browser does not support the <code>audio</code> element." msgid "Your browser does not support the <code>audio</code> element."
msgstr "Votre navigateur ne supporte pas l'élement <code>audio</code>" msgstr "Votre navigateur ne supporte pas l'élément <code>audio</code>"
#: aircox_cms/templates/aircox_cms/snippets/player.html:15 #: aircox_cms/templates/aircox_cms/snippets/player.html:15
msgid "play" msgid "play"

View File

@ -699,12 +699,12 @@ class SectionImage(SectionRelativeItem):
width = models.SmallIntegerField( width = models.SmallIntegerField(
_('width'), _('width'),
blank=True, null=True, blank=True, null=True,
help_text=_('if set and > 0, set a maximum width for the image'), help_text=_('if set and > 0, sets a maximum width for the image'),
) )
height = models.SmallIntegerField( height = models.SmallIntegerField(
_('height'), _('height'),
blank=True, null=True, blank=True, null=True,
help_text=_('if set 0 and > 0, set a maximum height for the image'), help_text=_('if set 0 and > 0, sets a maximum height for the image'),
) )
resize_mode = models.SmallIntegerField( resize_mode = models.SmallIntegerField(
verbose_name = _('resize mode'), verbose_name = _('resize mode'),