Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

153 lines
5.4 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: 2024-12-16 12:05+0900\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-dendrite.md:1
  24. msgid "Configuring Dendrite (optional)"
  25. msgstr ""
  26. #: ../../../docs/configuring-playbook-dendrite.md:3
  27. msgid ""
  28. "By default, this playbook configures the [Synapse](https://github.com"
  29. "/element-hq/synapse) Matrix server, but you can also use "
  30. "[Dendrite](https://github.com/matrix-org/dendrite)."
  31. msgstr ""
  32. #: ../../../docs/configuring-playbook-dendrite.md:5
  33. msgid "**Notes**:"
  34. msgstr ""
  35. #: ../../../docs/configuring-playbook-dendrite.md:7
  36. msgid ""
  37. "**You can't switch an existing Matrix server's implementation** (e.g. "
  38. "Synapse -> Dendrite). Proceed below only if you're OK with losing data or"
  39. " you're dealing with a server on a new domain name, which hasn't "
  40. "participated in the Matrix federation yet."
  41. msgstr ""
  42. #: ../../../docs/configuring-playbook-dendrite.md:9
  43. msgid ""
  44. "**homeserver implementations other than Synapse may not be fully "
  45. "functional**. The playbook may also not assist you in an optimal way "
  46. "(like it does with Synapse). Make yourself familiar with the downsides "
  47. "before proceeding"
  48. msgstr ""
  49. #: ../../../docs/configuring-playbook-dendrite.md:11
  50. msgid "Adjusting the playbook configuration"
  51. msgstr ""
  52. #: ../../../docs/configuring-playbook-dendrite.md:13
  53. msgid ""
  54. "To use Dendrite, you **generally** need to add the following "
  55. "configuration to your `inventory/host_vars/matrix.example.com/vars.yml` "
  56. "file:"
  57. msgstr ""
  58. #: ../../../docs/configuring-playbook-dendrite.md:19
  59. msgid ""
  60. "The playbook provides lots of customization variables you could use to "
  61. "change Dendrite's settings."
  62. msgstr ""
  63. #: ../../../docs/configuring-playbook-dendrite.md:21
  64. msgid ""
  65. "Their defaults are defined in [`roles/custom/matrix-"
  66. "dendrite/defaults/main.yml`](../roles/custom/matrix-"
  67. "dendrite/defaults/main.yml) and they ultimately end up in the generated "
  68. "`/matrix/dendrite/config/dendrite.yaml` file (on the server). This file "
  69. "is generated from the [`roles/custom/matrix-"
  70. "dendrite/templates/dendrite/dendrite.yaml.j2`](../roles/custom/matrix-"
  71. "dendrite/templates/dendrite/dendrite.yaml.j2) template."
  72. msgstr ""
  73. #: ../../../docs/configuring-playbook-dendrite.md:23
  74. msgid ""
  75. "**If there's an existing variable** which controls a setting you wish to "
  76. "change, you can simply define that variable in your configuration file "
  77. "(`inventory/host_vars/matrix.example.com/vars.yml`) and [re-run the "
  78. "playbook](installing.md) to apply the changes."
  79. msgstr ""
  80. #: ../../../docs/configuring-playbook-dendrite.md:25
  81. msgid ""
  82. "Alternatively, **if there is no pre-defined variable** for a Dendrite "
  83. "setting you wish to change:"
  84. msgstr ""
  85. #: ../../../docs/configuring-playbook-dendrite.md:27
  86. msgid ""
  87. "you can either **request a variable to be created** (or you can submit "
  88. "such a contribution yourself). Keep in mind that it's **probably not a "
  89. "good idea** to create variables for each one of Dendrite's various "
  90. "settings that rarely get used."
  91. msgstr ""
  92. #: ../../../docs/configuring-playbook-dendrite.md:29
  93. msgid ""
  94. "or, you can **extend and override the default configuration** "
  95. "([`dendrite.yaml.j2`](../roles/custom/matrix-"
  96. "dendrite/templates/dendrite/dendrite.yaml.j2)) by making use of the "
  97. "`matrix_dendrite_configuration_extension_yaml` variable. You can find "
  98. "information about this in [`roles/custom/matrix-"
  99. "dendrite/defaults/main.yml`](../roles/custom/matrix-"
  100. "dendrite/defaults/main.yml)."
  101. msgstr ""
  102. #: ../../../docs/configuring-playbook-dendrite.md:31
  103. msgid ""
  104. "or, if extending the configuration is still not powerful enough for your "
  105. "needs, you can **override the configuration completely** using "
  106. "`matrix_dendrite_configuration` (or "
  107. "`matrix_dendrite_configuration_yaml`). You can find information about "
  108. "this in [`roles/custom/matrix-"
  109. "dendrite/defaults/main.yml`](../roles/custom/matrix-"
  110. "dendrite/defaults/main.yml)."
  111. msgstr ""
  112. #: ../../../docs/configuring-playbook-dendrite.md:33
  113. msgid "Installing"
  114. msgstr ""
  115. #: ../../../docs/configuring-playbook-dendrite.md:35
  116. msgid ""
  117. "After configuring the playbook, run it with [playbook tags](playbook-"
  118. "tags.md) as below:"
  119. msgstr ""
  120. #: ../../../docs/configuring-playbook-dendrite.md:42
  121. msgid ""
  122. "The shortcut commands with the [`just` program](just.md) are also "
  123. "available: `just install-all` or `just setup-all`"
  124. msgstr ""
  125. #: ../../../docs/configuring-playbook-dendrite.md:44
  126. msgid ""
  127. "`just install-all` is useful for maintaining your setup quickly ([2x-5x "
  128. "faster](../CHANGELOG.md#2x-5x-performance-improvements-in-playbook-"
  129. "runtime) than `just setup-all`) when its components remain unchanged. If "
  130. "you adjust your `vars.yml` to remove other components, you'd need to run "
  131. "`just setup-all`, or these components will still remain installed. Note "
  132. "these shortcuts run the `ensure-matrix-users-created` tag too."
  133. msgstr ""