From 70563200fef8c98a5a5468f0a86116c6a62d49ad Mon Sep 17 00:00:00 2001 From: John Livingston Date: Fri, 9 Feb 2024 12:41:05 +0100 Subject: [PATCH] New avatars: * new settings to change the avatar set * user documentation --- languages/en.yml | 8 +++++ server/lib/prosody/config.ts | 12 +++++-- server/lib/settings.ts | 21 +++++++++++- .../en/documentation/admin/settings.md | 12 +++++++ .../content/en/images/avatar_legacy.jpg | Bin 0 -> 4297 bytes .../content/en/images/avatar_sepia.png | Bin 0 -> 3167 bytes support/documentation/po/livechat.ar.po | 24 ++++++++++++-- support/documentation/po/livechat.ca.po | 24 ++++++++++++-- support/documentation/po/livechat.cs.po | 24 ++++++++++++-- support/documentation/po/livechat.de.po | 30 ++++++++++++++++-- support/documentation/po/livechat.el.po | 24 ++++++++++++-- support/documentation/po/livechat.en.pot | 28 ++++++++++++++-- support/documentation/po/livechat.eo.po | 24 ++++++++++++-- support/documentation/po/livechat.es.po | 24 ++++++++++++-- support/documentation/po/livechat.eu.po | 24 ++++++++++++-- support/documentation/po/livechat.fa.po | 24 ++++++++++++-- support/documentation/po/livechat.fi.po | 24 ++++++++++++-- support/documentation/po/livechat.fr.po | 30 ++++++++++++++++-- support/documentation/po/livechat.gd.po | 24 ++++++++++++-- support/documentation/po/livechat.gl.po | 24 ++++++++++++-- support/documentation/po/livechat.hr.po | 24 ++++++++++++-- support/documentation/po/livechat.hu.po | 24 ++++++++++++-- support/documentation/po/livechat.is.po | 24 ++++++++++++-- support/documentation/po/livechat.it.po | 24 ++++++++++++-- support/documentation/po/livechat.ja.po | 28 ++++++++++++++-- support/documentation/po/livechat.kab.po | 24 ++++++++++++-- support/documentation/po/livechat.nb.po | 24 ++++++++++++-- support/documentation/po/livechat.nl.po | 24 ++++++++++++-- support/documentation/po/livechat.nn.po | 24 ++++++++++++-- support/documentation/po/livechat.oc.po | 24 ++++++++++++-- support/documentation/po/livechat.pl.po | 24 ++++++++++++-- support/documentation/po/livechat.pt.po | 24 ++++++++++++-- support/documentation/po/livechat.ru.po | 24 ++++++++++++-- support/documentation/po/livechat.sq.po | 24 ++++++++++++-- support/documentation/po/livechat.sv.po | 24 ++++++++++++-- support/documentation/po/livechat.th.po | 24 ++++++++++++-- support/documentation/po/livechat.tok.po | 24 ++++++++++++-- support/documentation/po/livechat.uk.po | 24 ++++++++++++-- support/documentation/po/livechat.vi.po | 24 ++++++++++++-- support/documentation/po/livechat.zh-Hans.po | 24 ++++++++++++-- support/documentation/po/livechat.zh-Hant.po | 24 ++++++++++++-- 41 files changed, 839 insertions(+), 74 deletions(-) create mode 100644 support/documentation/content/en/images/avatar_legacy.jpg create mode 100644 support/documentation/content/en/images/avatar_sepia.png diff --git a/languages/en.yml b/languages/en.yml index a514ac29..8ea5c31e 100644 --- a/languages/en.yml +++ b/languages/en.yml @@ -131,6 +131,14 @@ auto_ban_anonymous_ip_description: | theming_advanced_description: "

Theming

