{"id":42591899,"url":"https://github.com/threadi/easy-language","last_synced_at":"2026-02-11T14:07:47.529Z","repository":{"id":175515021,"uuid":"647785187","full_name":"threadi/easy-language","owner":"threadi","description":"Provider easy language for multilingual-plugins in WordPress","archived":false,"fork":false,"pushed_at":"2026-01-19T10:51:37.000Z","size":5970,"stargazers_count":0,"open_issues_count":7,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-29T12:12:02.834Z","etag":null,"topics":["multilingual","wordpress-plugin"],"latest_commit_sha":null,"homepage":"https://wordpress.org/plugins/easy-language/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/threadi.png","metadata":{"files":{"readme":"readme.md","changelog":"changelog.md","contributing":null,"funding":null,"license":null,"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":"2023-05-31T14:11:36.000Z","updated_at":"2026-01-19T10:11:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"8e7e8344-e06c-4c33-b703-95ec0ee6a534","html_url":"https://github.com/threadi/easy-language","commit_stats":null,"previous_names":["threadi/easy-language"],"tags_count":28,"template":false,"template_full_name":null,"purl":"pkg:github/threadi/easy-language","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/threadi%2Feasy-language","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/threadi%2Feasy-language/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/threadi%2Feasy-language/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/threadi%2Feasy-language/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/threadi","download_url":"https://codeload.github.com/threadi/easy-language/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/threadi%2Feasy-language/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29334074,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T14:07:45.431Z","status":"ssl_error","status_checked_at":"2026-02-11T14:07:45.080Z","response_time":97,"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":["multilingual","wordpress-plugin"],"created_at":"2026-01-28T23:13:57.505Z","updated_at":"2026-02-11T14:07:47.511Z","avatar_url":"https://github.com/threadi.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Easy Language\n\n## About\n\nThis repository provides the features for the free version of the WordPress plugin _Easy Language_. The repository is used as a basis for deploying the plugin to the WordPress repository. It is not intended to run as a plugin as it is, even if that is possible for development.\n\n## Usage\n\nAfter checkout go through the following steps:\n\n### Using ant\n\n1. copy _build/build.properties.dist_ to _build/build.properties_.\n2. modify the build/build.properties file - note the comments in the file.\n3. after that the plugin can be activated in WordPress.\n\n### Using Taskfile\n\n1. Run this command: `task prepare`\n2. after that the plugin can be activated in WordPress.\n\n## Release\n\n### from local environment with ant\n\n1. increase the version number in _build/build.properties_.\n2. execute the following command in _build/_: `ant build`\n3. after that you will find a zip file in the release directory which could be used in WordPress to install it.\n\n### from local environment with Taskfile\n\n1. execute the following command in main directory: `task release -- 3.0.0` - adjust the version number.\n2. after that you will find a zip file in the release directory which could be used in WordPress to install it.\n\n### on GitHub\n\n1. Create a new tag with the new version number.\n2. The release zip will be created by GitHub action.\n\n## Translations\n\nI recommend using [PoEdit](https://poedit.net/) to translate texts for this plugin.\n\n### generate pot-file\n\nRun in the main directory:\n\n`wp i18n make-pot . languages/easy-language.pot --exclude=classes/multilingual-plugins/easy-language/blocks/navigation-switcher/src/,classes/multilingual-plugins/easy-language/blocks/switcher/src/,svn/`\n\n### update translation-file\n\n1. Open .po-file of the language in PoEdit.\n2. Go to \"Translate\" \u003e \"Update from POT-file\".\n3. After this the new entries are added to the language-file.\n\n### export translation-file\n\n1. Open .po-file of the language in PoEdit.\n2. Go to \"File\" \u003e \"Save\".\n3. Upload the generated .mo-file and the .po-file to the plugin-folder languages/\n\n### generate json-translation-files\n\nRun in the main directory:\n\n`wp i18n make-json languages`\n\nOR use ant in build/-directory: `ant json-translations`\n\n### Requirements\n\n`npm install`\n\n### Run for development\n\n`npm start`\n\n### Run for release\n\n`npm run build`\n\nHint: will be called by ant-command mentioned above.\n\n## Check for WordPress Coding Standards\n\n### Initialize\n\n`composer install`\n\n### Run\n\n`vendor/bin/phpcs --standard=ruleset.xml .`\n\n### Repair\n\n`vendor/bin/phpcbf --standard=ruleset.xml .`\n\n## Generate documentation\n\n`vendor/bin/wp-documentor parse app --format=markdown --output=doc/hooks.md --prefix=easy_language_ --exclude=Section.php --exclude=Tab.php --exclude=Import.php --exclude=Export.php --exclude=Field_Base.php --exclude=Settings.php --exclude=Page.php --exclude=Rest.php --exclude=Transients.php --exclude=Post_Object.php`\n\n## Check for WordPress VIP Coding Standards\n\nHint: this check runs against the VIP-GO-platform which is not our target for this plugin. Many warnings can be ignored.\n\n### Run\n\n`vendor/bin/phpcs --extensions=php --ignore=*/vendor/*,*/doc/*,*/svn/*,*/node_modules/*,*/gettext-helper.php,*/classes/multilingual-plugins/easy-language/pagebuilder/divi/build/,*/classes/multilingual-plugins/easy-language/blocks/*/build/,*translatepress* --standard=WordPress-VIP-Go .`\n\n## Check PHP compatibility\n\n`vendor/bin/phpcs -p app --standard=PHPCompatibilityWP`\n\n## Analyze with PHPStan\n\n`vendor/bin/phpstan analyse`\n\n## Check with plugin \"Plugin Check\"\n\n`wp plugin check --error-severity=7 --warning-severity=6 --include-low-severity-errors --categories=plugin_repo --format=json --slug=easy-language .`\n\n## Unit tests\n\n### Preparation\n\nBe sure to have run `composer install` or `composer update` before.\n\n### Run\n\n`composer test`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthreadi%2Feasy-language","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthreadi%2Feasy-language","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthreadi%2Feasy-language/lists"}