summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorElias Nahum <nahumhbl@gmail.com>2016-02-09 16:44:19 -0300
committerElias Nahum <nahumhbl@gmail.com>2016-02-09 16:44:19 -0300
commitff625794f85517506f788ce7c551cdf634371439 (patch)
treedc20eea0f25a7203359fadd946b34dec247231f6 /web
parentc88447b6d4c2acc99286d6db0badf95aee5a31d9 (diff)
downloadchat-ff625794f85517506f788ce7c551cdf634371439.tar.gz
chat-ff625794f85517506f788ce7c551cdf634371439.tar.bz2
chat-ff625794f85517506f788ce7c551cdf634371439.zip
Fix delete_post_modal showing unnecessary $ sign
Diffstat (limited to 'web')
-rw-r--r--web/react/components/delete_post_modal.jsx2
-rw-r--r--web/static/i18n/en.json2
2 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/delete_post_modal.jsx b/web/react/components/delete_post_modal.jsx
index 65ffa96a1..95b2e58a8 100644
--- a/web/react/components/delete_post_modal.jsx
+++ b/web/react/components/delete_post_modal.jsx
@@ -173,7 +173,7 @@ export default class DeletePostModal extends React.Component {
<Modal.Body>
<FormattedMessage
id='delete_post.question'
- defaultMessage='Are you sure you want to delete this ${term}?'
+ defaultMessage='Are you sure you want to delete this {term}?'
values={{
term: (postTerm)
}}
diff --git a/web/static/i18n/en.json b/web/static/i18n/en.json
index b9124f271..db4e1a9b2 100644
--- a/web/static/i18n/en.json
+++ b/web/static/i18n/en.json
@@ -579,7 +579,7 @@
"delete_post.comment": "Comment",
"delete_post.post": "Post",
"delete_post.confirm": "Confirm {term} Delete",
- "delete_post.question": "Are you sure you want to delete this ${term}?",
+ "delete_post.question": "Are you sure you want to delete this {term}?",
"delete_post.cancel": "Cancel",
"delete_post.del": "Delete",
"edit_channel_header_modal.error": "This channel header is too long, please enter a shorter one",