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
a69ebcbd
Commit
a69ebcbd
authored
Sep 11, 2019
by
Licaon_Kter
Committed by
JC Brand
Sep 11, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Capitalize "groupchat" (#1707)
* Capitalize "groupchat" * Also locale * Also muc spec
parent
26c1dbb0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
locale/converse.pot
locale/converse.pot
+2
-2
spec/muc.js
spec/muc.js
+1
-1
src/headless/converse-muc.js
src/headless/converse-muc.js
+2
-2
No files found.
locale/converse.pot
View file @
a69ebcbd
...
...
@@ -489,11 +489,11 @@ msgid "The groupchat configuration has changed"
msgstr ""
#: dist/converse-no-dependencies.js:28715
msgid "
g
roupchat logging is now enabled"
msgid "
G
roupchat logging is now enabled"
msgstr ""
#: dist/converse-no-dependencies.js:28716
msgid "
g
roupchat logging is now disabled"
msgid "
G
roupchat logging is now disabled"
msgstr ""
#: dist/converse-no-dependencies.js:28717
...
...
spec/muc.js
View file @
a69ebcbd
...
...
@@ -2293,7 +2293,7 @@
await
u
.
waitUntil
(()
=>
view
.
el
.
querySelectorAll
(
'
.chat-content .chat-info
'
).
length
===
2
);
const
info_messages
=
view
.
el
.
querySelectorAll
(
'
.chat-content .chat-info
'
);
expect
(
info_messages
[
0
].
textContent
.
trim
()).
toBe
(
'
romeo has entered the groupchat
'
);
expect
(
info_messages
[
1
].
textContent
.
trim
()).
toBe
(
'
g
roupchat logging is now enabled
'
);
expect
(
info_messages
[
1
].
textContent
.
trim
()).
toBe
(
'
G
roupchat logging is now enabled
'
);
done
();
}));
...
...
src/headless/converse-muc.js
View file @
a69ebcbd
...
...
@@ -166,8 +166,8 @@ converse.plugins.add('converse-muc', {
102
:
__
(
'
This groupchat now shows unavailable members
'
),
103
:
__
(
'
This groupchat does not show unavailable members
'
),
104
:
__
(
'
The groupchat configuration has changed
'
),
170
:
__
(
'
g
roupchat logging is now enabled
'
),
171
:
__
(
'
g
roupchat logging is now disabled
'
),
170
:
__
(
'
G
roupchat logging is now enabled
'
),
171
:
__
(
'
G
roupchat logging is now disabled
'
),
172
:
__
(
'
This groupchat is now no longer anonymous
'
),
173
:
__
(
'
This groupchat is now semi-anonymous
'
),
174
:
__
(
'
This groupchat is now fully-anonymous
'
),
...
...
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