Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
samunohito committed Mar 20, 2024
1 parent 03eaef3 commit dc118d7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion locales/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4912,6 +4912,10 @@ export interface Locale extends ILocale {
* リトライ
*/
"gameRetry": string;
/**
* [使用しない場合は空欄にしてください]
*/
"notUsePleaseLeaveBlank": string;
"_bubbleGame": {
/**
* 遊び方
Expand Down Expand Up @@ -9810,7 +9814,7 @@ export interface Locale extends ILocale {
*/
"summaryProxy": string;
/**
* [使用しない場合は空欄にしてください] Misskey本体ではなく、サマリープロキシを使用してプレビューを生成します。
* Misskey本体ではなく、サマリープロキシを使用してプレビューを生成します。
*/
"summaryProxyDescription": string;
/**
Expand Down
3 changes: 2 additions & 1 deletion locales/ja-JP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1224,6 +1224,7 @@ enableHorizontalSwipe: "スワイプしてタブを切り替える"
loading: "読み込み中"
surrender: "やめる"
gameRetry: "リトライ"
notUsePleaseLeaveBlank: "[使用しない場合は空欄にしてください]"

_bubbleGame:
howToPlay: "遊び方"
Expand Down Expand Up @@ -2613,5 +2614,5 @@ _urlPreviewSetting:
userAgent: "User-Agent"
userAgentDescription: "プレビュー取得時に使用されるUser-Agentを設定します。空欄の場合、デフォルトのUser-Agentが使用されます。"
summaryProxy: "プレビューを生成するプロキシのエンドポイント"
summaryProxyDescription: "[使用しない場合は空欄にしてください] Misskey本体ではなく、サマリープロキシを使用してプレビューを生成します。"
summaryProxyDescription: "Misskey本体ではなく、サマリープロキシを使用してプレビューを生成します。"
summaryProxyDescription2: "プロキシには下記パラメータがクエリ文字列として連携されます。プロキシ側がこれらをサポートしない場合、設定値は無視されます。"
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/admin/settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<div>
<MkInput v-model="urlPreviewSummaryProxyUrl" type="text">
<template #label>{{ i18n.ts._urlPreviewSetting.summaryProxy }}</template>
<template #caption>{{ i18n.ts._urlPreviewSetting.summaryProxyDescription }}</template>
<template #caption>{{ i18n.ts.notUsePleaseLeaveBlank }} {{ i18n.ts._urlPreviewSetting.summaryProxyDescription }}</template>
</MkInput>

<div :class="$style.subCaption">
Expand Down

0 comments on commit dc118d7

Please sign in to comment.