i18n: don't capitalize column name (#19472)

This commit is contained in:
Thomas NOËL 2017-10-17 10:27:10 +02:00
parent 7ff033f136
commit 4036804500
2 changed files with 3 additions and 3 deletions

View File

@ -1998,11 +1998,11 @@ msgid "Two columns"
msgstr "Deux colonnes"
#: settings.py:209 settings.py:225
msgid "Left Column"
msgid "Left column"
msgstr "Colonne de gauche"
#: settings.py:212 settings.py:228
msgid "Right Column"
msgid "Right column"
msgstr "Colonne de droite"
#: settings.py:221

View File

@ -188,7 +188,7 @@ COMBO_PUBLIC_TEMPLATES = {
'name': _('Two columns + sidebar'),
'template': 'combo/page_template_2cols_sidebar.html',
# get those labels into gettext catalog
'_': (_('Left Column'), _('Right Column')),
'_': (_('Left column'), _('Right column')),
},
}