@atlaskit/reactions 21.0.4 → 21.2.0

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 (211) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/README.md +3 -0
  3. package/dist/cjs/analytics/index.js +11 -1
  4. package/dist/cjs/analytics/ufo.js +71 -0
  5. package/dist/cjs/components/Counter.js +20 -20
  6. package/dist/cjs/components/EmojiButton.js +9 -11
  7. package/dist/cjs/components/FlashAnimation.js +19 -17
  8. package/dist/cjs/components/Reaction.js +22 -28
  9. package/dist/cjs/components/ReactionPicker.js +43 -37
  10. package/dist/cjs/components/ReactionTooltip.js +33 -29
  11. package/dist/cjs/components/Reactions.js +15 -17
  12. package/dist/cjs/components/Selector.js +23 -28
  13. package/dist/cjs/components/ShowMore.js +25 -22
  14. package/dist/cjs/components/Trigger.js +11 -16
  15. package/dist/cjs/components/UfoErrorBoundary.js +68 -0
  16. package/dist/cjs/components/index.js +9 -1
  17. package/dist/cjs/containers/ConnectedReactionPicker.js +44 -0
  18. package/dist/cjs/containers/ConnectedReactionsView.js +131 -0
  19. package/dist/cjs/containers/index.js +4 -6
  20. package/dist/cjs/i18n/cs.js +4 -3
  21. package/dist/cjs/i18n/da.js +4 -3
  22. package/dist/cjs/i18n/de.js +4 -3
  23. package/dist/cjs/i18n/en_ZZ.js +21 -0
  24. package/dist/cjs/i18n/es.js +4 -3
  25. package/dist/cjs/i18n/et.js +2 -2
  26. package/dist/cjs/i18n/fi.js +4 -3
  27. package/dist/cjs/i18n/fr.js +4 -3
  28. package/dist/cjs/i18n/hu.js +4 -3
  29. package/dist/cjs/i18n/it.js +4 -3
  30. package/dist/cjs/i18n/ja.js +4 -3
  31. package/dist/cjs/i18n/ko.js +4 -3
  32. package/dist/cjs/i18n/nb.js +4 -3
  33. package/dist/cjs/i18n/nl.js +4 -3
  34. package/dist/cjs/i18n/pl.js +4 -3
  35. package/dist/cjs/i18n/pt_BR.js +4 -3
  36. package/dist/cjs/i18n/pt_PT.js +2 -2
  37. package/dist/cjs/i18n/ru.js +4 -3
  38. package/dist/cjs/i18n/sk.js +2 -2
  39. package/dist/cjs/i18n/sv.js +4 -3
  40. package/dist/cjs/i18n/th.js +4 -3
  41. package/dist/cjs/i18n/tr.js +4 -3
  42. package/dist/cjs/i18n/uk.js +4 -3
  43. package/dist/cjs/i18n/vi.js +4 -3
  44. package/dist/cjs/i18n/zh.js +4 -3
  45. package/dist/cjs/i18n/zh_TW.js +4 -3
  46. package/dist/cjs/index.js +11 -3
  47. package/dist/cjs/{reaction-store → store}/ReactionConsumer.js +0 -0
  48. package/dist/cjs/{reaction-store → store}/ReactionsStore.js +63 -14
  49. package/dist/cjs/{reaction-store → store}/batched.js +0 -0
  50. package/dist/cjs/{reaction-store → store}/index.js +0 -0
  51. package/dist/cjs/{reaction-store → store}/utils.js +0 -0
  52. package/dist/cjs/version.json +1 -1
  53. package/dist/es2019/analytics/index.js +2 -0
  54. package/dist/es2019/analytics/ufo.js +62 -0
  55. package/dist/es2019/components/Counter.js +18 -18
  56. package/dist/es2019/components/EmojiButton.js +10 -10
  57. package/dist/es2019/components/FlashAnimation.js +16 -15
  58. package/dist/es2019/components/Reaction.js +23 -28
  59. package/dist/es2019/components/ReactionPicker.js +39 -34
  60. package/dist/es2019/components/ReactionTooltip.js +27 -27
  61. package/dist/es2019/components/Reactions.js +16 -16
  62. package/dist/es2019/components/Selector.js +21 -24
  63. package/dist/es2019/components/ShowMore.js +22 -18
  64. package/dist/es2019/components/Trigger.js +10 -14
  65. package/dist/es2019/components/UfoErrorBoundary.js +13 -0
  66. package/dist/es2019/components/index.js +2 -1
  67. package/dist/es2019/containers/ConnectedReactionPicker.js +27 -0
  68. package/dist/es2019/containers/ConnectedReactionsView.js +112 -0
  69. package/dist/es2019/containers/index.js +2 -2
  70. package/dist/es2019/i18n/cs.js +4 -3
  71. package/dist/es2019/i18n/da.js +4 -3
  72. package/dist/es2019/i18n/de.js +4 -3
  73. package/dist/es2019/i18n/en_ZZ.js +13 -0
  74. package/dist/es2019/i18n/es.js +4 -3
  75. package/dist/es2019/i18n/et.js +2 -2
  76. package/dist/es2019/i18n/fi.js +4 -3
  77. package/dist/es2019/i18n/fr.js +4 -3
  78. package/dist/es2019/i18n/hu.js +4 -3
  79. package/dist/es2019/i18n/it.js +4 -3
  80. package/dist/es2019/i18n/ja.js +4 -3
  81. package/dist/es2019/i18n/ko.js +4 -3
  82. package/dist/es2019/i18n/nb.js +4 -3
  83. package/dist/es2019/i18n/nl.js +4 -3
  84. package/dist/es2019/i18n/pl.js +4 -3
  85. package/dist/es2019/i18n/pt_BR.js +4 -3
  86. package/dist/es2019/i18n/pt_PT.js +2 -2
  87. package/dist/es2019/i18n/ru.js +4 -3
  88. package/dist/es2019/i18n/sk.js +2 -2
  89. package/dist/es2019/i18n/sv.js +4 -3
  90. package/dist/es2019/i18n/th.js +4 -3
  91. package/dist/es2019/i18n/tr.js +4 -3
  92. package/dist/es2019/i18n/uk.js +4 -3
  93. package/dist/es2019/i18n/vi.js +4 -3
  94. package/dist/es2019/i18n/zh.js +4 -3
  95. package/dist/es2019/i18n/zh_TW.js +4 -3
  96. package/dist/es2019/index.js +2 -1
  97. package/dist/es2019/{reaction-store → store}/ReactionConsumer.js +0 -0
  98. package/dist/es2019/{reaction-store → store}/ReactionsStore.js +59 -13
  99. package/dist/es2019/{reaction-store → store}/batched.js +0 -0
  100. package/dist/es2019/{reaction-store → store}/index.js +0 -0
  101. package/dist/es2019/{reaction-store → store}/utils.js +0 -0
  102. package/dist/es2019/version.json +1 -1
  103. package/dist/esm/analytics/index.js +2 -0
  104. package/dist/esm/analytics/ufo.js +62 -0
  105. package/dist/esm/components/Counter.js +18 -17
  106. package/dist/esm/components/EmojiButton.js +9 -10
  107. package/dist/esm/components/FlashAnimation.js +16 -14
  108. package/dist/esm/components/Reaction.js +22 -26
  109. package/dist/esm/components/ReactionPicker.js +39 -34
  110. package/dist/esm/components/ReactionTooltip.js +27 -27
  111. package/dist/esm/components/Reactions.js +15 -16
  112. package/dist/esm/components/Selector.js +20 -24
  113. package/dist/esm/components/ShowMore.js +22 -19
  114. package/dist/esm/components/Trigger.js +10 -14
  115. package/dist/esm/components/UfoErrorBoundary.js +54 -0
  116. package/dist/esm/components/index.js +2 -1
  117. package/dist/esm/containers/ConnectedReactionPicker.js +29 -0
  118. package/dist/esm/containers/ConnectedReactionsView.js +108 -0
  119. package/dist/esm/containers/index.js +2 -2
  120. package/dist/esm/i18n/cs.js +4 -3
  121. package/dist/esm/i18n/da.js +4 -3
  122. package/dist/esm/i18n/de.js +4 -3
  123. package/dist/esm/i18n/en_ZZ.js +13 -0
  124. package/dist/esm/i18n/es.js +4 -3
  125. package/dist/esm/i18n/et.js +2 -2
  126. package/dist/esm/i18n/fi.js +4 -3
  127. package/dist/esm/i18n/fr.js +4 -3
  128. package/dist/esm/i18n/hu.js +4 -3
  129. package/dist/esm/i18n/it.js +4 -3
  130. package/dist/esm/i18n/ja.js +4 -3
  131. package/dist/esm/i18n/ko.js +4 -3
  132. package/dist/esm/i18n/nb.js +4 -3
  133. package/dist/esm/i18n/nl.js +4 -3
  134. package/dist/esm/i18n/pl.js +4 -3
  135. package/dist/esm/i18n/pt_BR.js +4 -3
  136. package/dist/esm/i18n/pt_PT.js +2 -2
  137. package/dist/esm/i18n/ru.js +4 -3
  138. package/dist/esm/i18n/sk.js +2 -2
  139. package/dist/esm/i18n/sv.js +4 -3
  140. package/dist/esm/i18n/th.js +4 -3
  141. package/dist/esm/i18n/tr.js +4 -3
  142. package/dist/esm/i18n/uk.js +4 -3
  143. package/dist/esm/i18n/vi.js +4 -3
  144. package/dist/esm/i18n/zh.js +4 -3
  145. package/dist/esm/i18n/zh_TW.js +4 -3
  146. package/dist/esm/index.js +2 -1
  147. package/dist/esm/{reaction-store → store}/ReactionConsumer.js +0 -0
  148. package/dist/esm/{reaction-store → store}/ReactionsStore.js +61 -13
  149. package/dist/esm/{reaction-store → store}/batched.js +0 -0
  150. package/dist/esm/{reaction-store → store}/index.js +0 -0
  151. package/dist/esm/{reaction-store → store}/utils.js +0 -0
  152. package/dist/esm/version.json +1 -1
  153. package/dist/types/analytics/index.d.ts +1 -0
  154. package/dist/types/analytics/ufo.d.ts +26 -0
  155. package/dist/types/components/Counter.d.ts +4 -3
  156. package/dist/types/components/FlashAnimation.d.ts +3 -1
  157. package/dist/types/components/ReactionPicker.d.ts +2 -1
  158. package/dist/types/components/Reactions.d.ts +7 -5
  159. package/dist/types/components/Selector.d.ts +2 -1
  160. package/dist/types/components/ShowMore.d.ts +4 -0
  161. package/dist/types/components/UfoErrorBoundary.d.ts +8 -0
  162. package/dist/types/components/index.d.ts +2 -0
  163. package/dist/types/containers/ConnectedReactionPicker.d.ts +10 -0
  164. package/dist/types/containers/ConnectedReactionsView.d.ts +19 -0
  165. package/dist/types/containers/index.d.ts +2 -2
  166. package/dist/types/i18n/cs.d.ts +2 -1
  167. package/dist/types/i18n/da.d.ts +2 -1
  168. package/dist/types/i18n/de.d.ts +2 -1
  169. package/dist/types/i18n/en_ZZ.d.ts +13 -0
  170. package/dist/types/i18n/es.d.ts +2 -1
  171. package/dist/types/i18n/et.d.ts +1 -1
  172. package/dist/types/i18n/fi.d.ts +2 -1
  173. package/dist/types/i18n/fr.d.ts +2 -1
  174. package/dist/types/i18n/hu.d.ts +2 -1
  175. package/dist/types/i18n/it.d.ts +2 -1
  176. package/dist/types/i18n/ja.d.ts +2 -1
  177. package/dist/types/i18n/ko.d.ts +2 -1
  178. package/dist/types/i18n/nb.d.ts +2 -1
  179. package/dist/types/i18n/nl.d.ts +2 -1
  180. package/dist/types/i18n/pl.d.ts +2 -1
  181. package/dist/types/i18n/pt_BR.d.ts +2 -1
  182. package/dist/types/i18n/pt_PT.d.ts +1 -1
  183. package/dist/types/i18n/ru.d.ts +2 -1
  184. package/dist/types/i18n/sk.d.ts +1 -1
  185. package/dist/types/i18n/sv.d.ts +2 -1
  186. package/dist/types/i18n/th.d.ts +2 -1
  187. package/dist/types/i18n/tr.d.ts +2 -1
  188. package/dist/types/i18n/uk.d.ts +2 -1
  189. package/dist/types/i18n/vi.d.ts +2 -1
  190. package/dist/types/i18n/zh.d.ts +2 -1
  191. package/dist/types/i18n/zh_TW.d.ts +2 -1
  192. package/dist/types/index.d.ts +3 -2
  193. package/dist/types/store/ReactionConsumer.d.ts +29 -0
  194. package/dist/types/{reaction-store → store}/ReactionsStore.d.ts +11 -7
  195. package/dist/types/{reaction-store → store}/batched.d.ts +0 -0
  196. package/dist/types/{reaction-store → store}/index.d.ts +0 -0
  197. package/dist/types/{reaction-store → store}/utils.d.ts +0 -0
  198. package/dist/types/types/Actions.d.ts +6 -0
  199. package/dist/types/types/index.d.ts +1 -1
  200. package/docs/0-intro.tsx +1 -1
  201. package/local-config-example.ts +3 -1
  202. package/package.json +11 -8
  203. package/dist/cjs/containers/ReactionsContainer.js +0 -142
  204. package/dist/cjs/containers/ReactionsPickerContainer.js +0 -76
  205. package/dist/es2019/containers/ReactionsContainer.js +0 -96
  206. package/dist/es2019/containers/ReactionsPickerContainer.js +0 -26
  207. package/dist/esm/containers/ReactionsContainer.js +0 -125
  208. package/dist/esm/containers/ReactionsPickerContainer.js +0 -62
  209. package/dist/types/containers/ReactionsContainer.d.ts +0 -22
  210. package/dist/types/containers/ReactionsPickerContainer.d.ts +0 -18
  211. package/dist/types/reaction-store/ReactionConsumer.d.ts +0 -32
