mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
- This PR upgrades `biome` from `2.0.5` -> `2.1.2` and adds two new rules - [noUnusedImports](https://biomejs.dev/linter/rules/no-unused-private-class-members) ( we already had suppressions for this rule in code, but the rule itself was never enabled in the config ) - [noUnusedPrivateClassMembers](https://biomejs.dev/linter/rules/no-unused-private-class-members/) - remove stale suppressions. - remove stale code. --------- Co-authored-by: Mikael Finstad <finstaden@gmail.com> |
||
|---|---|---|
| .. | ||
| script | ||
| src | ||
| .npmignore | ||
| CHANGELOG.md | ||
| LICENSE | ||
| package.json | ||
| README.md | ||
| template.ts | ||
| tsconfig.build.json | ||
| tsconfig.json | ||
| turbo.json | ||
@uppy/locales
This package includes all the locale packs that you can use to make Uppy speak
your language! If your language is missing, please consider
contributing,
starting with en_US, which is always up-to-date automatically.
Installation
$ npm install @uppy/locales
Documentation
$ npm install @uppy/core @uppy/locales
import Uppy from '@uppy/core'
import Russian from '@uppy/locales/lib/ru_RU.js'
const uppy = new Uppy({
debug: true,
meta: {
username: 'John',
license: 'Creative Commons',
},
locale: Russian,
})
Please see locale docs for more details.