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
83669220
Commit
83669220
authored
Nov 30, 2012
by
Michal Čihař
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix table sorting
parent
f806332f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
weblate/html/list-translations.html
weblate/html/list-translations.html
+2
-1
weblate/media/js/loader.js
weblate/media/js/loader.js
+1
-1
No files found.
weblate/html/list-translations.html
View file @
83669220
...
...
@@ -3,7 +3,8 @@
<table
class=
"sort"
>
<thead>
<tr>
<th
colspan=
"2"
>
{% if show_language == 1 %}{% trans "Language" %}{% else %}{% trans "Project" %}{% endif %}
</th>
<th>
{% if show_language == 1 %}{% trans "Language" %}{% else %}{% trans "Project" %}{% endif %}
</th>
<th></th>
<th
colspan=
"2"
>
{% trans "Translated" %}
</th>
<th>
{% trans "Fuzzy" context "Number of fuzzy strings" %}
</th>
<th>
{% trans "Checks" context "Number of failing checks" %}
</th>
...
...
weblate/media/js/loader.js
View file @
83669220
...
...
@@ -163,7 +163,7 @@ function load_table_sorting() {
return
;
}
// Second column contains percent with colspan
if
(
thIndex
>=
1
&&
!
table
.
hasClass
(
'
simple
'
))
{
if
(
thIndex
>=
2
&&
!
table
.
hasClass
(
'
simple
'
))
{
thIndex
+=
1
;
}
th
.
attr
(
'
title
'
,
gettext
(
"
Sort this column
"
)).
addClass
(
'
sort
'
).
append
(
'
<span class="sort ui-icon ui-icon-carat-2-n-s" />
'
);
...
...
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