uppy/packages/@uppy/locales/template.js
2019-06-19 10:15:58 +02:00

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