Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. export const DOSAGE_UNITS = {
  2. 'piece': 'Stück',
  3. 'ml': 'Milliliter',
  4. 'tablet': 'Tablette(n)',
  5. 'injection': 'Injektion(en)',
  6. 'suppository': 'Zäpfchen',
  7. 'capsule': 'Kapsel(n)',
  8. 'drop': 'Tropfen',
  9. 'mg': 'Milligramm'
  10. }
  11.  
  12. export const INTERVALS = {
  13. 'once': 'einmal',
  14. 'hourly': 'Stunde',
  15. 'daily': 'Tag',
  16. 'weekly': 'Woche',
  17. 'monthly': 'Monat'
  18. }
  19.  
  20. export const EFFECTS_STATI = {
  21. 'unknown': 'Unbekannt',
  22. 'recovering': 'Verbessert',
  23. 'recovered': 'Wiederhergestellt',
  24. 'ongoing': 'Andauernd',
  25. 'worsened': 'Verschlechtert',
  26. 'recovered-with-sequelae': 'Wiederhergestellt mit bleibenden Schäden',
  27. 'fatal': 'Lebensbedrohend'
  28. }
  29.  
  30. export const DURATIONS = {
  31. 'hours': 'Stunden',
  32. 'days': 'Tage',
  33. 'weeks': 'Wochen',
  34. 'months': 'Monate'
  35. }
  36.  
  37. export const HCP_STATUS = {
  38. VERIFIED: ['hcp-report-verified'],
  39. NOT_VERIFIED: ['hcp-not-included', 'hcp-declined', 'hcp-report-skipped', 'hcp-report-could-not-be-verified'],
  40. PENDING: ['hcp-included', 'hcp-assigned', 'hcp-confirmed']
  41. }
  42.  
  43. export const BROWSER_SUPPORT = {
  44. 'chrome': '>=73',
  45. 'safari': '>=12',
  46. 'firefox': '>=66',
  47. 'Microsoft Edge': '>=17',
  48. 'internet explorer': '=11',
  49. 'opera': '>=58'
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement