@dialpad/dialtone-vue 2.198.1 → 2.199.0-next.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/dist/component-documentation.json +1 -1
- package/dist/lib/input/input.cjs +1 -1
- package/dist/lib/input/input.cjs.map +1 -1
- package/dist/lib/input/input.js +24 -16
- package/dist/lib/input/input.js.map +1 -1
- package/dist/lib/message-input/message-input.cjs.map +1 -1
- package/dist/lib/message-input/message-input.js +0 -1
- package/dist/lib/message-input/message-input.js.map +1 -1
- package/dist/localization/de-DE.cjs +3 -3
- package/dist/localization/de-DE.cjs.map +1 -1
- package/dist/localization/de-DE.js +3 -3
- package/dist/localization/de-DE.js.map +1 -1
- package/dist/localization/fr-FR.cjs +4 -4
- package/dist/localization/fr-FR.cjs.map +1 -1
- package/dist/localization/fr-FR.js +4 -4
- package/dist/localization/fr-FR.js.map +1 -1
- package/dist/localization/it-IT.cjs +2 -2
- package/dist/localization/it-IT.cjs.map +1 -1
- package/dist/localization/it-IT.js +2 -2
- package/dist/localization/it-IT.js.map +1 -1
- package/dist/types/components/input/input.vue.d.ts +9 -0
- package/package.json +4 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"message-input.js","sources":["../../../recipes/conversation_view/message_input/extensions/meeting_pill/MeetingPill.vue","../../../recipes/conversation_view/message_input/extensions/meeting_pill/meeting_pill.js","../../../recipes/conversation_view/message_input/message_input.vue"],"sourcesContent":["<template>\n <node-view-wrapper class=\"d-recipe-message-input-meeting-pill\">\n <dt-item-layout\n class=\"d-recipe-message-input-meeting-pill__layout\"\n unstyled\n >\n <template #left>\n <div class=\"d-recipe-message-input-meeting-pill__icon\">\n <dt-icon-video\n size=\"400\"\n />\n </div>\n </template>\n {{ node.attrs.text }}\n <template #right>\n <div class=\"d-recipe-message-input-meeting-pill__close\">\n <dt-button\n circle\n importance=\"clear\"\n size=\"xs\"\n :aria-label=\"closeButtonTitle\"\n :title=\"closeButtonTitle\"\n @click=\"close\"\n >\n <template #icon>\n <dt-icon-close\n size=\"300\"\n />\n </template>\n </dt-button>\n </div>\n </template>\n </dt-item-layout>\n </node-view-wrapper>\n</template>\n\n<script>\nimport { NodeViewWrapper, nodeViewProps } from '@tiptap/vue-2';\nimport { DtItemLayout } from '@/components/item_layout';\nimport { DtIconClose, DtIconVideo } from '@dialpad/dialtone-icons/vue2';\nimport { DtButton } from '@/components/button';\nimport { DialtoneLocalization } from '@/localization';\n\nexport default {\n name: 'MeetingPill',\n\n components: {\n NodeViewWrapper,\n DtItemLayout,\n DtIconClose,\n DtButton,\n DtIconVideo,\n },\n\n props: nodeViewProps,\n\n emits: ['meeting-pill-close'],\n\n data () {\n return {\n i18n: new DialtoneLocalization(),\n };\n },\n\n computed: {\n closeButtonTitle () {\n return this.i18n.$t('DIALTONE_CLOSE_BUTTON');\n },\n },\n\n methods: {\n close (e) {\n // Get the callback from extension storage\n const onCloseCallback = this.editor?.storage?.meetingPill?.onClose;\n\n if (onCloseCallback && typeof onCloseCallback === 'function') {\n onCloseCallback(e);\n }\n },\n },\n};\n</script>\n","import { mergeAttributes, Node } from '@tiptap/core';\nimport { VueNodeViewRenderer } from '@tiptap/vue-2';\nimport MeetingPill from './MeetingPill.vue';\n\nexport default Node.create({\n name: 'meetingPill',\n\n atom: true,\n group: 'inline',\n inline: true,\n\n addOptions () {\n return {\n onClose: () => {},\n };\n },\n\n addStorage () {\n return {\n onClose: this.options.onClose,\n };\n },\n\n addNodeView () {\n return VueNodeViewRenderer(MeetingPill);\n },\n\n addAttributes () {\n return {\n text: {\n default: 'Please pass in \"text\" attribute',\n },\n };\n },\n\n parseHTML () {\n return [\n {\n tag: 'meeting-pill',\n },\n ];\n },\n\n renderText () {\n return '/dpm';\n },\n\n renderHTML ({ HTMLAttributes }) {\n return ['meeting-pill', mergeAttributes(HTMLAttributes)];\n },\n});\n","<!-- eslint-disable max-lines -->\n<template>\n <div\n data-qa=\"dt-recipe-message-input\"\n role=\"presentation\"\n class=\"d-recipe-message-input\"\n @dragover.prevent\n @drop.prevent=\"onDrop\"\n @paste=\"onPaste\"\n @mousedown=\"onMousedown\"\n >\n <!-- @slot Renders above the input, but still within the borders. -->\n <slot name=\"top\" />\n\n <!-- set key to selectedText to force update. otherwise this component may not reflect the active selection -->\n <dt-recipe-message-input-topbar\n v-if=\"richText\"\n :key=\"selectedText\"\n :bold-button-options=\"boldButtonOptions\"\n :italic-button-options=\"italicButtonOptions\"\n :strike-button-options=\"strikeButtonOptions\"\n :bullet-list-button-options=\"bulletListButtonOptions\"\n :ordered-list-button-options=\"orderedListButtonOptions\"\n :block-quote-button-options=\"blockQuoteButtonOptions\"\n :code-button-options=\"codeButtonOptions\"\n :code-block-button-options=\"codeBlockButtonOptions\"\n :is-selection-active=\"isSelectionActive\"\n @click=\"handleTopbarClick\"\n >\n <template #link>\n <dt-recipe-message-input-link\n ref=\"link\"\n :open=\"linkDialogOpen\"\n :link-button-options=\"linkButtonOptions\"\n :is-selection-active=\"isSelectionActive\"\n @opened=\"linkDialogOpened\"\n @set-link=\"setLink\"\n @remove-link=\"removeLink\"\n />\n </template>\n </dt-recipe-message-input-topbar>\n <!-- Some wrapper to restrict the height and show the scrollbar -->\n <div\n v-dt-scrollbar\n class=\"d-recipe-message-input__editor-wrapper\"\n :style=\"{ 'max-height': maxHeight }\"\n >\n <dt-rich-text-editor\n ref=\"richTextEditor\"\n v-model=\"internalInputValue\"\n :editable=\"editable\"\n :input-aria-label=\"inputAriaLabel\"\n :input-class=\"inputClass\"\n :output-format=\"outputFormat\"\n :auto-focus=\"autoFocus\"\n :link=\"richText\"\n :placeholder=\"placeholder\"\n :prevent-typing=\"preventTyping\"\n :mention-suggestion=\"mentionSuggestion\"\n :channel-suggestion=\"channelSuggestion\"\n :slash-command-suggestion=\"slashCommandSuggestion\"\n :paste-rich-text=\"richText\"\n :allow-blockquote=\"richText\"\n :allow-bold=\"richText\"\n :allow-bullet-list=\"richText\"\n :allow-code=\"richText\"\n :allow-codeblock=\"richText\"\n :allow-italic=\"richText\"\n :allow-strike=\"richText\"\n :allow-underline=\"richText\"\n :additional-extensions=\"additionalExtensions\"\n :hide-link-bubble-menu=\"hideLinkBubbleMenu\"\n v-bind=\"$attrs\"\n @input=\"onInput\"\n @text-input=\"onTextInput\"\n @enter=\"onSend\"\n @selected=\"selectedText = $event\"\n @selected-command=\"$emit('selected-command', $event)\"\n @edit-link=\"initLinkDialog\"\n @focus=\"isFocused = true\"\n @blur=\"isFocused = false\"\n v-on=\"$listeners\"\n />\n </div>\n <!-- @slot Slot for attachment carousel -->\n <slot name=\"middle\" />\n <!-- Section for the bottom UI -->\n <section class=\"d-recipe-message-input__bottom-section\">\n <!-- Left content -->\n <div class=\"d-recipe-message-input__bottom-section-left\">\n <dt-stack\n direction=\"row\"\n gap=\"200\"\n >\n <dt-button\n v-if=\"showImagePicker\"\n v-dt-tooltip:top-start=\"imagePickerButtonLabel\"\n data-qa=\"dt-recipe-message-input-image-btn\"\n size=\"sm\"\n class=\"d-recipe-message-input__button\"\n kind=\"muted\"\n importance=\"clear\"\n :aria-label=\"imagePickerButtonLabel\"\n @click=\"onSelectImage\"\n @mouseenter=\"imagePickerFocus = true\"\n @mouseleave=\"imagePickerFocus = false\"\n @focus=\"imagePickerFocus = true\"\n @blur=\"imagePickerFocus = false\"\n >\n <template #icon>\n <dt-icon-image size=\"300\" />\n </template>\n </dt-button>\n <dt-input\n ref=\"messageInputImageUpload\"\n data-qa=\"dt-recipe-message-input-image-input\"\n accept=\"image/*, video/*\"\n type=\"file\"\n class=\"d-recipe-message-input__image-input\"\n multiple\n hidden\n @input=\"onImageUpload\"\n />\n <dt-popover\n v-if=\"showEmojiPicker\"\n open.sync=\"emojiPickerOpened\"\n data-qa=\"dt-recipe-message-input-emoji-picker-popover\"\n initial-focus-element=\"#searchInput\"\n padding=\"none\"\n >\n <template #anchor=\"{ attrs }\">\n <dt-button\n v-dt-tooltip=\"emojiPickerButtonLabel\"\n v-bind=\"attrs\"\n data-qa=\"dt-recipe-message-input-emoji-picker-btn\"\n size=\"sm\"\n class=\"d-recipe-message-input__button\"\n kind=\"muted\"\n importance=\"clear\"\n :aria-label=\"emojiPickerButtonLabel\"\n @click=\"toggleEmojiPicker\"\n @mouseenter=\"emojiPickerFocus = true\"\n @mouseleave=\"emojiPickerFocus = false\"\n @focus=\"emojiPickerFocus = true\"\n @blur=\"emojiPickerFocus = false\"\n >\n <template #icon>\n <dt-icon-very-satisfied\n v-if=\"emojiPickerHovered\"\n size=\"300\"\n />\n <dt-icon-satisfied\n v-else\n size=\"300\"\n />\n </template>\n </dt-button>\n </template>\n <template #content=\"{ close }\">\n <dt-emoji-picker\n v-bind=\"emojiPickerProps\"\n @add-emoji=\"$emit('add-emoji')\"\n @skin-tone=\"onSkinTone\"\n @selected-emoji=\"(emoji) => onSelectEmoji(emoji, close)\"\n @scroll-bottom-reached=\"$emit('emoji-scroll-bottom-reached')\"\n />\n </template>\n </dt-popover>\n <!-- @slot Slot for emojiGiphy picker -->\n <slot name=\"emojiGiphyPicker\" />\n <!-- @slot Slot to add extra action icons next to default ones -->\n <slot name=\"customActionIcons\" />\n </dt-stack>\n </div>\n <!-- Right content -->\n <div class=\"d-recipe-message-input__bottom-section-right\">\n <dt-stack\n direction=\"row\"\n gap=\"300\"\n >\n <!-- @slot Slot for schedule message -->\n <div class=\"d-recipe-message-input__schedule-message\">\n <slot name=\"scheduleMessage\" />\n </div>\n\n <!-- @slot Slot for sms count -->\n <div class=\"d-recipe-message-input__sms-count\">\n <slot name=\"smsCount\" />\n </div>\n\n <!-- Optionally displayed remaining character counter -->\n <dt-tooltip\n v-if=\"Boolean(showCharacterLimit)\"\n class=\"d-recipe-message-input__remaining-char-tooltip\"\n placement=\"top-end\"\n :enabled=\"characterLimitTooltipEnabled\"\n :message=\"showCharacterLimit.message\"\n :offset=\"[10, 8]\"\n >\n <template #anchor>\n <p\n v-show=\"displayCharacterLimitWarning\"\n class=\"d-recipe-message-input__remaining-char\"\n data-qa=\"dt-recipe-message-input-character-limit\"\n >\n {{ showCharacterLimit.count - inputLength }}\n </p>\n </template>\n </dt-tooltip>\n\n <!-- Cancel button for edit mode -->\n <dt-button\n v-if=\"showCancel\"\n v-dt-tooltip=\"cancelButtonLabel\"\n data-qa=\"dt-recipe-message-input-cancel-button\"\n class=\"d-recipe-message-input__button d-recipe-message-input__cancel-button\"\n size=\"sm\"\n kind=\"muted\"\n importance=\"clear\"\n :aria-label=\"cancelButtonLabel\"\n @click=\"onCancel\"\n >\n <p>{{ cancelButtonLabel }}</p>\n </dt-button>\n\n <!-- @slot Slot for sendButton picker -->\n <slot name=\"sendButton\">\n <!-- Send button -->\n <!-- Right positioned UI - send button -->\n <dt-button\n v-if=\"showSend\"\n v-dt-tooltip:top-end=\"sendButtonLabel\"\n data-qa=\"dt-recipe-message-input-send-btn\"\n size=\"sm\"\n kind=\"default\"\n importance=\"primary\"\n :class=\"[\n 'd-recipe-message-input__button d-recipe-message-input__send-button',\n {\n 'd-recipe-message-input__send-button--disabled': isSendDisabled,\n 'd-btn--icon-only': showSendIcon,\n },\n ]\"\n :aria-label=\"sendButtonLabel\"\n :aria-disabled=\"isSendDisabled\"\n @click=\"onSend\"\n >\n <template\n v-if=\"showSendIcon\"\n #icon\n >\n <!-- @slot Slot for send button icon -->\n <slot\n name=\"sendIcon\"\n :icon-size=\"sendIconSize\"\n >\n <dt-icon-send\n :size=\"sendIconSize\"\n />\n </slot>\n </template>\n <template\n v-if=\"showSend.text\"\n >\n <p>{{ showSend.text }}</p>\n </template>\n </dt-button>\n </slot>\n </dt-stack>\n </div>\n </section>\n </div>\n</template>\n\n<script>\n/* eslint-disable max-lines */\nimport {\n DtRichTextEditor,\n RICH_TEXT_EDITOR_OUTPUT_FORMATS,\n RICH_TEXT_EDITOR_AUTOFOCUS_TYPES,\n} from '@/components/rich_text_editor';\nimport lastActiveNodes from './last_active_nodes';\nimport MeetingPill from './extensions/meeting_pill/meeting_pill';\nimport { DtButton } from '@/components/button';\nimport { DtEmojiPicker } from '@/components/emoji_picker';\nimport { DtPopover } from '@/components/popover';\nimport { DtInput } from '@/components/input';\nimport { DtTooltip } from '@/components/tooltip';\nimport { DtStack } from '@/components/stack';\nimport {\n DtIconImage, DtIconVerySatisfied, DtIconSatisfied, DtIconSend,\n} from '@dialpad/dialtone-icons/vue2';\nimport DtRecipeMessageInputTopbar from './message_input_topbar.vue';\nimport DtRecipeMessageInputLink from './message_input_link.vue';\nimport { DialtoneLocalization } from '@/localization';\n\nimport {\n EDITOR_SUPPORTED_LINK_PROTOCOLS,\n EDITOR_DEFAULT_LINK_PREFIX,\n} from '../editor/editor_constants.js';\n\nexport default {\n name: 'DtRecipeMessageInput',\n\n components: {\n DtButton,\n DtEmojiPicker,\n DtInput,\n DtPopover,\n DtRecipeMessageInputTopbar,\n DtRecipeMessageInputLink,\n DtRichTextEditor,\n DtTooltip,\n DtStack,\n DtIconImage,\n DtIconVerySatisfied,\n DtIconSatisfied,\n DtIconSend,\n },\n\n inheritAttrs: false,\n\n props: {\n /**\n * Displays all the buttons for rich text formatting above the message input, and enables it within the editor.\n * Rich text formatting for the purposes of this component is defined as:\n *\n * bold, italic, strikethrough, lists, blockquotes, inline code tags, and code blocks.\n *\n * If you are sending a message to a phone rather than a Dialpad to Dialpad message, you should have this as false.\n */\n richText: {\n type: Boolean,\n default: true,\n },\n\n /**\n * Value of the input. The object format should match TipTap's JSON\n * document structure: https://tiptap.dev/guide/output#option-1-json\n */\n value: {\n type: [Object, String],\n default: '',\n },\n\n /**\n * Whether the input is editable\n */\n editable: {\n type: Boolean,\n default: true,\n },\n\n /**\n * Descriptive label for the input element\n */\n inputAriaLabel: {\n type: String,\n required: true,\n default: '',\n },\n\n /**\n * Prevents the user from typing any further. Deleting text will still work.\n */\n preventTyping: {\n type: Boolean,\n default: false,\n },\n\n /**\n * Additional class name for the input element. Only accepts a String value\n * because this is passed to the editor via options. For multiple classes,\n * join them into one string, e.g. \"d-p8 d-hmx96\"\n */\n inputClass: {\n type: String,\n default: '',\n },\n\n /**\n * Whether the input should receive focus after the component has been\n * mounted. Either one of `start`, `end`, `all` or a Boolean or a Number.\n * - `start` Sets the focus to the beginning of the input\n * - `end` Sets the focus to the end of the input\n * - `all` Selects the whole contents of the input\n * - `Number` Sets the focus to a specific position in the input\n * - `true` Defaults to `start`\n * - `false` Disables autofocus\n * @values true, false, start, end, all, number\n */\n autoFocus: {\n type: [Boolean, String, Number],\n default: false,\n validator (autoFocus) {\n if (typeof autoFocus === 'string') {\n return RICH_TEXT_EDITOR_AUTOFOCUS_TYPES.includes(autoFocus);\n }\n return true;\n },\n },\n\n /**\n * The output format that the editor uses when emitting the \"@input\" event.\n * One of `text`, `json`, `html`. See https://tiptap.dev/guide/output for\n * examples.\n * @values text, json, html\n */\n outputFormat: {\n type: String,\n default: 'json',\n validator (outputFormat) {\n return RICH_TEXT_EDITOR_OUTPUT_FORMATS.includes(outputFormat);\n },\n },\n\n /**\n * Placeholder text\n */\n placeholder: {\n type: String,\n default: '',\n },\n\n /**\n * Disable Send Button\n */\n disableSend: {\n type: Boolean,\n default: false,\n },\n\n /**\n * Content area needs to dynamically adjust height based on the conversation area height.\n * can be vh|px|rem|em|%\n */\n maxHeight: {\n type: String,\n default: 'unset',\n },\n\n // Emoji picker props\n showEmojiPicker: {\n type: Boolean,\n default: true,\n },\n\n /**\n * Props to pass into the emoji picker.\n */\n emojiPickerProps: {\n type: Object,\n default: () => ({}),\n },\n\n /**\n * Enable character Limit warning\n */\n showCharacterLimit: {\n type: [Boolean, Object],\n default: () => ({ count: 1500, warning: 500, message: '' }),\n },\n\n showImagePicker: {\n type: [Boolean, Object],\n default: () => ({}),\n },\n\n /**\n * Send button defaults.\n * TODO (Dialtone 10):\n * - Change to `showSendButton`, boolean only.\n */\n showSend: {\n type: [Boolean, Object],\n default: () => ({}),\n },\n\n /**\n * TODO (Dialtone 10):\n * - Add a prop `iconOnly` default: true to control if localized send button text should be shown\n */\n\n /**\n * Cancel button defaults.\n * TODO (Dialtone 10): Change to `showCancelButton`, boolean only.\n */\n showCancel: {\n type: [Boolean, Object],\n default: () => ({}),\n },\n\n /**\n * suggestion object containing the items query function.\n * The valid keys passed into this object can be found here: https://tiptap.dev/api/utilities/suggestion\n *\n * The only required key is the items function which is used to query the contacts for suggestion.\n * items({ query }) => { return [ContactObject]; }\n * ContactObject format:\n * { name: string, avatarSrc: string, id: string }\n *\n * When null, it does not add the plugin.\n */\n mentionSuggestion: {\n type: Object,\n default: null,\n },\n\n /**\n * suggestion object containing the items query function.\n * The valid keys passed into this object can be found here: https://tiptap.dev/api/utilities/suggestion\n *\n * The only required key is the items function which is used to query the channels for suggestion.\n * items({ query }) => { return [ChannelObject]; }\n * ChannelObject format:\n * { name: string, id: string, locked: boolean }\n *\n * When null, it does not add the plugin. Setting locked to true will display a lock rather than hash.\n */\n channelSuggestion: {\n type: Object,\n default: null,\n },\n\n /**\n * suggestion object containing the items query function.\n * The valid keys passed into this object can be found here: https://tiptap.dev/api/utilities/suggestion\n *\n * The only required key is the items function which is used to query the slash commands for suggestion.\n * items({ query }) => { return [SlashCommandObject]; }\n * SlashCommandObject format:\n * { command: string, description: string, parametersExample?: string }\n * The \"parametersExample\" parameter is optional, and describes an example\n * of the parameters that command can take.\n *\n * When null, it does not add the plugin.\n */\n slashCommandSuggestion: {\n type: Object,\n default: null,\n },\n\n /**\n * descriptive text fields for the bold button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n boldButtonOptions: {\n type: Object,\n default: () => ({\n keyboardShortcutText: 'Mod + B',\n }),\n },\n\n /**\n * descriptive text fields for the italic button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n italicButtonOptions: {\n type: Object,\n default: () => ({\n keyboardShortcutText: 'Mod + I',\n }),\n },\n\n /**\n * descriptive text fields for the strikethrough button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n strikeButtonOptions: {\n type: Object,\n default: () => ({\n keyboardShortcutText: 'Mod + Shift + S',\n }),\n },\n\n /**\n * descriptive text fields for the link button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n linkButtonOptions: {\n type: Object,\n default: () => ({\n // TODO: implement mod k\n keyboardShortcutText: 'Mod + K',\n linkPlaceholder: 'e.g. https://www.dialpad.com',\n }),\n },\n\n /**\n * descriptive text fields for the bullet list button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n bulletListButtonOptions: {\n type: Object,\n default: () => ({\n keyboardShortcutText: 'Mod + Shift + 8',\n }),\n },\n\n /**\n * descriptive text fields for the ordered list button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n orderedListButtonOptions: {\n type: Object,\n default: () => ({\n keyboardShortcutText: 'Mod + Shift + 7',\n }),\n },\n\n /**\n * descriptive text fields for the italic button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n blockQuoteButtonOptions: {\n type: Object,\n default: () => ({\n keyboardShortcutText: 'Mod + Shift + B',\n }),\n },\n\n /**\n * descriptive text fields for the code button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n codeButtonOptions: {\n type: Object,\n default: () => ({\n keyboardShortcutText: 'Mod + E',\n }),\n },\n\n /**\n * descriptive text fields for the code block button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n codeBlockButtonOptions: {\n type: Object,\n default: () => ({\n keyboardShortcutText: 'Mod + Alt + C',\n }),\n },\n },\n\n emits: [\n /**\n * Fires when send button is clicked\n *\n * @event submit\n * @type {String}\n */\n 'submit',\n\n /**\n * Fires when media is selected from image button\n *\n * @event select-media\n * @type {Array}\n */\n 'select-media',\n\n /**\n * Fires when media is dropped into the message input\n *\n * @event add-media\n * @type {Array}\n */\n 'add-media',\n\n /**\n * Fires when media is pasted into the message input\n *\n * @event paste-media\n * @type {Array}\n */\n 'paste-media',\n\n /**\n * Fires when cancel button is pressed (only on edit mode)\n *\n * @event cancel\n * @type {Boolean}\n */\n 'cancel',\n\n /**\n * Fires when skin tone is selected from the emoji picker\n *\n * @event skin-tone\n * @type {String}\n */\n 'skin-tone',\n\n /**\n * Fires when emoji is selected from the emoji picker\n *\n * @event selected-emoji\n * @type {String}\n */\n 'selected-emoji',\n\n /**\n * Fires when a slash command is selected\n *\n * @event selected-command\n * @type {String}\n */\n 'selected-command',\n\n /**\n * Fires when meeting pill is closed\n *\n * @event meeting-pill-close\n * @type {String}\n */\n 'meeting-pill-close',\n\n /**\n * Event to sync the value with the parent\n * @event update:value\n * @type {String|JSON}\n */\n 'update:value',\n\n /**\n * Emitted when input changes, returns text content only\n * @event text-input\n * @type {String}\n */\n 'text-input',\n\n /**\n * Emitted when the 'Add emoji' button is clicked\n * @event add-emoji\n * @type {Boolean}\n */\n 'add-emoji',\n\n /**\n * Emitted when the emoji picker scroll reaches the bottom\n * @event emoji-scroll-bottom-reached\n */\n 'emoji-scroll-bottom-reached',\n ],\n\n data () {\n return {\n // If an ordered list is nested within an unordered list, we only want to show the currently selected list as\n // active. This function performs the logic to determine the farthest active node from the root.\n lastActiveNodes,\n additionalExtensions: [\n MeetingPill.configure({\n onClose: (event) => {\n this.$emit('meeting-pill-close', event);\n },\n }),\n ],\n\n internalInputValue: this.value, // internal input content\n imagePickerFocus: false,\n emojiPickerFocus: false,\n emojiPickerOpened: false,\n isFocused: false,\n linkOptions: {\n class: 'd-link d-c-text d-d-inline-block',\n },\n\n linkDialogOpen: false,\n selectedText: '',\n text: '',\n hideLinkBubbleMenu: false,\n i18n: new DialtoneLocalization(),\n };\n },\n\n computed: {\n showSendIcon () {\n return !this.showSend.text;\n },\n\n inputLength () {\n return this.text.length;\n },\n\n displayCharacterLimitWarning () {\n return Boolean(this.showCharacterLimit) &&\n ((this.showCharacterLimit.count - this.inputLength) <= this.showCharacterLimit.warning);\n },\n\n characterLimitTooltipEnabled () {\n return this.showCharacterLimit.message && (this.showCharacterLimit.count - this.inputLength < 0);\n },\n\n isSendDisabled () {\n return this.disableSend ||\n (this.showCharacterLimit && this.inputLength > this.showCharacterLimit.count);\n },\n\n emojiPickerHovered () {\n return this.emojiPickerFocus || this.emojiPickerOpened;\n },\n\n sendIconSize () {\n return '300';\n },\n\n sendButtonLabel () {\n return this.i18n.$t('DIALTONE_MESSAGE_INPUT_SEND_BUTTON_ARIA_LABEL');\n },\n\n imagePickerButtonLabel () {\n return this.i18n.$t('DIALTONE_MESSAGE_INPUT_IMAGE_PICKER_BUTTON_ARIA_LABEL');\n },\n\n emojiPickerButtonLabel () {\n return this.i18n.$t('DIALTONE_MESSAGE_INPUT_EMOJI_PICKER_BUTTON_ARIA_LABEL');\n },\n\n cancelButtonLabel () {\n return this.i18n.$t('DIALTONE_MESSAGE_INPUT_CANCEL_BUTTON_ARIA_LABEL');\n },\n },\n\n watch: {\n value (newValue) {\n this.internalInputValue = newValue;\n },\n\n emojiPickerOpened (newValue) {\n if (!newValue) {\n this.$refs.richTextEditor?.focusEditor();\n }\n },\n },\n\n created () {\n if (this.value && this.outputFormat === 'text') {\n this.internalInputValue = this.value.replace(/\\n/g, '<br>');\n } else {\n this.internalInputValue = this.value;\n }\n },\n\n methods: {\n linkDialogOpened (value) {\n this.linkDialogOpen = value;\n if (value === true) {\n this.initLinkDialog();\n } else {\n this.hideLinkBubbleMenu = false;\n this.$refs.richTextEditor?.focusEditor();\n }\n },\n\n handleTopbarClick (type) {\n const editor = this.$refs.richTextEditor?.editor;\n // Key is the name returned in the event, value is the name of the TipTap command function to run.\n const typeToCommandMap = {\n bold: () => editor?.chain().focus().toggleBold().run(),\n italic: () => editor?.chain().focus().toggleItalic().run(),\n strike: () => editor?.chain().focus().toggleStrike().run(),\n bulletList: () => editor?.chain().focus().toggleBulletList().run(),\n orderedList: () => editor?.chain().focus().toggleOrderedList().run(),\n blockquote: () => editor?.chain().focus().toggleBlockquote().run(),\n code: () => editor?.chain().focus().toggleCode().run(),\n codeBlock: () => editor?.chain().focus().toggleCodeBlock().run(),\n };\n\n if (editor && typeToCommandMap[type]) {\n typeToCommandMap[type]();\n }\n },\n\n // Checks if the node currently selected is active ex/ the bold button is active if the selected text is bold\n // eslint-disable-next-line complexity\n isSelectionActive (type) {\n if (['bulletList', 'orderedList'].includes(type)) {\n return this.lastActiveNodes(this.$refs.richTextEditor?.editor?.state, [{ type: 'bulletList' }, { type: 'orderedList' }]).includes(type) && this.isFocused;\n }\n return this.$refs.richTextEditor?.editor?.isActive(type) && this.isFocused;\n },\n\n initLinkDialog () {\n this.$refs.link.setInitialValues(this.selectedText, this.$refs.richTextEditor?.editor?.getAttributes('link')?.href);\n this.hideLinkBubbleMenu = true;\n this.linkDialogOpen = true;\n },\n\n removeLink () {\n this.$refs.richTextEditor?.removeLink();\n this.linkDialogOpen = false;\n },\n\n setLink (linkText, linkInput) {\n this.$refs.richTextEditor.setLink(\n linkInput, linkText, this.linkOptions, EDITOR_SUPPORTED_LINK_PROTOCOLS, EDITOR_DEFAULT_LINK_PREFIX,\n );\n this.linkDialogOpen = false;\n },\n\n // Mousedown instead of click because it fires before the blur event.\n onMousedown (e) {\n const isWithinInput = this.$refs.richTextEditor.$el.querySelector('.tiptap').contains(e.target);\n\n // If the click is not within the tiptap rich text editor input itself, but still within the wrapping div,\n // focus the editor.\n if (!isWithinInput) {\n // Prevent default prevents blurring the rich text editor input when it is already focused.\n e.preventDefault();\n this.$refs.richTextEditor.focusEditor();\n }\n },\n\n onDrop (e) {\n const dt = e.dataTransfer;\n const files = Array.from(dt.files);\n this.$emit('add-media', files);\n },\n\n onPaste (e) {\n if (e.clipboardData.files.length) {\n e.stopPropagation();\n e.preventDefault();\n const files = [...e.clipboardData.files];\n this.$emit('paste-media', files);\n }\n },\n\n onSkinTone (skinTone) {\n this.$emit('skin-tone', skinTone);\n },\n\n onSelectEmoji (emoji, close) {\n if (!emoji) {\n return;\n }\n\n if (!emoji.shift_key) {\n close();\n }\n\n // Insert emoji into the editor\n this.$refs.richTextEditor.editor.commands.insertContent({\n type: 'emoji',\n attrs: {\n code: emoji.shortname,\n image: emoji.image,\n name: emoji.name,\n },\n });\n this.$emit('selected-emoji', emoji);\n },\n\n onSelectImage () {\n this.$refs.messageInputImageUpload.$refs.input.click();\n },\n\n onImageUpload () {\n this.$emit('select-media', this.$refs.messageInputImageUpload.$refs.input.files);\n },\n\n toggleEmojiPicker () {\n this.emojiPickerOpened = !this.emojiPickerOpened;\n },\n\n onSend () {\n if (this.isSendDisabled) {\n return;\n }\n this.$emit('submit', this.internalInputValue);\n },\n\n onCancel () {\n this.$emit('cancel');\n },\n\n onInput (event) {\n this.$emit('update:value', event);\n },\n\n onTextInput (event) {\n this.text = event;\n this.$emit('text-input', event);\n },\n },\n};\n</script>\n"],"names":["_sfc_main","NodeViewWrapper","DtItemLayout","DtIconClose","DtButton","DtIconVideo","nodeViewProps","DialtoneLocalization","e","onCloseCallback","_c","_b","_a","MeetingPill","Node","VueNodeViewRenderer","HTMLAttributes","mergeAttributes","DtEmojiPicker","DtInput","DtPopover","DtRecipeMessageInputTopbar","DtRecipeMessageInputLink","DtRichTextEditor","DtTooltip","DtStack","DtIconImage","DtIconVerySatisfied","DtIconSatisfied","DtIconSend","autoFocus","RICH_TEXT_EDITOR_AUTOFOCUS_TYPES","outputFormat","RICH_TEXT_EDITOR_OUTPUT_FORMATS","lastActiveNodes","event","newValue","value","type","editor","typeToCommandMap","_d","linkText","linkInput","EDITOR_SUPPORTED_LINK_PROTOCOLS","EDITOR_DEFAULT_LINK_PREFIX","dt","files","skinTone","emoji","close"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"message-input.js","sources":["../../../recipes/conversation_view/message_input/extensions/meeting_pill/MeetingPill.vue","../../../recipes/conversation_view/message_input/extensions/meeting_pill/meeting_pill.js","../../../recipes/conversation_view/message_input/message_input.vue"],"sourcesContent":["<template>\n <node-view-wrapper class=\"d-recipe-message-input-meeting-pill\">\n <dt-item-layout\n class=\"d-recipe-message-input-meeting-pill__layout\"\n unstyled\n >\n <template #left>\n <div class=\"d-recipe-message-input-meeting-pill__icon\">\n <dt-icon-video\n size=\"400\"\n />\n </div>\n </template>\n {{ node.attrs.text }}\n <template #right>\n <div class=\"d-recipe-message-input-meeting-pill__close\">\n <dt-button\n circle\n importance=\"clear\"\n size=\"xs\"\n :aria-label=\"closeButtonTitle\"\n :title=\"closeButtonTitle\"\n @click=\"close\"\n >\n <template #icon>\n <dt-icon-close\n size=\"300\"\n />\n </template>\n </dt-button>\n </div>\n </template>\n </dt-item-layout>\n </node-view-wrapper>\n</template>\n\n<script>\nimport { NodeViewWrapper, nodeViewProps } from '@tiptap/vue-2';\nimport { DtItemLayout } from '@/components/item_layout';\nimport { DtIconClose, DtIconVideo } from '@dialpad/dialtone-icons/vue2';\nimport { DtButton } from '@/components/button';\nimport { DialtoneLocalization } from '@/localization';\n\nexport default {\n name: 'MeetingPill',\n\n components: {\n NodeViewWrapper,\n DtItemLayout,\n DtIconClose,\n DtButton,\n DtIconVideo,\n },\n\n props: nodeViewProps,\n\n emits: ['meeting-pill-close'],\n\n data () {\n return {\n i18n: new DialtoneLocalization(),\n };\n },\n\n computed: {\n closeButtonTitle () {\n return this.i18n.$t('DIALTONE_CLOSE_BUTTON');\n },\n },\n\n methods: {\n close (e) {\n // Get the callback from extension storage\n const onCloseCallback = this.editor?.storage?.meetingPill?.onClose;\n\n if (onCloseCallback && typeof onCloseCallback === 'function') {\n onCloseCallback(e);\n }\n },\n },\n};\n</script>\n","import { mergeAttributes, Node } from '@tiptap/core';\nimport { VueNodeViewRenderer } from '@tiptap/vue-2';\nimport MeetingPill from './MeetingPill.vue';\n\nexport default Node.create({\n name: 'meetingPill',\n\n atom: true,\n group: 'inline',\n inline: true,\n\n addOptions () {\n return {\n onClose: () => {},\n };\n },\n\n addStorage () {\n return {\n onClose: this.options.onClose,\n };\n },\n\n addNodeView () {\n return VueNodeViewRenderer(MeetingPill);\n },\n\n addAttributes () {\n return {\n text: {\n default: 'Please pass in \"text\" attribute',\n },\n };\n },\n\n parseHTML () {\n return [\n {\n tag: 'meeting-pill',\n },\n ];\n },\n\n renderText () {\n return '/dpm';\n },\n\n renderHTML ({ HTMLAttributes }) {\n return ['meeting-pill', mergeAttributes(HTMLAttributes)];\n },\n});\n","<!-- eslint-disable max-lines -->\n<template>\n <div\n data-qa=\"dt-recipe-message-input\"\n role=\"presentation\"\n class=\"d-recipe-message-input\"\n @dragover.prevent\n @drop.prevent=\"onDrop\"\n @paste=\"onPaste\"\n @mousedown=\"onMousedown\"\n >\n <!-- @slot Renders above the input, but still within the borders. -->\n <slot name=\"top\" />\n\n <!-- set key to selectedText to force update. otherwise this component may not reflect the active selection -->\n <dt-recipe-message-input-topbar\n v-if=\"richText\"\n :key=\"selectedText\"\n :bold-button-options=\"boldButtonOptions\"\n :italic-button-options=\"italicButtonOptions\"\n :strike-button-options=\"strikeButtonOptions\"\n :bullet-list-button-options=\"bulletListButtonOptions\"\n :ordered-list-button-options=\"orderedListButtonOptions\"\n :block-quote-button-options=\"blockQuoteButtonOptions\"\n :code-button-options=\"codeButtonOptions\"\n :code-block-button-options=\"codeBlockButtonOptions\"\n :is-selection-active=\"isSelectionActive\"\n @click=\"handleTopbarClick\"\n >\n <template #link>\n <dt-recipe-message-input-link\n ref=\"link\"\n :open=\"linkDialogOpen\"\n :link-button-options=\"linkButtonOptions\"\n :is-selection-active=\"isSelectionActive\"\n @opened=\"linkDialogOpened\"\n @set-link=\"setLink\"\n @remove-link=\"removeLink\"\n />\n </template>\n </dt-recipe-message-input-topbar>\n <!-- Some wrapper to restrict the height and show the scrollbar -->\n <div\n v-dt-scrollbar\n class=\"d-recipe-message-input__editor-wrapper\"\n :style=\"{ 'max-height': maxHeight }\"\n >\n <dt-rich-text-editor\n ref=\"richTextEditor\"\n v-model=\"internalInputValue\"\n :editable=\"editable\"\n :input-aria-label=\"inputAriaLabel\"\n :input-class=\"inputClass\"\n :output-format=\"outputFormat\"\n :auto-focus=\"autoFocus\"\n :link=\"richText\"\n :placeholder=\"placeholder\"\n :prevent-typing=\"preventTyping\"\n :mention-suggestion=\"mentionSuggestion\"\n :channel-suggestion=\"channelSuggestion\"\n :slash-command-suggestion=\"slashCommandSuggestion\"\n :paste-rich-text=\"richText\"\n :allow-blockquote=\"richText\"\n :allow-bold=\"richText\"\n :allow-bullet-list=\"richText\"\n :allow-code=\"richText\"\n :allow-codeblock=\"richText\"\n :allow-italic=\"richText\"\n :allow-strike=\"richText\"\n :allow-underline=\"richText\"\n :additional-extensions=\"additionalExtensions\"\n :hide-link-bubble-menu=\"hideLinkBubbleMenu\"\n v-bind=\"$attrs\"\n @input=\"onInput\"\n @text-input=\"onTextInput\"\n @enter=\"onSend\"\n @selected=\"selectedText = $event\"\n @selected-command=\"$emit('selected-command', $event)\"\n @edit-link=\"initLinkDialog\"\n @focus=\"isFocused = true\"\n @blur=\"isFocused = false\"\n v-on=\"$listeners\"\n />\n </div>\n <!-- @slot Slot for attachment carousel -->\n <slot name=\"middle\" />\n <!-- Section for the bottom UI -->\n <section class=\"d-recipe-message-input__bottom-section\">\n <!-- Left content -->\n <div class=\"d-recipe-message-input__bottom-section-left\">\n <dt-stack\n direction=\"row\"\n gap=\"200\"\n >\n <dt-button\n v-if=\"showImagePicker\"\n v-dt-tooltip:top-start=\"imagePickerButtonLabel\"\n data-qa=\"dt-recipe-message-input-image-btn\"\n size=\"sm\"\n class=\"d-recipe-message-input__button\"\n kind=\"muted\"\n importance=\"clear\"\n :aria-label=\"imagePickerButtonLabel\"\n @click=\"onSelectImage\"\n @mouseenter=\"imagePickerFocus = true\"\n @mouseleave=\"imagePickerFocus = false\"\n @focus=\"imagePickerFocus = true\"\n @blur=\"imagePickerFocus = false\"\n >\n <template #icon>\n <dt-icon-image size=\"300\" />\n </template>\n </dt-button>\n <dt-input\n ref=\"messageInputImageUpload\"\n data-qa=\"dt-recipe-message-input-image-input\"\n accept=\"image/*, video/*\"\n type=\"file\"\n class=\"d-recipe-message-input__image-input\"\n multiple\n hidden\n @input=\"onImageUpload\"\n />\n <dt-popover\n v-if=\"showEmojiPicker\"\n open.sync=\"emojiPickerOpened\"\n data-qa=\"dt-recipe-message-input-emoji-picker-popover\"\n initial-focus-element=\"#searchInput\"\n padding=\"none\"\n >\n <template #anchor=\"{ attrs }\">\n <dt-button\n v-dt-tooltip=\"emojiPickerButtonLabel\"\n v-bind=\"attrs\"\n data-qa=\"dt-recipe-message-input-emoji-picker-btn\"\n size=\"sm\"\n class=\"d-recipe-message-input__button\"\n kind=\"muted\"\n importance=\"clear\"\n :aria-label=\"emojiPickerButtonLabel\"\n @click=\"toggleEmojiPicker\"\n @mouseenter=\"emojiPickerFocus = true\"\n @mouseleave=\"emojiPickerFocus = false\"\n @focus=\"emojiPickerFocus = true\"\n @blur=\"emojiPickerFocus = false\"\n >\n <template #icon>\n <dt-icon-very-satisfied\n v-if=\"emojiPickerHovered\"\n size=\"300\"\n />\n <dt-icon-satisfied\n v-else\n size=\"300\"\n />\n </template>\n </dt-button>\n </template>\n <template #content=\"{ close }\">\n <dt-emoji-picker\n v-bind=\"emojiPickerProps\"\n @add-emoji=\"$emit('add-emoji')\"\n @skin-tone=\"onSkinTone\"\n @selected-emoji=\"(emoji) => onSelectEmoji(emoji, close)\"\n @scroll-bottom-reached=\"$emit('emoji-scroll-bottom-reached')\"\n />\n </template>\n </dt-popover>\n <!-- @slot Slot for emojiGiphy picker -->\n <slot name=\"emojiGiphyPicker\" />\n <!-- @slot Slot to add extra action icons next to default ones -->\n <slot name=\"customActionIcons\" />\n </dt-stack>\n </div>\n <!-- Right content -->\n <div class=\"d-recipe-message-input__bottom-section-right\">\n <dt-stack\n direction=\"row\"\n gap=\"300\"\n >\n <!-- @slot Slot for schedule message -->\n <div class=\"d-recipe-message-input__schedule-message\">\n <slot name=\"scheduleMessage\" />\n </div>\n\n <!-- @slot Slot for sms count -->\n <div class=\"d-recipe-message-input__sms-count\">\n <slot name=\"smsCount\" />\n </div>\n\n <!-- Optionally displayed remaining character counter -->\n <dt-tooltip\n v-if=\"Boolean(showCharacterLimit)\"\n class=\"d-recipe-message-input__remaining-char-tooltip\"\n placement=\"top-end\"\n :enabled=\"characterLimitTooltipEnabled\"\n :message=\"showCharacterLimit.message\"\n :offset=\"[10, 8]\"\n >\n <template #anchor>\n <p\n v-show=\"displayCharacterLimitWarning\"\n class=\"d-recipe-message-input__remaining-char\"\n data-qa=\"dt-recipe-message-input-character-limit\"\n >\n {{ showCharacterLimit.count - inputLength }}\n </p>\n </template>\n </dt-tooltip>\n\n <!-- Cancel button for edit mode -->\n <dt-button\n v-if=\"showCancel\"\n v-dt-tooltip=\"cancelButtonLabel\"\n data-qa=\"dt-recipe-message-input-cancel-button\"\n class=\"d-recipe-message-input__button d-recipe-message-input__cancel-button\"\n size=\"sm\"\n kind=\"muted\"\n importance=\"clear\"\n :aria-label=\"cancelButtonLabel\"\n @click=\"onCancel\"\n >\n <p>{{ cancelButtonLabel }}</p>\n </dt-button>\n\n <!-- @slot Slot for sendButton picker -->\n <slot name=\"sendButton\">\n <!-- Send button -->\n <!-- Right positioned UI - send button -->\n <dt-button\n v-if=\"showSend\"\n v-dt-tooltip:top-end=\"sendButtonLabel\"\n data-qa=\"dt-recipe-message-input-send-btn\"\n size=\"sm\"\n kind=\"default\"\n importance=\"primary\"\n :class=\"[\n 'd-recipe-message-input__button d-recipe-message-input__send-button',\n {\n 'd-recipe-message-input__send-button--disabled': isSendDisabled,\n 'd-btn--icon-only': showSendIcon,\n },\n ]\"\n :aria-label=\"sendButtonLabel\"\n :aria-disabled=\"isSendDisabled\"\n @click=\"onSend\"\n >\n <template\n v-if=\"showSendIcon\"\n #icon\n >\n <!-- @slot Slot for send button icon -->\n <slot\n name=\"sendIcon\"\n :icon-size=\"sendIconSize\"\n >\n <dt-icon-send\n :size=\"sendIconSize\"\n />\n </slot>\n </template>\n <template\n v-if=\"showSend.text\"\n >\n <p>{{ showSend.text }}</p>\n </template>\n </dt-button>\n </slot>\n </dt-stack>\n </div>\n </section>\n </div>\n</template>\n\n<script>\n/* eslint-disable max-lines */\nimport {\n DtRichTextEditor,\n RICH_TEXT_EDITOR_OUTPUT_FORMATS,\n RICH_TEXT_EDITOR_AUTOFOCUS_TYPES,\n} from '@/components/rich_text_editor';\nimport lastActiveNodes from './last_active_nodes';\nimport MeetingPill from './extensions/meeting_pill/meeting_pill';\nimport { DtButton } from '@/components/button';\nimport { DtEmojiPicker } from '@/components/emoji_picker';\nimport { DtPopover } from '@/components/popover';\nimport { DtInput } from '@/components/input';\nimport { DtTooltip } from '@/components/tooltip';\nimport { DtStack } from '@/components/stack';\nimport {\n DtIconImage, DtIconVerySatisfied, DtIconSatisfied, DtIconSend,\n} from '@dialpad/dialtone-icons/vue2';\nimport DtRecipeMessageInputTopbar from './message_input_topbar.vue';\nimport DtRecipeMessageInputLink from './message_input_link.vue';\nimport { DialtoneLocalization } from '@/localization';\n\nimport {\n EDITOR_SUPPORTED_LINK_PROTOCOLS,\n EDITOR_DEFAULT_LINK_PREFIX,\n} from '../editor/editor_constants.js';\n\nexport default {\n name: 'DtRecipeMessageInput',\n\n components: {\n DtButton,\n DtEmojiPicker,\n DtInput,\n DtPopover,\n DtRecipeMessageInputTopbar,\n DtRecipeMessageInputLink,\n DtRichTextEditor,\n DtTooltip,\n DtStack,\n DtIconImage,\n DtIconVerySatisfied,\n DtIconSatisfied,\n DtIconSend,\n },\n\n inheritAttrs: false,\n\n props: {\n /**\n * Displays all the buttons for rich text formatting above the message input, and enables it within the editor.\n * Rich text formatting for the purposes of this component is defined as:\n *\n * bold, italic, strikethrough, lists, blockquotes, inline code tags, and code blocks.\n *\n * If you are sending a message to a phone rather than a Dialpad to Dialpad message, you should have this as false.\n */\n richText: {\n type: Boolean,\n default: true,\n },\n\n /**\n * Value of the input. The object format should match TipTap's JSON\n * document structure: https://tiptap.dev/guide/output#option-1-json\n */\n value: {\n type: [Object, String],\n default: '',\n },\n\n /**\n * Whether the input is editable\n */\n editable: {\n type: Boolean,\n default: true,\n },\n\n /**\n * Descriptive label for the input element\n */\n inputAriaLabel: {\n type: String,\n required: true,\n default: '',\n },\n\n /**\n * Prevents the user from typing any further. Deleting text will still work.\n */\n preventTyping: {\n type: Boolean,\n default: false,\n },\n\n /**\n * Additional class name for the input element. Only accepts a String value\n * because this is passed to the editor via options. For multiple classes,\n * join them into one string, e.g. \"d-p8 d-hmx96\"\n */\n inputClass: {\n type: String,\n default: '',\n },\n\n /**\n * Whether the input should receive focus after the component has been\n * mounted. Either one of `start`, `end`, `all` or a Boolean or a Number.\n * - `start` Sets the focus to the beginning of the input\n * - `end` Sets the focus to the end of the input\n * - `all` Selects the whole contents of the input\n * - `Number` Sets the focus to a specific position in the input\n * - `true` Defaults to `start`\n * - `false` Disables autofocus\n * @values true, false, start, end, all, number\n */\n autoFocus: {\n type: [Boolean, String, Number],\n default: false,\n validator (autoFocus) {\n if (typeof autoFocus === 'string') {\n return RICH_TEXT_EDITOR_AUTOFOCUS_TYPES.includes(autoFocus);\n }\n return true;\n },\n },\n\n /**\n * The output format that the editor uses when emitting the \"@input\" event.\n * One of `text`, `json`, `html`. See https://tiptap.dev/guide/output for\n * examples.\n * @values text, json, html\n */\n outputFormat: {\n type: String,\n default: 'json',\n validator (outputFormat) {\n return RICH_TEXT_EDITOR_OUTPUT_FORMATS.includes(outputFormat);\n },\n },\n\n /**\n * Placeholder text\n */\n placeholder: {\n type: String,\n default: '',\n },\n\n /**\n * Disable Send Button\n */\n disableSend: {\n type: Boolean,\n default: false,\n },\n\n /**\n * Content area needs to dynamically adjust height based on the conversation area height.\n * can be vh|px|rem|em|%\n */\n maxHeight: {\n type: String,\n default: 'unset',\n },\n\n // Emoji picker props\n showEmojiPicker: {\n type: Boolean,\n default: true,\n },\n\n /**\n * Props to pass into the emoji picker.\n */\n emojiPickerProps: {\n type: Object,\n default: () => ({}),\n },\n\n /**\n * Enable character Limit warning\n */\n showCharacterLimit: {\n type: [Boolean, Object],\n default: () => ({ count: 1500, warning: 500, message: '' }),\n },\n\n showImagePicker: {\n type: [Boolean, Object],\n default: () => ({}),\n },\n\n /**\n * Send button defaults.\n * TODO (Dialtone 10):\n * - Change to `showSendButton`, boolean only.\n */\n showSend: {\n type: [Boolean, Object],\n default: () => ({}),\n },\n\n /**\n * TODO (Dialtone 10):\n * - Add a prop `iconOnly` default: true to control if localized send button text should be shown\n */\n\n /**\n * Cancel button defaults.\n * TODO (Dialtone 10): Change to `showCancelButton`, boolean only.\n */\n showCancel: {\n type: [Boolean, Object],\n default: () => ({}),\n },\n\n /**\n * suggestion object containing the items query function.\n * The valid keys passed into this object can be found here: https://tiptap.dev/api/utilities/suggestion\n *\n * The only required key is the items function which is used to query the contacts for suggestion.\n * items({ query }) => { return [ContactObject]; }\n * ContactObject format:\n * { name: string, avatarSrc: string, id: string }\n *\n * When null, it does not add the plugin.\n */\n mentionSuggestion: {\n type: Object,\n default: null,\n },\n\n /**\n * suggestion object containing the items query function.\n * The valid keys passed into this object can be found here: https://tiptap.dev/api/utilities/suggestion\n *\n * The only required key is the items function which is used to query the channels for suggestion.\n * items({ query }) => { return [ChannelObject]; }\n * ChannelObject format:\n * { name: string, id: string, locked: boolean }\n *\n * When null, it does not add the plugin. Setting locked to true will display a lock rather than hash.\n */\n channelSuggestion: {\n type: Object,\n default: null,\n },\n\n /**\n * suggestion object containing the items query function.\n * The valid keys passed into this object can be found here: https://tiptap.dev/api/utilities/suggestion\n *\n * The only required key is the items function which is used to query the slash commands for suggestion.\n * items({ query }) => { return [SlashCommandObject]; }\n * SlashCommandObject format:\n * { command: string, description: string, parametersExample?: string }\n * The \"parametersExample\" parameter is optional, and describes an example\n * of the parameters that command can take.\n *\n * When null, it does not add the plugin.\n */\n slashCommandSuggestion: {\n type: Object,\n default: null,\n },\n\n /**\n * descriptive text fields for the bold button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n boldButtonOptions: {\n type: Object,\n default: () => ({\n keyboardShortcutText: 'Mod + B',\n }),\n },\n\n /**\n * descriptive text fields for the italic button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n italicButtonOptions: {\n type: Object,\n default: () => ({\n keyboardShortcutText: 'Mod + I',\n }),\n },\n\n /**\n * descriptive text fields for the strikethrough button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n strikeButtonOptions: {\n type: Object,\n default: () => ({\n keyboardShortcutText: 'Mod + Shift + S',\n }),\n },\n\n /**\n * descriptive text fields for the link button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n linkButtonOptions: {\n type: Object,\n default: () => ({\n // TODO: implement mod k\n keyboardShortcutText: 'Mod + K',\n linkPlaceholder: 'e.g. https://www.dialpad.com',\n }),\n },\n\n /**\n * descriptive text fields for the bullet list button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n bulletListButtonOptions: {\n type: Object,\n default: () => ({\n keyboardShortcutText: 'Mod + Shift + 8',\n }),\n },\n\n /**\n * descriptive text fields for the ordered list button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n orderedListButtonOptions: {\n type: Object,\n default: () => ({\n keyboardShortcutText: 'Mod + Shift + 7',\n }),\n },\n\n /**\n * descriptive text fields for the italic button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n blockQuoteButtonOptions: {\n type: Object,\n default: () => ({\n keyboardShortcutText: 'Mod + Shift + B',\n }),\n },\n\n /**\n * descriptive text fields for the code button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n codeButtonOptions: {\n type: Object,\n default: () => ({\n keyboardShortcutText: 'Mod + E',\n }),\n },\n\n /**\n * descriptive text fields for the code block button\n *\n * object format:\n * { keyboardShortcutText: string }\n */\n codeBlockButtonOptions: {\n type: Object,\n default: () => ({\n keyboardShortcutText: 'Mod + Alt + C',\n }),\n },\n },\n\n emits: [\n /**\n * Fires when send button is clicked\n *\n * @event submit\n * @type {String}\n */\n 'submit',\n\n /**\n * Fires when media is selected from image button\n *\n * @event select-media\n * @type {Array}\n */\n 'select-media',\n\n /**\n * Fires when media is dropped into the message input\n *\n * @event add-media\n * @type {Array}\n */\n 'add-media',\n\n /**\n * Fires when media is pasted into the message input\n *\n * @event paste-media\n * @type {Array}\n */\n 'paste-media',\n\n /**\n * Fires when cancel button is pressed (only on edit mode)\n *\n * @event cancel\n * @type {Boolean}\n */\n 'cancel',\n\n /**\n * Fires when skin tone is selected from the emoji picker\n *\n * @event skin-tone\n * @type {String}\n */\n 'skin-tone',\n\n /**\n * Fires when emoji is selected from the emoji picker\n *\n * @event selected-emoji\n * @type {String}\n */\n 'selected-emoji',\n\n /**\n * Fires when a slash command is selected\n *\n * @event selected-command\n * @type {String}\n */\n 'selected-command',\n\n /**\n * Fires when meeting pill is closed\n *\n * @event meeting-pill-close\n * @type {String}\n */\n 'meeting-pill-close',\n\n /**\n * Event to sync the value with the parent\n * @event update:value\n * @type {String|JSON}\n */\n 'update:value',\n\n /**\n * Emitted when input changes, returns text content only\n * @event text-input\n * @type {String}\n */\n 'text-input',\n\n /**\n * Emitted when the 'Add emoji' button is clicked\n * @event add-emoji\n * @type {Boolean}\n */\n 'add-emoji',\n\n /**\n * Emitted when the emoji picker scroll reaches the bottom\n * @event emoji-scroll-bottom-reached\n */\n 'emoji-scroll-bottom-reached',\n ],\n\n data () {\n return {\n // If an ordered list is nested within an unordered list, we only want to show the currently selected list as\n // active. This function performs the logic to determine the farthest active node from the root.\n lastActiveNodes,\n additionalExtensions: [\n MeetingPill.configure({\n onClose: (event) => {\n this.$emit('meeting-pill-close', event);\n },\n }),\n ],\n\n internalInputValue: this.value, // internal input content\n imagePickerFocus: false,\n emojiPickerFocus: false,\n emojiPickerOpened: false,\n isFocused: false,\n linkOptions: {\n class: 'd-link d-c-text d-d-inline-block',\n },\n\n linkDialogOpen: false,\n selectedText: '',\n text: '',\n hideLinkBubbleMenu: false,\n i18n: new DialtoneLocalization(),\n };\n },\n\n computed: {\n showSendIcon () {\n return !this.showSend.text;\n },\n\n inputLength () {\n return this.text.length;\n },\n\n displayCharacterLimitWarning () {\n return Boolean(this.showCharacterLimit) &&\n ((this.showCharacterLimit.count - this.inputLength) <= this.showCharacterLimit.warning);\n },\n\n characterLimitTooltipEnabled () {\n return this.showCharacterLimit.message && (this.showCharacterLimit.count - this.inputLength < 0);\n },\n\n isSendDisabled () {\n return this.disableSend ||\n (this.showCharacterLimit && this.inputLength > this.showCharacterLimit.count);\n },\n\n emojiPickerHovered () {\n return this.emojiPickerFocus || this.emojiPickerOpened;\n },\n\n sendIconSize () {\n return '300';\n },\n\n sendButtonLabel () {\n return this.i18n.$t('DIALTONE_MESSAGE_INPUT_SEND_BUTTON_ARIA_LABEL');\n },\n\n imagePickerButtonLabel () {\n return this.i18n.$t('DIALTONE_MESSAGE_INPUT_IMAGE_PICKER_BUTTON_ARIA_LABEL');\n },\n\n emojiPickerButtonLabel () {\n return this.i18n.$t('DIALTONE_MESSAGE_INPUT_EMOJI_PICKER_BUTTON_ARIA_LABEL');\n },\n\n cancelButtonLabel () {\n return this.i18n.$t('DIALTONE_MESSAGE_INPUT_CANCEL_BUTTON_ARIA_LABEL');\n },\n },\n\n watch: {\n value (newValue) {\n this.internalInputValue = newValue;\n },\n\n emojiPickerOpened (newValue) {\n if (!newValue) {\n this.$refs.richTextEditor?.focusEditor();\n }\n },\n },\n\n created () {\n if (this.value && this.outputFormat === 'text') {\n this.internalInputValue = this.value.replace(/\\n/g, '<br>');\n } else {\n this.internalInputValue = this.value;\n }\n },\n\n methods: {\n linkDialogOpened (value) {\n this.linkDialogOpen = value;\n if (value === true) {\n this.initLinkDialog();\n } else {\n this.hideLinkBubbleMenu = false;\n this.$refs.richTextEditor?.focusEditor();\n }\n },\n\n handleTopbarClick (type) {\n const editor = this.$refs.richTextEditor?.editor;\n // Key is the name returned in the event, value is the name of the TipTap command function to run.\n const typeToCommandMap = {\n bold: () => editor?.chain().focus().toggleBold().run(),\n italic: () => editor?.chain().focus().toggleItalic().run(),\n strike: () => editor?.chain().focus().toggleStrike().run(),\n bulletList: () => editor?.chain().focus().toggleBulletList().run(),\n orderedList: () => editor?.chain().focus().toggleOrderedList().run(),\n blockquote: () => editor?.chain().focus().toggleBlockquote().run(),\n code: () => editor?.chain().focus().toggleCode().run(),\n codeBlock: () => editor?.chain().focus().toggleCodeBlock().run(),\n };\n\n if (editor && typeToCommandMap[type]) {\n typeToCommandMap[type]();\n }\n },\n\n // Checks if the node currently selected is active ex/ the bold button is active if the selected text is bold\n \n isSelectionActive (type) {\n if (['bulletList', 'orderedList'].includes(type)) {\n return this.lastActiveNodes(this.$refs.richTextEditor?.editor?.state, [{ type: 'bulletList' }, { type: 'orderedList' }]).includes(type) && this.isFocused;\n }\n return this.$refs.richTextEditor?.editor?.isActive(type) && this.isFocused;\n },\n\n initLinkDialog () {\n this.$refs.link.setInitialValues(this.selectedText, this.$refs.richTextEditor?.editor?.getAttributes('link')?.href);\n this.hideLinkBubbleMenu = true;\n this.linkDialogOpen = true;\n },\n\n removeLink () {\n this.$refs.richTextEditor?.removeLink();\n this.linkDialogOpen = false;\n },\n\n setLink (linkText, linkInput) {\n this.$refs.richTextEditor.setLink(\n linkInput, linkText, this.linkOptions, EDITOR_SUPPORTED_LINK_PROTOCOLS, EDITOR_DEFAULT_LINK_PREFIX,\n );\n this.linkDialogOpen = false;\n },\n\n // Mousedown instead of click because it fires before the blur event.\n onMousedown (e) {\n const isWithinInput = this.$refs.richTextEditor.$el.querySelector('.tiptap').contains(e.target);\n\n // If the click is not within the tiptap rich text editor input itself, but still within the wrapping div,\n // focus the editor.\n if (!isWithinInput) {\n // Prevent default prevents blurring the rich text editor input when it is already focused.\n e.preventDefault();\n this.$refs.richTextEditor.focusEditor();\n }\n },\n\n onDrop (e) {\n const dt = e.dataTransfer;\n const files = Array.from(dt.files);\n this.$emit('add-media', files);\n },\n\n onPaste (e) {\n if (e.clipboardData.files.length) {\n e.stopPropagation();\n e.preventDefault();\n const files = [...e.clipboardData.files];\n this.$emit('paste-media', files);\n }\n },\n\n onSkinTone (skinTone) {\n this.$emit('skin-tone', skinTone);\n },\n\n onSelectEmoji (emoji, close) {\n if (!emoji) {\n return;\n }\n\n if (!emoji.shift_key) {\n close();\n }\n\n // Insert emoji into the editor\n this.$refs.richTextEditor.editor.commands.insertContent({\n type: 'emoji',\n attrs: {\n code: emoji.shortname,\n image: emoji.image,\n name: emoji.name,\n },\n });\n this.$emit('selected-emoji', emoji);\n },\n\n onSelectImage () {\n this.$refs.messageInputImageUpload.$refs.input.click();\n },\n\n onImageUpload () {\n this.$emit('select-media', this.$refs.messageInputImageUpload.$refs.input.files);\n },\n\n toggleEmojiPicker () {\n this.emojiPickerOpened = !this.emojiPickerOpened;\n },\n\n onSend () {\n if (this.isSendDisabled) {\n return;\n }\n this.$emit('submit', this.internalInputValue);\n },\n\n onCancel () {\n this.$emit('cancel');\n },\n\n onInput (event) {\n this.$emit('update:value', event);\n },\n\n onTextInput (event) {\n this.text = event;\n this.$emit('text-input', event);\n },\n },\n};\n</script>\n"],"names":["_sfc_main","NodeViewWrapper","DtItemLayout","DtIconClose","DtButton","DtIconVideo","nodeViewProps","DialtoneLocalization","e","onCloseCallback","_c","_b","_a","MeetingPill","Node","VueNodeViewRenderer","HTMLAttributes","mergeAttributes","DtEmojiPicker","DtInput","DtPopover","DtRecipeMessageInputTopbar","DtRecipeMessageInputLink","DtRichTextEditor","DtTooltip","DtStack","DtIconImage","DtIconVerySatisfied","DtIconSatisfied","DtIconSend","autoFocus","RICH_TEXT_EDITOR_AUTOFOCUS_TYPES","outputFormat","RICH_TEXT_EDITOR_OUTPUT_FORMATS","lastActiveNodes","event","newValue","value","type","editor","typeToCommandMap","_d","linkText","linkInput","EDITOR_SUPPORTED_LINK_PROTOCOLS","EDITOR_DEFAULT_LINK_PREFIX","dt","files","skinTone","emoji","close"],"mappings":"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"}
|
|
@@ -64,8 +64,8 @@ DIALTONE_EMOJI_ROW_REACTION_LABEL =
|
|
|
64
64
|
}
|
|
65
65
|
*[other]
|
|
66
66
|
{ $youIncluded ->
|
|
67
|
-
*[true]
|
|
68
|
-
[false]
|
|
67
|
+
*[true] reagierten mit { $reaction }
|
|
68
|
+
[false] reagierten mit { $reaction }
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
DIALTONE_EMOJI_PICKER_ADD_EMOJI_LABEL = Emoji hinzufügen
|
|
@@ -166,7 +166,7 @@ STORYBOOK_LANGUAGE_RUSSIAN = Russisch
|
|
|
166
166
|
STORYBOOK_LANGUAGE_SPANISH = Spanisch
|
|
167
167
|
STORYBOOK_SET_LANGUAGE = Sprache einstellen
|
|
168
168
|
STORYBOOK_YOU = Sie selbst
|
|
169
|
-
STORYBOOK_REACTION_NAMES_2 = Olivia Chen, Benjamin Carter, Sophia Rodriguez, William Kim
|
|
169
|
+
STORYBOOK_REACTION_NAMES_2 = Olivia Chen, Benjamin Carter, Sophia Rodriguez, William Kim & Isabella Garcia
|
|
170
170
|
STORYBOOK_REACTION_NAMES_3 = Olivia Chen & { STORYBOOK_YOU }
|
|
171
171
|
`;exports.default=_;
|
|
172
172
|
//# sourceMappingURL=de-DE.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"de-DE.cjs","sources":["../../localization/de-DE.ftl?raw"],"sourcesContent":["export default \"# Dialtone\\nDIALTONE_CLOSE_BUTTON = Zum Schließen klicken\\nDIALTONE_BREADCRUMBS_ARIA_LABEL = Brotkrumen\\nDIALTONE_LOADING = Lädt ...\\nDIALTONE_UNREAD_MESSAGE_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Keine ungelesenen Nachrichten\\n [1] 1 ungelesene Nachricht\\n *[other] { $unreadCount } ungelesene Nachrichten\\n }\\nDIALTONE_UNREAD_MENTION_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Keine ungelesenen Erwähnungen\\n [1] 1 ungelesene Erwähnung\\n *[other] { $unreadCount } ungelesene Erwähnungen\\n }\\nDIALTONE_TYPING_TEXT = schreibt\\nDIALTONE_ATTACHMENT_CAROUSEL_CLICK_TO_OPEN_ARIA_LABEL = Zum Öffnen klicken\\nDIALTONE_ATTACHMENT_CAROUSEL_PROGRESS_BAR_ARIA_LABEL = Wird hochgeladen\\nDIALTONE_ATTACHMENT_CAROUSEL_LEFT_ARROW_ARIA_LABEL = Vorherig\\nDIALTONE_ATTACHMENT_CAROUSEL_RIGHT_ARROW_ARIA_LABEL = Weiter\\nDIALTONE_CALLBAR_BUTTON_WITH_DROPDOWN_ARROW_BUTTON_ARIA_LABEL = Dropdown-Menü öffnen\\nDIALTONE_CALLBAR_BUTTON_WITH_POPOVER_ARROW_BUTTON_ARIA_LABEL = Popover öffnen\\nDIALTONE_CONTACT_CENTERS_ROW_MENU_BUTTON_LABEL = Menü öffnen\\nDIALTONE_DATEPICKER_PREVIOUS_MONTH = Vorheriger Monat\\nDIALTONE_DATEPICKER_NEXT_MONTH = nächsten Monat\\nDIALTONE_DATEPICKER_PREVIOUS_YEAR = Vorheriges Jahr\\nDIALTONE_DATEPICKER_NEXT_YEAR = nächstes Jahr\\nDIALTONE_DATEPICKER_SELECT_DAY = Tag auswählen\\nDIALTONE_DATEPICKER_CHANGE_TO = Wechseln zu\\nDIALTONE_EDITOR_CONFIRM_SET_LINK_BUTTON =\\n .title = Bestätigen\\n .aria-label = Gesetzten Link bestätigen\\nDIALTONE_EDITOR_REMOVE_LINK_BUTTON =\\n .title = Entfernen\\n .aria-label = Link entfernen\\nDIALTONE_EDITOR_CANCEL_SET_LINK_BUTTON =\\n .title = ABBRECHEN\\n .aria-label = Set-Link abbrechen\\nDIALTONE_EDITOR_QUICK_REPLY_BUTTON_LABEL = Vorlage\\nDIALTONE_EDITOR_BOLD_BUTTON_LABEL = Fett\\nDIALTONE_EDITOR_ITALICS_BUTTON_LABEL = Kursiv\\nDIALTONE_EDITOR_UNDERLINE_BUTTON_LABEL = Unterstreichen\\nDIALTONE_EDITOR_STRIKE_BUTTON_LABEL = Durchstreichen\\nDIALTONE_EDITOR_ALIGN_LEFT_BUTTON_LABEL = Linksbündig ausrichten\\nDIALTONE_EDITOR_ALIGN_CENTER_BUTTON_LABEL = Zentriert ausrichten\\nDIALTONE_EDITOR_ALIGN_RIGHT_BUTTON_LABEL = Rechtsbündig ausrichten\\nDIALTONE_EDITOR_ALIGN_JUSTIFY_BUTTON_LABEL = Blocksatz ausrichten\\nDIALTONE_EDITOR_BULLET_LIST_BUTTON_LABEL = Aufzählung\\nDIALTONE_EDITOR_ORDERED_LIST_BUTTON_LABEL = Geordnete Liste\\nDIALTONE_EDITOR_QUOTE_BUTTON_LABEL = Zitieren\\nDIALTONE_EDITOR_CODE_BUTTON_LABEL = Code\\nDIALTONE_EDITOR_IMAGE_BUTTON_LABEL = Bild\\nDIALTONE_EDITOR_LINK_BUTTON_LABEL = Link\\nDIALTONE_EDITOR_ADD_LINK_BUTTON =\\n .title = Link hinzufügen\\n .aria-label = Eingabefeld zum Hinzufügen eines Links\\nDIALTONE_EMOJI_ROW_REACTION_LABEL =\\n { $personCount ->\\n [one]\\n { $youIncluded ->\\n *[true] reagierte mit { $reaction }\\n [false] reagierte mit { $reaction }\\n }\\n *[other]\\n { $youIncluded ->\\n *[true]
|
|
1
|
+
{"version":3,"file":"de-DE.cjs","sources":["../../localization/de-DE.ftl?raw"],"sourcesContent":["export default \"# Dialtone\\nDIALTONE_CLOSE_BUTTON = Zum Schließen klicken\\nDIALTONE_BREADCRUMBS_ARIA_LABEL = Brotkrumen\\nDIALTONE_LOADING = Lädt ...\\nDIALTONE_UNREAD_MESSAGE_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Keine ungelesenen Nachrichten\\n [1] 1 ungelesene Nachricht\\n *[other] { $unreadCount } ungelesene Nachrichten\\n }\\nDIALTONE_UNREAD_MENTION_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Keine ungelesenen Erwähnungen\\n [1] 1 ungelesene Erwähnung\\n *[other] { $unreadCount } ungelesene Erwähnungen\\n }\\nDIALTONE_TYPING_TEXT = schreibt\\nDIALTONE_ATTACHMENT_CAROUSEL_CLICK_TO_OPEN_ARIA_LABEL = Zum Öffnen klicken\\nDIALTONE_ATTACHMENT_CAROUSEL_PROGRESS_BAR_ARIA_LABEL = Wird hochgeladen\\nDIALTONE_ATTACHMENT_CAROUSEL_LEFT_ARROW_ARIA_LABEL = Vorherig\\nDIALTONE_ATTACHMENT_CAROUSEL_RIGHT_ARROW_ARIA_LABEL = Weiter\\nDIALTONE_CALLBAR_BUTTON_WITH_DROPDOWN_ARROW_BUTTON_ARIA_LABEL = Dropdown-Menü öffnen\\nDIALTONE_CALLBAR_BUTTON_WITH_POPOVER_ARROW_BUTTON_ARIA_LABEL = Popover öffnen\\nDIALTONE_CONTACT_CENTERS_ROW_MENU_BUTTON_LABEL = Menü öffnen\\nDIALTONE_DATEPICKER_PREVIOUS_MONTH = Vorheriger Monat\\nDIALTONE_DATEPICKER_NEXT_MONTH = nächsten Monat\\nDIALTONE_DATEPICKER_PREVIOUS_YEAR = Vorheriges Jahr\\nDIALTONE_DATEPICKER_NEXT_YEAR = nächstes Jahr\\nDIALTONE_DATEPICKER_SELECT_DAY = Tag auswählen\\nDIALTONE_DATEPICKER_CHANGE_TO = Wechseln zu\\nDIALTONE_EDITOR_CONFIRM_SET_LINK_BUTTON =\\n .title = Bestätigen\\n .aria-label = Gesetzten Link bestätigen\\nDIALTONE_EDITOR_REMOVE_LINK_BUTTON =\\n .title = Entfernen\\n .aria-label = Link entfernen\\nDIALTONE_EDITOR_CANCEL_SET_LINK_BUTTON =\\n .title = ABBRECHEN\\n .aria-label = Set-Link abbrechen\\nDIALTONE_EDITOR_QUICK_REPLY_BUTTON_LABEL = Vorlage\\nDIALTONE_EDITOR_BOLD_BUTTON_LABEL = Fett\\nDIALTONE_EDITOR_ITALICS_BUTTON_LABEL = Kursiv\\nDIALTONE_EDITOR_UNDERLINE_BUTTON_LABEL = Unterstreichen\\nDIALTONE_EDITOR_STRIKE_BUTTON_LABEL = Durchstreichen\\nDIALTONE_EDITOR_ALIGN_LEFT_BUTTON_LABEL = Linksbündig ausrichten\\nDIALTONE_EDITOR_ALIGN_CENTER_BUTTON_LABEL = Zentriert ausrichten\\nDIALTONE_EDITOR_ALIGN_RIGHT_BUTTON_LABEL = Rechtsbündig ausrichten\\nDIALTONE_EDITOR_ALIGN_JUSTIFY_BUTTON_LABEL = Blocksatz ausrichten\\nDIALTONE_EDITOR_BULLET_LIST_BUTTON_LABEL = Aufzählung\\nDIALTONE_EDITOR_ORDERED_LIST_BUTTON_LABEL = Geordnete Liste\\nDIALTONE_EDITOR_QUOTE_BUTTON_LABEL = Zitieren\\nDIALTONE_EDITOR_CODE_BUTTON_LABEL = Code\\nDIALTONE_EDITOR_IMAGE_BUTTON_LABEL = Bild\\nDIALTONE_EDITOR_LINK_BUTTON_LABEL = Link\\nDIALTONE_EDITOR_ADD_LINK_BUTTON =\\n .title = Link hinzufügen\\n .aria-label = Eingabefeld zum Hinzufügen eines Links\\nDIALTONE_EMOJI_ROW_REACTION_LABEL =\\n { $personCount ->\\n [one]\\n { $youIncluded ->\\n *[true] reagierte mit { $reaction }\\n [false] reagierte mit { $reaction }\\n }\\n *[other]\\n { $youIncluded ->\\n *[true] reagierten mit { $reaction }\\n [false] reagierten mit { $reaction }\\n }\\n }\\nDIALTONE_EMOJI_PICKER_ADD_EMOJI_LABEL = Emoji hinzufügen\\nDIALTONE_EMOJI_PICKER_SEARCH_NO_RESULTS_LABEL = Keine Ergebnisse\\nDIALTONE_EMOJI_PICKER_SEARCH_RESULTS_LABEL = Suchergebnisse\\nDIALTONE_EMOJI_PICKER_SEARCH_PLACEHOLDER_LABEL = Suchen ...\\nDIALTONE_EMOJI_PICKER_SKIN_SELECTOR_BUTTON_TOOLTIP_LABEL = Standardhautton verändern\\nDIALTONE_EMOJI_PICKER_TABSET_RECENTLY_USED_LABEL = Zuletzt verwendet\\nDIALTONE_EMOJI_PICKER_TABSET_SMILEYS_AND_PEOPLE_LABEL = Smileys und Menschen\\nDIALTONE_EMOJI_PICKER_TABSET_NATURE_LABEL = Natur\\nDIALTONE_EMOJI_PICKER_TABSET_FOOD_LABEL = Essen\\nDIALTONE_EMOJI_PICKER_TABSET_ACTIVITY_LABEL = Aktivität\\nDIALTONE_EMOJI_PICKER_TABSET_TRAVEL_LABEL = Reisen\\nDIALTONE_EMOJI_PICKER_TABSET_OBJECTS_LABEL = Objekte\\nDIALTONE_EMOJI_PICKER_TABSET_SYMBOLS_LABEL = Symbole\\nDIALTONE_EMOJI_PICKER_TABSET_FLAGS_LABEL = Flaggen\\nDIALTONE_EMOJI_PICKER_TABSET_CUSTOM_LABEL = Benutzerdefiniert\\nDIALTONE_FEED_ITEM_PILL_ARIA_LABEL = Zum Vergrößern anklicken\\nDIALTONE_GENERAL_ROW_ACTIVE_VOICE_CHAT_TEXT = Aktiver Voice-Chat\\nDIALTONE_GENERAL_ROW_CALL_BUTTON_TOOLTIP = Anruf\\nDIALTONE_GENERAL_ROW_DND_TEXT_TOOLTIP = Bitte nicht stören\\nDIALTONE_GROUP_ROW_GROUP_COUNT_TEXT =\\n { $count ->\\n [1] 1 Benutzer\\n *[other] { $count } Benutzer\\n }\\nDIALTONE_IVR_NODE_MENU_BUTTON_ARIA_LABEL = Menü öffnen\\nDIALTONE_IVR_NODE_PROMPTMENU_ARIA_LABEL = Prompt-Menü-Knoten\\nDIALTONE_IVR_NODE_PROMPTCOLLECT_ARIA_LABEL = Prompterfassung-Knoten\\nDIALTONE_IVR_NODE_PROMPTPLAY_ARIA_LABEL = Promptwiedergabe-Knoten\\nDIALTONE_IVR_NODE_GOTOEXPERT_ARIA_LABEL = Zum Expertenknoten wechseln\\nDIALTONE_IVR_NODE_BRANCH_ARIA_LABEL = Zweigknoten\\nDIALTONE_IVR_NODE_GOTO_ARIA_LABEL = Zu Knoten gehen\\nDIALTONE_IVR_NODE_ASSIGN_ARIA_LABEL = Knoten zuweisen\\nDIALTONE_IVR_NODE_CUSTOMERDATA_ARIA_LABEL = Kundendaten-Knoten\\nDIALTONE_IVR_NODE_TRANSFER_ARIA_LABEL = Knoten übertragen\\nDIALTONE_IVR_NODE_HANGUP_ARIA_LABEL = Auflegen-Knoten\\nDIALTONE_MESSAGE_INPUT_SEND_BUTTON_ARIA_LABEL = Senden\\nDIALTONE_MESSAGE_INPUT_IMAGE_PICKER_BUTTON_ARIA_LABEL = Bild anhängen\\nDIALTONE_MESSAGE_INPUT_EMOJI_PICKER_BUTTON_ARIA_LABEL = Emoji auswählen\\nDIALTONE_MESSAGE_INPUT_CANCEL_BUTTON_ARIA_LABEL = ABBRECHEN\\nDIALTONE_MESSAGE_INPUT_BOLD_BUTTON_LABEL =\\n .aria-label = Ausgewählten Text auf fett umschalten\\n .tooltip-text = Fett\\nDIALTONE_MESSAGE_INPUT_ITALIC_BUTTON_LABEL =\\n .aria-label = Ausgewählten Text auf kursiv umschalten\\n .tooltip-text = Kursiv\\nDIALTONE_MESSAGE_INPUT_STRIKETHROUGH_BUTTON_LABEL =\\n .aria-label = Markierten Text durchstreichen\\n .tooltip-text = Durchstreichen\\nDIALTONE_MESSAGE_INPUT_BULLET_LIST_BUTTON_LABEL =\\n .aria-label = Erstellen oder Bearbeiten einer Aufzählung für ausgewählten Text\\n .tooltip-text = Aufzählung\\nDIALTONE_MESSAGE_INPUT_ORDERED_LIST_BUTTON_LABEL =\\n .aria-label = Erstellen oder Bearbeiten einer geordneten Liste für ausgewählten Text\\n .tooltip-text = Geordnete Liste\\nDIALTONE_MESSAGE_INPUT_BLOCK_QUOTE_BUTTON_LABEL =\\n .aria-label = Erstellen oder Bearbeiten von Blockzitaten für ausgewählten Text\\n .tooltip-text = Blockzitat\\nDIALTONE_MESSAGE_INPUT_CODE_BUTTON_LABEL =\\n .aria-label = Erstellen oder Bearbeiten von Code für markierten Text\\n .tooltip-text = Code\\nDIALTONE_MESSAGE_INPUT_CODE_BLOCK_BUTTON_LABEL =\\n .aria-label = Erstellen oder Bearbeiten eines Codeblocks für ausgewählten Text\\n .tooltip-text = Codeblock\\nDIALTONE_MESSAGE_INPUT_LINK_BUTTON_LABEL =\\n .aria-label = Erstellen oder Bearbeiten eines Links für ausgewählten Text\\n .tooltip-text = Link\\nDIALTONE_MESSAGE_INPUT_LINK_DIALOG_TITLE = Link hinzufügen\\nDIALTONE_MESSAGE_INPUT_LINK_TEXT_LABEL = Anzuzeigender Text (optional)\\nDIALTONE_MESSAGE_INPUT_LINK_LINK_LABEL = Link\\nDIALTONE_MESSAGE_INPUT_LINK_LINK_PLACEHOLDER = z. B. https://www.dialpad.com\\nDIALTONE_MESSAGE_INPUT_LINK_REMOVE_LABEL = Entfernen\\nDIALTONE_MESSAGE_INPUT_LINK_CANCEL_LABEL = ABBRECHEN\\nDIALTONE_MESSAGE_INPUT_LINK_CONFIRM_LABEL = Fertig\\nDIALTONE_PAGINATION_FIRST_PAGE = Erste Seite\\nDIALTONE_PAGINATION_PREVIOUS_PAGE = Vorherige Seite\\nDIALTONE_PAGINATION_NEXT_PAGE = Nächste Seite\\nDIALTONE_PAGINATION_LAST_PAGE = Letzte Seite\\nDIALTONE_PAGINATION_PAGE_NUMBER = Seitenzahl { $page }\\nDIALTONE_RICH_TEXT_EDITOR_EDIT_BUTTON_LABEL = Bearbeiten\\nDIALTONE_RICH_TEXT_EDITOR_OPEN_LINK_BUTTON_LABEL = Link öffnen\\nDIALTONE_RICH_TEXT_EDITOR_REMOVE_BUTTON_LABEL = Entfernen\\nDIALTONE_SETTINGS_MENU_DEFAULT_BUTTON_LABEL = Einstellungen\\nDIALTONE_SETTINGS_MENU_UPDATE_BUTTON_LABEL = Update\\nDIALTONE_UNREAD_PILL_MENTIONS_TEXT = Ungelesene Erwähnungen\\nDIALTONE_UNREAD_PILL_MESSAGES_TEXT = Ungelesene Nachrichten\\n# Storybook only\\nSTORYBOOK_LANGUAGE_ENGLISH = Englisch\\nSTORYBOOK_LANGUAGE_CHINESE = Chinesisch\\nSTORYBOOK_LANGUAGE_DUTCH = Holländisch\\nSTORYBOOK_LANGUAGE_FRENCH = Französisch\\nSTORYBOOK_LANGUAGE_GERMAN = Deutsch\\nSTORYBOOK_LANGUAGE_ITALIAN = Italienisch\\nSTORYBOOK_LANGUAGE_JAPANESE = Japanisch\\nSTORYBOOK_LANGUAGE_PORTUGUESE = Portugiesisch\\nSTORYBOOK_LANGUAGE_RUSSIAN = Russisch\\nSTORYBOOK_LANGUAGE_SPANISH = Spanisch\\nSTORYBOOK_SET_LANGUAGE = Sprache einstellen\\nSTORYBOOK_YOU = Sie selbst\\nSTORYBOOK_REACTION_NAMES_2 = Olivia Chen, Benjamin Carter, Sophia Rodriguez, William Kim & Isabella Garcia\\nSTORYBOOK_REACTION_NAMES_3 = Olivia Chen & { STORYBOOK_YOU }\\n\""],"names":["deDE"],"mappings":"4GAAA,MAAAA,EAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA"}
|
|
@@ -64,8 +64,8 @@ DIALTONE_EMOJI_ROW_REACTION_LABEL =
|
|
|
64
64
|
}
|
|
65
65
|
*[other]
|
|
66
66
|
{ $youIncluded ->
|
|
67
|
-
*[true]
|
|
68
|
-
[false]
|
|
67
|
+
*[true] reagierten mit { $reaction }
|
|
68
|
+
[false] reagierten mit { $reaction }
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
DIALTONE_EMOJI_PICKER_ADD_EMOJI_LABEL = Emoji hinzufügen
|
|
@@ -166,7 +166,7 @@ STORYBOOK_LANGUAGE_RUSSIAN = Russisch
|
|
|
166
166
|
STORYBOOK_LANGUAGE_SPANISH = Spanisch
|
|
167
167
|
STORYBOOK_SET_LANGUAGE = Sprache einstellen
|
|
168
168
|
STORYBOOK_YOU = Sie selbst
|
|
169
|
-
STORYBOOK_REACTION_NAMES_2 = Olivia Chen, Benjamin Carter, Sophia Rodriguez, William Kim
|
|
169
|
+
STORYBOOK_REACTION_NAMES_2 = Olivia Chen, Benjamin Carter, Sophia Rodriguez, William Kim & Isabella Garcia
|
|
170
170
|
STORYBOOK_REACTION_NAMES_3 = Olivia Chen & { STORYBOOK_YOU }
|
|
171
171
|
`;
|
|
172
172
|
export {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"de-DE.js","sources":["../../localization/de-DE.ftl?raw"],"sourcesContent":["export default \"# Dialtone\\nDIALTONE_CLOSE_BUTTON = Zum Schließen klicken\\nDIALTONE_BREADCRUMBS_ARIA_LABEL = Brotkrumen\\nDIALTONE_LOADING = Lädt ...\\nDIALTONE_UNREAD_MESSAGE_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Keine ungelesenen Nachrichten\\n [1] 1 ungelesene Nachricht\\n *[other] { $unreadCount } ungelesene Nachrichten\\n }\\nDIALTONE_UNREAD_MENTION_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Keine ungelesenen Erwähnungen\\n [1] 1 ungelesene Erwähnung\\n *[other] { $unreadCount } ungelesene Erwähnungen\\n }\\nDIALTONE_TYPING_TEXT = schreibt\\nDIALTONE_ATTACHMENT_CAROUSEL_CLICK_TO_OPEN_ARIA_LABEL = Zum Öffnen klicken\\nDIALTONE_ATTACHMENT_CAROUSEL_PROGRESS_BAR_ARIA_LABEL = Wird hochgeladen\\nDIALTONE_ATTACHMENT_CAROUSEL_LEFT_ARROW_ARIA_LABEL = Vorherig\\nDIALTONE_ATTACHMENT_CAROUSEL_RIGHT_ARROW_ARIA_LABEL = Weiter\\nDIALTONE_CALLBAR_BUTTON_WITH_DROPDOWN_ARROW_BUTTON_ARIA_LABEL = Dropdown-Menü öffnen\\nDIALTONE_CALLBAR_BUTTON_WITH_POPOVER_ARROW_BUTTON_ARIA_LABEL = Popover öffnen\\nDIALTONE_CONTACT_CENTERS_ROW_MENU_BUTTON_LABEL = Menü öffnen\\nDIALTONE_DATEPICKER_PREVIOUS_MONTH = Vorheriger Monat\\nDIALTONE_DATEPICKER_NEXT_MONTH = nächsten Monat\\nDIALTONE_DATEPICKER_PREVIOUS_YEAR = Vorheriges Jahr\\nDIALTONE_DATEPICKER_NEXT_YEAR = nächstes Jahr\\nDIALTONE_DATEPICKER_SELECT_DAY = Tag auswählen\\nDIALTONE_DATEPICKER_CHANGE_TO = Wechseln zu\\nDIALTONE_EDITOR_CONFIRM_SET_LINK_BUTTON =\\n .title = Bestätigen\\n .aria-label = Gesetzten Link bestätigen\\nDIALTONE_EDITOR_REMOVE_LINK_BUTTON =\\n .title = Entfernen\\n .aria-label = Link entfernen\\nDIALTONE_EDITOR_CANCEL_SET_LINK_BUTTON =\\n .title = ABBRECHEN\\n .aria-label = Set-Link abbrechen\\nDIALTONE_EDITOR_QUICK_REPLY_BUTTON_LABEL = Vorlage\\nDIALTONE_EDITOR_BOLD_BUTTON_LABEL = Fett\\nDIALTONE_EDITOR_ITALICS_BUTTON_LABEL = Kursiv\\nDIALTONE_EDITOR_UNDERLINE_BUTTON_LABEL = Unterstreichen\\nDIALTONE_EDITOR_STRIKE_BUTTON_LABEL = Durchstreichen\\nDIALTONE_EDITOR_ALIGN_LEFT_BUTTON_LABEL = Linksbündig ausrichten\\nDIALTONE_EDITOR_ALIGN_CENTER_BUTTON_LABEL = Zentriert ausrichten\\nDIALTONE_EDITOR_ALIGN_RIGHT_BUTTON_LABEL = Rechtsbündig ausrichten\\nDIALTONE_EDITOR_ALIGN_JUSTIFY_BUTTON_LABEL = Blocksatz ausrichten\\nDIALTONE_EDITOR_BULLET_LIST_BUTTON_LABEL = Aufzählung\\nDIALTONE_EDITOR_ORDERED_LIST_BUTTON_LABEL = Geordnete Liste\\nDIALTONE_EDITOR_QUOTE_BUTTON_LABEL = Zitieren\\nDIALTONE_EDITOR_CODE_BUTTON_LABEL = Code\\nDIALTONE_EDITOR_IMAGE_BUTTON_LABEL = Bild\\nDIALTONE_EDITOR_LINK_BUTTON_LABEL = Link\\nDIALTONE_EDITOR_ADD_LINK_BUTTON =\\n .title = Link hinzufügen\\n .aria-label = Eingabefeld zum Hinzufügen eines Links\\nDIALTONE_EMOJI_ROW_REACTION_LABEL =\\n { $personCount ->\\n [one]\\n { $youIncluded ->\\n *[true] reagierte mit { $reaction }\\n [false] reagierte mit { $reaction }\\n }\\n *[other]\\n { $youIncluded ->\\n *[true]
|
|
1
|
+
{"version":3,"file":"de-DE.js","sources":["../../localization/de-DE.ftl?raw"],"sourcesContent":["export default \"# Dialtone\\nDIALTONE_CLOSE_BUTTON = Zum Schließen klicken\\nDIALTONE_BREADCRUMBS_ARIA_LABEL = Brotkrumen\\nDIALTONE_LOADING = Lädt ...\\nDIALTONE_UNREAD_MESSAGE_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Keine ungelesenen Nachrichten\\n [1] 1 ungelesene Nachricht\\n *[other] { $unreadCount } ungelesene Nachrichten\\n }\\nDIALTONE_UNREAD_MENTION_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Keine ungelesenen Erwähnungen\\n [1] 1 ungelesene Erwähnung\\n *[other] { $unreadCount } ungelesene Erwähnungen\\n }\\nDIALTONE_TYPING_TEXT = schreibt\\nDIALTONE_ATTACHMENT_CAROUSEL_CLICK_TO_OPEN_ARIA_LABEL = Zum Öffnen klicken\\nDIALTONE_ATTACHMENT_CAROUSEL_PROGRESS_BAR_ARIA_LABEL = Wird hochgeladen\\nDIALTONE_ATTACHMENT_CAROUSEL_LEFT_ARROW_ARIA_LABEL = Vorherig\\nDIALTONE_ATTACHMENT_CAROUSEL_RIGHT_ARROW_ARIA_LABEL = Weiter\\nDIALTONE_CALLBAR_BUTTON_WITH_DROPDOWN_ARROW_BUTTON_ARIA_LABEL = Dropdown-Menü öffnen\\nDIALTONE_CALLBAR_BUTTON_WITH_POPOVER_ARROW_BUTTON_ARIA_LABEL = Popover öffnen\\nDIALTONE_CONTACT_CENTERS_ROW_MENU_BUTTON_LABEL = Menü öffnen\\nDIALTONE_DATEPICKER_PREVIOUS_MONTH = Vorheriger Monat\\nDIALTONE_DATEPICKER_NEXT_MONTH = nächsten Monat\\nDIALTONE_DATEPICKER_PREVIOUS_YEAR = Vorheriges Jahr\\nDIALTONE_DATEPICKER_NEXT_YEAR = nächstes Jahr\\nDIALTONE_DATEPICKER_SELECT_DAY = Tag auswählen\\nDIALTONE_DATEPICKER_CHANGE_TO = Wechseln zu\\nDIALTONE_EDITOR_CONFIRM_SET_LINK_BUTTON =\\n .title = Bestätigen\\n .aria-label = Gesetzten Link bestätigen\\nDIALTONE_EDITOR_REMOVE_LINK_BUTTON =\\n .title = Entfernen\\n .aria-label = Link entfernen\\nDIALTONE_EDITOR_CANCEL_SET_LINK_BUTTON =\\n .title = ABBRECHEN\\n .aria-label = Set-Link abbrechen\\nDIALTONE_EDITOR_QUICK_REPLY_BUTTON_LABEL = Vorlage\\nDIALTONE_EDITOR_BOLD_BUTTON_LABEL = Fett\\nDIALTONE_EDITOR_ITALICS_BUTTON_LABEL = Kursiv\\nDIALTONE_EDITOR_UNDERLINE_BUTTON_LABEL = Unterstreichen\\nDIALTONE_EDITOR_STRIKE_BUTTON_LABEL = Durchstreichen\\nDIALTONE_EDITOR_ALIGN_LEFT_BUTTON_LABEL = Linksbündig ausrichten\\nDIALTONE_EDITOR_ALIGN_CENTER_BUTTON_LABEL = Zentriert ausrichten\\nDIALTONE_EDITOR_ALIGN_RIGHT_BUTTON_LABEL = Rechtsbündig ausrichten\\nDIALTONE_EDITOR_ALIGN_JUSTIFY_BUTTON_LABEL = Blocksatz ausrichten\\nDIALTONE_EDITOR_BULLET_LIST_BUTTON_LABEL = Aufzählung\\nDIALTONE_EDITOR_ORDERED_LIST_BUTTON_LABEL = Geordnete Liste\\nDIALTONE_EDITOR_QUOTE_BUTTON_LABEL = Zitieren\\nDIALTONE_EDITOR_CODE_BUTTON_LABEL = Code\\nDIALTONE_EDITOR_IMAGE_BUTTON_LABEL = Bild\\nDIALTONE_EDITOR_LINK_BUTTON_LABEL = Link\\nDIALTONE_EDITOR_ADD_LINK_BUTTON =\\n .title = Link hinzufügen\\n .aria-label = Eingabefeld zum Hinzufügen eines Links\\nDIALTONE_EMOJI_ROW_REACTION_LABEL =\\n { $personCount ->\\n [one]\\n { $youIncluded ->\\n *[true] reagierte mit { $reaction }\\n [false] reagierte mit { $reaction }\\n }\\n *[other]\\n { $youIncluded ->\\n *[true] reagierten mit { $reaction }\\n [false] reagierten mit { $reaction }\\n }\\n }\\nDIALTONE_EMOJI_PICKER_ADD_EMOJI_LABEL = Emoji hinzufügen\\nDIALTONE_EMOJI_PICKER_SEARCH_NO_RESULTS_LABEL = Keine Ergebnisse\\nDIALTONE_EMOJI_PICKER_SEARCH_RESULTS_LABEL = Suchergebnisse\\nDIALTONE_EMOJI_PICKER_SEARCH_PLACEHOLDER_LABEL = Suchen ...\\nDIALTONE_EMOJI_PICKER_SKIN_SELECTOR_BUTTON_TOOLTIP_LABEL = Standardhautton verändern\\nDIALTONE_EMOJI_PICKER_TABSET_RECENTLY_USED_LABEL = Zuletzt verwendet\\nDIALTONE_EMOJI_PICKER_TABSET_SMILEYS_AND_PEOPLE_LABEL = Smileys und Menschen\\nDIALTONE_EMOJI_PICKER_TABSET_NATURE_LABEL = Natur\\nDIALTONE_EMOJI_PICKER_TABSET_FOOD_LABEL = Essen\\nDIALTONE_EMOJI_PICKER_TABSET_ACTIVITY_LABEL = Aktivität\\nDIALTONE_EMOJI_PICKER_TABSET_TRAVEL_LABEL = Reisen\\nDIALTONE_EMOJI_PICKER_TABSET_OBJECTS_LABEL = Objekte\\nDIALTONE_EMOJI_PICKER_TABSET_SYMBOLS_LABEL = Symbole\\nDIALTONE_EMOJI_PICKER_TABSET_FLAGS_LABEL = Flaggen\\nDIALTONE_EMOJI_PICKER_TABSET_CUSTOM_LABEL = Benutzerdefiniert\\nDIALTONE_FEED_ITEM_PILL_ARIA_LABEL = Zum Vergrößern anklicken\\nDIALTONE_GENERAL_ROW_ACTIVE_VOICE_CHAT_TEXT = Aktiver Voice-Chat\\nDIALTONE_GENERAL_ROW_CALL_BUTTON_TOOLTIP = Anruf\\nDIALTONE_GENERAL_ROW_DND_TEXT_TOOLTIP = Bitte nicht stören\\nDIALTONE_GROUP_ROW_GROUP_COUNT_TEXT =\\n { $count ->\\n [1] 1 Benutzer\\n *[other] { $count } Benutzer\\n }\\nDIALTONE_IVR_NODE_MENU_BUTTON_ARIA_LABEL = Menü öffnen\\nDIALTONE_IVR_NODE_PROMPTMENU_ARIA_LABEL = Prompt-Menü-Knoten\\nDIALTONE_IVR_NODE_PROMPTCOLLECT_ARIA_LABEL = Prompterfassung-Knoten\\nDIALTONE_IVR_NODE_PROMPTPLAY_ARIA_LABEL = Promptwiedergabe-Knoten\\nDIALTONE_IVR_NODE_GOTOEXPERT_ARIA_LABEL = Zum Expertenknoten wechseln\\nDIALTONE_IVR_NODE_BRANCH_ARIA_LABEL = Zweigknoten\\nDIALTONE_IVR_NODE_GOTO_ARIA_LABEL = Zu Knoten gehen\\nDIALTONE_IVR_NODE_ASSIGN_ARIA_LABEL = Knoten zuweisen\\nDIALTONE_IVR_NODE_CUSTOMERDATA_ARIA_LABEL = Kundendaten-Knoten\\nDIALTONE_IVR_NODE_TRANSFER_ARIA_LABEL = Knoten übertragen\\nDIALTONE_IVR_NODE_HANGUP_ARIA_LABEL = Auflegen-Knoten\\nDIALTONE_MESSAGE_INPUT_SEND_BUTTON_ARIA_LABEL = Senden\\nDIALTONE_MESSAGE_INPUT_IMAGE_PICKER_BUTTON_ARIA_LABEL = Bild anhängen\\nDIALTONE_MESSAGE_INPUT_EMOJI_PICKER_BUTTON_ARIA_LABEL = Emoji auswählen\\nDIALTONE_MESSAGE_INPUT_CANCEL_BUTTON_ARIA_LABEL = ABBRECHEN\\nDIALTONE_MESSAGE_INPUT_BOLD_BUTTON_LABEL =\\n .aria-label = Ausgewählten Text auf fett umschalten\\n .tooltip-text = Fett\\nDIALTONE_MESSAGE_INPUT_ITALIC_BUTTON_LABEL =\\n .aria-label = Ausgewählten Text auf kursiv umschalten\\n .tooltip-text = Kursiv\\nDIALTONE_MESSAGE_INPUT_STRIKETHROUGH_BUTTON_LABEL =\\n .aria-label = Markierten Text durchstreichen\\n .tooltip-text = Durchstreichen\\nDIALTONE_MESSAGE_INPUT_BULLET_LIST_BUTTON_LABEL =\\n .aria-label = Erstellen oder Bearbeiten einer Aufzählung für ausgewählten Text\\n .tooltip-text = Aufzählung\\nDIALTONE_MESSAGE_INPUT_ORDERED_LIST_BUTTON_LABEL =\\n .aria-label = Erstellen oder Bearbeiten einer geordneten Liste für ausgewählten Text\\n .tooltip-text = Geordnete Liste\\nDIALTONE_MESSAGE_INPUT_BLOCK_QUOTE_BUTTON_LABEL =\\n .aria-label = Erstellen oder Bearbeiten von Blockzitaten für ausgewählten Text\\n .tooltip-text = Blockzitat\\nDIALTONE_MESSAGE_INPUT_CODE_BUTTON_LABEL =\\n .aria-label = Erstellen oder Bearbeiten von Code für markierten Text\\n .tooltip-text = Code\\nDIALTONE_MESSAGE_INPUT_CODE_BLOCK_BUTTON_LABEL =\\n .aria-label = Erstellen oder Bearbeiten eines Codeblocks für ausgewählten Text\\n .tooltip-text = Codeblock\\nDIALTONE_MESSAGE_INPUT_LINK_BUTTON_LABEL =\\n .aria-label = Erstellen oder Bearbeiten eines Links für ausgewählten Text\\n .tooltip-text = Link\\nDIALTONE_MESSAGE_INPUT_LINK_DIALOG_TITLE = Link hinzufügen\\nDIALTONE_MESSAGE_INPUT_LINK_TEXT_LABEL = Anzuzeigender Text (optional)\\nDIALTONE_MESSAGE_INPUT_LINK_LINK_LABEL = Link\\nDIALTONE_MESSAGE_INPUT_LINK_LINK_PLACEHOLDER = z. B. https://www.dialpad.com\\nDIALTONE_MESSAGE_INPUT_LINK_REMOVE_LABEL = Entfernen\\nDIALTONE_MESSAGE_INPUT_LINK_CANCEL_LABEL = ABBRECHEN\\nDIALTONE_MESSAGE_INPUT_LINK_CONFIRM_LABEL = Fertig\\nDIALTONE_PAGINATION_FIRST_PAGE = Erste Seite\\nDIALTONE_PAGINATION_PREVIOUS_PAGE = Vorherige Seite\\nDIALTONE_PAGINATION_NEXT_PAGE = Nächste Seite\\nDIALTONE_PAGINATION_LAST_PAGE = Letzte Seite\\nDIALTONE_PAGINATION_PAGE_NUMBER = Seitenzahl { $page }\\nDIALTONE_RICH_TEXT_EDITOR_EDIT_BUTTON_LABEL = Bearbeiten\\nDIALTONE_RICH_TEXT_EDITOR_OPEN_LINK_BUTTON_LABEL = Link öffnen\\nDIALTONE_RICH_TEXT_EDITOR_REMOVE_BUTTON_LABEL = Entfernen\\nDIALTONE_SETTINGS_MENU_DEFAULT_BUTTON_LABEL = Einstellungen\\nDIALTONE_SETTINGS_MENU_UPDATE_BUTTON_LABEL = Update\\nDIALTONE_UNREAD_PILL_MENTIONS_TEXT = Ungelesene Erwähnungen\\nDIALTONE_UNREAD_PILL_MESSAGES_TEXT = Ungelesene Nachrichten\\n# Storybook only\\nSTORYBOOK_LANGUAGE_ENGLISH = Englisch\\nSTORYBOOK_LANGUAGE_CHINESE = Chinesisch\\nSTORYBOOK_LANGUAGE_DUTCH = Holländisch\\nSTORYBOOK_LANGUAGE_FRENCH = Französisch\\nSTORYBOOK_LANGUAGE_GERMAN = Deutsch\\nSTORYBOOK_LANGUAGE_ITALIAN = Italienisch\\nSTORYBOOK_LANGUAGE_JAPANESE = Japanisch\\nSTORYBOOK_LANGUAGE_PORTUGUESE = Portugiesisch\\nSTORYBOOK_LANGUAGE_RUSSIAN = Russisch\\nSTORYBOOK_LANGUAGE_SPANISH = Spanisch\\nSTORYBOOK_SET_LANGUAGE = Sprache einstellen\\nSTORYBOOK_YOU = Sie selbst\\nSTORYBOOK_REACTION_NAMES_2 = Olivia Chen, Benjamin Carter, Sophia Rodriguez, William Kim & Isabella Garcia\\nSTORYBOOK_REACTION_NAMES_3 = Olivia Chen & { STORYBOOK_YOU }\\n\""],"names":["deDE"],"mappings":"AAAA,MAAAA,IAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;"}
|
|
@@ -64,8 +64,8 @@ DIALTONE_EMOJI_ROW_REACTION_LABEL =
|
|
|
64
64
|
}
|
|
65
65
|
*[other]
|
|
66
66
|
{ $youIncluded ->
|
|
67
|
-
*[true]
|
|
68
|
-
[false]
|
|
67
|
+
*[true] ont réagi avec { $reaction }
|
|
68
|
+
[false] ont réagi avec { $reaction }
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
DIALTONE_EMOJI_PICKER_ADD_EMOJI_LABEL = Ajouter un émoji
|
|
@@ -166,7 +166,7 @@ STORYBOOK_LANGUAGE_RUSSIAN = Russe
|
|
|
166
166
|
STORYBOOK_LANGUAGE_SPANISH = Espagnol
|
|
167
167
|
STORYBOOK_SET_LANGUAGE = Définir la langue
|
|
168
168
|
STORYBOOK_YOU = Vous
|
|
169
|
-
STORYBOOK_REACTION_NAMES_2 = Olivia Chen, Benjamin Carter, Sophia Rodriguez, William Kim
|
|
170
|
-
STORYBOOK_REACTION_NAMES_3 = Olivia Chen
|
|
169
|
+
STORYBOOK_REACTION_NAMES_2 = Olivia Chen, Benjamin Carter, Sophia Rodriguez, William Kim et Isabella Garcia
|
|
170
|
+
STORYBOOK_REACTION_NAMES_3 = Olivia Chen et { STORYBOOK_YOU }
|
|
171
171
|
`;exports.default=_;
|
|
172
172
|
//# sourceMappingURL=fr-FR.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fr-FR.cjs","sources":["../../localization/fr-FR.ftl?raw"],"sourcesContent":["export default \"# Dialtone\\nDIALTONE_CLOSE_BUTTON = Cliquez pour fermer\\nDIALTONE_BREADCRUMBS_ARIA_LABEL = Breadcrumbs\\nDIALTONE_LOADING = En cours de chargement\\nDIALTONE_UNREAD_MESSAGE_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Aucun message non lu\\n [1] 1 message non lu\\n *[other] { $unreadCount } messages non lus\\n }\\nDIALTONE_UNREAD_MENTION_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Aucune mention non lue\\n [1] 1 mention non lue\\n *[other] { $unreadCount } mentions non lues\\n }\\nDIALTONE_TYPING_TEXT = Est en train d’écrire\\nDIALTONE_ATTACHMENT_CAROUSEL_CLICK_TO_OPEN_ARIA_LABEL = Cliquez pour ouvrir\\nDIALTONE_ATTACHMENT_CAROUSEL_PROGRESS_BAR_ARIA_LABEL = Téléchargement en cours\\nDIALTONE_ATTACHMENT_CAROUSEL_LEFT_ARROW_ARIA_LABEL = Précédent\\nDIALTONE_ATTACHMENT_CAROUSEL_RIGHT_ARROW_ARIA_LABEL = Suivant\\nDIALTONE_CALLBAR_BUTTON_WITH_DROPDOWN_ARROW_BUTTON_ARIA_LABEL = Ouvrir le menu déroulant\\nDIALTONE_CALLBAR_BUTTON_WITH_POPOVER_ARROW_BUTTON_ARIA_LABEL = Ouvrir le popover\\nDIALTONE_CONTACT_CENTERS_ROW_MENU_BUTTON_LABEL = Ouvrir le menu\\nDIALTONE_DATEPICKER_PREVIOUS_MONTH = Mois précédent\\nDIALTONE_DATEPICKER_NEXT_MONTH = le mois prochain\\nDIALTONE_DATEPICKER_PREVIOUS_YEAR = Année précédente\\nDIALTONE_DATEPICKER_NEXT_YEAR = l'année prochaine\\nDIALTONE_DATEPICKER_SELECT_DAY = Sélectionnez le jour\\nDIALTONE_DATEPICKER_CHANGE_TO = Passez à\\nDIALTONE_EDITOR_CONFIRM_SET_LINK_BUTTON =\\n .title = Confirmer\\n .aria-label = Confirmer le lien défini\\nDIALTONE_EDITOR_REMOVE_LINK_BUTTON =\\n .title = Supprimer\\n .aria-label = Supprimer le lien\\nDIALTONE_EDITOR_CANCEL_SET_LINK_BUTTON =\\n .title = Annuler\\n .aria-label = Annuler le lien défini\\nDIALTONE_EDITOR_QUICK_REPLY_BUTTON_LABEL = Modèle\\nDIALTONE_EDITOR_BOLD_BUTTON_LABEL = Gras\\nDIALTONE_EDITOR_ITALICS_BUTTON_LABEL = Italique\\nDIALTONE_EDITOR_UNDERLINE_BUTTON_LABEL = Souligner\\nDIALTONE_EDITOR_STRIKE_BUTTON_LABEL = Barré\\nDIALTONE_EDITOR_ALIGN_LEFT_BUTTON_LABEL = Aligner à gauche\\nDIALTONE_EDITOR_ALIGN_CENTER_BUTTON_LABEL = Aligner au centre\\nDIALTONE_EDITOR_ALIGN_RIGHT_BUTTON_LABEL = Aligner à droite\\nDIALTONE_EDITOR_ALIGN_JUSTIFY_BUTTON_LABEL = Justifier\\nDIALTONE_EDITOR_BULLET_LIST_BUTTON_LABEL = Liste à puces\\nDIALTONE_EDITOR_ORDERED_LIST_BUTTON_LABEL = Liste numérotée\\nDIALTONE_EDITOR_QUOTE_BUTTON_LABEL = Citation\\nDIALTONE_EDITOR_CODE_BUTTON_LABEL = Code\\nDIALTONE_EDITOR_IMAGE_BUTTON_LABEL = Image\\nDIALTONE_EDITOR_LINK_BUTTON_LABEL = Lien\\nDIALTONE_EDITOR_ADD_LINK_BUTTON =\\n .title = Ajouter un lien\\n .aria-label = Champ de saisie pour ajouter un lien\\nDIALTONE_EMOJI_ROW_REACTION_LABEL =\\n { $personCount ->\\n [one]\\n { $youIncluded ->\\n *[true] a réagi avec { $reaction }\\n [false] a réagi avec { $reaction }\\n }\\n *[other]\\n { $youIncluded ->\\n *[true]
|
|
1
|
+
{"version":3,"file":"fr-FR.cjs","sources":["../../localization/fr-FR.ftl?raw"],"sourcesContent":["export default \"# Dialtone\\nDIALTONE_CLOSE_BUTTON = Cliquez pour fermer\\nDIALTONE_BREADCRUMBS_ARIA_LABEL = Breadcrumbs\\nDIALTONE_LOADING = En cours de chargement\\nDIALTONE_UNREAD_MESSAGE_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Aucun message non lu\\n [1] 1 message non lu\\n *[other] { $unreadCount } messages non lus\\n }\\nDIALTONE_UNREAD_MENTION_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Aucune mention non lue\\n [1] 1 mention non lue\\n *[other] { $unreadCount } mentions non lues\\n }\\nDIALTONE_TYPING_TEXT = Est en train d’écrire\\nDIALTONE_ATTACHMENT_CAROUSEL_CLICK_TO_OPEN_ARIA_LABEL = Cliquez pour ouvrir\\nDIALTONE_ATTACHMENT_CAROUSEL_PROGRESS_BAR_ARIA_LABEL = Téléchargement en cours\\nDIALTONE_ATTACHMENT_CAROUSEL_LEFT_ARROW_ARIA_LABEL = Précédent\\nDIALTONE_ATTACHMENT_CAROUSEL_RIGHT_ARROW_ARIA_LABEL = Suivant\\nDIALTONE_CALLBAR_BUTTON_WITH_DROPDOWN_ARROW_BUTTON_ARIA_LABEL = Ouvrir le menu déroulant\\nDIALTONE_CALLBAR_BUTTON_WITH_POPOVER_ARROW_BUTTON_ARIA_LABEL = Ouvrir le popover\\nDIALTONE_CONTACT_CENTERS_ROW_MENU_BUTTON_LABEL = Ouvrir le menu\\nDIALTONE_DATEPICKER_PREVIOUS_MONTH = Mois précédent\\nDIALTONE_DATEPICKER_NEXT_MONTH = le mois prochain\\nDIALTONE_DATEPICKER_PREVIOUS_YEAR = Année précédente\\nDIALTONE_DATEPICKER_NEXT_YEAR = l'année prochaine\\nDIALTONE_DATEPICKER_SELECT_DAY = Sélectionnez le jour\\nDIALTONE_DATEPICKER_CHANGE_TO = Passez à\\nDIALTONE_EDITOR_CONFIRM_SET_LINK_BUTTON =\\n .title = Confirmer\\n .aria-label = Confirmer le lien défini\\nDIALTONE_EDITOR_REMOVE_LINK_BUTTON =\\n .title = Supprimer\\n .aria-label = Supprimer le lien\\nDIALTONE_EDITOR_CANCEL_SET_LINK_BUTTON =\\n .title = Annuler\\n .aria-label = Annuler le lien défini\\nDIALTONE_EDITOR_QUICK_REPLY_BUTTON_LABEL = Modèle\\nDIALTONE_EDITOR_BOLD_BUTTON_LABEL = Gras\\nDIALTONE_EDITOR_ITALICS_BUTTON_LABEL = Italique\\nDIALTONE_EDITOR_UNDERLINE_BUTTON_LABEL = Souligner\\nDIALTONE_EDITOR_STRIKE_BUTTON_LABEL = Barré\\nDIALTONE_EDITOR_ALIGN_LEFT_BUTTON_LABEL = Aligner à gauche\\nDIALTONE_EDITOR_ALIGN_CENTER_BUTTON_LABEL = Aligner au centre\\nDIALTONE_EDITOR_ALIGN_RIGHT_BUTTON_LABEL = Aligner à droite\\nDIALTONE_EDITOR_ALIGN_JUSTIFY_BUTTON_LABEL = Justifier\\nDIALTONE_EDITOR_BULLET_LIST_BUTTON_LABEL = Liste à puces\\nDIALTONE_EDITOR_ORDERED_LIST_BUTTON_LABEL = Liste numérotée\\nDIALTONE_EDITOR_QUOTE_BUTTON_LABEL = Citation\\nDIALTONE_EDITOR_CODE_BUTTON_LABEL = Code\\nDIALTONE_EDITOR_IMAGE_BUTTON_LABEL = Image\\nDIALTONE_EDITOR_LINK_BUTTON_LABEL = Lien\\nDIALTONE_EDITOR_ADD_LINK_BUTTON =\\n .title = Ajouter un lien\\n .aria-label = Champ de saisie pour ajouter un lien\\nDIALTONE_EMOJI_ROW_REACTION_LABEL =\\n { $personCount ->\\n [one]\\n { $youIncluded ->\\n *[true] a réagi avec { $reaction }\\n [false] a réagi avec { $reaction }\\n }\\n *[other]\\n { $youIncluded ->\\n *[true] ont réagi avec { $reaction }\\n [false] ont réagi avec { $reaction }\\n }\\n }\\nDIALTONE_EMOJI_PICKER_ADD_EMOJI_LABEL = Ajouter un émoji\\nDIALTONE_EMOJI_PICKER_SEARCH_NO_RESULTS_LABEL = Aucun résultat\\nDIALTONE_EMOJI_PICKER_SEARCH_RESULTS_LABEL = résultats de la recherche\\nDIALTONE_EMOJI_PICKER_SEARCH_PLACEHOLDER_LABEL = Rechercher...\\nDIALTONE_EMOJI_PICKER_SKIN_SELECTOR_BUTTON_TOOLTIP_LABEL = Modifier la couleur de peau par défaut\\nDIALTONE_EMOJI_PICKER_TABSET_RECENTLY_USED_LABEL = Dernière utilisation\\nDIALTONE_EMOJI_PICKER_TABSET_SMILEYS_AND_PEOPLE_LABEL = Smileys et personnes\\nDIALTONE_EMOJI_PICKER_TABSET_NATURE_LABEL = Nature\\nDIALTONE_EMOJI_PICKER_TABSET_FOOD_LABEL = Alimentation\\nDIALTONE_EMOJI_PICKER_TABSET_ACTIVITY_LABEL = Activité\\nDIALTONE_EMOJI_PICKER_TABSET_TRAVEL_LABEL = Voyage\\nDIALTONE_EMOJI_PICKER_TABSET_OBJECTS_LABEL = Objets\\nDIALTONE_EMOJI_PICKER_TABSET_SYMBOLS_LABEL = Symboles\\nDIALTONE_EMOJI_PICKER_TABSET_FLAGS_LABEL = Drapeaux\\nDIALTONE_EMOJI_PICKER_TABSET_CUSTOM_LABEL = Personnalisé\\nDIALTONE_FEED_ITEM_PILL_ARIA_LABEL = Cliquez pour agrandir\\nDIALTONE_GENERAL_ROW_ACTIVE_VOICE_CHAT_TEXT = Chat vocal actif\\nDIALTONE_GENERAL_ROW_CALL_BUTTON_TOOLTIP = Appel\\nDIALTONE_GENERAL_ROW_DND_TEXT_TOOLTIP = Ne pas déranger\\nDIALTONE_GROUP_ROW_GROUP_COUNT_TEXT =\\n { $count ->\\n [1] 1 utilisateur\\n *[other] { $count } utilisateurs\\n }\\nDIALTONE_IVR_NODE_MENU_BUTTON_ARIA_LABEL = Ouvrir le menu\\nDIALTONE_IVR_NODE_PROMPTMENU_ARIA_LABEL = nœud de menu d'invite\\nDIALTONE_IVR_NODE_PROMPTCOLLECT_ARIA_LABEL = nœud de collecte d'invite\\nDIALTONE_IVR_NODE_PROMPTPLAY_ARIA_LABEL = nœud de lecture d'invite\\nDIALTONE_IVR_NODE_GOTOEXPERT_ARIA_LABEL = nœud de transfert vers un expert\\nDIALTONE_IVR_NODE_BRANCH_ARIA_LABEL = nœud de branchement\\nDIALTONE_IVR_NODE_GOTO_ARIA_LABEL = nœud de redirection\\nDIALTONE_IVR_NODE_ASSIGN_ARIA_LABEL = nœud d'affectation\\nDIALTONE_IVR_NODE_CUSTOMERDATA_ARIA_LABEL = nœud de données clients\\nDIALTONE_IVR_NODE_TRANSFER_ARIA_LABEL = nœud de transfert\\nDIALTONE_IVR_NODE_HANGUP_ARIA_LABEL = nœud de raccrochage\\nDIALTONE_MESSAGE_INPUT_SEND_BUTTON_ARIA_LABEL = Envoyer\\nDIALTONE_MESSAGE_INPUT_IMAGE_PICKER_BUTTON_ARIA_LABEL = Joindre une image\\nDIALTONE_MESSAGE_INPUT_EMOJI_PICKER_BUTTON_ARIA_LABEL = Sélectionner un emoji\\nDIALTONE_MESSAGE_INPUT_CANCEL_BUTTON_ARIA_LABEL = Annuler\\nDIALTONE_MESSAGE_INPUT_BOLD_BUTTON_LABEL =\\n .aria-label = Mettre en gras le texte sélectionné\\n .tooltip-text = Gras\\nDIALTONE_MESSAGE_INPUT_ITALIC_BUTTON_LABEL =\\n .aria-label = Mettre en italique le texte sélectionné\\n .tooltip-text = Italique\\nDIALTONE_MESSAGE_INPUT_STRIKETHROUGH_BUTTON_LABEL =\\n .aria-label = Barrer le texte sélectionné\\n .tooltip-text = Barré\\nDIALTONE_MESSAGE_INPUT_BULLET_LIST_BUTTON_LABEL =\\n .aria-label = Créez ou modifiez une liste à puces sur le texte sélectionné\\n .tooltip-text = Liste à puces\\nDIALTONE_MESSAGE_INPUT_ORDERED_LIST_BUTTON_LABEL =\\n .aria-label = Créer ou modifier une liste numérotée sur le texte sélectionné\\n .tooltip-text = Liste numérotée\\nDIALTONE_MESSAGE_INPUT_BLOCK_QUOTE_BUTTON_LABEL =\\n .aria-label = Créer ou modifier un bloc de citation sur le texte sélectionné\\n .tooltip-text = Bloc de citation\\nDIALTONE_MESSAGE_INPUT_CODE_BUTTON_LABEL =\\n .aria-label = Créer ou modifier un code sur le texte sélectionné\\n .tooltip-text = Code\\nDIALTONE_MESSAGE_INPUT_CODE_BLOCK_BUTTON_LABEL =\\n .aria-label = Créer ou modifier un bloc de code sur le texte sélectionné\\n .tooltip-text = Bloc de code\\nDIALTONE_MESSAGE_INPUT_LINK_BUTTON_LABEL =\\n .aria-label = Créer ou modifier un lien sur le texte sélectionné\\n .tooltip-text = Lien\\nDIALTONE_MESSAGE_INPUT_LINK_DIALOG_TITLE = Ajouter un lien\\nDIALTONE_MESSAGE_INPUT_LINK_TEXT_LABEL = Texte à afficher (facultatif)\\nDIALTONE_MESSAGE_INPUT_LINK_LINK_LABEL = Lien\\nDIALTONE_MESSAGE_INPUT_LINK_LINK_PLACEHOLDER = par exemple : https://www.dialpad.com\\nDIALTONE_MESSAGE_INPUT_LINK_REMOVE_LABEL = Supprimer\\nDIALTONE_MESSAGE_INPUT_LINK_CANCEL_LABEL = Annuler\\nDIALTONE_MESSAGE_INPUT_LINK_CONFIRM_LABEL = Terminé\\nDIALTONE_PAGINATION_FIRST_PAGE = Prénom\\nDIALTONE_PAGINATION_PREVIOUS_PAGE = Page précédente\\nDIALTONE_PAGINATION_NEXT_PAGE = Page suivante\\nDIALTONE_PAGINATION_LAST_PAGE = Dernière page\\nDIALTONE_PAGINATION_PAGE_NUMBER = Page numéro { $page }\\nDIALTONE_RICH_TEXT_EDITOR_EDIT_BUTTON_LABEL = Modifier\\nDIALTONE_RICH_TEXT_EDITOR_OPEN_LINK_BUTTON_LABEL = Ouvrir le lien\\nDIALTONE_RICH_TEXT_EDITOR_REMOVE_BUTTON_LABEL = Supprimer\\nDIALTONE_SETTINGS_MENU_DEFAULT_BUTTON_LABEL = Paramètres\\nDIALTONE_SETTINGS_MENU_UPDATE_BUTTON_LABEL = Mettre à jour\\nDIALTONE_UNREAD_PILL_MENTIONS_TEXT = Mentions non lues\\nDIALTONE_UNREAD_PILL_MESSAGES_TEXT = Messages non lus\\n# Storybook only\\nSTORYBOOK_LANGUAGE_ENGLISH = Anglais\\nSTORYBOOK_LANGUAGE_CHINESE = Chinois\\nSTORYBOOK_LANGUAGE_DUTCH = Néerlandais\\nSTORYBOOK_LANGUAGE_FRENCH = Français\\nSTORYBOOK_LANGUAGE_GERMAN = Allemand\\nSTORYBOOK_LANGUAGE_ITALIAN = Italien\\nSTORYBOOK_LANGUAGE_JAPANESE = Japonais\\nSTORYBOOK_LANGUAGE_PORTUGUESE = Portugais\\nSTORYBOOK_LANGUAGE_RUSSIAN = Russe\\nSTORYBOOK_LANGUAGE_SPANISH = Espagnol\\nSTORYBOOK_SET_LANGUAGE = Définir la langue\\nSTORYBOOK_YOU = Vous\\nSTORYBOOK_REACTION_NAMES_2 = Olivia Chen, Benjamin Carter, Sophia Rodriguez, William Kim et Isabella Garcia\\nSTORYBOOK_REACTION_NAMES_3 = Olivia Chen et { STORYBOOK_YOU }\\n\""],"names":["frFR"],"mappings":"4GAAA,MAAAA,EAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA"}
|
|
@@ -64,8 +64,8 @@ DIALTONE_EMOJI_ROW_REACTION_LABEL =
|
|
|
64
64
|
}
|
|
65
65
|
*[other]
|
|
66
66
|
{ $youIncluded ->
|
|
67
|
-
*[true]
|
|
68
|
-
[false]
|
|
67
|
+
*[true] ont réagi avec { $reaction }
|
|
68
|
+
[false] ont réagi avec { $reaction }
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
DIALTONE_EMOJI_PICKER_ADD_EMOJI_LABEL = Ajouter un émoji
|
|
@@ -166,8 +166,8 @@ STORYBOOK_LANGUAGE_RUSSIAN = Russe
|
|
|
166
166
|
STORYBOOK_LANGUAGE_SPANISH = Espagnol
|
|
167
167
|
STORYBOOK_SET_LANGUAGE = Définir la langue
|
|
168
168
|
STORYBOOK_YOU = Vous
|
|
169
|
-
STORYBOOK_REACTION_NAMES_2 = Olivia Chen, Benjamin Carter, Sophia Rodriguez, William Kim
|
|
170
|
-
STORYBOOK_REACTION_NAMES_3 = Olivia Chen
|
|
169
|
+
STORYBOOK_REACTION_NAMES_2 = Olivia Chen, Benjamin Carter, Sophia Rodriguez, William Kim et Isabella Garcia
|
|
170
|
+
STORYBOOK_REACTION_NAMES_3 = Olivia Chen et { STORYBOOK_YOU }
|
|
171
171
|
`;
|
|
172
172
|
export {
|
|
173
173
|
_ as default
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fr-FR.js","sources":["../../localization/fr-FR.ftl?raw"],"sourcesContent":["export default \"# Dialtone\\nDIALTONE_CLOSE_BUTTON = Cliquez pour fermer\\nDIALTONE_BREADCRUMBS_ARIA_LABEL = Breadcrumbs\\nDIALTONE_LOADING = En cours de chargement\\nDIALTONE_UNREAD_MESSAGE_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Aucun message non lu\\n [1] 1 message non lu\\n *[other] { $unreadCount } messages non lus\\n }\\nDIALTONE_UNREAD_MENTION_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Aucune mention non lue\\n [1] 1 mention non lue\\n *[other] { $unreadCount } mentions non lues\\n }\\nDIALTONE_TYPING_TEXT = Est en train d’écrire\\nDIALTONE_ATTACHMENT_CAROUSEL_CLICK_TO_OPEN_ARIA_LABEL = Cliquez pour ouvrir\\nDIALTONE_ATTACHMENT_CAROUSEL_PROGRESS_BAR_ARIA_LABEL = Téléchargement en cours\\nDIALTONE_ATTACHMENT_CAROUSEL_LEFT_ARROW_ARIA_LABEL = Précédent\\nDIALTONE_ATTACHMENT_CAROUSEL_RIGHT_ARROW_ARIA_LABEL = Suivant\\nDIALTONE_CALLBAR_BUTTON_WITH_DROPDOWN_ARROW_BUTTON_ARIA_LABEL = Ouvrir le menu déroulant\\nDIALTONE_CALLBAR_BUTTON_WITH_POPOVER_ARROW_BUTTON_ARIA_LABEL = Ouvrir le popover\\nDIALTONE_CONTACT_CENTERS_ROW_MENU_BUTTON_LABEL = Ouvrir le menu\\nDIALTONE_DATEPICKER_PREVIOUS_MONTH = Mois précédent\\nDIALTONE_DATEPICKER_NEXT_MONTH = le mois prochain\\nDIALTONE_DATEPICKER_PREVIOUS_YEAR = Année précédente\\nDIALTONE_DATEPICKER_NEXT_YEAR = l'année prochaine\\nDIALTONE_DATEPICKER_SELECT_DAY = Sélectionnez le jour\\nDIALTONE_DATEPICKER_CHANGE_TO = Passez à\\nDIALTONE_EDITOR_CONFIRM_SET_LINK_BUTTON =\\n .title = Confirmer\\n .aria-label = Confirmer le lien défini\\nDIALTONE_EDITOR_REMOVE_LINK_BUTTON =\\n .title = Supprimer\\n .aria-label = Supprimer le lien\\nDIALTONE_EDITOR_CANCEL_SET_LINK_BUTTON =\\n .title = Annuler\\n .aria-label = Annuler le lien défini\\nDIALTONE_EDITOR_QUICK_REPLY_BUTTON_LABEL = Modèle\\nDIALTONE_EDITOR_BOLD_BUTTON_LABEL = Gras\\nDIALTONE_EDITOR_ITALICS_BUTTON_LABEL = Italique\\nDIALTONE_EDITOR_UNDERLINE_BUTTON_LABEL = Souligner\\nDIALTONE_EDITOR_STRIKE_BUTTON_LABEL = Barré\\nDIALTONE_EDITOR_ALIGN_LEFT_BUTTON_LABEL = Aligner à gauche\\nDIALTONE_EDITOR_ALIGN_CENTER_BUTTON_LABEL = Aligner au centre\\nDIALTONE_EDITOR_ALIGN_RIGHT_BUTTON_LABEL = Aligner à droite\\nDIALTONE_EDITOR_ALIGN_JUSTIFY_BUTTON_LABEL = Justifier\\nDIALTONE_EDITOR_BULLET_LIST_BUTTON_LABEL = Liste à puces\\nDIALTONE_EDITOR_ORDERED_LIST_BUTTON_LABEL = Liste numérotée\\nDIALTONE_EDITOR_QUOTE_BUTTON_LABEL = Citation\\nDIALTONE_EDITOR_CODE_BUTTON_LABEL = Code\\nDIALTONE_EDITOR_IMAGE_BUTTON_LABEL = Image\\nDIALTONE_EDITOR_LINK_BUTTON_LABEL = Lien\\nDIALTONE_EDITOR_ADD_LINK_BUTTON =\\n .title = Ajouter un lien\\n .aria-label = Champ de saisie pour ajouter un lien\\nDIALTONE_EMOJI_ROW_REACTION_LABEL =\\n { $personCount ->\\n [one]\\n { $youIncluded ->\\n *[true] a réagi avec { $reaction }\\n [false] a réagi avec { $reaction }\\n }\\n *[other]\\n { $youIncluded ->\\n *[true]
|
|
1
|
+
{"version":3,"file":"fr-FR.js","sources":["../../localization/fr-FR.ftl?raw"],"sourcesContent":["export default \"# Dialtone\\nDIALTONE_CLOSE_BUTTON = Cliquez pour fermer\\nDIALTONE_BREADCRUMBS_ARIA_LABEL = Breadcrumbs\\nDIALTONE_LOADING = En cours de chargement\\nDIALTONE_UNREAD_MESSAGE_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Aucun message non lu\\n [1] 1 message non lu\\n *[other] { $unreadCount } messages non lus\\n }\\nDIALTONE_UNREAD_MENTION_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Aucune mention non lue\\n [1] 1 mention non lue\\n *[other] { $unreadCount } mentions non lues\\n }\\nDIALTONE_TYPING_TEXT = Est en train d’écrire\\nDIALTONE_ATTACHMENT_CAROUSEL_CLICK_TO_OPEN_ARIA_LABEL = Cliquez pour ouvrir\\nDIALTONE_ATTACHMENT_CAROUSEL_PROGRESS_BAR_ARIA_LABEL = Téléchargement en cours\\nDIALTONE_ATTACHMENT_CAROUSEL_LEFT_ARROW_ARIA_LABEL = Précédent\\nDIALTONE_ATTACHMENT_CAROUSEL_RIGHT_ARROW_ARIA_LABEL = Suivant\\nDIALTONE_CALLBAR_BUTTON_WITH_DROPDOWN_ARROW_BUTTON_ARIA_LABEL = Ouvrir le menu déroulant\\nDIALTONE_CALLBAR_BUTTON_WITH_POPOVER_ARROW_BUTTON_ARIA_LABEL = Ouvrir le popover\\nDIALTONE_CONTACT_CENTERS_ROW_MENU_BUTTON_LABEL = Ouvrir le menu\\nDIALTONE_DATEPICKER_PREVIOUS_MONTH = Mois précédent\\nDIALTONE_DATEPICKER_NEXT_MONTH = le mois prochain\\nDIALTONE_DATEPICKER_PREVIOUS_YEAR = Année précédente\\nDIALTONE_DATEPICKER_NEXT_YEAR = l'année prochaine\\nDIALTONE_DATEPICKER_SELECT_DAY = Sélectionnez le jour\\nDIALTONE_DATEPICKER_CHANGE_TO = Passez à\\nDIALTONE_EDITOR_CONFIRM_SET_LINK_BUTTON =\\n .title = Confirmer\\n .aria-label = Confirmer le lien défini\\nDIALTONE_EDITOR_REMOVE_LINK_BUTTON =\\n .title = Supprimer\\n .aria-label = Supprimer le lien\\nDIALTONE_EDITOR_CANCEL_SET_LINK_BUTTON =\\n .title = Annuler\\n .aria-label = Annuler le lien défini\\nDIALTONE_EDITOR_QUICK_REPLY_BUTTON_LABEL = Modèle\\nDIALTONE_EDITOR_BOLD_BUTTON_LABEL = Gras\\nDIALTONE_EDITOR_ITALICS_BUTTON_LABEL = Italique\\nDIALTONE_EDITOR_UNDERLINE_BUTTON_LABEL = Souligner\\nDIALTONE_EDITOR_STRIKE_BUTTON_LABEL = Barré\\nDIALTONE_EDITOR_ALIGN_LEFT_BUTTON_LABEL = Aligner à gauche\\nDIALTONE_EDITOR_ALIGN_CENTER_BUTTON_LABEL = Aligner au centre\\nDIALTONE_EDITOR_ALIGN_RIGHT_BUTTON_LABEL = Aligner à droite\\nDIALTONE_EDITOR_ALIGN_JUSTIFY_BUTTON_LABEL = Justifier\\nDIALTONE_EDITOR_BULLET_LIST_BUTTON_LABEL = Liste à puces\\nDIALTONE_EDITOR_ORDERED_LIST_BUTTON_LABEL = Liste numérotée\\nDIALTONE_EDITOR_QUOTE_BUTTON_LABEL = Citation\\nDIALTONE_EDITOR_CODE_BUTTON_LABEL = Code\\nDIALTONE_EDITOR_IMAGE_BUTTON_LABEL = Image\\nDIALTONE_EDITOR_LINK_BUTTON_LABEL = Lien\\nDIALTONE_EDITOR_ADD_LINK_BUTTON =\\n .title = Ajouter un lien\\n .aria-label = Champ de saisie pour ajouter un lien\\nDIALTONE_EMOJI_ROW_REACTION_LABEL =\\n { $personCount ->\\n [one]\\n { $youIncluded ->\\n *[true] a réagi avec { $reaction }\\n [false] a réagi avec { $reaction }\\n }\\n *[other]\\n { $youIncluded ->\\n *[true] ont réagi avec { $reaction }\\n [false] ont réagi avec { $reaction }\\n }\\n }\\nDIALTONE_EMOJI_PICKER_ADD_EMOJI_LABEL = Ajouter un émoji\\nDIALTONE_EMOJI_PICKER_SEARCH_NO_RESULTS_LABEL = Aucun résultat\\nDIALTONE_EMOJI_PICKER_SEARCH_RESULTS_LABEL = résultats de la recherche\\nDIALTONE_EMOJI_PICKER_SEARCH_PLACEHOLDER_LABEL = Rechercher...\\nDIALTONE_EMOJI_PICKER_SKIN_SELECTOR_BUTTON_TOOLTIP_LABEL = Modifier la couleur de peau par défaut\\nDIALTONE_EMOJI_PICKER_TABSET_RECENTLY_USED_LABEL = Dernière utilisation\\nDIALTONE_EMOJI_PICKER_TABSET_SMILEYS_AND_PEOPLE_LABEL = Smileys et personnes\\nDIALTONE_EMOJI_PICKER_TABSET_NATURE_LABEL = Nature\\nDIALTONE_EMOJI_PICKER_TABSET_FOOD_LABEL = Alimentation\\nDIALTONE_EMOJI_PICKER_TABSET_ACTIVITY_LABEL = Activité\\nDIALTONE_EMOJI_PICKER_TABSET_TRAVEL_LABEL = Voyage\\nDIALTONE_EMOJI_PICKER_TABSET_OBJECTS_LABEL = Objets\\nDIALTONE_EMOJI_PICKER_TABSET_SYMBOLS_LABEL = Symboles\\nDIALTONE_EMOJI_PICKER_TABSET_FLAGS_LABEL = Drapeaux\\nDIALTONE_EMOJI_PICKER_TABSET_CUSTOM_LABEL = Personnalisé\\nDIALTONE_FEED_ITEM_PILL_ARIA_LABEL = Cliquez pour agrandir\\nDIALTONE_GENERAL_ROW_ACTIVE_VOICE_CHAT_TEXT = Chat vocal actif\\nDIALTONE_GENERAL_ROW_CALL_BUTTON_TOOLTIP = Appel\\nDIALTONE_GENERAL_ROW_DND_TEXT_TOOLTIP = Ne pas déranger\\nDIALTONE_GROUP_ROW_GROUP_COUNT_TEXT =\\n { $count ->\\n [1] 1 utilisateur\\n *[other] { $count } utilisateurs\\n }\\nDIALTONE_IVR_NODE_MENU_BUTTON_ARIA_LABEL = Ouvrir le menu\\nDIALTONE_IVR_NODE_PROMPTMENU_ARIA_LABEL = nœud de menu d'invite\\nDIALTONE_IVR_NODE_PROMPTCOLLECT_ARIA_LABEL = nœud de collecte d'invite\\nDIALTONE_IVR_NODE_PROMPTPLAY_ARIA_LABEL = nœud de lecture d'invite\\nDIALTONE_IVR_NODE_GOTOEXPERT_ARIA_LABEL = nœud de transfert vers un expert\\nDIALTONE_IVR_NODE_BRANCH_ARIA_LABEL = nœud de branchement\\nDIALTONE_IVR_NODE_GOTO_ARIA_LABEL = nœud de redirection\\nDIALTONE_IVR_NODE_ASSIGN_ARIA_LABEL = nœud d'affectation\\nDIALTONE_IVR_NODE_CUSTOMERDATA_ARIA_LABEL = nœud de données clients\\nDIALTONE_IVR_NODE_TRANSFER_ARIA_LABEL = nœud de transfert\\nDIALTONE_IVR_NODE_HANGUP_ARIA_LABEL = nœud de raccrochage\\nDIALTONE_MESSAGE_INPUT_SEND_BUTTON_ARIA_LABEL = Envoyer\\nDIALTONE_MESSAGE_INPUT_IMAGE_PICKER_BUTTON_ARIA_LABEL = Joindre une image\\nDIALTONE_MESSAGE_INPUT_EMOJI_PICKER_BUTTON_ARIA_LABEL = Sélectionner un emoji\\nDIALTONE_MESSAGE_INPUT_CANCEL_BUTTON_ARIA_LABEL = Annuler\\nDIALTONE_MESSAGE_INPUT_BOLD_BUTTON_LABEL =\\n .aria-label = Mettre en gras le texte sélectionné\\n .tooltip-text = Gras\\nDIALTONE_MESSAGE_INPUT_ITALIC_BUTTON_LABEL =\\n .aria-label = Mettre en italique le texte sélectionné\\n .tooltip-text = Italique\\nDIALTONE_MESSAGE_INPUT_STRIKETHROUGH_BUTTON_LABEL =\\n .aria-label = Barrer le texte sélectionné\\n .tooltip-text = Barré\\nDIALTONE_MESSAGE_INPUT_BULLET_LIST_BUTTON_LABEL =\\n .aria-label = Créez ou modifiez une liste à puces sur le texte sélectionné\\n .tooltip-text = Liste à puces\\nDIALTONE_MESSAGE_INPUT_ORDERED_LIST_BUTTON_LABEL =\\n .aria-label = Créer ou modifier une liste numérotée sur le texte sélectionné\\n .tooltip-text = Liste numérotée\\nDIALTONE_MESSAGE_INPUT_BLOCK_QUOTE_BUTTON_LABEL =\\n .aria-label = Créer ou modifier un bloc de citation sur le texte sélectionné\\n .tooltip-text = Bloc de citation\\nDIALTONE_MESSAGE_INPUT_CODE_BUTTON_LABEL =\\n .aria-label = Créer ou modifier un code sur le texte sélectionné\\n .tooltip-text = Code\\nDIALTONE_MESSAGE_INPUT_CODE_BLOCK_BUTTON_LABEL =\\n .aria-label = Créer ou modifier un bloc de code sur le texte sélectionné\\n .tooltip-text = Bloc de code\\nDIALTONE_MESSAGE_INPUT_LINK_BUTTON_LABEL =\\n .aria-label = Créer ou modifier un lien sur le texte sélectionné\\n .tooltip-text = Lien\\nDIALTONE_MESSAGE_INPUT_LINK_DIALOG_TITLE = Ajouter un lien\\nDIALTONE_MESSAGE_INPUT_LINK_TEXT_LABEL = Texte à afficher (facultatif)\\nDIALTONE_MESSAGE_INPUT_LINK_LINK_LABEL = Lien\\nDIALTONE_MESSAGE_INPUT_LINK_LINK_PLACEHOLDER = par exemple : https://www.dialpad.com\\nDIALTONE_MESSAGE_INPUT_LINK_REMOVE_LABEL = Supprimer\\nDIALTONE_MESSAGE_INPUT_LINK_CANCEL_LABEL = Annuler\\nDIALTONE_MESSAGE_INPUT_LINK_CONFIRM_LABEL = Terminé\\nDIALTONE_PAGINATION_FIRST_PAGE = Prénom\\nDIALTONE_PAGINATION_PREVIOUS_PAGE = Page précédente\\nDIALTONE_PAGINATION_NEXT_PAGE = Page suivante\\nDIALTONE_PAGINATION_LAST_PAGE = Dernière page\\nDIALTONE_PAGINATION_PAGE_NUMBER = Page numéro { $page }\\nDIALTONE_RICH_TEXT_EDITOR_EDIT_BUTTON_LABEL = Modifier\\nDIALTONE_RICH_TEXT_EDITOR_OPEN_LINK_BUTTON_LABEL = Ouvrir le lien\\nDIALTONE_RICH_TEXT_EDITOR_REMOVE_BUTTON_LABEL = Supprimer\\nDIALTONE_SETTINGS_MENU_DEFAULT_BUTTON_LABEL = Paramètres\\nDIALTONE_SETTINGS_MENU_UPDATE_BUTTON_LABEL = Mettre à jour\\nDIALTONE_UNREAD_PILL_MENTIONS_TEXT = Mentions non lues\\nDIALTONE_UNREAD_PILL_MESSAGES_TEXT = Messages non lus\\n# Storybook only\\nSTORYBOOK_LANGUAGE_ENGLISH = Anglais\\nSTORYBOOK_LANGUAGE_CHINESE = Chinois\\nSTORYBOOK_LANGUAGE_DUTCH = Néerlandais\\nSTORYBOOK_LANGUAGE_FRENCH = Français\\nSTORYBOOK_LANGUAGE_GERMAN = Allemand\\nSTORYBOOK_LANGUAGE_ITALIAN = Italien\\nSTORYBOOK_LANGUAGE_JAPANESE = Japonais\\nSTORYBOOK_LANGUAGE_PORTUGUESE = Portugais\\nSTORYBOOK_LANGUAGE_RUSSIAN = Russe\\nSTORYBOOK_LANGUAGE_SPANISH = Espagnol\\nSTORYBOOK_SET_LANGUAGE = Définir la langue\\nSTORYBOOK_YOU = Vous\\nSTORYBOOK_REACTION_NAMES_2 = Olivia Chen, Benjamin Carter, Sophia Rodriguez, William Kim et Isabella Garcia\\nSTORYBOOK_REACTION_NAMES_3 = Olivia Chen et { STORYBOOK_YOU }\\n\""],"names":["frFR"],"mappings":"AAAA,MAAAA,IAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;"}
|
|
@@ -64,8 +64,8 @@ DIALTONE_EMOJI_ROW_REACTION_LABEL =
|
|
|
64
64
|
}
|
|
65
65
|
*[other]
|
|
66
66
|
{ $youIncluded ->
|
|
67
|
-
*[true]
|
|
68
|
-
[false]
|
|
67
|
+
*[true] hanno reagito con { $reaction }
|
|
68
|
+
[false] hanno reagito con { $reaction }
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
DIALTONE_EMOJI_PICKER_ADD_EMOJI_LABEL = Aggiungi emoji
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"it-IT.cjs","sources":["../../localization/it-IT.ftl?raw"],"sourcesContent":["export default \"# Dialtone\\nDIALTONE_CLOSE_BUTTON = Clicca per chiudere\\nDIALTONE_BREADCRUMBS_ARIA_LABEL = Breadcrumb\\nDIALTONE_LOADING = Caricamento in corso\\nDIALTONE_UNREAD_MESSAGE_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Nessun messaggio non letto\\n [1] 1 messaggio non letto\\n *[other] { $unreadCount } messaggi non letti\\n }\\nDIALTONE_UNREAD_MENTION_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Nessuna menzione non letta\\n [1] 1 menzione non letta\\n *[other] { $unreadCount } menzioni non lette\\n }\\nDIALTONE_TYPING_TEXT = Digitare\\nDIALTONE_ATTACHMENT_CAROUSEL_CLICK_TO_OPEN_ARIA_LABEL = Clicca per aprire\\nDIALTONE_ATTACHMENT_CAROUSEL_PROGRESS_BAR_ARIA_LABEL = Caricamento\\nDIALTONE_ATTACHMENT_CAROUSEL_LEFT_ARROW_ARIA_LABEL = Precedente\\nDIALTONE_ATTACHMENT_CAROUSEL_RIGHT_ARROW_ARIA_LABEL = AVANTI\\nDIALTONE_CALLBAR_BUTTON_WITH_DROPDOWN_ARROW_BUTTON_ARIA_LABEL = Apri il menu a discesa\\nDIALTONE_CALLBAR_BUTTON_WITH_POPOVER_ARROW_BUTTON_ARIA_LABEL = Apri popover\\nDIALTONE_CONTACT_CENTERS_ROW_MENU_BUTTON_LABEL = Apri menu\\nDIALTONE_DATEPICKER_PREVIOUS_MONTH = Mese precedente\\nDIALTONE_DATEPICKER_NEXT_MONTH = il mese prossimo\\nDIALTONE_DATEPICKER_PREVIOUS_YEAR = Anno precedente\\nDIALTONE_DATEPICKER_NEXT_YEAR = l'anno prossimo\\nDIALTONE_DATEPICKER_SELECT_DAY = Seleziona il giorno\\nDIALTONE_DATEPICKER_CHANGE_TO = Cambia in\\nDIALTONE_EDITOR_CONFIRM_SET_LINK_BUTTON =\\n .title = Conferma\\n .aria-label = Conferma il link impostato\\nDIALTONE_EDITOR_REMOVE_LINK_BUTTON =\\n .title = Rimuovi\\n .aria-label = Rimuovi il link\\nDIALTONE_EDITOR_CANCEL_SET_LINK_BUTTON =\\n .title = Annulla\\n .aria-label = Annulla il link impostato\\nDIALTONE_EDITOR_QUICK_REPLY_BUTTON_LABEL = Modello\\nDIALTONE_EDITOR_BOLD_BUTTON_LABEL = Grassetto\\nDIALTONE_EDITOR_ITALICS_BUTTON_LABEL = Corsivo\\nDIALTONE_EDITOR_UNDERLINE_BUTTON_LABEL = Sottolineato\\nDIALTONE_EDITOR_STRIKE_BUTTON_LABEL = Barrato\\nDIALTONE_EDITOR_ALIGN_LEFT_BUTTON_LABEL = Allineamento a sinistra\\nDIALTONE_EDITOR_ALIGN_CENTER_BUTTON_LABEL = Allineamento al centro\\nDIALTONE_EDITOR_ALIGN_RIGHT_BUTTON_LABEL = Allineamento a destra\\nDIALTONE_EDITOR_ALIGN_JUSTIFY_BUTTON_LABEL = Allineamento giustificato\\nDIALTONE_EDITOR_BULLET_LIST_BUTTON_LABEL = Elenco puntato\\nDIALTONE_EDITOR_ORDERED_LIST_BUTTON_LABEL = Elenco ordinato\\nDIALTONE_EDITOR_QUOTE_BUTTON_LABEL = Citazione\\nDIALTONE_EDITOR_CODE_BUTTON_LABEL = Codice\\nDIALTONE_EDITOR_IMAGE_BUTTON_LABEL = Immagine\\nDIALTONE_EDITOR_LINK_BUTTON_LABEL = Link\\nDIALTONE_EDITOR_ADD_LINK_BUTTON =\\n .title = Aggiungi link\\n .aria-label = Campo di input per aggiungere il link\\nDIALTONE_EMOJI_ROW_REACTION_LABEL =\\n { $personCount ->\\n [one]\\n { $youIncluded ->\\n *[true] ha reagito con { $reaction }\\n [false] ha reagito con { $reaction }\\n }\\n *[other]\\n { $youIncluded ->\\n *[true]
|
|
1
|
+
{"version":3,"file":"it-IT.cjs","sources":["../../localization/it-IT.ftl?raw"],"sourcesContent":["export default \"# Dialtone\\nDIALTONE_CLOSE_BUTTON = Clicca per chiudere\\nDIALTONE_BREADCRUMBS_ARIA_LABEL = Breadcrumb\\nDIALTONE_LOADING = Caricamento in corso\\nDIALTONE_UNREAD_MESSAGE_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Nessun messaggio non letto\\n [1] 1 messaggio non letto\\n *[other] { $unreadCount } messaggi non letti\\n }\\nDIALTONE_UNREAD_MENTION_COUNT_TEXT =\\n { $unreadCount ->\\n [0] Nessuna menzione non letta\\n [1] 1 menzione non letta\\n *[other] { $unreadCount } menzioni non lette\\n }\\nDIALTONE_TYPING_TEXT = Digitare\\nDIALTONE_ATTACHMENT_CAROUSEL_CLICK_TO_OPEN_ARIA_LABEL = Clicca per aprire\\nDIALTONE_ATTACHMENT_CAROUSEL_PROGRESS_BAR_ARIA_LABEL = Caricamento\\nDIALTONE_ATTACHMENT_CAROUSEL_LEFT_ARROW_ARIA_LABEL = Precedente\\nDIALTONE_ATTACHMENT_CAROUSEL_RIGHT_ARROW_ARIA_LABEL = AVANTI\\nDIALTONE_CALLBAR_BUTTON_WITH_DROPDOWN_ARROW_BUTTON_ARIA_LABEL = Apri il menu a discesa\\nDIALTONE_CALLBAR_BUTTON_WITH_POPOVER_ARROW_BUTTON_ARIA_LABEL = Apri popover\\nDIALTONE_CONTACT_CENTERS_ROW_MENU_BUTTON_LABEL = Apri menu\\nDIALTONE_DATEPICKER_PREVIOUS_MONTH = Mese precedente\\nDIALTONE_DATEPICKER_NEXT_MONTH = il mese prossimo\\nDIALTONE_DATEPICKER_PREVIOUS_YEAR = Anno precedente\\nDIALTONE_DATEPICKER_NEXT_YEAR = l'anno prossimo\\nDIALTONE_DATEPICKER_SELECT_DAY = Seleziona il giorno\\nDIALTONE_DATEPICKER_CHANGE_TO = Cambia in\\nDIALTONE_EDITOR_CONFIRM_SET_LINK_BUTTON =\\n .title = Conferma\\n .aria-label = Conferma il link impostato\\nDIALTONE_EDITOR_REMOVE_LINK_BUTTON =\\n .title = Rimuovi\\n .aria-label = Rimuovi il link\\nDIALTONE_EDITOR_CANCEL_SET_LINK_BUTTON =\\n .title = Annulla\\n .aria-label = Annulla il link impostato\\nDIALTONE_EDITOR_QUICK_REPLY_BUTTON_LABEL = Modello\\nDIALTONE_EDITOR_BOLD_BUTTON_LABEL = Grassetto\\nDIALTONE_EDITOR_ITALICS_BUTTON_LABEL = Corsivo\\nDIALTONE_EDITOR_UNDERLINE_BUTTON_LABEL = Sottolineato\\nDIALTONE_EDITOR_STRIKE_BUTTON_LABEL = Barrato\\nDIALTONE_EDITOR_ALIGN_LEFT_BUTTON_LABEL = Allineamento a sinistra\\nDIALTONE_EDITOR_ALIGN_CENTER_BUTTON_LABEL = Allineamento al centro\\nDIALTONE_EDITOR_ALIGN_RIGHT_BUTTON_LABEL = Allineamento a destra\\nDIALTONE_EDITOR_ALIGN_JUSTIFY_BUTTON_LABEL = Allineamento giustificato\\nDIALTONE_EDITOR_BULLET_LIST_BUTTON_LABEL = Elenco puntato\\nDIALTONE_EDITOR_ORDERED_LIST_BUTTON_LABEL = Elenco ordinato\\nDIALTONE_EDITOR_QUOTE_BUTTON_LABEL = Citazione\\nDIALTONE_EDITOR_CODE_BUTTON_LABEL = Codice\\nDIALTONE_EDITOR_IMAGE_BUTTON_LABEL = Immagine\\nDIALTONE_EDITOR_LINK_BUTTON_LABEL = Link\\nDIALTONE_EDITOR_ADD_LINK_BUTTON =\\n .title = Aggiungi link\\n .aria-label = Campo di input per aggiungere il link\\nDIALTONE_EMOJI_ROW_REACTION_LABEL =\\n { $personCount ->\\n [one]\\n { $youIncluded ->\\n *[true] ha reagito con { $reaction }\\n [false] ha reagito con { $reaction }\\n }\\n *[other]\\n { $youIncluded ->\\n *[true] hanno reagito con { $reaction }\\n [false] hanno reagito con { $reaction }\\n }\\n }\\nDIALTONE_EMOJI_PICKER_ADD_EMOJI_LABEL = Aggiungi emoji\\nDIALTONE_EMOJI_PICKER_SEARCH_NO_RESULTS_LABEL = Nessun risultato\\nDIALTONE_EMOJI_PICKER_SEARCH_RESULTS_LABEL = ricerca risultati\\nDIALTONE_EMOJI_PICKER_SEARCH_PLACEHOLDER_LABEL = Ricerca...\\nDIALTONE_EMOJI_PICKER_SKIN_SELECTOR_BUTTON_TOOLTIP_LABEL = Modifica il tono predefinito della pelle\\nDIALTONE_EMOJI_PICKER_TABSET_RECENTLY_USED_LABEL = Utilizzato più di recente\\nDIALTONE_EMOJI_PICKER_TABSET_SMILEYS_AND_PEOPLE_LABEL = Smiley e persone\\nDIALTONE_EMOJI_PICKER_TABSET_NATURE_LABEL = natura\\nDIALTONE_EMOJI_PICKER_TABSET_FOOD_LABEL = cibo\\nDIALTONE_EMOJI_PICKER_TABSET_ACTIVITY_LABEL = Attività\\nDIALTONE_EMOJI_PICKER_TABSET_TRAVEL_LABEL = viaggi\\nDIALTONE_EMOJI_PICKER_TABSET_OBJECTS_LABEL = Oggetti\\nDIALTONE_EMOJI_PICKER_TABSET_SYMBOLS_LABEL = Simboli\\nDIALTONE_EMOJI_PICKER_TABSET_FLAGS_LABEL = Bandiere\\nDIALTONE_EMOJI_PICKER_TABSET_CUSTOM_LABEL = Personalizzato\\nDIALTONE_FEED_ITEM_PILL_ARIA_LABEL = Clicca per ingrandire\\nDIALTONE_GENERAL_ROW_ACTIVE_VOICE_CHAT_TEXT = Chat vocale attiva\\nDIALTONE_GENERAL_ROW_CALL_BUTTON_TOOLTIP = Chiamata\\nDIALTONE_GENERAL_ROW_DND_TEXT_TOOLTIP = Non disturbare\\nDIALTONE_GROUP_ROW_GROUP_COUNT_TEXT =\\n { $count ->\\n [1] 1 utente\\n *[other] { $count } utenti\\n }\\nDIALTONE_IVR_NODE_MENU_BUTTON_ARIA_LABEL = Apri menu\\nDIALTONE_IVR_NODE_PROMPTMENU_ARIA_LABEL = nodo del menu di richiesta\\nDIALTONE_IVR_NODE_PROMPTCOLLECT_ARIA_LABEL = nodo di raccolta prompt\\nDIALTONE_IVR_NODE_PROMPTPLAY_ARIA_LABEL = nodo di riproduzione prompt\\nDIALTONE_IVR_NODE_GOTOEXPERT_ARIA_LABEL = vai a nodo expert\\nDIALTONE_IVR_NODE_BRANCH_ARIA_LABEL = nodo di branch\\nDIALTONE_IVR_NODE_GOTO_ARIA_LABEL = vai al nodo\\nDIALTONE_IVR_NODE_ASSIGN_ARIA_LABEL = assegna nodo\\nDIALTONE_IVR_NODE_CUSTOMERDATA_ARIA_LABEL = nodo dati cliente\\nDIALTONE_IVR_NODE_TRANSFER_ARIA_LABEL = nodo di trasferimento\\nDIALTONE_IVR_NODE_HANGUP_ARIA_LABEL = nodo di riaggancio\\nDIALTONE_MESSAGE_INPUT_SEND_BUTTON_ARIA_LABEL = Invia\\nDIALTONE_MESSAGE_INPUT_IMAGE_PICKER_BUTTON_ARIA_LABEL = Allega immagine\\nDIALTONE_MESSAGE_INPUT_EMOJI_PICKER_BUTTON_ARIA_LABEL = Seleziona emoji\\nDIALTONE_MESSAGE_INPUT_CANCEL_BUTTON_ARIA_LABEL = Annulla\\nDIALTONE_MESSAGE_INPUT_BOLD_BUTTON_LABEL =\\n .aria-label = Attiva/disattiva il grassetto per il testo selezionato\\n .tooltip-text = Grassetto\\nDIALTONE_MESSAGE_INPUT_ITALIC_BUTTON_LABEL =\\n .aria-label = Attiva/disattiva il corsivo per il testo selezionato\\n .tooltip-text = Corsivo\\nDIALTONE_MESSAGE_INPUT_STRIKETHROUGH_BUTTON_LABEL =\\n .aria-label = Attiva/disattiva il barrato per il testo selezionato\\n .tooltip-text = Barrato\\nDIALTONE_MESSAGE_INPUT_BULLET_LIST_BUTTON_LABEL =\\n .aria-label = Crea o modifica l'elenco puntato per il testo selezionato\\n .tooltip-text = Elenco puntato\\nDIALTONE_MESSAGE_INPUT_ORDERED_LIST_BUTTON_LABEL =\\n .aria-label = Crea o modifica un elenco ordinato per il testo selezionato\\n .tooltip-text = Elenco ordinato\\nDIALTONE_MESSAGE_INPUT_BLOCK_QUOTE_BUTTON_LABEL =\\n .aria-label = Crea o modifica una citazione in blocco per il testo selezionato\\n .tooltip-text = Citazione in blocco\\nDIALTONE_MESSAGE_INPUT_CODE_BUTTON_LABEL =\\n .aria-label = Crea o modifica il codice per il testo selezionato\\n .tooltip-text = Codice\\nDIALTONE_MESSAGE_INPUT_CODE_BLOCK_BUTTON_LABEL =\\n .aria-label = Crea o modifica un blocco di codice per il testo selezionato\\n .tooltip-text = Blocco di codice\\nDIALTONE_MESSAGE_INPUT_LINK_BUTTON_LABEL =\\n .aria-label = Crea o modifica un collegamento per il testo selezionato\\n .tooltip-text = Link\\nDIALTONE_MESSAGE_INPUT_LINK_DIALOG_TITLE = Aggiungi un link\\nDIALTONE_MESSAGE_INPUT_LINK_TEXT_LABEL = Testo da visualizzare (facoltativo)\\nDIALTONE_MESSAGE_INPUT_LINK_LINK_LABEL = Link\\nDIALTONE_MESSAGE_INPUT_LINK_LINK_PLACEHOLDER = es. https://www.dialpad.com\\nDIALTONE_MESSAGE_INPUT_LINK_REMOVE_LABEL = Rimuovi\\nDIALTONE_MESSAGE_INPUT_LINK_CANCEL_LABEL = Annulla\\nDIALTONE_MESSAGE_INPUT_LINK_CONFIRM_LABEL = Fatto\\nDIALTONE_PAGINATION_FIRST_PAGE = Prima pagina\\nDIALTONE_PAGINATION_PREVIOUS_PAGE = Pagina precedente\\nDIALTONE_PAGINATION_NEXT_PAGE = Pagina successiva\\nDIALTONE_PAGINATION_LAST_PAGE = Ultima pagina\\nDIALTONE_PAGINATION_PAGE_NUMBER = Pagina n. { $page }\\nDIALTONE_RICH_TEXT_EDITOR_EDIT_BUTTON_LABEL = Modifica\\nDIALTONE_RICH_TEXT_EDITOR_OPEN_LINK_BUTTON_LABEL = Apri il link\\nDIALTONE_RICH_TEXT_EDITOR_REMOVE_BUTTON_LABEL = Rimuovi\\nDIALTONE_SETTINGS_MENU_DEFAULT_BUTTON_LABEL = Impostazioni\\nDIALTONE_SETTINGS_MENU_UPDATE_BUTTON_LABEL = Aggiorna\\nDIALTONE_UNREAD_PILL_MENTIONS_TEXT = Menzioni non lette\\nDIALTONE_UNREAD_PILL_MESSAGES_TEXT = Messaggi non letti\\n# Storybook only\\nSTORYBOOK_LANGUAGE_ENGLISH = Inglese\\nSTORYBOOK_LANGUAGE_CHINESE = Cinese\\nSTORYBOOK_LANGUAGE_DUTCH = Olandese\\nSTORYBOOK_LANGUAGE_FRENCH = Francese\\nSTORYBOOK_LANGUAGE_GERMAN = Tedesco\\nSTORYBOOK_LANGUAGE_ITALIAN = Italiano\\nSTORYBOOK_LANGUAGE_JAPANESE = Giapponese\\nSTORYBOOK_LANGUAGE_PORTUGUESE = Portoghese\\nSTORYBOOK_LANGUAGE_RUSSIAN = Russo\\nSTORYBOOK_LANGUAGE_SPANISH = Spagnolo\\nSTORYBOOK_SET_LANGUAGE = Imposta la lingua\\nSTORYBOOK_YOU = Tu\\nSTORYBOOK_REACTION_NAMES_2 = Olivia Chen, Benjamin Carter, Sophia Rodriguez, William Kim e Isabella Garcia\\nSTORYBOOK_REACTION_NAMES_3 = Olivia Chen e { STORYBOOK_YOU }\\n\""],"names":["itIT"],"mappings":"4GAAA,MAAAA,EAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA"}
|
|
@@ -64,8 +64,8 @@ DIALTONE_EMOJI_ROW_REACTION_LABEL =
|
|
|
64
64
|
}
|
|
65
65
|
*[other]
|
|
66
66
|
{ $youIncluded ->
|
|
67
|
-
*[true]
|
|
68
|
-
[false]
|
|
67
|
+
*[true] hanno reagito con { $reaction }
|
|
68
|
+
[false] hanno reagito con { $reaction }
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
DIALTONE_EMOJI_PICKER_ADD_EMOJI_LABEL = Aggiungi emoji
|