More cleanup
This commit is contained in:
parent
22fc82dfee
commit
03ea7618ad
4 changed files with 1 additions and 26 deletions
|
@ -160,6 +160,5 @@
|
|||
"status.local_only": "Only visible from your instance",
|
||||
"status.react": "React",
|
||||
"status.uncollapse": "Uncollapse",
|
||||
"suggestions.dismiss": "Dismiss suggestion",
|
||||
"tooltips.reactions": "Reactions"
|
||||
"suggestions.dismiss": "Dismiss suggestion"
|
||||
}
|
||||
|
|
|
@ -471,7 +471,6 @@
|
|||
"notification.mention": "{name} mentioned you",
|
||||
"notification.own_poll": "Your poll has ended",
|
||||
"notification.poll": "A poll you have voted in has ended",
|
||||
"notification.reaction": "{name} reacted to your post",
|
||||
"notification.reblog": "{name} boosted your post",
|
||||
"notification.relationships_severance_event": "Lost connections with {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "An admin from {from} has suspended {target}, which means you can no longer receive updates from them or interact with them.",
|
||||
|
@ -497,7 +496,6 @@
|
|||
"notifications.column_settings.mention": "Mentions:",
|
||||
"notifications.column_settings.poll": "Poll results:",
|
||||
"notifications.column_settings.push": "Push notifications",
|
||||
"notifications.column_settings.reaction": "Reactions:",
|
||||
"notifications.column_settings.reblog": "Boosts:",
|
||||
"notifications.column_settings.show": "Show in column",
|
||||
"notifications.column_settings.sound": "Play sound",
|
||||
|
@ -725,7 +723,6 @@
|
|||
"status.pin": "Pin on profile",
|
||||
"status.pinned": "Pinned post",
|
||||
"status.read_more": "Read more",
|
||||
"status.react": "React",
|
||||
"status.reblog": "Boost",
|
||||
"status.reblog_private": "Boost with original visibility",
|
||||
"status.reblogged_by": "{name} boosted",
|
||||
|
@ -765,7 +762,6 @@
|
|||
"timeline_hint.resources.followers": "Followers",
|
||||
"timeline_hint.resources.follows": "Follows",
|
||||
"timeline_hint.resources.statuses": "Older posts",
|
||||
"tooltips.reactions": "Reactions",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} person} other {{counter} people}} in the past {days, plural, one {day} other {{days} days}}",
|
||||
"trends.trending_now": "Trending now",
|
||||
"ui.beforeunload": "Your draft will be lost if you leave Mastodon.",
|
||||
|
|
|
@ -56,7 +56,6 @@ const initialState = ImmutableMap({
|
|||
follow: true,
|
||||
follow_request: false,
|
||||
favourite: true,
|
||||
reaction: true,
|
||||
reblog: true,
|
||||
mention: true,
|
||||
poll: true,
|
||||
|
@ -70,7 +69,6 @@ const initialState = ImmutableMap({
|
|||
follow: true,
|
||||
follow_request: false,
|
||||
favourite: true,
|
||||
reaction: true,
|
||||
reblog: true,
|
||||
mention: true,
|
||||
poll: true,
|
||||
|
|
|
@ -1,18 +0,0 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class FixForeignKeysStatusReactions < ActiveRecord::Migration[6.1]
|
||||
disable_ddl_transaction!
|
||||
|
||||
def change
|
||||
# Fixes an oversight in a previous version of the CreateStatusReactions migration
|
||||
remove_foreign_key :status_reactions, :accounts
|
||||
add_foreign_key :status_reactions, :accounts, on_delete: :cascade, validate: false
|
||||
validate_foreign_key :status_reactions, :accounts
|
||||
remove_foreign_key :status_reactions, :statuses
|
||||
add_foreign_key :status_reactions, :statuses, on_delete: :cascade, validate: false
|
||||
validate_foreign_key :status_reactions, :statuses
|
||||
remove_foreign_key :status_reactions, :custom_emojis
|
||||
add_foreign_key :status_reactions, :custom_emojis, on_delete: :cascade, validate: false
|
||||
validate_foreign_key :status_reactions, :custom_emojis
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue