Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

110 строки
4.1 KiB

  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) 2018-2026, Slavi Pantaleev, Aine Etke, MDAD community members
  3. # This file is distributed under the same license as the matrix-docker-ansible-deploy package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: matrix-docker-ansible-deploy \n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2026-07-18 04:11+0000\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. #: ../../../AGENTS.md:7
  19. msgid "Guidance for AI agents"
  20. msgstr ""
  21. #: ../../../AGENTS.md:9
  22. msgid "This file gives AI coding agents the minimum context for working on this repository. Human contributors may find it a useful summary too."
  23. msgstr ""
  24. #: ../../../AGENTS.md:11
  25. msgid "What this is"
  26. msgstr ""
  27. #: ../../../AGENTS.md:13
  28. msgid "An Ansible playbook that installs and manages a Matrix homeserver and dozens of related services, each running as a Docker container wrapped in a systemd service."
  29. msgstr ""
  30. #: ../../../AGENTS.md:15
  31. msgid "Layout"
  32. msgstr ""
  33. #: ../../../AGENTS.md:17
  34. msgid "`setup.yml`: the main playbook, listing all roles."
  35. msgstr ""
  36. #: ../../../AGENTS.md:18
  37. msgid "`roles/custom/`: roles maintained in this repository."
  38. msgstr ""
  39. #: ../../../AGENTS.md:19
  40. msgid "`roles/galaxy/`: external roles, downloaded according to `requirements.yml` via [agru](https://github.com/etkecc/agru) (preferred) or `ansible-galaxy`. Run `just roles` to install them (or `just update` to also pull the playbook itself). Editing these roles locally is fine while preparing or testing a fix, but the changes get wiped on the next roles update, so they must be synced back to the role's upstream repository, followed by a version pin update in `requirements.yml`."
  41. msgstr ""
  42. #: ../../../AGENTS.md:20
  43. msgid "`group_vars/matrix_servers`: wires roles together (feeding one role's variables into another). Values a role can construct by itself belong in the role's `defaults/main.yml`, not here."
  44. msgstr ""
  45. #: ../../../AGENTS.md:21
  46. msgid "`docs/`: user-facing documentation, one page per component."
  47. msgstr ""
  48. #: ../../../AGENTS.md:22
  49. msgid "`i18n/`: translation infrastructure. Do not edit locale files by hand; they are managed by automation."
  50. msgstr ""
  51. #: ../../../AGENTS.md:23
  52. msgid "`CHANGELOG.md`: user-facing announcements, newest first."
  53. msgstr ""
  54. #: ../../../AGENTS.md:25
  55. msgid "Conventions"
  56. msgstr ""
  57. #: ../../../AGENTS.md:27
  58. msgid "Follow the [style guide for playbook developers](docs/style-guide.md). In particular:"
  59. msgstr ""
  60. #: ../../../AGENTS.md:29
  61. msgid "Variable prefixes match the role directory name."
  62. msgstr ""
  63. #: ../../../AGENTS.md:30
  64. msgid "Playbook-extensible list variables use the `_auto` + `_custom` split; `_custom` is reserved for users."
  65. msgstr ""
  66. #: ../../../AGENTS.md:31
  67. msgid "Renamed or removed variables get a validation entry, so stale user configuration produces an error instead of being silently ignored. Each role deprecates its own variables in its `validate_config.yml`; the `matrix_playbook_migration` role covers eliminated roles and very-early validation, and also gates breaking changes via `matrix_playbook_migration_expected_version` (see the style guide)."
  68. msgstr ""
  69. #: ../../../AGENTS.md:32
  70. msgid "Every file carries SPDX license headers ([REUSE](https://reuse.software/) specification)."
  71. msgstr ""
  72. #: ../../../AGENTS.md:33
  73. msgid "New components must be registered in `setup.yml`, `group_vars/matrix_servers`, `docs/README.md`, `README.md`, `docs/container-images.md`, and get a `CHANGELOG.md` entry."
  74. msgstr ""
  75. #: ../../../AGENTS.md:35
  76. msgid "Other notes"
  77. msgstr ""
  78. #: ../../../AGENTS.md:37
  79. msgid "Documentation examples use `example.com`, `@alice:example.com`, and the other placeholder values listed in the style guide."
  80. msgstr ""
  81. #: ../../../AGENTS.md:38
  82. msgid "Write role tasks concurrency-safe: use `ansible.builtin.tempfile` for temporary files (removed in an `always` block), never fixed shared paths."
  83. msgstr ""
  84. #: ../../../AGENTS.md:39
  85. msgid "One logical change per commit."
  86. msgstr ""