summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-02-09 15:12:03 -0500
committerChristopher Speller <crspeller@gmail.com>2016-02-09 15:12:03 -0500
commit62481983fe2dc8d0a23701de274d76eb861c7304 (patch)
treeb6a2642de13c2f99e8d14759ddf18adebfc3cdb7 /web
parent56b82f3937fd53ff19f16d413f9777f125371dcc (diff)
parentff625794f85517506f788ce7c551cdf634371439 (diff)
downloadchat-62481983fe2dc8d0a23701de274d76eb861c7304.tar.gz
chat-62481983fe2dc8d0a23701de274d76eb861c7304.tar.bz2
chat-62481983fe2dc8d0a23701de274d76eb861c7304.zip
Merge pull request #2121 from ZBoxApp/PLT-1925
PLT-1925: 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 1c9382297..a865730a1 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",