{"id":19045704,"url":"https://github.com/phpmyadmin/localized_docs","last_synced_at":"2026-01-26T21:51:33.141Z","repository":{"id":2392298,"uuid":"3358502","full_name":"phpmyadmin/localized_docs","owner":"phpmyadmin","description":"Localized documentation","archived":false,"fork":false,"pushed_at":"2026-01-18T01:32:22.000Z","size":417932,"stargazers_count":72,"open_issues_count":0,"forks_count":53,"subscribers_count":14,"default_branch":"master","last_synced_at":"2026-01-18T13:51:13.607Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://hosted.weblate.org/projects/phpmyadmin/documentation/","language":"Makefile","has_issues":false,"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/phpmyadmin.png","metadata":{"files":{"readme":"README.rst","changelog":null,"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":"2012-02-05T09:17:51.000Z","updated_at":"2026-01-18T01:32:26.000Z","dependencies_parsed_at":"2023-11-30T00:21:52.910Z","dependency_job_id":"47e70989-6c8b-4d88-83cf-af4f56d32c66","html_url":"https://github.com/phpmyadmin/localized_docs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/phpmyadmin/localized_docs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phpmyadmin%2Flocalized_docs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phpmyadmin%2Flocalized_docs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phpmyadmin%2Flocalized_docs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phpmyadmin%2Flocalized_docs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phpmyadmin","download_url":"https://codeload.github.com/phpmyadmin/localized_docs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phpmyadmin%2Flocalized_docs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28789149,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T21:49:50.245Z","status":"ssl_error","status_checked_at":"2026-01-26T21:48:29.455Z","response_time":59,"last_error":"SSL_read: 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":"2024-11-08T22:51:08.820Z","updated_at":"2026-01-26T21:51:33.135Z","avatar_url":"https://github.com/phpmyadmin.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"phpMyAdmin - localized documentation\n====================================\n\nThis repository contains localized documentation for phpMyAdmin. It\nis based on master document placed in phpmyadmin repository.\n\nTo translate edit your language file in po directory, changes will be\npropagated to generated documents. You can also translate online at\n\u003chttps://hosted.weblate.org/projects/phpmyadmin/documentation/\u003e and your changes\nwill be merged to Git.\n\n.. image:: https://hosted.weblate.org/widget/phpmyadmin/documentation/svg-badge.svg\n    :alt: Translation status\n    :target: https://hosted.weblate.org/engage/phpmyadmin/\n\n.. image:: https://github.com/phpmyadmin/localized_docs/actions/workflows/build.yml/badge.svg?branch=master\n    :alt: Build documentation\n    :target: https://github.com/phpmyadmin/localized_docs/actions/workflows/build.yml?query=branch%3Amaster\n\n.. image:: https://readthedocs.org/projects/phpmyadmin/badge/?version=latest\n    :target: http://docs.phpmyadmin.net/en/latest/?badge=latest\n    :alt: Documentation Status\n\nRequirements\n------------\n\nFor manipulating with translations, you need gettext and sphinx installed.\n\nUsage\n-----\n\nTo start new translation,\n\n* Add it to the `LANGUAGES` section of the Makefile.\n* Copy one of the language folders in `./docs/` to a new folder (named with the\n  proper language code). This will maintain many symlinked files in that\n  folder and one regular file `config.py`.\n* Edit `config.py` to change the `language =` section with the correct\n  language name.\n* In the `./po/` folder, copy `documentation.pot` to create a new `.po`\n  file. You may have to also create a .mo file, but I think that happens\n  automatically on the build server.\n* Copy one of the folders in `./translated/` to a new folder. This again\n  creates many symlinks.\n\nTo regenerate mofiles run:\n\n.. code-block:: sh\n\n    make\n\nTo obtain statistics about current translations run:\n\n.. code-block:: sh\n\n    ./locales-stats\n\nTo update documentation run:\n\n.. code-block:: sh\n\n    # Force Weblate to commit changes, requires wlc to be installed\n    wlc commit\n    # Pull changes from Weblate\n    git pull\n    # Update phpMyAdmin submodule\n    git submodule update --remote\n    # Update po files to match current docs\n    make\n\nThis automatically updates po files, generates mo files and synchronizes\nsources of the documentation. Review changes and commit them using:\n\n.. code-block:: sh\n\n    git commit -a -m 'Update documentation to match master'\n\nTo build documentation in given language (for example Czech):\n\n.. code-block:: sh\n\n    make html-cs\n\nYou can also invoke sphinx-build manually:\n\n.. code-block:: sh\n\n    sphinx-build docs/cs/ output/cs/\n\nYou can also build all documentation at once:\n\n.. code-block:: sh\n\n    make html\n\nYou can also browse translated documentation online at \u003chttps://docs.phpmyadmin.net/\u003e.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphpmyadmin%2Flocalized_docs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphpmyadmin%2Flocalized_docs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphpmyadmin%2Flocalized_docs/lists"}