" +avatar_set_label: "Avatar set" +avatar_set_description: | + You can choose from several different sets the default avatars that will be used for chat users. + Please refer to the documentation: + Settings. +avatar_set_option_sepia: "Sepia (Peertube mascot)" +avatar_set_option_legacy: "Legacy Sepia avatars (those included in previous plugin versions)" + converse_theme_label: "ConverseJS theme" converse_theme_description: "Please choose the converseJS theme you want to use." converse_theme_option_peertube: "Peertube theme" diff --git a/server/lib/prosody/config.ts b/server/lib/prosody/config.ts index 25cc3ea7..56519336 100644 --- a/server/lib/prosody/config.ts +++ b/server/lib/prosody/config.ts @@ -1,6 +1,7 @@ import type { RegisterServerOptions } from '@peertube/peertube-types' import type { Config as XMPPBotConfig } from 'xmppjs-chat-bot' import type { ProsodyLogLevel } from './config/content' +import type { AvatarSet } from '../settings' import * as fs from 'fs' import * as path from 'path' import { getBaseRouterRoute, RegisterServerOptionsV5 } from '../helpers' @@ -31,7 +32,7 @@ async function getProsodyFilePaths (options: RegisterServerOptions): Promise { const { peertubeHelpers, registerSetting, settingsManager } = options @@ -214,6 +216,22 @@ Please read descriptionHTML: loc('theming_advanced_description') }) + registerSetting({ + name: 'avatar-set', + label: loc('avatar_set_label'), + descriptionHTML: loc('avatar_set_description'), + type: 'select', + default: 'sepia' as AvatarSet, + private: true, + options: [ + { value: 'sepia', label: loc('avatar_set_option_sepia') }, + { value: 'legacy', label: loc('avatar_set_option_legacy') } + ] as Array<{ + value: AvatarSet + label: string + }> + }) + registerSetting({ name: 'converse-theme', label: loc('converse_theme_label'), @@ -434,5 +452,6 @@ Please read } export { - initSettings + initSettings, + AvatarSet } diff --git a/support/documentation/content/en/documentation/admin/settings.md b/support/documentation/content/en/documentation/admin/settings.md index b49e7d20..a8fd763e 100644 --- a/support/documentation/content/en/documentation/admin/settings.md +++ b/support/documentation/content/en/documentation/admin/settings.md @@ -92,6 +92,18 @@ Otherwise it could block all anonymous users at once. ## Theming +### {{% livechat_label avatar_set_label %}} + +You can choose from several different sets the default avatars that will be used for chat users. + +{{% livechat_label avatar_set_option_sepia %}}: +![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px) + +{{% livechat_label avatar_set_option_legacy %}}: +![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px) + +If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it. + ### {{% livechat_label converse_theme_label %}} You can choose which theme to use for ConverseJS: diff --git a/support/documentation/content/en/images/avatar_legacy.jpg b/support/documentation/content/en/images/avatar_legacy.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41cdaa45476756f3090e671095caddc51afc6e5b GIT binary patch literal 4297 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 X#EHLc<~;2~G!*LuvhXXNxtRMOnQEt9 literal 0 HcmV?d00001 diff --git a/support/documentation/content/en/images/avatar_sepia.png b/support/documentation/content/en/images/avatar_sepia.png new file mode 100644 index 0000000000000000000000000000000000000000..e626cc370c7f69b7712cbad1f4adf122af591c4c GIT binary patch literal 3167 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 literal 0 HcmV?d00001 diff --git a/support/documentation/po/livechat.ar.po b/support/documentation/po/livechat.ar.po index 53f201a3..27fc5baf 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2024-01-17 11:38+0000\n" "Last-Translator: ButterflyOfFire \n" "Language-Team: Arabic \n" @@ -860,7 +860,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1554,6 +1554,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.ca.po b/support/documentation/po/livechat.ca.po index 96c0ca59..1fbbc222 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Catalan \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.cs.po b/support/documentation/po/livechat.cs.po index 15f293dc..650f44ed 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Czech \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.de.po b/support/documentation/po/livechat.de.po index a6e6f11a..aa888c38 100644 --- a/support/documentation/po/livechat.de.po +++ b/support/documentation/po/livechat.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2024-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-12-27 23:55+0000\n" "Last-Translator: Victor Hampel \n" "Language-Team: German \n" @@ -893,7 +893,9 @@ msgstr "Das Plugin wird von [John Livingston](https://www.john-livingston.fr/) b #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +#, fuzzy +#| msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "Dank an David Revoy für seine Arbeit an dem Peertube Maskottchen, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). Das Charakterdesign steht unter CC-By-Lizenz, und die SVG-Dateien, die zur Erstellung einiger Logos und Avatare in diesem Plugin verwendet werden, sind GPLv3.0." #. type: Plain text @@ -1607,6 +1609,30 @@ msgstr "" msgid "Theming" msgstr "Farbthemen" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, fuzzy +#| msgid "![Livechat installation](/peertube-plugin-livechat/images/installation.png?classes=shadow,border&height=200px)" +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "![Livechat-Installation](/peertube-plugin-livechat/images/installation.png?classes=shadow,border&height=200px)" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, fuzzy +#| msgid "![Livechat installation](/peertube-plugin-livechat/images/installation.png?classes=shadow,border&height=200px)" +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "![Livechat-Installation](/peertube-plugin-livechat/images/installation.png?classes=shadow,border&height=200px)" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.el.po b/support/documentation/po/livechat.el.po index 9e227440..90b6cec3 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Greek \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.en.pot b/support/documentation/po/livechat.en.pot index 66f1d77b..95082678 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -965,7 +965,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md #, markdown-text -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1735,6 +1735,30 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, markdown-text +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, markdown-text +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, markdown-text +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, markdown-text +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md #, markdown-text diff --git a/support/documentation/po/livechat.eo.po b/support/documentation/po/livechat.eo.po index 2f033138..6dba925b 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Esperanto \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.es.po b/support/documentation/po/livechat.es.po index 34f189b0..a9a95644 100644 --- a/support/documentation/po/livechat.es.po +++ b/support/documentation/po/livechat.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2024-01-28 13:01+0000\n" "Last-Translator: rnek0 \n" "Language-Team: Spanish \n" @@ -886,7 +886,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1580,6 +1580,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.eu.po b/support/documentation/po/livechat.eu.po index 26191d5b..29ec14ce 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Basque \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.fa.po b/support/documentation/po/livechat.fa.po index 5512d11a..f5116bc8 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Persian \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.fi.po b/support/documentation/po/livechat.fi.po index 143e6663..56aba8b3 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Finnish \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.fr.po b/support/documentation/po/livechat.fr.po index b7d0f69e..837c372a 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2024-01-03 12:39+0000\n" "Last-Translator: John Livingston \n" "Language-Team: French \n" @@ -893,7 +893,9 @@ msgstr "Le plugin est maintenu par [John Livingston](https://www.john-livingston #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +#, fuzzy +#| msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "Merci à David Revoy pour son travail sur la mascotte de Peertube, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). Le character design est en licence CC-By, et les fichiers SVG utilisés pour créer certains logos et avatars en GPLv3.0." #. type: Plain text @@ -1626,6 +1628,30 @@ msgstr "" msgid "Theming" msgstr "Personnalisation de l'apparence" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, fuzzy +#| msgid "![Livechat installation](/peertube-plugin-livechat/images/installation.png?classes=shadow,border&height=200px)" +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "![Installation livechat](/peertube-plugin-livechat/images/installation.png?classes=shadow,border&height=200px)" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, fuzzy +#| msgid "![Livechat installation](/peertube-plugin-livechat/images/installation.png?classes=shadow,border&height=200px)" +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "![Installation livechat](/peertube-plugin-livechat/images/installation.png?classes=shadow,border&height=200px)" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.gd.po b/support/documentation/po/livechat.gd.po index e2164bf7..e5e5a35b 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Gaelic \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.gl.po b/support/documentation/po/livechat.gl.po index f6c9c769..ba4589cc 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Galician \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.hr.po b/support/documentation/po/livechat.hr.po index 57c54121..cc0943c9 100644 --- a/support/documentation/po/livechat.hr.po +++ b/support/documentation/po/livechat.hr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: peertube-plugin-livechat-documentation VERSION\n" -"POT-Creation-Date: 2024-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Croatian \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.hu.po b/support/documentation/po/livechat.hu.po index aaaf2916..705097b2 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hungarian \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.is.po b/support/documentation/po/livechat.is.po index 065a25ed..aa7fe83d 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Icelandic \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.it.po b/support/documentation/po/livechat.it.po index ebc32eeb..67e1c4b0 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 14:21+0000\n" "Last-Translator: John Livingston \n" "Language-Team: Italian \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.ja.po b/support/documentation/po/livechat.ja.po index d685d90d..d9cd2f9c 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2024-01-28 13:01+0000\n" "Last-Translator: \"T.S\" \n" "Language-Team: Japanese \n" @@ -866,7 +866,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md #, fuzzy -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" "Peertubeのマスコット[Sepia](https://www.davidrevoy.com/index.php?tag/peertube)を制作してくださったDavid Revoy氏に感謝致します。\n" "キャラクターデザインは、CC-Byライセンスであり、本プラグインの一部のロゴとアバターを作成する為に使用されているSVGファイルはGPLv3.0です。" @@ -1563,6 +1563,30 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, fuzzy +#| msgid "![Fullscreen chat screenshot](/peertube-plugin-livechat/images/fullscreen.png?classes=shadow,border&height=200px)" +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "![チャット画面のスクリーンショット](/peertube-plugin-livechat/images/chat.png?classes=shadow,border&height=200px)" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +#, fuzzy +#| msgid "![Fullscreen chat screenshot](/peertube-plugin-livechat/images/fullscreen.png?classes=shadow,border&height=200px)" +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "![チャット画面のスクリーンショット](/peertube-plugin-livechat/images/chat.png?classes=shadow,border&height=200px)" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.kab.po b/support/documentation/po/livechat.kab.po index 5c23be59..598e0bcd 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Kabyle \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.nb.po b/support/documentation/po/livechat.nb.po index 0387b5f0..4f0b5d90 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Norwegian Bokmål \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.nl.po b/support/documentation/po/livechat.nl.po index ebcece71..542a20cc 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Dutch \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.nn.po b/support/documentation/po/livechat.nn.po index 96bf19f4..ea80183a 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Norwegian Nynorsk \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.oc.po b/support/documentation/po/livechat.oc.po index 5c158be8..263c0491 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Occitan \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.pl.po b/support/documentation/po/livechat.pl.po index 7242aae5..377eecca 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Polish \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.pt.po b/support/documentation/po/livechat.pt.po index 7b2854bd..8c5dd60e 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Portuguese \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.ru.po b/support/documentation/po/livechat.ru.po index 5b13caae..578fddce 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Russian \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.sq.po b/support/documentation/po/livechat.sq.po index d757117f..e619c404 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Albanian \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.sv.po b/support/documentation/po/livechat.sv.po index f823ce20..8aa70f67 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.th.po b/support/documentation/po/livechat.th.po index 73e76bed..a565c9c1 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:52+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Thai \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.tok.po b/support/documentation/po/livechat.tok.po index 19c6e6d3..087d679c 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Toki Pona \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.uk.po b/support/documentation/po/livechat.uk.po index 7936a214..a7e26bfb 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Ukrainian \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.vi.po b/support/documentation/po/livechat.vi.po index 754952f8..c00e4134 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Vietnamese \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.zh-Hans.po b/support/documentation/po/livechat.zh-Hans.po index f79e6e49..5d22e487 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Simplified) \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:" diff --git a/support/documentation/po/livechat.zh-Hant.po b/support/documentation/po/livechat.zh-Hant.po index 613dca7f..3a23a960 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-02-07 17:40+0100\n" +"POT-Creation-Date: 2024-02-09 12:40+0100\n" "PO-Revision-Date: 2023-07-17 10:53+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Traditional) \n" @@ -858,7 +858,7 @@ msgstr "" #. type: Plain text #: support/documentation/content/en/credits/_index.md -msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0." +msgid "Thanks to David Revoy for his work on Peertube's mascot, [Sepia](https://www.davidrevoy.com/index.php?tag/peertube). The character design is under CC-By licence, and the SVG files used to create some logo and avatars in this plugin are GPLv3.0. PNG files are under CC-By licences, and comes from the [online Sepia Avatar Generator](https://www.peppercarrot.com/extras/html/2023_peertube-generator/)." msgstr "" #. type: Plain text @@ -1552,6 +1552,26 @@ msgstr "" msgid "Theming" msgstr "" +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "You can choose from several different sets the default avatars that will be used for chat users." +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_sepia %}}: ![Sepia](/peertube-plugin-livechat/images/avatar_sepia.png?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "{{% livechat_label avatar_set_option_legacy %}}: ![Legacy](/peertube-plugin-livechat/images/avatar_legacy.jpg?classes=shadow,border&height=40px)" +msgstr "" + +#. type: Plain text +#: build/documentation/pot_in/documentation/admin/settings.md +msgid "If you can't see the change immediatly, it could be because of your browser cache. Just clear your browser session storage, or restart it." +msgstr "" + #. type: Plain text #: build/documentation/pot_in/documentation/admin/settings.md msgid "You can choose which theme to use for ConverseJS:"