template.js 222 B

12345678910111213141516
  1. const en_US = {
  2. pluralize (count) {
  3. if (count === 1) {
  4. return 0
  5. }
  6. return 1
  7. },
  8. }
  9. en_US.strings = {}
  10. if (typeof Uppy !== 'undefined') {
  11. globalThis.Uppy.locales.en_US = en_US
  12. }
  13. export default en_US