@@ -0,0 +1,131 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ var _typeof = require("@babel/runtime/helpers/typeof");
6
+
7
+ Object.defineProperty(exports, "__esModule", {
8
+ value: true
9
+ });
10
+ exports.ConnectedReactionsView = void 0;
11
+
12
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
13
+
14
+ var _react = _interopRequireWildcard(require("react"));
15
+
16
+ var _analyticsNamespacedContext = require("@atlaskit/analytics-namespaced-context");
17
+
18
+ var _analyticsNext = require("@atlaskit/analytics-next");
19
+
20
+ var _components = require("../components");
21
+
22
+ var _ReactionConsumer = require("../store/ReactionConsumer");
23
+
24
+ var _ReactionStatus = require("../types/ReactionStatus");
25
+
26
+ var _ReactionsStore = require("../store/ReactionsStore");
27
+
28
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
29
+
30
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
31
+
32
+ var ReactionsView = function ReactionsView(props) {
33
+ // // compose a UFO experience object
34
+ var experienceInstance = (0, _react.useRef)();
35
+ var ari = props.ari,
36
+ createAnalyticsEvent = props.createAnalyticsEvent,
37
+ store = props.store;
38
+ (0, _react.useEffect)(function () {
39
+ experienceInstance.current = _ReactionsStore.ufoExperiences.render.getInstance(ari);
40
+ }, [ari]);
41
+ (0, _react.useEffect)(function () {
42
+ Promise.resolve(store).then(function (_store) {
43
+ if (_store.setCreateAnalyticsEvent && createAnalyticsEvent) {
44
+ _store.setCreateAnalyticsEvent(createAnalyticsEvent);
45
+ }
46
+ });
47
+ }, [createAnalyticsEvent, store]); // abort when component gets unmounted
48
+
49
+ (0, _react.useEffect)(function () {
50
+ return function () {
51
+ var _experienceInstance$c;
52
+
53
+ (_experienceInstance$c = experienceInstance.current) === null || _experienceInstance$c === void 0 ? void 0 : _experienceInstance$c.abort();
54
+ };
55
+ }, [experienceInstance]);
56
+
57
+ var renderChildren = function renderChildren(innerProps) {
58
+ var containerAri = props.containerAri,
59
+ ari = props.ari;
60
+ return /*#__PURE__*/_react.default.createElement(_analyticsNamespacedContext.FabricElementsAnalyticsContext, {
61
+ data: {
62
+ containerAri: containerAri,
63
+ ari: ari
64
+ }
65
+ }, /*#__PURE__*/_react.default.createElement(_components.Reactions, (0, _extends2.default)({
66
+ key: "".concat(props.containerAri, "|").concat(props.ari)
67
+ }, props, innerProps)));
68
+ };
69
+
70
+ var stateMapper = function stateMapper(state) {
71
+ var containerAri = props.containerAri,
72
+ ari = props.ari;
73
+ var reactionsState = state && state.reactions["".concat(containerAri, "|").concat(ari)];
74
+
75
+ if (!state || !reactionsState) {
76
+ return {
77
+ status: _ReactionStatus.ReactionStatus.notLoaded,
78
+ reactions: []
79
+ };
80
+ }
81
+
82
+ switch (reactionsState.status) {
83
+ case _ReactionStatus.ReactionStatus.ready:
84
+ return {
85
+ reactions: reactionsState.reactions,
86
+ status: reactionsState.status,
87
+ flash: state.flash["".concat(containerAri, "|").concat(ari)]
88
+ };
89
+
90
+ case _ReactionStatus.ReactionStatus.error:
91
+ return {
92
+ status: _ReactionStatus.ReactionStatus.error,
93
+ reactions: []
94
+ };
95
+
96
+ default:
97
+ return {
98
+ status: _ReactionStatus.ReactionStatus.loading,
99
+ reactions: []
100
+ };
101
+ }
102
+ };
103
+
104
+ var actionsMapper = function actionsMapper(actions) {
105
+ return {
106
+ loadReaction: function loadReaction() {
107
+ actions.getReactions(props.containerAri, props.ari);
108
+ },
109
+ onReactionClick: function onReactionClick(emojiId) {
110
+ actions.toggleReaction(props.containerAri, props.ari, emojiId);
111
+ },
112
+ onReactionHover: function onReactionHover(emojiId) {
113
+ actions.getDetailedReaction(props.containerAri, props.ari, emojiId);
114
+ },
115
+ onSelection: function onSelection(emojiId) {
116
+ actions.addReaction(props.containerAri, props.ari, emojiId);
117
+ }
118
+ };
119
+ };
120
+
121
+ return /*#__PURE__*/_react.default.createElement(_components.UfoErrorBoundary, {
122
+ experiences: experienceInstance.current ? [experienceInstance.current] : []
123
+ }, /*#__PURE__*/_react.default.createElement(_ReactionConsumer.ReactionConsumer, {
124
+ store: props.store,
125
+ actionsMapper: actionsMapper,
126
+ stateMapper: stateMapper
127
+ }, renderChildren));
128
+ };
129
+
130
+ var ConnectedReactionsView = (0, _analyticsNext.withAnalyticsEvents)()(ReactionsView);
131
+ exports.ConnectedReactionsView = ConnectedReactionsView;
@@ -1,23 +1,21 @@
1
1
  "use strict";
