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
a0b2720a
Commit
a0b2720a
authored
Oct 10, 2013
by
Michal Čihař
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create source string objects for all units (issue #370)
parent
7b25eb47
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
253 additions
and
0 deletions
+253
-0
trans/migrations/0057_create_source_strings.py
trans/migrations/0057_create_source_strings.py
+253
-0
No files found.
trans/migrations/0057_create_source_strings.py
0 → 100644
View file @
a0b2720a
# -*- coding: utf-8 -*-
#
# Copyright © 2012 - 2013 Michal Čihař <michal@cihar.com>
#
# This file is part of Weblate <http://weblate.org/>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
import
time
from
south.v2
import
DataMigration
class
Migration
(
DataMigration
):
def
forwards
(
self
,
orm
):
'''
Creates source objects for units.
'''
total
=
orm
[
'trans.Unit'
].
objects
.
count
()
start
=
time
.
time
()
done
=
0
for
unit
in
orm
[
'trans.Unit'
].
objects
.
iterator
():
orm
[
'trans.Source'
].
objects
.
get_or_create
(
checksum
=
unit
.
checksum
,
subproject
=
unit
.
translation
.
subproject
,
)
done
+=
1
if
done
%
1000
==
0
:
print
'Migrated %d of %d, ETA: %d min'
%
(
done
,
total
,
((
time
.
time
()
-
start
)
*
(
total
-
done
)
/
done
)
/
60
)
def
backwards
(
self
,
orm
):
"Write your backwards methods here."
models
=
{
u'auth.group'
:
{
'Meta'
:
{
'object_name'
:
'Group'
},
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'unique'
:
'True'
,
'max_length'
:
'80'
}),
'permissions'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'to'
:
u"orm['auth.Permission']"
,
'symmetrical'
:
'False'
,
'blank'
:
'True'
})
},
u'auth.permission'
:
{
'Meta'
:
{
'ordering'
:
"(u'content_type__app_label', u'content_type__model', u'codename')"
,
'unique_together'
:
"((u'content_type', u'codename'),)"
,
'object_name'
:
'Permission'
},
'codename'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
'content_type'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u"orm['contenttypes.ContentType']"
}),
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'50'
})
},
u'auth.user'
:
{
'Meta'
:
{
'object_name'
:
'User'
},
'date_joined'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'default'
:
'datetime.datetime.now'
}),
'email'
:
(
'django.db.models.fields.EmailField'
,
[],
{
'max_length'
:
'75'
,
'blank'
:
'True'
}),
'first_name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'30'
,
'blank'
:
'True'
}),
'groups'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'to'
:
u"orm['auth.Group']"
,
'symmetrical'
:
'False'
,
'blank'
:
'True'
}),
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'is_active'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'True'
}),
'is_staff'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'is_superuser'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'last_login'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'default'
:
'datetime.datetime.now'
}),
'last_name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'30'
,
'blank'
:
'True'
}),
'password'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'128'
}),
'user_permissions'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'to'
:
u"orm['auth.Permission']"
,
'symmetrical'
:
'False'
,
'blank'
:
'True'
}),
'username'
:
(
'django.db.models.fields.CharField'
,
[],
{
'unique'
:
'True'
,
'max_length'
:
'30'
})
},
u'contenttypes.contenttype'
:
{
'Meta'
:
{
'ordering'
:
"('name',)"
,
'unique_together'
:
"(('app_label', 'model'),)"
,
'object_name'
:
'ContentType'
,
'db_table'
:
"'django_content_type'"
},
'app_label'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'model'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
})
},
u'lang.language'
:
{
'Meta'
:
{
'ordering'
:
"['name']"
,
'object_name'
:
'Language'
},
'code'
:
(
'django.db.models.fields.SlugField'
,
[],
{
'unique'
:
'True'
,
'max_length'
:
'50'
}),
'direction'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"'ltr'"
,
'max_length'
:
'3'
}),
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
'nplurals'
:
(
'django.db.models.fields.SmallIntegerField'
,
[],
{
'default'
:
'0'
}),
'plural_type'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'1'
}),
'pluralequation'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
,
'blank'
:
'True'
})
},
'trans.change'
:
{
'Meta'
:
{
'ordering'
:
"['-timestamp']"
,
'object_name'
:
'Change'
},
'action'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'2'
}),
'author'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'related_name'
:
"'author_set'"
,
'null'
:
'True'
,
'to'
:
u"orm['auth.User']"
}),
'dictionary'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Dictionary']"
,
'null'
:
'True'
}),
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'target'
:
(
'django.db.models.fields.TextField'
,
[],
{
'default'
:
"''"
,
'blank'
:
'True'
}),
'timestamp'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'auto_now_add'
:
'True'
,
'db_index'
:
'True'
,
'blank'
:
'True'
}),
'translation'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Translation']"
,
'null'
:
'True'
}),
'unit'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Unit']"
,
'null'
:
'True'
}),
'user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u"orm['auth.User']"
,
'null'
:
'True'
})
},
'trans.check'
:
{
'Meta'
:
{
'unique_together'
:
"(('contentsum', 'project', 'language', 'check'),)"
,
'object_name'
:
'Check'
},
'check'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'20'
}),
'contentsum'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'40'
,
'db_index'
:
'True'
}),
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'ignore'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
,
'db_index'
:
'True'
}),
'language'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u"orm['lang.Language']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'project'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Project']"
})
},
'trans.comment'
:
{
'Meta'
:
{
'ordering'
:
"['timestamp']"
,
'object_name'
:
'Comment'
},
'comment'
:
(
'django.db.models.fields.TextField'
,
[],
{}),
'contentsum'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'40'
,
'db_index'
:
'True'
}),
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'language'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u"orm['lang.Language']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'project'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Project']"
}),
'timestamp'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'auto_now_add'
:
'True'
,
'db_index'
:
'True'
,
'blank'
:
'True'
}),
'user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u"orm['auth.User']"
,
'null'
:
'True'
,
'blank'
:
'True'
})
},
'trans.dictionary'
:
{
'Meta'
:
{
'ordering'
:
"['source']"
,
'object_name'
:
'Dictionary'
},
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'language'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u"orm['lang.Language']"
}),
'project'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Project']"
}),
'source'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'200'
,
'db_index'
:
'True'
}),
'target'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'200'
})
},
'trans.indexupdate'
:
{
'Meta'
:
{
'object_name'
:
'IndexUpdate'
},
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'source'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'True'
}),
'unit'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Unit']"
})
},
'trans.project'
:
{
'Meta'
:
{
'ordering'
:
"['name']"
,
'object_name'
:
'Project'
},
'commit_message'
:
(
'django.db.models.fields.TextField'
,
[],
{
'default'
:
"'Translated using Weblate (%(language_name)s)
\
\
n
\
\
nCurrently translated at %(translated_percent)s%% (%(translated)s of %(total)s strings)'"
}),
'committer_email'
:
(
'django.db.models.fields.EmailField'
,
[],
{
'default'
:
"'noreply@weblate.org'"
,
'max_length'
:
'75'
}),
'committer_name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"'Weblate'"
,
'max_length'
:
'200'
}),
'enable_acl'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'instructions'
:
(
'django.db.models.fields.URLField'
,
[],
{
'max_length'
:
'200'
,
'blank'
:
'True'
}),
'license'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'150'
,
'blank'
:
'True'
}),
'license_url'
:
(
'django.db.models.fields.URLField'
,
[],
{
'max_length'
:
'200'
,
'blank'
:
'True'
}),
'mail'
:
(
'django.db.models.fields.EmailField'
,
[],
{
'max_length'
:
'75'
,
'blank'
:
'True'
}),
'merge_style'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"'merge'"
,
'max_length'
:
'10'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'unique'
:
'True'
,
'max_length'
:
'100'
}),
'new_lang'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"'contact'"
,
'max_length'
:
'10'
}),
'push_on_commit'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'set_translation_team'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'True'
}),
'slug'
:
(
'django.db.models.fields.SlugField'
,
[],
{
'unique'
:
'True'
,
'max_length'
:
'50'
}),
'web'
:
(
'django.db.models.fields.URLField'
,
[],
{
'max_length'
:
'200'
})
},
'trans.source'
:
{
'Meta'
:
{
'object_name'
:
'Source'
},
'checksum'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'40'
,
'db_index'
:
'True'
}),
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'subproject'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.SubProject']"
}),
'timestamp'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'auto_now_add'
:
'True'
,
'blank'
:
'True'
})
},
'trans.subproject'
:
{
'Meta'
:
{
'ordering'
:
"['project__name', 'name']"
,
'unique_together'
:
"(('project', 'name'), ('project', 'slug'))"
,
'object_name'
:
'SubProject'
},
'allow_translation_propagation'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'True'
}),
'branch'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"'master'"
,
'max_length'
:
'50'
}),
'check_flags'
:
(
'django.db.models.fields.TextField'
,
[],
{
'default'
:
"''"
,
'blank'
:
'True'
}),
'extra_commit_file'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"''"
,
'max_length'
:
'200'
,
'blank'
:
'True'
}),
'file_format'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"'auto'"
,
'max_length'
:
'50'
}),
'filemask'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'200'
}),
'git_export'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'200'
,
'blank'
:
'True'
}),
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'locked'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
'new_base'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'200'
,
'blank'
:
'True'
}),
'pre_commit_script'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"''"
,
'max_length'
:
'200'
,
'blank'
:
'True'
}),
'project'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Project']"
}),
'push'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'200'
,
'blank'
:
'True'
}),
'repo'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'200'
}),
'report_source_bugs'
:
(
'django.db.models.fields.EmailField'
,
[],
{
'max_length'
:
'75'
,
'blank'
:
'True'
}),
'repoweb'
:
(
'django.db.models.fields.URLField'
,
[],
{
'max_length'
:
'200'
,
'blank'
:
'True'
}),
'save_history'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'True'
}),
'slug'
:
(
'django.db.models.fields.SlugField'
,
[],
{
'max_length'
:
'50'
}),
'suggestion_autoaccept'
:
(
'django.db.models.fields.PositiveSmallIntegerField'
,
[],
{
'default'
:
'0'
}),
'suggestion_voting'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'template'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'200'
,
'blank'
:
'True'
})
},
'trans.suggestion'
:
{
'Meta'
:
{
'object_name'
:
'Suggestion'
},
'contentsum'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'40'
,
'db_index'
:
'True'
}),
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'language'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u"orm['lang.Language']"
}),
'project'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Project']"
}),
'target'
:
(
'django.db.models.fields.TextField'
,
[],
{}),
'user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u"orm['auth.User']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'votes'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'related_name'
:
"'user_votes'"
,
'symmetrical'
:
'False'
,
'through'
:
"orm['trans.Vote']"
,
'to'
:
u"orm['auth.User']"
})
},
'trans.translation'
:
{
'Meta'
:
{
'ordering'
:
"['language__name']"
,
'object_name'
:
'Translation'
},
'commit_message'
:
(
'django.db.models.fields.TextField'
,
[],
{
'default'
:
"''"
,
'blank'
:
'True'
}),
'enabled'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'True'
,
'db_index'
:
'True'
}),
'failing_checks'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'0'
,
'db_index'
:
'True'
}),
'filename'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'200'
}),
'fuzzy'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'0'
,
'db_index'
:
'True'
}),
'have_suggestion'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'0'
,
'db_index'
:
'True'
}),
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'language'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u"orm['lang.Language']"
}),
'language_code'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"''"
,
'max_length'
:
'20'
}),
'lock_time'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'default'
:
'datetime.datetime.now'
}),
'lock_user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'default'
:
'None'
,
'to'
:
u"orm['auth.User']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'revision'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"''"
,
'max_length'
:
'100'
,
'blank'
:
'True'
}),
'subproject'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.SubProject']"
}),
'total'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'0'
,
'db_index'
:
'True'
}),
'total_words'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'0'
}),
'translated'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'0'
,
'db_index'
:
'True'
}),
'translated_words'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'0'
})
},
'trans.unit'
:
{
'Meta'
:
{
'ordering'
:
"['position']"
,
'object_name'
:
'Unit'
},
'checksum'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'40'
,
'db_index'
:
'True'
}),
'comment'
:
(
'django.db.models.fields.TextField'
,
[],
{
'default'
:
"''"
,
'blank'
:
'True'
}),
'contentsum'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'40'
,
'db_index'
:
'True'
}),
'context'
:
(
'django.db.models.fields.TextField'
,
[],
{
'default'
:
"''"
,
'blank'
:
'True'
}),
'flags'
:
(
'django.db.models.fields.TextField'
,
[],
{
'default'
:
"''"
,
'blank'
:
'True'
}),
'fuzzy'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
,
'db_index'
:
'True'
}),
'has_comment'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
,
'db_index'
:
'True'
}),
'has_failing_check'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
,
'db_index'
:
'True'
}),
'has_suggestion'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
,
'db_index'
:
'True'
}),
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'location'
:
(
'django.db.models.fields.TextField'
,
[],
{
'default'
:
"''"
,
'blank'
:
'True'
}),
'num_words'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'0'
}),
'position'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'db_index'
:
'True'
}),
'previous_source'
:
(
'django.db.models.fields.TextField'
,
[],
{
'default'
:
"''"
,
'blank'
:
'True'
}),
'source'
:
(
'django.db.models.fields.TextField'
,
[],
{}),
'target'
:
(
'django.db.models.fields.TextField'
,
[],
{
'default'
:
"''"
,
'blank'
:
'True'
}),
'translated'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
,
'db_index'
:
'True'
}),
'translation'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Translation']"
})
},
'trans.vote'
:
{
'Meta'
:
{
'unique_together'
:
"(('suggestion', 'user'),)"
,
'object_name'
:
'Vote'
},
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'positive'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'True'
}),
'suggestion'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Suggestion']"
}),
'user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u"orm['auth.User']"
})
}
}
complete_apps
=
[
'trans'
]
symmetrical
=
True
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