@samitouri / QOSami-HFS / commits / d091fc10

i18n: missing "Show details"

Massimo Melina committed Jun 1, 2024 at 11:13 UTC d091fc1022458345232dc173cec52c7e61fdce89
4 files changed +7 -5
frontend/src/upload.ts
+1 -1
@@ -243,7 +243,7 @@ function FilesList({ entries, actions }: { entries: ToUpload[], actions: { [icon
243 e.comment && h('tr', {}, h('td', { colSpan: 3 }, h('div', { className: 'entry-comment' }, e.comment)) )
244 )
245 }),
246 - rest > 0 && h('tr', {}, h('td', { colSpan: 99 }, h('a', { href: '#', onClick: () => setAll(true) }, t('more_items', { rest }, "{rest} more item(s)"))))
246 + rest > 0 && h('tr', {}, h('td', { colSpan: 99 }, h('a', { href: '#', onClick: () => setAll(true) }, t('more_items', { n: rest }, "{n} more item(s)"))))
247 )
248 )
249 }
src/langs/hfs-lang-en.json
+2 -1
@@ -167,6 +167,7 @@
167
168 "clipboard": "Clipboard ({content})",
169 "to_clipboard_source_tooltip": "Go to the folder where the clipboard contents are located",
170 - "more_items": "{rest} more item(s)"
170 + "more_items": "{n} more item(s)",
171 + "Show details": "Show details"
172 }
173 }
src/langs/hfs-lang-fi.json
+1 -1
@@ -171,6 +171,6 @@
171
172 "clipboard": "Leikepöytä ({content})",
173 "to_clipboard_source_tooltip": "Mene kansioon jossa leikepöydän kohteet sijaitsevat",
174 - "more_items": "{rest} lisää kohteita"
174 + "more_items": "{n} lisää kohteita"
175 }
176 }
src/langs/hfs-lang-it.json
+3 -2
@@ -18,7 +18,7 @@
18 "select_tooltip": "Selezionare serve con la funziona Zip e per cancellare (dove disponibile), ma puoi anche filtrare la lista",
19 "delete_hint": "Per poter cancellare bisogna prima cliccare Seleziona",
20 "delete_confirm": "Cancellare {n,plural, one{l'elemento} =8 =11 {gli # elementi} other{i # elementi}}?",
21 - "delete_completed": "Cancellazione: {n} riusciti",
21 + "delete_completed": "Cancellazione{n,plural, one{ riuscita} other{: # riusciti}}",
22 "delete_failed": ", {n,plural, one{# fallito} other{# falliti}}",
23 "delete_select": "Seleziona qualcosa per poter cancellare",
24 "Delete": "Cancella",
@@ -159,6 +159,7 @@
159
160 "clipboard": "Appunti ({content})",
161 "to_clipboard_source_tooltip": "Vai alla cartella d'origine dei file negli appunti",
162 - "more_items": "{rest,plural,one{Un altro elemento} other{# altri elementi}}"
162 + "more_items": "{n,plural,one{Un altro elemento} other{# altri elementi}}",
163 + "Show details": "Mostra dettagli"
164 }
165 }