@atlaskit/emoji 65.2.0 → 65.2.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.
- package/CHANGELOG.md +6 -0
- package/admin/package.json +8 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types-ts4.0/admin.d.ts +1 -0
- package/dist/types-ts4.0/api/EmojiLoader.d.ts +13 -0
- package/dist/types-ts4.0/api/EmojiRepository.d.ts +72 -0
- package/dist/types-ts4.0/api/EmojiRepositoryRegex.d.ts +1 -0
- package/dist/types-ts4.0/api/EmojiResource.d.ts +123 -0
- package/dist/types-ts4.0/api/EmojiUtils.d.ts +24 -0
- package/dist/types-ts4.0/api/internal/Comparators.d.ts +109 -0
- package/dist/types-ts4.0/api/internal/UsageFrequencyTracker.d.ts +46 -0
- package/dist/types-ts4.0/api/media/MediaEmojiCache.d.ts +53 -0
- package/dist/types-ts4.0/api/media/MediaImageLoader.d.ts +21 -0
- package/dist/types-ts4.0/api/media/SiteEmojiResource.d.ts +46 -0
- package/dist/types-ts4.0/api/media/TokenManager.d.ts +13 -0
- package/dist/types-ts4.0/components/common/CachingEmoji.d.ts +20 -0
- package/dist/types-ts4.0/components/common/DeleteButton.d.ts +4 -0
- package/dist/types-ts4.0/components/common/Emoji.d.ts +56 -0
- package/dist/types-ts4.0/components/common/EmojiActions.d.ts +31 -0
- package/dist/types-ts4.0/components/common/EmojiButton.d.ts +12 -0
- package/dist/types-ts4.0/components/common/EmojiDeletePreview.d.ts +20 -0
- package/dist/types-ts4.0/components/common/EmojiErrorMessage.d.ts +10 -0
- package/dist/types-ts4.0/components/common/EmojiImage.d.ts +13 -0
- package/dist/types-ts4.0/components/common/EmojiPlaceholder.d.ts +11 -0
- package/dist/types-ts4.0/components/common/EmojiPreviewComponent.d.ts +7 -0
- package/dist/types-ts4.0/components/common/EmojiUploadPicker.d.ts +17 -0
- package/dist/types-ts4.0/components/common/EmojiUploadPreview.d.ts +16 -0
- package/dist/types-ts4.0/components/common/FileChooser.d.ts +11 -0
- package/dist/types-ts4.0/components/common/LoadingEmojiComponent.d.ts +32 -0
- package/dist/types-ts4.0/components/common/Popup.d.ts +12 -0
- package/dist/types-ts4.0/components/common/RecordSelectionDefault.d.ts +12 -0
- package/dist/types-ts4.0/components/common/ResourcedEmoji.d.ts +18 -0
- package/dist/types-ts4.0/components/common/ResourcedEmojiComponent.d.ts +48 -0
- package/dist/types-ts4.0/components/common/RetryableButton.d.ts +10 -0
- package/dist/types-ts4.0/components/common/Scrollable.d.ts +19 -0
- package/dist/types-ts4.0/components/common/ToneSelector.d.ts +12 -0
- package/dist/types-ts4.0/components/common/UfoErrorBoundary.d.ts +8 -0
- package/dist/types-ts4.0/components/common/UploadEmoji.d.ts +5 -0
- package/dist/types-ts4.0/components/common/internal-types.d.ts +11 -0
- package/dist/types-ts4.0/components/common/setSkinToneAriaLabelText.d.ts +1 -0
- package/dist/types-ts4.0/components/common/styles.d.ts +49 -0
- package/dist/types-ts4.0/components/hooks.d.ts +1 -0
- package/dist/types-ts4.0/components/i18n.d.ts +172 -0
- package/dist/types-ts4.0/components/picker/CategorySelector.d.ts +21 -0
- package/dist/types-ts4.0/components/picker/CategoryTracker.d.ts +17 -0
- package/dist/types-ts4.0/components/picker/EmojiPicker.d.ts +32 -0
- package/dist/types-ts4.0/components/picker/EmojiPickerCategoryHeading.d.ts +8 -0
- package/dist/types-ts4.0/components/picker/EmojiPickerComponent.d.ts +28 -0
- package/dist/types-ts4.0/components/picker/EmojiPickerEmojiRow.d.ts +12 -0
- package/dist/types-ts4.0/components/picker/EmojiPickerFooter.d.ts +7 -0
- package/dist/types-ts4.0/components/picker/EmojiPickerList.d.ts +72 -0
- package/dist/types-ts4.0/components/picker/EmojiPickerListSearch.d.ts +12 -0
- package/dist/types-ts4.0/components/picker/EmojiPickerSizes.d.ts +11 -0
- package/dist/types-ts4.0/components/picker/EmojiPickerVirtualItems.d.ts +41 -0
- package/dist/types-ts4.0/components/picker/categories.d.ts +7 -0
- package/dist/types-ts4.0/components/picker/styles.d.ts +18 -0
- package/dist/types-ts4.0/components/typeahead/EmojiTypeAhead.d.ts +27 -0
- package/dist/types-ts4.0/components/typeahead/EmojiTypeAheadComponent.d.ts +72 -0
- package/dist/types-ts4.0/components/typeahead/EmojiTypeAheadItem.d.ts +14 -0
- package/dist/types-ts4.0/components/typeahead/EmojiTypeAheadList.d.ts +35 -0
- package/dist/types-ts4.0/components/typeahead/styles.d.ts +10 -0
- package/dist/types-ts4.0/components/uploader/EmojiUploadComponent.d.ts +13 -0
- package/dist/types-ts4.0/components/uploader/EmojiUploader.d.ts +20 -0
- package/dist/types-ts4.0/components/uploader/styles.d.ts +2 -0
- package/dist/types-ts4.0/context/EmojiContext.d.ts +4 -0
- package/dist/types-ts4.0/context/EmojiContextProvider.d.ts +7 -0
- package/dist/types-ts4.0/context/LegacyEmojiContextProvider.d.ts +22 -0
- package/dist/types-ts4.0/element.d.ts +3 -0
- package/dist/types-ts4.0/hooks/useEmojiContext.d.ts +1 -0
- package/dist/types-ts4.0/hooks/usePrevious.d.ts +1 -0
- package/dist/types-ts4.0/i18n/cs.d.ts +43 -0
- package/dist/types-ts4.0/i18n/da.d.ts +43 -0
- package/dist/types-ts4.0/i18n/de.d.ts +43 -0
- package/dist/types-ts4.0/i18n/en.d.ts +33 -0
- package/dist/types-ts4.0/i18n/en_GB.d.ts +33 -0
- package/dist/types-ts4.0/i18n/en_ZZ.d.ts +43 -0
- package/dist/types-ts4.0/i18n/es.d.ts +43 -0
- package/dist/types-ts4.0/i18n/et.d.ts +39 -0
- package/dist/types-ts4.0/i18n/fi.d.ts +43 -0
- package/dist/types-ts4.0/i18n/fr.d.ts +43 -0
- package/dist/types-ts4.0/i18n/hu.d.ts +43 -0
- package/dist/types-ts4.0/i18n/index.d.ts +35 -0
- package/dist/types-ts4.0/i18n/is.d.ts +33 -0
- package/dist/types-ts4.0/i18n/it.d.ts +43 -0
- package/dist/types-ts4.0/i18n/ja.d.ts +43 -0
- package/dist/types-ts4.0/i18n/ko.d.ts +43 -0
- package/dist/types-ts4.0/i18n/languages.d.ts +27 -0
- package/dist/types-ts4.0/i18n/nb.d.ts +43 -0
- package/dist/types-ts4.0/i18n/nl.d.ts +43 -0
- package/dist/types-ts4.0/i18n/pl.d.ts +43 -0
- package/dist/types-ts4.0/i18n/pt_BR.d.ts +43 -0
- package/dist/types-ts4.0/i18n/pt_PT.d.ts +39 -0
- package/dist/types-ts4.0/i18n/ro.d.ts +33 -0
- package/dist/types-ts4.0/i18n/ru.d.ts +43 -0
- package/dist/types-ts4.0/i18n/sk.d.ts +39 -0
- package/dist/types-ts4.0/i18n/sv.d.ts +43 -0
- package/dist/types-ts4.0/i18n/th.d.ts +43 -0
- package/dist/types-ts4.0/i18n/tr.d.ts +43 -0
- package/dist/types-ts4.0/i18n/uk.d.ts +43 -0
- package/dist/types-ts4.0/i18n/vi.d.ts +43 -0
- package/dist/types-ts4.0/i18n/zh.d.ts +43 -0
- package/dist/types-ts4.0/i18n/zh_TW.d.ts +43 -0
- package/dist/types-ts4.0/index.d.ts +25 -0
- package/dist/types-ts4.0/picker.d.ts +1 -0
- package/dist/types-ts4.0/resource.d.ts +5 -0
- package/dist/types-ts4.0/typeahead.d.ts +2 -0
- package/dist/types-ts4.0/types.d.ts +351 -0
- package/dist/types-ts4.0/util/DuplicateLimitedQueue.d.ts +91 -0
- package/dist/types-ts4.0/util/StoredDuplicateLimitedQueue.d.ts +46 -0
- package/dist/types-ts4.0/util/analytics/analytics.d.ts +61 -0
- package/dist/types-ts4.0/util/analytics/index.d.ts +6 -0
- package/dist/types-ts4.0/util/analytics/samplingUfo.d.ts +31 -0
- package/dist/types-ts4.0/util/analytics/ufoExperiences.d.ts +14 -0
- package/dist/types-ts4.0/util/analytics/useSampledUFOComponentExperience.d.ts +8 -0
- package/dist/types-ts4.0/util/browser-support.d.ts +1 -0
- package/dist/types-ts4.0/util/constants.d.ts +25 -0
- package/dist/types-ts4.0/util/filters.d.ts +8 -0
- package/dist/types-ts4.0/util/image.d.ts +10 -0
- package/dist/types-ts4.0/util/logger.d.ts +4 -0
- package/dist/types-ts4.0/util/mouse.d.ts +8 -0
- package/dist/types-ts4.0/util/shared-styles.d.ts +11 -0
- package/dist/types-ts4.0/util/storage-available.d.ts +3 -0
- package/dist/types-ts4.0/util/type-helpers.d.ts +23 -0
- package/dist/types-ts4.0/util/useInView.d.ts +7 -0
- package/dist/types-ts4.0/utils.d.ts +3 -0
- package/element/package.json +8 -1
- package/package.json +14 -7
- package/picker/package.json +8 -1
- package/resource/package.json +8 -1
- package/typeahead/package.json +8 -1
- package/types/package.json +8 -1
- package/utils/package.json +8 -1
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.delete.title': string;
|
|
3
|
+
'fabric.emoji.delete.description': string;
|
|
4
|
+
'fabric.emoji.delete.label': string;
|
|
5
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
6
|
+
'fabric.emoji.placeholder': string;
|
|
7
|
+
'fabric.emoji.choose.file.title': string;
|
|
8
|
+
'fabric.emoji.image.requirements': string;
|
|
9
|
+
'fabric.emoji.preview.title': string;
|
|
10
|
+
'fabric.emoji.preview': string;
|
|
11
|
+
'fabric.emoji.add.label': string;
|
|
12
|
+
'fabric.emoji.retry.label': string;
|
|
13
|
+
'fabric.emoji.cancel.label': string;
|
|
14
|
+
'fabric.emoji.search.label': string;
|
|
15
|
+
'fabric.emoji.categories.search.results': string;
|
|
16
|
+
'fabric.emoji.category.frequent': string;
|
|
17
|
+
'fabric.emoji.category.people': string;
|
|
18
|
+
'fabric.emoji.category.nature': string;
|
|
19
|
+
'fabric.emoji.category.foods': string;
|
|
20
|
+
'fabric.emoji.category.activity': string;
|
|
21
|
+
'fabric.emoji.category.places': string;
|
|
22
|
+
'fabric.emoji.category.objects': string;
|
|
23
|
+
'fabric.emoji.category.symbols': string;
|
|
24
|
+
'fabric.emoji.category.flags': string;
|
|
25
|
+
'fabric.emoji.category.productivity': string;
|
|
26
|
+
'fabric.emoji.category.user.uploads': string;
|
|
27
|
+
'fabric.emoji.category.all.uploads': string;
|
|
28
|
+
'fabric.emoji.error.delete.failed': string;
|
|
29
|
+
'fabric.emoji.error.invalid.image': string;
|
|
30
|
+
'fabric.emoji.error.upload.failed': string;
|
|
31
|
+
'fabric.emoji.error.image.too.big': string;
|
|
32
|
+
};
|
|
33
|
+
export default _default;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.delete.title': string;
|
|
3
|
+
'fabric.emoji.delete.description': string;
|
|
4
|
+
'fabric.emoji.delete.label': string;
|
|
5
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
6
|
+
'fabric.emoji.placeholder': string;
|
|
7
|
+
'fabric.emoji.choose.file.title': string;
|
|
8
|
+
'fabric.emoji.image.requirements': string;
|
|
9
|
+
'fabric.emoji.preview.title': string;
|
|
10
|
+
'fabric.emoji.preview': string;
|
|
11
|
+
'fabric.emoji.add.label': string;
|
|
12
|
+
'fabric.emoji.retry.label': string;
|
|
13
|
+
'fabric.emoji.cancel.label': string;
|
|
14
|
+
'fabric.emoji.search.label': string;
|
|
15
|
+
'fabric.emoji.categories.search.results': string;
|
|
16
|
+
'fabric.emoji.category.frequent': string;
|
|
17
|
+
'fabric.emoji.category.people': string;
|
|
18
|
+
'fabric.emoji.category.nature': string;
|
|
19
|
+
'fabric.emoji.category.foods': string;
|
|
20
|
+
'fabric.emoji.category.activity': string;
|
|
21
|
+
'fabric.emoji.category.places': string;
|
|
22
|
+
'fabric.emoji.category.objects': string;
|
|
23
|
+
'fabric.emoji.category.symbols': string;
|
|
24
|
+
'fabric.emoji.category.flags': string;
|
|
25
|
+
'fabric.emoji.category.productivity': string;
|
|
26
|
+
'fabric.emoji.category.user.uploads': string;
|
|
27
|
+
'fabric.emoji.category.all.uploads': string;
|
|
28
|
+
'fabric.emoji.error.delete.failed': string;
|
|
29
|
+
'fabric.emoji.error.invalid.image': string;
|
|
30
|
+
'fabric.emoji.error.upload.failed': string;
|
|
31
|
+
'fabric.emoji.error.image.too.big': string;
|
|
32
|
+
};
|
|
33
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.title': string;
|
|
19
|
+
'fabric.emoji.delete.description': string;
|
|
20
|
+
'fabric.emoji.delete.label': string;
|
|
21
|
+
'fabric.emoji.delete.title': string;
|
|
22
|
+
'fabric.emoji.error.delete.failed': string;
|
|
23
|
+
'fabric.emoji.error.image.too.big': string;
|
|
24
|
+
'fabric.emoji.error.invalid.image': string;
|
|
25
|
+
'fabric.emoji.error.upload.failed': string;
|
|
26
|
+
'fabric.emoji.image.requirements': string;
|
|
27
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
28
|
+
'fabric.emoji.placeholder': string;
|
|
29
|
+
'fabric.emoji.preview': string;
|
|
30
|
+
'fabric.emoji.preview.title': string;
|
|
31
|
+
'fabric.emoji.retry.label': string;
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* NOTE:
|
|
35
|
+
*
|
|
36
|
+
* This file is automatically generated by Traduki 2.0.
|
|
37
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
38
|
+
*/
|
|
39
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by i18n-tools.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
export { default as zh } from './zh';
|
|
8
|
+
export { default as zh_TW } from './zh_TW';
|
|
9
|
+
export { default as cs } from './cs';
|
|
10
|
+
export { default as da } from './da';
|
|
11
|
+
export { default as nl } from './nl';
|
|
12
|
+
export { default as et } from './et';
|
|
13
|
+
export { default as fi } from './fi';
|
|
14
|
+
export { default as fr } from './fr';
|
|
15
|
+
export { default as de } from './de';
|
|
16
|
+
export { default as hu } from './hu';
|
|
17
|
+
export { default as it } from './it';
|
|
18
|
+
export { default as ja } from './ja';
|
|
19
|
+
export { default as ko } from './ko';
|
|
20
|
+
export { default as nb } from './nb';
|
|
21
|
+
export { default as pl } from './pl';
|
|
22
|
+
export { default as pt_BR } from './pt_BR';
|
|
23
|
+
export { default as pt_PT } from './pt_PT';
|
|
24
|
+
export { default as ru } from './ru';
|
|
25
|
+
export { default as sk } from './sk';
|
|
26
|
+
export { default as es } from './es';
|
|
27
|
+
export { default as sv } from './sv';
|
|
28
|
+
export { default as th } from './th';
|
|
29
|
+
export { default as tr } from './tr';
|
|
30
|
+
export { default as uk } from './uk';
|
|
31
|
+
export { default as vi } from './vi';
|
|
32
|
+
export { default as en } from './en';
|
|
33
|
+
export { default as en_GB } from './en_GB';
|
|
34
|
+
export { default as is } from './is';
|
|
35
|
+
export { default as ro } from './ro';
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.delete.title': string;
|
|
3
|
+
'fabric.emoji.delete.description': string;
|
|
4
|
+
'fabric.emoji.delete.label': string;
|
|
5
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
6
|
+
'fabric.emoji.placeholder': string;
|
|
7
|
+
'fabric.emoji.choose.file.title': string;
|
|
8
|
+
'fabric.emoji.image.requirements': string;
|
|
9
|
+
'fabric.emoji.preview.title': string;
|
|
10
|
+
'fabric.emoji.preview': string;
|
|
11
|
+
'fabric.emoji.add.label': string;
|
|
12
|
+
'fabric.emoji.retry.label': string;
|
|
13
|
+
'fabric.emoji.cancel.label': string;
|
|
14
|
+
'fabric.emoji.search.label': string;
|
|
15
|
+
'fabric.emoji.categories.search.results': string;
|
|
16
|
+
'fabric.emoji.category.frequent': string;
|
|
17
|
+
'fabric.emoji.category.people': string;
|
|
18
|
+
'fabric.emoji.category.nature': string;
|
|
19
|
+
'fabric.emoji.category.foods': string;
|
|
20
|
+
'fabric.emoji.category.activity': string;
|
|
21
|
+
'fabric.emoji.category.places': string;
|
|
22
|
+
'fabric.emoji.category.objects': string;
|
|
23
|
+
'fabric.emoji.category.symbols': string;
|
|
24
|
+
'fabric.emoji.category.flags': string;
|
|
25
|
+
'fabric.emoji.category.productivity': string;
|
|
26
|
+
'fabric.emoji.category.user.uploads': string;
|
|
27
|
+
'fabric.emoji.category.all.uploads': string;
|
|
28
|
+
'fabric.emoji.error.delete.failed': string;
|
|
29
|
+
'fabric.emoji.error.invalid.image': string;
|
|
30
|
+
'fabric.emoji.error.upload.failed': string;
|
|
31
|
+
'fabric.emoji.error.image.too.big': string;
|
|
32
|
+
};
|
|
33
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
zh: string;
|
|
3
|
+
cs: string;
|
|
4
|
+
da: string;
|
|
5
|
+
nl: string;
|
|
6
|
+
en: string;
|
|
7
|
+
en_GB: string;
|
|
8
|
+
et: string;
|
|
9
|
+
fi: string;
|
|
10
|
+
fr: string;
|
|
11
|
+
de: string;
|
|
12
|
+
hu: string;
|
|
13
|
+
is: string;
|
|
14
|
+
it: string;
|
|
15
|
+
ja: string;
|
|
16
|
+
ko: string;
|
|
17
|
+
nb: string;
|
|
18
|
+
pl: string;
|
|
19
|
+
pt_BR: string;
|
|
20
|
+
pt_PT: string;
|
|
21
|
+
ro: string;
|
|
22
|
+
ru: string;
|
|
23
|
+
sk: string;
|
|
24
|
+
es: string;
|
|
25
|
+
sv: string;
|
|
26
|
+
};
|
|
27
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fabric.emoji.add.custom.emoji.label': string;
|
|
3
|
+
'fabric.emoji.add.label': string;
|
|
4
|
+
'fabric.emoji.cancel.label': string;
|
|
5
|
+
'fabric.emoji.categories.search.results': string;
|
|
6
|
+
'fabric.emoji.category.activity': string;
|
|
7
|
+
'fabric.emoji.category.all.uploads': string;
|
|
8
|
+
'fabric.emoji.category.flags': string;
|
|
9
|
+
'fabric.emoji.category.foods': string;
|
|
10
|
+
'fabric.emoji.category.frequent': string;
|
|
11
|
+
'fabric.emoji.category.nature': string;
|
|
12
|
+
'fabric.emoji.category.objects': string;
|
|
13
|
+
'fabric.emoji.category.people': string;
|
|
14
|
+
'fabric.emoji.category.places': string;
|
|
15
|
+
'fabric.emoji.category.productivity': string;
|
|
16
|
+
'fabric.emoji.category.symbols': string;
|
|
17
|
+
'fabric.emoji.category.user.uploads': string;
|
|
18
|
+
'fabric.emoji.choose.file.screenReaderDescription': string;
|
|
19
|
+
'fabric.emoji.choose.file.title': string;
|
|
20
|
+
'fabric.emoji.delete.description': string;
|
|
21
|
+
'fabric.emoji.delete.label': string;
|
|
22
|
+
'fabric.emoji.delete.title': string;
|
|
23
|
+
'fabric.emoji.error.delete.failed': string;
|
|
24
|
+
'fabric.emoji.error.image.too.big': string;
|
|
25
|
+
'fabric.emoji.error.invalid.image': string;
|
|
26
|
+
'fabric.emoji.error.upload.failed': string;
|
|
27
|
+
'fabric.emoji.image.requirements': string;
|
|
28
|
+
'fabric.emoji.name.ariaLabel': string;
|
|
29
|
+
'fabric.emoji.placeholder': string;
|
|
30
|
+
'fabric.emoji.preview': string;
|
|
31
|
+
'fabric.emoji.preview.title': string;
|
|
32
|
+
'fabric.emoji.retry.label': string;
|
|
33
|
+
'fabric.emoji.search.label': string;
|
|
34
|
+
'fabric.emoji.search.placeholder': string;
|
|
35
|
+
'fabric.emoji.select.skin.tone.ariaLabel': string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* NOTE:
|
|
39
|
+
*
|
|
40
|
+
* This file is automatically generated by Traduki 2.0.
|
|
41
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
42
|
+
*/
|
|
43
|
+
export default _default;
|