# HG changeset patch # User Emmanuel Gil Peyrot # Date 1590318837 -7200 # Node ID 78c873be0caa68dd834f7ddd71069ff85933bf25 # Parent 6d861d881b96496cf72d0b0212bcb2fa50815914 Remove Prosody specifics in strings and namespaces. diff --git a/index.xhtml b/index.xhtml --- a/index.xhtml +++ b/index.xhtml @@ -10,8 +10,8 @@ - {% trans 'Prosody IM account configuration' %} - + {% trans 'XMPP account manager' %} + diff --git a/locale/django.pot b/locale/django.pot --- a/locale/django.pot +++ b/locale/django.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-24 12:38+0200\n" +"POT-Creation-Date: 2020-05-24 13:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -27,7 +27,7 @@ msgstr "" msgid "Log in" msgstr "" -msgid "Prosody IM account configuration" +msgid "XMPP account manager" msgstr "" msgid "Enter your JID (or XMPP address), on the form “you@your-server.tld”" diff --git a/locale/en/LC_MESSAGES/django.po b/locale/en/LC_MESSAGES/django.po --- a/locale/en/LC_MESSAGES/django.po +++ b/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-24 12:38+0200\n" +"POT-Creation-Date: 2020-05-24 13:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -28,7 +28,7 @@ msgstr "" msgid "Log in" msgstr "" -msgid "Prosody IM account configuration" +msgid "XMPP account manager" msgstr "" msgid "Enter your JID (or XMPP address), on the form “you@your-server.tld”" diff --git a/locale/fr/LC_MESSAGES/django.po b/locale/fr/LC_MESSAGES/django.po --- a/locale/fr/LC_MESSAGES/django.po +++ b/locale/fr/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-24 12:38+0200\n" +"POT-Creation-Date: 2020-05-24 13:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -28,7 +28,7 @@ msgstr "" msgid "Log in" msgstr "" -msgid "Prosody IM account configuration" +msgid "XMPP account manager" msgstr "" msgid "Enter your JID (or XMPP address), on the form “you@your-server.tld”" diff --git a/mam.js b/mam.js --- a/mam.js +++ b/mam.js @@ -120,7 +120,7 @@ function initMAM(connection) { download_button.addEventListener('click', function (evt) { // TODO: extend XEP-0227 with MAM support. - const messages = document.createElementNS('https://prosody.im/protocol/pie-mam', 'message-archive'); + const messages = document.createElementNS('https://linkmauve.fr/protocol/pie-mam', 'message-archive'); for (let result of mam_data) messages.appendChild(result); const blob = new Blob([messages.outerHTML], {type: 'text/xml'});