From 5f084e01c5e2affab14ea6f418bd42786d1182f6 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sat, 10 Apr 2021 20:58:20 +0200 Subject: [PATCH 1/3] Correct Prosody verison numbers Despite the common confusion, there's no prosody version 11, the latest version at the time of this writing is 0.11.8 --- documentation/tutorials/prosody.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/tutorials/prosody.md b/documentation/tutorials/prosody.md index bbed2381..f85f0981 100644 --- a/documentation/tutorials/prosody.md +++ b/documentation/tutorials/prosody.md @@ -93,7 +93,7 @@ Component "room.${PEERTUBE_DOMAIN}" "muc" -- admins = { "admin@your_xmpp_provider_domain" } -- if you want room persistence, uncomment these lines - -- (requires prosody>=11, for older version there is the mam_muc module) + -- (requires prosody>=0.11, for older version there is the mam_muc module) -- modules_enabled = { "muc_mam" } -- muc_log_by_default = true -- muc_log_presences = true @@ -128,7 +128,7 @@ If you want to activate room persistence (chat room content will be kept even if there is no more users), uncomment the lines in the config file, and change the `muc_log_expires_after` parameter as you want. Please refer to the [muc_mam module documentation](https://prosody.im/doc/modules/mod_muc_mam). -This requires Prosody >= 11. For older version, see +This requires Prosody >= 0.11. For older version, see [mam_muc](https://modules.prosody.im/mod_mam_muc.html). We have now to activate this configuration file: From 1fcf7bca36fa673df57ff647e2a5c282175bd781 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Miko=C5=82ajczak?= Date: Sun, 11 Apr 2021 18:31:20 +0200 Subject: [PATCH 2/3] Create pl.json --- languages/pl.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 languages/pl.json diff --git a/languages/pl.json b/languages/pl.json new file mode 100644 index 00000000..08919f02 --- /dev/null +++ b/languages/pl.json @@ -0,0 +1,5 @@ +{ + "Open chat": "Otwórz czat", + "Open chat in a new window": "Otwórz czat w nowym oknie", + "Close chat": "Zamknij czat" +} From ef77a37249d4d2961191b7381ca803678767770e Mon Sep 17 00:00:00 2001 From: John Livingston Date: Mon, 12 Apr 2021 14:37:32 +0200 Subject: [PATCH 3/3] Adding translation files in package.json. --- package.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 6af9077b..29e2ec8e 100644 --- a/package.json +++ b/package.json @@ -72,6 +72,10 @@ "images": "dist/client/images/" }, "translations": { - "fr-FR": "./languages/fr.json" + "ca-ES": "./languages/ca.json", + "fr-FR": "./languages/fr.json", + "eo": "./languages/eo.json", + "eu-ES": "./languages/eu.json", + "pl-PL": "./languages/pl.json" } }