-
自己責任で使用してください
+
{{ i18n.ts._simkey.ownRisk }}
- {{ "ローカルメディアプロキシ" }}
- {{ "クライアント側でメディアプロキシを指定します" }}
+ {{ i18n.ts._simkey.localMediaProxy }}
+ {{ i18n.ts._simkey.localMediaProxyInfo }}
{{ i18n.ts.default }}
@@ -27,7 +27,7 @@ const mediaProxy = computed(defaultStore.makeGetterSetter('mediaProxy'));
const reset = ():void => {
os.confirm({
type: 'warning',
- text: 'リセットしてもよろしいですか?',
+ text: i18n.ts._simkey.confirmReset,
}).then(res => {
if (res.canceled) return;
mediaProxy.value = '';
@@ -39,7 +39,7 @@ const headerActions = $computed(() => []);
const headerTabs = $computed(() => []);
definePageMetadata({
- title: 'Experimental Features',
+ title: i18n.ts._simkey.experimentalFeatures,
icon: 'fas fa-music',
});
diff --git a/packages/client/src/pages/settings/index.vue b/packages/client/src/pages/settings/index.vue
index c26c9006f..98e88d3ea 100644
--- a/packages/client/src/pages/settings/index.vue
+++ b/packages/client/src/pages/settings/index.vue
@@ -170,7 +170,7 @@ const menuDef = computed(() => [{
active: currentPage?.route.name === 'other',
}, {
icon: 'fas fa-flask',
- text: 'Experimental Features',
+ text: i18n.ts._simkey.experimentalFeatures,
to: '/settings/experimental-features',
active: currentPage?.route.name === 'experimental-features',
}],
diff --git a/packages/client/src/scripts/get-note-menu.ts b/packages/client/src/scripts/get-note-menu.ts
index 7aef9d079..4b5cb18cd 100644
--- a/packages/client/src/scripts/get-note-menu.ts
+++ b/packages/client/src/scripts/get-note-menu.ts
@@ -36,7 +36,7 @@ export function getNoteMenu(props: {
function pakuru(): void {
os.confirm({
type: 'question',
- text: i18n.ts.pakuruConfirm,
+ text: i18n.ts._simkey.pakuruConfirm,
}).then(({ canceled }) => {
if (canceled) return;
const postData = {
@@ -224,7 +224,7 @@ export function getNoteMenu(props: {
),
{
icon: 'fas fa-copy',
- text: i18n.ts.pakuru,
+ text: i18n.ts._simkey.pakuru,
action: pakuru,
},
{
diff --git a/packages/client/src/scripts/reactionImportMenu.ts b/packages/client/src/scripts/reactionImportMenu.ts
index 06d1b27ae..e17b043cd 100644
--- a/packages/client/src/scripts/reactionImportMenu.ts
+++ b/packages/client/src/scripts/reactionImportMenu.ts
@@ -133,7 +133,7 @@ export async function openReactionImportMenu(ev: MouseEvent, reaction: string, n
if (await duplication) {
os.confirm({
type: 'warning',
- text: i18n.ts.duplicateEmoji,
+ text: i18n.ts._simkey.duplicateEmoji,
}).then(res => {
if (res.canceled) return;
importEmoji(false);