it.ts
Italian Language
This commit is contained in:
parent
adb7f5075d
commit
519a5c3671
1 changed files with 33 additions and 0 deletions
33
src/i18n/it.ts
Normal file
33
src/i18n/it.ts
Normal file
|
@ -0,0 +1,33 @@
|
|||
|
||||
import { createLocale } from './utils'
|
||||
|
||||
export default createLocale({
|
||||
'PROCESSING' () {
|
||||
return 'Caricamento…' as const
|
||||
},
|
||||
'BTN_ERROR' () {
|
||||
return '❌Download Fallito!' as const
|
||||
},
|
||||
|
||||
'DEPRECATION_NOTICE' (btnName: string) {
|
||||
return `Attenzione!\nSembra che \`${btnName}\` non funzioni correttamente. Usa \`Parti Singole\`.\n(Potrebbe funzionare. Clicca \`OK\` per continuare.)` as const
|
||||
},
|
||||
|
||||
'DOWNLOAD' <T extends string> (fileType: T) {
|
||||
return `Scarica ${fileType}` as const
|
||||
},
|
||||
'DOWNLOAD_AUDIO' <T extends string> (fileType: T) {
|
||||
return `Scarica ${fileType} Audio` as const
|
||||
},
|
||||
|
||||
'IND_PARTS' () {
|
||||
return 'Parti Singole' as const
|
||||
},
|
||||
'IND_PARTS_TOOLTIP' () {
|
||||
return 'Scarica Parti Singole (BETA)' as const
|
||||
},
|
||||
|
||||
'FULL_SCORE' () {
|
||||
return 'Spartito Completato' as const
|
||||
},
|
||||
})
|
Loading…
Reference in a new issue