From 1bc44e646b5ebfc1e1aae6c935d2fa628ef60f3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Fri, 19 Sep 2025 22:11:40 +0200 Subject: [PATCH] pl-fe: update en.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nicole mikołajczyk --- packages/pl-api/lib/entities/account.ts | 2 +- packages/pl-fe/src/locales/en.json | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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}",