12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- // 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',
- // 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-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',
- '2fa-security-keys': 'security-key',
- '2fa-authenticator-app': 'mobile-code',
- 'form-field-link': 'external-link',
- // these aliases are used in shared context, but they refer to the same name
- search: 'search',
- loading: 'loading',
- show: 'show',
- hide: 'hide',
- }
|