Mercurial > xmpp-account-manager
changeset 61:78c873be0caa
Remove Prosody specifics in strings and namespaces.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Sun, 24 May 2020 13:13:57 +0200 |
parents | 6d861d881b96 |
children | 46ca1aa08146 |
files | index.xhtml locale/django.pot locale/en/LC_MESSAGES/django.po locale/fr/LC_MESSAGES/django.po mam.js |
diffstat | 5 files changed, 9 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/index.xhtml +++ b/index.xhtml @@ -10,8 +10,8 @@ <head> <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"/> - <title>{% trans 'Prosody IM account configuration' %}</title> - <link rel="canonical" content-type="text/html" href="https://prosody.im/index"/> + <title>{% trans 'XMPP account manager' %}</title> + <link rel="canonical" content-type="text/html" href="https://linkmauve.fr/xmpp-account-manager/"/> <link rel="stylesheet" href="share/bootstrap/css/bootstrap.min.css"/> <link rel="stylesheet" href="prosody.css"/> </head>
--- 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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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”"
--- 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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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”"
--- 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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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”"
--- 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'});