2
2
 
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
3
  Object.defineProperty(exports, "__esModule", {
6
4
  value: true
7
5
  });
8
6
  Object.defineProperty(exports, "ConnectedReactionPicker", {
9
7
  enumerable: true,
10
8
  get: function get() {
11
- return _ReactionsPickerContainer.default;
9
+ return _ConnectedReactionPicker.ConnectedReactionPicker;
12
10
  }
13
11
  });
14
12
  Object.defineProperty(exports, "ConnectedReactionsView", {
15
13
  enumerable: true,
16
14
  get: function get() {
17
- return _ReactionsContainer.default;
15
+ return _ConnectedReactionsView.ConnectedReactionsView;
18
16
  }
19
17
  });
20
18
 
21
- var _ReactionsPickerContainer = _interopRequireDefault(require("./ReactionsPickerContainer"));
19
+ var _ConnectedReactionPicker = require("./ConnectedReactionPicker");
22
20
 
23
- var _ReactionsContainer = _interopRequireDefault(require("./ReactionsContainer"));
21
+ var _ConnectedReactionsView = require("./ConnectedReactionsView");
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Czech
14
+ //Czech
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Něco se pokazilo',
17
17
  'fabric.reactions.loading': 'Načítání...',
18
- 'fabric.reactions.more.emoji': 'Více emoji'
18
+ 'fabric.reactions.more.emoji': 'Více emoji',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, one {a jeden další} few {a {count} další} many {a {count} dalšího} other {a {count} dalších}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Danish
14
+ //Danish (Denmark)
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Noget gik galt',
17
17
  'fabric.reactions.loading': 'Indlæser ...',
