mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-25 03:08:34 +00:00
16 lines
222 B
JavaScript
16 lines
222 B
JavaScript
const en_US = {
|
|
pluralize (count) {
|
|
if (count === 1) {
|
|
return 0
|
|
}
|
|
return 1
|
|
},
|
|
}
|
|
|
|
en_US.strings = {}
|
|
|
|
if (typeof Uppy !== 'undefined') {
|
|
globalThis.Uppy.locales.en_US = en_US
|
|
}
|
|
|
|
export default en_US
|