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
549dbd07
Commit
549dbd07
authored
9 years ago
by
Michal Čihař
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing migrations
Signed-off-by:
Michal Čihař
<
michal@cihar.com
>
parent
8a9a38a0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
0 deletions
+38
-0
weblate/accounts/migrations/0010_auto_20150819_1457.py
weblate/accounts/migrations/0010_auto_20150819_1457.py
+19
-0
weblate/trans/migrations/0041_auto_20150819_1457.py
weblate/trans/migrations/0041_auto_20150819_1457.py
+19
-0
No files found.
weblate/accounts/migrations/0010_auto_20150819_1457.py
0 → 100644
View file @
549dbd07
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
models
,
migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'accounts'
,
'0009_auto_20150630_1213'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'profile'
,
name
=
'language'
,
field
=
models
.
CharField
(
max_length
=
10
,
verbose_name
=
'Interface Language'
,
choices
=
[(
b'az'
,
'Az
\
u0259
rbaycan'
),
(
b'be'
,
'
\
u0411
\
u0435
\
u043b
\
u0430
\
u0440
\
u0443
\
u0441
\
u043a
\
u0430
\
u044f
'
),
(
b'be@latin'
,
'Bie
\
u0142
aruskaja'
),
(
b'br'
,
'Brezhoneg'
),
(
b'ca'
,
'Catal
\
xe0
'
),
(
b'cs'
,
'
\
u010c
e
\
u0161
tina'
),
(
b'da'
,
'Dansk'
),
(
b'de'
,
'Deutsch'
),
(
b'en'
,
'English'
),
(
b'el'
,
'
\
u0395
\
u03bb
\
u03bb
\
u03b7
\
u03bd
\
u03b9
\
u03ba
\
u03ac
'
),
(
b'es'
,
'Espa
\
xf1
ol'
),
(
b'fi'
,
'Suomi'
),
(
b'fr'
,
'Fran
\
xe7
ais'
),
(
b'fy'
,
'Frysk'
),
(
b'gl'
,
'Galego'
),
(
b'he'
,
'
\
u05e2
\
u05d1
\
u05e8
\
u05d9
\
u05ea
'
),
(
b'hu'
,
'Magyar'
),
(
b'id'
,
b'Indonesia'
),
(
b'ja'
,
'
\
u65e5
\
u672c
\
u8a9e
'
),
(
b'ko'
,
'
\
ud55c
\
uad6d
\
uc5b4
'
),
(
b'ksh'
,
'K
\
xf6
lsch'
),
(
b'nl'
,
'Nederlands'
),
(
b'pl'
,
'Polski'
),
(
b'pt'
,
'Portugu
\
xea
s'
),
(
b'pt_BR'
,
'Portugu
\
xea
s brasileiro'
),
(
b'ru'
,
'
\
u0420
\
u0443
\
u0441
\
u0441
\
u043a
\
u0438
\
u0439
'
),
(
b'sk'
,
'Sloven
\
u010d
ina'
),
(
b'sl'
,
'Sloven
\
u0161
\
u010d
ina'
),
(
b'sv'
,
'Svenska'
),
(
b'tr'
,
'T
\
xfc
rk
\
xe7
e'
),
(
b'uk'
,
'
\
u0423
\
u043a
\
u0440
\
u0430
\
u0457
\
u043d
\
u0441
\
u044c
\
u043a
\
u0430
'
),
(
b'zh_CN'
,
'
\
u7b80
\
u4f53
\
u5b57
'
),
(
b'zh_TW'
,
'
\
u6b63
\
u9ad4
\
u5b57
'
)]),
),
]
This diff is collapsed.
Click to expand it.
weblate/trans/migrations/0041_auto_20150819_1457.py
0 → 100644
View file @
549dbd07
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
models
,
migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'trans'
,
'0040_auto_20150818_1643'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'check'
,
name
=
'check'
,
field
=
models
.
CharField
(
max_length
=
20
,
choices
=
[(
b'end_space'
,
'Trailing space'
),
(
b'begin_space'
,
'Starting spaces'
),
(
b'bbcode'
,
'Mismatched BBcode'
),
(
b'python_brace_format'
,
'Python brace format'
),
(
b'plurals'
,
'Missing plurals'
),
(
b'escaped_newline'
,
'Mismatched
\
\
n'
),
(
b'end_exclamation'
,
'Trailing exclamation'
),
(
b'php_format'
,
'PHP format'
),
(
b'same'
,
'Unchanged translation'
),
(
b'xml-tags'
,
'XML tags mismatch'
),
(
b'inconsistent'
,
'Inconsistent'
),
(
b'zero-width-space'
,
'Zero-width space'
),
(
b'c_format'
,
'C format'
),
(
b'end_colon'
,
'Trailing colon'
),
(
b'end_question'
,
'Trailing question'
),
(
b'end_ellipsis'
,
'Trailing ellipsis'
),
(
b'end_stop'
,
'Trailing stop'
),
(
b'begin_newline'
,
'Starting newline'
),
(
b'javascript_format'
,
'Javascript format'
),
(
b'end_newline'
,
'Trailing newline'
),
(
b'python_format'
,
'Python format'
)]),
),
]
This diff is collapsed.
Click to expand it.
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