Updating documentation + removing deprecated field description
This commit is contained in:
parent
0be11fb2ae
commit
e24385c3f1
@ -14,6 +14,7 @@ This version mitigates the attack by using the [RE2](https://github.com/google/r
|
|||||||
### Breaking changes
|
### Breaking changes
|
||||||
|
|
||||||
#### Bot timers
|
#### Bot timers
|
||||||
|
|
||||||
There was a regression some months ago in the "bot timer" functionnality.
|
There was a regression some months ago in the "bot timer" functionnality.
|
||||||
In the channels settings, the delay between two quotes is supposed to be in minutes, but in fact we applied seconds.
|
In the channels settings, the delay between two quotes is supposed to be in minutes, but in fact we applied seconds.
|
||||||
We don't have any way to detect if the user meant seconds or minutes when they configured their channels (it depends if it was before or after the regression).
|
We don't have any way to detect if the user meant seconds or minutes when they configured their channels (it depends if it was before or after the regression).
|
||||||
@ -25,6 +26,8 @@ Users must save the form to be sure to apply the correct value.
|
|||||||
When using regular expressions for the forbidden words, the chat bot now uses the [RE2](https://github.com/google/re2) regular expression library.
|
When using regular expressions for the forbidden words, the chat bot now uses the [RE2](https://github.com/google/re2) regular expression library.
|
||||||
This library does not support all character classes, and all regular expressions that was previously possible (with the Javascript RegExp class).
|
This library does not support all character classes, and all regular expressions that was previously possible (with the Javascript RegExp class).
|
||||||
|
|
||||||
|
For more information about the accepted regular expression, please refer to the [documentation](https://livingston.frama.io/peertube-plugin-livechat/documentation/user/streamers/bot/forbidden_words/#consider-as-regular-expressions).
|
||||||
|
|
||||||
If you configured such regular expressions, the bot will just ignore them, and log an error.
|
If you configured such regular expressions, the bot will just ignore them, and log an error.
|
||||||
When saving channel's preference, if such regular expression is used, an error will be shown.
|
When saving channel's preference, if such regular expression is used, an error will be shown.
|
||||||
|
|
||||||
|
1
client/@types/global.d.ts
vendored
1
client/@types/global.d.ts
vendored
@ -56,7 +56,6 @@ declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_ENABLE_BOT_LABEL: string
|
|||||||
declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_BOT_OPTIONS_TITLE: string
|
declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_BOT_OPTIONS_TITLE: string
|
||||||
declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_LABEL: string
|
declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_LABEL: string
|
||||||
declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_DESC: string
|
declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_DESC: string
|
||||||
declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_DESC2: string
|
|
||||||
declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_RETRACTATION_REASON_LABEL: string
|
declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_RETRACTATION_REASON_LABEL: string
|
||||||
declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_RETRACTATION_REASON_DESC: string
|
declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_RETRACTATION_REASON_DESC: string
|
||||||
declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_REGEXP_LABEL: string
|
declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_REGEXP_LABEL: string
|
||||||
|
@ -16,8 +16,7 @@ export function tplChannelConfiguration (el: ChannelConfigurationElement): Templ
|
|||||||
const tableHeaderList: Record<string, DynamicFormHeader> = {
|
const tableHeaderList: Record<string, DynamicFormHeader> = {
|
||||||
forbiddenWords: {
|
forbiddenWords: {
|
||||||
entries: {
|
entries: {
|
||||||
colName: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_LABEL),
|
colName: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_LABEL)
|
||||||
description: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_DESC2)
|
|
||||||
},
|
},
|
||||||
regexp: {
|
regexp: {
|
||||||
colName: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_REGEXP_LABEL),
|
colName: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_REGEXP_LABEL),
|
||||||
|
@ -387,9 +387,6 @@ livechat_configuration_channel_slow_mode_desc: "Mode lent predeterminat:\n<ul>\n
|
|||||||
\ <li>0: mode lent desactivat</li>\n <li>Qualsevol nombre enter positiu: els
|
\ <li>0: mode lent desactivat</li>\n <li>Qualsevol nombre enter positiu: els
|
||||||
usuaris poden enviar un missatge cada X segons (els moderadors no estan limitats)</li>\n\
|
usuaris poden enviar un missatge cada X segons (els moderadors no estan limitats)</li>\n\
|
||||||
</ul>\n"
|
</ul>\n"
|
||||||
livechat_configuration_channel_forbidden_words_desc2: "Una paraula o expressió per
|
|
||||||
línia. Si poseu diverses paraules a la mateixa línia, només s'eliminaran els missatges
|
|
||||||
que continguin tota la seqüència.\n"
|
|
||||||
livechat_configuration_channel_forbidden_words_desc: "Podeu configurar algunes paraules
|
livechat_configuration_channel_forbidden_words_desc: "Podeu configurar algunes paraules
|
||||||
que seran moderades automàticament pel bot (les publicacions que continguin aquestes
|
que seran moderades automàticament pel bot (les publicacions que continguin aquestes
|
||||||
paraules s'eliminaran a l'instant).\nTambé podeu afegir un motiu opcional, que es
|
paraules s'eliminaran a l'instant).\nTambé podeu afegir un motiu opcional, que es
|
||||||
|
@ -315,9 +315,6 @@ livechat_configuration_channel_title: Možnosti kanálů
|
|||||||
livechat_configuration_channel_enable_bot_label: Povolení moderačního bota
|
livechat_configuration_channel_enable_bot_label: Povolení moderačního bota
|
||||||
livechat_configuration_channel_bot_options_title: Možnosti moderačního bota
|
livechat_configuration_channel_bot_options_title: Možnosti moderačního bota
|
||||||
livechat_configuration_channel_forbidden_words_label: Zakázaná slova nebo výrazy
|
livechat_configuration_channel_forbidden_words_label: Zakázaná slova nebo výrazy
|
||||||
livechat_configuration_channel_forbidden_words_desc2: "Jedno slovo nebo výraz na řádek.
|
|
||||||
Pokud na jeden řádek vložíte více slov, budou se porovnávat pouze zprávy obsahující
|
|
||||||
celou sekvenci.\n"
|
|
||||||
livechat_configuration_channel_forbidden_words_regexp_desc: Zaškrtnutím této možnosti
|
livechat_configuration_channel_forbidden_words_regexp_desc: Zaškrtnutím této možnosti
|
||||||
můžete použít regulární výrazy.
|
můžete použít regulární výrazy.
|
||||||
livechat_configuration_channel_forbidden_words_regexp_label: Považujte za regulární
|
livechat_configuration_channel_forbidden_words_regexp_label: Považujte za regulární
|
||||||
|
@ -275,9 +275,6 @@ prosody_certificates_dir_description: "Wenn dieses Feld leer ist, erzeugt und ve
|
|||||||
Der Benutzer \"peertube\" muss Lesezugriff auf diesen Ordner haben.\n"
|
Der Benutzer \"peertube\" muss Lesezugriff auf diesen Ordner haben.\n"
|
||||||
online_help: Online Hilfe
|
online_help: Online Hilfe
|
||||||
livechat_configuration_channel_enable_bot_label: Moderationsbot aktivieren
|
livechat_configuration_channel_enable_bot_label: Moderationsbot aktivieren
|
||||||
livechat_configuration_channel_forbidden_words_desc2: "Ein Wort oder Ausdruck pro
|
|
||||||
Zeile. Wenn Sie mehrere Wörter in eine Zeile schreiben, werden nur Nachrichten gefunden,
|
|
||||||
die die gesamte Sequenz enthalten.\n"
|
|
||||||
livechat_configuration_channel_forbidden_words_desc: "Sie können einige Wörter konfigurieren,
|
livechat_configuration_channel_forbidden_words_desc: "Sie können einige Wörter konfigurieren,
|
||||||
die vom Chatbot automatisch moderiert werden (Nachrichten, die solche Wörter enthalten,
|
die vom Chatbot automatisch moderiert werden (Nachrichten, die solche Wörter enthalten,
|
||||||
werden sofort gelöscht).\nSie können auch einen optionalen Grund hinzufügen, der
|
werden sofort gelöscht).\nSie können auch einen optionalen Grund hinzufügen, der
|
||||||
|
@ -407,8 +407,6 @@ livechat_configuration_channel_forbidden_words_desc: |
|
|||||||
You can configure some words that will be automatically moderated by the bot (messages containing such words will be instantly deleted).
|
You can configure some words that will be automatically moderated by the bot (messages containing such words will be instantly deleted).
|
||||||
You can also add an optional reason that will be displayed at the place of deleted messages.
|
You can also add an optional reason that will be displayed at the place of deleted messages.
|
||||||
Several examples are provided on the documentation page.
|
Several examples are provided on the documentation page.
|
||||||
livechat_configuration_channel_forbidden_words_desc2: |
|
|
||||||
One word or expression per line. If you put multiple words on one line, it will only match messages containing the whole sequence.
|
|
||||||
livechat_configuration_channel_retractation_reason_label: "Reason"
|
livechat_configuration_channel_retractation_reason_label: "Reason"
|
||||||
livechat_configuration_channel_retractation_reason_desc: "Reason to display besides
|
livechat_configuration_channel_retractation_reason_desc: "Reason to display besides
|
||||||
deleted messages"
|
deleted messages"
|
||||||
|
@ -258,9 +258,6 @@ livechat_configuration_channel_title: Opciones de canal
|
|||||||
livechat_configuration_channel_enable_bot_label: Habilitar el bot de moderación
|
livechat_configuration_channel_enable_bot_label: Habilitar el bot de moderación
|
||||||
livechat_configuration_channel_bot_options_title: Opciones del bot de moderación
|
livechat_configuration_channel_bot_options_title: Opciones del bot de moderación
|
||||||
livechat_configuration_channel_forbidden_words_label: Palabras o expresiones prohibidas
|
livechat_configuration_channel_forbidden_words_label: Palabras o expresiones prohibidas
|
||||||
livechat_configuration_channel_forbidden_words_desc2: "Una palabra o expresión por
|
|
||||||
línea. Si pones varias palabras en una línea, solo coincidirá con los mensajes que
|
|
||||||
contengan la secuencia completa.\n"
|
|
||||||
livechat_configuration_channel_retractation_reason_label: Motivo
|
livechat_configuration_channel_retractation_reason_label: Motivo
|
||||||
livechat_configuration_channel_retractation_reason_desc: Motivo para mostrar además
|
livechat_configuration_channel_retractation_reason_desc: Motivo para mostrar además
|
||||||
de eliminar los mensajes
|
de eliminar los mensajes
|
||||||
|
@ -312,9 +312,6 @@ livechat_configuration_channel_desc: Vous pouvez configurer ici quelques options
|
|||||||
livechat_configuration_channel_enable_bot_label: Activer le bot de modération
|
livechat_configuration_channel_enable_bot_label: Activer le bot de modération
|
||||||
livechat_configuration_channel_bot_options_title: Options du bot de modération
|
livechat_configuration_channel_bot_options_title: Options du bot de modération
|
||||||
livechat_configuration_channel_forbidden_words_label: Mots ou expressions interdites
|
livechat_configuration_channel_forbidden_words_label: Mots ou expressions interdites
|
||||||
livechat_configuration_channel_forbidden_words_desc2: "Un mot ou une expression par
|
|
||||||
ligne. Si vous mettez plusieurs mots sur une même ligne, seuls les messages contenant
|
|
||||||
la séquence entière seront supprimés.\n"
|
|
||||||
livechat_configuration_channel_retractation_reason_label: Raison
|
livechat_configuration_channel_retractation_reason_label: Raison
|
||||||
livechat_configuration_channel_retractation_reason_desc: Raison à affiche à côté des
|
livechat_configuration_channel_retractation_reason_desc: Raison à affiche à côté des
|
||||||
messages supprimés
|
messages supprimés
|
||||||
|
@ -9,9 +9,6 @@ prosody_peertube_uri_label: Peertube URL za API pozive
|
|||||||
save: Spremi
|
save: Spremi
|
||||||
cancel: Odustani
|
cancel: Odustani
|
||||||
menu_configuration_label: Chat sobe
|
menu_configuration_label: Chat sobe
|
||||||
livechat_configuration_channel_forbidden_words_desc2: "Jedna riječ ili izraz po retku.
|
|
||||||
Ako upišeš više riječi u jedan redak, pronaći će samo poruke koje sadrže cijeli
|
|
||||||
niz.\n"
|
|
||||||
login_remote_peertube_searching: Traženje videa na Peertube instanci …
|
login_remote_peertube_searching: Traženje videa na Peertube instanci …
|
||||||
login_remote_peertube_video_not_found: Ovaj video nije dostupan na ovoj Peertube instanci.
|
login_remote_peertube_video_not_found: Ovaj video nije dostupan na ovoj Peertube instanci.
|
||||||
login_external_auth_alert_message: Autentifikacija neuspjela
|
login_external_auth_alert_message: Autentifikacija neuspjela
|
||||||
|
@ -174,7 +174,6 @@ livechat_configuration_channel_title: チャンネル設定
|
|||||||
livechat_configuration_channel_enable_bot_label: モデレーターBotを有効にする
|
livechat_configuration_channel_enable_bot_label: モデレーターBotを有効にする
|
||||||
livechat_configuration_channel_bot_options_title: モデレーターBotの設定
|
livechat_configuration_channel_bot_options_title: モデレーターBotの設定
|
||||||
livechat_configuration_channel_forbidden_words_label: 禁止単語または語句
|
livechat_configuration_channel_forbidden_words_label: 禁止単語または語句
|
||||||
livechat_configuration_channel_forbidden_words_desc2: "単語または語句を1行ごとに記載してください。複数の単語を1行に記載した場合、記載したすべての内容を含むメッセージのみが一致するようになります。\n"
|
|
||||||
livechat_configuration_channel_retractation_reason_label: 理由
|
livechat_configuration_channel_retractation_reason_label: 理由
|
||||||
livechat_configuration_channel_retractation_reason_desc: 削除理由
|
livechat_configuration_channel_retractation_reason_desc: 削除理由
|
||||||
livechat_configuration_channel_forbidden_words_regexp_label: 正規表現
|
livechat_configuration_channel_forbidden_words_regexp_label: 正規表現
|
||||||
|
@ -409,8 +409,6 @@ livechat_configuration_channel_forbidden_words_desc: |
|
|||||||
Você pode configurar algumas palavras que serão moderadas automaticamente pelo bot (mensagens contendo tais palavras serão excluídas instantaneamente).
|
Você pode configurar algumas palavras que serão moderadas automaticamente pelo bot (mensagens contendo tais palavras serão excluídas instantaneamente).
|
||||||
Você também pode adicionar um motivo opcional que será exibido no lugar das mensagens excluídas.
|
Você também pode adicionar um motivo opcional que será exibido no lugar das mensagens excluídas.
|
||||||
Vários exemplos são fornecidos na página de documentação.
|
Vários exemplos são fornecidos na página de documentação.
|
||||||
livechat_configuration_channel_forbidden_words_desc2: |
|
|
||||||
Uma palavra ou expressão por linha. Se você colocar várias palavras em uma linha, serão encontradas apenas mensagens que contenham a sequência completa.
|
|
||||||
livechat_configuration_channel_retractation_reason_label: "Motivo"
|
livechat_configuration_channel_retractation_reason_label: "Motivo"
|
||||||
livechat_configuration_channel_retractation_reason_desc: "Motivo para exibir além
|
livechat_configuration_channel_retractation_reason_desc: "Motivo para exibir além
|
||||||
das mensagens excluídas"
|
das mensagens excluídas"
|
||||||
|
@ -25,7 +25,6 @@ livechat_configuration_channel_desc: 您可以在此處為此頻道設定一些
|
|||||||
livechat_configuration_channel_forbidden_words_label: 禁止使用的單字或句子
|
livechat_configuration_channel_forbidden_words_label: 禁止使用的單字或句子
|
||||||
livechat_configuration_channel_forbidden_words_desc: "您可以組態一些由機器人自動審核的單字(包含此類單字的訊息將立即刪除)。\n\
|
livechat_configuration_channel_forbidden_words_desc: "您可以組態一些由機器人自動審核的單字(包含此類單字的訊息將立即刪除)。\n\
|
||||||
您也可以新增一個可選原因,該原因將顯示在已刪除郵件的位置。\n檔案頁面上提供了幾個範例。\n"
|
您也可以新增一個可選原因,該原因將顯示在已刪除郵件的位置。\n檔案頁面上提供了幾個範例。\n"
|
||||||
livechat_configuration_channel_forbidden_words_desc2: "每行只能一個單字或句子。如果將多個單字放在一行上,它將只配取到包含整行的訊息。\n"
|
|
||||||
livechat_configuration_channel_command_cmd_label: 命令
|
livechat_configuration_channel_command_cmd_label: 命令
|
||||||
livechat_configuration_channel_for_more_info: "有關如何設定此功能的更多資訊,請按一下幫助按鈕參考檔案。\n"
|
livechat_configuration_channel_for_more_info: "有關如何設定此功能的更多資訊,請按一下幫助按鈕參考檔案。\n"
|
||||||
livechat_configuration_channel_banned_jids_label: 禁止的使用者和模式
|
livechat_configuration_channel_banned_jids_label: 禁止的使用者和模式
|
||||||
|
@ -11,17 +11,15 @@ chapter: false
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
You can fill several "{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}" fields.
|
You can fill several "{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}" lines.
|
||||||
When a user sends a message that match the configured criteria, the message will automatically be deleted.
|
When a user sends a message that match the configured criteria, the message will automatically be deleted.
|
||||||
|
|
||||||
## {{% livechat_label livechat_configuration_channel_forbidden_words_label %}}
|
## {{% livechat_label livechat_configuration_channel_forbidden_words_label %}}
|
||||||
|
|
||||||
In this field, you can set several words, group of words, or "regular expressions".
|
Here you can configure several words, group of words, or "regular expressions".
|
||||||
|
|
||||||
{{% livechat_label livechat_configuration_channel_forbidden_words_desc2 %}}
|
|
||||||
|
|
||||||
Each time a user sends a message, these words will be tested.
|
Each time a user sends a message, these words will be tested.
|
||||||
If the message containes one of them, the message will be deleted.
|
If the message contains one of them, the message will be deleted.
|
||||||
|
|
||||||
You can for example fill this field with a swear words list.
|
You can for example fill this field with a swear words list.
|
||||||
|
|
||||||
@ -49,6 +47,10 @@ You can [open an issue](https://github.com/JohnXLivingston/peertube-plugin-livec
|
|||||||
|
|
||||||
By checking this option, each line of the "{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression).
|
By checking this option, each line of the "{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression).
|
||||||
|
|
||||||
|
Please note that not all regular expression are accepted.
|
||||||
|
Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library.
|
||||||
|
Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations.
|
||||||
|
|
||||||
## {{% livechat_label livechat_configuration_applytomoderators_label %}}
|
## {{% livechat_label livechat_configuration_applytomoderators_label %}}
|
||||||
|
|
||||||
{{% livechat_label livechat_configuration_applytomoderators_desc %}}
|
{{% livechat_label livechat_configuration_applytomoderators_desc %}}
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 214 KiB After Width: | Height: | Size: 114 KiB |
@ -6,17 +6,15 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2024-09-12 15:37+0000\n"
|
"PO-Revision-Date: 2024-09-12 15:37+0000\n"
|
||||||
"Last-Translator: ButterflyOfFire <butterflyoffire@protonmail.com>\n"
|
"Last-Translator: ButterflyOfFire <butterflyoffire@protonmail.com>\n"
|
||||||
"Language-Team: Arabic <https://weblate.framasoft.org/projects/"
|
"Language-Team: Arabic <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/ar/>\n"
|
||||||
"peertube-livechat/peertube-plugin-livechat-documentation/ar/>\n"
|
|
||||||
"Language: ar\n"
|
"Language: ar\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : (n%100>=3 "
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : (n%100>=3 && n%100<=10) ? 3 : n%100>=11 ? 4 : 5);\n"
|
||||||
"&& n%100<=10) ? 3 : n%100>=11 ? 4 : 5);\n"
|
|
||||||
"X-Generator: Weblate 5.7.2\n"
|
"X-Generator: Weblate 5.7.2\n"
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
@ -3015,17 +3013,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3064,6 +3062,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Greek <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/el/>\n"
|
"Language-Team: Greek <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/el/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -3401,19 +3401,19 @@ msgstr ""
|
|||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
#, markdown-text
|
#, markdown-text
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
#, markdown-text
|
#, markdown-text
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
#, markdown-text
|
#, markdown-text
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3459,6 +3459,12 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
#, markdown-text
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Esperanto <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/eo/>\n"
|
"Language-Team: Esperanto <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/eo/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2024-04-16 21:38+0000\n"
|
"PO-Revision-Date: 2024-04-16 21:38+0000\n"
|
||||||
"Last-Translator: rnek0 <rnek0@users.noreply.weblate.framasoft.org>\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"
|
"Language-Team: Spanish <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/es/>\n"
|
||||||
@ -3053,17 +3053,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3102,6 +3102,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Basque <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/eu/>\n"
|
"Language-Team: Basque <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/eu/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Persian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/fa/>\n"
|
"Language-Team: Persian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/fa/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Finnish <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/fi/>\n"
|
"Language-Team: Finnish <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/fi/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -7,11 +7,10 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2024-12-30 23:43+0000\n"
|
"PO-Revision-Date: 2024-12-30 23:43+0000\n"
|
||||||
"Last-Translator: John Livingston <git@john-livingston.fr>\n"
|
"Last-Translator: John Livingston <git@john-livingston.fr>\n"
|
||||||
"Language-Team: French <https://weblate.framasoft.org/projects/"
|
"Language-Team: French <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/fr/>\n"
|
||||||
"peertube-livechat/peertube-plugin-livechat-documentation/fr/>\n"
|
|
||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
@ -459,17 +458,12 @@ msgstr "La documentation est générée via l'outils [Hugo](https://gohugo.io/).
|
|||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: support/documentation/content/en/contributing/document/_index.md
|
#: support/documentation/content/en/contributing/document/_index.md
|
||||||
msgid "The minimum required version for Hugo is 0.121.0. It was tested using version 0.132.2."
|
msgid "The minimum required version for Hugo is 0.121.0. It was tested using version 0.132.2."
|
||||||
msgstr ""
|
msgstr "La version minimale requise de Hugo est 0.121.0. Nous avons testé avec la version 0.132.2."
|
||||||
"La version minimale requise de Hugo est 0.121.0. Nous avons testé avec la "
|
|
||||||
"version 0.132.2."
|
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: support/documentation/content/en/contributing/document/_index.md
|
#: support/documentation/content/en/contributing/document/_index.md
|
||||||
msgid "The used theme is [hugo-theme-relearn](https://mcshelby.github.io/hugo-theme-relearn). You should read its documentation before starting editing the documentation."
|
msgid "The used theme is [hugo-theme-relearn](https://mcshelby.github.io/hugo-theme-relearn). You should read its documentation before starting editing the documentation."
|
||||||
msgstr ""
|
msgstr "Le thème utilisé est [hugo-theme-relearn](https://mcshelby.github.io/hugo-theme-relearn). Il est recommandé d'en lire la documentation avant de commencer."
|
||||||
"Le thème utilisé est [hugo-theme-relearn](https://mcshelby.github.io/hugo-"
|
|
||||||
"theme-relearn). Il est recommandé d'en lire la documentation avant de "
|
|
||||||
"commencer."
|
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: support/documentation/content/en/contributing/document/_index.md
|
#: support/documentation/content/en/contributing/document/_index.md
|
||||||
@ -617,19 +611,12 @@ msgstr "Pour l'instant il n'est pas possible d'utiliser des tableaux Markdown
|
|||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: support/documentation/content/en/contributing/document/_index.md
|
#: support/documentation/content/en/contributing/document/_index.md
|
||||||
msgid "There may be links to this documentation elsewhere on the web. Try not to change the urls of the documentation pages. Or at the very least, put links to the new location on the previous url."
|
msgid "There may be links to this documentation elsewhere on the web. Try not to change the urls of the documentation pages. Or at the very least, put links to the new location on the previous url."
|
||||||
msgstr ""
|
msgstr "Il peut y avoir des liens vers cette documentation ailleurs sur le web. Essayez de ne pas changer les urls des pages de documentation. Ou au moins, mettez des liens vers les nouvelles pages dans les anciennes urls."
|
||||||
"Il peut y avoir des liens vers cette documentation ailleurs sur le web. "
|
|
||||||
"Essayez de ne pas changer les urls des pages de documentation. Ou au moins, "
|
|
||||||
"mettez des liens vers les nouvelles pages dans les anciennes urls."
|
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: support/documentation/content/en/contributing/document/_index.md
|
#: support/documentation/content/en/contributing/document/_index.md
|
||||||
msgid "When a new feature is released, you can use the `livechat_version_notice` short code to display an infobox with the version with which the features is available. This short code takes the version number as parameter. Here is an example:"
|
msgid "When a new feature is released, you can use the `livechat_version_notice` short code to display an infobox with the version with which the features is available. This short code takes the version number as parameter. Here is an example:"
|
||||||
msgstr ""
|
msgstr "Lorsqu'une nouvelle fonctionnalité est disponible, vous pouvez utiliser `livechat_version_notice` pour afficher une boite d'information avec la version dans laquelle cette fonctionnalité est disponible. Ce code prend le numéro de version comme paramètre. Voici un exemple :"
|
||||||
"Lorsqu'une nouvelle fonctionnalité est disponible, vous pouvez utiliser "
|
|
||||||
"`livechat_version_notice` pour afficher une boite d'information avec la "
|
|
||||||
"version dans laquelle cette fonctionnalité est disponible. Ce code prend le "
|
|
||||||
"numéro de version comme paramètre. Voici un exemple :"
|
|
||||||
|
|
||||||
#. type: Title ###
|
#. type: Title ###
|
||||||
#: support/documentation/content/en/contributing/document/_index.md
|
#: support/documentation/content/en/contributing/document/_index.md
|
||||||
@ -1982,31 +1969,18 @@ msgstr "mod_firewall Prosody"
|
|||||||
#: support/documentation/content/en/documentation/admin/mod_firewall.md
|
#: support/documentation/content/en/documentation/admin/mod_firewall.md
|
||||||
#: build/documentation/pot_in/documentation/admin/settings.md
|
#: build/documentation/pot_in/documentation/admin/settings.md
|
||||||
msgid "You can enable [mod_firewall](https://modules.prosody.im/mod_firewall) on your Prosody server."
|
msgid "You can enable [mod_firewall](https://modules.prosody.im/mod_firewall) on your Prosody server."
|
||||||
msgstr ""
|
msgstr "Vous pouvez activer [mod_firewall](https://modules.prosody.im/mod_firewall) sur votre serveur Prosody."
|
||||||
"Vous pouvez activer [mod_firewall](https://modules.prosody.im/mod_firewall) "
|
|
||||||
"sur votre serveur Prosody."
|
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: support/documentation/content/en/documentation/admin/mod_firewall.md
|
#: support/documentation/content/en/documentation/admin/mod_firewall.md
|
||||||
msgid "Doing so, Peertube admins will be able to define advanced firewall rules."
|
msgid "Doing so, Peertube admins will be able to define advanced firewall rules."
|
||||||
msgstr ""
|
msgstr "Ainsi, les administrateurs de Peertube pourront définir des règles avancées de pare-feu."
|
||||||
"Ainsi, les administrateurs de Peertube pourront définir des règles avancées "
|
|
||||||
"de pare-feu."
|
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: support/documentation/content/en/documentation/admin/mod_firewall.md
|
#: support/documentation/content/en/documentation/admin/mod_firewall.md
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "These rules could be used to run arbitrary code on the server. If you are a hosting provider, and you don't want to allow Peertube admins to write such rules, you can disable the online editing by creating a `disable_mod_firewall_editing` file in the plugin directory (`plugins/data/peertube-plugin-livechat/disable_mod_firewall_editing`). This is opt-out, as Peertube admins can already run arbitrary code just by installing any plugin. You can still use mod_firewall by editing files directly on the server."
|
msgid "These rules could be used to run arbitrary code on the server. If you are a hosting provider, and you don't want to allow Peertube admins to write such rules, you can disable the online editing by creating a `disable_mod_firewall_editing` file in the plugin directory (`plugins/data/peertube-plugin-livechat/disable_mod_firewall_editing`). This is opt-out, as Peertube admins can already run arbitrary code just by installing any plugin. You can still use mod_firewall by editing files directly on the server."
|
||||||
msgstr ""
|
msgstr "Ces règles pouraient être utilisées pour exécuter un code arbitraire sur le serveur. Si vous êtes un hébergeur, et que vous ne voulez pas permettre aux administrateurs de Peertube d'écrire de telles règles, vous pouvez désactiver l'édition en ligne en créant un fichier `disable_mod_firewall_editing` dans le répertoire du plugin (`plugins/data/peertube-plugin-livechat/disable_mod_firewall_editing`). Il s'agit d'une dérogation, car les administrateurs de Peertube peuvent déjà exécuter du code arbitraire en installant n'importe quel plugin. Vous pouvez toujours utiliser mod_firewall en éditant des fichiers directement sur le serveur."
|
||||||
"Ces règles pouraient être utilisées pour exécuter un code arbitraire sur le "
|
|
||||||
"serveur. Si vous êtes un hébergeur, et que vous ne voulez pas permettre aux "
|
|
||||||
"administrateurs de Peertube d'écrire de telles règles, vous pouvez "
|
|
||||||
"désactiver l'édition en ligne en créant un fichier "
|
|
||||||
"`disable_mod_firewall_editing` dans le répertoire du plugin (`plugins/data/"
|
|
||||||
"peertube-plugin-livechat/disable_mod_firewall_editing`). Il s'agit d'une "
|
|
||||||
"dérogation, car les administrateurs de Peertube peuvent déjà exécuter du "
|
|
||||||
"code arbitraire en installant n'importe quel plugin. Vous pouvez toujours "
|
|
||||||
"utiliser mod_firewall en éditant des fichiers directement sur le serveur."
|
|
||||||
|
|
||||||
#. type: Title ##
|
#. type: Title ##
|
||||||
#: support/documentation/content/en/documentation/admin/mod_firewall.md
|
#: support/documentation/content/en/documentation/admin/mod_firewall.md
|
||||||
@ -2025,9 +1999,7 @@ msgstr "Veuillez vous référer à la page d'aide [pour ce paramètre](/peertube
|
|||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: support/documentation/content/en/documentation/admin/mod_firewall.md
|
#: support/documentation/content/en/documentation/admin/mod_firewall.md
|
||||||
msgid "Just bellow the settings, you will find a \"Configure mod_firewall\" button. This button will open a configuration page."
|
msgid "Just bellow the settings, you will find a \"Configure mod_firewall\" button. This button will open a configuration page."
|
||||||
msgstr ""
|
msgstr "Juste en dessous des paramètres, vous trouverez un bouton « Configurer mod_firewall ». Ce bouton ouvrira une page de configuration."
|
||||||
"Juste en dessous des paramètres, vous trouverez un bouton « Configurer "
|
|
||||||
"mod_firewall ». Ce bouton ouvrira une page de configuration."
|
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: support/documentation/content/en/documentation/admin/mod_firewall.md
|
#: support/documentation/content/en/documentation/admin/mod_firewall.md
|
||||||
@ -2051,9 +2023,7 @@ msgstr "Vous pouvez activer/désactiver chaque fichier."
|
|||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: support/documentation/content/en/documentation/admin/mod_firewall.md
|
#: support/documentation/content/en/documentation/admin/mod_firewall.md
|
||||||
msgid "Files will be loaded in the alphabetical order. You can use a number as prefix to easily choose the order."
|
msgid "Files will be loaded in the alphabetical order. You can use a number as prefix to easily choose the order."
|
||||||
msgstr ""
|
msgstr "Les fichiers sont chargés dans l'ordre alphabétique. Vous pouvez utiliser des préfixes numériques pour facilement en définir l'ordre."
|
||||||
"Les fichiers sont chargés dans l'ordre alphabétique. Vous pouvez utiliser "
|
|
||||||
"des préfixes numériques pour facilement en définir l'ordre."
|
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: support/documentation/content/en/documentation/admin/mod_firewall.md
|
#: support/documentation/content/en/documentation/admin/mod_firewall.md
|
||||||
@ -3190,17 +3160,23 @@ msgstr "."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr "En cochant cette option, chaque ligne du champs «{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}» sera considéré comme une [expression régulière](https://fr.wikipedia.org/wiki/Expression_r%C3%A9guli%C3%A8re)."
|
msgstr "En cochant cette option, chaque ligne du champs «{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}» sera considéré comme une [expression régulière](https://fr.wikipedia.org/wiki/Expression_r%C3%A9guli%C3%A8re)."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Gaelic <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/gd/>\n"
|
"Language-Team: Gaelic <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/gd/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Galician <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/gl/>\n"
|
"Language-Team: Galician <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/gl/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,17 +6,15 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2024-09-16 15:14+0000\n"
|
"PO-Revision-Date: 2024-09-16 15:14+0000\n"
|
||||||
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
|
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
|
||||||
"Language-Team: Croatian <https://weblate.framasoft.org/projects/"
|
"Language-Team: Croatian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/hr/>\n"
|
||||||
"peertube-livechat/peertube-plugin-livechat-documentation/hr/>\n"
|
|
||||||
"Language: hr\n"
|
"Language: hr\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
"X-Generator: Weblate 5.7.2\n"
|
"X-Generator: Weblate 5.7.2\n"
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
@ -3060,17 +3058,17 @@ msgstr "."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Hungarian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/hu/>\n"
|
"Language-Team: Hungarian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/hu/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Icelandic <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/is/>\n"
|
"Language-Team: Icelandic <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/is/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 14:21+0000\n"
|
"PO-Revision-Date: 2023-07-17 14:21+0000\n"
|
||||||
"Last-Translator: John Livingston <git@john-livingston.fr>\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"
|
"Language-Team: Italian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/it/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2024-08-29 10:38+0000\n"
|
"PO-Revision-Date: 2024-08-29 10:38+0000\n"
|
||||||
"Last-Translator: \"T.S\" <fusen@users.noreply.weblate.framasoft.org>\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"
|
"Language-Team: Japanese <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/ja/>\n"
|
||||||
@ -3100,17 +3100,17 @@ msgstr "."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, fuzzy, no-wrap
|
#, fuzzy, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Kabyle <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/kab/>\n"
|
"Language-Team: Kabyle <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/kab/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\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"
|
"Language-Team: Norwegian Bokmål <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/nb_NO/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Dutch <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/nl/>\n"
|
"Language-Team: Dutch <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/nl/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\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"
|
"Language-Team: Norwegian Nynorsk <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/nn/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Occitan <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/oc/>\n"
|
"Language-Team: Occitan <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/oc/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Polish <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/pl/>\n"
|
"Language-Team: Polish <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/pl/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Portuguese <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/pt/>\n"
|
"Language-Team: Portuguese <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/pt/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Russian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/ru/>\n"
|
"Language-Team: Russian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/ru/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Albanian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/sq/>\n"
|
"Language-Team: Albanian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/sq/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Swedish <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/sv/>\n"
|
"Language-Team: Swedish <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/sv/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:52+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Thai <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/th/>\n"
|
"Language-Team: Thai <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/th/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:53+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:53+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\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"
|
"Language-Team: Toki Pona <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/tok/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -2993,17 +2993,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3042,6 +3042,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,17 +6,15 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2024-10-13 09:25+0000\n"
|
"PO-Revision-Date: 2024-10-13 09:25+0000\n"
|
||||||
"Last-Translator: Ihor Hordiichuk <igor_ck@outlook.com>\n"
|
"Last-Translator: Ihor Hordiichuk <igor_ck@outlook.com>\n"
|
||||||
"Language-Team: Ukrainian <https://weblate.framasoft.org/projects/"
|
"Language-Team: Ukrainian <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/uk/>\n"
|
||||||
"peertube-livechat/peertube-plugin-livechat-documentation/uk/>\n"
|
|
||||||
"Language: uk\n"
|
"Language: uk\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
"X-Generator: Weblate 5.7.2\n"
|
"X-Generator: Weblate 5.7.2\n"
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
@ -3014,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3063,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:53+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:53+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||||
"Language-Team: Vietnamese <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/vi/>\n"
|
"Language-Team: Vietnamese <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/vi/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:53+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:53+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\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"
|
"Language-Team: Chinese (Simplified) <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/zh_Hans/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
"Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n"
|
||||||
"POT-Creation-Date: 2024-09-12 12:53+0200\n"
|
"POT-Creation-Date: 2025-06-06 17:07+0200\n"
|
||||||
"PO-Revision-Date: 2023-07-17 10:53+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:53+0000\n"
|
||||||
"Last-Translator: Anonymous <noreply@weblate.org>\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"
|
"Language-Team: Chinese (Traditional) <https://weblate.framasoft.org/projects/peertube-livechat/peertube-plugin-livechat-documentation/zh_Hant/>\n"
|
||||||
@ -3012,17 +3012,17 @@ msgstr ""
|
|||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" fields. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
msgid "You can fill several \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" lines. When a user sends a message that match the configured criteria, the message will automatically be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "In this field, you can set several words, group of words, or \"regular expressions\"."
|
msgid "Here you can configure several words, group of words, or \"regular expressions\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
msgid "Each time a user sends a message, these words will be tested. If the message containes one of them, the message will be deleted."
|
msgid "Each time a user sends a message, these words will be tested. If the message contains one of them, the message will be deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
@ -3061,6 +3061,11 @@ msgstr ""
|
|||||||
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
msgid "By checking this option, each line of the \"{{% livechat_label livechat_configuration_channel_forbidden_words_label %}}\" field will be considered as a [regular expression](https://en.wikipedia.org/wiki/Regular_expression)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: build/documentation/pot_in/documentation/user/streamers/bot/forbidden_words.md
|
||||||
|
msgid "Please note that not all regular expression are accepted. Under the hood, we are using the [node-re2](https://github.com/uhop/node-re2) library. Please check [node-re2](https://github.com/uhop/node-re2) and [RE2 documentation](https://github.com/google/re2/wiki/Syntax) for more information about the accepted syntax and the limitations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. type: Yaml Front Matter Hash Value: description
|
#. type: Yaml Front Matter Hash Value: description
|
||||||
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
#: support/documentation/content/en/documentation/user/streamers/bot/_index.md
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
Loading…
x
Reference in New Issue
Block a user