Localising Apps With Agents in Xcode 27

Localisation looks like one of the more useful jobs for Xcode 27's coding agents. Apple's localisation guide describes how they can add languages, update string catalogues, and translate text, including the plural forms a language needs.
Xcode builds all targets to collect localisable strings and can also translate user-facing text in your app's information property list. The strings need to use localisable APIs for Xcode to find them, so missing text may need a change in your code before translation. For a small developer, getting that preparation and a first translation pass done could make it easier to find time for localisation alongside feature work and bug fixes.
The ability to supply your own guidance is particularly useful. Apple suggests putting it in a TRANSLATION.md file and referring to that from your agent's AGENTS.md or CLAUDE.md. You can include a glossary, product names to leave alone, and the tone you want. That gives you somewhere to record decisions about your app's language instead of explaining them again with each request. Apple's WWDC session covers the translation workflow in more detail.
There's still review work to do. Apple recommends testing the translated app, checking that text fits and right-to-left layouts work, and getting feedback from people who speak the language and live in the region. A translation that reads plausibly to someone who doesn't know the language is a poor measure of whether it's any good.
That's why I find this use of agents appealing. The preparation is repetitive, and the output gives you something specific to review with a translator or a tester. If it reduces the time needed to reach that point, it could help more small apps support another language.
