The text shown during the show is hardcoded English in Sources/BustedApp/ShowView.swift ("BUSTED!", "This Mac is watching you.", "JUST KIDDING!", and the monitored-banner line).
What to do
- Move the show strings into
Localizable.strings and read them with NSLocalizedString (or a SwiftUI LocalizedStringKey).
- Add at least one more language as an example (any language you speak).
Acceptance criteria
- The show reads its text from localized strings, and the English output is unchanged.
- At least one additional locale renders translated text.
- No hardcoded user-facing show strings remain in
ShowView.swift.
A good first issue if you want to add your own language. Keep the copy short so it still fits the fullscreen layout.
The text shown during the show is hardcoded English in
Sources/BustedApp/ShowView.swift("BUSTED!", "This Mac is watching you.", "JUST KIDDING!", and the monitored-banner line).What to do
Localizable.stringsand read them withNSLocalizedString(or a SwiftUILocalizedStringKey).Acceptance criteria
ShowView.swift.A good first issue if you want to add your own language. Keep the copy short so it still fits the fullscreen layout.