Adding actions on the occupant list.
This commit is contained in:
parent
49e11d2b6b
commit
ad5397b3c7
@ -30,6 +30,8 @@ CONVERSE_COMMIT="5017efb780973d704f237c478ba52b23d901e1bf"
|
||||
# 2024-08-06: including fix waiting for merge:
|
||||
CONVERSE_VERSION="livechat_converse_11"
|
||||
CONVERSE_COMMIT="1625f9b6ee81fa9ebd8df5cba306bde478f1943b"
|
||||
# 2024-08-06: including new getOccupantActionButtons hook (waiting for merge in Converse upstream)
|
||||
CONVERSE_COMMIT="f7434616c9e48de1a05a42b63394655d292c76f6"
|
||||
|
||||
rootdir="$(pwd)"
|
||||
src_dir="$rootdir/conversejs"
|
||||
|
@ -3,7 +3,7 @@
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import { api, converse } from '../../../src/headless/index.js'
|
||||
import { getMessageActionButtons } from './utils.js'
|
||||
import { getMessageActionButtons, getOccupantActionButtons } from './utils.js'
|
||||
import mamSearchApi from './api.js'
|
||||
|
||||
import './components/muc-mam-search-app-view.js'
|
||||
@ -23,8 +23,10 @@ converse.plugins.add('livechat-converse-mam-search', {
|
||||
livechat_mam_search_app_enabled: false
|
||||
})
|
||||
|
||||
// Adding buttons on message:
|
||||
// Adding buttons on messages:
|
||||
_converse.api.listen.on('getMessageActionButtons', getMessageActionButtons)
|
||||
// Adding buttons on occupants:
|
||||
_converse.api.listen.on('getOccupantActionButtons', getOccupantActionButtons)
|
||||
|
||||
// FIXME: should we listen to any event (feature/affiliation change?, mam_enabled?) to refresh messageActionButtons?
|
||||
}
|
||||
|
@ -52,6 +52,43 @@ function getMessageActionButtons (messageActionsEl, buttons) {
|
||||
return buttons
|
||||
}
|
||||
|
||||
export {
|
||||
getMessageActionButtons
|
||||
function getOccupantActionButtons (occupant, buttons) {
|
||||
if (!api.settings.get('livechat_mam_search_app_enabled')) {
|
||||
return buttons
|
||||
}
|
||||
|
||||
const muc = occupant.collection?.chatroom
|
||||
if (!muc) {
|
||||
return buttons
|
||||
}
|
||||
|
||||
if (!muc.features?.get?.(XMLNS_MAM_SEARCH)) {
|
||||
return buttons
|
||||
}
|
||||
|
||||
const myself = muc.getOwnOccupant()
|
||||
if (!myself || !['admin', 'owner'].includes(myself.get('affiliation'))) {
|
||||
return buttons
|
||||
}
|
||||
|
||||
// eslint-disable-next-line no-undef
|
||||
const i18nSearch = __(LOC_search_occupant_message)
|
||||
|
||||
buttons.push({
|
||||
i18n_text: i18nSearch,
|
||||
handler: async (ev) => {
|
||||
ev.preventDefault()
|
||||
api.livechat_mam_search.showMessagesFrom(occupant)
|
||||
},
|
||||
button_class: '',
|
||||
icon_class: 'fa fa-magnifying-glass',
|
||||
name: 'muc-mam-search'
|
||||
})
|
||||
|
||||
return buttons
|
||||
}
|
||||
|
||||
export {
|
||||
getMessageActionButtons,
|
||||
getOccupantActionButtons
|
||||
}
|
||||
|
@ -6,7 +6,9 @@ import { _converse, converse } from '../../../src/headless/index.js'
|
||||
import { XMLNS_NOTE } from './constants.js'
|
||||
import { ChatRoomNote } from './note.js'
|
||||
import { ChatRoomNotes } from './notes.js'
|
||||
import { initOrDestroyChatRoomNotes, getHeadingButtons, getMessageActionButtons } from './utils.js'
|
||||
import {
|
||||
initOrDestroyChatRoomNotes, getHeadingButtons, getMessageActionButtons, getOccupantActionButtons
|
||||
} from './utils.js'
|
||||
import notesApi from './api.js'
|
||||
|
||||
import './components/muc-note-app-view.js'
|
||||
@ -59,7 +61,9 @@ converse.plugins.add('livechat-converse-notes', {
|
||||
// adding the "Notes" button in the MUC heading buttons:
|
||||
_converse.api.listen.on('getHeadingButtons', getHeadingButtons)
|
||||
|
||||
// Adding buttons on message:
|
||||
// Adding buttons on messages:
|
||||
_converse.api.listen.on('getMessageActionButtons', getMessageActionButtons)
|
||||
// Adding buttons on occupants:
|
||||
_converse.api.listen.on('getOccupantActionButtons', getOccupantActionButtons)
|
||||
}
|
||||
})
|
||||
|
@ -82,6 +82,43 @@ export function getMessageActionButtons (messageActionsEl, buttons) {
|
||||
return buttons
|
||||
}
|
||||
|
||||
export function getOccupantActionButtons (occupant, buttons) {
|
||||
const muc = occupant.collection?.chatroom
|
||||
if (!muc?.notes) {
|
||||
// We dont have access.
|
||||
return buttons
|
||||
}
|
||||
|
||||
// eslint-disable-next-line no-undef
|
||||
const i18nCreate = __(LOC_moderator_note_create_for_participant)
|
||||
// eslint-disable-next-line no-undef
|
||||
const i18nSearch = __(LOC_moderator_note_search_for_participant)
|
||||
|
||||
buttons.push({
|
||||
i18n_text: i18nCreate,
|
||||
handler: async (ev) => {
|
||||
ev.preventDefault()
|
||||
await api.livechat_notes.openCreateNoteForm(occupant)
|
||||
},
|
||||
button_class: '',
|
||||
icon_class: 'fa fa-note-sticky',
|
||||
name: 'muc-note-create-for-occupant'
|
||||
})
|
||||
|
||||
buttons.push({
|
||||
i18n_text: i18nSearch,
|
||||
handler: async (ev) => {
|
||||
ev.preventDefault()
|
||||
await api.livechat_notes.searchNotesAbout(occupant)
|
||||
},
|
||||
button_class: '',
|
||||
icon_class: 'fa fa-magnifying-glass',
|
||||
name: 'muc-note-search-for-occupant'
|
||||
})
|
||||
|
||||
return buttons
|
||||
}
|
||||
|
||||
function _initChatRoomNotes (mucModel) {
|
||||
if (mucModel.noteManager) {
|
||||
// already initiliazed
|
||||
|
@ -96,6 +96,7 @@ As a room admin or owner, you can search all messages sent by a given participan
|
||||
|
||||
To do so, you have several ways:
|
||||
|
||||
* using the "{{% livechat_label search_occupant_message %}}" action in the dropdown menu besides participants in the sidebar
|
||||
* using the "{{% livechat_label search_occupant_message %}}" action in the dropdown menu besides chat messages
|
||||
|
||||
![Message history search](/peertube-plugin-livechat/images/message_search.png?classes=shadow,border&height=200px)
|
||||
|
@ -73,6 +73,7 @@ All modification are instantly visible in all your browser tabs, and for all roo
|
||||
|
||||
You can create a note associated to a participant in several ways:
|
||||
|
||||
* using the "{{% livechat_label moderator_note_create_for_participant %}}" action in the dropdown menu besides participants in the sidebar
|
||||
* using the "{{% livechat_label moderator_note_create_for_participant %}}" action in the dropdown menu besides chat messages
|
||||
|
||||
When a note is associated to a participant, you will see their nickname and avatar on the top of the note.
|
||||
@ -82,6 +83,7 @@ When a note is associated to a participant, you will see their nickname and avat
|
||||
You can filter notes to find all notes related to a given participant in several ways:
|
||||
|
||||
* click on the "{{% livechat_label moderator_note_search_for_participant %}}" button that is available on notes to find all notes related to the same participant
|
||||
* click on the "{{% livechat_label moderator_note_search_for_participant %}}" button in the dropdown menu besides participants in the sidebar
|
||||
* click on the "{{% livechat_label moderator_note_search_for_participant %}}" button in the dropdown menu besides chat messages
|
||||
|
||||
You can remove the filter by clicking on the close button.
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3376,6 +3376,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3577,6 +3582,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3603,6 +3613,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3802,6 +3802,12 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
#, markdown-text
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
#, markdown-text
|
||||
@ -4030,6 +4036,12 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
#, markdown-text
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
#, markdown-text
|
||||
@ -4060,6 +4072,12 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
#, markdown-text
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: 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-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3407,6 +3407,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3608,6 +3613,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3634,6 +3644,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3472,6 +3472,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3702,6 +3707,11 @@ msgstr "Toutes les modifications sont instantanément visibles dans tous les ong
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3728,6 +3738,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3374,6 +3374,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3586,6 +3591,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3612,6 +3622,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3473,6 +3473,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3684,6 +3689,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3710,6 +3720,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -3349,6 +3349,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3550,6 +3555,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3576,6 +3586,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||
"POT-Creation-Date: 2024-08-05 12:07+0200\n"
|
||||
"POT-Creation-Date: 2024-08-06 17:32+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"
|
||||
@ -3368,6 +3368,11 @@ msgstr ""
|
||||
msgid "To do so, you have several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: build/documentation/pot_in/documentation/user/streamers/moderation.md
|
||||
msgid "using the \"{{% livechat_label search_occupant_message %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3569,6 +3574,11 @@ msgstr ""
|
||||
msgid "You can create a note associated to a participant in several ways:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "using the \"{{% livechat_label moderator_note_create_for_participant %}}\" action in the dropdown menu besides chat messages"
|
||||
@ -3595,6 +3605,11 @@ msgstr ""
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button that is available on notes to find all notes related to the same participant"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides participants in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
#. type: Bullet: '* '
|
||||
#: support/documentation/content/en/documentation/user/streamers/moderation_notes.md
|
||||
msgid "click on the \"{{% livechat_label moderator_note_search_for_participant %}}\" button in the dropdown menu besides chat messages"
|
||||
|
Loading…
Reference in New Issue
Block a user