18
- 'fabric.reactions.more.emoji': 'Flere emoji'
18
+ 'fabric.reactions.more.emoji': 'Flere emoji',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, one {og én anden} other {og {count} andre}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // German
14
+ //German (Germany)
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Irgendetwas ist schiefgelaufen',
17
17
  'fabric.reactions.loading': 'Wird geladen...',
18
- 'fabric.reactions.more.emoji': 'Mehr Emojis'
18
+ 'fabric.reactions.more.emoji': 'Mehr Emojis',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, one {und ein weiterer} other {und {count} weitere}}'
19
20
  };
20
21
  exports.default = _default;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+
8
+ /**
9
+ * NOTE:
10
+ *
11
+ * This file is automatically generated by Traduki 2.0.
12
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
+ */
14
+ //
15
+ var _default = {
16
+ 'fabric.reactions.error.unexpected': '⁣⁢Something went wrong‍‌؜؜‌‌⁠‍⁣⁤',
17
+ 'fabric.reactions.loading': '⁣⁢Loading...⁡؜؜؜‌⁣⁤',
18
+ 'fabric.reactions.more.emoji': '⁣⁢More emoji‍⁠⁠⁡؜‌⁠⁡⁠⁣⁤',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, one {⁣⁢and one other‍⁠؜⁠⁡‌⁠⁠⁠⁣⁤} other {⁣⁢and {count} others‍⁠؜⁠⁡‌⁠⁠⁠⁣⁤}}'
20
+ };
21
+ exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Spanish
14
+ //Spanish (International)
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Algo ha fallado',
17
17
  'fabric.reactions.loading': 'Cargando...',
