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
5a874a49
Commit
5a874a49
authored
Sep 18, 2020
by
Christoph Scholz
Committed by
JC Brand
Sep 18, 2020
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix i18n of label group name
parent
b17e7cd5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
src/converse-rosterview.js
src/converse-rosterview.js
+1
-1
src/headless/converse-roster.js
src/headless/converse-roster.js
+5
-5
No files found.
src/converse-rosterview.js
View file @
5a874a49
...
...
@@ -545,7 +545,7 @@ converse.plugins.add('converse-rosterview', {
render
()
{
this
.
el
.
setAttribute
(
'
data-group
'
,
this
.
model
.
get
(
'
name
'
));
this
.
el
.
innerHTML
=
tpl_group_header
({
'
label_group
'
:
this
.
model
.
get
(
'
name
'
),
'
label_group
'
:
__
(
this
.
model
.
get
(
'
name
'
)
),
'
desc_group_toggle
'
:
this
.
model
.
get
(
'
description
'
),
'
toggle_state
'
:
this
.
model
.
get
(
'
state
'
),
'
_converse
'
:
_converse
...
...
src/headless/converse-roster.js
View file @
5a874a49
...
...
@@ -38,11 +38,11 @@ converse.plugins.add('converse-roster', {
'
rosterInitialized
'
,
]);
_converse
.
HEADER_CURRENT_CONTACTS
=
__
(
'
My contacts
'
)
;
_converse
.
HEADER_PENDING_CONTACTS
=
__
(
'
Pending contacts
'
)
;
_converse
.
HEADER_REQUESTING_CONTACTS
=
__
(
'
Contact requests
'
)
;
_converse
.
HEADER_UNGROUPED
=
__
(
'
Ungrouped
'
)
;
_converse
.
HEADER_UNREAD
=
__
(
'
New messages
'
)
;
_converse
.
HEADER_CURRENT_CONTACTS
=
'
My contacts
'
;
_converse
.
HEADER_PENDING_CONTACTS
=
'
Pending contacts
'
;
_converse
.
HEADER_REQUESTING_CONTACTS
=
'
Contact requests
'
;
_converse
.
HEADER_UNGROUPED
=
'
Ungrouped
'
;
_converse
.
HEADER_UNREAD
=
'
New messages
'
;
const
HEADER_WEIGHTS
=
{};
HEADER_WEIGHTS
[
_converse
.
HEADER_UNREAD
]
=
0
;
...
...
Thomas Gambier
🚴🏼
@tomo
mentioned in commit
ff5a0469
·
Oct 28, 2020
mentioned in commit
ff5a0469
mentioned in commit ff5a0469229e510a1d7c4e6e00bd2e8a945fa062
Toggle commit list
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