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.
 
 

196 lines
6.7 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-20 09:53+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-bridge-heisenbridge.md:1
  24. msgid "Setting up Heisenbridge bouncer-style IRC bridging (optional)"
  25. msgstr ""
  26. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:3
  27. msgid ""
  28. "**Note**: bridging to "
  29. "[IRC](https://en.wikipedia.org/wiki/Internet_Relay_Chat) can also happen "
  30. "via the [matrix-appservice-irc](configuring-playbook-bridge-appservice-"
  31. "irc.md) bridge supported by the playbook."
  32. msgstr ""
  33. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:5
  34. msgid ""
  35. "The playbook can install and configure "
  36. "[Heisenbridge](https://github.com/hifi/heisenbridge) - the bouncer-style "
  37. "[IRC](https://en.wikipedia.org/wiki/Internet_Relay_Chat) bridge for you."
  38. msgstr ""
  39. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:7
  40. msgid ""
  41. "See the project's "
  42. "[documentation](https://github.com/hifi/heisenbridge/blob/master/README.md)"
  43. " to learn what it does and why it might be useful to you. You can also "
  44. "take a look at [this demonstration "
  45. "video](https://www.youtube.com/watch?v=nQk1Bp4tk4I)."
  46. msgstr ""
  47. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:9
  48. msgid "Configuration"
  49. msgstr ""
  50. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:11
  51. msgid ""
  52. "To enable Heisenbridge, add the following configuration to your "
  53. "`inventory/host_vars/matrix.example.com/vars.yml` file:"
  54. msgstr ""
  55. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:24
  56. msgid ""
  57. "For a more complete list of variables that you could override, see the "
  58. "[`defaults/main.yml` file](../roles/custom/matrix-bridge-"
  59. "heisenbridge/defaults/main.yml) of the Heisenbridge Ansible role."
  60. msgstr ""
  61. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:26
  62. msgid "Adjusting the Heisenbridge URL"
  63. msgstr ""
  64. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:28
  65. msgid ""
  66. "By default, this playbook installs Heisenbridge on the `matrix.` "
  67. "subdomain, at the `/heisenbridge` path "
  68. "(https://matrix.example.com/heisenbridge). It would handle media requests"
  69. " there (see the [release notes for Heisenbridge "
  70. "v1.15.0](https://github.com/hifi/heisenbridge/releases/tag/v1.15.0))."
  71. msgstr ""
  72. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:30
  73. msgid ""
  74. "This makes it easy to install it, because it **doesn't require additional"
  75. " DNS records to be set up**. If that's okay, you can skip this section."
  76. msgstr ""
  77. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:32
  78. msgid ""
  79. "By tweaking the `matrix_heisenbridge_hostname` and "
  80. "`matrix_heisenbridge_path_prefix` variables, you can easily make the "
  81. "service available at a **different hostname and/or path** than the "
  82. "default one."
  83. msgstr ""
  84. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:34
  85. msgid ""
  86. "Example additional configuration for your "
  87. "`inventory/host_vars/matrix.example.com/vars.yml` file:"
  88. msgstr ""
  89. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:42
  90. msgid "Adjusting DNS records"
  91. msgstr ""
  92. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:44
  93. msgid ""
  94. "If you've changed the default hostname, **you may need to adjust your "
  95. "DNS** records to point the Heisenbridge domain to the Matrix server."
  96. msgstr ""
  97. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:46
  98. msgid "See [Configuring DNS](configuring-dns.md) for details about DNS changes."
  99. msgstr ""
  100. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:48
  101. msgid ""
  102. "If you've decided to use the default hostname, you won't need to do any "
  103. "extra DNS configuration."
  104. msgstr ""
  105. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:50
  106. msgid "Installing"
  107. msgstr ""
  108. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:52
  109. msgid ""
  110. "After configuring the playbook and potentially [adjusting your DNS "
  111. "records](#adjusting-dns-records), run the playbook with [playbook tags"
  112. "](playbook-tags.md) as below:"
  113. msgstr ""
  114. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:59
  115. msgid "**Notes**:"
  116. msgstr ""
  117. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:61
  118. msgid ""
  119. "The `ensure-matrix-users-created` playbook tag makes the playbook "
  120. "automatically create the bot's user account."
  121. msgstr ""
  122. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:63
  123. msgid ""
  124. "The shortcut commands with the [`just` program](just.md) are also "
  125. "available: `just install-all` or `just setup-all`"
  126. msgstr ""
  127. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:65
  128. msgid ""
  129. "`just install-all` is useful for maintaining your setup quickly ([2x-5x "
  130. "faster](../CHANGELOG.md#2x-5x-performance-improvements-in-playbook-"
  131. "runtime) than `just setup-all`) when its components remain unchanged. If "
  132. "you adjust your `vars.yml` to remove other components, you'd need to run "
  133. "`just setup-all`, or these components will still remain installed."
  134. msgstr ""
  135. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:67
  136. msgid "Usage"
  137. msgstr ""
  138. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:69
  139. msgid ""
  140. "To use the bridge, you need to start a chat with "
  141. "`@heisenbridge:example.com` (where `example.com` is your base domain, not"
  142. " the `matrix.` domain). If the bridge ignores you and a DM is not "
  143. "accepted then the owner setting may be wrong."
  144. msgstr ""
  145. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:71
  146. msgid "Help is available for all commands with the `-h` switch."
  147. msgstr ""
  148. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:73
  149. msgid ""
  150. "You can also learn the basics by watching [this demonstration "
  151. "video](https://www.youtube.com/watch?v=nQk1Bp4tk4I)."
  152. msgstr ""
  153. #: ../../../docs/configuring-playbook-bridge-heisenbridge.md:75
  154. msgid ""
  155. "If you encounter issues or feel lost you can join the project room at "
  156. "[#heisenbridge:vi.fi](https://matrix.to/#/#heisenbridge:vi.fi) for help."
  157. msgstr ""
  158. #~ msgid ""
  159. #~ "See the project's "
  160. #~ "[README](https://github.com/hifi/heisenbridge/blob/master/README.md)"
  161. #~ " to learn what it does and why"
  162. #~ " it might be useful to you. You"
  163. #~ " can also take a look at [this"
  164. #~ " demonstration "
  165. #~ "video](https://www.youtube.com/watch?v=nQk1Bp4tk4I)."
  166. #~ msgstr ""