mirror of
https://codeberg.org/yeentown/barkey
synced 2024-11-22 20:45:13 +00:00
merge: feat: Filter notifications by edit (!573)
View MR for information: https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/573 Approved-by: dakkar <dakkar@thenautilus.net> Approved-by: Marie <marie@kaifa.ch>
This commit is contained in:
commit
f9a09b0358
4 changed files with 7 additions and 0 deletions
|
@ -2431,6 +2431,7 @@ _notification:
|
|||
roleAssigned: "Role given"
|
||||
achievementEarned: "Achievement unlocked"
|
||||
app: "Notifications from linked apps"
|
||||
edited: "Edits"
|
||||
_actions:
|
||||
followBack: "followed you back"
|
||||
reply: "Reply"
|
||||
|
|
4
locales/index.d.ts
vendored
4
locales/index.d.ts
vendored
|
@ -9431,6 +9431,10 @@ export interface Locale extends ILocale {
|
|||
* 連携アプリからの通知
|
||||
*/
|
||||
"app": string;
|
||||
/**
|
||||
* 編集済み
|
||||
*/
|
||||
"edited": string;
|
||||
};
|
||||
"_actions": {
|
||||
/**
|
||||
|
|
|
@ -2489,6 +2489,7 @@ _notification:
|
|||
roleAssigned: "ロールが付与された"
|
||||
achievementEarned: "実績の獲得"
|
||||
app: "連携アプリからの通知"
|
||||
edited: "編集済み"
|
||||
|
||||
_actions:
|
||||
followBack: "フォローバック"
|
||||
|
|
|
@ -119,6 +119,7 @@ export const notificationTypes = [
|
|||
'roleAssigned',
|
||||
'achievementEarned',
|
||||
'app',
|
||||
'edited'
|
||||
] as const;
|
||||
export const obsoleteNotificationTypes = ['pollVote', 'groupInvited'] as const;
|
||||
|
||||
|
|
Loading…
Reference in a new issue