template.js 283 B

123456789101112131415161718
  1. /* eslint camelcase: 0 */
  2. const en_US = {}
  3. en_US.strings = {}
  4. en_US.pluralize = function (n) {
  5. if (n === 1) {
  6. return 0
  7. }
  8. return 1
  9. }
  10. if (typeof window !== 'undefined' && typeof window.Uppy !== 'undefined') {
  11. window.Uppy.locales.en_US = en_US
  12. }
  13. module.exports = en_US