RORK LABJP
MAX — Rork Max generates native Swift apps for iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageNATIVE — It unlocks native capabilities React Native cannot reach: AR/LiDAR, Metal 3D, widgets, Dynamic Island, Live Activities, Siri Intents, and HealthKitRN — Standard Rork builds cross-platform apps with React Native (Expo), a good fit when you want something working fastCHOICE — Pick React Native for speed, or Rork Max when you need Apple hardware and OS integrationPRICE — Rork is free to start with paid plans from $25/mo; Rork Max is $200/moFLOW — Describe the app you want in plain language and Rork produces working code you can ship to the storesMAX — Rork Max generates native Swift apps for iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageNATIVE — It unlocks native capabilities React Native cannot reach: AR/LiDAR, Metal 3D, widgets, Dynamic Island, Live Activities, Siri Intents, and HealthKitRN — Standard Rork builds cross-platform apps with React Native (Expo), a good fit when you want something working fastCHOICE — Pick React Native for speed, or Rork Max when you need Apple hardware and OS integrationPRICE — Rork is free to start with paid plans from $25/mo; Rork Max is $200/moFLOW — Describe the app you want in plain language and Rork produces working code you can ship to the stores
Articles/Dev Tools
Dev Tools/2026-06-18Advanced

Running Rork Max Swift Apps in Many Languages with String Catalog

An operational design for taking the Swift apps Rork Max generates into multiple languages, centered on the .xcstrings String Catalog. From extracting strings to handling plurals, pouring in translations, and checking for breakage, these are the lessons from keeping multilingual apps running.

Rork Max172Swift28Localization4String CatalogMultilingual

Premium Article

Why does adding just one new language cause so much worry? Shipping several wallpaper apps across a dozen-plus languages, I felt that every time. Missed strings, plural mismatches, layouts broken by long translations. I repeated this work many times on iPhone, but once Rork Max began generating native Swift, I came to see that how you lay the foundation changes the burden dramatically.

Rork Max generates Swift apps from an English description, but in the initial state the strings are often written directly in the body. Pulling them into a String Catalog (.xcstrings) early makes later language additions surprisingly light. Here I will walk through that migration and operation in order.

Why String Catalog

The old Localizable.strings and .stringsdict leaned heavily on manual key management, and it was easy to miss when code and translations drifted apart. String Catalog has Xcode pick up strings automatically and shows untranslated, duplicate, and status (needs review / translated) entries in one list. Plurals are handled as variations within the same file, so the back-and-forth between files disappears.

What I appreciate most is that "extraction is automatic." If you use String(localized:) on the code side, new strings are pulled into the catalog on every build. Missed strings — the most common mistake in multilingual operation — essentially stop happening.

AspectLocalizable.strings eraString Catalog (.xcstrings)
String extractionManual or scriptedAutomatic at build time
Tracking untranslatedVisual diffingListed in a status column
PluralsSeparate .stringsdict fileVariations in the same file
Unused stringsHard to noticeMarked STALE

Moving generated code onto String(localized:)

The initial code Rork Max returns is written, for example, like this.

Text("Added to favorites")
Button("Try again") { retry() }

To put these on the String Catalog, you tidy the strings to go through String(localized:). SwiftUI's Text automatically makes string literals localizable, but spelling out the key and default value makes later management clear.

Text("favorite.added", defaultValue: "Added to favorites")
 
Button(String(localized: "action.retry", defaultValue: "Try again")) {
    retry()
}

Namespacing keys by screen or role conveys context to translators. Keeping a form like favorite.added, where "where and what string this is" can be read, reduces mistranslation when you hand it off to a dozen-plus languages. I once left this vague and paid for it, so I always align it during the first cleanup.

Adding a String Catalog to the project is just File > New File in Xcode and choosing "String Catalog." After that, building lines up the keys referenced via String(localized:) into the .xcstrings.

Thank you for reading this far.

Continue Reading

What follows includes implementation code, benchmarks, and practical content we hope you'll find useful. This site runs without ads — server and development costs are supported entirely by members like you. If it's been helpful, we'd be truly grateful for your support.

WHAT YOU'LL LEARN
Concrete steps to migrate to .xcstrings and auto-extract strings from code
A design that handles plurals and regional differences safely as String Catalog variations
A workflow that builds translation import and breakage checks into operation, making each new language light
Secure payment via Stripe · Cancel anytime

Unlock This Article

Get full access to the rest of this article. Buy once, read anytime. This site is ad-free — your support goes directly toward keeping it running.

or
Unlock all articles with Membership →
Share

Thank You for Reading

Rork Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.

  • Copy-paste ready implementation code
  • New advanced guides published daily
  • $5/mo or $10 for lifetime access
View Membership →

Related Articles

Dev Tools2026-06-18
A Custom Screen Appears When You Long-Press a Notification in a Rork Max App — Implementing a Notification Content Extension
How to add a Notification Content Extension to a Swift app generated by Rork Max so a custom UI is drawn only when the notification expands. Covers the split with the Service Extension, updating the in-notification UI from a button, sharing state via an App Group, and the order to check when nothing shows — all with working code.
Dev Tools2026-06-17
Why Your Rork Max Native Swift Widget Freezes After Day One — Designing the TimelineProvider Refresh Budget
Native Swift home screen widgets generated by Rork Max stop rotating after the first day unless you understand the TimelineProvider refresh budget. Here is how reloadPolicy, App Groups, and deep links fit together in a real app.
Dev Tools2026-06-16
Putting Your Rork Max Native App's Content into iPhone Search — Becoming a 'Findable' App with Core Spotlight
Index the content of the native Swift app Rork Max generates into Core Spotlight, so users reach a specific in-app screen straight from iPhone search. Covers adding, updating, and removing index entries, plus the production trap of stale search results, from an indie developer's view.
📚RECOMMENDED BOOKS
Build a Large Language Model (From Scratch)
Sebastian Raschka
LLM Dev
Prompt Engineering for LLMs
Berryman & Ziegler
Prompting
AI Engineering
Chip Huyen
AI Eng
* Contains affiliate links
See all →