···55 * the relationship is clear.
66 */
77export const ACTIVE_UPDATE_ID = ID
88+99+/**
1010+ * Toggle to enable or disable the policy update overlay feature e.g. once an
1111+ * update has run its course, set this to false. For new updates, set this to
1212+ * true and change `ACTIVE_UPDATE_ID` to the new update ID.
1313+ */
1414+export const POLICY_UPDATE_IS_ENABLED = false
+10-2
src/components/PolicyUpdateOverlay/context.tsx
···77} from 'react'
8899import {useSession} from '#/state/session'
1010+import {POLICY_UPDATE_IS_ENABLED} from '#/components/PolicyUpdateOverlay/config'
1011import {Provider as PortalProvider} from '#/components/PolicyUpdateOverlay/Portal'
1112import {
1213 type PolicyUpdateState,
···4546 const {hasSession} = useSession()
4647 const [isReadyToShowOverlay, setIsReadyToShowOverlay] = useState(false)
4748 const state = usePolicyUpdateState({
4848- // only enable the policy update overlay in non-test environments
4949- enabled: isReadyToShowOverlay && hasSession && ENV !== 'e2e',
4949+ enabled:
5050+ // if the feature is enabled
5151+ POLICY_UPDATE_IS_ENABLED &&
5252+ // once shell has rendered
5353+ isReadyToShowOverlay &&
5454+ // only once logged in
5555+ hasSession &&
5656+ // only enabled in non-test environments
5757+ ENV !== 'e2e',
5058 })
51595260 const ctx = useMemo(
+9
src/lib/strings/errors.ts
···11+import {XRPCError} from '@atproto/xrpc'
12import {t} from '@lingui/macro'
2334export function cleanError(str: any): string {
···4344 }
4445 return false
4546}
4747+4848+export function isErrorMaybeAppPasswordPermissions(e: unknown) {
4949+ if (e instanceof XRPCError && e.error === 'TokenInvalid') {
5050+ return true
5151+ }
5252+ const str = String(e)
5353+ return str.includes('Bad token scope') || str.includes('Bad token method')
5454+}
+4-4
src/locale/locales/an/messages.po
···88"Language: an\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Aragonese\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Pareix que lo servidor ye experimentando problemas. Torna-lo a intentar dimpués de bels momentos."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr ""
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Esta caracteristica no ye disponible cuan s'emplega una clau d'aplicación. Dentra con a tuya clau principal."
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "No s'ha puesto connectar. Compreba la tuya connexión d'internet y torna-lo a intentar."
92899289
+10-10
src/locale/locales/ar/messages.po
···88"Language: ar_SA\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Arabic, Saudi Arabia\n"
1414"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
···15131513msgid "Books"
15141514msgstr ""
1515151515161516-#: src/components/FeedInterstitials.tsx:431
15161516+#: src/components/FeedInterstitials.tsx:436
15171517msgid "Browse more accounts on the Explore page"
15181518msgstr ""
1519151915201520-#: src/components/FeedInterstitials.tsx:559
15201520+#: src/components/FeedInterstitials.tsx:569
15211521msgid "Browse more feeds on the Explore page"
15221522msgstr ""
1523152315241524-#: src/components/FeedInterstitials.tsx:540
15251525-#: src/components/FeedInterstitials.tsx:543
15241524+#: src/components/FeedInterstitials.tsx:550
15251525+#: src/components/FeedInterstitials.tsx:553
15261526msgid "Browse more suggestions"
15271527msgstr ""
1528152815291529-#: src/components/FeedInterstitials.tsx:568
15291529+#: src/components/FeedInterstitials.tsx:578
15301530msgid "Browse more suggestions on the Explore page"
15311531msgstr ""
15321532···76307630msgid "See jobs at Bluesky"
76317631msgstr ""
7632763276337633-#: src/components/FeedInterstitials.tsx:394
76347634-#: src/components/FeedInterstitials.tsx:445
76337633+#: src/components/FeedInterstitials.tsx:399
76347634+#: src/components/FeedInterstitials.tsx:455
76357635msgid "See more"
76367636msgstr ""
76377637···82648264msgid "Some of your verifications are invalid."
82658265msgstr ""
8266826682678267-#: src/components/FeedInterstitials.tsx:522
82678267+#: src/components/FeedInterstitials.tsx:532
82688268msgid "Some other feeds you might like"
82698269msgstr ""
82708270···88378837msgstr ""
8838883888398839#: src/screens/Search/Explore.tsx:993
88408840-#: src/view/com/posts/PostFeed.tsx:709
88408840+#: src/view/com/posts/PostFeed.tsx:712
88418841msgid "There was an issue fetching posts. Tap here to try again."
88428842msgstr ""
88438843
+4-4
src/locale/locales/ast/messages.po
···88"Language: ast\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Asturian\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "El sirvidor paez que sufre problemes. Volvi tentalo nun momentu."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr ""
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Esta función nun ta disponible mentanto uses una contraseña d'aplicación. Anicia la sesión cola contraseña principal."
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Nun ye posible conectase. Comprueba la conexón a internet y volvi tentalo."
92899289
+10-10
src/locale/locales/az/messages.po
···88"Language: az\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Azerbaijani\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···15131513msgid "Books"
15141514msgstr ""
1515151515161516-#: src/components/FeedInterstitials.tsx:431
15161516+#: src/components/FeedInterstitials.tsx:436
15171517msgid "Browse more accounts on the Explore page"
15181518msgstr ""
1519151915201520-#: src/components/FeedInterstitials.tsx:559
15201520+#: src/components/FeedInterstitials.tsx:569
15211521msgid "Browse more feeds on the Explore page"
15221522msgstr ""
1523152315241524-#: src/components/FeedInterstitials.tsx:540
15251525-#: src/components/FeedInterstitials.tsx:543
15241524+#: src/components/FeedInterstitials.tsx:550
15251525+#: src/components/FeedInterstitials.tsx:553
15261526msgid "Browse more suggestions"
15271527msgstr ""
1528152815291529-#: src/components/FeedInterstitials.tsx:568
15291529+#: src/components/FeedInterstitials.tsx:578
15301530msgid "Browse more suggestions on the Explore page"
15311531msgstr ""
15321532···76307630msgid "See jobs at Bluesky"
76317631msgstr ""
7632763276337633-#: src/components/FeedInterstitials.tsx:394
76347634-#: src/components/FeedInterstitials.tsx:445
76337633+#: src/components/FeedInterstitials.tsx:399
76347634+#: src/components/FeedInterstitials.tsx:455
76357635msgid "See more"
76367636msgstr ""
76377637···82648264msgid "Some of your verifications are invalid."
82658265msgstr ""
8266826682678267-#: src/components/FeedInterstitials.tsx:522
82678267+#: src/components/FeedInterstitials.tsx:532
82688268msgid "Some other feeds you might like"
82698269msgstr ""
82708270···88378837msgstr ""
8838883888398839#: src/screens/Search/Explore.tsx:993
88408840-#: src/view/com/posts/PostFeed.tsx:709
88408840+#: src/view/com/posts/PostFeed.tsx:712
88418841msgid "There was an issue fetching posts. Tap here to try again."
88428842msgstr ""
88438843
+10-10
src/locale/locales/bn/messages.po
···88"Language: bn\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Bengali\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···15131513msgid "Books"
15141514msgstr ""
1515151515161516-#: src/components/FeedInterstitials.tsx:431
15161516+#: src/components/FeedInterstitials.tsx:436
15171517msgid "Browse more accounts on the Explore page"
15181518msgstr ""
1519151915201520-#: src/components/FeedInterstitials.tsx:559
15201520+#: src/components/FeedInterstitials.tsx:569
15211521msgid "Browse more feeds on the Explore page"
15221522msgstr ""
1523152315241524-#: src/components/FeedInterstitials.tsx:540
15251525-#: src/components/FeedInterstitials.tsx:543
15241524+#: src/components/FeedInterstitials.tsx:550
15251525+#: src/components/FeedInterstitials.tsx:553
15261526msgid "Browse more suggestions"
15271527msgstr ""
1528152815291529-#: src/components/FeedInterstitials.tsx:568
15291529+#: src/components/FeedInterstitials.tsx:578
15301530msgid "Browse more suggestions on the Explore page"
15311531msgstr ""
15321532···76307630msgid "See jobs at Bluesky"
76317631msgstr ""
7632763276337633-#: src/components/FeedInterstitials.tsx:394
76347634-#: src/components/FeedInterstitials.tsx:445
76337633+#: src/components/FeedInterstitials.tsx:399
76347634+#: src/components/FeedInterstitials.tsx:455
76357635msgid "See more"
76367636msgstr ""
76377637···82648264msgid "Some of your verifications are invalid."
82658265msgstr ""
8266826682678267-#: src/components/FeedInterstitials.tsx:522
82678267+#: src/components/FeedInterstitials.tsx:532
82688268msgid "Some other feeds you might like"
82698269msgstr ""
82708270···88378837msgstr ""
8838883888398839#: src/screens/Search/Explore.tsx:993
88408840-#: src/view/com/posts/PostFeed.tsx:709
88408840+#: src/view/com/posts/PostFeed.tsx:712
88418841msgid "There was an issue fetching posts. Tap here to try again."
88428842msgstr ""
88438843
+4-4
src/locale/locales/ca/messages.po
···88"Language: ca\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Catalan\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr "El vídeo seleccionat té una mida superior a 100 MB. Torna-ho a provar amb un fitxer més petit."
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Sembla que el servidor està experimentant problemes. Torneu-ho a provar d'aquí a uns moments."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Aquesta funció no està disponible mentre s'utilitza una contrasenya d'aplicació. Inicia la sessió amb la contrasenya principal."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Aquesta funció no està disponible mentre s'utilitza una contrasenya d'aplicació. Inicieu la sessió amb la contrasenya principal."
90049004···92839283msgstr "No es pot accedir a la ubicació. Hauràs d'anar a la configuració del teu dispositiu i activar els serveis d'ubicació per a Bluesky."
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "No s'ha pogut connectar. Comprova la teva connexió a Internet i torna-ho a provar."
92899289
+4-4
src/locale/locales/cy/messages.po
···88"Language: cy\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Welsh\n"
1414"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))));\n"
···87848784msgstr "Mae'r fideo hwn yn fwy na 100 MB. Ceisiwch eto gyda ffeil lai."
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Mae'n ymddangos bod y gweinydd yn cael problemau. Ceisiwch eto ymhen ychydig funudau."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Dyw'r nodwedd hon ddim ar gael wrth ddefnyddio cyfrinair ap. Mewngofnodwch gyda'ch prif gyfrinair."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Dyw'r nodwedd hon ddim ar gael wrth ddefnyddio Cyfrinair Ap. Mewngofnodwch gyda'ch prif gyfrinair."
90049004···92839283msgstr "Methu cael mynediad i'ch lleoliad. Bydd rhaid i chi fynd i osodiadau'ch system i alluogi gwasanaethau lleoliad ar gyfer Bluesky."
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Methu cysylltu. Gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni."
92899289
+4-4
src/locale/locales/da/messages.po
···88"Language: da\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Danish\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr "Den valgte video er større end 100 MB. Prøv igen med en mindre fil."
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Der ser ud til at være problemer med serveren. Prøv igen om lidt."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Denne funktion er ikke tilgængelig, når du bruger en appadgangskode. Log ind med din primære adgangskode."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Denne funktion er ikke tilgængelig, når du bruger en appadgangskode. Log ind med din primære adgangskode."
90049004···92839283msgstr "Kunne ikke tilgå lokation. Du skal give Bluesky adgang til lokationsoplysninger under systemindstillinger."
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Kan ikke forbinde. Tjek din internetforbindelse og prøv igen."
92899289
+4-4
src/locale/locales/de/messages.po
···88"Language: de\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: German\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr "Das ausgewählte Video ist größer als 100 MB. Bitte versuche es mit einer kleineren Datei erneut."
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Der Server scheint Probleme zu haben. Bitte versuche es in ein paar Minuten erneut."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Diese Funktion ist bei Verwendung eines App-Passworts nicht verfügbar. Bitte logge dich mit deinem Hauptpasswort ein."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Diese Funktion ist mit einem App-Passwort nicht verfügbar. Bitte logge dich mit deinem Hauptpasswort ein."
90049004···92839283msgstr "Standort konnte nicht abgerufen werden. Du musst deine Systemeinstellungen öffnen, um die Standortdienste für Bluesky aktivieren zu können."
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Verbindung nicht möglich. Bitte überprüfe deine Internetverbindung und versuche es erneut."
92899289
+4-4
src/locale/locales/el/messages.po
···88"Language: el\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Greek\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Ο διακομιστής φαίνεται να αντιμετωπίζει προβλήματα. Παρακαλούμε δοκιμάστε ξανά σε λίγα λεπτά."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr ""
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Αυτό το χαρακτηριστικό δεν είναι διαθέσιμο κατά τη χρήση κωδικού πρόσβασης εφαρμογής. Παρακαλούμε συνδεθείτε με τον κύριο κωδικό πρόσβασής σας."
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Αδυναμία σύνδεσης. Παρακαλούμε ελέγξτε τη σύνδεσή σας στο διαδίκτυο και προσπαθήστε ξανά."
92899289
+4-4
src/locale/locales/en-GB/messages.po
···88"Language: en_GB\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: English, United Kingdom\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr "The selected video is larger than 100 MB. Please try again with a smaller file."
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "The server appears to be experiencing issues. Please try again in a few moments."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "This feature is not available while using an app password. Please sign in with your main password."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "This feature is not available while using an App Password. Please sign in with your main password."
90049004···92839283msgstr "Unable to access location. You'll need to visit your system settings to enable location services for Bluesky."
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Unable to connect. Please check your internet connection and try again."
92899289
+3-3
src/locale/locales/en/messages.po
···87798779msgstr ""
8780878087818781#: src/lib/hooks/useCleanError.ts:40
87828782-#: src/lib/strings/errors.ts:18
87828782+#: src/lib/strings/errors.ts:19
87838783msgid "The server appears to be experiencing issues. Please try again in a few moments."
87848784msgstr ""
87858785···89938993msgid "This feature is not available while using an app password. Please sign in with your main password."
89948994msgstr ""
8995899589968996-#: src/lib/strings/errors.ts:21
89968996+#: src/lib/strings/errors.ts:22
89978997msgid "This feature is not available while using an App Password. Please sign in with your main password."
89988998msgstr ""
89998999···92789278msgstr ""
9279927992809280#: src/lib/hooks/useCleanError.ts:27
92819281-#: src/lib/strings/errors.ts:11
92819281+#: src/lib/strings/errors.ts:12
92829282msgid "Unable to connect. Please check your internet connection and try again."
92839283msgstr ""
92849284
+4-4
src/locale/locales/eo/messages.po
···88"Language: eo\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Esperanto\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr "La elektita videaĵo estas pli granda ol 100 MB. Bonvolu reprovi kun pli malgranda dosiero."
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "La servilo ŝajnas havi problemon. Bonvolu reprovi post kelkaj momentoj."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Ĉi tiu funkcio ne disponeblas dum uzado de apa pasvorto. Bonvolu ensaluti per via ĉefa pasvorto."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Ĉi tiu funkcio ne disponeblas dum uzado de apa pasvorto. Bonvolu ensaluti per via ĉefa pasvorto."
90049004···92839283msgstr "Ne eblas aliri la lokon. Vi bezonos viziti viajn sistemajn agordojn por ŝalti lokotrovajn servojn por Bluesky."
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Ne eblas konektiĝi. Bonvolu kontroli vian retkonekton kaj reprovi."
92899289
+4-4
src/locale/locales/es/messages.po
···88"Language: es\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Spanish\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Parece que hay problemas en el servidor. Vuelve a intentarlo en breve."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Esta función no está disponible cuando se usa una contraseña de app. Inicia sesión con tu contraseña principal."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Esta función no está disponible cuando se usa una contraseña de app. Inicia sesión con tu contraseña principal."
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "No es posible conectarse. Comprueba tu conexión a Internet e inténtalo de nuevo."
92899289
+4-4
src/locale/locales/eu/messages.po
···88"Language: eu\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Basque\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr "Hautatutako bideoa 100 MB baino handiagoa da. Mesedez, saiatu berriro fitxategi txikiago batekin."
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Zerbitzariak arazoak dituela dirudi. Mesedez, saiatu berriro une batzuk barru."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Ezaugarri hau ez dago erabilgarri aplikazioaren pasahitza erabiltzen duzun bitartean. Mesedez, hasi saioa zure pasahitz nagusiarekin."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Ezaugarri hau ez dago erabilgarri aplikazioaren pasahitza erabiltzen duzun bitartean. Mesedez, hasi saioa zure pasahitz nagusiarekin."
90049004···92839283msgstr "Ezin da kokapena atzitu. Bluesky-ren kokapen zerbitzuak gaitzeko, sistemaren ezarpenetara joan beharko duzu."
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Ezin da konektatu. Mesedez, egiaztatu Interneteko konexioa eta saiatu berriro."
92899289
+4-4
src/locale/locales/fi/messages.po
···88"Language: fi\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Finnish\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Palvelin näyttää kärsivän ongelmista. Yritä hetken kuluttua uudelleen."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr ""
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Tämä ominaisuus ei ole saatavilla sovellussalasanaa käytettäessä. Kirjaudu sisään pääsalasanallasi."
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Yhteyden muodostaminen ei onnistu. Tarkista internetyhteytesi ja yritä uudelleen."
92899289
+4-4
src/locale/locales/fr/messages.po
···88"Language: fr\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: French\n"
1414"Plural-Forms: nplurals=2; plural=(n > 1);\n"
···87848784msgstr "La vidéo sélectionnée dépasse les 100 Mo. Veuillez réessayer avec un fichier plus petit."
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Le serveur semble rencontrer des problèmes. Veuillez réessayer ultérieurement."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Cette fonctionnalité n’est pas disponible lorsque vous utilisez un mot de passe d’application. Veuillez vous connecter avec le mot de passe de votre compte."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Cette fonctionnalité n’est pas disponible lorsque vous utilisez un mot de passe d’application. Veuillez vous connecter avec le mot de passe de votre compte."
90049004···92839283msgstr "Impossible d’accéder à la géolocalisation. Vous devrez visiter les paramètres de votre appareil pour activer les services de géolocalisation pour Bluesky."
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Connexion échouée. Veuillez vérifier votre connexion Internet et réessayer."
92899289
+4-4
src/locale/locales/fy/messages.po
···88"Language: fy\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Frisian\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr "De selektearre fideo is grutter as 100 MB. Probearje it opnij mei in lytser bestân."
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "It liket derop dat der problemen mei de server binne. Probearje it oer inkelde eagenblikken opnij."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Dizze funksje is net beskikber by gebrûk fan in app-wachtwurd. Meld dy oan mei dyn haadwachtwurd."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Dizze funksje is net beskikber by gebrûk fan in app-wachtwurd. Meld dy oan mei dyn haadwachtwurd."
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Kin gjin ferbinding meitsje. Kontrolearje dyn ynternetferbining en probearje opnij."
92899289
+4-4
src/locale/locales/ga/messages.po
···88"Language: ga\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Irish\n"
1414"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Is dóigh go bhfuil fadhb leis an bhfreastalaí. Bain triail eile as i gceann cúpla nóiméad."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr ""
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Níl an ghné seo ar fáil má tá tú ag baint úsáide as Pasfhocal Aipe. Logáil isteach le do ghnáth-phasfhocal, le do thoil."
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Ní féidir ceangal a bhunú. Seiceáil do cheangal leis an idirlíon agus bain triail eile as."
92899289
+4-4
src/locale/locales/gd/messages.po
···88"Language: gd\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Scottish Gaelic\n"
1414"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n>2 && n<20) ? 2 : 3;\n"
···87848784msgstr "Thagh thu video a tha nas motha na 100MB. Feuch ris a-rithist le faidhle nas lugha."
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Tha coltas gu bheil duilgheadasan aig an fhrithealaiche. Feuch ris a-rithist ann an tiotag bheag."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Chan eil an gleus seo ri làimh fhad ’s a bhios tu a’ cleachdadh facal-faire aplacaid. Clàraich a-steach leis a’ phrìomh-fhacal-faire agad."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Chan eil an gleus seo ri làimh fhad ’s a bhios tu a’ cleachdadh facal-faire aplacaid. Clàraich a-steach leis a’ phrìomh-fhacal-faire agad."
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Cha ghabh ceangal a dhèanamh. Thoir sùil air a’ cheangal ris an eadar-lìon agad is feuch ris a-rithist."
92899289
+4-4
src/locale/locales/gl/messages.po
···88"Language: gl\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Galician\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Semella que o servidor está a experimentar problemas. Por favor, téntao de novo nun intre."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr ""
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Esta característica non está dispoñíbel empregando un contrasinal de aplicación. Fai o favor de identificarte co teu contrasinal de usuario."
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Non é posíbel conectar. Comproba a túa conexión a internet e téntao de novo."
92899289
+4-4
src/locale/locales/hi/messages.po
···88"Language: hi\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Hindi\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "लगता है सर्वर को समस्याएँ हो रहीं हैं। कृपया थोड़े समय बाद फिर प्रयास करें।"
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr ""
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "यह सुविधा ऐप पासवर्ड के उपयोग के साथ उपलब्ध नहीं है। कृपया अपने मुख्य पासवर्ड से साइन इन करें।"
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "कनेक्ट करने में असफल। कृपया अपना इंटरनेट कनेक्शन जाँच ले और फिर प्रयास करें।"
92899289
+4-4
src/locale/locales/hu/messages.po
···88"Language: hu\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Hungarian\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87868786msgstr "A kiválasztott videófájl meghaladja a 100 MB-os korlátot. Kérjük, válassz ki egy kisebb videót."
8787878787888788#: src/lib/hooks/useCleanError.ts:40
87898789-#: src/lib/strings/errors.ts:18
87898789+#: src/lib/strings/errors.ts:19
87908790msgid "The server appears to be experiencing issues. Please try again in a few moments."
87918791msgstr "Hibát tapasztaltunk a kiszolgálóval. Próbáld újra egy pár percen belül."
87928792···90009000msgid "This feature is not available while using an app password. Please sign in with your main password."
90019001msgstr "Jelenleg egy alkalmazásjelszóval vagy bejelentkezve. A funkció használatához a valódi jelszavaddal kell bejelentkezned."
9002900290039003-#: src/lib/strings/errors.ts:21
90039003+#: src/lib/strings/errors.ts:22
90049004msgid "This feature is not available while using an App Password. Please sign in with your main password."
90059005msgstr "Jelenleg egy alkalmazásjelszóval vagy bejelentkezve. A funkció használatához a valódi jelszavaddal kell bejelentkezned."
90069006···92859285msgstr "Nincs hozzáférésünk a tartózkodási helyedhez. Engedélyezned kell a Bluesky helyelérését a rendszerbeállításokban."
9286928692879287#: src/lib/hooks/useCleanError.ts:27
92889288-#: src/lib/strings/errors.ts:11
92889288+#: src/lib/strings/errors.ts:12
92899289msgid "Unable to connect. Please check your internet connection and try again."
92909290msgstr "A kiszolgáló nem található. Ellenőrizd az internetkapcsolatot, majd próbáld újra."
92919291
+4-4
src/locale/locales/ia/messages.po
···88"Language: ia\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Interlingua\n"
1414"Plural-Forms: nplurals=2; plural=(n > 1);\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Le servitor pare haber problemas. Tenta de novo post alcun instantes."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Iste function non es disponibile quando tu usa un contrasigno de application. Aperi session con tu contrasigno principal."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Iste function non es disponibile quando tu usa un contrasigno de application. Per favor aperi session con tu contrasigno principal."
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Non ha essite possibile connecter. Verifica tu connexion al internet e tenta de novo."
92899289
+4-4
src/locale/locales/id/messages.po
···88"Language: id\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Indonesian\n"
1414"Plural-Forms: nplurals=1; plural=0;\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Server tampaknya mengalami masalah. Silahkan coba lagi dalam beberapa saat."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Fitur ini tidak tersedia saat menggunakan sandi aplikasi. Silakan masuk dengan sandi utama Anda."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Fitur ini tidak tersedia saat menggunakan sandi aplikasi. Silakan masuk dengan sandi utama Anda."
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Tidak dapat tersambung. Silakan periksa koneksi internet Anda dan coba lagi."
92899289
+4-4
src/locale/locales/it/messages.po
···88"Language: it\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Italian\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr "Il video selezionato è più grande di 100 MB. Riprova con un file più piccolo."
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Sembra che ci siano problemi sul server. Riprova tra qualche istante."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Questa funzionalità non è disponibile mentre si usa una password per app. Accedi con la tua password principale."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Questa funzionalità non è disponibile mentre si usa una password per app. Accedi con la tua password principale."
90049004···92839283msgstr "Impossibile accedere alla posizione. Vai nelle impostazioni di sistema per abilitare i servizi di localizzazione per Bluesky."
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Impossibile connettersi. Verifica la tua connessione a internet e riprova."
92899289
+4-4
src/locale/locales/ja/messages.po
···88"Language: ja\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Japanese\n"
1414"Plural-Forms: nplurals=1; plural=0;\n"
···87848784msgstr "選択したビデオが100MBより大きいです。小さいファイルでもう一度お試しください。"
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "サーバーで問題が発生しているようです。少し間をおいて再度試してください。"
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "この機能はアプリパスワードでは利用できません。メインパスワードでサインインしてください。"
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "この機能はアプリパスワードでは利用できません。メインパスワードでサインインしてください。"
90049004···92839283msgstr "位置情報にアクセスできません。システムの設定を確認して、位置情報サービスをBlueskyが使えるよう許可する必要があります。"
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "接続できません。インターネットへの接続を確認して再度試してください。"
92899289
+10-10
src/locale/locales/kab/messages.po
···88"Language: kab\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Kabyle\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···15131513msgid "Books"
15141514msgstr ""
1515151515161516-#: src/components/FeedInterstitials.tsx:431
15161516+#: src/components/FeedInterstitials.tsx:436
15171517msgid "Browse more accounts on the Explore page"
15181518msgstr ""
1519151915201520-#: src/components/FeedInterstitials.tsx:559
15201520+#: src/components/FeedInterstitials.tsx:569
15211521msgid "Browse more feeds on the Explore page"
15221522msgstr ""
1523152315241524-#: src/components/FeedInterstitials.tsx:540
15251525-#: src/components/FeedInterstitials.tsx:543
15241524+#: src/components/FeedInterstitials.tsx:550
15251525+#: src/components/FeedInterstitials.tsx:553
15261526msgid "Browse more suggestions"
15271527msgstr ""
1528152815291529-#: src/components/FeedInterstitials.tsx:568
15291529+#: src/components/FeedInterstitials.tsx:578
15301530msgid "Browse more suggestions on the Explore page"
15311531msgstr ""
15321532···76307630msgid "See jobs at Bluesky"
76317631msgstr ""
7632763276337633-#: src/components/FeedInterstitials.tsx:394
76347634-#: src/components/FeedInterstitials.tsx:445
76337633+#: src/components/FeedInterstitials.tsx:399
76347634+#: src/components/FeedInterstitials.tsx:455
76357635msgid "See more"
76367636msgstr ""
76377637···82648264msgid "Some of your verifications are invalid."
82658265msgstr ""
8266826682678267-#: src/components/FeedInterstitials.tsx:522
82678267+#: src/components/FeedInterstitials.tsx:532
82688268msgid "Some other feeds you might like"
82698269msgstr ""
82708270···88378837msgstr ""
8838883888398839#: src/screens/Search/Explore.tsx:993
88408840-#: src/view/com/posts/PostFeed.tsx:709
88408840+#: src/view/com/posts/PostFeed.tsx:712
88418841msgid "There was an issue fetching posts. Tap here to try again."
88428842msgstr ""
88438843
+4-4
src/locale/locales/km/messages.po
···88"Language: km\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Khmer\n"
1414"Plural-Forms: nplurals=1; plural=0;\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "ម៉ាស៊ីនមេហាក់ដូចជាកំពុងជួបប្រទះបញ្ហា។ សូមព្យាយាមម្តងទៀតក្នុងពេលបន្តិចទៀត"
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr ""
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "មុខងារនេះមិនមានពេលប្រើពាក្យសម្ងាត់កម្មវិធីទេ។ សូមចូលដោយប្រើពាក្យសម្ងាត់ចម្បងរបស់អ្នក"
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "មិនអាចភ្ជាប់បានទេ។ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត"
92899289
+4-4
src/locale/locales/ko/messages.po
···88"Language: ko\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Korean\n"
1414"Plural-Forms: nplurals=1; plural=0;\n"
···87848784msgstr "선택한 동영상이 100MB보다 큽니다. 더 작은 파일로 다시 시도해 주세요."
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "서버에 문제가 있는 것 같습니다. 잠시 후 다시 시도해 주세요."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "앱 비밀번호를 사용하는 동안에는 이 기능을 사용할 수 없습니다. 기본 비밀번호로 로그인하세요."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "앱 비밀번호를 사용하는 동안에는 이 기능을 사용할 수 없습니다. 기본 비밀번호로 로그인하세요."
90049004···92839283msgstr "위치에 접근할 수 없습니다. Bluesky 앱의 위치 서비스를 활성화하려면 시스템 설정으로 이동해 주세요."
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "연결할 수 없습니다. 인터넷 연결을 확인한 후 다시 시도해 주세요."
92899289
+10-10
src/locale/locales/lt/messages.po
···88"Language: lt\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Lithuanian\n"
1414"Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n"
···15131513msgid "Books"
15141514msgstr ""
1515151515161516-#: src/components/FeedInterstitials.tsx:431
15161516+#: src/components/FeedInterstitials.tsx:436
15171517msgid "Browse more accounts on the Explore page"
15181518msgstr ""
1519151915201520-#: src/components/FeedInterstitials.tsx:559
15201520+#: src/components/FeedInterstitials.tsx:569
15211521msgid "Browse more feeds on the Explore page"
15221522msgstr ""
1523152315241524-#: src/components/FeedInterstitials.tsx:540
15251525-#: src/components/FeedInterstitials.tsx:543
15241524+#: src/components/FeedInterstitials.tsx:550
15251525+#: src/components/FeedInterstitials.tsx:553
15261526msgid "Browse more suggestions"
15271527msgstr ""
1528152815291529-#: src/components/FeedInterstitials.tsx:568
15291529+#: src/components/FeedInterstitials.tsx:578
15301530msgid "Browse more suggestions on the Explore page"
15311531msgstr ""
15321532···76307630msgid "See jobs at Bluesky"
76317631msgstr ""
7632763276337633-#: src/components/FeedInterstitials.tsx:394
76347634-#: src/components/FeedInterstitials.tsx:445
76337633+#: src/components/FeedInterstitials.tsx:399
76347634+#: src/components/FeedInterstitials.tsx:455
76357635msgid "See more"
76367636msgstr ""
76377637···82648264msgid "Some of your verifications are invalid."
82658265msgstr ""
8266826682678267-#: src/components/FeedInterstitials.tsx:522
82678267+#: src/components/FeedInterstitials.tsx:532
82688268msgid "Some other feeds you might like"
82698269msgstr ""
82708270···88378837msgstr ""
8838883888398839#: src/screens/Search/Explore.tsx:993
88408840-#: src/view/com/posts/PostFeed.tsx:709
88408840+#: src/view/com/posts/PostFeed.tsx:712
88418841msgid "There was an issue fetching posts. Tap here to try again."
88428842msgstr ""
88438843
+4-4
src/locale/locales/ne/messages.po
···88"Language: ne\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Nepali\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "सर्भर समस्यामा देखिनु भएको छ। कृपया केही समय पछि पुन: प्रयास गर्नुहोस्।"
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr ""
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "यो सुविधा App पासवर्ड प्रयोग गर्दा उपलब्ध छैन। कृपया आफ्नो मुख्य पासवर्ड सँग साइन इन गर्नुहोस्।"
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "जडान गर्न असमर्थ। कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस् र पुनः प्रयास गर्नुहोस्।"
92899289
+4-4
src/locale/locales/nl/messages.po
···88"Language: nl\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Dutch\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Het lijkt erop dat er problemen zijn met de server. Probeer het over enkele ogenblikken opnieuw."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr ""
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Deze functie is niet beschikbaar bij gebruik van een app-wachtwoord. Meld je aan met je hoofdwachtwoord."
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Kan geen verbinding maken. Controleer uw internetverbinding en probeer opnieuw."
92899289
+4-4
src/locale/locales/pl/messages.po
···88"Language: pl\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Polish\n"
1414"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Wygląda na to, że serwer napotyka problemy. Spróbuj ponownie za jakiś czas."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr ""
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Ta funkcja nie jest dostępna podczas korzystania z hasła aplikacji. Zaloguj się przy użyciu głównego hasła."
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Nie udało się nawiązać połączenia. Sprawdź połączenie internetowe i spróbuj ponownie."
92899289
+4-4
src/locale/locales/pt-BR/messages.po
···88"Language: pt\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Portuguese, Brazilian\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr "O vídeo selecionado é maior que 100 MB. Tente novamente com um arquivo menor."
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "O servidor parece estar passando por instabilidade. Por favor tente novamente em alguns instantes."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Esta função não está disponível ao usar uma senha de aplicativo. Por favor, conecte com a sua senha principal."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Esta função não está disponível ao usar uma senha de aplicativo. Por favor conecte com a sua senha principal."
90049004···92839283msgstr "Não foi possível acessar a localização. Você precisará verificar as suas configurações de sistema para ativar os serviços de localização do Bluesky."
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Não foi possível conectar. Verifique a sua conexão de internet e tente novamente."
92899289
+4-4
src/locale/locales/pt-PT/messages.po
···88"Language: pt\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Portuguese\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr "O vídeo selecionado tem mais de 100 MB. Por favor, tente novamente com um ficheiro menor."
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "O servidor parece estar a passar por problemas. Por favor, tente novamente em alguns instantes."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Esta funcionalidade não está disponível enquanto estiver a usar uma palavra-passe de aplicação. Por favor, entre com a sua palavra-passe principal."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Esta funcionalidade não está disponível quando uma palavra-passe de aplicação está a ser usada. Por favor, inicie sessão com a sua palavra-passe principal."
90049004···92839283msgstr "Não foi possível aceder à localização. Vai ter de visitar as suas definições do sistema para ativar os serviços de localização para o Bluesky."
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Não foi possível conectar. Verifique a sua conexão à internet e tente novamente."
92899289
+4-4
src/locale/locales/ro/messages.po
···88"Language: ro\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Romanian\n"
1414"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
···87848784msgstr "Videoclipul selectat este mai mare de 100 MB. Vă rugăm să încercați din nou cu un fișier mai mic."
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Serverul pare să întâmpine probleme. Vă rugăm să încercați din nou în câteva momente."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Această caracteristică nu este disponibilă când utilizați o parolă de aplicație. Vă rugăm să vă conectați cu parola principală."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Această caracteristică nu este disponibilă când utilizați o Parolă de Aplicație. Vă rugăm să vă conectați cu parola principală."
90049004···92839283msgstr "Nu se poate accesa locația. Va trebui să accesați setările sistemului pentru a activa serviciile de localizare pentru Bluesky."
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Nu se poate conecta. Vă rugăm să vă verificați conexiunea la internet și să încercați din nou."
92899289
+4-4
src/locale/locales/ru/messages.po
···88"Language: ru\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Russian\n"
1414"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Похоже, на сервере возникли проблемы. Пожалуйста, повторите попытку через несколько мгновений."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr ""
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Эта функция недоступна при использовании пароля приложения. Пожалуйста, используйте свой основной пароль."
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Невозможно подключиться. Проверьте подключение к Интернету и повторите попытку."
92899289
+4-4
src/locale/locales/sv/messages.po
···88"Language: sv\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Swedish\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr "Det valda videoklippet är större än 100 MB. Försök igen med en mindre fil."
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Det verkar som att servern har problem. Försök igen om en liten stund."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Den här funktionen är inte tillgänglig när du är inloggad med ett applösenord. Logga in med ditt vanliga lösenord."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Den här funktionen är inte tillgänglig när ett applösenord har använts vid inloggningen. Vänligen logga in med ditt vanliga lösenord."
90049004···92839283msgstr "Det gick inte att få åtkomst till din plats. Du behöver aktivera platstjänster för Bluesky i dina systeminställningar."
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Det gick inte att ansluta. Kontrollera din internetanslutning och försök igen."
92899289
+4-4
src/locale/locales/th/messages.po
···88"Language: th\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Thai\n"
1414"Plural-Forms: nplurals=1; plural=0;\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr ""
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr ""
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr ""
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr ""
92899289
+4-4
src/locale/locales/tr/messages.po
···88"Language: tr\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Turkish\n"
1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
···87848784msgstr "Seçilen video 100 MB'tan büyük. Lütfen daha küçük bir dosyayla yeniden deneyin."
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Sunucu bazı sıkıntılar yaşıyor. Lütfen biraz sonra tekrar deneyin."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "Bu özellik bir uygulama şifresi kullanırken erişilemez. Lütfen ana şifrenizle giriş yapın."
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Bu özellik Uygulama Şifresi kullanırken kullanılamaz. Lütfen ana şifrenizle giriş yapın."
90049004···92839283msgstr "Konuma erişilemedi. Bluesky için konum hizmetlerini etkinleştirmek için sistem ayarlarınıza göz atmanız gerekiyor."
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Bağlanılamıyor. Lütfen internet bağlantınızı kontrol edip tekrar deneyin."
92899289
+4-4
src/locale/locales/uk/messages.po
···88"Language: uk\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Ukrainian\n"
1414"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Схоже, на сервері певні проблеми. Будь ласка, спробуйте знову через деякий час."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr ""
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Ця функція недоступна за використання пароля застосунку. Будь ласка, увійдіть за допомогою вашого основного пароля."
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Не вдається з'єднатись. Будь ласка, перевірте з'єднання з Інтернетом та повторіть спробу."
92899289
+4-4
src/locale/locales/vi/messages.po
···88"Language: vi\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:27\n"
1111+"PO-Revision-Date: 2025-10-23 16:20\n"
1212"Last-Translator: \n"
1313"Language-Team: Vietnamese\n"
1414"Plural-Forms: nplurals=1; plural=0;\n"
···87848784msgstr ""
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "Máy chủ có vẻ đang có vấn đề. Vui lòng thử lại sau ít phút."
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr ""
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "Tính năng này không khả dụng khi sử dụng Mật khẩu ứng dụng. Vui lòng đăng nhập bằng mật khẩu chính của bạn."
90049004···92839283msgstr ""
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "Không thể kết nối. Vui lòng kiểm tra kết nối mạng của bạn và thử lại."
92899289
+4-4
src/locale/locales/zh-CN/messages.po
···88"Language: zh\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Chinese Simplified\n"
1414"Plural-Forms: nplurals=1; plural=0;\n"
···87848784msgstr "你所选择的视频体积大于 100 MB,请选择其他较小的视频文件。"
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "服务器似乎遇到了问题,请稍后重试。"
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "该功能在使用应用密码登录时不可用,请改用你的主密码登录。"
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "该功能在使用应用密码登录时不可用。请改用你的主密码登录。"
90049004···92839283msgstr "无法获取位置信息,你需要进入系统设置,找到并允许 Bluesky 获取你的位置。"
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "无法连接到服务器。请检查网络连接并重试。"
92899289
+4-4
src/locale/locales/zh-HK/messages.po
···88"Language: zh\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Chinese Traditional, Hong Kong\n"
1414"Plural-Forms: nplurals=1; plural=0;\n"
···87848784msgstr "你揀選嘅影片大過 100 MB。唔該用細啲嘅檔案試多次。"
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "伺服器似乎遇到問題。唔該遲啲試多次。"
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "呢個功能喺用 App 專用密碼嗰陣唔畀用。請用你嘅主密碼登入。"
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "呢個功能喺用 App 專用密碼嗰陣唔畀用,請用返你嘅主要密碼登入。"
90049004···92839283msgstr "取用唔到位置資訊,你需要去系統設定允許 Bluesky 使用定位服務。"
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "連線唔到伺服器。請檢查你嘅互聯網連線,跟住試多次。"
92899289
+4-4
src/locale/locales/zh-TW/messages.po
···88"Language: zh\n"
99"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
1010"Report-Msgid-Bugs-To: \n"
1111-"PO-Revision-Date: 2025-10-22 19:26\n"
1111+"PO-Revision-Date: 2025-10-23 16:19\n"
1212"Last-Translator: \n"
1313"Language-Team: Chinese Traditional\n"
1414"Plural-Forms: nplurals=1; plural=0;\n"
···87848784msgstr "您選擇的影片檔案大小大於 100 MB。請使用較小的檔案再試一次。"
8785878587868786#: src/lib/hooks/useCleanError.ts:40
87878787-#: src/lib/strings/errors.ts:18
87878787+#: src/lib/strings/errors.ts:19
87888788msgid "The server appears to be experiencing issues. Please try again in a few moments."
87898789msgstr "伺服器似乎遇到問題。請稍後再試。"
87908790···89988998msgid "This feature is not available while using an app password. Please sign in with your main password."
89998999msgstr "使用應用程式專用密碼時,無法使用此功能。請改用您的主密碼登入。"
9000900090019001-#: src/lib/strings/errors.ts:21
90019001+#: src/lib/strings/errors.ts:22
90029002msgid "This feature is not available while using an App Password. Please sign in with your main password."
90039003msgstr "使用應用程式專用密碼時,無法使用此功能。請改用您的主密碼登入。"
90049004···92839283msgstr "無法存取位置資訊,您需要進入系統設定來允許 Bluesky 存取您的位置資訊。"
9284928492859285#: src/lib/hooks/useCleanError.ts:27
92869286-#: src/lib/strings/errors.ts:11
92869286+#: src/lib/strings/errors.ts:12
92879287msgid "Unable to connect. Please check your internet connection and try again."
92889288msgstr "無法連線到伺服器。請檢查您的網路連線,然後再試一次。"
92899289
+9-6
src/state/messages/convo/agent.ts
···11111212import {networkRetry} from '#/lib/async/retry'
1313import {DM_SERVICE_HEADERS} from '#/lib/constants'
1414-import {isNetworkError} from '#/lib/strings/errors'
1414+import {
1515+ isErrorMaybeAppPasswordPermissions,
1616+ isNetworkError,
1717+} from '#/lib/strings/errors'
1518import {Logger} from '#/logger'
1619import {isNative} from '#/platform/detection'
1720import {
···485488 this.dispatch({event: ConvoDispatchEvent.Ready})
486489 }
487490 } catch (e: any) {
488488- if (!isNetworkError(e)) {
491491+ if (!isNetworkError(e) && !isErrorMaybeAppPasswordPermissions(e)) {
489492 logger.error('setup failed', {
490493 safeMessage: e.message,
491494 })
···594597 this.sender = sender || this.sender
595598 this.recipients = recipients || this.recipients
596599 } catch (e: any) {
597597- if (!isNetworkError(e)) {
600600+ if (!isNetworkError(e) && !isErrorMaybeAppPasswordPermissions(e)) {
598601 logger.error(`failed to refresh convo`, {
599602 safeMessage: e.message,
600603 })
···662665 }
663666 }
664667 } catch (e: any) {
665665- if (!isNetworkError(e)) {
668668+ if (!isNetworkError(e) && !isErrorMaybeAppPasswordPermissions(e)) {
666669 logger.error('failed to fetch message history', {
667670 safeMessage: e.message,
668671 })
···938941 } else {
939942 this.pendingMessageFailure = 'unrecoverable'
940943941941- if (!isNetworkError(e)) {
944944+ if (!isNetworkError(e) && !isErrorMaybeAppPasswordPermissions(e)) {
942945 logger.error(`handleSendMessageFailure received unknown error`, {
943946 safeMessage: e.message,
944947 })
···10141017 )
10151018 })
10161019 } catch (e: any) {
10171017- if (!isNetworkError(e)) {
10201020+ if (!isNetworkError(e) && !isErrorMaybeAppPasswordPermissions(e)) {
10181021 logger.error(`failed to delete message`, {
10191022 safeMessage: e.message,
10201023 })