mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-27 12:13:53 +00:00
16 lines
256 B
JavaScript
16 lines
256 B
JavaScript
const en_US = {}
|
|
|
|
en_US.strings = {}
|
|
|
|
en_US.pluralize = function (n) {
|
|
if (n === 1) {
|
|
return 0
|
|
}
|
|
return 1
|
|
}
|
|
|
|
if (typeof window !== 'undefined' && typeof window.Uppy !== 'undefined') {
|
|
window.Uppy.locales.en_US = en_US
|
|
}
|
|
|
|
module.exports = en_US
|