diff --git a/packages/pl-api/lib/entities/account.ts b/packages/pl-api/lib/entities/account.ts index 790bba7e2..b8a192e1e 100644 --- a/packages/pl-api/lib/entities/account.ts +++ b/packages/pl-api/lib/entities/account.ts @@ -239,7 +239,7 @@ const untypedCredentialAccountSchema = v.pipe(v.any(), preprocessAccount, v.obje sensitive: v.fallback(v.optional(v.boolean()), false), language: v.fallback(v.optional(v.nullable(v.string())), null), follow_requests_count: v.fallback(v.optional(v.pipe(v.number(), v.integer(), v.minValue(0))), 0), - hide_collections: v.fallback(v.nullable(v.boolean()), null), + hide_collections: v.fallback(v.optional(v.boolean()), undefined), discoverable: v.fallback(v.optional(v.boolean()), undefined), indexable: v.fallback(v.nullable(v.boolean()), null), quote_policy: v.fallback(v.nullable(v.picklist(['public', 'followers', 'nobody'])), null), diff --git a/packages/pl-fe/src/locales/en.json b/packages/pl-fe/src/locales/en.json index 37e939ec9..958dc985f 100644 --- a/packages/pl-fe/src/locales/en.json +++ b/packages/pl-fe/src/locales/en.json @@ -1279,6 +1279,8 @@ "notification.pleroma:participation_accepted": "You were accepted to join the event", "notification.pleroma:participation_request": "{name} wants to join your event", "notification.poll": "A poll you have voted in has ended", + "notification.quote": "{name} quoted your post", + "notification.quoted_update": "{name} edited a post you quoted", "notification.reblog": "{name} reposted your post", "notification.reply": "{name} replied to your post", "notification.severed_relationships": "Lost connections with {name}",