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.
 
 
 

260 lines
8.8 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: jp\n"
  17. "Language-Team: jp <LL@li.org>\n"
  18. "MIME-Version: 1.0\n"
  19. "Content-Type: text/plain; charset=utf-8\n"
  20. "Content-Transfer-Encoding: 8bit\n"
  21. "Generated-By: Babel 2.16.0\n"
  22. #: ../../../docs/configuring-playbook-mautrix-bridges.md:1
  23. msgid "Setting up a Generic Mautrix Bridge (optional)"
  24. msgstr ""
  25. #: ../../../docs/configuring-playbook-mautrix-bridges.md:3
  26. msgid ""
  27. "The playbook can install and configure various "
  28. "[mautrix](https://github.com/mautrix) bridges (twitter, facebook, "
  29. "instagram, signal, hangouts, googlechat, etc.), as well as many other "
  30. "(non-mautrix) bridges. This is a common guide for configuring mautrix "
  31. "bridges."
  32. msgstr ""
  33. #: ../../../docs/configuring-playbook-mautrix-bridges.md:5
  34. msgid ""
  35. "You can see each bridge's features at in the `ROADMAP.md` file in its "
  36. "corresponding [mautrix](https://github.com/mautrix) repository."
  37. msgstr ""
  38. #: ../../../docs/configuring-playbook-mautrix-bridges.md:7
  39. msgid "Adjusting the playbook configuration"
  40. msgstr ""
  41. #: ../../../docs/configuring-playbook-mautrix-bridges.md:9
  42. msgid ""
  43. "To enable the bridge, add the following configuration to your "
  44. "`inventory/host_vars/matrix.example.com/vars.yml` file:"
  45. msgstr ""
  46. #: ../../../docs/configuring-playbook-mautrix-bridges.md:16
  47. msgid ""
  48. "There are some additional things you may wish to configure about the "
  49. "bridge before you continue. Each bridge may have additional requirements "
  50. "besides `_enabled: true`. For example, the mautrix-telegram bridge (our "
  51. "documentation page about it is [here](configuring-playbook-bridge-"
  52. "mautrix-telegram.md)) requires the `matrix_mautrix_telegram_api_id` and "
  53. "`matrix_mautrix_telegram_api_hash` variables to be defined. Refer to each"
  54. " bridge's individual documentation page for details about enabling "
  55. "bridges."
  56. msgstr ""
  57. #: ../../../docs/configuring-playbook-mautrix-bridges.md:18
  58. msgid ""
  59. "To **configure a user as an administrator for all bridges**, add the "
  60. "following configuration to your "
  61. "`inventory/host_vars/matrix.example.com/vars.yml` file:"
  62. msgstr ""
  63. #: ../../../docs/configuring-playbook-mautrix-bridges.md:24
  64. msgid ""
  65. "**Alternatively** (more verbose, but allows multiple admins to be "
  66. "configured), you can do the same on a per-bridge basis with:"
  67. msgstr ""
  68. #: ../../../docs/configuring-playbook-mautrix-bridges.md:33
  69. msgid "encryption"
  70. msgstr ""
  71. #: ../../../docs/configuring-playbook-mautrix-bridges.md:35
  72. msgid ""
  73. "Encryption support is off by default. If you would like to enable "
  74. "encryption, add the following configuration to your "
  75. "`inventory/host_vars/matrix.example.com/vars.yml` file:"
  76. msgstr ""
  77. #: ../../../docs/configuring-playbook-mautrix-bridges.md:37
  78. msgid "**for all bridges with encryption support**:"
  79. msgstr ""
  80. #: ../../../docs/configuring-playbook-mautrix-bridges.md:44
  81. #: ../../../docs/configuring-playbook-mautrix-bridges.md:61
  82. msgid "**Alternatively**, for a specific bridge:"
  83. msgstr ""
  84. #: ../../../docs/configuring-playbook-mautrix-bridges.md:51
  85. msgid "relay mode"
  86. msgstr ""
  87. #: ../../../docs/configuring-playbook-mautrix-bridges.md:53
  88. msgid ""
  89. "Relay mode is off by default. If you would like to enable relay mode, add"
  90. " the following configuration to your "
  91. "`inventory/host_vars/matrix.example.com/vars.yml` file:"
  92. msgstr ""
  93. #: ../../../docs/configuring-playbook-mautrix-bridges.md:55
  94. msgid "**for all bridges with relay mode support**:"
  95. msgstr ""
  96. #: ../../../docs/configuring-playbook-mautrix-bridges.md:70
  97. msgid ""
  98. "You can only have one "
  99. "`matrix_mautrix_SERVICENAME_configuration_extension_yaml` definition in "
  100. "`vars.yml` per bridge, so if you need multiple pieces of configuration "
  101. "there, just merge them like this:"
  102. msgstr ""
  103. #: ../../../docs/configuring-playbook-mautrix-bridges.md:82
  104. msgid "Setting the bot's username"
  105. msgstr ""
  106. #: ../../../docs/configuring-playbook-mautrix-bridges.md:88
  107. msgid "Can be used to set the username for the bridge."
  108. msgstr ""
  109. #: ../../../docs/configuring-playbook-mautrix-bridges.md:90
  110. msgid "Discovering additional configuration options"
  111. msgstr ""
  112. #: ../../../docs/configuring-playbook-mautrix-bridges.md:92
  113. msgid ""
  114. "You may wish to look at `roles/custom/matrix-bridge-mautrix-"
  115. "SERVICENAME/templates/config.yaml.j2` and `roles/custom/matrix-bridge-"
  116. "mautrix-SERVICENAME/defaults/main.yml` to find other things you would "
  117. "like to configure."
  118. msgstr ""
  119. #: ../../../docs/configuring-playbook-mautrix-bridges.md:94
  120. msgid "Installing"
  121. msgstr ""
  122. #: ../../../docs/configuring-playbook-mautrix-bridges.md:96
  123. msgid ""
  124. "After configuring the playbook, run it with [playbook tags](playbook-"
  125. "tags.md) as below:"
  126. msgstr ""
  127. #: ../../../docs/configuring-playbook-mautrix-bridges.md:103
  128. msgid "**Notes**:"
  129. msgstr ""
  130. #: ../../../docs/configuring-playbook-mautrix-bridges.md:105
  131. msgid ""
  132. "The `ensure-matrix-users-created` playbook tag makes the playbook "
  133. "automatically create the bot's user account."
  134. msgstr ""
  135. #: ../../../docs/configuring-playbook-mautrix-bridges.md:107
  136. msgid ""
  137. "The shortcut commands with the [`just` program](just.md) are also "
  138. "available: `just install-all` or `just setup-all`"
  139. msgstr ""
  140. #: ../../../docs/configuring-playbook-mautrix-bridges.md:109
  141. msgid ""
  142. "`just install-all` is useful for maintaining your setup quickly ([2x-5x "
  143. "faster](../CHANGELOG.md#2x-5x-performance-improvements-in-playbook-"
  144. "runtime) than `just setup-all`) when its components remain unchanged. If "
  145. "you adjust your `vars.yml` to remove other components, you'd need to run "
  146. "`just setup-all`, or these components will still remain installed."
  147. msgstr ""
  148. #: ../../../docs/configuring-playbook-mautrix-bridges.md:111
  149. msgid "Set up Double Puppeting"
  150. msgstr ""
  151. #: ../../../docs/configuring-playbook-mautrix-bridges.md:113
  152. msgid ""
  153. "To set up [Double Puppeting](https://docs.mau.fi/bridges/general/double-"
  154. "puppeting.html) enable the [Appservice Double Puppet](configuring-"
  155. "playbook-appservice-double-puppet.md) service for this playbook."
  156. msgstr ""
  157. #: ../../../docs/configuring-playbook-mautrix-bridges.md:115
  158. msgid ""
  159. "The bridge automatically performs Double Puppeting if [Shared Secret Auth"
  160. "](configuring-playbook-shared-secret-auth.md) is configured and enabled "
  161. "on the server for this playbook by adding"
  162. msgstr ""
  163. #: ../../../docs/configuring-playbook-mautrix-bridges.md:121
  164. msgid ""
  165. "This is the recommended way of setting up Double Puppeting, as it's "
  166. "easier to accomplish, works for all your users automatically, and has "
  167. "less of a chance of breaking in the future."
  168. msgstr ""
  169. #: ../../../docs/configuring-playbook-mautrix-bridges.md:123
  170. msgid "Controlling the logging level"
  171. msgstr ""
  172. #: ../../../docs/configuring-playbook-mautrix-bridges.md:129
  173. msgid ""
  174. "to `vars.yml` to control the logging level, where you may replace WARN "
  175. "with one of the following to control the verbosity of the logs generated:"
  176. " TRACE, DEBUG, INFO, WARN, ERROR, or FATAL."
  177. msgstr ""
  178. #: ../../../docs/configuring-playbook-mautrix-bridges.md:131
  179. msgid ""
  180. "If you have issues with a service, and are requesting support, the higher"
  181. " levels of logging will generally be more helpful."
  182. msgstr ""
  183. #: ../../../docs/configuring-playbook-mautrix-bridges.md:133
  184. msgid "Usage"
  185. msgstr ""
  186. #: ../../../docs/configuring-playbook-mautrix-bridges.md:135
  187. msgid ""
  188. "To use the bridge, you need to start a chat with "
  189. "`@SERVICENAMEbot:example.com` (where `example.com` is your base domain, "
  190. "not the `matrix.` domain)."
  191. msgstr ""
  192. #: ../../../docs/configuring-playbook-mautrix-bridges.md:137
  193. msgid ""
  194. "Send `login` to the bridge bot to get started. You can learn more here "
  195. "about authentication from the bridge's official documentation on "
  196. "Authentication: "
  197. "https://docs.mau.fi/bridges/python/SERVICENAME/authentication.html"
  198. msgstr ""
  199. #: ../../../docs/configuring-playbook-mautrix-bridges.md:139
  200. msgid ""
  201. "If you run into trouble, check the [Troubleshooting](#troubleshooting) "
  202. "section below."
  203. msgstr ""
  204. #: ../../../docs/configuring-playbook-mautrix-bridges.md:141
  205. msgid "Troubleshooting"
  206. msgstr ""
  207. #: ../../../docs/configuring-playbook-mautrix-bridges.md:143
  208. msgid ""
  209. "For troubleshooting information with a specific bridge, please see the "
  210. "playbook documentation about it (some other document in in `docs/`) and "
  211. "the upstream ([mautrix](https://github.com/mautrix)) bridge documentation"
  212. " for that specific bridge."
  213. msgstr ""
  214. #: ../../../docs/configuring-playbook-mautrix-bridges.md:145
  215. msgid ""
  216. "Reporting bridge bugs should happen upstream, in the corresponding "
  217. "mautrix repository, not to us."
  218. msgstr ""