musescore-downloader/src/i18n/it.ts

38 lines
915 B
TypeScript
Raw Permalink Normal View History

2021-01-01 20:08:19 +00:00
import { createLocale } from './utils'
export default createLocale({
'PROCESSING' () {
return 'Caricamento…' as const
},
'BTN_ERROR' () {
return '❌Download Fallito!' as const
},
'DEPRECATION_NOTICE' (btnName: string) {
return `¡DEPRECATO!\nUtilizzare \`${btnName}\` all'interno di \`Parti Indivduali\`.\n(Qusto potrebbe funzionare. Cliccare \`Ok\` per continuare.)` as const
2021-01-01 20:08:19 +00:00
},
'DOWNLOAD' <T extends string> (fileType: T) {
return `Scaricare ${fileType}` as const
2021-01-01 20:08:19 +00:00
},
'DOWNLOAD_AUDIO' <T extends string> (fileType: T) {
return `Scaricare ${fileType} Audio` as const
2021-01-01 20:08:19 +00:00
},
'IND_PARTS' () {
return 'Parti Singole' as const
},
'IND_PARTS_TOOLTIP' () {
return 'Scaricare Parti Singole (BETA)' as const
2021-01-01 20:08:19 +00:00
},
'VIEW_IN_LIBRESCORE' () {
return 'Visualizzare in LibreScore' as const
},
2021-01-01 20:08:19 +00:00
'FULL_SCORE' () {
return 'Spartito Completo' as const
2021-01-01 20:08:19 +00:00
},
})