From 609b9e99ec64d476de4d015ecb326184d2940b0b Mon Sep 17 00:00:00 2001 From: John Livingston Date: Wed, 2 Aug 2023 17:05:37 +0200 Subject: [PATCH] Fix #100: API endpoint enhancement Bypassing Nginx for API call originated from Prosody (if Peertube >=5.1). Can also fix some Docker setup, which needed to set the prosody-peertube-uri settings. --- CHANGELOG.md | 1 + server/lib/prosody/config.ts | 26 +++++- .../en/documentation/admin/settings.md | 7 ++ .../installation/troubleshooting.md | 2 + support/documentation/po/livechat.ar.po | 18 ++++- support/documentation/po/livechat.ca.po | 18 ++++- support/documentation/po/livechat.cs.po | 18 ++++- support/documentation/po/livechat.de.po | 20 ++++- support/documentation/po/livechat.el.po | 18 ++++- support/documentation/po/livechat.en.pot | 20 ++++- support/documentation/po/livechat.eo.po | 18 ++++- support/documentation/po/livechat.es.po | 18 ++++- support/documentation/po/livechat.eu.po | 18 ++++- support/documentation/po/livechat.fa.po | 18 ++++- support/documentation/po/livechat.fi.po | 18 ++++- support/documentation/po/livechat.fr.po | 80 +++++++------------ support/documentation/po/livechat.gd.po | 18 ++++- support/documentation/po/livechat.gl.po | 18 ++++- support/documentation/po/livechat.hr.po | 18 ++++- support/documentation/po/livechat.hu.po | 18 ++++- support/documentation/po/livechat.is.po | 18 ++++- support/documentation/po/livechat.it.po | 18 ++++- support/documentation/po/livechat.ja.po | 19 ++++- support/documentation/po/livechat.kab.po | 18 ++++- support/documentation/po/livechat.nb.po | 18 ++++- support/documentation/po/livechat.nl.po | 18 ++++- support/documentation/po/livechat.nn.po | 18 ++++- support/documentation/po/livechat.oc.po | 18 ++++- support/documentation/po/livechat.pl.po | 18 ++++- support/documentation/po/livechat.pt.po | 18 ++++- support/documentation/po/livechat.ru.po | 18 ++++- support/documentation/po/livechat.sq.po | 18 ++++- support/documentation/po/livechat.sv.po | 18 ++++- support/documentation/po/livechat.th.po | 18 ++++- support/documentation/po/livechat.tok.po | 18 ++++- support/documentation/po/livechat.uk.po | 18 ++++- support/documentation/po/livechat.vi.po | 18 ++++- support/documentation/po/livechat.zh-Hans.po | 18 ++++- support/documentation/po/livechat.zh-Hant.po | 18 ++++- 39 files changed, 648 insertions(+), 85 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ae3cea6..b37b03a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ ### Minor changes and fixes * Some code refactoring. +* Bypassing Nginx for API call originated from Prosody (if Peertube >=5.1). Can also fix some Docker setup, which needed to set the prosody-peertube-uri settings. ## 7.2.1 diff --git a/server/lib/prosody/config.ts b/server/lib/prosody/config.ts index 0363e636..2e382756 100644 --- a/server/lib/prosody/config.ts +++ b/server/lib/prosody/config.ts @@ -174,10 +174,32 @@ async function getProsodyConfig (options: RegisterServerOptionsV5): Promise=5.1 has getServerListeningConfig to get relevant information. + const listeningConfig = options.peertubeHelpers.config.getServerListeningConfig() + if (listeningConfig?.port) { + if (!listeningConfig.hostname || listeningConfig.hostname === '::') { + logger.debug( + 'basePeertubeUrl for internal API: getServerListeningConfig.hostname==="' + + (listeningConfig.hostname ?? '') + + '", fallbacking on 127.0.0.1.' + ) + basePeertubeUrl = `http://127.0.0.1:${listeningConfig.port}` + } else { + logger.debug('basePeertubeUrl for internal API: using getServerListeningConfig') + basePeertubeUrl = `http://${listeningConfig.hostname}:${listeningConfig.port}` + } + } } if (!basePeertubeUrl) { + // In still nothing, just using the public url (it will get througt nginx, but will work) + logger.debug('basePeertubeUrl for internal API: using public Url') basePeertubeUrl = publicServerUrl } const baseApiUrl = basePeertubeUrl + getBaseRouterRoute(options) + 'api/' diff --git a/support/documentation/content/en/documentation/admin/settings.md b/support/documentation/content/en/documentation/admin/settings.md index 635952a3..803d495d 100644 --- a/support/documentation/content/en/documentation/admin/settings.md +++ b/support/documentation/content/en/documentation/admin/settings.md @@ -112,6 +112,13 @@ This settings should only be used if the plugin is broken, and waiting for a pat {{% livechat_label prosody_peertube_uri_description %}} +If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done. + +In last resort, it will use your Peertube public URI. +So, any API Call will go throught your Nginx server. +This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. +In such case, try changing the "{{% livechat_label prosody_peertube_uri_label %}}" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know). + ### {{% livechat_label prosody_muc_log_by_default_label %}} {{% livechat_label prosody_muc_log_by_default_description %}} diff --git a/support/documentation/content/en/documentation/installation/troubleshooting.md b/support/documentation/content/en/documentation/installation/troubleshooting.md index 7e489720..a1169f60 100644 --- a/support/documentation/content/en/documentation/installation/troubleshooting.md +++ b/support/documentation/content/en/documentation/installation/troubleshooting.md @@ -29,6 +29,8 @@ In some case (like for some Docker Peertube installation), the diagnostic tools In such case, try changing the "{{% livechat_label prosody_peertube_uri_label %}}" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know). +Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information. + ### Websocket If everything is fine in the diagnostic tools, but chat windows remains empty: it can be a Websocket issue. diff --git a/support/documentation/po/livechat.ar.po b/support/documentation/po/livechat.ar.po index 91ecf42f..69e7fc41 100644 --- a/support/documentation/po/livechat.ar.po +++ b/support/documentation/po/livechat.ar.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 19:41+0000\n" "Last-Translator: ButterflyOfFire \n" "Language-Team: Arabic \n" @@ -1552,6 +1552,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1801,6 +1812,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.ca.po b/support/documentation/po/livechat.ca.po index f3636762..d0582fc7 100644 --- a/support/documentation/po/livechat.ca.po +++ b/support/documentation/po/livechat.ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Catalan \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.cs.po b/support/documentation/po/livechat.cs.po index 596d5fc3..27e08d89 100644 --- a/support/documentation/po/livechat.cs.po +++ b/support/documentation/po/livechat.cs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Czech \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.de.po b/support/documentation/po/livechat.de.po index 3739081d..79bb24ea 100644 --- a/support/documentation/po/livechat.de.po +++ b/support/documentation/po/livechat.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-21 00:49+0000\n" "Last-Translator: Victor Hampel \n" "Language-Team: German \n" @@ -1603,6 +1603,17 @@ msgstr "Das Plugin wird mit einem AppImage geliefert, das zum Ausführen des [Pr msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "Diese Einstellung sollte nur verwendet werden, wenn das Plugin defekt ist und auf einen Patch wartet." +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1861,6 +1872,13 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +#, fuzzy +#| msgid "For the user documentation associated with these features, please refer to the [user documentation page](/peertube-plugin-livechat/documentation/user/xmpp_clients/)." +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "Die Benutzerdokumentation zu diesen Funktionen finden Sie auf der Seite [Benutzerdokumentation](/peertube-plugin-livechat/documentation/user/xmpp_clients/)." + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.el.po b/support/documentation/po/livechat.el.po index fbcd1d88..81fea538 100644 --- a/support/documentation/po/livechat.el.po +++ b/support/documentation/po/livechat.el.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Greek \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.en.pot b/support/documentation/po/livechat.en.pot index 21b6d10e..d707fe8c 100644 --- a/support/documentation/po/livechat.en.pot +++ b/support/documentation/po/livechat.en.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1738,6 +1738,18 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, markdown-text, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, markdown-text +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md #, markdown-text @@ -2014,6 +2026,12 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +#, markdown-text +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, markdown-text, no-wrap diff --git a/support/documentation/po/livechat.eo.po b/support/documentation/po/livechat.eo.po index f370cc3b..4e4f6ea4 100644 --- a/support/documentation/po/livechat.eo.po +++ b/support/documentation/po/livechat.eo.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Esperanto \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.es.po b/support/documentation/po/livechat.es.po index af56815d..e0a64099 100644 --- a/support/documentation/po/livechat.es.po +++ b/support/documentation/po/livechat.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-26 22:29+0000\n" "Last-Translator: Tony Simoes \n" "Language-Team: Spanish \n" @@ -1578,6 +1578,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1827,6 +1838,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.eu.po b/support/documentation/po/livechat.eu.po index b7f56b49..88b75535 100644 --- a/support/documentation/po/livechat.eu.po +++ b/support/documentation/po/livechat.eu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Basque \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.fa.po b/support/documentation/po/livechat.fa.po index f7a0ce63..73ab36c6 100644 --- a/support/documentation/po/livechat.fa.po +++ b/support/documentation/po/livechat.fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Persian \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.fi.po b/support/documentation/po/livechat.fi.po index e58ec2b7..7c577ad3 100644 --- a/support/documentation/po/livechat.fi.po +++ b/support/documentation/po/livechat.fi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Finnish \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.fr.po b/support/documentation/po/livechat.fr.po index f3b4e135..a3cc9070 100644 --- a/support/documentation/po/livechat.fr.po +++ b/support/documentation/po/livechat.fr.po @@ -7,11 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-27 11:21+0000\n" "Last-Translator: John Livingston \n" -"Language-Team: French \n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -342,14 +341,7 @@ msgstr "Lancer votre serveur de debug." #. type: Plain text #: support/documentation/content/en/contributing/develop/_index.md msgid "For Prosody to connect to the debugger, call the API `http://your_instance.tld/plugins/livechat/router/api/restart_prosody?debugger=true`. This call does not need any authentication. It can be done from a command line, for example with `curl http://your_instance.tld/plugins/livechat/router/api/restart_prosody?debugger=true`. You can even configure your debug server to launch this request automatically." -msgstr "" -"Pour que Prosody se connecte au debugger, appelez l'API " -"`http://votre_instance.tld/plugins/livechat/router/api/" -"restart_prosody?debugger=true`. Cet appel n'a pas besoin d'authentification. " -"Il peut se faire depuis une ligne de commande, par exemple avec `curl " -"http://votre_instance.tld/plugins/livechat/router/api/" -"restart_prosody?debugger=true`. Vous pouvez même configurer votre serveur de " -"debuggage pour lancer cette commande automatiquement." +msgstr "Pour que Prosody se connecte au debugger, appelez l'API `http://votre_instance.tld/plugins/livechat/router/api/restart_prosody?debugger=true`. Cet appel n'a pas besoin d'authentification. Il peut se faire depuis une ligne de commande, par exemple avec `curl http://votre_instance.tld/plugins/livechat/router/api/restart_prosody?debugger=true`. Vous pouvez même configurer votre serveur de debuggage pour lancer cette commande automatiquement." #. type: Plain text #: support/documentation/content/en/contributing/develop/_index.md @@ -938,10 +930,7 @@ msgstr "Utiliser Matterbridge" #. type: Plain text #: support/documentation/content/en/documentation/admin/advanced/matterbridge.md msgid "Here is a tutorial to use Matterbridge with the plugin: " -msgstr "" -"Voici un tutoriel sur comment utiliser Matterbridge avec ce plugin : " -"" +msgstr "Voici un tutoriel sur comment utiliser Matterbridge avec ce plugin : " #. type: Yaml Front Matter Hash Value: description #: support/documentation/content/en/documentation/admin/advanced/xmpp_clients.md @@ -1019,14 +1008,7 @@ msgstr "Ensuite, le champs «Interfaces réseau pour les connexions serveur vers #. type: Plain text #: support/documentation/content/en/documentation/admin/advanced/xmpp_clients.md msgid "For the \"Certificate folder\" setting, you can leave it empty. In this case, the plugin will automatically generate self-signed certificates. Some XMPP servers may refuse to connect, depending on their configuration. In this case, you can indicate here a path on the server, in which you must place certificates to be used by the module. It is up to you to generate and renew them. See bellow for more information." -msgstr "" -"Pour le champs «Dossiers des certificats», vous pouvez le laisser vide. Dans " -"ce cas là, le plugin va générer automatiquement des certificats auto-signés. " -"Il se pourrait que certains serveurs XMPP refusent de se connecter, cela " -"dépendant de leur paramétrage. Dans ce cas, vous pouvez indiquer ici un " -"chemin sur le serveur, dans lequel vous placerez des certificats à utiliser " -"par le module. Charge à vous de les générer et de les renouveller. Voir plus " -"loin pour une explication plus détaillée." +msgstr "Pour le champs «Dossiers des certificats», vous pouvez le laisser vide. Dans ce cas là, le plugin va générer automatiquement des certificats auto-signés. Il se pourrait que certains serveurs XMPP refusent de se connecter, cela dépendant de leur paramétrage. Dans ce cas, vous pouvez indiquer ici un chemin sur le serveur, dans lequel vous placerez des certificats à utiliser par le module. Charge à vous de les générer et de les renouveller. Voir plus loin pour une explication plus détaillée." #. type: Title ### #: support/documentation/content/en/documentation/admin/advanced/xmpp_clients.md @@ -1186,10 +1168,7 @@ msgstr "Tout d'abord, on va devoir créer un certificat pour le sous-domain `roo #. type: Plain text #: support/documentation/content/en/documentation/admin/advanced/xmpp_clients.md msgid "So start by setting up a DNS entry for `room.your_instance.tld`, which points to your server. You can use a CNAME entry (or an A entry and a AAAA entry)." -msgstr "" -"Commencez donc par paramétrer une entrée DNS pour `room.votre_instance.tld`, " -"qui pointe sur votre serveur. Vous pouvez tout à fait faire une entrée CNAME " -"(ou une entrée A et une entrée AAAA)." +msgstr "Commencez donc par paramétrer une entrée DNS pour `room.votre_instance.tld`, qui pointe sur votre serveur. Vous pouvez tout à fait faire une entrée CNAME (ou une entrée A et une entrée AAAA)." #. type: Plain text #: support/documentation/content/en/documentation/admin/advanced/xmpp_clients.md @@ -1643,6 +1622,19 @@ msgstr "Le plugin est livré avec une AppImage qui est utilisée pour exécuter msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "Ce paramètre ne devrait être utilisé que si le plugin est cassé et en attente d'un correctif." +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, fuzzy +#| msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "Dans ce cas, essayez de changer le paramètre \"{{% livechat_label prosody_peertube_uri_label %}}\", en mettant `http://127.0.0.1:9000` (si c'est bien le port 9000 qui est utilisé par votre Peertube, demandez aux administrateur⋅rices de votre instance si vous ne savez pas)." + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1704,8 +1696,7 @@ msgid "" "If you are using an older version, Chat Federation could be broken, and it could have some unexpected behaviour.\n" msgstr "" "Note : la version de Prosody devrait être supérieure ou égale à 0.12.0.\n" -"Si vous utilisez une version plus ancienne, il pourrait y avoir des bugs sur " -"la fédération du tchat, et d'autres comportements inattendus.\n" +"Si vous utilisez une version plus ancienne, il pourrait y avoir des bugs sur la fédération du tchat, et d'autres comportements inattendus.\n" #. type: Plain text #: support/documentation/content/en/documentation/installation/cpu_compatibility.md @@ -1898,6 +1889,13 @@ msgstr "Dans certains cas (comme par exemple les installation Peertube sous Dock msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "Dans ce cas, essayez de changer le paramètre \"{{% livechat_label prosody_peertube_uri_label %}}\", en mettant `http://127.0.0.1:9000` (si c'est bien le port 9000 qui est utilisé par votre Peertube, demandez aux administrateur⋅rices de votre instance si vous ne savez pas)." +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +#, fuzzy +#| msgid "Please refer to the [moderation documentation](/peertube-plugin-livechat/documentation/user/moderation)." +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "Veuillez vous référer à la [documentation de modération](/peertube-plugin-livechat/fr/documentation/user/moderation)." + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap @@ -2300,9 +2298,7 @@ msgstr "Vous pouvez par exemple définir la valeur par défaut, et la valeur max #. type: Plain text #: support/documentation/content/en/documentation/user/streamers.md msgid "You can also uncheck \"enable archiving\": if unchecked, messages will be pruned if the server restarts." -msgstr "" -"Vous pouvez aussi décocher «activer l'archivage» : si décoché, les messages " -"seront nettoyés si le serveur redémarre." +msgstr "Vous pouvez aussi décocher «activer l'archivage» : si décoché, les messages seront nettoyés si le serveur redémarre." #. type: Plain text #: support/documentation/content/en/documentation/user/streamers.md @@ -2318,13 +2314,7 @@ msgstr "Détruire le contenu du tchat" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers.md msgid "If you want to delete the chat content, [open the chat in fullscreen](/peertube-plugin-livechat/documentation/user/viewers), then open the top menu and click on \"Destroy\". A popup will open, asking a confirmation. To avoid errors, the popup will ask you the \"XMPP address\" of the chat room. This address can be obtain using the \"Details\" menu in the top menu." -msgstr "" -"Si vous voulez détruire le contenu du tchat, [ouvrez le tchat en plein écran" -"](/peertube-plugin-livechat/fr/documentation/user/viewers), ouvrez le menu " -"du haut et cliquez sur «Détruire». Une popup va s'ouvrir, demandant " -"confirmation. Pour éviter les erreurs, la popup va vous demander «l'adresse " -"XMPP» du salon. Cette adresse peut être obtenue via l'entrée «Détails» du " -"menu haut." +msgstr "Si vous voulez détruire le contenu du tchat, [ouvrez le tchat en plein écran](/peertube-plugin-livechat/fr/documentation/user/viewers), ouvrez le menu du haut et cliquez sur «Détruire». Une popup va s'ouvrir, demandant confirmation. Pour éviter les erreurs, la popup va vous demander «l'adresse XMPP» du salon. Cette adresse peut être obtenue via l'entrée «Détails» du menu haut." #. type: Plain text #: support/documentation/content/en/documentation/user/streamers.md @@ -2411,13 +2401,7 @@ msgstr "Si vous êtes connecté avec votre compte Peertube, vous allez automatiq #. type: Plain text #: support/documentation/content/en/documentation/user/viewers.md msgid "If you are watching a live on an instance on which you have no account, but you have an account on another instance: if the livechat plugin is installed on both instances, it is possible to join the chat using your account. To do so, just open the video on your instance (you can for example copy/paste the video url in the search field of your instance)." -msgstr "" -"Si vous regardez un direct sur une instance où vous n'avez pas de compte, " -"mais que vous avez un compte Peertube sur une autre instance : sous réserve " -"que le plugin livechat soit installé sur les deux instances, vous pouvez " -"rejoindre le tchat avec votre compte. Pour cela, ouvrez la vidéo sur votre " -"instance (vous pouvez par exemple copier/coller l'url de la vidéo dans le " -"champs de recherche de votre instance)." +msgstr "Si vous regardez un direct sur une instance où vous n'avez pas de compte, mais que vous avez un compte Peertube sur une autre instance : sous réserve que le plugin livechat soit installé sur les deux instances, vous pouvez rejoindre le tchat avec votre compte. Pour cela, ouvrez la vidéo sur votre instance (vous pouvez par exemple copier/coller l'url de la vidéo dans le champs de recherche de votre instance)." #. type: Title ## #: support/documentation/content/en/documentation/user/viewers.md @@ -2637,9 +2621,7 @@ msgstr "Par défaut, le chat est affiché à côté de la vidéo. Mais vous pouv #. type: Plain text #: support/documentation/content/en/intro/_index.md msgid "You can test the livechat plugin with this [demo page](https://www.yiny.org/w/399a8d13-d4cf-4ef2-b843-98530a8ccbae)." -msgstr "" -"Vous pouvez tester le plugin livechat via cette [page de démo](https://www." -"yiny.org/w/399a8d13-d4cf-4ef2-b843-98530a8ccbae)." +msgstr "Vous pouvez tester le plugin livechat via cette [page de démo](https://www.yiny.org/w/399a8d13-d4cf-4ef2-b843-98530a8ccbae)." #. type: Title ## #: support/documentation/content/en/intro/_index.md diff --git a/support/documentation/po/livechat.gd.po b/support/documentation/po/livechat.gd.po index 96847146..d8492a3e 100644 --- a/support/documentation/po/livechat.gd.po +++ b/support/documentation/po/livechat.gd.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Gaelic \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.gl.po b/support/documentation/po/livechat.gl.po index 13fd3e4b..216175f7 100644 --- a/support/documentation/po/livechat.gl.po +++ b/support/documentation/po/livechat.gl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Galician \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.hr.po b/support/documentation/po/livechat.hr.po index 38cdbd5e..ca82050d 100644 --- a/support/documentation/po/livechat.hr.po +++ b/support/documentation/po/livechat.hr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Croatian \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.hu.po b/support/documentation/po/livechat.hu.po index 402576df..4ab9a227 100644 --- a/support/documentation/po/livechat.hu.po +++ b/support/documentation/po/livechat.hu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hungarian \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.is.po b/support/documentation/po/livechat.is.po index ba411d89..376ba8df 100644 --- a/support/documentation/po/livechat.is.po +++ b/support/documentation/po/livechat.is.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Icelandic \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.it.po b/support/documentation/po/livechat.it.po index de5b39ad..e812367b 100644 --- a/support/documentation/po/livechat.it.po +++ b/support/documentation/po/livechat.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 14:21+0000\n" "Last-Translator: John Livingston \n" "Language-Team: Italian \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.ja.po b/support/documentation/po/livechat.ja.po index 210150c0..c6c11e9b 100644 --- a/support/documentation/po/livechat.ja.po +++ b/support/documentation/po/livechat.ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 14:21+0000\n" "Last-Translator: John Livingston \n" "Language-Team: Japanese \n" @@ -1562,6 +1562,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1815,6 +1826,12 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +#, fuzzy +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "PeerTube ライブチャットプラグイン" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.kab.po b/support/documentation/po/livechat.kab.po index 8b548656..e4504702 100644 --- a/support/documentation/po/livechat.kab.po +++ b/support/documentation/po/livechat.kab.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Kabyle \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.nb.po b/support/documentation/po/livechat.nb.po index a81e5a4e..7821e923 100644 --- a/support/documentation/po/livechat.nb.po +++ b/support/documentation/po/livechat.nb.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Norwegian Bokmål \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.nl.po b/support/documentation/po/livechat.nl.po index 1aa82348..fb33bdab 100644 --- a/support/documentation/po/livechat.nl.po +++ b/support/documentation/po/livechat.nl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Dutch \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.nn.po b/support/documentation/po/livechat.nn.po index 01910559..d7034f91 100644 --- a/support/documentation/po/livechat.nn.po +++ b/support/documentation/po/livechat.nn.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Norwegian Nynorsk \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.oc.po b/support/documentation/po/livechat.oc.po index 700173f6..67aacdc4 100644 --- a/support/documentation/po/livechat.oc.po +++ b/support/documentation/po/livechat.oc.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Occitan \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.pl.po b/support/documentation/po/livechat.pl.po index 256b6a52..099af1d8 100644 --- a/support/documentation/po/livechat.pl.po +++ b/support/documentation/po/livechat.pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Polish \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.pt.po b/support/documentation/po/livechat.pt.po index 5cb18d16..971977c1 100644 --- a/support/documentation/po/livechat.pt.po +++ b/support/documentation/po/livechat.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Portuguese \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.ru.po b/support/documentation/po/livechat.ru.po index d15153e7..377c9997 100644 --- a/support/documentation/po/livechat.ru.po +++ b/support/documentation/po/livechat.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Russian \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.sq.po b/support/documentation/po/livechat.sq.po index e855138b..269640c0 100644 --- a/support/documentation/po/livechat.sq.po +++ b/support/documentation/po/livechat.sq.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Albanian \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.sv.po b/support/documentation/po/livechat.sv.po index dad23b2f..a4356f8b 100644 --- a/support/documentation/po/livechat.sv.po +++ b/support/documentation/po/livechat.sv.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.th.po b/support/documentation/po/livechat.th.po index 4d7591f1..ab48bc61 100644 --- a/support/documentation/po/livechat.th.po +++ b/support/documentation/po/livechat.th.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Thai \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.tok.po b/support/documentation/po/livechat.tok.po index fe45f595..ecb6dbb1 100644 --- a/support/documentation/po/livechat.tok.po +++ b/support/documentation/po/livechat.tok.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Toki Pona \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.uk.po b/support/documentation/po/livechat.uk.po index 1d1dd3d2..4f6db4a3 100644 --- a/support/documentation/po/livechat.uk.po +++ b/support/documentation/po/livechat.uk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Ukrainian \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.vi.po b/support/documentation/po/livechat.vi.po index 0b6042c0..7cf41db3 100644 --- a/support/documentation/po/livechat.vi.po +++ b/support/documentation/po/livechat.vi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Vietnamese \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.zh-Hans.po b/support/documentation/po/livechat.zh-Hans.po index fb3c2748..026a22a9 100644 --- a/support/documentation/po/livechat.zh-Hans.po +++ b/support/documentation/po/livechat.zh-Hans.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Simplified) \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap diff --git a/support/documentation/po/livechat.zh-Hant.po b/support/documentation/po/livechat.zh-Hant.po index adba1854..3d68543f 100644 --- a/support/documentation/po/livechat.zh-Hant.po +++ b/support/documentation/po/livechat.zh-Hant.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2023-07-27 13:12+0200\n" +"POT-Creation-Date: 2023-08-02 17:04+0200\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Traditional) \n" @@ -1551,6 +1551,17 @@ msgstr "" msgid "This settings should only be used if the plugin is broken, and waiting for a patch." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, no-wrap +msgid "If this settings is left empty, and you are using Peertube >= 5.1 or later, the plugin will use values from your Peertube configuration file to guess on which interface and port request have to be done.\n" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "In last resort, it will use your Peertube public URI. So, any API Call will go throught your Nginx server. This could fail in some case: for example if you are in a Docker container, where the public hostname does not resolve to the correct IP. In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "This setting enable XMPP clients to connect to the built-in Prosody server. For now, this option **only allows connections from localhost clients**." @@ -1800,6 +1811,11 @@ msgstr "" msgid "In such case, try changing the \"{{% livechat_label prosody_peertube_uri_label %}}\" settings, by setting `http://127.0.0.1:9000` (assuming 9000 is the port on which Peertube listen, ask your instance administrators if you don't know)." msgstr "" +#. type: Plain text +#: support/documentation/content/en/documentation/installation/troubleshooting.md +msgid "Check the help for [this settings](/peertube-plugin-livechat/documentation/admin/settings/) for more information." +msgstr "" + #. type: Title ### #: support/documentation/content/en/documentation/installation/troubleshooting.md #, no-wrap