Project Settings

XCStrings Translator stores project configuration in a file that you can commit to git, making it easy to share settings with your team.

Configuration File#

When you open a project folder, XCStrings Translator creates:

your-project/
├── .xcstrings-translator/
│   └── config.json
└── Localizable.xcstrings

The config.json file stores:

  • Selected AI provider for this project
  • Custom translation prompts
  • App description for translation context

Git Workflow#

Since project settings are stored in a file, they work naturally with git:

# Commit your project configuration
git add .xcstrings-translator/config.json
git commit -m "Add translation settings"

Next Steps#