18
- 'fabric.reactions.more.emoji': 'Más emojis'
18
+ 'fabric.reactions.more.emoji': 'Más emojis',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, one {y 1 más} other {y {count} más}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,10 +8,10 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Estonian
14
+ //Estonian
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Midagi läks nässu',
17
17
  'fabric.reactions.loading': 'Laadimine...',
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Finnish
14
+ //Finnish
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Jotain meni pieleen',
17
17
  'fabric.reactions.loading': 'Ladataan...',
18
- 'fabric.reactions.more.emoji': 'Lisää emojeita'
18
+ 'fabric.reactions.more.emoji': 'Lisää emojeita',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, one {ja yksi muu} other {ja {count} muuta}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // French
14
+ //French (France)
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Une erreur est survenue',
17
17
  'fabric.reactions.loading': 'Chargement…',
18
- 'fabric.reactions.more.emoji': "Plus d'emoticônes"
18
+ 'fabric.reactions.more.emoji': "Plus d'emoticônes",
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, one {et 1 autre} other {et {count} autres}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Hungarian
14
+ //Hungarian
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Valami hiba történt',
17
17
  'fabric.reactions.loading': 'Betöltés...',
18
- 'fabric.reactions.more.emoji': 'Még több emoji'
18
+ 'fabric.reactions.more.emoji': 'Még több emoji',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, one {és egy másik} other {és {count} másik}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Italian
14
+ //Italian (Italy)
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Si è verificato un errore',
17
17
  'fabric.reactions.loading': 'Caricamento in corso...',
