@coorpacademy/app-review 0.10.0 → 0.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. package/es/actions/api/fetch-correction.d.ts +1 -2
  2. package/es/actions/api/fetch-rank.d.ts +1 -2
  3. package/es/actions/api/fetch-skill.d.ts +1 -2
  4. package/es/actions/api/fetch-skills.d.ts +1 -2
  5. package/es/actions/api/fetch-slide.d.ts +1 -2
  6. package/es/actions/api/fetch-slides-to-review-by-skill-ref.d.ts +1 -2
  7. package/es/actions/api/post-answer.d.ts +1 -2
  8. package/es/actions/api/post-progression.d.ts +1 -2
  9. package/es/actions/ui/navigation.d.ts +1 -1
  10. package/es/actions/ui/slides.d.ts +1 -1
  11. package/es/common/index.d.ts +1 -1
  12. package/es/configure-store.d.ts +1 -1
  13. package/es/configure-store.js +1 -1
  14. package/es/reducers/data/corrections.d.ts +1 -1
  15. package/es/reducers/data/current-skill.d.ts +1 -1
  16. package/es/reducers/data/progression.d.ts +1 -1
  17. package/es/reducers/data/skills.d.ts +1 -1
  18. package/es/reducers/data/slides.d.ts +1 -1
  19. package/es/reducers/ui/slide.d.ts +1 -0
  20. package/es/reducers/ui/slide.js +3 -2
  21. package/es/services/fetch-correction.d.ts +2 -0
  22. package/es/services/fetch-correction.js +14 -0
  23. package/es/services/fetch-rank.d.ts +2 -0
  24. package/es/services/fetch-rank.js +10 -0
  25. package/es/services/fetch-skill.d.ts +2 -0
  26. package/es/services/fetch-skill.js +11 -0
  27. package/es/services/fetch-skills.d.ts +2 -0
  28. package/es/services/fetch-skills.js +10 -0
  29. package/es/services/fetch-slide.d.ts +2 -0
  30. package/es/services/fetch-slide.js +10 -0
  31. package/es/services/fetch-slides-to-review-by-skill-ref.d.ts +2 -0
  32. package/es/services/fetch-slides-to-review-by-skill-ref.js +10 -0
  33. package/es/services/index.d.ts +2 -0
  34. package/es/services/index.js +18 -0
  35. package/es/services/post-answer.d.ts +2 -0
  36. package/es/services/post-answer.js +20 -0
  37. package/es/services/post-progression.d.ts +2 -0
  38. package/es/services/post-progression.js +21 -0
  39. package/es/services/tools/fetch-responses.d.ts +7 -0
  40. package/es/services/tools/fetch-responses.js +33 -0
  41. package/es/services/tools/sleep.d.ts +1 -0
  42. package/es/services/tools/sleep.js +3 -0
  43. package/es/types/common.d.ts +186 -10
  44. package/es/views/skills/index.d.ts +1 -1
  45. package/es/views/slides/index.d.ts +1 -1
  46. package/es/views/slides/index.js +2 -0
  47. package/es/views/slides/map-api-slide-to-ui.d.ts +1 -2
  48. package/lib/actions/api/fetch-correction.d.ts +1 -2
  49. package/lib/actions/api/fetch-rank.d.ts +1 -2
  50. package/lib/actions/api/fetch-skill.d.ts +1 -2
  51. package/lib/actions/api/fetch-skills.d.ts +1 -2
  52. package/lib/actions/api/fetch-slide.d.ts +1 -2
  53. package/lib/actions/api/fetch-slides-to-review-by-skill-ref.d.ts +1 -2
  54. package/lib/actions/api/post-answer.d.ts +1 -2
  55. package/lib/actions/api/post-progression.d.ts +1 -2
  56. package/lib/actions/ui/navigation.d.ts +1 -1
  57. package/lib/actions/ui/slides.d.ts +1 -1
  58. package/lib/common/index.d.ts +1 -1
  59. package/lib/configure-store.d.ts +1 -1
  60. package/lib/configure-store.js +2 -2
  61. package/lib/reducers/data/corrections.d.ts +1 -1
  62. package/lib/reducers/data/current-skill.d.ts +1 -1
  63. package/lib/reducers/data/progression.d.ts +1 -1
  64. package/lib/reducers/data/skills.d.ts +1 -1
  65. package/lib/reducers/data/slides.d.ts +1 -1
  66. package/lib/reducers/ui/slide.d.ts +1 -0
  67. package/lib/reducers/ui/slide.js +3 -2
  68. package/lib/services/fetch-correction.d.ts +2 -0
  69. package/lib/services/fetch-correction.js +21 -0
  70. package/lib/services/fetch-rank.d.ts +2 -0
  71. package/lib/services/fetch-rank.js +17 -0
  72. package/lib/services/fetch-skill.d.ts +2 -0
  73. package/lib/services/fetch-skill.js +18 -0
  74. package/lib/services/fetch-skills.d.ts +2 -0
  75. package/lib/services/fetch-skills.js +17 -0
  76. package/lib/services/fetch-slide.d.ts +2 -0
  77. package/lib/services/fetch-slide.js +17 -0
  78. package/lib/services/fetch-slides-to-review-by-skill-ref.d.ts +2 -0
  79. package/lib/services/fetch-slides-to-review-by-skill-ref.js +17 -0
  80. package/lib/services/index.d.ts +2 -0
  81. package/lib/services/index.js +22 -0
  82. package/lib/services/post-answer.d.ts +2 -0
  83. package/lib/services/post-answer.js +27 -0
  84. package/lib/services/post-progression.d.ts +2 -0
  85. package/lib/services/post-progression.js +28 -0
  86. package/lib/services/tools/fetch-responses.d.ts +7 -0
  87. package/lib/services/tools/fetch-responses.js +40 -0
  88. package/lib/services/tools/sleep.d.ts +1 -0
  89. package/lib/services/tools/sleep.js +7 -0
  90. package/lib/types/common.d.ts +186 -10
  91. package/lib/views/skills/index.d.ts +1 -1
  92. package/lib/views/slides/index.d.ts +1 -1
  93. package/lib/views/slides/index.js +2 -0
  94. package/lib/views/slides/map-api-slide-to-ui.d.ts +1 -2
  95. package/locales/bs/review.json +4 -1
  96. package/locales/cs/review.json +6 -6
  97. package/locales/de/review.json +7 -7
  98. package/locales/es/review.json +7 -7
  99. package/locales/hr/review.json +1 -1
  100. package/locales/hu/review.json +7 -7
  101. package/locales/hy/review.json +4 -1
  102. package/locales/id/review.json +3 -3
  103. package/locales/it/review.json +6 -6
  104. package/locales/ja/review.json +5 -5
  105. package/locales/ko/review.json +7 -7
  106. package/locales/nl/review.json +6 -6
  107. package/locales/pl/review.json +6 -6
  108. package/locales/pt/review.json +7 -7
  109. package/locales/ro/review.json +6 -6
  110. package/locales/sk/review.json +3 -3
  111. package/locales/th/review.json +5 -5
  112. package/locales/tl/review.json +7 -7
  113. package/locales/tr/review.json +2 -2
  114. package/locales/uk/review.json +7 -7
  115. package/locales/vi/review.json +3 -3
  116. package/locales/zh/review.json +4 -4
  117. package/locales/zh_TW/review.json +6 -6
  118. package/package.json +3 -4
@@ -51,7 +51,7 @@
51
51
  "button_text": "Bu beceriyi incele"
52
52
  },
53
53
  "no_skills": {
54
- "title": "Henüz tekrarlanacak becerin yok",
55
- "text": "Farklı becerileri inceleyebilmek için önce dersleri tamamlaman gerekiyor."
54
+ "title": "Henüz revize etme becerin yok",
55
+ "text": "Farklı becerileri inceleyebilmen için önce kursları tamamlaman gerekir."
56
56
  }
57
57
  }
@@ -43,15 +43,15 @@
43
43
  }
44
44
  }
45
45
  },
46
- "list_title": "Навички, які ви можете переглянути",
47
- "list_aria_label": "Контейнер Перегляду Навичок",
46
+ "list_title": "Навички, які ви можете оглянути",
47
+ "list_aria_label": "Оглянути Контейнер Навичок",
48
48
  "card": {
49
- "aria_label": "Картка Навички",
50
- "text": "{{total}} питань до перегляду",
51
- "button_text": "Переглянути цю навичку"
49
+ "aria_label": "Картка навички",
50
+ "text": "{{total}} питання, які слід переглянути",
51
+ "button_text": "Оглянути навичку"
52
52
  },
53
53
  "no_skills": {
54
- "title": "У вас ще немає навичок для перевірки",
55
- "text": "Перш ніж переглядати різні навички, вам слід завершити курси."
54
+ "title": "У вас ще немає навичок до перегляду",
55
+ "text": "Спершу вам потрібно завершити курси, до того як ви зможете оглядати різні навички."
56
56
  }
