From b8db48641073a02b86d2d399efb684f7794746f2 Mon Sep 17 00:00:00 2001 From: John Livingston Date: Tue, 6 Aug 2024 17:54:07 +0200 Subject: [PATCH] Message search results: display original nickname if has changed. --- .../muc-mam-search-occupant-view.js | 5 ++- .../templates/muc-mam-search-message.js | 1 + .../templates/muc-mam-search-occupant.js | 9 ++++- conversejs/loc.keys.js | 3 +- languages/en.yml | 1 + .../user/streamers/moderation.md | 6 +++ support/documentation/po/livechat.ar.po | 34 +++++++++++----- support/documentation/po/livechat.ca.po | 34 +++++++++++----- support/documentation/po/livechat.cs.po | 34 +++++++++++----- support/documentation/po/livechat.de.po | 38 +++++++++++++----- support/documentation/po/livechat.el.po | 34 +++++++++++----- support/documentation/po/livechat.en.pot | 40 +++++++++++++------ support/documentation/po/livechat.eo.po | 34 +++++++++++----- support/documentation/po/livechat.es.po | 34 +++++++++++----- support/documentation/po/livechat.eu.po | 34 +++++++++++----- support/documentation/po/livechat.fa.po | 34 +++++++++++----- support/documentation/po/livechat.fi.po | 34 +++++++++++----- support/documentation/po/livechat.fr.po | 34 +++++++++++----- support/documentation/po/livechat.gd.po | 34 +++++++++++----- support/documentation/po/livechat.gl.po | 34 +++++++++++----- support/documentation/po/livechat.hr.po | 34 +++++++++++----- support/documentation/po/livechat.hu.po | 34 +++++++++++----- support/documentation/po/livechat.is.po | 34 +++++++++++----- support/documentation/po/livechat.it.po | 34 +++++++++++----- support/documentation/po/livechat.ja.po | 34 +++++++++++----- support/documentation/po/livechat.kab.po | 34 +++++++++++----- support/documentation/po/livechat.nb.po | 34 +++++++++++----- support/documentation/po/livechat.nl.po | 34 +++++++++++----- support/documentation/po/livechat.nn.po | 34 +++++++++++----- support/documentation/po/livechat.oc.po | 34 +++++++++++----- support/documentation/po/livechat.pl.po | 34 +++++++++++----- support/documentation/po/livechat.pt.po | 34 +++++++++++----- support/documentation/po/livechat.ru.po | 34 +++++++++++----- support/documentation/po/livechat.sq.po | 34 +++++++++++----- support/documentation/po/livechat.sv.po | 34 +++++++++++----- support/documentation/po/livechat.th.po | 34 +++++++++++----- support/documentation/po/livechat.tok.po | 34 +++++++++++----- support/documentation/po/livechat.tr.po | 32 ++++++++++----- support/documentation/po/livechat.uk.po | 34 +++++++++++----- support/documentation/po/livechat.vi.po | 34 +++++++++++----- support/documentation/po/livechat.zh-Hans.po | 34 +++++++++++----- support/documentation/po/livechat.zh-Hant.po | 34 +++++++++++----- 42 files changed, 856 insertions(+), 401 deletions(-) diff --git a/conversejs/custom/plugins/mam-search/components/muc-mam-search-occupant-view.js b/conversejs/custom/plugins/mam-search/components/muc-mam-search-occupant-view.js index c88f60dd..85251ff5 100644 --- a/conversejs/custom/plugins/mam-search/components/muc-mam-search-occupant-view.js +++ b/conversejs/custom/plugins/mam-search/components/muc-mam-search-occupant-view.js @@ -11,7 +11,8 @@ import '../styles/muc-mam-search-occupant.scss' export default class MUCMamSearchOccupantView extends CustomElement { static get properties () { return { - model: { type: Object, attribute: true } + model: { type: Object, attribute: true }, + message: { type: Object, attribute: true } // optional message. } } @@ -20,7 +21,7 @@ export default class MUCMamSearchOccupantView extends CustomElement { } render () { - return tplMucMamSearchOccupant(this, this.model) + return tplMucMamSearchOccupant(this, this.model, this.message) } } diff --git a/conversejs/custom/plugins/mam-search/templates/muc-mam-search-message.js b/conversejs/custom/plugins/mam-search/templates/muc-mam-search-message.js index 48f5b5a5..5c9596c1 100644 --- a/conversejs/custom/plugins/mam-search/templates/muc-mam-search-message.js +++ b/conversejs/custom/plugins/mam-search/templates/muc-mam-search-message.js @@ -20,6 +20,7 @@ export function tplMucMamSearchMessage (el, mucModel, searchOccupantModel, messa ? html` ` : '' } diff --git a/conversejs/custom/plugins/mam-search/templates/muc-mam-search-occupant.js b/conversejs/custom/plugins/mam-search/templates/muc-mam-search-occupant.js index 408dcb18..51c5ef35 100644 --- a/conversejs/custom/plugins/mam-search/templates/muc-mam-search-occupant.js +++ b/conversejs/custom/plugins/mam-search/templates/muc-mam-search-occupant.js @@ -7,7 +7,7 @@ import { api } from '@converse/headless' import { getAuthorStyle } from '../../../../src/utils/color.js' import { __ } from 'i18n' -export function tplMucMamSearchOccupant (el, occupant) { +export function tplMucMamSearchOccupant (el, occupant, message) { const authorStyle = getAuthorStyle(occupant) const jid = occupant.get('jid') const occupantId = occupant.get('occupant_id') @@ -26,6 +26,13 @@ export function tplMucMamSearchOccupant (el, occupant) { ${occupant.getDisplayName()} ` diff --git a/conversejs/loc.keys.js b/conversejs/loc.keys.js index 8cdd6edc..ed3ebe95 100644 --- a/conversejs/loc.keys.js +++ b/conversejs/loc.keys.js @@ -61,7 +61,8 @@ const locKeys = [ 'moderator_note_filters', 'moderator_note_original_nick', 'search_occupant_message', - 'message_search' + 'message_search', + 'message_search_original_nick' ] module.exports = locKeys diff --git a/languages/en.yml b/languages/en.yml index 5601930c..6240f545 100644 --- a/languages/en.yml +++ b/languages/en.yml @@ -613,3 +613,4 @@ moderator_note_original_nick: 'Nickname of the participant at the time of the no search_occupant_message: 'Search all messages' message_search: 'Message search' +message_search_original_nick: Nickname of the participant when the message was sent diff --git a/support/documentation/content/en/documentation/user/streamers/moderation.md b/support/documentation/content/en/documentation/user/streamers/moderation.md index b778e53b..de083e03 100644 --- a/support/documentation/content/en/documentation/user/streamers/moderation.md +++ b/support/documentation/content/en/documentation/user/streamers/moderation.md @@ -105,6 +105,12 @@ To do so, you have several ways: To have more space and better readability, open the chat in full-page mode. {{% /notice %}} +In the search results, there are several informations that are shown at the right of the participant nickname: + +* if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown +* you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant +* you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant + The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html). diff --git a/support/documentation/po/livechat.ar.po b/support/documentation/po/livechat.ar.po index c0a2e77d..baa6727f 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2024-01-17 11:38+0000\n" "Last-Translator: ButterflyOfFire \n" "Language-Team: Arabic \n" @@ -3398,6 +3398,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3643,16 +3665,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.ca.po b/support/documentation/po/livechat.ca.po index 93e17028..263ea036 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Catalan \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.cs.po b/support/documentation/po/livechat.cs.po index ba9ee2c1..1bf8fd01 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Czech \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.de.po b/support/documentation/po/livechat.de.po index 242a9c0e..662d492c 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2024-08-06 09:45+0000\n" "Last-Translator: Victor Hampel \n" "Language-Team: German \n" @@ -3473,6 +3473,32 @@ msgstr "![Nachrichtenverlaufssuche](/peertube-plugin-livechat/images/message_sea msgid "To have more space and better readability, open the chat in full-page mode." msgstr "Um mehr Platz und eine bessere Lesbarkeit zu erhalten, öffnen Sie den Chat im neuen Fenster." +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#, fuzzy +#| msgid "When you filters notes on a participant, there are several informations that are shown at the right of the participant nickname:" +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "Wenn Sie Notizen zu einem Teilnehmer filtern, werden rechts neben dem Spitznamen des Teilnehmers verschiedene Informationen angezeigt:" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#, fuzzy +#| msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "wenn der aktuelle Spitzname nicht mit dem Spitznamen übereinstimmt, unter dem Sie die Notiz erstellt haben, wird der ursprüngliche Spitzname angezeigt" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "sehen Sie die [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) des Teilnehmers" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "Sie sehen auch die [occupant-id](https://xmpp.org/extensions/xep-0421.html) des Teilnehmers" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3722,16 +3748,6 @@ msgstr "Wenn Sie Notizen zu einem Teilnehmer filtern, werden rechts neben dem Sp msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "wenn der aktuelle Spitzname nicht mit dem Spitznamen übereinstimmt, unter dem Sie die Notiz erstellt haben, wird der ursprüngliche Spitzname angezeigt" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "sehen Sie die [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) des Teilnehmers" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "Sie sehen auch die [occupant-id](https://xmpp.org/extensions/xep-0421.html) des Teilnehmers" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.el.po b/support/documentation/po/livechat.el.po index a513c7c2..07ceb466 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Greek \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.en.pot b/support/documentation/po/livechat.en.pot index 801b7a94..bafec9b4 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -3828,6 +3828,32 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#, markdown-text +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#, markdown-text +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +#, markdown-text +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +#, markdown-text +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md #, markdown-text @@ -4108,18 +4134,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -#, markdown-text -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -#, markdown-text -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md #, markdown-text diff --git a/support/documentation/po/livechat.eo.po b/support/documentation/po/livechat.eo.po index 2b870cc8..8d59eebf 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Esperanto \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.es.po b/support/documentation/po/livechat.es.po index 7e9c6b0f..ed7dc4b7 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2024-04-16 21:38+0000\n" "Last-Translator: rnek0 \n" "Language-Team: Spanish \n" @@ -3429,6 +3429,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3674,16 +3696,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.eu.po b/support/documentation/po/livechat.eu.po index 5362d31d..d14219b3 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Basque \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.fa.po b/support/documentation/po/livechat.fa.po index 6e744c77..eb00d6ec 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Persian \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.fi.po b/support/documentation/po/livechat.fi.po index 8292fce4..82df130f 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Finnish \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.fr.po b/support/documentation/po/livechat.fr.po index 326caeef..f0d9f658 100644 --- a/support/documentation/po/livechat.fr.po +++ b/support/documentation/po/livechat.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2024-07-18 15:05+0000\n" "Last-Translator: John Livingston \n" "Language-Team: French \n" @@ -3496,6 +3496,28 @@ msgstr "![Début du sondage](/peertube-plugin-livechat/images/polls_start.png?cl msgid "To have more space and better readability, open the chat in full-page mode." msgstr "Pour avoir plus d'espace et une meilleure lisibilité, ouvrez le tchat en mode pleine page." +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3770,16 +3792,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.gd.po b/support/documentation/po/livechat.gd.po index cbbdbac2..682b5aa3 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Gaelic \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.gl.po b/support/documentation/po/livechat.gl.po index 0b98ab57..82f19d84 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Galician \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.hr.po b/support/documentation/po/livechat.hr.po index 307ea7dd..32311e6f 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2024-07-19 17:45+0000\n" "Last-Translator: Milo Ivir \n" "Language-Team: Croatian \n" @@ -3398,6 +3398,28 @@ msgstr "![Timer odgode moderiranja](/peertube-plugin-livechat/images/moderation_ msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3654,16 +3676,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.hu.po b/support/documentation/po/livechat.hu.po index 8f7cd7f5..a3e3f1c1 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hungarian \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.is.po b/support/documentation/po/livechat.is.po index 43611cc2..3eb08dd0 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Icelandic \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.it.po b/support/documentation/po/livechat.it.po index 6f69b0f5..ca9f044f 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 14:21+0000\n" "Last-Translator: John Livingston \n" "Language-Team: Italian \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.ja.po b/support/documentation/po/livechat.ja.po index 588f5d7e..27175141 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2024-03-10 20:38+0000\n" "Last-Translator: \"T.S\" \n" "Language-Team: Japanese \n" @@ -3497,6 +3497,28 @@ msgstr "![チャット画面のスクリーンショット](/peertube-plugin-liv msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3752,16 +3774,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.kab.po b/support/documentation/po/livechat.kab.po index 91d4b38a..db6062db 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Kabyle \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.nb.po b/support/documentation/po/livechat.nb.po index 326ef8d0..97c167c0 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Norwegian Bokmål \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.nl.po b/support/documentation/po/livechat.nl.po index 06986cec..c9ec1019 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Dutch \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.nn.po b/support/documentation/po/livechat.nn.po index a0de7279..b1d06012 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Norwegian Nynorsk \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.oc.po b/support/documentation/po/livechat.oc.po index 215fc624..80917932 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Occitan \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.pl.po b/support/documentation/po/livechat.pl.po index fb599981..a8f3eda6 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Polish \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.pt.po b/support/documentation/po/livechat.pt.po index b3007d3d..8f02b3a4 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Portuguese \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.ru.po b/support/documentation/po/livechat.ru.po index c6f0a309..1d3fa171 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Russian \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.sq.po b/support/documentation/po/livechat.sq.po index 48a5d942..7ea3ae55 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Albanian \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.sv.po b/support/documentation/po/livechat.sv.po index 1bd2ae58..747f3bd5 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.th.po b/support/documentation/po/livechat.th.po index 61dd8526..fb8fcf8b 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Thai \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.tok.po b/support/documentation/po/livechat.tok.po index b01abdc0..535c66a5 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Toki Pona \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.tr.po b/support/documentation/po/livechat.tr.po index 444673ac..39ebe19a 100644 --- a/support/documentation/po/livechat.tr.po +++ b/support/documentation/po/livechat.tr.po @@ -3371,6 +3371,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3616,16 +3638,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.uk.po b/support/documentation/po/livechat.uk.po index 57628a50..356d01e5 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Ukrainian \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.vi.po b/support/documentation/po/livechat.vi.po index adcd06b9..d24872cb 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Vietnamese \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.zh-Hans.po b/support/documentation/po/livechat.zh-Hans.po index cbb3d69c..27ca6ba9 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Simplified) \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id." diff --git a/support/documentation/po/livechat.zh-Hant.po b/support/documentation/po/livechat.zh-Hant.po index f3faba60..03fbacdf 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: 2024-08-06 17:32+0200\n" +"POT-Creation-Date: 2024-08-06 17:53+0200\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Traditional) \n" @@ -3390,6 +3390,28 @@ msgstr "" msgid "To have more space and better readability, open the chat in full-page mode." msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "In the search results, there are several informations that are shown at the right of the participant nickname:" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +msgid "if the current nickname is different than the nickname when the participant has sent the message, the original nickname will be shown" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" +msgstr "" + +#. type: Bullet: '* ' +#: build/documentation/pot_in/documentation/user/streamers/moderation.md +#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md +msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/user/streamers/moderation.md msgid "The search result will also include all messages related to participants who had the same nickname. You can differenciate them by comparing [JID](https://xmpp.org/extensions/xep-0029.html) and [occupant-id](https://xmpp.org/extensions/xep-0421.html)." @@ -3635,16 +3657,6 @@ msgstr "" msgid "if the current nickname is different than the nickname when you created the note, the original nickname will be shown" msgstr "" -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will see the [JID (Jabber ID)](https://xmpp.org/extensions/xep-0029.html) of the participant" -msgstr "" - -#. type: Bullet: '* ' -#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md -msgid "you will also see the [occupant-id](https://xmpp.org/extensions/xep-0421.html) of the participant" -msgstr "" - #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/moderation_notes.md msgid "The search result will also include all notes related to participants who had the same nickname. So you can also take note for anonymous users (who don't have any consistent JID or occupant-id). You can differenciate them by comparing JID and occupant-id."