Commit 64c5ae0f authored by Michal Čihař's avatar Michal Čihař

Document overwriting and make it default

In most cases people want to put all translations.
Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent a661389d
......@@ -373,7 +373,12 @@ class UploadForm(SimpleUploadForm):
'''
overwrite = forms.BooleanField(
label=_('Overwrite existing translations'),
required=False
help_text=_(
'Whether to overwrite existing translations if the string is '
'already translated.'
),
required=False,
initial=True
)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment