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
3903695e
Commit
3903695e
authored
Jan 21, 2013
by
Michal Čihař
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove not used parameters
parent
ed2fa5d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
9 deletions
+1
-9
weblate/trans/checks/format.py
weblate/trans/checks/format.py
+1
-9
No files found.
weblate/trans/checks/format.py
View file @
3903695e
...
@@ -84,8 +84,6 @@ class BaseFormatCheck(TargetCheck):
...
@@ -84,8 +84,6 @@ class BaseFormatCheck(TargetCheck):
return
self
.
check_format
(
return
self
.
check_format
(
sources
[
1
],
sources
[
1
],
targets
[
0
],
targets
[
0
],
flags
,
language
,
unit
,
unit
,
1
,
1
,
False
False
...
@@ -94,8 +92,6 @@ class BaseFormatCheck(TargetCheck):
...
@@ -94,8 +92,6 @@ class BaseFormatCheck(TargetCheck):
singular_check
=
self
.
check_format
(
singular_check
=
self
.
check_format
(
sources
[
0
],
sources
[
0
],
targets
[
0
],
targets
[
0
],
flags
,
language
,
unit
,
unit
,
0
,
0
,
len
(
sources
)
>
1
len
(
sources
)
>
1
...
@@ -106,8 +102,6 @@ class BaseFormatCheck(TargetCheck):
...
@@ -106,8 +102,6 @@ class BaseFormatCheck(TargetCheck):
plural_check
=
self
.
check_format
(
plural_check
=
self
.
check_format
(
sources
[
1
],
sources
[
1
],
targets
[
0
],
targets
[
0
],
flags
,
language
,
unit
,
unit
,
1
,
1
,
True
True
...
@@ -122,8 +116,6 @@ class BaseFormatCheck(TargetCheck):
...
@@ -122,8 +116,6 @@ class BaseFormatCheck(TargetCheck):
plural_check
=
self
.
check_format
(
plural_check
=
self
.
check_format
(
sources
[
1
],
sources
[
1
],
target
,
target
,
flags
,
language
,
unit
,
unit
,
1
,
1
,
False
False
...
@@ -133,7 +125,7 @@ class BaseFormatCheck(TargetCheck):
...
@@ -133,7 +125,7 @@ class BaseFormatCheck(TargetCheck):
# Check did not fire
# Check did not fire
return
False
return
False
def
check_format
(
self
,
source
,
target
,
flags
,
language
,
unit
,
cache_slot
,
ignore_missing
):
def
check_format
(
self
,
source
,
target
,
unit
,
cache_slot
,
ignore_missing
):
'''
'''
Generic checker for format strings.
Generic checker for format strings.
'''
'''
...
...
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