Files
directus/app/src/interfaces/_system/interface-options/index.ts
Nitwel 93f8b7720c Fix translations not working on displays, modules... (#4734)
* generalyze extensions

* replace vue-i18n tranlslations

* replace vue-i18n tranlslations

* add missing commas

* replace translations recursive

* restructure translate

* remove unused i18n

* remove unused i18n

* remove unused i18n

* Remove i18n context in define

* Rename translate util file

* Fix type errors

Co-authored-by: rijkvanzanten <rijkvanzanten@me.com>
2021-04-08 16:36:55 -04:00

14 lines
389 B
TypeScript

import { defineInterface } from '@/interfaces/define';
import InterfaceOptions from './interface-options.vue';
export default defineInterface({
id: 'interface-options',
name: '$t:interfaces.interface-options.interface-options',
description: '$t:interfaces.interface-options.description',
icon: 'box',
component: InterfaceOptions,
types: ['string'],
options: [],
system: true,
});