{"id":50306201,"url":"https://github.com/pass-with-high-score/android-strings-manager","last_synced_at":"2026-05-28T16:30:51.206Z","repository":{"id":352554069,"uuid":"1215603997","full_name":"pass-with-high-score/android-strings-manager","owner":"pass-with-high-score","description":"IntelliJ / Android Studio plugin for managing res/values*/strings.xml in Android projects.","archived":false,"fork":false,"pushed_at":"2026-04-20T06:13:37.000Z","size":87,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-30T00:34:35.976Z","etag":null,"topics":["android-studio","jetbrains-plugin"],"latest_commit_sha":null,"homepage":"https://plugins.jetbrains.com/plugin/31367-android-strings-manager","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pass-with-high-score.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-20T04:39:53.000Z","updated_at":"2026-04-21T14:54:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/pass-with-high-score/android-strings-manager","commit_stats":null,"previous_names":["pass-with-high-score/android-strings-manager"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/pass-with-high-score/android-strings-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pass-with-high-score%2Fandroid-strings-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pass-with-high-score%2Fandroid-strings-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pass-with-high-score%2Fandroid-strings-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pass-with-high-score%2Fandroid-strings-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pass-with-high-score","download_url":"https://codeload.github.com/pass-with-high-score/android-strings-manager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pass-with-high-score%2Fandroid-strings-manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33617718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-28T02:00:06.440Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","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":["android-studio","jetbrains-plugin"],"created_at":"2026-05-28T16:30:49.597Z","updated_at":"2026-05-28T16:30:51.194Z","avatar_url":"https://github.com/pass-with-high-score.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Android Strings Manager\n\nIntelliJ / Android Studio plugin for managing `res/values*/strings.xml` in Android projects.\n\n## Features\n\n- **Clean Non-Translatable From Locales** — remove keys marked `translatable=\"false\"` in the default locale from every `values-*/strings.xml`.\n- **Export Missing Translations (CSV)** — export a `locale,name,default_value` CSV listing keys present in `values/strings.xml` but missing in each locale.\n- **Find Unused Strings...** — scan `.kt` / `.java` / `.xml` files across project content roots for `R.string.X` and `@string/X` references, list unreferenced keys, and (optionally) delete them from `values/` and every `values-*/strings.xml`.\n\n## Installation\n\n### From zip\n\n1. Download / build `build/distributions/android-strings-manager-\u003cver\u003e.zip`.\n2. In Android Studio (or IntelliJ IDEA): **Settings → Plugins → ⚙ → Install Plugin from Disk...** → pick the zip.\n3. Restart the IDE.\n\n### Build from source\n\n```bash\ngit clone https://github.com/pass-with-high-score/android-strings-manager.git\ncd android-strings-manager\n./gradlew buildPlugin\n# zip is produced in build/distributions/\n```\n\n## Usage\n\nAfter installation, open **Tools → Android Strings Manager** or right-click the `res/` directory in the Project view:\n\n- **Clean Non-Translatable From Locales** — runs immediately.\n- **Export Missing Translations (CSV)** — prompts for a CSV save location.\n- **Find Unused Strings...** — opens a dialog listing unreferenced keys. Keep ticks on the keys you want to delete, untick anything you want to preserve, then click **Delete selected**.\n\nIf the action is invoked from a file or folder outside a `res/` tree, the plugin opens a directory chooser so you can select the `res/` folder manually (it must contain `values/strings.xml`).\n\n## Notes\n\n- **XML formatting**: on save, the plugin reads the IDE Code Style indent for the target file (falling back to 4 spaces). The first Clean/Prune run may produce a wider diff than expected if the original file used a different format.\n- **Prune uses regexes** `R\\.string\\.X` and `@string/X`. Dynamic references such as `resources.getIdentifier(\"name\", \"string\", ...)` or runtime-built resource names are **not** detected — always review the list before deleting.\n- Only top-level `\u003cstring\u003e`, `\u003cstring-array\u003e`, and `\u003cplurals\u003e` elements inside `strings.xml` under `values/` and `values-*/` are touched.\n\n## Compatibility\n\n- IntelliJ Platform 2025.2+\n- Android Studio (any build based on IntelliJ 2025.2+)\n- No Android SDK module dependency — only `com.intellij.modules.platform`.\n\n## License\n\nApache License 2.0 — see [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpass-with-high-score%2Fandroid-strings-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpass-with-high-score%2Fandroid-strings-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpass-with-high-score%2Fandroid-strings-manager/lists"}