From f17d8ca52e690030986aeca9d7785217025bb0e1 Mon Sep 17 00:00:00 2001 From: David Taylor Date: Mon, 27 Feb 2017 17:42:58 +0000 Subject: [PATCH] Add missing translation string --- .../discourse/initializers/extend-for-solved-button.js.es6 | 2 +- config/locales/client.en.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/javascripts/discourse/initializers/extend-for-solved-button.js.es6 b/assets/javascripts/discourse/initializers/extend-for-solved-button.js.es6 index 0f3fcc8..83a7733 100644 --- a/assets/javascripts/discourse/initializers/extend-for-solved-button.js.es6 +++ b/assets/javascripts/discourse/initializers/extend-for-solved-button.js.es6 @@ -227,7 +227,7 @@ export default { results.push({ openTag: 'span', closeTag: 'span', - title: I18n.t('solved.no_accepted_answer'), + title: I18n.t('solved.has_no_accepted_answer'), icon: 'square-o' }); } diff --git a/config/locales/client.en.yml b/config/locales/client.en.yml index 652b645..668a516 100644 --- a/config/locales/client.en.yml +++ b/config/locales/client.en.yml @@ -5,6 +5,7 @@ en: allow_accepted_answers: "Allow topic owner and staff to mark a reply as the solution" accept_answer: "This reply solves the problem" has_accepted_answer: "This topic has a solution" + has_no_accepted_answer: "This topic has no solution" unaccept_answer: "This reply no longer solves the problem" accepted_answer: "Solution" solution: "Solution"