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
6b6cc1a4
Commit
6b6cc1a4
authored
Feb 09, 2016
by
Jitka Novotna
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
migration deleted
parent
254edccb
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
75 deletions
+32
-75
weblate/accounts/migrations/0014_dashboard_settings.py
weblate/accounts/migrations/0014_dashboard_settings.py
+30
-0
weblate/accounts/migrations/0015_auto_20160208_1535.py
weblate/accounts/migrations/0015_auto_20160208_1535.py
+0
-25
weblate/accounts/migrations/0016_auto_20160209_1127.py
weblate/accounts/migrations/0016_auto_20160209_1127.py
+0
-19
weblate/trans/migrations/0058_componentlist.py
weblate/trans/migrations/0058_componentlist.py
+2
-1
weblate/trans/migrations/0059_auto_20160205_1349.py
weblate/trans/migrations/0059_auto_20160205_1349.py
+0
-30
No files found.
weblate/accounts/migrations/0014_dashboard_settings.py
0 → 100644
View file @
6b6cc1a4
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'trans'
,
'0058_componentlist'
),
(
'accounts'
,
'0013_auto_20151222_1006'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'profile'
,
name
=
'dashboard_component_list'
,
field
=
models
.
ForeignKey
(
verbose_name
=
'Default component list'
,
blank
=
True
,
to
=
'trans.ComponentList'
,
null
=
True
),
),
migrations
.
AddField
(
model_name
=
'profile'
,
name
=
'dashboard_view'
,
field
=
models
.
CharField
(
default
=
'your-subscriptions'
,
max_length
=
100
,
verbose_name
=
'Default dashboard view'
,
choices
=
[(
'your-subscriptions'
,
'Your subscriptions'
),
(
'your-languages'
,
'Your languages'
),
(
'projects'
,
'All projects'
),
(
'list'
,
'Component list'
)]),
),
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'sr'
,
'
\
u0421
\
u0440
\
u043f
\
u0441
\
u043a
\
u0438
'
),
(
b'sv'
,
'Svenska'
),
(
b'tr'
,
'T
\
xfc
rk
\
xe7
e'
),
(
b'uk'
,
'
\
u0423
\
u043a
\
u0440
\
u0430
\
u0457
\
u043d
\
u0441
\
u044c
\
u043a
\
u0430
'
),
(
b'zh-hans'
,
'
\
u7b80
\
u4f53
\
u5b57
'
),
(
b'zh-hant'
,
'
\
u6b63
\
u9ad4
\
u5b57
'
)]),
),
]
weblate/accounts/migrations/0015_auto_20160208_1535.py
deleted
100644 → 0
View file @
254edccb
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'trans'
,
'0059_auto_20160205_1349'
),
(
'accounts'
,
'0014_auto_20160205_1349'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'profile'
,
name
=
'dashboard_component_list'
,
field
=
models
.
ForeignKey
(
verbose_name
=
'Default component list'
,
blank
=
True
,
to
=
'trans.ComponentList'
,
null
=
True
),
),
migrations
.
AddField
(
model_name
=
'profile'
,
name
=
'dashboard_view'
,
field
=
models
.
IntegerField
(
default
=
0
,
verbose_name
=
'Default dashboard view'
),
),
]
weblate/accounts/migrations/0016_auto_20160209_1127.py
deleted
100644 → 0
View file @
254edccb
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'accounts'
,
'0015_auto_20160208_1535'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'profile'
,
name
=
'dashboard_view'
,
field
=
models
.
CharField
(
default
=
'your-subscriptions'
,
max_length
=
100
,
verbose_name
=
'Default dashboard view'
,
choices
=
[(
'your-subscriptions'
,
'Your subscriptions'
),
(
'your-languages'
,
'Your languages'
),
(
'projects'
,
'All projects'
),
(
'list'
,
'Component list'
)]),
),
]
weblate/trans/migrations/0058_componentlist.py
View file @
6b6cc1a4
...
@@ -15,7 +15,8 @@ class Migration(migrations.Migration):
...
@@ -15,7 +15,8 @@ class Migration(migrations.Migration):
name
=
'ComponentList'
,
name
=
'ComponentList'
,
fields
=
[
fields
=
[
(
'id'
,
models
.
AutoField
(
verbose_name
=
'ID'
,
serialize
=
False
,
auto_created
=
True
,
primary_key
=
True
)),
(
'id'
,
models
.
AutoField
(
verbose_name
=
'ID'
,
serialize
=
False
,
auto_created
=
True
,
primary_key
=
True
)),
(
'title'
,
models
.
CharField
(
max_length
=
100
)),
(
'name'
,
models
.
CharField
(
help_text
=
'Name to display'
,
unique
=
True
,
max_length
=
100
,
verbose_name
=
'Component list name'
)),
(
'slug'
,
models
.
SlugField
(
help_text
=
'Name used in URLs and file names.'
,
unique
=
True
,
max_length
=
100
,
verbose_name
=
'URL slug'
)),
(
'components'
,
models
.
ManyToManyField
(
to
=
'trans.SubProject'
)),
(
'components'
,
models
.
ManyToManyField
(
to
=
'trans.SubProject'
)),
],
],
options
=
{
options
=
{
...
...
weblate/trans/migrations/0059_auto_20160205_1349.py
deleted
100644 → 0
View file @
254edccb
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'trans'
,
'0058_componentlist'
),
]
operations
=
[
migrations
.
RemoveField
(
model_name
=
'componentlist'
,
name
=
'title'
,
),
migrations
.
AddField
(
model_name
=
'componentlist'
,
name
=
'name'
,
field
=
models
.
CharField
(
default
=
'uhno'
,
help_text
=
'Name to display'
,
unique
=
True
,
max_length
=
100
,
verbose_name
=
'Component list name'
),
preserve_default
=
False
,
),
migrations
.
AddField
(
model_name
=
'componentlist'
,
name
=
'slug'
,
field
=
models
.
SlugField
(
default
=
'uteho'
,
max_length
=
100
,
help_text
=
'Name used in URLs and file names.'
,
unique
=
True
,
verbose_name
=
'URL slug'
),
preserve_default
=
False
,
),
]
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