| @@ -50,9 +50,6 @@ const observer = new MutationObserver(mutations => { | ||
| 50 | 50 | * @returns {string} Translated and formatted string |
| 51 | 51 | */ |
| 52 | 52 | export function t(strings, ...values) { |
| 53 | - if (strings == 'Select Horde models') { | |
| 54 | - console.log('strings = ' + strings); | |
| 55 | - } | |
| 56 | 53 | let str = strings.reduce((result, string, i) => result + string + (values[i] !== undefined ? `\${${i}}` : ''), ''); |
| 57 | 54 | let translatedStr = translate(str); |
| 58 | 55 | |