Commit 3d61acb0 authored by Michal Čihař's avatar Michal Čihař

Do not offer internal links in hosting form

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 329db03f
...@@ -521,10 +521,9 @@ class HostingForm(forms.Form): ...@@ -521,10 +521,9 @@ class HostingForm(forms.Form):
project = forms.CharField(label=_('Project name'), required=True) project = forms.CharField(label=_('Project name'), required=True)
url = forms.URLField(label=_('Project website'), required=True) url = forms.URLField(label=_('Project website'), required=True)
repo = forms.CharField( repo = forms.CharField(
label=_('Git repository'), label=_('Source code repository'),
help_text=_( help_text=_(
'URL of Git repository, use weblate://project/resource ' 'URL of source code repository for example Git or Mercurial.'
'for sharing with other resource.'
), ),
required=True required=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