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
20ca324c
Commit
20ca324c
authored
Oct 09, 2018
by
Licaon_Kter
Committed by
JC Brand
Oct 09, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a typo in MUC error messages (#1238)
* Typo in error message
parent
2f5691dc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
locale/converse.pot
locale/converse.pot
+1
-1
src/converse-muc.js
src/converse-muc.js
+1
-1
No files found.
locale/converse.pot
View file @
20ca324c
...
...
@@ -937,7 +937,7 @@ msgid "Error: the groupchat "
msgstr ""
#: dist/converse-no-dependencies.js:44811
msgid "Sorry, you're not allowed to register
d
in this groupchat"
msgid "Sorry, you're not allowed to register in this groupchat"
msgstr ""
#. workaround for Prosody which doesn't give type "headline"
...
...
src/converse-muc.js
View file @
20ca324c
...
...
@@ -1326,7 +1326,7 @@
if
(
sizzle
(
'
item-not-found[xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"]
'
,
iq
).
length
)
{
this
.
feedback
.
set
(
'
error
'
,
__
(
`Error: the groupchat
${
this
.
model
.
getDisplayName
()}
does not exist.`
));
}
else
if
(
sizzle
(
'
not-allowed[xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"]
'
).
length
)
{
this
.
feedback
.
set
(
'
error
'
,
__
(
`Sorry, you're not allowed to register
d
in this groupchat`
));
this
.
feedback
.
set
(
'
error
'
,
__
(
`Sorry, you're not allowed to register in this groupchat`
));
}
});
}
...
...
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