summaryrefslogtreecommitdiff
path: root/locales
diff options
context:
space:
mode:
authorかっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>2024-11-15 17:30:54 +0900
committerGitHub <noreply@github.com>2024-11-15 17:30:54 +0900
commitc0d168260482caa974e3fc9e084b121fc32e8ec4 (patch)
treeaddcc1432d1ba3097667ca3ba86d33cd87793615 /locales
parentupdate deps (#14950) (diff)
downloadsharkey-c0d168260482caa974e3fc9e084b121fc32e8ec4.tar.gz
sharkey-c0d168260482caa974e3fc9e084b121fc32e8ec4.tar.bz2
sharkey-c0d168260482caa974e3fc9e084b121fc32e8ec4.zip
feat: 送信したフォローリクエストを確認できるように (#14856)
* FEAT: Allow users to view pending follow requests they sent This commit implements the `following/requests/sent` interface firstly implemented on Firefish, and provides a UI interface to view the pending follow requests users sent. * ux: should not show follow requests tab when have no pending sent follow req * fix default followreq tab * fix default followreq tab * restore missing hasPendingReceivedFollowRequest in navbar * refactor * use tabler icons * tweak design * Revert "ux: should not show follow requests tab when have no pending sent follow req" This reverts commit e580b92c37f27c2849c6d27e22ca4c47086081bb. * Update Changelog * Update Changelog * change tab titles --------- Co-authored-by: Lhc_fl <lhcfl@outlook.com> Co-authored-by: Hazelnoot <acomputerdog@gmail.com>
Diffstat (limited to 'locales')
-rw-r--r--locales/index.d.ts10
-rw-r--r--locales/ja-JP.yml4
2 files changed, 14 insertions, 0 deletions
diff --git a/locales/index.d.ts b/locales/index.d.ts
index 440f24ac84..18fbfd15f0 100644
--- a/locales/index.d.ts
+++ b/locales/index.d.ts
@@ -10579,6 +10579,16 @@ export interface Locale extends ILocale {
*/
"description3": ParameterizedString<"link">;
};
+ "_followRequest": {
+ /**
+ * 受け取った申請
+ */
+ "recieved": string;
+ /**
+ * 送った申請
+ */
+ "sent": string;
+ };
}
declare const locales: {
[lang: string]: Locale;
diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml
index 5d8e1a5e72..439ae708c5 100644
--- a/locales/ja-JP.yml
+++ b/locales/ja-JP.yml
@@ -2819,3 +2819,7 @@ _selfXssPrevention:
description1: "ここに何かを貼り付けると、悪意のあるユーザーにアカウントを乗っ取られたり、個人情報を盗まれたりする可能性があります。"
description2: "貼り付けようとしているものが何なのかを正確に理解していない場合は、%c今すぐ作業を中止してこのウィンドウを閉じてください。"
description3: "詳しくはこちらをご確認ください。 {link}"
+
+_followRequest:
+ recieved: "受け取った申請"
+ sent: "送った申請"