nb_NO.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* eslint camelcase: 0 */
  2. const nb_NO = {}
  3. nb_NO.strings = {
  4. chooseFile: 'Velg en fil',
  5. youHaveChosen: 'Du har valgt: %{fileName}',
  6. orDragDrop: 'eller slipp den her',
  7. filesChosen: {
  8. 0: '%{smart_count} fil valgt',
  9. 1: '%{smart_count} filer valgt'
  10. },
  11. filesUploaded: {
  12. 0: '%{smart_count} fil lastet opp',
  13. 1: '%{smart_count} filer lastet opp'
  14. },
  15. files: {
  16. 0: '%{smart_count} fil',
  17. 1: '%{smart_count} filer'
  18. },
  19. uploadFiles: {
  20. 0: 'Lastet opp %{smart_count} fil',
  21. 1: 'Lastet opp %{smart_count} filer'
  22. },
  23. selectToUpload: 'Velg filer å laste opp',
  24. closeModal: 'Lukk dialogboksen',
  25. upload: 'Last opp',
  26. importFrom: 'Importer filer fra',
  27. dashboardWindowTitle: 'Uppy Dashboard-vindu (Trykk escape for å lukke)',
  28. dashboardTitle: 'Uppy Dashboard',
  29. copyLinkToClipboardSuccess: 'Lenken ble kopiert til utklippstavla.',
  30. copyLinkToClipboardFallback: 'Kopier URL-en under',
  31. done: 'Ferdig',
  32. localDisk: 'Lokal disk',
  33. dropPasteImport: 'Du kan slippe eller lime inn filer her, importere fra en en av plasseringene ovenfor eller',
  34. dropPaste: 'Du kan slippe eller lime inn filer her eller',
  35. browse: 'velge dem',
  36. fileProgress: 'Filstatus: Opplastingshastighet og ETA',
  37. numberOfSelectedFiles: 'Antall valgte filer',
  38. uploadAllNewFiles: 'Last opp alle nye filer'
  39. }
  40. nb_NO.pluralize = function (n) {
  41. if (n === 1) {
  42. return 0
  43. }
  44. return 1
  45. }
  46. if (typeof window !== 'undefined' && typeof window.Uppy !== 'undefined') {
  47. window.Uppy.locales.nb_NO = nb_NO
  48. }
  49. module.exports = nb_NO