18
- 'fabric.reactions.more.emoji': 'Altre emoji'
18
+ 'fabric.reactions.more.emoji': 'Altre emoji',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, one {e un altro} other {e altri {count}}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Japanese
14
+ //Japanese
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'エラーが発生しました',
17
17
  'fabric.reactions.loading': '読み込んでいます...',
18
- 'fabric.reactions.more.emoji': 'その他の絵文字'
18
+ 'fabric.reactions.more.emoji': 'その他の絵文字',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, other {、他 {count} 人}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Korean
14
+ //Korean
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': '문제가 발생했습니다',
17
17
  'fabric.reactions.loading': '로드 중…',
18
- 'fabric.reactions.more.emoji': '더 많은 이모지'
18
+ 'fabric.reactions.more.emoji': '더 많은 이모지',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, other {및 그 외 {count}명}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Norwegian Bokmål
14
+ //Norwegian (Bokmål)
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Det oppsto en feil',
17
17
  'fabric.reactions.loading': 'Laster inn …',
18
- 'fabric.reactions.more.emoji': 'Flere emoji-er'
18
+ 'fabric.reactions.more.emoji': 'Flere emoji-er',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, one {og én annen} other {og {count} andre}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Dutch
14
+ //Dutch (Netherlands)
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Er is iets misgegaan',
17
17
  'fabric.reactions.loading': 'Bezig met laden…',
18
- 'fabric.reactions.more.emoji': 'Meer emoji'
18
+ 'fabric.reactions.more.emoji': 'Meer emoji',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, one {en één andere} other {en {count} andere}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Polish
14
+ //Polish (Poland)
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Coś poszło nie tak',
17
17
  'fabric.reactions.loading': 'Ładowanie...',
