From 232888212a0f615e166b732ff907b21f18824f0a Mon Sep 17 00:00:00 2001 From: GihHubSphinx Date: Mon, 15 Jun 2015 01:42:47 +0500 Subject: [PATCH] Rewording translation string error message Making error message about inaccurate translation match the UI link to Report a Bug. Addressing https://github.com/HabitRPG/habitrpg/issues/5405 to m --- common/script/i18n.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/script/i18n.coffee b/common/script/i18n.coffee index efd19c911a..edc3ae02c8 100644 --- a/common/script/i18n.coffee +++ b/common/script/i18n.coffee @@ -29,7 +29,7 @@ module.exports = try _.template(string, (clonedVars)) catch e - 'Error processing string. Please report to http://github.com/HabitRPG/habitrpg.' + 'Error processing the string. Please see Help > Report a Bug.' else if module.exports.strings stringNotFound = module.exports.strings.stringNotFound @@ -41,4 +41,4 @@ module.exports = try _.template(stringNotFound, {string: stringName}) catch e - 'Error processing string. Please report to http://github.com/HabitRPG/habitrpg.' + 'Error processing the string. Please see Help > Report a Bug.'