- Added Authentication for Piped Accounts
- Localization
This commit is contained in:
Shiny Nematoda 2022-09-03 06:27:27 +00:00
parent 8548a3646e
commit de6572eee4
No known key found for this signature in database
GPG key ID: 6506D50F5613A42D
26 changed files with 1045 additions and 596 deletions

View file

@ -1,4 +1,5 @@
<script setup>
import { useT } from '@/scripts/i18n.js';
import TextModal from './TextModal.vue';
defineProps(['text']);
@ -10,7 +11,7 @@ const parse = d =>
<template>
<TextModal>
<template #content>
<pre class="placeholder">{{
<pre class="placeholder" :data-placeholder="useT('info.no_info')">{{
text ? parse(text.replaceAll('<br>', '\n')) : ''
}}</pre>
</template>
@ -21,7 +22,4 @@ const parse = d =>
.placeholder:empty::before {
--ico: '\F3B9';
}
.placeholder:empty::after {
--text: 'No Information Available...';
}
</style>