18
- 'fabric.reactions.more.emoji': 'Więcej emoji'
18
+ 'fabric.reactions.more.emoji': 'Więcej emoji',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, one {i jeszcze 1} few {i jeszcze {count}} many {i jeszcze {count}} other {i jeszcze {count}}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Portuguese (Brazil)
14
+ //Portuguese (Brazil)
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Algo deu errado',
17
17
  'fabric.reactions.loading': 'Carregando...',
18
- 'fabric.reactions.more.emoji': 'Mais emojis'
18
+ 'fabric.reactions.more.emoji': 'Mais emojis',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, one {e mais um} other {e mais {count}}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,10 +8,10 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Portuguese (Portugal)
14
+ //Portuguese (Portugal)
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Ocorreu um erro',
17
17
  'fabric.reactions.loading': 'A carregar...',
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Russian
14
+ //Russian
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Произошла ошибка',
17
17
  'fabric.reactions.loading': 'Загрузка…',
18
- 'fabric.reactions.more.emoji': 'Другие эмодзи'
18
+ 'fabric.reactions.more.emoji': 'Другие эмодзи',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, one {и еще один} few {и еще {count}} many {и еще {count}} other {и еще {count}}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,10 +8,10 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Slovak
14
+ //Slovak
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Niečo sa nepodarilo',
17
17
  'fabric.reactions.loading': 'Načítava sa...',
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Swedish
14
+ //Swedish
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Något gick fel',
17
17
  'fabric.reactions.loading': 'Läser in ...',
18
- 'fabric.reactions.more.emoji': 'Fler emoji'
18
+ 'fabric.reactions.more.emoji': 'Fler emoji',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, one {och en annan} other {och {count} andra}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Thai
14
+ //Thai (Thailand)
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'มีข้อผิดพลาดบางอย่างเกิดขึ้น',
17
17
  'fabric.reactions.loading': 'กำลังโหลด...',
18
- 'fabric.reactions.more.emoji': 'เอโมจิเพิ่มเติม'
18
+ 'fabric.reactions.more.emoji': 'เอโมจิเพิ่มเติม',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, other {และคนอื่น ๆ อีก {count} คน}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Turkish
14
+ //Turkish (Turkey)
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Bir hata oluştu',
17
17
  'fabric.reactions.loading': 'Yükleniyor...',
18
- 'fabric.reactions.more.emoji': 'Daha fazla emoji'
18
+ 'fabric.reactions.more.emoji': 'Daha fazla emoji',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, one {ve bir kişi daha} other {ve {count} kişi daha}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Ukrainian
14
+ //Ukrainian (Ukraine)
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Щось пішло не так',
17
17
  'fabric.reactions.loading': 'Завантаження...',
18
- 'fabric.reactions.more.emoji': 'Інші емодзі'
18
+ 'fabric.reactions.more.emoji': 'Інші емодзі',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, one {і ще {count} особа} few {і ще {count} особи} many {і ще {count} осіб} other {і ще {count} особи}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Vietnamese
14
+ //Vietnamese (Vietnam)
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': 'Đã xảy ra lỗi',
17
17
  'fabric.reactions.loading': 'Đang tải...',
18
- 'fabric.reactions.more.emoji': 'Biểu tượng cảm xúc khác'
18
+ 'fabric.reactions.more.emoji': 'Biểu tượng cảm xúc khác',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, other {và {count} người khác}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // Chinese
14
+ //Chinese (Simplified)
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': '出错了',
17
17
  'fabric.reactions.loading': '正在加载...',
18
- 'fabric.reactions.more.emoji': '更多表情符号'
18
+ 'fabric.reactions.more.emoji': '更多表情符号',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, other {以及其他 {count} 个人}}'
19
20
  };
20
21
  exports.default = _default;
@@ -8,13 +8,14 @@ exports.default = void 0;
8
8
  /**
9
9
  * NOTE:
10
10
  *
11
- * This file is automatically generated by i18n-tools.
11
+ * This file is automatically generated by Traduki 2.0.
12
12
  * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
13
  */
14
- // undefined
14
+ //Chinese (Traditional)
15
15
  var _default = {
16
16
  'fabric.reactions.error.unexpected': '發生問題',
17
17
  'fabric.reactions.loading': '正在載入...',
18
- 'fabric.reactions.more.emoji': '更多表情符號'
18
+ 'fabric.reactions.more.emoji': '更多表情符號',
19
+ 'fabric.reactions.other.reacted.users': '{count, plural, other {還有其他 {count} 個}}'
19
20
  };
20
21
  exports.default = _default;