Fix missing case for STATUS notification title

This commit is contained in:
lyyn 2024-02-14 01:57:19 +03:00 committed by LucasGGamerM
parent d08c64e749
commit 8e00b04f71
2 changed files with 2 additions and 0 deletions

View File

@ -45,6 +45,7 @@ public class PushNotification extends BaseModel{
case REBLOG -> R.string.notification_boosted; case REBLOG -> R.string.notification_boosted;
case FAVORITE -> R.string.user_favorited; case FAVORITE -> R.string.user_favorited;
case POLL -> R.string.poll_ended; case POLL -> R.string.poll_ended;
case STATUS -> R.string.sk_posted;
case UPDATE -> R.string.sk_post_edited; case UPDATE -> R.string.sk_post_edited;
case SIGN_UP -> R.string.sk_signed_up; case SIGN_UP -> R.string.sk_signed_up;
case REPORT -> R.string.sk_reported; case REPORT -> R.string.sk_reported;

View File

@ -264,6 +264,7 @@
<string name="sk_add_timeline_tag_error_empty">Hashtag must not be empty</string> <string name="sk_add_timeline_tag_error_empty">Hashtag must not be empty</string>
<string name="sk_alt_button">ALT</string> <string name="sk_alt_button">ALT</string>
<string name="sk_gif_badge">GIF</string> <string name="sk_gif_badge">GIF</string>
<string name="sk_posted">%s posted</string>
<string name="sk_post_edited">edited</string> <string name="sk_post_edited">edited</string>
<string name="sk_notification_type_update">Edited posts</string> <string name="sk_notification_type_update">Edited posts</string>
<string name="sk_notify_update">Edits a boosted post</string> <string name="sk_notify_update">Edits a boosted post</string>