translate bubble timeline controls

This commit is contained in:
Hazelnoot 2025-05-11 04:05:34 -04:00
parent 05884cb83d
commit 022337c1e7
3 changed files with 13 additions and 2 deletions

8
locales/index.d.ts vendored
View file

@ -13029,6 +13029,14 @@ export interface Locale extends ILocale {
* Text does not match any patterns.
*/
"wordMuteTestNoMatch": string;
/**
* Bubble timeline
*/
"bubbleTimeline": string;
/**
* Choose which instances should be displayed in the bubble.
*/
"bubbleTimelineDescription": string;
}
declare const locales: {
[lang: string]: Locale;

View file

@ -28,11 +28,11 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkFolder>
<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">
<MkTextarea v-model="bubbleTimeline">
<template #caption>Choose which instances should be displayed in the bubble.</template>
<template #caption>{{ i18n.ts.bubbleTimelineDescription }}</template>
</MkTextarea>
<MkButton primary @click="save_bubbleTimeline">{{ i18n.ts.save }}</MkButton>
</div>

View file

@ -559,3 +559,6 @@ wordMuteTestTest: "Test"
wordMuteTestMatch: "Matched words: {words}"
wordMuteTestNoResults: "No results yet, enter some text and click \"Test\" to check it."
wordMuteTestNoMatch: "Text does not match any patterns."
bubbleTimeline: "Bubble timeline"
bubbleTimelineDescription: "Choose which instances should be displayed in the bubble."