57
57
  }
@@ -44,14 +44,14 @@
44
44
  }
45
45
  },
46
46
  "list_title": "Các kỹ năng bạn có thể ôn tập",
47
- "list_aria_label": "Vùng chứa Ôn tập Kỹ năng",
47
+ "list_aria_label": "Bộ chứa Ôn tập Kỹ năng",
48
48
  "card": {
49
49
  "aria_label": "Thẻ Kỹ năng",
50
- "text": "{{total}} câu hỏi cần ôn tập",
50
+ "text": "{{total}} câu hỏi để ôn tập",
51
51
  "button_text": "Ôn tập kỹ năng này"
52
52
  },
53
53
  "no_skills": {
54
54
  "title": "Bạn chưa có kỹ năng nào để ôn tập",
55
- "text": "Trước tiên, bạn cần hoàn thành các khóa học trước khi có thể ôn tập các kỹ năng khác nhau."
55
+ "text": "Trước tiên, bạn cần hoàn thành các khóa học rồi mới có thể ôn tập các kỹ năng khác nhau."
56
56
  }
57
57
  }
@@ -44,14 +44,14 @@
44
44
  }
45
45
  },
46
46
  "list_title": "您可以复习的技能",
47
- "list_aria_label": "复习技能容器",
47
+ "list_aria_label": "复习技能箱",
48
48
  "card": {
49
49
  "aria_label": "技能卡",
50
- "text": "共需复习 {{total}} 个问题",
50
+ "text": "{{total}}个问题需要复习",
51
51
  "button_text": "复习此技能"
52
52
  },
53
53
  "no_skills": {
54
- "title": "您还没有需要温习的技能",
55
- "text": "您需要先完成课程,然后才能复习不同技能。"
54
+ "title": "您还没有需要修改的技能",
55
+ "text": "您需要先完成课程,才能复习不同的技能。"
56
56
  }
57
57
  }
@@ -43,15 +43,15 @@
43
43
  }
44
44
  }
45
45
  },
46
- "list_title": "你可以複習的技能",
47
- "list_aria_label": "複習技能箱",
46
+ "list_title": "您能複習的技能",
47
+ "list_aria_label": "複習技能",
48
48
  "card": {
49
49
  "aria_label": "技能卡",
50
- "text": "{{total}} 個問題需要複習",
51
- "button_text": "複習這項技能"
50
+ "text": "共有 {{total}} 個問題可複習",
51
+ "button_text": "複習該技能"
52
52
  },
53
53
  "no_skills": {
54
- "title": "你尚未有任何的技能可以複習",
55
- "text": "你必須先完成課程,然後才能複習不同的技能。"
54
+ "title": "您還沒有能溫習的技能",
55
+ "text": "首先您必須完成課程,才能複習不同的技能。"
56
56
  }
57
57
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coorpacademy/app-review",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "description": "",
5
5
  "engines": {
6
6
  "node": ">=16.15.0"
@@ -35,10 +35,9 @@
35
35
  "main": "lib/index.js",
36
36
  "module": "es/index.js",
37
37
  "dependencies": {
38
- "@coorpacademy/components": "10.29.5-alpha.0",
38
+ "@coorpacademy/components": "10.29.6",
39
39
  "@coorpacademy/progression-engine": "11.5.2",
40
40
  "@coorpacademy/redux-task": "1.1.6",
41
- "@coorpacademy/review-services": "1.0.1",
42
41
  "@coorpacademy/translate": "6.2.0",
43
42
  "cross-fetch": "^3.1.5",
44
43
  "jwt-decode": "^3.1.2",
@@ -73,5 +72,5 @@
73
72
  "webpack-cli": "^4.10.0",
74
73
  "webpack-dev-server": "^4.11.1"
75
74
  },
76
- "gitHead": "c87618fe91e37b1321eecaadf7657eafc2d9bb0e"
75
+ "gitHead": "9e2a5d00373677ec2c918c3f47647db88aa914db"
77
76
  }