From 2c2456019cbfb1088daeae524f6d4e7670b65258 Mon Sep 17 00:00:00 2001 From: Trey t Date: Mon, 2 Mar 2026 09:28:20 -0600 Subject: [PATCH] Fix missing Japanese/Korean translations and BGTask string interpolation bug Add "THE" translations for ja/ko in the subscription magazine header, and fix broken string interpolation in BGTask error logging. Co-Authored-By: Claude Opus 4.6 --- Reflect/Localizable.xcstrings | 4 ++-- Shared/BGTask.swift | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Reflect/Localizable.xcstrings b/Reflect/Localizable.xcstrings index c229dab..b02122c 100644 --- a/Reflect/Localizable.xcstrings +++ b/Reflect/Localizable.xcstrings @@ -17696,13 +17696,13 @@ "ja" : { "stringUnit" : { "state" : "translated", - "value" : "" + "value" : "THE" } }, "ko" : { "stringUnit" : { "state" : "translated", - "value" : "" + "value" : "THE" } }, "pt-BR" : { diff --git a/Shared/BGTask.swift b/Shared/BGTask.swift index 78a5191..7190a8d 100644 --- a/Shared/BGTask.swift +++ b/Shared/BGTask.swift @@ -39,7 +39,7 @@ class BGTask { do { try BGTaskScheduler.shared.submit(request) } catch { - print("Could not schedule image fetch: (error)") + print("Could not schedule image fetch: \(error)") } } }