Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
96725da9
Commit
96725da9
authored
Mar 30, 2015
by
Michal Čihař
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better name for translated languages
Signed-off-by:
Michal Čihař
<
michal@cihar.com
>
parent
6420c12e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
3 deletions
+24
-3
docs/user/profile.rst
docs/user/profile.rst
+2
-2
weblate/accounts/migrations/0005_auto_20150330_1358.py
weblate/accounts/migrations/0005_auto_20150330_1358.py
+20
-0
weblate/accounts/models.py
weblate/accounts/models.py
+2
-1
No files found.
docs/user/profile.rst
View file @
96725da9
...
...
@@ -20,8 +20,8 @@ User profile
User profile contains your preferences, name and email. Name and email
are being used in VCS commits, so keep this information accurate.
L
anguages
+++++++++
Translated l
anguages
+++++++++
+++++++++++
Choose here which languages you prefer to translate. These will be offered to
you on main page to have easier access to translations.
...
...
weblate/accounts/migrations/0005_auto_20150330_1358.py
0 → 100644
View file @
96725da9
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
models
,
migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'accounts'
,
'0004_auto_20150108_1424'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'profile'
,
name
=
'languages'
,
field
=
models
.
ManyToManyField
(
help_text
=
'Choose languages to which you can translate.'
,
to
=
'lang.Language'
,
verbose_name
=
'Translated languages'
,
blank
=
True
),
preserve_default
=
True
,
),
]
weblate/accounts/models.py
View file @
96725da9
...
...
@@ -371,8 +371,9 @@ class Profile(models.Model):
)
languages
=
models
.
ManyToManyField
(
Language
,
verbose_name
=
_
(
'
L
anguages'
),
verbose_name
=
_
(
'
Translated l
anguages'
),
blank
=
True
,
help_text
=
_
(
'Choose languages to which you can translate.'
)
)
secondary_languages
=
models
.
ManyToManyField
(
Language
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment