Xmader / musescore-downloader

⚠️ This repo has moved to https://github.com/LibreScore/dl-librescore ⚠️ | Download sheet music (MSCZ, PDF, MusicXML, MIDI, MP3, download individual parts as PDF) from musescore.com for free, no login or Musescore Pro required | 免登录、免 Musescore Pro,免费下载 musescore.com 上的曲谱
https://github.com/LibreScore/dl-librescore
MIT License
2.71k stars 198 forks source link

Add Italian Language #103

Closed PaoloC95 closed 3 years ago

PaoloC95 commented 3 years ago

Add Italian Language as "it.ts" at musescore-downloader/src/i18n

Xmader commented 3 years ago

Thank you!

Xmader commented 3 years ago

In order to make this work, it must be added to the locales list

src/i18n/index.ts

import it from './it'

// ...

const locales = (<L extends { [n: string]: LOCALE } /** type checking */> (l: L) => Object.freeze(l))({
  en,
  es,
  it,
})
Xmader commented 3 years ago

Oops