template.js 274 B

12345678910111213141516
  1. const en_US = {}
  2. en_US.strings = {}
  3. en_US.pluralize = function pluralize (count) {
  4. if (count === 1) {
  5. return 0
  6. }
  7. return 1
  8. }
  9. if (typeof window !== 'undefined' && typeof window.Uppy !== 'undefined') {
  10. window.Uppy.locales.en_US = en_US
  11. }
  12. module.exports = en_US