Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

135 行
6.0 KiB

  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) 2018-2024, Slavi Pantaleev, Aine Etke, MDAD community
  3. # members
  4. # This file is distributed under the same license as the
  5. # matrix-docker-ansible-deploy package.
  6. # FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
  7. #
  8. #, fuzzy
  9. msgid ""
  10. msgstr ""
  11. "Project-Id-Version: matrix-docker-ansible-deploy \n"
  12. "Report-Msgid-Bugs-To: \n"
  13. "POT-Creation-Date: 2025-01-27 09:54+0200\n"
  14. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  15. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  16. "Language: bg\n"
  17. "Language-Team: bg <LL@li.org>\n"
  18. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  19. "MIME-Version: 1.0\n"
  20. "Content-Type: text/plain; charset=utf-8\n"
  21. "Content-Transfer-Encoding: 8bit\n"
  22. "Generated-By: Babel 2.16.0\n"
  23. #: ../../../docs/configuring-playbook-conduit.md:1
  24. msgid "Configuring Conduit (optional)"
  25. msgstr ""
  26. #: ../../../docs/configuring-playbook-conduit.md:3
  27. msgid "The playbook can install and configure the [Conduit](https://conduit.rs) Matrix server for you."
  28. msgstr ""
  29. #: ../../../docs/configuring-playbook-conduit.md:5
  30. msgid "See the project's [documentation](https://docs.conduit.rs/) to learn what it does and why it might be useful to you."
  31. msgstr ""
  32. #: ../../../docs/configuring-playbook-conduit.md:7
  33. msgid "By default, the playbook installs [Synapse](https://github.com/element-hq/synapse) as it's the only full-featured Matrix server at the moment. If that's okay, you can skip this document."
  34. msgstr ""
  35. #: ../../../docs/configuring-playbook-conduit.md:9
  36. msgid "💡 **Note**: The playbook also supports installing a (currently) faster-moving Conduit fork called [conduwuit](./configuring-playbook-conduwuit.md)."
  37. msgstr ""
  38. #: ../../../docs/configuring-playbook-conduit.md:11
  39. msgid "⚠️ **Warnings**:"
  40. msgstr ""
  41. #: ../../../docs/configuring-playbook-conduit.md:13
  42. msgid "**You can't switch an existing Matrix server's implementation** (e.g. Synapse -> Conduit). Proceed below only if you're OK with losing data or you're dealing with a server on a new domain name, which hasn't participated in the Matrix federation yet."
  43. msgstr ""
  44. #: ../../../docs/configuring-playbook-conduit.md:15
  45. msgid "**Homeserver implementations other than Synapse may not be fully functional**. The playbook may also not assist you in an optimal way (like it does with Synapse). Make yourself familiar with the downsides before proceeding"
  46. msgstr ""
  47. #: ../../../docs/configuring-playbook-conduit.md:17
  48. msgid "Adjusting the playbook configuration"
  49. msgstr ""
  50. #: ../../../docs/configuring-playbook-conduit.md:19
  51. msgid "To use Conduit, you **generally** need to adjust the `matrix_homeserver_implementation: synapse` configuration on your `inventory/host_vars/matrix.example.com/vars.yml` file as below:"
  52. msgstr ""
  53. #: ../../../docs/configuring-playbook-conduit.md:25
  54. msgid "Extending the configuration"
  55. msgstr ""
  56. #: ../../../docs/configuring-playbook-conduit.md:27
  57. msgid "There are some additional things you may wish to configure about the server."
  58. msgstr ""
  59. #: ../../../docs/configuring-playbook-conduit.md:29
  60. msgid "Take a look at:"
  61. msgstr ""
  62. #: ../../../docs/configuring-playbook-conduit.md:31
  63. msgid "`roles/custom/matrix-conduit/defaults/main.yml` for some variables that you can customize via your `vars.yml` file"
  64. msgstr ""
  65. #: ../../../docs/configuring-playbook-conduit.md:32
  66. msgid "`roles/custom/matrix-conduit/templates/conduit.toml.j2` for the server's default configuration"
  67. msgstr ""
  68. #: ../../../docs/configuring-playbook-conduit.md:34
  69. msgid "If you'd like to have your own different configuration, feel free to copy and paste the original files into your inventory (e.g. in `inventory/host_vars/matrix.example.com/`) and then change the specific host's `vars.yml` file like this:"
  70. msgstr ""
  71. #: ../../../docs/configuring-playbook-conduit.md:40
  72. msgid "Creating the first user account"
  73. msgstr ""
  74. #: ../../../docs/configuring-playbook-conduit.md:42
  75. msgid "Since it is difficult to create the first user account on Conduit (see [famedly/conduit#276](https://gitlab.com/famedly/conduit/-/issues/276) and [famedly/conduit#354](https://gitlab.com/famedly/conduit/-/merge_requests/354)) and it does not support [registering users](registering-users.md) (via the command line or via the playbook) like Synapse and Dendrite do, we recommend the following procedure:"
  76. msgstr ""
  77. #: ../../../docs/configuring-playbook-conduit.md:44
  78. msgid "Add `matrix_conduit_allow_registration: true` to your `vars.yml` the first time around, temporarily"
  79. msgstr ""
  80. #: ../../../docs/configuring-playbook-conduit.md:45
  81. msgid "Run the playbook (`ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start` — see [Installing](installing.md))"
  82. msgstr ""
  83. #: ../../../docs/configuring-playbook-conduit.md:46
  84. msgid "Create your first user via Element Web or any other client which supports creating users"
  85. msgstr ""
  86. #: ../../../docs/configuring-playbook-conduit.md:47
  87. msgid "Get rid of `matrix_conduit_allow_registration: true` from your `vars.yml`"
  88. msgstr ""
  89. #: ../../../docs/configuring-playbook-conduit.md:48
  90. msgid "Run the playbook again (`ansible-playbook -i inventory/hosts setup.yml --tags=setup-conduit,start` would be enough this time)"
  91. msgstr ""
  92. #: ../../../docs/configuring-playbook-conduit.md:49
  93. msgid "You can now use your server safely. Additional users can be created by messaging the internal Conduit bot"
  94. msgstr ""
  95. #: ../../../docs/configuring-playbook-conduit.md:51
  96. msgid "Configuring bridges / appservices"
  97. msgstr ""
  98. #: ../../../docs/configuring-playbook-conduit.md:53
  99. msgid "For other homeserver implementations (like Synapse and Dendrite), the playbook automatically registers appservices (for bridges, bots, etc.) with the homeserver."
  100. msgstr ""
  101. #: ../../../docs/configuring-playbook-conduit.md:55
  102. msgid "For Conduit, you will have to manually register appservices using the the [register-appservice](https://gitlab.com/famedly/conduit/-/blob/next/APPSERVICES.md) command."
  103. msgstr ""
  104. #: ../../../docs/configuring-playbook-conduit.md:57
  105. msgid "Find the `registration.yaml` in the `/matrix` directory, for example `/matrix/mautrix-signal/bridge/registration.yaml`, then pass the content to Conduit:"
  106. msgstr ""