diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a72967f..205ba2b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ * Updating xmppjs-chat-box version. * Translation updates: japanese. * Updating slow mode duration on existing rooms when changing channel options (related to #332). + * This settings is no more a default duration, but the actual duration (updating labels and documentation). ## 8.3.2 diff --git a/client/@types/global.d.ts b/client/@types/global.d.ts index 9b16cd5e..1a60f3e2 100644 --- a/client/@types/global.d.ts +++ b/client/@types/global.d.ts @@ -44,8 +44,8 @@ declare const LOC_LIVECHAT_CONFIGURATION_DESC: string declare const LOC_LIVECHAT_CONFIGURATION_PLEASE_SELECT: string declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_TITLE: string declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_DESC: string -declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_DEFAULT_SLOW_MODE_LABEL: string -declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_DEFAULT_SLOW_MODE_DESC: string +declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_SLOW_MODE_LABEL: string +declare const LOC_LIVECHAT_CONFIGURATION_CHANNEL_SLOW_MODE_DESC: string 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_FORBIDDEN_WORDS_LABEL: string diff --git a/client/common/configuration/templates/channel.mustache b/client/common/configuration/templates/channel.mustache index 2f2f7c82..0b51f09a 100644 --- a/client/common/configuration/templates/channel.mustache +++ b/client/common/configuration/templates/channel.mustache @@ -11,8 +11,8 @@
-

{{defaultSlowModeLabel}}

-

{{{defaultSlowModeDesc}}}

+

{{slowModeLabel}}

+

{{{slowModeDesc}}}

{{{helpButtonSlowMode}}}
@@ -20,12 +20,12 @@
diff --git a/client/common/configuration/templates/channel.ts b/client/common/configuration/templates/channel.ts index 6e5a8903..0c579cab 100644 --- a/client/common/configuration/templates/channel.ts +++ b/client/common/configuration/templates/channel.ts @@ -69,10 +69,8 @@ async function fillLabels ( view.title = await peertubeHelpers.translate(LOC_LIVECHAT_CONFIGURATION_CHANNEL_TITLE) view.description = await peertubeHelpers.translate(LOC_LIVECHAT_CONFIGURATION_CHANNEL_DESC) - view.defaultSlowModeLabel = await peertubeHelpers.translate( - LOC_LIVECHAT_CONFIGURATION_CHANNEL_DEFAULT_SLOW_MODE_LABEL - ) - view.defaultSlowModeDesc = await peertubeHelpers.translate(LOC_LIVECHAT_CONFIGURATION_CHANNEL_DEFAULT_SLOW_MODE_DESC) + view.slowModeLabel = await peertubeHelpers.translate(LOC_LIVECHAT_CONFIGURATION_CHANNEL_SLOW_MODE_LABEL) + view.slowModeDesc = await peertubeHelpers.translate(LOC_LIVECHAT_CONFIGURATION_CHANNEL_SLOW_MODE_DESC) view.enableBot = await peertubeHelpers.translate(LOC_LIVECHAT_CONFIGURATION_CHANNEL_ENABLE_BOT_LABEL) view.botOptions = await peertubeHelpers.translate(LOC_LIVECHAT_CONFIGURATION_CHANNEL_BOT_OPTIONS_TITLE) view.forbiddenWords = await peertubeHelpers.translate(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_LABEL) diff --git a/client/common/configuration/templates/logic/channel.ts b/client/common/configuration/templates/logic/channel.ts index 0c028ed0..34ffecb8 100644 --- a/client/common/configuration/templates/logic/channel.ts +++ b/client/common/configuration/templates/logic/channel.ts @@ -165,16 +165,16 @@ async function vivifyConfigurationChannel ( const validateData: Function = async (channelConfigurationOptions: ChannelConfigurationOptions): Promise => { const botConf = channelConfigurationOptions.bot - const slowModeDefaultDuration = channelConfigurationOptions.slowMode.defaultDuration + const slowModeDuration = channelConfigurationOptions.slowMode.duration const errorFieldSelectors = [] if ( - (typeof slowModeDefaultDuration !== 'number') || - isNaN(slowModeDefaultDuration) || - slowModeDefaultDuration < 0 || - slowModeDefaultDuration > 1000 + (typeof slowModeDuration !== 'number') || + isNaN(slowModeDuration) || + slowModeDuration < 0 || + slowModeDuration > 1000 ) { - const selector = '#peertube-livechat-slow-mode-default-duration' + const selector = '#peertube-livechat-slow-mode-duration' errorFieldSelectors.push(selector) await displayError(selector, await translate(LOC_INVALID_VALUE)) } @@ -233,7 +233,7 @@ async function vivifyConfigurationChannel ( removeDisplayedErrors() const channelConfigurationOptions: ChannelConfigurationOptions = { slowMode: { - defaultDuration: parseInt(data.get('slow_mode_default_duration')?.toString() ?? '0') + duration: parseInt(data.get('slow_mode_duration')?.toString() ?? '0') }, bot: { enabled: data.get('bot') === '1', diff --git a/languages/de.yml b/languages/de.yml index 276c2391..03b7ea1d 100644 --- a/languages/de.yml +++ b/languages/de.yml @@ -375,12 +375,10 @@ avatar_set_option_fenec: Fenecs (Mobilizon-Maskottchen) avatar_set_option_legacy: Ältere Sepia-Avatare (die in früheren Plugin-Versionen enthalten waren) avatar_set_option_abstract: Abstrakt -livechat_configuration_channel_default_slow_mode_label: Langsamer Modus +livechat_configuration_channel_slow_mode_label: Langsamer Modus slow_mode_info: Wenn der langsame Modus aktiviert ist, können Benutzer alle %1$s Sekunden eine Nachricht senden. -livechat_configuration_channel_default_slow_mode_desc: "Standardwert für den langsamen - Modus für neue Chats:\n
    \n
  • 0: langsamer Modus deaktiviert
  • \n
  • Beliebige +livechat_configuration_channel_slow_mode_desc: "Standardwert für den langsamen + Modus:\n
      \n
    • 0: langsamer Modus deaktiviert
    • \n
    • Beliebige positive ganze Zahl: Benutzer können alle X Sekunden eine Nachricht senden (Moderatoren - sind nicht beschränkt)
    • \n
    \nDieser Wert gilt für neue Chaträume. Um diesen - Wert für einen bereits bestehenden Raum zu ändern, müssen Sie das Raumkonfigurationsmenü - verwenden.\n" + sind nicht beschränkt)
  • \n
" diff --git a/languages/en.yml b/languages/en.yml index 16778857..3ff8371a 100644 --- a/languages/en.yml +++ b/languages/en.yml @@ -331,14 +331,13 @@ livechat_configuration_desc: "Here you can configure some advanced options for c livechat_configuration_please_select: "Please select bellow one of your channel, to setup its chatting options." livechat_configuration_channel_title: "Channel options" livechat_configuration_channel_desc: "You can setup here some options for this channel (moderation policies, ...)." -livechat_configuration_channel_default_slow_mode_label: "Slow mode" -livechat_configuration_channel_default_slow_mode_desc: | - Default slow mode value for new chats: +livechat_configuration_channel_slow_mode_label: "Slow mode" +livechat_configuration_channel_slow_mode_desc: | + Slow mode value:
  • 0: slow mode disabled
  • Any positive integer: users can send a message every X seconds (moderators are not limited)
- This value applies for new chat rooms. To change this value for an already existing room, you have to use the room configuration menu. livechat_configuration_channel_enable_bot_label: "Enable moderation bot" livechat_configuration_channel_bot_options_title: "Moderation bot options" livechat_configuration_channel_forbidden_words_label: "Forbidden words or expressions" diff --git a/languages/fr.yml b/languages/fr.yml index cdb8d2f9..e64a861a 100644 --- a/languages/fr.yml +++ b/languages/fr.yml @@ -388,12 +388,10 @@ avatar_set_description: "Vous pouvez choisir parmi plusieurs jeux différents le à la documentation :\nParamètres.\n" avatar_set_option_abstract: Abstrait -livechat_configuration_channel_default_slow_mode_label: Mode lent +livechat_configuration_channel_slow_mode_label: Mode lent slow_mode_info: Le mode lent est activé, les utilisateur⋅rices peuvent envoyer un message toutes les %1$s secondes. -livechat_configuration_channel_default_slow_mode_desc: "Valeur par défaut du mode - lent pour les nouveaux tchats :\n
    \n
  • 0 : mode lent désactivé
  • \n
  • Tout +livechat_configuration_channel_slow_mode_desc: "Valeur du mode + lent :\n
      \n
    • 0 : mode lent désactivé
    • \n
    • Tout entier positif : les utilisateur⋅rices peuvent envoyer un message toutes les X secondes - (les modérateur⋅rices ne sont pas limité⋅es)
    • \n
    \nCette valeur s'applique - aux nouveaux salons. Pour changer cette valeur sur les salons déjà existants, vous - devez passer par le menu de configuration du salon.\n" + (les modérateur⋅rices ne sont pas limité⋅es)
  • \n
" diff --git a/languages/ja.yml b/languages/ja.yml index 84123034..155ea23f 100644 --- a/languages/ja.yml +++ b/languages/ja.yml @@ -204,7 +204,7 @@ livechat_configuration_channel_bot_nickname: Botのニックネーム livechat_configuration_channel_quote_desc: "一定間隔でメッセージを送信するための複数のタイマーを設定できます。\nこれらのメッセージは、BotによってX分ごとに送信されます。\n\ たとえば、Botからスポンサー情報を5分ごとに送信させることができます。\n" livechat_configuration_channel_quote_label2: メッセージ -livechat_configuration_channel_default_slow_mode_desc: "新しいチャットに適用される低速モードのデフォルト値:\n\ +livechat_configuration_channel_slow_mode_desc: "新しいチャットに適用される低速モードのデフォルト値:\n\
    \n
  • 0: 低速モード無効
  • \n
  • 任意の整数: ユーザーはX秒毎にメッセージを送信可能 (モデレーターは無制限)
  • \n\
\nこの値は、新しいチャットルームに対して適用されます。既に存在するルームの値を変更するには、ルーム設定メニューから変更が必要です。\n" avatar_set_description: "チャットユーザーに使用するデフォルトのアバターをいくつかのセットから選択できます。\n詳細はドキュメントを参照してください:\n @@ -217,5 +217,5 @@ avatar_set_option_sepia: Sepia (Peertubeのマスコットキャラクター) avatar_set_option_bird: 鳥 avatar_set_option_fenec: Fenecs (Mobilizonのマスコットキャラクター) avatar_set_option_legacy: 以前のSepia アバター(以前のプラグインバージョンに含まれていたもの) -livechat_configuration_channel_default_slow_mode_label: 低速モード +livechat_configuration_channel_slow_mode_label: 低速モード slow_mode_info: 低速モードが有効になっているため、メッセージは%1$s秒ごとに送信できます。 diff --git a/server/lib/configuration/channel/sanitize.ts b/server/lib/configuration/channel/sanitize.ts index 176fe123..4d008ed3 100644 --- a/server/lib/configuration/channel/sanitize.ts +++ b/server/lib/configuration/channel/sanitize.ts @@ -25,7 +25,7 @@ async function sanitizeChannelConfigurationOptions ( // slowMode not present in livechat <= 8.2.0: const slowModeData = data.slowMode ?? {} - slowModeData.defaultDuration ??= 0 + slowModeData.duration ??= slowModeData.defaultDuration ?? 0 // v8.3.0 to 8.3.2: was in defaultDuration if (typeof slowModeData !== 'object') { throw new Error('Invalid data.slowMode data type') @@ -41,7 +41,7 @@ async function sanitizeChannelConfigurationOptions ( // TODO: bannedJIDs }, slowMode: { - defaultDuration: _readInteger(slowModeData, 'defaultDuration', 0, 1000) + duration: _readInteger(slowModeData, 'duration', 0, 1000) } } diff --git a/server/lib/configuration/channel/storage.ts b/server/lib/configuration/channel/storage.ts index 450790f4..56c78f98 100644 --- a/server/lib/configuration/channel/storage.ts +++ b/server/lib/configuration/channel/storage.ts @@ -44,7 +44,7 @@ function getDefaultChannelConfigurationOptions (_options: RegisterServerOptions) commands: [] }, slowMode: { - defaultDuration: 0 + duration: 0 } } } diff --git a/server/lib/room-channel/room-channel-class.ts b/server/lib/room-channel/room-channel-class.ts index a5d9615d..b1fe14b7 100644 --- a/server/lib/room-channel/room-channel-class.ts +++ b/server/lib/room-channel/room-channel-class.ts @@ -352,7 +352,7 @@ class RoomChannel { // This can be done without waiting for the API call to finish, but we don't want to send thousands of // API calls at the same time. So storing data in a map, and we well launch it sequentially at the end prosodyRoomUpdates.set(roomJID, { - slow_mode_duration: channelConfigurationOptions.slowMode.defaultDuration + slow_mode_duration: channelConfigurationOptions.slowMode.duration }) this.roomConfToUpdate.delete(roomJID) diff --git a/server/lib/routers/api/room.ts b/server/lib/routers/api/room.ts index d1c2bd59..ae967559 100644 --- a/server/lib/routers/api/room.ts +++ b/server/lib/routers/api/room.ts @@ -36,10 +36,10 @@ interface RoomDefaults { affiliations?: Affiliations } -async function defaultSlowModeDuration (options: RegisterServerOptions, channelId: number): Promise { +async function slowModeDuration (options: RegisterServerOptions, channelId: number): Promise { const channelOptions = await getChannelConfigurationOptions(options, channelId) ?? getDefaultChannelConfigurationOptions(options) - return channelOptions.slowMode.defaultDuration + return channelOptions.slowMode.duration } /** @@ -89,7 +89,7 @@ async function initRoomApiRouter (options: RegisterServerOptions, router: Router name: channelInfos.displayName, description: '', // subject: channelInfos.displayName - slow_mode_duration: await defaultSlowModeDuration(options, channelId) + slow_mode_duration: await slowModeDuration(options, channelId) }, affiliations: affiliations } @@ -142,7 +142,7 @@ async function initRoomApiRouter (options: RegisterServerOptions, router: Router description: '', language: video.language, // subject: video.name - slow_mode_duration: await defaultSlowModeDuration(options, video.channelId) + slow_mode_duration: await slowModeDuration(options, video.channelId) }, affiliations: affiliations } diff --git a/shared/lib/types.ts b/shared/lib/types.ts index b851ad17..f694d1c9 100644 --- a/shared/lib/types.ts +++ b/shared/lib/types.ts @@ -75,7 +75,7 @@ interface ChannelConfigurationOptions { // TODO: bannedJIDs: string[] } slowMode: { - defaultDuration: number + duration: number } } diff --git a/support/documentation/content/en/documentation/user/streamers/slow_mode.md b/support/documentation/content/en/documentation/user/streamers/slow_mode.md index b9543363..625cb223 100644 --- a/support/documentation/content/en/documentation/user/streamers/slow_mode.md +++ b/support/documentation/content/en/documentation/user/streamers/slow_mode.md @@ -24,12 +24,11 @@ This limitation does not apply to moderators. ## Default channel value -On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option: +On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option: -![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px) +![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px) -This value will apply as the default value for new chatrooms. -It will not apply on already existing chatrooms. +This value will apply to all your channel's chatrooms. Setting the value to `0` will disable the feature. diff --git a/support/documentation/po/livechat.ar.po b/support/documentation/po/livechat.ar.po index 7cd86162..428b66a6 100644 --- a/support/documentation/po/livechat.ar.po +++ b/support/documentation/po/livechat.ar.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2024-01-17 11:38+0000\n" "Last-Translator: ButterflyOfFire \n" "Language-Team: Arabic \n" @@ -2641,17 +2641,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.ca.po b/support/documentation/po/livechat.ca.po index 647628f8..3cc9ac94 100644 --- a/support/documentation/po/livechat.ca.po +++ b/support/documentation/po/livechat.ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Catalan \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.cs.po b/support/documentation/po/livechat.cs.po index 37463420..2b3c02c8 100644 --- a/support/documentation/po/livechat.cs.po +++ b/support/documentation/po/livechat.cs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Czech \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.de.po b/support/documentation/po/livechat.de.po index 5115c614..dbbac2a4 100644 --- a/support/documentation/po/livechat.de.po +++ b/support/documentation/po/livechat.de.po @@ -7,12 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2024-03-03 00:57+0000\n" -"Last-Translator: Victor Hampel " -"\n" -"Language-Team: German \n" +"Last-Translator: Victor Hampel \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -2699,18 +2697,22 @@ msgstr "Standard Kanalwert" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +#, fuzzy +#| msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "Auf der [Kanal Konfigurations Seite](/peertube-plugin-livechat/de/documentation/user/streamers/channel) können Sie einen Standardwert für den langsamen Modus einstellen:" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +#, fuzzy +#| msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "![Kanalkonfiguration / Standardwert langsamer Modus](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." -msgstr "Dieser Wert gilt als Standardwert für neue Chaträume. Er gilt nicht für bereits bestehende Chaträume." +msgid "This value will apply to all your channel's chatrooms." +msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md @@ -2731,18 +2733,7 @@ msgstr "Ändern des Wertes für einen bestehenden Chatraum" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md msgid "As there was a security issue with livechat plugin v8.3.1 (leaking the full list of instance moderator and administrators), the following only works for users that are also administrator or moderator on the Peertube instance. An alternative method to set this for existing chatrooms will be provided in a later livechat version, when the issue will be properly fixed. For now, if you are not moderator or administrator on the Peertube instance, you can change the slow mode setting by deleting your room (it will be recreated with the value set in the channel options). This solution is not optimal, and we apologize for the inconvenience." -msgstr "" -"Da es ein Sicherheitsproblem mit dem Livechat-Plugin v8.3.1 gab (Die " -"vollständigen Liste der Moderatoren und Administratoren der Instanz wurde " -"angezeigt), funktioniert das Folgende nur für Benutzer, die auch " -"Administrator oder Moderator der Peertube-Instanz sind. Eine alternative " -"Methode, um dies für bestehende Chaträume einzustellen, wird in einer " -"späteren Livechat-Version zur Verfügung gestellt werden, wenn das Problem " -"richtig behoben ist. Im Moment können Sie, wenn Sie nicht Moderator oder " -"Administrator auf der Peertube-Instanz sind, die Einstellung des langsamen " -"Modus nur ändern, indem Sie Ihren Raum löschen (er wird mit dem in den " -"Kanaloptionen eingestellten Wert neu erstellt). Diese Lösung ist nicht " -"optimal, und wir entschuldigen uns für die Unannehmlichkeiten." +msgstr "Da es ein Sicherheitsproblem mit dem Livechat-Plugin v8.3.1 gab (Die vollständigen Liste der Moderatoren und Administratoren der Instanz wurde angezeigt), funktioniert das Folgende nur für Benutzer, die auch Administrator oder Moderator der Peertube-Instanz sind. Eine alternative Methode, um dies für bestehende Chaträume einzustellen, wird in einer späteren Livechat-Version zur Verfügung gestellt werden, wenn das Problem richtig behoben ist. Im Moment können Sie, wenn Sie nicht Moderator oder Administrator auf der Peertube-Instanz sind, die Einstellung des langsamen Modus nur ändern, indem Sie Ihren Raum löschen (er wird mit dem in den Kanaloptionen eingestellten Wert neu erstellt). Diese Lösung ist nicht optimal, und wir entschuldigen uns für die Unannehmlichkeiten." #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md @@ -3217,6 +3208,9 @@ msgstr "[Meilensteine auf Github](https://github.com/JohnXLivingston/peertube-pl msgid "If you are a webdesigner or a ConverseJS/Prosody/XMPP expert, and want to help improve this plugin, you are welcome." msgstr "Wenn Sie ein Webdesigner oder ein ConverseJS/Prosody/XMPP-Experte sind und helfen wollen, dieses Plugin zu verbessern, sind Sie gerne willkommen." +#~ msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +#~ msgstr "Dieser Wert gilt als Standardwert für neue Chaträume. Er gilt nicht für bereits bestehende Chaträume." + #~ msgid "{{% livechat_label avatar_set_option_sepia %}}: [David Revoy's Peertube avatar generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/) [CC-By](https://creativecommons.org/licenses/by/4.0/) license" #~ msgstr "{{% livechat_label avatar_set_option_sepia %}}: [David Revoy's Peertube Avatargenerator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/) [CC-By](https://creativecommons.org/licenses/by/4.0/) Lizenz" diff --git a/support/documentation/po/livechat.el.po b/support/documentation/po/livechat.el.po index b81bc323..ae25a2ab 100644 --- a/support/documentation/po/livechat.el.po +++ b/support/documentation/po/livechat.el.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Greek \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.en.pot b/support/documentation/po/livechat.en.pot index e12a1415..04a2e53f 100644 --- a/support/documentation/po/livechat.en.pot +++ b/support/documentation/po/livechat.en.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2960,19 +2960,19 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md #, markdown-text -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md #, markdown-text -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md #, markdown-text -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.eo.po b/support/documentation/po/livechat.eo.po index 591c1da4..9e4f2815 100644 --- a/support/documentation/po/livechat.eo.po +++ b/support/documentation/po/livechat.eo.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Esperanto \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.es.po b/support/documentation/po/livechat.es.po index 7f2b6d18..119131f4 100644 --- a/support/documentation/po/livechat.es.po +++ b/support/documentation/po/livechat.es.po @@ -6,11 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2024-03-07 05:45+0000\n" "Last-Translator: rnek0 \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -433,9 +432,7 @@ msgstr "El idioma principal es el inglés (código `en`)." #. type: Plain text #: support/documentation/content/en/contributing/document/_index.md msgid "The `support/documentation/content/en` folder contains only english documentation files." -msgstr "" -"El directorio `support/documentation/content/en` sólo contiene archivos de " -"documentación en inglés." +msgstr "El directorio `support/documentation/content/en` sólo contiene archivos de documentación en inglés." #. type: Plain text #: support/documentation/content/en/contributing/document/_index.md @@ -500,13 +497,7 @@ msgstr "Para hacerlo, asegúrese de tener `po4a` (versión>= 0.69) instalado en #. type: Plain text #: support/documentation/content/en/contributing/document/_index.md msgid "Some linux distro (like Debian Bullseye for example) have too old version of `po4a`. Please make sure to install a compatible version. If you are using Debian Bullseye for example, you can download the Bookworm po4a.deb file from [https://packages.debian.org](https://packages.debian.org/bookworm/all/po4a/download), and install it manually." -msgstr "" -"Algunas distribuciones de Linux (como Debian Bullseye, por ejemplo) tienen " -"una versión demasiado antigua de `po4a`. Asegúrese de instalar una versión " -"compatible. Si está utilizando Debian Bullseye, por ejemplo, puede descargar " -"el archivo Bookworm po4a.deb desde [https://packages.debian." -"org](https://packages.debian.org/bookworm/all/po4a/download), e instalarlo " -"manualmente." +msgstr "Algunas distribuciones de Linux (como Debian Bullseye, por ejemplo) tienen una versión demasiado antigua de `po4a`. Asegúrese de instalar una versión compatible. Si está utilizando Debian Bullseye, por ejemplo, puede descargar el archivo Bookworm po4a.deb desde [https://packages.debian.org](https://packages.debian.org/bookworm/all/po4a/download), e instalarlo manualmente." #. type: Plain text #: support/documentation/content/en/contributing/document/_index.md @@ -533,9 +524,7 @@ msgstr "Redactar la documentación" #. type: Plain text #: support/documentation/content/en/contributing/document/_index.md msgid "Just edit the english files in `support/documentation/content/en`." -msgstr "" -"Sólo tienes que editar los archivos en inglés en `support/documentation/" -"content/en`." +msgstr "Sólo tienes que editar los archivos en inglés en `support/documentation/content/en`." #. type: Plain text #: support/documentation/content/en/contributing/document/_index.md @@ -2678,17 +2667,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.eu.po b/support/documentation/po/livechat.eu.po index 4a31bdd7..c29ef5ef 100644 --- a/support/documentation/po/livechat.eu.po +++ b/support/documentation/po/livechat.eu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Basque \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.fa.po b/support/documentation/po/livechat.fa.po index 79ff5e4c..821daf89 100644 --- a/support/documentation/po/livechat.fa.po +++ b/support/documentation/po/livechat.fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Persian \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.fi.po b/support/documentation/po/livechat.fi.po index bef0aaed..d3df5096 100644 --- a/support/documentation/po/livechat.fi.po +++ b/support/documentation/po/livechat.fi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Finnish \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.fr.po b/support/documentation/po/livechat.fr.po index aecbf545..c56c4926 100644 --- a/support/documentation/po/livechat.fr.po +++ b/support/documentation/po/livechat.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2024-02-21 15:07+0000\n" "Last-Translator: John Livingston \n" "Language-Team: French \n" @@ -2716,18 +2716,22 @@ msgstr "Valeur par défaut de la chaîne" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +#, fuzzy +#| msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "Sur la [page de configuration de la chaîne](/peertube-plugin-livechat/fr/documentation/user/streamers/channel), vous pouvez définir une valeur par défaut pour l'option mode lent :" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +#, fuzzy +#| msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "![Configuration de la chaîne / Mode lent par défaut](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." -msgstr "Cette valeur s'appliquera par défaut aux nouveaux salons. Elle ne s'appliquera pas aux salons de discussion existants." +msgid "This value will apply to all your channel's chatrooms." +msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md @@ -3223,6 +3227,9 @@ msgstr "les [jalons sur github](https://github.com/JohnXLivingston/peertube-plug msgid "If you are a webdesigner or a ConverseJS/Prosody/XMPP expert, and want to help improve this plugin, you are welcome." msgstr "Si vous êtes webdesigner ou avez une expertise en ConverseJS/Prosody/XMPP et souhaitez participer à l'évolution de ce plugin, n'hésitez pas à me contacter." +#~ msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +#~ msgstr "Cette valeur s'appliquera par défaut aux nouveaux salons. Elle ne s'appliquera pas aux salons de discussion existants." + #~ msgid "{{% livechat_label avatar_set_option_sepia %}}: [David Revoy's Peertube avatar generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/) [CC-By](https://creativecommons.org/licenses/by/4.0/) license" #~ msgstr "{{% livechat_label avatar_set_option_sepia %}} : [Générateur d'avatars Peertube de David Revoy](https://www.peppercarrot.com/extras/html/2023_peertube-generator/) [Licence CC-By](https://creativecommons.org/licenses/by/4.0/)" diff --git a/support/documentation/po/livechat.gd.po b/support/documentation/po/livechat.gd.po index 0c5662d3..27c33d50 100644 --- a/support/documentation/po/livechat.gd.po +++ b/support/documentation/po/livechat.gd.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Gaelic \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.gl.po b/support/documentation/po/livechat.gl.po index 1da7c484..33773596 100644 --- a/support/documentation/po/livechat.gl.po +++ b/support/documentation/po/livechat.gl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Galician \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.hr.po b/support/documentation/po/livechat.hr.po index d07c1fe8..9790b21d 100644 --- a/support/documentation/po/livechat.hr.po +++ b/support/documentation/po/livechat.hr.po @@ -6,17 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2024-03-06 13:38+0000\n" "Last-Translator: Milo Ivir \n" -"Language-Team: Croatian \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"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" +"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" "X-Generator: Weblate 5.4.2\n" #. type: Yaml Front Matter Hash Value: description @@ -408,18 +406,12 @@ msgstr "Glavni jezik je engleski (kod: `en`)." #. type: Plain text #: support/documentation/content/en/contributing/document/_index.md msgid "The `support/documentation/content/en` folder contains only english documentation files." -msgstr "" -"Mapa `support/documentation/content/en` sadrži datoteke dokumentacije samo " -"na engleskom jeziku." +msgstr "Mapa `support/documentation/content/en` sadrži datoteke dokumentacije samo na engleskom jeziku." #. type: Plain text #: support/documentation/content/en/contributing/document/_index.md msgid "Documentation is translated using Weblate (see the [translation documentation](/peertube-plugin-livechat/contributing/translate/)). To do so, we use the [po4a tool](https://po4a.org/), as we will se later in this page." -msgstr "" -"Dokumentacija se prevodi pomoću Weblate platforme (pogledaj [Prevođenje " -"dokumentacije](/peertube-plugin-livechat/contributing/translate/)). Za to " -"koristimo [alat po4a](https://po4a.org/), što ćemo kasnije vidjeti na ovoj " -"stranici." +msgstr "Dokumentacija se prevodi pomoću Weblate platforme (pogledaj [Prevođenje dokumentacije](/peertube-plugin-livechat/contributing/translate/)). Za to koristimo [alat po4a](https://po4a.org/), što ćemo kasnije vidjeti na ovoj stranici." #. type: Title ## #: support/documentation/content/en/contributing/document/_index.md @@ -430,16 +422,12 @@ msgstr "Dodaj novi jezik" #. type: Plain text #: support/documentation/content/en/contributing/document/_index.md msgid "In the `support/documentation/config.toml` file, please copy and modify the `[Languages.fr]` section." -msgstr "" -"U datoteci `support/documentation/config.toml`kopiraj i izmjeni odjeljak " -"`[Languages.fr]`." +msgstr "U datoteci `support/documentation/config.toml`kopiraj i izmjeni odjeljak `[Languages.fr]`." #. type: Plain text #: support/documentation/content/en/contributing/document/_index.md msgid "If the translations are not complete, it does not matter, english will be used for missing strings." -msgstr "" -"Ako prijevodi nisu potpuni, nedostajući izrazi će se prikazati na engleskom " -"jeziku." +msgstr "Ako prijevodi nisu potpuni, nedostajući izrazi će se prikazati na engleskom jeziku." #. type: Title ## #: support/documentation/content/en/contributing/document/_index.md @@ -520,10 +508,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/contributing/document/_index.md msgid "You can use the `livechat_label` short code to use application strings. See here: [Documentation translation](/peertube-plugin-livechat/contributing/translate/#documentation-translation)." -msgstr "" -"Za korištenje izraza aplikacije možeš koristiti kratki kod `livechat_label`. " -"Pogledaj ovdje: [Prijevod dokumentacije](/peertube-plugin-livechat/" -"contributing/translate/#documentation-translation)." +msgstr "Za korištenje izraza aplikacije možeš koristiti kratki kod `livechat_label`. Pogledaj ovdje: [Prijevod dokumentacije](/peertube-plugin-livechat/contributing/translate/#documentation-translation)." #. type: Plain text #: support/documentation/content/en/contributing/document/_index.md @@ -609,10 +594,7 @@ msgstr "Prevodi" #. type: Plain text #: support/documentation/content/en/contributing/translate/_index.md msgid "You can contribute to this plugin translation. Translations are handled using the [Weblate](https://weblate.org/) software, using [Framasoft Weblate instance](https://weblate.framasoft.org/)." -msgstr "" -"Možeš doprinijeti prijevodu ovog dodatka. Za prevođenje koristimo platformu " -"[Weblate](https://weblate.org/) na stranici [Framasoft " -"Weblate](https://weblate.framasoft.org/)." +msgstr "Možeš doprinijeti prijevodu ovog dodatka. Za prevođenje koristimo platformu [Weblate](https://weblate.org/) na stranici [Framasoft Weblate](https://weblate.framasoft.org/)." #. type: Plain text #: support/documentation/content/en/contributing/translate/_index.md @@ -2656,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text @@ -2754,9 +2736,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/viewers.md msgid "There are two slightly different use cases, depending on wether or not you have an account on the Peertube instance. See bellow for more informations." -msgstr "" -"Postoje dva različita slučaja upotrebe, ovisno o tome imaš li račun na " -"Peertube instanci ili ne. Pogledaj dolje za više informacija." +msgstr "Postoje dva različita slučaja upotrebe, ovisno o tome imaš li račun na Peertube instanci ili ne. Pogledaj dolje za više informacija." #. type: Title ### #: support/documentation/content/en/documentation/user/viewers.md diff --git a/support/documentation/po/livechat.hu.po b/support/documentation/po/livechat.hu.po index e3e3dc26..335a5c11 100644 --- a/support/documentation/po/livechat.hu.po +++ b/support/documentation/po/livechat.hu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hungarian \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.is.po b/support/documentation/po/livechat.is.po index b715934b..eaa9fc9b 100644 --- a/support/documentation/po/livechat.is.po +++ b/support/documentation/po/livechat.is.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Icelandic \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.it.po b/support/documentation/po/livechat.it.po index 32a76f1b..15bfa717 100644 --- a/support/documentation/po/livechat.it.po +++ b/support/documentation/po/livechat.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 14:21+0000\n" "Last-Translator: John Livingston \n" "Language-Team: Italian \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.ja.po b/support/documentation/po/livechat.ja.po index d774c532..d03b1ce4 100644 --- a/support/documentation/po/livechat.ja.po +++ b/support/documentation/po/livechat.ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2024-01-28 13:01+0000\n" "Last-Translator: \"T.S\" \n" "Language-Team: Japanese \n" @@ -2699,19 +2699,19 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md #, fuzzy -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "PeerTube ライブチャットプラグイン" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md #, fuzzy #| msgid "![Fullscreen chat screenshot](/peertube-plugin-livechat/images/fullscreen.png?classes=shadow,border&height=200px)" -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "![チャット画面のスクリーンショット](/peertube-plugin-livechat/images/chat.png?classes=shadow,border&height=200px)" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.kab.po b/support/documentation/po/livechat.kab.po index 52e40b5b..b71a7a78 100644 --- a/support/documentation/po/livechat.kab.po +++ b/support/documentation/po/livechat.kab.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Kabyle \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.nb.po b/support/documentation/po/livechat.nb.po index c0e1f7b7..cfd0a2ce 100644 --- a/support/documentation/po/livechat.nb.po +++ b/support/documentation/po/livechat.nb.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Norwegian Bokmål \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.nl.po b/support/documentation/po/livechat.nl.po index ce49a969..b0a85819 100644 --- a/support/documentation/po/livechat.nl.po +++ b/support/documentation/po/livechat.nl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Dutch \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.nn.po b/support/documentation/po/livechat.nn.po index 6e786c36..e50f7ccf 100644 --- a/support/documentation/po/livechat.nn.po +++ b/support/documentation/po/livechat.nn.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Norwegian Nynorsk \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.oc.po b/support/documentation/po/livechat.oc.po index 33859e57..171f114a 100644 --- a/support/documentation/po/livechat.oc.po +++ b/support/documentation/po/livechat.oc.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Occitan \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.pl.po b/support/documentation/po/livechat.pl.po index 861e1a5e..9a2866b7 100644 --- a/support/documentation/po/livechat.pl.po +++ b/support/documentation/po/livechat.pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Polish \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.pt.po b/support/documentation/po/livechat.pt.po index 1745e321..6da1a50d 100644 --- a/support/documentation/po/livechat.pt.po +++ b/support/documentation/po/livechat.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Portuguese \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.ru.po b/support/documentation/po/livechat.ru.po index ea497a96..2b6587f5 100644 --- a/support/documentation/po/livechat.ru.po +++ b/support/documentation/po/livechat.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Russian \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.sq.po b/support/documentation/po/livechat.sq.po index 00f46f34..7f4cb86e 100644 --- a/support/documentation/po/livechat.sq.po +++ b/support/documentation/po/livechat.sq.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Albanian \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.sv.po b/support/documentation/po/livechat.sv.po index 7048943c..6396151b 100644 --- a/support/documentation/po/livechat.sv.po +++ b/support/documentation/po/livechat.sv.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.th.po b/support/documentation/po/livechat.th.po index 3e4a7ba1..0df4aa76 100644 --- a/support/documentation/po/livechat.th.po +++ b/support/documentation/po/livechat.th.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Thai \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.tok.po b/support/documentation/po/livechat.tok.po index daecf1c7..6452985c 100644 --- a/support/documentation/po/livechat.tok.po +++ b/support/documentation/po/livechat.tok.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Toki Pona \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.uk.po b/support/documentation/po/livechat.uk.po index 56c6eaf8..5326b477 100644 --- a/support/documentation/po/livechat.uk.po +++ b/support/documentation/po/livechat.uk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Ukrainian \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.vi.po b/support/documentation/po/livechat.vi.po index 6dfb4b45..f969be18 100644 --- a/support/documentation/po/livechat.vi.po +++ b/support/documentation/po/livechat.vi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Vietnamese \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.zh-Hans.po b/support/documentation/po/livechat.zh-Hans.po index a17d5b9a..6d6443b6 100644 --- a/support/documentation/po/livechat.zh-Hans.po +++ b/support/documentation/po/livechat.zh-Hans.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Simplified) \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text diff --git a/support/documentation/po/livechat.zh-Hant.po b/support/documentation/po/livechat.zh-Hant.po index ba741420..b97b6795 100644 --- a/support/documentation/po/livechat.zh-Hant.po +++ b/support/documentation/po/livechat.zh-Hant.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-03-01 15:25+0100\n" +"POT-Creation-Date: 2024-03-07 17:46+0100\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Traditional) \n" @@ -2638,17 +2638,17 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set a default value for the slow mode option:" +msgid "On the [channel configuration page](/peertube-plugin-livechat/documentation/user/streamers/channel), you can set the slow mode option:" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "![Channel configuration / Default slow mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" +msgid "![Channel configuration / Slow Mode](/peertube-plugin-livechat/images/slow_mode_channel_option.png?classes=shadow,border&height=400px)" msgstr "" #. type: Plain text #: support/documentation/content/en/documentation/user/streamers/slow_mode.md -msgid "This value will apply as the default value for new chatrooms. It will not apply on already existing chatrooms." +msgid "This value will apply to all your channel's chatrooms." msgstr "" #. type: Plain text