summaryrefslogtreecommitdiff
path: root/locales
diff options
context:
space:
mode:
authorかっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>2024-07-30 14:45:53 +0900
committerGitHub <noreply@github.com>2024-07-30 14:45:53 +0900
commit866abff54d8e3c377361a0d75ef7ee59ba2fcd84 (patch)
treed0c259a75e9e11e9a62b2f61477bd106002c7863 /locales
parentenhance(frontend): ドライブのファイル・フォルダをドラッグ... (diff)
downloadmisskey-866abff54d8e3c377361a0d75ef7ee59ba2fcd84.tar.gz
misskey-866abff54d8e3c377361a0d75ef7ee59ba2fcd84.tar.bz2
misskey-866abff54d8e3c377361a0d75ef7ee59ba2fcd84.zip
enhance(frontend): ブラウザのコンテキストメニューを使用できるように (#14076)
* enhance(frontend): ブラウザのコンテキストメニューを使用できるように * Update Changelog * shiftにした * change keys * fix * fix * fix * update translation keys --------- Co-authored-by: tamaina <tamaina@hotmail.co.jp>
Diffstat (limited to 'locales')
-rw-r--r--locales/index.d.ts18
-rw-r--r--locales/ja-JP.yml6
2 files changed, 24 insertions, 0 deletions
diff --git a/locales/index.d.ts b/locales/index.d.ts
index 848050583b..30c21c92e7 100644
--- a/locales/index.d.ts
+++ b/locales/index.d.ts
@@ -10118,6 +10118,24 @@ export interface Locale extends ILocale {
*/
"loop": string;
};
+ "_contextMenu": {
+ /**
+ * コンテキストメニュー
+ */
+ "title": string;
+ /**
+ * アプリケーション
+ */
+ "app": string;
+ /**
+ * Shiftキーでアプリケーション
+ */
+ "appWithShift": string;
+ /**
+ * ブラウザのUI
+ */
+ "native": string;
+ };
}
declare const locales: {
[lang: string]: Locale;
diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml
index 22228f9254..ea2ffb9c0d 100644
--- a/locales/ja-JP.yml
+++ b/locales/ja-JP.yml
@@ -2697,3 +2697,9 @@ _mediaControls:
pip: "ピクチャインピクチャ"
playbackRate: "再生速度"
loop: "ループ再生"
+
+_contextMenu:
+ title: "コンテキストメニュー"
+ app: "アプリケーション"
+ appWithShift: "Shiftキーでアプリケーション"
+ native: "ブラウザのUI"