diff --git a/common/script/src/content/helpers.js b/common/script/src/content/helpers.js index bdc0123171..e870f86402 100644 --- a/common/script/src/content/helpers.js +++ b/common/script/src/content/helpers.js @@ -6,7 +6,7 @@ require('coffee-script'); import i18n from '../../../script/i18n.coffee'; //---------------------------------------- -// Translator Helper +// Translator Helpers //---------------------------------------- export function translator(string, vars={a: 'a'}) { let func = (lang) => { @@ -18,10 +18,6 @@ export function translator(string, vars={a: 'a'}) { return func; }; -//---------------------------------------- -// Formatting Helper -//---------------------------------------- - export function formatForTranslator(name) { let camelCasedName = camelCase(name); let capitalCamelCasedName = capitalize(camelCasedName);