{"id":29682064,"url":"https://github.com/corrupt952/xckit","last_synced_at":"2025-07-23T02:07:16.176Z","repository":{"id":304774984,"uuid":"1019845647","full_name":"corrupt952/xckit","owner":"corrupt952","description":"CLI tool for managing Xcode String Catalogs (.xcstrings)","archived":false,"fork":false,"pushed_at":"2025-07-15T04:31:17.000Z","size":26,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-15T10:14:36.548Z","etag":null,"topics":["cli","go","i18n","ios","localization","xcode","xcstrings"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/corrupt952.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-15T01:11:22.000Z","updated_at":"2025-07-15T04:30:49.000Z","dependencies_parsed_at":"2025-07-15T10:16:11.044Z","dependency_job_id":"dce5c283-6ec6-4629-b64e-a4f68c803256","html_url":"https://github.com/corrupt952/xckit","commit_stats":null,"previous_names":["corrupt952/xckit"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/corrupt952/xckit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corrupt952%2Fxckit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corrupt952%2Fxckit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corrupt952%2Fxckit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corrupt952%2Fxckit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/corrupt952","download_url":"https://codeload.github.com/corrupt952/xckit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corrupt952%2Fxckit/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266604009,"owners_count":23954725,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","go","i18n","ios","localization","xcode","xcstrings"],"created_at":"2025-07-23T02:07:15.647Z","updated_at":"2025-07-23T02:07:16.170Z","avatar_url":"https://github.com/corrupt952.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# xckit\n\nA command-line tool for managing Xcode String Catalogs (.xcstrings files).\n\n## Features\n\n- List all localization keys with their translation status\n- Find untranslated keys for specific languages\n- Update translations directly from the command line\n- View translation progress and statistics\n- Support for multiple languages\n\n## Installation\n\nDownload the latest release from the [Releases](https://github.com/corrupt952/xckit/releases) page.\n\n### Build from source\n\n```bash\ngo build -o xckit\n```\n\n## Usage\n\n### List all keys\n\nShow all localization keys with their translation status:\n\n```bash\nxckit list\n```\n\nFilter keys by prefix:\n\n```bash\nxckit list --prefix \"login\"\n```\n\n### Find untranslated keys\n\nFind all untranslated keys across all languages:\n\n```bash\nxckit untranslated\n```\n\nFind untranslated keys for a specific language:\n\n```bash\nxckit untranslated --lang ja\n```\n\nFilter untranslated keys by prefix:\n\n```bash\nxckit untranslated --prefix \"error\"\nxckit untranslated --lang ja --prefix \"login\"\n```\n\n### Set translations\n\nSet a translation for a specific key and language:\n\n```bash\nxckit set --lang ja \"hello_world\" \"こんにちは世界\"\n```\n\n### View translation status\n\nGet an overview of translation progress for all languages:\n\n```bash\nxckit status\n```\n\n### Specify a custom file\n\nBy default, xckit looks for `Localizable.xcstrings` in the current directory. You can specify a different file:\n\n```bash\nxckit list -f path/to/your/file.xcstrings\n```\n\n## Command Reference\n\n### `list`\nLists all keys with their translation status. Use `--lang` to filter by language.\n\n### `untranslated`\nShows keys that need translation. Use `--lang` to check a specific language.\n\n### `set`\nUpdates a translation for a specific key and language. Requires `--lang`, key, and value.\n\n### `status`\nDisplays translation progress summary for all languages.\n\n### `version`\nShows the xckit version.\n\n## Examples\n\n```bash\n# Check translation status\nxckit status -f MyApp.xcstrings\n\n# Find missing Japanese translations\nxckit untranslated --lang ja -f MyApp.xcstrings\n\n# Add a Japanese translation\nxckit set --lang ja \"welcome_message\" \"ようこそ\" -f MyApp.xcstrings\n\n# List all keys with their current translations\nxckit list -f MyApp.xcstrings\n```\n\n## Development\n\n### Running tests\n\n```bash\nmake test\n```\n\n### Building\n\n```bash\nmake build\n```\n\n### Coverage\n\n```bash\nmake coverage\n```\n\n## License\n\nSee [LICENSE](LICENSE) file for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorrupt952%2Fxckit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcorrupt952%2Fxckit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorrupt952%2Fxckit/lists"}