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
ff5a0469
Commit
ff5a0469
authored
Sep 28, 2020
by
Christoph Scholz
Committed by
JC Brand
Sep 30, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "fix i18n of label group name"
This reverts commit
5a874a49
.
parent
5ea2ccfc
Changes
2
Hide 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 @
ff5a0469
...
...
@@ -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 @
ff5a0469
...
...
@@ -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
;
...
...
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