Message search results: display original nickname if has changed.
This commit is contained in:
parent
df75659a05
commit
b8db486410
@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -20,6 +20,7 @@ export function tplMucMamSearchMessage (el, mucModel, searchOccupantModel, messa
|
||||
? html`
|
||||
<livechat-converse-muc-mam-search-occupant
|
||||
.model=${occupant}
|
||||
.message=${message}
|
||||
></livechat-converse-muc-mam-search-occupant>`
|
||||
: ''
|
||||
}
|
||||
|
@ -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) {
|
||||
<span style=${authorStyle}>${occupant.getDisplayName()}</span>
|
||||
</a>
|
||||
<ul aria-hidden="true">
|
||||
${
|
||||
// user changed nick: display the original nick
|
||||
message && message.nick !== undefined && message.nick !== occupant.get('nick')
|
||||
// eslint-disable-next-line no-undef
|
||||
? html`<li title=${__(LOC_message_search_original_nick)}>${message.nick}</li>`
|
||||
: ''
|
||||
}
|
||||
${jid ? html`<li title=${__('XMPP Address')}>${jid}</li>` : ''}
|
||||
${occupantId ? html`<li title=${__('Occupant Id')}>${occupantId}</li>` : ''}
|
||||
</ul>`
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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).
|
||||
|
||||
|
@ -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 <butterflyoffire@protonmail.com>\n"
|
||||
"Language-Team: Arabic <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/ar/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Catalan <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/ca/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Czech <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/cs/>\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."
|
||||
|
@ -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 <v.hampel@users.noreply.weblate.framasoft.org>\n"
|
||||
"Language-Team: German <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/de/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Greek <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/el/>\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."
|
||||
|
@ -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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Esperanto <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/eo/>\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."
|
||||
|
@ -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 <rnek0@users.noreply.weblate.framasoft.org>\n"
|
||||
"Language-Team: Spanish <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/es/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Basque <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/eu/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Persian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/fa/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Finnish <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/fi/>\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."
|
||||
|
@ -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 <git@john-livingston.fr>\n"
|
||||
"Language-Team: French <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/fr/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Gaelic <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/gd/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Galician <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/gl/>\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."
|
||||
|
@ -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 <mail@milotype.de>\n"
|
||||
"Language-Team: Croatian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/hr/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Hungarian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/hu/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Icelandic <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/is/>\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."
|
||||
|
@ -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 <git@john-livingston.fr>\n"
|
||||
"Language-Team: Italian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/it/>\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."
|
||||
|
@ -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\" <fusen@users.noreply.weblate.framasoft.org>\n"
|
||||
"Language-Team: Japanese <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/ja/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Kabyle <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/kab/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/nb_NO/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Dutch <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/nl/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Norwegian Nynorsk <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/nn/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Occitan <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/oc/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Polish <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/pl/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Portuguese <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/pt/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Russian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/ru/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Albanian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/sq/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Swedish <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/sv/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Thai <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/th/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Toki Pona <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/tok/>\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."
|
||||
|
@ -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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Ukrainian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/uk/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Vietnamese <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/vi/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Chinese (Simplified) <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/zh_Hans/>\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."
|
||||
|
@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Chinese (Traditional) <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/zh_Hant/>\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."
|
||||
|
Loading…
Reference in New Issue
Block a user