mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-07 12:36:57 +00:00
translate bubble timeline controls
This commit is contained in:
parent
05884cb83d
commit
022337c1e7
3 changed files with 13 additions and 2 deletions
8
locales/index.d.ts
vendored
8
locales/index.d.ts
vendored
|
@ -13029,6 +13029,14 @@ export interface Locale extends ILocale {
|
||||||
* Text does not match any patterns.
|
* Text does not match any patterns.
|
||||||
*/
|
*/
|
||||||
"wordMuteTestNoMatch": string;
|
"wordMuteTestNoMatch": string;
|
||||||
|
/**
|
||||||
|
* Bubble timeline
|
||||||
|
*/
|
||||||
|
"bubbleTimeline": string;
|
||||||
|
/**
|
||||||
|
* Choose which instances should be displayed in the bubble.
|
||||||
|
*/
|
||||||
|
"bubbleTimelineDescription": string;
|
||||||
}
|
}
|
||||||
declare const locales: {
|
declare const locales: {
|
||||||
[lang: string]: Locale;
|
[lang: string]: Locale;
|
||||||
|
|
|
@ -28,11 +28,11 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
|
||||||
<MkFolder>
|
<MkFolder>
|
||||||
<template #icon><i class="ph-drop ph-bold ph-lg"></i></template>
|
<template #icon><i class="ph-drop ph-bold ph-lg"></i></template>
|
||||||
<template #label>Bubble timeline</template>
|
<template #label>{{ i18n.ts.bubbleTimeline }}</template>
|
||||||
|
|
||||||
<div class="_gaps">
|
<div class="_gaps">
|
||||||
<MkTextarea v-model="bubbleTimeline">
|
<MkTextarea v-model="bubbleTimeline">
|
||||||
<template #caption>Choose which instances should be displayed in the bubble.</template>
|
<template #caption>{{ i18n.ts.bubbleTimelineDescription }}</template>
|
||||||
</MkTextarea>
|
</MkTextarea>
|
||||||
<MkButton primary @click="save_bubbleTimeline">{{ i18n.ts.save }}</MkButton>
|
<MkButton primary @click="save_bubbleTimeline">{{ i18n.ts.save }}</MkButton>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -559,3 +559,6 @@ wordMuteTestTest: "Test"
|
||||||
wordMuteTestMatch: "Matched words: {words}"
|
wordMuteTestMatch: "Matched words: {words}"
|
||||||
wordMuteTestNoResults: "No results yet, enter some text and click \"Test\" to check it."
|
wordMuteTestNoResults: "No results yet, enter some text and click \"Test\" to check it."
|
||||||
wordMuteTestNoMatch: "Text does not match any patterns."
|
wordMuteTestNoMatch: "Text does not match any patterns."
|
||||||
|
|
||||||
|
bubbleTimeline: "Bubble timeline"
|
||||||
|
bubbleTimelineDescription: "Choose which instances should be displayed in the bubble."
|
||||||
|
|
Loading…
Add table
Reference in a new issue