Remove debug stuff

9041eb80813f973aa830958307268f6c7faba8d8

Yokayo <52032299+Yokayo@users.noreply.github.com>

Signed
1 files changed, +0 -3Showing whitespace changes
public/scripts/i18n.js+0 -3
@@ -50,9 +50,6 @@ const observer = new MutationObserver(mutations => {
5050 * @returns {string} Translated and formatted string
5151 */
5252export function t(strings, ...values) {
53- if (strings == 'Select Horde models') {
54- console.log('strings = ' + strings);
55- }
5653 let str = strings.reduce((result, string, i) => result + string + (values[i] !== undefined ? `\${${i}}` : ''), '');
5754 let translatedStr = translate(str);
5855