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
0612a686
Commit
0612a686
authored
Jan 18, 2013
by
Weblate
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
eb58ad8f
a01ed89c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
weblate/trans/tests/test_models.py
weblate/trans/tests/test_models.py
+7
-3
No files found.
weblate/trans/tests/test_models.py
View file @
0612a686
...
...
@@ -50,7 +50,7 @@ class RepoTestCase(TestCase):
web
=
'http://weblate.org/'
)
def
create_subproject
(
self
,
mask
=
'po/*.po'
,
template
=
''
):
def
create_subproject
(
self
,
file_format
=
'auto'
,
mask
=
'po/*.po'
,
template
=
''
):
'''
Creates test subproject.
'''
...
...
@@ -60,23 +60,27 @@ class RepoTestCase(TestCase):
slug
=
'test'
,
project
=
project
,
repo
=
'git://github.com/nijel/weblate-test.git'
,
filemask
=
'po/*.po'
,
template
=
''
,
filemask
=
mask
,
template
=
template
,
file_format
=
file_format
,
)
def
create_iphone
(
self
):
return
self
.
create_subproject
(
'strings'
,
'iphone/*.lproj/Localizable.strings'
,
)
def
create_java
(
self
):
return
self
.
create_subproject
(
'properties'
,
'java/swing_messages_*.properties'
,
'java/swing_messages.properties'
,
)
def
create_xliff
(
self
):
return
self
.
create_subproject
(
'xliff'
,
'xliff/*/DPH.xlf'
,
)
...
...
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