@atlaskit/emoji 67.3.2 → 67.4.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 +16 -0
- package/admin/package.json +2 -2
- package/dist/cjs/api/EmojiResource.js +192 -203
- package/dist/cjs/api/media/SiteEmojiResource.js +27 -30
- package/dist/cjs/components/common/EmojiUploadPicker.js +23 -23
- package/dist/cjs/components/common/ResourcedEmoji.js +1 -1
- package/dist/cjs/components/common/ResourcedEmojiComponent.js +51 -53
- package/dist/cjs/components/common/Scrollable.js +2 -1
- package/dist/cjs/components/common/UfoErrorBoundary.js +1 -1
- package/dist/cjs/components/common/internal-types.js +4 -4
- package/dist/cjs/components/picker/EmojiPicker.js +3 -4
- package/dist/cjs/components/picker/EmojiPickerList.js +11 -13
- package/dist/cjs/components/typeahead/EmojiTypeAhead.js +3 -4
- package/dist/cjs/components/typeahead/EmojiTypeAheadComponent.js +1 -1
- package/dist/cjs/components/typeahead/EmojiTypeAheadItem.js +2 -1
- package/dist/cjs/components/typeahead/EmojiTypeAheadList.js +1 -2
- package/dist/cjs/components/uploader/EmojiUploadComponent.js +41 -42
- package/dist/cjs/components/uploader/EmojiUploader.js +3 -4
- package/dist/cjs/context/EmojiContextProvider.js +18 -20
- package/dist/cjs/hooks/useEmoji.js +20 -23
- package/dist/cjs/i18n/cs.js +44 -34
- package/dist/cjs/i18n/da.js +44 -34
- package/dist/cjs/i18n/de.js +44 -34
- package/dist/cjs/i18n/en.js +44 -34
- package/dist/cjs/i18n/en_GB.js +44 -34
- package/dist/cjs/i18n/es.js +44 -34
- package/dist/cjs/i18n/fi.js +44 -34
- package/dist/cjs/i18n/fr.js +44 -34
- package/dist/cjs/i18n/hu.js +44 -34
- package/dist/cjs/i18n/it.js +44 -34
- package/dist/cjs/i18n/ja.js +44 -34
- package/dist/cjs/i18n/ko.js +44 -34
- package/dist/cjs/i18n/nb.js +44 -34
- package/dist/cjs/i18n/nl.js +44 -34
- package/dist/cjs/i18n/pl.js +44 -34
- package/dist/cjs/i18n/pt_BR.js +44 -34
- package/dist/cjs/i18n/ru.js +44 -34
- package/dist/cjs/i18n/sv.js +44 -34
- package/dist/cjs/i18n/th.js +44 -34
- package/dist/cjs/i18n/tr.js +44 -34
- package/dist/cjs/i18n/uk.js +44 -34
- package/dist/cjs/i18n/vi.js +44 -34
- package/dist/cjs/i18n/zh.js +44 -34
- package/dist/cjs/i18n/zh_TW.js +44 -34
- package/dist/cjs/types.js +28 -28
- package/dist/cjs/util/analytics/samplingUfo.js +74 -83
- package/dist/cjs/util/constants.js +8 -8
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/components/common/ResourcedEmojiComponent.js +3 -3
- package/dist/es2019/components/common/Scrollable.js +2 -1
- package/dist/es2019/components/common/internal-types.js +3 -3
- package/dist/es2019/components/picker/EmojiPicker.js +2 -3
- package/dist/es2019/components/picker/EmojiPickerList.js +11 -14
- package/dist/es2019/components/typeahead/EmojiTypeAhead.js +2 -3
- package/dist/es2019/components/typeahead/EmojiTypeAheadItem.js +2 -1
- package/dist/es2019/components/typeahead/EmojiTypeAheadList.js +1 -3
- package/dist/es2019/components/uploader/EmojiUploader.js +2 -3
- package/dist/es2019/i18n/cs.js +44 -34
- package/dist/es2019/i18n/da.js +44 -34
- package/dist/es2019/i18n/de.js +44 -34
- package/dist/es2019/i18n/en.js +44 -34
- package/dist/es2019/i18n/en_GB.js +44 -34
- package/dist/es2019/i18n/es.js +44 -34
- package/dist/es2019/i18n/fi.js +44 -34
- package/dist/es2019/i18n/fr.js +44 -34
- package/dist/es2019/i18n/hu.js +44 -34
- package/dist/es2019/i18n/it.js +44 -34
- package/dist/es2019/i18n/ja.js +44 -34
- package/dist/es2019/i18n/ko.js +44 -34
- package/dist/es2019/i18n/nb.js +44 -34
- package/dist/es2019/i18n/nl.js +44 -34
- package/dist/es2019/i18n/pl.js +44 -34
- package/dist/es2019/i18n/pt_BR.js +44 -34
- package/dist/es2019/i18n/ru.js +44 -34
- package/dist/es2019/i18n/sv.js +44 -34
- package/dist/es2019/i18n/th.js +44 -34
- package/dist/es2019/i18n/tr.js +44 -34
- package/dist/es2019/i18n/uk.js +44 -34
- package/dist/es2019/i18n/vi.js +44 -34
- package/dist/es2019/i18n/zh.js +44 -34
- package/dist/es2019/i18n/zh_TW.js +44 -34
- package/dist/es2019/types.js +21 -21
- package/dist/es2019/util/constants.js +8 -8
- package/dist/es2019/version.json +1 -1
- package/dist/esm/api/EmojiResource.js +192 -203
- package/dist/esm/api/media/SiteEmojiResource.js +27 -30
- package/dist/esm/components/common/EmojiUploadPicker.js +21 -24
- package/dist/esm/components/common/ResourcedEmojiComponent.js +51 -54
- package/dist/esm/components/common/Scrollable.js +2 -1
- package/dist/esm/components/common/UfoErrorBoundary.js +1 -1
- package/dist/esm/components/common/internal-types.js +3 -3
- package/dist/esm/components/picker/EmojiPicker.js +2 -3
- package/dist/esm/components/picker/EmojiPickerList.js +11 -13
- package/dist/esm/components/typeahead/EmojiTypeAhead.js +2 -3
- package/dist/esm/components/typeahead/EmojiTypeAheadComponent.js +1 -1
- package/dist/esm/components/typeahead/EmojiTypeAheadItem.js +2 -1
- package/dist/esm/components/typeahead/EmojiTypeAheadList.js +1 -2
- package/dist/esm/components/uploader/EmojiUploadComponent.js +39 -42
- package/dist/esm/components/uploader/EmojiUploader.js +2 -3
- package/dist/esm/context/EmojiContextProvider.js +18 -21
- package/dist/esm/hooks/useEmoji.js +20 -23
- package/dist/esm/i18n/cs.js +44 -34
- package/dist/esm/i18n/da.js +44 -34
- package/dist/esm/i18n/de.js +44 -34
- package/dist/esm/i18n/en.js +44 -34
- package/dist/esm/i18n/en_GB.js +44 -34
- package/dist/esm/i18n/es.js +44 -34
- package/dist/esm/i18n/fi.js +44 -34
- package/dist/esm/i18n/fr.js +44 -34
- package/dist/esm/i18n/hu.js +44 -34
- package/dist/esm/i18n/it.js +44 -34
- package/dist/esm/i18n/ja.js +44 -34
- package/dist/esm/i18n/ko.js +44 -34
- package/dist/esm/i18n/nb.js +44 -34
- package/dist/esm/i18n/nl.js +44 -34
- package/dist/esm/i18n/pl.js +44 -34
- package/dist/esm/i18n/pt_BR.js +44 -34
- package/dist/esm/i18n/ru.js +44 -34
- package/dist/esm/i18n/sv.js +44 -34
- package/dist/esm/i18n/th.js +44 -34
- package/dist/esm/i18n/tr.js +44 -34
- package/dist/esm/i18n/uk.js +44 -34
- package/dist/esm/i18n/vi.js +44 -34
- package/dist/esm/i18n/zh.js +44 -34
- package/dist/esm/i18n/zh_TW.js +44 -34
- package/dist/esm/types.js +21 -21
- package/dist/esm/util/analytics/samplingUfo.js +74 -83
- package/dist/esm/util/constants.js +8 -8
- package/dist/esm/version.json +1 -1
- package/dist/types/api/EmojiRepository.d.ts +1 -1
- package/dist/types/api/EmojiUtils.d.ts +6 -6
- package/dist/types/api/internal/Comparators.d.ts +1 -1
- package/dist/types/api/media/MediaImageLoader.d.ts +1 -1
- package/dist/types/api/media/TokenManager.d.ts +1 -1
- package/dist/types/components/common/EmojiActions.d.ts +2 -2
- package/dist/types/components/common/EmojiPreviewComponent.d.ts +1 -1
- package/dist/types/components/common/Scrollable.d.ts +1 -1
- package/dist/types/components/common/ToneSelector.d.ts +1 -1
- package/dist/types/components/common/setSkinToneAriaLabelText.d.ts +1 -1
- package/dist/types/components/picker/CategorySelector.d.ts +1 -1
- package/dist/types/components/picker/EmojiPickerVirtualItems.d.ts +1 -1
- package/dist/types/components/picker/VirtualList.d.ts +2 -2
- package/dist/types/components/picker/categories.d.ts +3 -3
- package/dist/types/components/picker/styles.d.ts +1 -1
- package/dist/types/components/typeahead/EmojiTypeAheadComponent.d.ts +1 -1
- package/dist/types/components/uploader/EmojiUploader.d.ts +1 -1
- package/dist/types/context/EmojiContext.d.ts +1 -1
- package/dist/types/context/EmojiContextProvider.d.ts +1 -1
- package/dist/types/hooks/useInView.d.ts +1 -1
- package/dist/types/i18n/cs.d.ts +46 -36
- package/dist/types/i18n/da.d.ts +46 -36
- package/dist/types/i18n/de.d.ts +46 -36
- package/dist/types/i18n/en.d.ts +46 -36
- package/dist/types/i18n/en_GB.d.ts +46 -36
- package/dist/types/i18n/en_ZZ.d.ts +6 -6
- package/dist/types/i18n/es.d.ts +46 -36
- package/dist/types/i18n/et.d.ts +6 -6
- package/dist/types/i18n/fi.d.ts +46 -36
- package/dist/types/i18n/fr.d.ts +46 -36
- package/dist/types/i18n/hu.d.ts +46 -36
- package/dist/types/i18n/it.d.ts +46 -36
- package/dist/types/i18n/ja.d.ts +46 -36
- package/dist/types/i18n/ko.d.ts +46 -36
- package/dist/types/i18n/nb.d.ts +46 -36
- package/dist/types/i18n/nl.d.ts +46 -36
- package/dist/types/i18n/pl.d.ts +46 -36
- package/dist/types/i18n/pt_BR.d.ts +46 -36
- package/dist/types/i18n/pt_PT.d.ts +6 -6
- package/dist/types/i18n/ru.d.ts +46 -36
- package/dist/types/i18n/sk.d.ts +6 -6
- package/dist/types/i18n/sv.d.ts +46 -36
- package/dist/types/i18n/th.d.ts +46 -36
- package/dist/types/i18n/tr.d.ts +46 -36
- package/dist/types/i18n/uk.d.ts +46 -36
- package/dist/types/i18n/vi.d.ts +46 -36
- package/dist/types/i18n/zh.d.ts +46 -36
- package/dist/types/i18n/zh_TW.d.ts +46 -36
- package/dist/types/types.d.ts +10 -10
- package/dist/types/util/analytics/analytics.d.ts +8 -8
- package/dist/types/util/analytics/samplingUfo.d.ts +1 -1
- package/dist/types/util/analytics/useSampledUFOComponentExperience.d.ts +1 -1
- package/dist/types/util/browser-support.d.ts +1 -1
- package/dist/types/util/storage-available.d.ts +1 -1
- package/dist/types/util/type-helpers.d.ts +3 -3
- package/element/package.json +2 -2
- package/package.json +28 -20
- package/picker/package.json +2 -2
- package/resource/package.json +2 -2
- package/typeahead/package.json +2 -2
- package/types/package.json +2 -2
- package/utils/package.json +2 -2
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import _typeof from "@babel/runtime/helpers/typeof";
|
|
2
1
|
import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
|
|
3
|
-
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return exports; }; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, defineProperty = Object.defineProperty || function (obj, key, desc) { obj[key] = desc.value; }, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return defineProperty(generator, "_invoke", { value: makeInvokeMethod(innerFn, self, context) }), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; defineProperty(this, "_invoke", { value: function value(method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return doneResult(); } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; } function maybeInvokeDelegate(delegate, context) { var methodName = context.method, method = delegate.iterator[methodName]; if (undefined === method) return context.delegate = null, "throw" === methodName && delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method) || "return" !== methodName && (context.method = "throw", context.arg = new TypeError("The iterator does not provide a '" + methodName + "' method")), ContinueSentinel; var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) { if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; } return next.value = undefined, next.done = !0, next; }; return next.next = next; } } return { next: doneResult }; } function doneResult() { return { value: undefined, done: !0 }; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, defineProperty(Gp, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), defineProperty(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (val) { var object = Object(val), keys = []; for (var key in object) { keys.push(key); } return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) { "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); } }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, catch: function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; }
|
|
2
|
+
import _regeneratorRuntime from "@babel/runtime/regenerator";
|
|
4
3
|
import React, { useMemo, useEffect } from 'react';
|
|
5
4
|
import { EmojiContext } from './EmojiContext';
|
|
6
5
|
import debug from '../util/logger';
|
|
@@ -16,25 +15,23 @@ export var EmojiContextProvider = function EmojiContextProvider(_ref) {
|
|
|
16
15
|
return _fetchEmojiProvider.apply(this, arguments);
|
|
17
16
|
}
|
|
18
17
|
function _fetchEmojiProvider() {
|
|
19
|
-
_fetchEmojiProvider = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime
|
|
20
|
-
return _regeneratorRuntime
|
|
21
|
-
while (1) {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
return _context.stop();
|
|
37
|
-
}
|
|
18
|
+
_fetchEmojiProvider = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
|
|
19
|
+
return _regeneratorRuntime.wrap(function _callee$(_context) {
|
|
20
|
+
while (1) switch (_context.prev = _context.next) {
|
|
21
|
+
case 0:
|
|
22
|
+
_context.prev = 0;
|
|
23
|
+
_context.next = 3;
|
|
24
|
+
return memoizedEmojiContextValue === null || memoizedEmojiContextValue === void 0 ? void 0 : memoizedEmojiContextValue.emoji.emojiProvider.fetchEmojiProvider();
|
|
25
|
+
case 3:
|
|
26
|
+
_context.next = 8;
|
|
27
|
+
break;
|
|
28
|
+
case 5:
|
|
29
|
+
_context.prev = 5;
|
|
30
|
+
_context.t0 = _context["catch"](0);
|
|
31
|
+
debug('fetchEmojiProvider error catched from outside', _context.t0);
|
|
32
|
+
case 8:
|
|
33
|
+
case "end":
|
|
34
|
+
return _context.stop();
|
|
38
35
|
}
|
|
39
36
|
}, _callee, null, [[0, 5]]);
|
|
40
37
|
}));
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import _typeof from "@babel/runtime/helpers/typeof";
|
|
2
1
|
import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
|
|
3
2
|
import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
4
|
-
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return exports; }; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, defineProperty = Object.defineProperty || function (obj, key, desc) { obj[key] = desc.value; }, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return defineProperty(generator, "_invoke", { value: makeInvokeMethod(innerFn, self, context) }), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; defineProperty(this, "_invoke", { value: function value(method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return doneResult(); } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; } function maybeInvokeDelegate(delegate, context) { var methodName = context.method, method = delegate.iterator[methodName]; if (undefined === method) return context.delegate = null, "throw" === methodName && delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method) || "return" !== methodName && (context.method = "throw", context.arg = new TypeError("The iterator does not provide a '" + methodName + "' method")), ContinueSentinel; var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) { if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; } return next.value = undefined, next.done = !0, next; }; return next.next = next; } } return { next: doneResult }; } function doneResult() { return { value: undefined, done: !0 }; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, defineProperty(Gp, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), defineProperty(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (val) { var object = Object(val), keys = []; for (var key in object) { keys.push(key); } return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) { "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); } }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, catch: function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; }
|
|
3
|
+
import _regeneratorRuntime from "@babel/runtime/regenerator";
|
|
5
4
|
import { useContext, useEffect, useState } from 'react';
|
|
6
5
|
import { EmojiContext } from '../context/EmojiContext';
|
|
7
6
|
var supportsUploadFeature = function supportsUploadFeature(emojiProvider) {
|
|
@@ -23,28 +22,26 @@ export var useEmoji = function useEmoji() {
|
|
|
23
22
|
useEffect(function () {
|
|
24
23
|
if (supportsUploadFeature(emojiProvider)) {
|
|
25
24
|
var checkIfUploadIsSupported = /*#__PURE__*/function () {
|
|
26
|
-
var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime
|
|
25
|
+
var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
|
|
27
26
|
var supported;
|
|
28
|
-
return _regeneratorRuntime
|
|
29
|
-
while (1) {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
return _context.stop();
|
|
47
|
-
}
|
|
27
|
+
return _regeneratorRuntime.wrap(function _callee$(_context) {
|
|
28
|
+
while (1) switch (_context.prev = _context.next) {
|
|
29
|
+
case 0:
|
|
30
|
+
_context.prev = 0;
|
|
31
|
+
_context.next = 3;
|
|
32
|
+
return emojiProvider.isUploadSupported();
|
|
33
|
+
case 3:
|
|
34
|
+
supported = _context.sent;
|
|
35
|
+
setIsUploadSupported(supported);
|
|
36
|
+
_context.next = 10;
|
|
37
|
+
break;
|
|
38
|
+
case 7:
|
|
39
|
+
_context.prev = 7;
|
|
40
|
+
_context.t0 = _context["catch"](0);
|
|
41
|
+
return _context.abrupt("return", false);
|
|
42
|
+
case 10:
|
|
43
|
+
case "end":
|
|
44
|
+
return _context.stop();
|
|
48
45
|
}
|
|
49
46
|
}, _callee, null, [[0, 7]]);
|
|
50
47
|
}));
|
package/dist/esm/i18n/cs.js
CHANGED
|
@@ -7,38 +7,48 @@
|
|
|
7
7
|
*/
|
|
8
8
|
//Czech
|
|
9
9
|
export default {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
10
|
+
'fabric.emoji.add.custom.emoji.label': 'Přidat své vlastní emoji',
|
|
11
|
+
'fabric.emoji.add.label': 'Přidat emoji',
|
|
12
|
+
'fabric.emoji.cancel.label': 'Zrušit',
|
|
13
|
+
'fabric.emoji.categories.label': 'Vyberte kategorii smajlíků.',
|
|
14
|
+
'fabric.emoji.categories.search.results': 'Výsledky vyhledávání',
|
|
15
|
+
'fabric.emoji.category.activity': 'Činnosti',
|
|
16
|
+
'fabric.emoji.category.all.uploads': 'Všechny nahrané položky',
|
|
17
|
+
'fabric.emoji.category.flags': 'Vlajky',
|
|
18
|
+
'fabric.emoji.category.foods': 'Jídlo a pití',
|
|
19
|
+
'fabric.emoji.category.frequent': 'Časté',
|
|
20
|
+
'fabric.emoji.category.nature': 'Příroda',
|
|
21
|
+
'fabric.emoji.category.objects': 'Objekty',
|
|
22
|
+
'fabric.emoji.category.people': 'Lidé',
|
|
23
|
+
'fabric.emoji.category.places': 'Cestování a místa',
|
|
24
|
+
'fabric.emoji.category.productivity': 'Produktivita',
|
|
25
|
+
'fabric.emoji.category.symbols': 'Symboly',
|
|
26
|
+
'fabric.emoji.category.user.uploads': 'Vaše nahrané položky',
|
|
27
|
+
'fabric.emoji.choose.file.screenReaderDescription': 'Vyberte soubor smajlíku. JPG, PNG nebo GIF. Maximální velikost je 1 MB.',
|
|
28
|
+
'fabric.emoji.choose.file.title': 'Vybrat soubor',
|
|
29
|
+
'fabric.emoji.delete.description': 'Veškeré existující výskyty tohoto emoji budou nahrazeny {emojiShortName}',
|
|
30
|
+
'fabric.emoji.delete.label': 'Odstranit',
|
|
31
|
+
'fabric.emoji.delete.screenreader.tooltip': 'Chcete-li odstranit smajlík {shortName}, stiskněte klávesu Backspace.',
|
|
32
|
+
'fabric.emoji.delete.title': 'Odstranit emoji',
|
|
33
|
+
'fabric.emoji.delete.tooltip': 'Odstranit',
|
|
34
|
+
'fabric.emoji.emojipicker.emoi.roledescription': 'tlačítko smajlíku',
|
|
35
|
+
'fabric.emoji.emojipicker.error': 'Chyba',
|
|
36
|
+
'fabric.emoji.error.delete.failed': 'Odstranění se nezdařilo.',
|
|
37
|
+
'fabric.emoji.error.image.too.big': 'Vybraný obrázek je větší než 1 MB.',
|
|
38
|
+
'fabric.emoji.error.invalid.image': 'Vybraný obrázek je neplatný.',
|
|
39
|
+
'fabric.emoji.error.upload.failed': 'Nahrávání se nezdařilo',
|
|
40
|
+
'fabric.emoji.image.requirements': 'JPG, PNG nebo GIF. Max. velikost je 1 MB.',
|
|
41
|
+
'fabric.emoji.name.ariaLabel': 'Zadejte název nového emotikonu',
|
|
42
|
+
'fabric.emoji.picker': 'Výběr smajlíků',
|
|
43
|
+
'fabric.emoji.pickerlist.grid': '{showSearchResults, select, true {Výsledky vyhledávání} other {Smajlíky}}',
|
|
44
|
+
'fabric.emoji.pickerlist.tabpanel': 'Panel seznamu a akcí smajlíků',
|
|
45
|
+
'fabric.emoji.placeholder': 'např. ahoj',
|
|
46
|
+
'fabric.emoji.preview': 'Vaše nové emoji {emoji} vypadá skvěle!',
|
|
47
|
+
'fabric.emoji.preview.title': 'Náhled',
|
|
48
|
+
'fabric.emoji.retry.label': 'Zkusit znovu',
|
|
49
|
+
'fabric.emoji.search.label': 'Název smajlíku',
|
|
50
|
+
'fabric.emoji.search.placeholder': 'Vyhledat',
|
|
51
|
+
'fabric.emoji.search.status': 'Zobrazují se všechny smajlíky.',
|
|
52
|
+
'fabric.emoji.select.skin.list.ariaLabel': 'Výběr odstínu pleti',
|
|
53
|
+
'fabric.emoji.select.skin.tone.ariaLabel': 'Vyberte odstín pleti, vybráno: {selectedTone}'
|
|
44
54
|
};
|
package/dist/esm/i18n/da.js
CHANGED
|
@@ -7,38 +7,48 @@
|
|
|
7
7
|
*/
|
|
8
8
|
//Danish (Denmark)
|
|
9
9
|
export default {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
10
|
+
'fabric.emoji.add.custom.emoji.label': 'Tilføj din egen emoji',
|
|
11
|
+
'fabric.emoji.add.label': 'Tilføj emoji',
|
|
12
|
+
'fabric.emoji.cancel.label': 'Annullér',
|
|
13
|
+
'fabric.emoji.categories.label': 'Vælg en emoji-kategori',
|
|
14
|
+
'fabric.emoji.categories.search.results': 'Søgeresultater',
|
|
15
|
+
'fabric.emoji.category.activity': 'Aktivitet',
|
|
16
|
+
'fabric.emoji.category.all.uploads': 'Alle uploads',
|
|
17
|
+
'fabric.emoji.category.flags': 'Flag',
|
|
18
|
+
'fabric.emoji.category.foods': 'Mad og drikke',
|
|
19
|
+
'fabric.emoji.category.frequent': 'Ofte benyttede',
|
|
20
|
+
'fabric.emoji.category.nature': 'Natur',
|
|
21
|
+
'fabric.emoji.category.objects': 'Objekter',
|
|
22
|
+
'fabric.emoji.category.people': 'Personer',
|
|
23
|
+
'fabric.emoji.category.places': 'Rejser og steder',
|
|
24
|
+
'fabric.emoji.category.productivity': 'Produktivitet',
|
|
25
|
+
'fabric.emoji.category.symbols': 'Symboler',
|
|
26
|
+
'fabric.emoji.category.user.uploads': 'Dine uploads',
|
|
27
|
+
'fabric.emoji.choose.file.screenReaderDescription': 'Vælg en fil til emojien. JPG, PNG eller GIF. Maks. størrelse: 1 MB',
|
|
28
|
+
'fabric.emoji.choose.file.title': 'Vælg fil',
|
|
29
|
+
'fabric.emoji.delete.description': 'Alle eksisterende forekomster af denne emoji erstattes med {emojiShortName}',
|
|
30
|
+
'fabric.emoji.delete.label': 'Fjern',
|
|
31
|
+
'fabric.emoji.delete.screenreader.tooltip': "Tryk på Backspace for at slette {shortName}-emoji'en",
|
|
32
|
+
'fabric.emoji.delete.title': 'Fjern emoji',
|
|
33
|
+
'fabric.emoji.delete.tooltip': 'Slet',
|
|
34
|
+
'fabric.emoji.emojipicker.emoi.roledescription': 'emojiknap',
|
|
35
|
+
'fabric.emoji.emojipicker.error': 'Fejl!',
|
|
36
|
+
'fabric.emoji.error.delete.failed': 'Fjern mislykkede',
|
|
37
|
+
'fabric.emoji.error.image.too.big': 'Det valgte billede er større end 1 MB',
|
|
38
|
+
'fabric.emoji.error.invalid.image': 'Det valgte billede er ugyldigt',
|
|
39
|
+
'fabric.emoji.error.upload.failed': 'Upload mislykkedes',
|
|
40
|
+
'fabric.emoji.image.requirements': 'JPG, PNG eller GIF. Maks. størrelse 1 MB.',
|
|
41
|
+
'fabric.emoji.name.ariaLabel': 'Angiv et navn til den nye emoji',
|
|
42
|
+
'fabric.emoji.picker': 'Emojivælger',
|
|
43
|
+
'fabric.emoji.pickerlist.grid': '{showSearchResults, select, true {Søgeresultater} other {Emojis}}',
|
|
44
|
+
'fabric.emoji.pickerlist.tabpanel': 'Emoji-handlinger og listepanel',
|
|
45
|
+
'fabric.emoji.placeholder': 'fx hej',
|
|
46
|
+
'fabric.emoji.preview': 'Din nye emoji {emoji} ser flot ud',
|
|
47
|
+
'fabric.emoji.preview.title': 'Vis',
|
|
48
|
+
'fabric.emoji.retry.label': 'Prøv igen',
|
|
49
|
+
'fabric.emoji.search.label': 'Emojinavn',
|
|
50
|
+
'fabric.emoji.search.placeholder': 'Søg',
|
|
51
|
+
'fabric.emoji.search.status': 'Viser alle emojis',
|
|
52
|
+
'fabric.emoji.select.skin.list.ariaLabel': 'Hudfarvevælger',
|
|
53
|
+
'fabric.emoji.select.skin.tone.ariaLabel': 'Vælg din hudfarve, {selectedTone} valgt'
|
|
44
54
|
};
|
package/dist/esm/i18n/de.js
CHANGED
|
@@ -7,38 +7,48 @@
|
|
|
7
7
|
*/
|
|
8
8
|
//German (Germany)
|
|
9
9
|
export default {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
10
|
+
'fabric.emoji.add.custom.emoji.label': 'Fügen Sie Ihr eigenes Emoji hinzu',
|
|
11
|
+
'fabric.emoji.add.label': 'Emoji hinzufügen',
|
|
12
|
+
'fabric.emoji.cancel.label': 'Abbrechen',
|
|
13
|
+
'fabric.emoji.categories.label': 'Emoji-Kategorie auswählen',
|
|
14
|
+
'fabric.emoji.categories.search.results': 'Suchergebnisse',
|
|
15
|
+
'fabric.emoji.category.activity': 'Aktivität',
|
|
16
|
+
'fabric.emoji.category.all.uploads': 'Alle Uploads',
|
|
17
|
+
'fabric.emoji.category.flags': 'Flaggen',
|
|
18
|
+
'fabric.emoji.category.foods': 'Essen und Trinken',
|
|
19
|
+
'fabric.emoji.category.frequent': 'Häufig',
|
|
20
|
+
'fabric.emoji.category.nature': 'Natur',
|
|
21
|
+
'fabric.emoji.category.objects': 'Objekte',
|
|
22
|
+
'fabric.emoji.category.people': 'Personen',
|
|
23
|
+
'fabric.emoji.category.places': 'Reisen und Orte',
|
|
24
|
+
'fabric.emoji.category.productivity': 'Produktivität',
|
|
25
|
+
'fabric.emoji.category.symbols': 'Symbole',
|
|
26
|
+
'fabric.emoji.category.user.uploads': 'Ihre Uploads',
|
|
27
|
+
'fabric.emoji.choose.file.screenReaderDescription': 'Wählen Sie eine Datei für das Emoji. JPG, PNG oder GIF. Max. Größe: 1 MB.',
|
|
28
|
+
'fabric.emoji.choose.file.title': 'Datei auswählen',
|
|
29
|
+
'fabric.emoji.delete.description': 'Alle existierenden Instanzen dieses Emojis werden durch {emojiShortName} ersetzt',
|
|
30
|
+
'fabric.emoji.delete.label': 'Entfernen',
|
|
31
|
+
'fabric.emoji.delete.screenreader.tooltip': 'Wenn Sie das {shortName}-Emoji löschen möchten, drücken Sie die Rücktaste.',
|
|
32
|
+
'fabric.emoji.delete.title': 'Emoji entfernen',
|
|
33
|
+
'fabric.emoji.delete.tooltip': 'Löschen',
|
|
34
|
+
'fabric.emoji.emojipicker.emoi.roledescription': 'Emoji-Schaltfläche',
|
|
35
|
+
'fabric.emoji.emojipicker.error': 'Fehler',
|
|
36
|
+
'fabric.emoji.error.delete.failed': 'Entfernen fehlgeschlagen',
|
|
37
|
+
'fabric.emoji.error.image.too.big': 'Das ausgewählte Bild hat mehr als 1 MB',
|
|
38
|
+
'fabric.emoji.error.invalid.image': 'Das ausgewählte Bild ist ungültig.',
|
|
39
|
+
'fabric.emoji.error.upload.failed': 'Upload fehlgeschlagen',
|
|
40
|
+
'fabric.emoji.image.requirements': 'JPG, PNG oder GIF. Max. Größe 1 MB.',
|
|
41
|
+
'fabric.emoji.name.ariaLabel': 'Geben Sie einen Namen für das neue Emoji ein.',
|
|
42
|
+
'fabric.emoji.picker': 'Emoji-Auswahl',
|
|
43
|
+
'fabric.emoji.pickerlist.grid': '{showSearchResults, select, true {Suchergebnisse} other {Emojis}}',
|
|
44
|
+
'fabric.emoji.pickerlist.tabpanel': 'Panel mit Emojis, Aktionen und Liste',
|
|
45
|
+
'fabric.emoji.placeholder': 'z. B. Guten Tag',
|
|
46
|
+
'fabric.emoji.preview': 'Ihr neues Emoji {emoji} sieht toll aus',
|
|
47
|
+
'fabric.emoji.preview.title': 'Vorschau',
|
|
48
|
+
'fabric.emoji.retry.label': 'Wiederholen',
|
|
49
|
+
'fabric.emoji.search.label': 'Name des Emojis',
|
|
50
|
+
'fabric.emoji.search.placeholder': 'Suchen',
|
|
51
|
+
'fabric.emoji.search.status': 'Alle Emojis werden angezeigt',
|
|
52
|
+
'fabric.emoji.select.skin.list.ariaLabel': 'Auswahl der Hautfarbe',
|
|
53
|
+
'fabric.emoji.select.skin.tone.ariaLabel': 'Wählen Sie eine Hautfarbe aus – {selectedTone} ausgewählt'
|
|
44
54
|
};
|
package/dist/esm/i18n/en.js
CHANGED
|
@@ -7,38 +7,48 @@
|
|
|
7
7
|
*/
|
|
8
8
|
//
|
|
9
9
|
export default {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
10
|
+
'fabric.emoji.add.custom.emoji.label': 'Add your own emoji',
|
|
11
|
+
'fabric.emoji.add.label': 'Add emoji',
|
|
12
|
+
'fabric.emoji.cancel.label': 'Cancel',
|
|
13
|
+
'fabric.emoji.categories.label': 'Choose an emoji category',
|
|
14
|
+
'fabric.emoji.categories.search.results': 'Search results',
|
|
15
|
+
'fabric.emoji.category.activity': 'Activity',
|
|
16
|
+
'fabric.emoji.category.all.uploads': 'All uploads',
|
|
17
|
+
'fabric.emoji.category.flags': 'Flags',
|
|
18
|
+
'fabric.emoji.category.foods': 'Food & Drink',
|
|
19
|
+
'fabric.emoji.category.frequent': 'Frequent',
|
|
20
|
+
'fabric.emoji.category.nature': 'Nature',
|
|
21
|
+
'fabric.emoji.category.objects': 'Objects',
|
|
22
|
+
'fabric.emoji.category.people': 'People',
|
|
23
|
+
'fabric.emoji.category.places': 'Travel & Places',
|
|
24
|
+
'fabric.emoji.category.productivity': 'Productivity',
|
|
25
|
+
'fabric.emoji.category.symbols': 'Symbols',
|
|
26
|
+
'fabric.emoji.category.user.uploads': 'Your uploads',
|
|
27
|
+
'fabric.emoji.choose.file.screenReaderDescription': 'Choose a file for the emoji. JPG, PNG or GIF. Max size 1 MB',
|
|
28
|
+
'fabric.emoji.choose.file.title': 'Choose file',
|
|
29
|
+
'fabric.emoji.delete.description': 'All existing instances of this emoji will be replaced with {emojiShortName}',
|
|
30
|
+
'fabric.emoji.delete.label': 'Remove',
|
|
31
|
+
'fabric.emoji.delete.screenreader.tooltip': 'To delete {shortName} emoji, press Backspace',
|
|
32
|
+
'fabric.emoji.delete.title': 'Remove emoji',
|
|
33
|
+
'fabric.emoji.delete.tooltip': 'Delete',
|
|
34
|
+
'fabric.emoji.emojipicker.emoi.roledescription': 'emoji button',
|
|
35
|
+
'fabric.emoji.emojipicker.error': 'Error!',
|
|
36
|
+
'fabric.emoji.error.delete.failed': 'Remove failed',
|
|
37
|
+
'fabric.emoji.error.image.too.big': 'Selected image is more than 1 MB',
|
|
38
|
+
'fabric.emoji.error.invalid.image': 'Selected image is invalid',
|
|
39
|
+
'fabric.emoji.error.upload.failed': 'Upload failed',
|
|
40
|
+
'fabric.emoji.image.requirements': 'JPG, PNG or GIF. Max size 1 MB.',
|
|
41
|
+
'fabric.emoji.name.ariaLabel': 'Enter a name for the new emoji',
|
|
42
|
+
'fabric.emoji.picker': 'Emoji picker',
|
|
43
|
+
'fabric.emoji.pickerlist.grid': '{showSearchResults, select, true{Search results} other{Emojis}}',
|
|
44
|
+
'fabric.emoji.pickerlist.tabpanel': 'Emojis actions and list panel',
|
|
45
|
+
'fabric.emoji.placeholder': 'e.g. hello',
|
|
46
|
+
'fabric.emoji.preview': 'Your new emoji {emoji} looks great',
|
|
47
|
+
'fabric.emoji.preview.title': 'Preview',
|
|
48
|
+
'fabric.emoji.retry.label': 'Retry',
|
|
49
|
+
'fabric.emoji.search.label': 'Emoji name',
|
|
50
|
+
'fabric.emoji.search.placeholder': 'Search',
|
|
51
|
+
'fabric.emoji.search.status': 'Seeing all emojis',
|
|
52
|
+
'fabric.emoji.select.skin.list.ariaLabel': 'Skin tone selector',
|
|
53
|
+
'fabric.emoji.select.skin.tone.ariaLabel': 'Choose your skin tone, {selectedTone} selected'
|
|
44
54
|
};
|