uppy/packages/@uppy/locales/template.js
2022-05-09 15:40:57 +02:00

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