{"id":45125576,"url":"https://github.com/dataliquid/i18n-maven-plugin","last_synced_at":"2026-02-19T23:03:42.824Z","repository":{"id":336489979,"uuid":"1149901138","full_name":"dataliquid/i18n-maven-plugin","owner":"dataliquid","description":"Handle internationalization and localization easily - convert Excel sheets to resource files (Properties, JSON, XML)","archived":false,"fork":false,"pushed_at":"2026-02-04T17:06:05.000Z","size":111,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"develop","last_synced_at":"2026-02-05T04:24:38.052Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","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/dataliquid.png","metadata":{"files":{"readme":"README.adoc","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-02-04T16:47:52.000Z","updated_at":"2026-02-04T17:06:17.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/dataliquid/i18n-maven-plugin","commit_stats":null,"previous_names":["dataliquid/i18n-maven-plugin"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/dataliquid/i18n-maven-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataliquid%2Fi18n-maven-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataliquid%2Fi18n-maven-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataliquid%2Fi18n-maven-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataliquid%2Fi18n-maven-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dataliquid","download_url":"https://codeload.github.com/dataliquid/i18n-maven-plugin/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataliquid%2Fi18n-maven-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29636040,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T22:32:43.237Z","status":"ssl_error","status_checked_at":"2026-02-19T22:32:38.330Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-02-19T23:03:42.139Z","updated_at":"2026-02-19T23:03:42.816Z","avatar_url":"https://github.com/dataliquid.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"= i18n Maven Plugin\n\nHandle internationalization and localization easily with the i18n Maven Plugin.\n\nConvert your Excel sheets to resource files. Your input file `i18n.xls` will be converted to different output resource files.\n\n== Output Formats\n\n=== Properties\n\n----\ncustomer.properties\ncustomer_en.properties\n----\n\n[source,properties]\n----\n#Generated file customer.properties\nCUSTOMER=Customer\nFIRSTNAME=Firstname\nLASTNAME=Lastname\n----\n\n=== JSON\n\n----\ncustomer.json\ncustomer_en.json\n----\n\n[source,json]\n----\n{\n  \"CUSTOMER\": \"Customer\",\n  \"FIRSTNAME\": \"Firstname\",\n  \"LASTNAME\": \"Lastname\"\n}\n----\n\n=== XML\n\n----\ncustomer.xml\ncustomer_en.xml\n----\n\n[source,xml]\n----\n\u003c?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?\u003e\n\u003c!DOCTYPE properties SYSTEM \"http://java.sun.com/dtd/properties.dtd\"\u003e\n\u003cproperties\u003e\n  \u003ccomment\u003eGenerated file customer.xml\u003c/comment\u003e\n  \u003centry key=\"CUSTOMER\"\u003eCustomer\u003c/entry\u003e\n  \u003centry key=\"FIRSTNAME\"\u003eFirstname\u003c/entry\u003e\n  \u003centry key=\"LASTNAME\"\u003eLastname\u003c/entry\u003e\n\u003c/properties\u003e\n----\n\n== Usage\n\n[source,xml]\n----\n\u003cplugin\u003e\n    \u003cgroupId\u003ecom.dataliquid.maven\u003c/groupId\u003e\n    \u003cartifactId\u003ei18n-maven-plugin\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.0\u003c/version\u003e\n    \u003cexecutions\u003e\n        \u003cexecution\u003e\n            \u003cid\u003ei18n\u003c/id\u003e\n            \u003cphase\u003egenerate-resources\u003c/phase\u003e\n            \u003cgoals\u003e\n                \u003cgoal\u003ei18n\u003c/goal\u003e\n            \u003c/goals\u003e\n        \u003c/execution\u003e\n    \u003c/executions\u003e\n    \u003cconfiguration\u003e\n        \u003clocaleCell\u003eC1\u003c/localeCell\u003e\n        \u003ckeyCell\u003eB4\u003c/keyCell\u003e\n        \u003cfiles\u003e\n            \u003cfile\u003esrc/main/resources/i18n.xls\u003c/file\u003e\n        \u003c/files\u003e\n        \u003coutputFormat\u003e\n            \u003cformat\u003eproperties\u003c/format\u003e\n            \u003cformat\u003ejson\u003c/format\u003e\n            \u003cformat\u003exml\u003c/format\u003e\n        \u003c/outputFormat\u003e\n    \u003c/configuration\u003e\n\u003c/plugin\u003e\n----\n\n== Bug Tracker\n\nHave a bug or a feature request? Please create an issue on GitHub.\n\nhttps://github.com/dataliquid/i18n-maven-plugin/issues\n\n== Contributing\n\nFork the repository and submit pull requests.\n\n== License\n\nCopyright 2014 Ben Asmussen, 2024 Dataliquid GmbH\n\nLicensed under the Apache License, Version 2.0.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdataliquid%2Fi18n-maven-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdataliquid%2Fi18n-maven-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdataliquid%2Fi18n-maven-plugin/lists"}