1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- export default {
- 'vip-user': 'crown',
- 'vip-organization': 'crown-silver',
- 'input-cancel': 'close-small',
- tooltip: 'info',
- 'common-alert-danger': 'close-small',
- 'common-alert-dismiss': 'close',
- 'common-alert-info': 'info',
- 'common-alert-success': 'check-circle-outline',
- 'common-alert-warning': 'warning',
- 'common-notification-warn': 'info',
- 'common-notification-success': 'check',
- 'common-notification-error': 'warning',
- 'common-notification-info': 'info',
- 'ticket-escalating': 'warning-triangle',
- 'ticket-state-circle': 'check-circle-no',
- 'encryption-enabled': 'lock',
- 'encryption-disabled': 'unlock',
- 'sign-enabled': 'signed',
- 'sign-disabled': 'not-signed',
- 'remove-attachment': 'close-small',
- // editor, some of them are the same
- 'text-style-underline': 'text-style-underline',
- 'text-style-bold': 'text-style-bold',
- 'text-style-italic': 'text-style-italic',
- 'text-style-strikethrough': 'text-style-strikethrough',
- 'editor-inline-image': 'photos',
- 'editor-inline-link': 'link',
- 'text-style-h': 'text-style-h',
- 'text-style-h1': 'text-style-h1',
- 'text-style-h2': 'text-style-h2',
- 'text-style-h3': 'text-style-h3',
- 'editor-ordered-list': 'ordered-list',
- 'editor-bullet-list': 'list',
- 'editor-remove-formatting': 'remove-formatting',
- 'editor-mention-user': 'at-sign',
- 'editor-mention-knowledge-base': 'mention-kb',
- 'editor-mention-text-module': 'snippet',
- 'editor-table': 'table',
- 'editor-code': 'code',
- 'editor-code-block': 'code-square',
- 'editor-code-slash': 'code-slash',
- 'editor-indent-right': 'text-indent-right',
- 'editor-indent-left': 'text-indent-left',
- 'editor-text-color': 'text-style-color',
- 'editor-action-checkmark': 'check',
- '2fa-security-keys': 'security-key',
- '2fa-authenticator-app': 'mobile-code',
- 'form-field-link': 'external-link',
- 'mail-file': 'mail-out',
- // these aliases are used in shared context, but they refer to the same name
- search: 'search',
- loading: 'loading',
- show: 'show',
- hide: 'hide',
- // WhatsApp status icons
- read: 'check-double-circle',
- delivered: 'check-double',
- send: 'check',
- // Icons in shared article security composables
- 'signing-success': 'signed',
- 'signing-fail': 'not-signed',
- 'encryption-success': 'lock',
- 'encryption-fail': 'encryption-error',
- // Avatar indicator
- 'avatar-indicator-inactive': 'inactive-user',
- 'avatar-indicator-without-access': 'notification-unsubscribed',
- 'avatar-indicator-out-of-office': 'vacation-mode',
- 'avatar-indicator-editing-desktop': 'desktop-edit',
- 'avatar-indicator-editing-mobile': 'edit',
- 'avatar-indicator-desktop': 'desktop',
- 'avatar-indicator-mobile': 'avatar-indicator-mobile',
- 'avatar-indicator-idle': 'avatar-indicator-idle',
- }
|