fix: missing translation for "Wildcards"
Massimo Melina committed
Jan 25, 2025 at 23:50 UTC
80a5e655f5e509f69365fc4dd97ccd36053f301d
4 files changed
+7
-4
frontend/src/menu.ts
+1
-1
@@ -222,7 +222,7 @@ function searchDialog() {
222
h('label', { htmlFor: 'comment' }, t`Comment`),
223
h('input', { name: 'comment', style, }),
224
h('div', { style: { margin: '1em 0' } },
225
- h(Checkbox, { name: 'wild', defaultChecked: true }, "Wildcards"), // uncontrolled
225
+ h(Checkbox, { name: 'wild', defaultChecked: true }, t`Wildcards`), // uncontrolled
226
h('a', { href: `${WIKI_URL}Wildcards`, target: 'doc' }, hIcon('info')),
227
),
228
h('div', { style: { textAlign: 'right', marginTop: '.8em' } },
src/langs/hfs-lang-en.json
+2
-1
@@ -182,6 +182,7 @@
182
"Calculate": "Calculate",
183
"Creation": "Creation",
184
"creation": "creation",
185
- "required_change_password": "You are required to change your password"
185
+ "required_change_password": "You are required to change your password",
186
+ "Wildcards": "Wildcards"
187
}
188
}
src/langs/hfs-lang-fi.json
+2
-1
@@ -186,6 +186,7 @@
186
"Calculate": "Laske",
187
"Creation": "Luonti",
188
"creation": "luonti",
189
- "required_change_password": "Sinun täytyy vaihtaa salasanasi"
189
+ "required_change_password": "Sinun täytyy vaihtaa salasanasi",
190
+ "Wildcards": "Villimerkit"
191
}
192
}
src/langs/hfs-lang-it.json
+2
-1
@@ -174,6 +174,7 @@
174
"Calculate": "Calcola",
175
"Creation": "Creazione",
176
"creation": "creazione",
177
- "required_change_password": "È necessario cambiare la password"
177
+ "required_change_password": "È necessario cambiare la password",
178
+ "Wildcards": "Caratteri jolly"
179
}
180
}