diff --git a/changes/changelog.d/multi-language.doc b/changes/changelog.d/multi-language.doc new file mode 100644 index 000000000..b8508e4b4 --- /dev/null +++ b/changes/changelog.d/multi-language.doc @@ -0,0 +1 @@ +Add ability to translate documentation into multiple languages diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 000000000..62ecf055c --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1,2 @@ +.doctrees/ +_panels_static/ diff --git a/docs/_static/css/translation-hint.css b/docs/_static/css/translation-hint.css new file mode 100644 index 000000000..3dd845326 --- /dev/null +++ b/docs/_static/css/translation-hint.css @@ -0,0 +1,16 @@ +#translation-closer { + float: right; +} + +.translation-hint { + position: fixed; + z-index: 999; + bottom: 20px; + right: 20px; + background-color: #c9c9c9; + padding: 20px; +} + +.translation-hint h1 { + font-size: 20px; +} diff --git a/docs/_static/js/translation-hint.js b/docs/_static/js/translation-hint.js new file mode 100644 index 000000000..ed6dedf40 --- /dev/null +++ b/docs/_static/js/translation-hint.js @@ -0,0 +1,7 @@ +hideTranslationHint = function() { + document.getElementsByClassName("translation-hint")[0].style.display = "none" +} + +window.onload = function() { + document.getElementById("translation-closer").addEventListener("click", hideTranslationHint); +} diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html index 6e9bbe451..d5a1d35f3 100644 --- a/docs/_templates/layout.html +++ b/docs/_templates/layout.html @@ -2,6 +2,16 @@ {% block document %} + {% if language is not none %} +
+ +

Something wrong with the translation?

+

Help us to improve it on our translation platform

+
+ {% endif %} + {% if current_version and current_version.name == "develop" %}

Warning

diff --git a/docs/build_docs.sh b/docs/build_docs.sh index 4fb40928f..7128e6da0 100755 --- a/docs/build_docs.sh +++ b/docs/build_docs.sh @@ -1,6 +1,24 @@ #!/bin/bash -eux -# Building sphinx and swagger docs +# We clean up translations, only fully translated components are kept +IFS=$'\n' + +for i in $(poetry run sphinx-intl stat); do + echo "$i" + if [[ "$i" != *" 0 untranslated." ]]; then + file=$(echo $i | cut -d: -f1) + echo "delete $file" + rm $file + fi +done +# Build sphinx poetry run sphinx-multiversion . $BUILD_PATH +for d in $(ls locales); do + if [[ $d != "gettext" ]]; then + poetry run sphinx-multiversion -D language="$d" . $BUILD_PATH/$d + fi +done + +# Build swagger TARGET_PATH="$BUILD_PATH/swagger" ./build_swagger.sh python ./get-releases-json.py > $BUILD_PATH/releases.json python ./get-releases-json.py --latest > $BUILD_PATH/latest.txt diff --git a/docs/conf.py b/docs/conf.py index 96b9d0347..a132273bf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -20,7 +20,6 @@ import os import sys import datetime -import subprocess sys.path.insert(0, os.path.abspath("../api")) sys.path.insert(0, os.path.abspath("../api/config")) @@ -131,7 +130,13 @@ html_favicon = "../front/public/favicon.png" # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -# html_static_path = ["_static"] +html_static_path = ["_static"] +html_css_files = [ + "css/translation-hint.css", +] +html_js_files = [ + "js/translation-hint.js", +] # -- Options for HTMLHelp output ------------------------------------------ @@ -284,3 +289,7 @@ def setup(app): smv_tag_whitelist = None smv_branch_whitelist = r"(stable|develop)$" + +# Internationalization settings +locale_dirs = ["locales/"] +gettext_compact = False diff --git a/docs/locales/en_GB/LC_MESSAGES/admin/backup.po b/docs/locales/en_GB/LC_MESSAGES/admin/backup.po new file mode 100644 index 000000000..bf86cbd2b --- /dev/null +++ b/docs/locales/en_GB/LC_MESSAGES/admin/backup.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/backup.rst:2 +msgid "Backup your Funkwhale instance" +msgstr "" + +#: ../../admin/backup.rst:6 +msgid "Before upgrading your instance, we strongly advise you to make at least a database backup. Ideally, you should make a full backup, including the database and the media files." +msgstr "" + +#: ../../admin/backup.rst:10 +msgid "Docker setup" +msgstr "" + +#: ../../admin/backup.rst:12 +msgid "If you've followed the setup instructions in :doc:`../installation/docker`, here is the backup path:" +msgstr "" + +#: ../../admin/backup.rst:15 +msgid "Multi-container installation" +msgstr "" + +#: ../../admin/backup.rst:18 +#: ../../admin/backup.rst:51 +msgid "Backup the database" +msgstr "" + +#: ../../admin/backup.rst:20 +msgid "On docker setups, you have to ``pg_dumpall`` in container ``funkwhale_postgres_1``:" +msgstr "" + +#: ../../admin/backup.rst:27 +#: ../../admin/backup.rst:60 +msgid "Backup the media files" +msgstr "" + +#: ../../admin/backup.rst:29 +msgid "To backup docker data volumes, as the volumes are bound mounted to the host, the ``rsync`` way would go like this:" +msgstr "" + +#: ../../admin/backup.rst:38 +#: ../../admin/backup.rst:70 +msgid "Backup the configuration files" +msgstr "" + +#: ../../admin/backup.rst:40 +msgid "On docker setups, the configuration file is located at the root level:" +msgstr "" + +#: ../../admin/backup.rst:48 +msgid "Non-docker setup" +msgstr "" + +#: ../../admin/backup.rst:53 +msgid "On non-docker setups, you have to ``pg_dump`` as user ``postgres``:" +msgstr "" + +#: ../../admin/backup.rst:62 +msgid "A simple way to backup your media files is to use ``rsync``:" +msgstr "" + +#: ../../admin/backup.rst:77 +msgid "You may also want to backup your proxy configuration file." +msgstr "" + +#: ../../admin/backup.rst:79 +msgid "For frequent backups, you may want to use deduplication and compression to keep the backup size low. In this case, a tool like ``borg`` will be more appropriate." +msgstr "" diff --git a/docs/locales/en_US/LC_MESSAGES/admin/backup.po b/docs/locales/en_US/LC_MESSAGES/admin/backup.po new file mode 100644 index 000000000..04223a848 --- /dev/null +++ b/docs/locales/en_US/LC_MESSAGES/admin/backup.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_US\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/backup.rst:2 +msgid "Backup your Funkwhale instance" +msgstr "" + +#: ../../admin/backup.rst:6 +msgid "Before upgrading your instance, we strongly advise you to make at least a database backup. Ideally, you should make a full backup, including the database and the media files." +msgstr "" + +#: ../../admin/backup.rst:10 +msgid "Docker setup" +msgstr "" + +#: ../../admin/backup.rst:12 +msgid "If you've followed the setup instructions in :doc:`../installation/docker`, here is the backup path:" +msgstr "" + +#: ../../admin/backup.rst:15 +msgid "Multi-container installation" +msgstr "" + +#: ../../admin/backup.rst:18 +#: ../../admin/backup.rst:51 +msgid "Backup the database" +msgstr "" + +#: ../../admin/backup.rst:20 +msgid "On docker setups, you have to ``pg_dumpall`` in container ``funkwhale_postgres_1``:" +msgstr "" + +#: ../../admin/backup.rst:27 +#: ../../admin/backup.rst:60 +msgid "Backup the media files" +msgstr "" + +#: ../../admin/backup.rst:29 +msgid "To backup docker data volumes, as the volumes are bound mounted to the host, the ``rsync`` way would go like this:" +msgstr "" + +#: ../../admin/backup.rst:38 +#: ../../admin/backup.rst:70 +msgid "Backup the configuration files" +msgstr "" + +#: ../../admin/backup.rst:40 +msgid "On docker setups, the configuration file is located at the root level:" +msgstr "" + +#: ../../admin/backup.rst:48 +msgid "Non-docker setup" +msgstr "" + +#: ../../admin/backup.rst:53 +msgid "On non-docker setups, you have to ``pg_dump`` as user ``postgres``:" +msgstr "" + +#: ../../admin/backup.rst:62 +msgid "A simple way to backup your media files is to use ``rsync``:" +msgstr "" + +#: ../../admin/backup.rst:77 +msgid "You may also want to backup your proxy configuration file." +msgstr "" + +#: ../../admin/backup.rst:79 +msgid "For frequent backups, you may want to use deduplication and compression to keep the backup size low. In this case, a tool like ``borg`` will be more appropriate." +msgstr "" diff --git a/docs/locales/gettext/admin/0.17.pot b/docs/locales/gettext/admin/0.17.pot new file mode 100644 index 000000000..64b4acb34 --- /dev/null +++ b/docs/locales/gettext/admin/0.17.pot @@ -0,0 +1,390 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/0.17.rst:2 +msgid "About Funkwhale 0.17" +msgstr "" + +#: ../../admin/0.17.rst:4 +msgid "Funkwhale 0.17 is a special version, which contains a lot of breaking changes." +msgstr "" + +#: ../../admin/0.17.rst:6 +msgid "Before doing the upgrade, please read this document carefully." +msgstr "" + +#: ../../admin/0.17.rst:10 +msgid "Overview of the changes" +msgstr "" + +#: ../../admin/0.17.rst:15 +msgid "The what and why are described more thoroughly in this page: https://dev.funkwhale.audio/funkwhale/funkwhale/merge_requests/368" +msgstr "" + +#: ../../admin/0.17.rst:17 +msgid "To sum it up, this release big completely changes the way audio content is managed in Funkwhale. As you may guess, this has a huge impact on the whole project, because audio is at the core of Funkwhale." +msgstr "" + +#: ../../admin/0.17.rst:21 +msgid "Here is a side by side comparison of earlier versions and this release to help you understand the scale of the changes:" +msgstr "" + +#: ../../admin/0.17.rst:25 +msgid "Before" +msgstr "" + +#: ../../admin/0.17.rst:25 +msgid "After" +msgstr "" + +#: ../../admin/0.17.rst:25 +msgid "Reason" +msgstr "" + +#: ../../admin/0.17.rst:27 +msgid "There is one big audio library, managed at the instance level" +msgstr "" + +#: ../../admin/0.17.rst:27 +msgid "Each user can have their own libraries (either public, private or shared at the instance level)" +msgstr "" + +#: ../../admin/0.17.rst:27 +msgid "Managing the library at instance was cumbersome and dangerous: sharing an instance library over federation would quickly pose copyright issues, as well as opening public instances. It also made it impossible to only share a subset of the music." +msgstr "" + +#: ../../admin/0.17.rst:29 +msgid "Users needed a specific permissions from instance owners to upload audio content" +msgstr "" + +#: ../../admin/0.17.rst:29 +msgid "Users can upload music to their own libraries without any specific permissions" +msgstr "" + +#: ../../admin/0.17.rst:29 +msgid "This change makes it easier for new users to start using Funkwhale, and for creators to share their content on the network." +msgstr "" + +#: ../../admin/0.17.rst:31 +msgid "Users with permissions can upload as much content as they want in the instance library" +msgstr "" + +#: ../../admin/0.17.rst:31 +msgid "Users have a storage quota and cannot exceed that storage" +msgstr "" + +#: ../../admin/0.17.rst:31 +msgid "This change gives visibiliy to instance owners about their resource usage. If you host 100 users with a 1Gb quota, you know that your Funkwhale instance will not store more than 100Gb of music files." +msgstr "" + +#: ../../admin/0.17.rst:33 +msgid "N/A" +msgstr "" + +#: ../../admin/0.17.rst:33 +msgid "Users can upload private content or share content with only specific users" +msgstr "" + +#: ../../admin/0.17.rst:33 +msgid "This is a new feature, and we think it will enable users to upload their own music libraries to their instance, without breaking the law or putting their admins in trouble, since their media will remain private." +msgstr "" + +#: ../../admin/0.17.rst:35 +msgid "Youtube Import" +msgstr "" + +#: ../../admin/0.17.rst:35 +#: ../../admin/0.17.rst:37 +msgid "This feature is removed" +msgstr "" + +#: ../../admin/0.17.rst:35 +msgid "This feature posed copyright issues and impacted the credibility of the project, so we removed it." +msgstr "" + +#: ../../admin/0.17.rst:37 +msgid "Music requests" +msgstr "" + +#: ../../admin/0.17.rst:37 +msgid "Since all users can now upload content without specific permissions, we think this feature is less-likely to be useful in its current state." +msgstr "" + +#: ../../admin/0.17.rst:41 +msgid "From a shared, instance-wide library to users libraries" +msgstr "" + +#: ../../admin/0.17.rst:43 +msgid "As you can see, there is a big switch: in earlier versions, each instance had one big library, that was available to all its users. This model don't scale well (especially if you put federation on top of that), because it's an all-or-nothing choice if you want to share it." +msgstr "" + +#: ../../admin/0.17.rst:47 +msgid "Starting from version 0.17, each user will be able to create personal libraries and upload content in those, up to a configurable quota." +msgstr "" + +#: ../../admin/0.17.rst:50 +msgid "Those libraries can have one of the following visibility level:" +msgstr "" + +#: ../../admin/0.17.rst:52 +msgid "**Private**: only the owner of the library can access its content" +msgstr "" + +#: ../../admin/0.17.rst:53 +msgid "**Instance**: users from the same instance can access the library content" +msgstr "" + +#: ../../admin/0.17.rst:54 +msgid "**Public**: everyone (including other instances) can access the library content" +msgstr "" + +#: ../../admin/0.17.rst:56 +msgid "Regardless of this visibility level, library owners can also share them manually with other users, both from the same instance or from the federation." +msgstr "" + +#: ../../admin/0.17.rst:59 +msgid "We think this change will have a really positive impact:" +msgstr "" + +#: ../../admin/0.17.rst:61 +msgid "Admins should be more inclined to open their instance to strangers, because copyrighted media can be upload and shared privately" +msgstr "" + +#: ../../admin/0.17.rst:63 +msgid "Creators should have a better experience when joining the network, because they can now upload their own content and share it over the federation without any admin intervention" +msgstr "" + +#: ../../admin/0.17.rst:65 +msgid "The federation should grow faster, because user libraries can contain copyrighted content and be shared, without putting the admins at risk" +msgstr "" + +#: ../../admin/0.17.rst:69 +msgid "Accessing music" +msgstr "" + +#: ../../admin/0.17.rst:71 +msgid "From an end-user perspective, you will be able to browse any artist or album or track that is known by your instance, but you'll only be able to listen to content that match one of those criteria:" +msgstr "" + +#: ../../admin/0.17.rst:75 +msgid "The content is available is one of your libraries" +msgstr "" + +#: ../../admin/0.17.rst:76 +msgid "The content is available in a public library" +msgstr "" + +#: ../../admin/0.17.rst:77 +msgid "The content is available in one library from your instance that has a visibility level set to \"instance\"" +msgstr "" + +#: ../../admin/0.17.rst:78 +msgid "The content is available in one of the libraries you follow" +msgstr "" + +#: ../../admin/0.17.rst:80 +msgid "Following someone else's library is a four step process:" +msgstr "" + +#: ../../admin/0.17.rst:82 +msgid "Get the library link from its owner" +msgstr "" + +#: ../../admin/0.17.rst:83 +msgid "Use this link on your instance to follow the library" +msgstr "" + +#: ../../admin/0.17.rst:84 +msgid "Wait until your follow request is approved by the library owner" +msgstr "" + +#: ../../admin/0.17.rst:85 +msgid "If this library is unknown on your instance, it will be scanned to import its content, which may take a few minutes" +msgstr "" + +#: ../../admin/0.17.rst:87 +msgid "Libraries owner can revoke follows at any time, which will effectively prevent the ancient follower from accessing the library content." +msgstr "" + +#: ../../admin/0.17.rst:91 +msgid "A brand new federation" +msgstr "" + +#: ../../admin/0.17.rst:93 +msgid "This is more \"under the hood\" work, but the whole federation/ActivityPub logic was rewritten for this release. This new implementation is more spec compliant and should scale better." +msgstr "" + +#: ../../admin/0.17.rst:97 +msgid "The following activities are propagated over federation:" +msgstr "" + +#: ../../admin/0.17.rst:99 +msgid "Library follow creation, accept and reject" +msgstr "" + +#: ../../admin/0.17.rst:100 +msgid "Audio creation and deletion" +msgstr "" + +#: ../../admin/0.17.rst:101 +msgid "Library deletion" +msgstr "" + +#: ../../admin/0.17.rst:104 +msgid "A better import UI" +msgstr "" + +#: ../../admin/0.17.rst:106 +msgid "This version includes a completely new import UI which should make file uploading less annoying. In particular, the UI updates in real-time and has a better error reporting." +msgstr "" + +#: ../../admin/0.17.rst:111 +msgid "A better import engine" +msgstr "" + +#: ../../admin/0.17.rst:113 +msgid "Funkwhale is known for its quircks during music import. Missing covers, split albums, bad management of tracks with multiple artists, missing data for files imported over federation, bad performance, discrepancies between the user-provided tags and what is actually stored in the database..." +msgstr "" + +#: ../../admin/0.17.rst:118 +msgid "This should be greatly improved now, as the whole import logic was rewritten from scratch." +msgstr "" + +#: ../../admin/0.17.rst:121 +msgid "Import is done completely offline and no longer calls the MusicBrainz API, except to retrieve covers if those are not embedded in the imported files. MusicBrainz references are still stored in the database, but we rely solely on the tags from the audio file now." +msgstr "" + +#: ../../admin/0.17.rst:126 +msgid "This has two positive consequences:" +msgstr "" + +#: ../../admin/0.17.rst:128 +msgid "Improved performance for both small and big imports (possibly by a factor of 10)" +msgstr "" + +#: ../../admin/0.17.rst:129 +msgid "More reliable import result: if your file is tagged in a specific way, we will only use tags for the import." +msgstr "" + +#: ../../admin/0.17.rst:132 +msgid "Imports from federation, command-line and UI/API all use the same code, which should greatly reduce the bugs/discrepencies." +msgstr "" + +#: ../../admin/0.17.rst:135 +msgid "Finally, the import engine now understands the difference between a track artist and an album artist, which should put an end to the album splitting issues for tracks that had a different artist than the album artist." +msgstr "" + +#: ../../admin/0.17.rst:140 +msgid "What will break" +msgstr "" + +#: ../../admin/0.17.rst:142 +msgid "If you've read until here, you can probably understand that all of these changes comes at a cost: version 0.17 contains breaking changes, removed features and other changes." +msgstr "" + +#: ../../admin/0.17.rst:146 +msgid "The following features were removed:" +msgstr "" + +#: ../../admin/0.17.rst:148 +msgid "YouTube imports: for copyright reasons, keeping this in the core was not possible" +msgstr "" + +#: ../../admin/0.17.rst:149 +msgid "Music requests: those are now less useful since anyone can upload content" +msgstr "" + +#: ../../admin/0.17.rst:151 +msgid "Also, the current federation will break, as it's absolutely not compatible with what we've built in version 0.17, and maintaining compatibility was simply not possible." +msgstr "" + +#: ../../admin/0.17.rst:154 +msgid "Apart from that, other features should work the same way as they did before." +msgstr "" + +#: ../../admin/0.17.rst:157 +msgid "Migration path" +msgstr "" + +#: ../../admin/0.17.rst:161 +msgid "This migration is huge. Do a backup. Please. The database, and the music files. Please." +msgstr "" + +#: ../../admin/0.17.rst:164 +msgid "I'm not kidding." +msgstr "" + +#: ../../admin/0.17.rst:167 +msgid "Migration will be similar to previous ones, with an additional script to run that will take care of updating existing rows in the database. Especially, this script will be responsible to create a library for each registered user, and to bind content imported by each one to this library." +msgstr "" + +#: ../../admin/0.17.rst:172 +msgid "Libraries created this way will have a different visibility level depending of your instance configuration:" +msgstr "" + +#: ../../admin/0.17.rst:174 +msgid "If your instance requires authentication to access the API / listen to music, libraries will be marked with \"instance\" visibility. As a result, all users from the instance will still be able to listen to all the music of the instance after the migration" +msgstr "" + +#: ../../admin/0.17.rst:177 +msgid "If your instance does not require authentication to access the API / listen to music, libraries will be completely public, allowing anyone to access the content (including federation)" +msgstr "" + +#: ../../admin/0.17.rst:180 +msgid "This script will also contain other database-related operations, but the impact will remain invisible." +msgstr "" + +#: ../../admin/0.17.rst:185 +msgid "Upgrade instructions" +msgstr "" + +#: ../../admin/0.17.rst:187 +msgid "Follow instructions from https://docs.funkwhale.audio/upgrading/index.html, then run the migrations script." +msgstr "" + +#: ../../admin/0.17.rst:190 +msgid "On docker-setups::" +msgstr "" + +#: ../../admin/0.17.rst:196 +msgid "On non docker-setups::" +msgstr "" + +#: ../../admin/0.17.rst:202 +msgid "If the scripts complete without errors, your instance should be updated and ready to use :)" +msgstr "" + +#: ../../admin/0.17.rst:206 +msgid "If you use nginx, ensure your funkwhale_proxy.conf file does not contain this:" +msgstr "" + +#: ../../admin/0.17.rst:208 +msgid "proxy_set_header X-Forwarded-Host $host:$server_port;" +msgstr "" + +#: ../../admin/0.17.rst:210 +msgid "If you have this line present, replace it with:" +msgstr "" + +#: ../../admin/0.17.rst:212 +msgid "proxy_set_header X-Forwarded-Host $host;" +msgstr "" + +#: ../../admin/0.17.rst:214 +msgid "And reload your nginx server." +msgstr "" diff --git a/docs/locales/gettext/admin/backup.pot b/docs/locales/gettext/admin/backup.pot new file mode 100644 index 000000000..114711102 --- /dev/null +++ b/docs/locales/gettext/admin/backup.pot @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/backup.rst:2 +msgid "Backup your Funkwhale instance" +msgstr "" + +#: ../../admin/backup.rst:6 +msgid "Before upgrading your instance, we strongly advise you to make at least a database backup. Ideally, you should make a full backup, including the database and the media files." +msgstr "" + +#: ../../admin/backup.rst:10 +msgid "Docker setup" +msgstr "" + +#: ../../admin/backup.rst:12 +msgid "If you've followed the setup instructions in :doc:`../installation/docker`, here is the backup path:" +msgstr "" + +#: ../../admin/backup.rst:15 +msgid "Multi-container installation" +msgstr "" + +#: ../../admin/backup.rst:18 +#: ../../admin/backup.rst:51 +msgid "Backup the database" +msgstr "" + +#: ../../admin/backup.rst:20 +msgid "On docker setups, you have to ``pg_dumpall`` in container ``funkwhale_postgres_1``:" +msgstr "" + +#: ../../admin/backup.rst:27 +#: ../../admin/backup.rst:60 +msgid "Backup the media files" +msgstr "" + +#: ../../admin/backup.rst:29 +msgid "To backup docker data volumes, as the volumes are bound mounted to the host, the ``rsync`` way would go like this:" +msgstr "" + +#: ../../admin/backup.rst:38 +#: ../../admin/backup.rst:70 +msgid "Backup the configuration files" +msgstr "" + +#: ../../admin/backup.rst:40 +msgid "On docker setups, the configuration file is located at the root level:" +msgstr "" + +#: ../../admin/backup.rst:48 +msgid "Non-docker setup" +msgstr "" + +#: ../../admin/backup.rst:53 +msgid "On non-docker setups, you have to ``pg_dump`` as user ``postgres``:" +msgstr "" + +#: ../../admin/backup.rst:62 +msgid "A simple way to backup your media files is to use ``rsync``:" +msgstr "" + +#: ../../admin/backup.rst:77 +msgid "You may also want to backup your proxy configuration file." +msgstr "" + +#: ../../admin/backup.rst:79 +msgid "For frequent backups, you may want to use deduplication and compression to keep the backup size low. In this case, a tool like ``borg`` will be more appropriate." +msgstr "" diff --git a/docs/locales/gettext/admin/commands.pot b/docs/locales/gettext/admin/commands.pot new file mode 100644 index 000000000..ab56796f4 --- /dev/null +++ b/docs/locales/gettext/admin/commands.pot @@ -0,0 +1,150 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/commands.rst:2 +msgid "Management commands" +msgstr "" + +#: ../../admin/commands.rst:5 +msgid "User management" +msgstr "" + +#: ../../admin/commands.rst:7 +msgid "It's possible to create, remove and update users directly from the command line." +msgstr "" + +#: ../../admin/commands.rst:9 +msgid "This feature is useful if you want to experiment, automate or perform batch actions that would be too repetitive through the web UI." +msgstr "" + +#: ../../admin/commands.rst:12 +msgid "All users-related commands are available under the ``python manage.py fw users`` namespace:" +msgstr "" + +#: ../../admin/commands.rst:21 +msgid "Creation" +msgstr "" + +#: ../../admin/commands.rst:38 +msgid "Additional options are available to further configure the user during creation, such as setting permissions or user quota. Please refer to the command help." +msgstr "" + +#: ../../admin/commands.rst:43 +msgid "Update" +msgstr "" + +#: ../../admin/commands.rst:73 +msgid "Deletion" +msgstr "" + +#: ../../admin/commands.rst:93 +msgid "Pruning library" +msgstr "" + +#: ../../admin/commands.rst:95 +msgid "Because Funkwhale is a multi-user and federated audio server, we don't delete any artist, album and track objects in the database when you delete the corresponding files." +msgstr "" + +#: ../../admin/commands.rst:98 +msgid "This is on purpose, because those objects may be referenced in user playlists, favorites, listening history or on other instances, or other users could have upload files matching linked to those entities in their own private libraries." +msgstr "" + +#: ../../admin/commands.rst:102 +msgid "Therefore, Funkwhale has a really conservative approach and doesn't delete metadata when audio files are deleted." +msgstr "" + +#: ../../admin/commands.rst:105 +msgid "This behaviour can be problematic in some situations though, e.g. if you imported a lot of wrongly tagged files, then deleted the files to reimport them later." +msgstr "" + +#: ../../admin/commands.rst:108 +msgid "To help with that, we provide a management you can run on the server and that will effectively prune you library from track, album and artist metadata that is not tied to any file:" +msgstr "" + +#: ../../admin/commands.rst:128 +msgid "The ``prune_library`` command will not delete anything by default, and only gives you an estimate of how many database objects would be affected by the pruning." +msgstr "" + +#: ../../admin/commands.rst:131 +msgid "Once you have reviewed the output and are comfortable with the changes, you should rerun the command with the ``--no-dry-run`` flag to disable dry run mode and actually apply the changes on the database." +msgstr "" + +#: ../../admin/commands.rst:137 +#: ../../admin/commands.rst:169 +msgid "Running this command with ``--no-dry-run`` is irreversible. Unless you have a backup, there will be no way to retrieve the deleted data." +msgstr "" + +#: ../../admin/commands.rst:142 +msgid "The command will exclude tracks that are favorited, included in playlists or listening history by default. If you want to include those in the pruning process as well, add the corresponding ``--ignore-favorites``, ``--ignore-playlists`` and ``--ignore-listenings`` flags." +msgstr "" + +#: ../../admin/commands.rst:148 +msgid "Remove obsolete files from database" +msgstr "" + +#: ../../admin/commands.rst:150 +msgid "When importing using the :ref:`in-place method `, if you move or remove in-place imported files on disk, Funkwhale will still have a reference to those files and won't be able to serve them properly." +msgstr "" + +#: ../../admin/commands.rst:154 +msgid "To help with that, whenever you remove or move files that were previously imported with the ``--in-place`` flag, you can run the following command::" +msgstr "" + +#: ../../admin/commands.rst:159 +msgid "This command will loop through all the database objects that reference an in-place imported file, check that the file is accessible on disk, or delete the database object if it's not." +msgstr "" + +#: ../../admin/commands.rst:163 +msgid "Once you have reviewed the output and are comfortable with the changes, you should rerun the command with the ``--no-dry-run`` flag to disable dry run mode and actually delete the database objects." +msgstr "" + +#: ../../admin/commands.rst:173 +msgid "Adding tags from tracks" +msgstr "" + +#: ../../admin/commands.rst:175 +msgid "By default, genre tags found imported files are associated with the corresponding track." +msgstr "" + +#: ../../admin/commands.rst:177 +msgid "While you can always associate genre information with an artist or album through the web UI, it may be tedious to do so by hand for a large number of objects." +msgstr "" + +#: ../../admin/commands.rst:180 +msgid "We offer a command you can run after an import to do this for you. It will:" +msgstr "" + +#: ../../admin/commands.rst:182 +msgid "Find all local artists or albums with no tags" +msgstr "" + +#: ../../admin/commands.rst:183 +msgid "Get all the tags associated with the corresponding tracks" +msgstr "" + +#: ../../admin/commands.rst:184 +msgid "Associate tags that are found on all tracks to the corresponding artist or album" +msgstr "" + +#: ../../admin/commands.rst:186 +msgid "..note::" +msgstr "" + +#: ../../admin/commands.rst:190 +msgid "Usage:" +msgstr "" diff --git a/docs/locales/gettext/admin/configuration.pot b/docs/locales/gettext/admin/configuration.pot new file mode 100644 index 000000000..c40debfc4 --- /dev/null +++ b/docs/locales/gettext/admin/configuration.pot @@ -0,0 +1,706 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/configuration.rst:2 +msgid "Instance configuration" +msgstr "" + +#: ../../admin/configuration.rst:4 +msgid "General configuration is achieved using two type of settings:" +msgstr "" + +#: ../../admin/configuration.rst:6 +msgid ":ref:`environment variables ` and" +msgstr "" + +#: ../../admin/configuration.rst:7 +msgid ":ref:`instance settings `." +msgstr "" + +#: ../../admin/configuration.rst:12 +msgid "Environment variables" +msgstr "" + +#: ../../admin/configuration.rst:14 +msgid "Those are located in your ``.env`` file, which you should have created during installation. A full list of available variables is given :ref:`below `." +msgstr "" + +#: ../../admin/configuration.rst:17 +msgid "Options from this file are heavily commented, and usually target lower level and technical aspects of your instance, such as database credentials." +msgstr "" + +#: ../../admin/configuration.rst:22 +msgid "You should restart all Funkwhale processes when you change the values on environment variables::" +msgstr "" + +#: ../../admin/configuration.rst:30 +msgid "Some characters are unsafe to use in configuration variables that are URLs, such as the user and password in the database and SMTP sections. If those variables contain such characters, they must be urlencoded, for instance using the following command::" +msgstr "" + +#: ../../admin/configuration.rst:37 +msgid "See as well https://github.com/joke2k/django-environ#using-unsafe-characters-in-urls" +msgstr "" + +#: ../../admin/configuration.rst:42 +msgid "Instance settings" +msgstr "" + +#: ../../admin/configuration.rst:44 +msgid "These settings are stored in the database and do not require a restart of your instance after modification. They typically relate to higher level configuration, such your instance description, signup policy and so on." +msgstr "" + +#: ../../admin/configuration.rst:48 +msgid "You can edit those settings directly from the web application, assuming you have the required permissions. The URL is ``/manage/settings``, and you will also find a link to this page in the sidebar." +msgstr "" + +#: ../../admin/configuration.rst:52 +msgid "If you plan to use acoustid and external imports (e.g. with the YouTube backends), you should edit the corresponding settings in this interface." +msgstr "" + +#: ../../admin/configuration.rst:58 +msgid "If you have any issue with the web application, a management interface is also available for those settings from :doc:`Django's administration interface `. It's less user friendly, though, and we recommend you use the web app interface whenever possible." +msgstr "" + +#: ../../admin/configuration.rst:63 +msgid "The URL should be ``/api/admin/dynamic_preferences/globalpreferencemodel/`` (prepend your domain in front of it, of course)." +msgstr "" + +#: ../../admin/configuration.rst:67 +msgid "Configuration reference" +msgstr "" + +#: ../../admin/configuration.rst:70 +msgid "Pod" +msgstr "" + +#: ../../docstring of config.settings.common.FUNKWHALE_HOSTNAME:1 +msgid "Hostname of your Funkwhale pod, e.g. ``mypod.audio``" +msgstr "" + +#: ../../docstring of config.settings.common.FUNKWHALE_PROTOCOL:1 +msgid "Protocol end users will use to access your pod, either ``http`` or ``https``." +msgstr "" + +#: ../../admin/configuration.rst:77 +msgid "Database and redis" +msgstr "" + +#: ../../docstring of config.settings.common.DATABASE_URL:1 +msgid "URL to connect to the PostgreSQL database. Examples:" +msgstr "" + +#: ../../docstring of config.settings.common.DATABASE_URL:3 +msgid "``postgresql://funkwhale@:5432/funkwhale``" +msgstr "" + +#: ../../docstring of config.settings.common.DATABASE_URL:4 +msgid "``postgresql://:@:/``" +msgstr "" + +#: ../../docstring of config.settings.common.DATABASE_URL:5 +msgid "``postgresql://funkwhale:passw0rd@localhost:5432/funkwhale_database``" +msgstr "" + +#: ../../docstring of config.settings.common.DB_CONN_MAX_AGE:1 +msgid "Max time, in seconds, before database connections are closed." +msgstr "" + +#: ../../docstring of config.settings.common.CACHE_URL:1 +msgid "URL to your redis server. Examples:" +msgstr "" + +#: ../../docstring of config.settings.common.CACHE_URL:3 +msgid "``redis://:/``" +msgstr "" + +#: ../../docstring of config.settings.common.CACHE_URL:4 +#: ../../docstring of config.settings.common.CELERY_BROKER_URL:7 +msgid "``redis://127.0.0.1:6379/0``" +msgstr "" + +#: ../../docstring of config.settings.common.CACHE_URL:5 +msgid "``redis://:password@localhost:6379/0``" +msgstr "" + +#: ../../docstring of config.settings.common.CACHE_URL:6 +msgid "for password auth (the extra semicolon is important) - ``redis:///run/redis/redis.sock?db=0`` over unix sockets" +msgstr "" + +#: ../../docstring of config.settings.common.CACHE_URL:11 +msgid "If you want to use Redis over unix sockets, you'll also need to update :attr:`CELERY_BROKER_URL`" +msgstr "" + +#: ../../docstring of config.settings.common.CELERY_BROKER_URL:1 +msgid "URL to celery's task broker. Defaults to :attr:`CACHE_URL`, so you shouldn't have to tweak this, unless you want to use a different one, or use Redis sockets to connect." +msgstr "" + +#: ../../docstring of config.settings.common.CELERY_BROKER_URL:5 +msgid "Exemple:" +msgstr "" + +#: ../../docstring of config.settings.common.CELERY_BROKER_URL:8 +msgid "``redis+socket:///run/redis/redis.sock?virtual_host=0``" +msgstr "" + +#: ../../admin/configuration.rst:88 +msgid "Accounts and registration" +msgstr "" + +#: ../../docstring of config.settings.common.ACCOUNT_EMAIL_VERIFICATION_ENFORCE:1 +msgid "Determine wether users need to verify their e-mail address before using the service. Enabling this can be useful to reduce spam or bots accounts, however, you'll need to configure a mail server so that your users can receive the verification e-mails, using :attr:`EMAIL_CONFIG`." +msgstr "" + +#: ../../docstring of config.settings.common.ACCOUNT_EMAIL_VERIFICATION_ENFORCE:5 +#: ../../docstring of config.settings.common.ACCOUNT_EMAIL_VERIFICATION_ENFORCE:7 +msgid "Note that regardless of the setting value, superusers created through the command line will never require verification." +msgstr "" + +#: ../../docstring of config.settings.common.USERS_INVITATION_EXPIRATION_DAYS:1 +msgid "Expiration delay, in days, for user invitations." +msgstr "" + +#: ../../docstring of config.settings.common.DISABLE_PASSWORD_VALIDATORS:1 +msgid "Wether to disable password validators (length, common words, similarity with username…) used during regitration." +msgstr "" + +#: ../../docstring of config.settings.common.ACCOUNT_USERNAME_BLACKLIST:1 +msgid "List of usernames that will be unavailable during registration, given as a list of strings." +msgstr "" + +#: ../../docstring of config.settings.common.AUTH_LDAP_ENABLED:1 +msgid "Wether to enable LDAP authentication." +msgstr "" + +#: ../../docstring of config.settings.common.AUTH_LDAP_ENABLED:3 +msgid "See :doc:`/installation/ldap` for more information." +msgstr "" + +#: ../../admin/configuration.rst:102 +msgid "Media storage and serving" +msgstr "" + +#: ../../docstring of config.settings.common.MEDIA_URL:1 +msgid "URL where media files are served. The default value should work fine on most configurations, but could can tweak this if you are hosting media files on a separate domain, or if you host Funkwhale on a non-standard port." +msgstr "" + +#: ../../docstring of config.settings.common.MEDIA_ROOT:1 +msgid "Path where media files (such as album covers or audio tracks) are stored on your system. Ensure this directory actually exists." +msgstr "" + +#: ../../docstring of config.settings.common.PROXY_MEDIA:1 +msgid "Wether to proxy audio files through your reverse proxy. It's recommended to keep this on, as a way to enforce access control, however, if you're using S3 storage with :attr:`AWS_QUERYSTRING_AUTH`, it's safe to disable it." +msgstr "" + +#: ../../docstring of config.settings.common.EXTERNAL_MEDIA_PROXY_ENABLED:1 +msgid "Wether to proxy attachment files hosted on third party pods and and servers. Keeping this to true is recommended, to reduce leaking browsing information of your users, and reduce the bandwidth used on remote pods." +msgstr "" + +#: ../../docstring of config.settings.common.ATTACHMENTS_UNATTACHED_PRUNE_DELAY:1 +msgid "Delay in seconds before uploaded but unattached attachements are pruned from the system." +msgstr "" + +#: ../../docstring of config.settings.common.REVERSE_PROXY_TYPE:1 +msgid "Depending on the reverse proxy used in front of your funkwhale instance, the API will use different kind of headers to serve audio files" +msgstr "" + +#: ../../docstring of config.settings.common.REVERSE_PROXY_TYPE:4 +msgid "Allowed values: ``nginx``, ``apache2``" +msgstr "" + +#: ../../docstring of config.settings.common.PROTECT_FILES_PATH:1 +msgid "Which path will be used to process the internal redirection to the reverse proxy **DO NOT** put a slash at the end." +msgstr "" + +#: ../../docstring of config.settings.common.PROTECT_FILES_PATH:4 +msgid "You shouldn't have to tweak this." +msgstr "" + +#: ../../admin/configuration.rst:117 +msgid "Audio acquisition" +msgstr "" + +#: ../../docstring of config.settings.common.MUSIC_DIRECTORY_PATH:1 +msgid "The path on your server where Funkwhale can import files using :ref:`in-place import `. It must be readable by the webserver and Funkwhale api and worker processes." +msgstr "" + +#: ../../docstring of config.settings.common.MUSIC_DIRECTORY_PATH:5 +msgid "On docker installations, we recommend you use the default of ``/music`` for this value. For non-docker installation, you can use any absolute path. ``/srv/funkwhale/data/music`` is a safe choice if you don't know what to use." +msgstr "" + +#: ../../docstring of config.settings.common.MUSIC_DIRECTORY_PATH:9 +#: ../../docstring of config.settings.common.MUSIC_DIRECTORY_SERVE_PATH:16 +msgid "This path should not include any trailing slash." +msgstr "" + +#: ../../docstring of config.settings.common.MUSIC_DIRECTORY_PATH:13 +msgid "You need to adapt your :ref:`reverse proxy configuration ` to serve the directory pointed by ``MUSIC_DIRECTORY_PATH`` on ``/_protected/music`` URL." +msgstr "" + +#: ../../docstring of config.settings.common.MUSIC_DIRECTORY_SERVE_PATH:1 +msgid "Default: :attr:`MUSIC_DIRECTORY_PATH`" +msgstr "" + +#: ../../docstring of config.settings.common.MUSIC_DIRECTORY_SERVE_PATH:3 +msgid "When using Docker, the value of :attr:`MUSIC_DIRECTORY_PATH` in your containers may differ from the real path on your host. Assuming you have the following directive in your :file:`docker-compose.yml` file::" +msgstr "" + +#: ../../docstring of config.settings.common.MUSIC_DIRECTORY_SERVE_PATH:11 +msgid "Then, the value of :attr:`MUSIC_DIRECTORY_SERVE_PATH` should be ``/srv/funkwhale/data/music``. This must be readable by the webserver." +msgstr "" + +#: ../../docstring of config.settings.common.MUSIC_DIRECTORY_SERVE_PATH:14 +msgid "On non-docker setup, you don't need to configure this setting." +msgstr "" + +#: ../../admin/configuration.rst:123 +msgid "S3 Storage" +msgstr "" + +#: ../../docstring of config.settings.common.AWS_QUERYSTRING_AUTH:1 +msgid "Whether to include signatures in S3 urls, as a way to enforce access-control." +msgstr "" + +#: ../../docstring of config.settings.common.AWS_QUERYSTRING_AUTH:3 +msgid "Defaults to the inverse of :attr:`PROXY_MEDIA`." +msgstr "" + +#: ../../docstring of config.settings.common.AWS_QUERYSTRING_EXPIRE:1 +msgid "Expiration delay, in seconds, of signatures generated when :attr:`AWS_QUERYSTRING_AUTH` is enabled." +msgstr "" + +#: ../../docstring of config.settings.common.AWS_ACCESS_KEY_ID:1 +msgid "Access-key ID for your S3 storage." +msgstr "" + +#: ../../docstring of config.settings.common.AWS_SECRET_ACCESS_KEY:1 +msgid "Secret access key for your S3 storage." +msgstr "" + +#: ../../docstring of config.settings.common.AWS_STORAGE_BUCKET_NAME:1 +msgid "Bucket name of your S3 storage." +msgstr "" + +#: ../../docstring of config.settings.common.AWS_S3_CUSTOM_DOMAIN:1 +msgid "Custom domain to use for your S3 storage." +msgstr "" + +#: ../../docstring of config.settings.common.AWS_S3_ENDPOINT_URL:1 +msgid "If you use a S3-compatible storage such as minio, set the following variable to the full URL to the storage server. Example:" +msgstr "" + +#: ../../docstring of config.settings.common.AWS_S3_ENDPOINT_URL:4 +msgid "``https://minio.mydomain.com``" +msgstr "" + +#: ../../docstring of config.settings.common.AWS_S3_ENDPOINT_URL:5 +msgid "``https://s3.wasabisys.com``" +msgstr "" + +#: ../../docstring of config.settings.common.AWS_S3_REGION_NAME:1 +msgid "If you are using Amazon S3 to serve media directly, you will need to specify your region name in order to access files." +msgstr "" + +#: ../../docstring of config.settings.common.AWS_S3_REGION_NAME:4 +#: ../../docstring of config.settings.common.THROTTLING_RATES:5 +#: ../../docstring of config.settings.common.MUSICBRAINZ_HOSTNAME:4 +msgid "Example:" +msgstr "" + +#: ../../docstring of config.settings.common.AWS_S3_REGION_NAME:6 +msgid "``eu-west-2``" +msgstr "" + +#: ../../docstring of config.settings.common.AWS_LOCATION:1 +msgid "An optional bucket subdirectory were you want to store the files. This is especially useful if you plan to use share the bucket with other services." +msgstr "" + +#: ../../admin/configuration.rst:136 +msgid "API configuration" +msgstr "" + +#: ../../docstring of config.settings.common.THROTTLING_ENABLED:1 +msgid "Wether to enable throttling (also known as rate-limiting). Leaving this enabled is recommended especially on public pods, to improve the quality of service." +msgstr "" + +#: ../../docstring of config.settings.common.THROTTLING_RATES:1 +msgid "Throttling rates for specific endpoints and features of the app. You can tweak this if you are encountering to severe rate limiting issues or, on the contrary, if you want to reduce the consumption on some endpoints." +msgstr "" + +#: ../../docstring of config.settings.common.THROTTLING_RATES:7 +msgid "``signup=5/d,password-reset=2/d,anonymous-reports=5/d``" +msgstr "" + +#: ../../docstring of config.settings.common.ADMIN_URL:1 +msgid "Path to the Django admin area." +msgstr "" + +#: ../../docstring of config.settings.common.ADMIN_URL:3 +msgid "Examples:" +msgstr "" + +#: ../../docstring of config.settings.common.ADMIN_URL:5 +msgid "``^api/admin/``" +msgstr "" + +#: ../../docstring of config.settings.common.ADMIN_URL:6 +msgid "``^api/mycustompath/``" +msgstr "" + +#: ../../docstring of config.settings.common.EXTERNAL_REQUESTS_VERIFY_SSL:1 +msgid "Wether to enforce HTTPS certificates verification when doing outgoing HTTP requests (typically with federation). Disabling this is not recommended." +msgstr "" + +#: ../../docstring of config.settings.common.EXTERNAL_REQUESTS_TIMEOUT:1 +msgid "Default timeout for external requests." +msgstr "" + +#: ../../admin/configuration.rst:145 +msgid "Federation" +msgstr "" + +#: ../../docstring of config.settings.common.FEDERATION_OBJECT_FETCH_DELAY:1 +msgid "Delay, in minutes, before a remote object will be automatically refetched when accessed in the UI." +msgstr "" + +#: ../../docstring of config.settings.common.FEDERATION_DUPLICATE_FETCH_DELAY:1 +msgid "Delay, in seconds, between two manual fetch of the same remote object." +msgstr "" + +#: ../../admin/configuration.rst:151 +msgid "Metadata" +msgstr "" + +#: ../../docstring of config.settings.common.TAGS_MAX_BY_OBJ:1 +msgid "Maximum number of tags that can be associated with an object. Extra tags will be ignored." +msgstr "" + +#: ../../docstring of config.settings.common.MUSICBRAINZ_HOSTNAME:1 +msgid "Use this setting to change the MusicBrainz hostname, for instance to use a mirror. The hostname can also contain a port number." +msgstr "" + +#: ../../docstring of config.settings.common.MUSICBRAINZ_HOSTNAME:6 +msgid "``mymusicbrainz.mirror``" +msgstr "" + +#: ../../docstring of config.settings.common.MUSICBRAINZ_HOSTNAME:7 +msgid "``localhost:5000``" +msgstr "" + +#: ../../docstring of config.settings.common.MUSICBRAINZ_CACHE_DURATION:1 +msgid "How long to cache MusicBrainz results, in seconds." +msgstr "" + +#: ../../admin/configuration.rst:158 +msgid "Channels and podcasts" +msgstr "" + +#: ../../docstring of config.settings.common.PODCASTS_RSS_FEED_REFRESH_DELAY:1 +msgid "Delay, in seconds, between two fetch of RSS feeds." +msgstr "" + +#: ../../docstring of config.settings.common.PODCASTS_RSS_FEED_REFRESH_DELAY:3 +msgid "Reducing this mean you'll receive new episodes faster, but will require more resources." +msgstr "" + +#: ../../docstring of config.settings.common.PODCASTS_RSS_FEED_MAX_ITEMS:1 +msgid "Maximum number of RSS items to load in each podcast feed." +msgstr "" + +#: ../../docstring of config.settings.common.PODCASTS_THIRD_PARTY_VISIBILITY:1 +msgid "By default, only people who subscribe to a podcast RSS will have access to their episodes." +msgstr "" + +#: ../../docstring of config.settings.common.PODCASTS_THIRD_PARTY_VISIBILITY:4 +msgid "Switch to \"instance\" or \"everyone\" to change that." +msgstr "" + +#: ../../docstring of config.settings.common.PODCASTS_THIRD_PARTY_VISIBILITY:6 +msgid "Changing it only affect new podcasts." +msgstr "" + +#: ../../admin/configuration.rst:165 +msgid "Subsonic" +msgstr "" + +#: ../../docstring of config.settings.common.SUBSONIC_DEFAULT_TRANSCODING_FORMAT:1 +msgid "Default format for transcoding when using Subsonic API." +msgstr "" + +#: ../../admin/configuration.rst:170 +msgid "Email configuration" +msgstr "" + +#: ../../docstring of config.settings.common.EMAIL_CONFIG:1 +msgid "SMTP configuration for sending e-mails. Possible values:" +msgstr "" + +#: ../../docstring of config.settings.common.EMAIL_CONFIG:3 +msgid "``EMAIL_CONFIG=consolemail://``: output e-mails to console (the default)" +msgstr "" + +#: ../../docstring of config.settings.common.EMAIL_CONFIG:4 +msgid "``EMAIL_CONFIG=dummymail://``: disable e-mail sending completely" +msgstr "" + +#: ../../docstring of config.settings.common.EMAIL_CONFIG:6 +msgid "On a production instance, you'll usually want to use an external SMTP server:" +msgstr "" + +#: ../../docstring of config.settings.common.EMAIL_CONFIG:8 +msgid "``EMAIL_CONFIG=smtp://user@:password@youremail.host:25``" +msgstr "" + +#: ../../docstring of config.settings.common.EMAIL_CONFIG:9 +msgid "``EMAIL_CONFIG=smtp+ssl://user@:password@youremail.host:465``" +msgstr "" + +#: ../../docstring of config.settings.common.EMAIL_CONFIG:10 +msgid "``EMAIL_CONFIG=smtp+tls://user@:password@youremail.host:587``" +msgstr "" + +#: ../../docstring of config.settings.common.EMAIL_CONFIG:14 +msgid "If ``user`` or ``password`` contain special characters (eg. ``noreply@youremail.host`` as ``user``), be sure to urlencode them, using for example the command: ``python3 -c 'import urllib.parse; print(urllib.parse.quote_plus (\"noreply@youremail.host\"))'`` (returns ``noreply%40youremail.host``)" +msgstr "" + +#: ../../docstring of config.settings.common.DEFAULT_FROM_EMAIL:1 +msgid "Name and e-mail address used to send system e-mails." +msgstr "" + +#: ../../docstring of config.settings.common.DEFAULT_FROM_EMAIL:3 +msgid "Default: ``Funkwhale ``" +msgstr "" + +#: ../../docstring of config.settings.common.DEFAULT_FROM_EMAIL:7 +msgid "Both the forms ``Funkwhale `` and ``noreply@yourdomain`` work." +msgstr "" + +#: ../../docstring of config.settings.common.EMAIL_SUBJECT_PREFIX:1 +msgid "Subject prefix for system e-mails." +msgstr "" + +#: ../../admin/configuration.rst:179 +msgid "Other settings" +msgstr "" + +#: ../../docstring of config.settings.common.INSTANCE_SUPPORT_MESSAGE_DELAY:1 +msgid "Delay after signup, in days, before the \"support your pod\" message is shown." +msgstr "" + +#: ../../docstring of config.settings.common.FUNKWHALE_SUPPORT_MESSAGE_DELAY:1 +msgid "Delay after signup, in days, before the \"support Funkwhale\" message is shown." +msgstr "" + +#: ../../docstring of config.settings.common.MIN_DELAY_BETWEEN_DOWNLOADS_COUNT:1 +msgid "Minimum required period, in seconds, for two downloads of the same track by the same IP or user to be recorded in statistics." +msgstr "" + +#: ../../docstring of config.settings.common.MARKDOWN_EXTENSIONS:1 +msgid "List of markdown extensions to enable." +msgstr "" + +#: ../../docstring of config.settings.common.MARKDOWN_EXTENSIONS:3 +msgid "See ``_." +msgstr "" + +#: ../../docstring of config.settings.common.LINKIFIER_SUPPORTED_TLDS:1 +msgid "Additional TLDs to support with our markdown linkifier." +msgstr "" + +#: ../../admin/configuration.rst:188 +msgid "User permissions" +msgstr "" + +#: ../../admin/configuration.rst:190 +msgid "Funkwhale's permission model works as follows:" +msgstr "" + +#: ../../admin/configuration.rst:192 +msgid "Anonymous users cannot do anything unless configured specifically;" +msgstr "" + +#: ../../admin/configuration.rst:193 +msgid "Logged-in users can use the application, but cannot do things that affect the whole instance;" +msgstr "" + +#: ../../admin/configuration.rst:194 +msgid "Superusers can do anything." +msgstr "" + +#: ../../admin/configuration.rst:196 +msgid "To make things more granular and allow some delegation of responsibility, superusers can grant specific permissions to specific users. Available permissions are:" +msgstr "" + +#: ../../admin/configuration.rst:200 +msgid "**Manage instance-level settings**: users with this permission can edit instance settings as described in :ref:`instance-settings`;" +msgstr "" + +#: ../../admin/configuration.rst:202 +msgid "**Manage library**: users with this permission can import new music in the instance;" +msgstr "" + +#: ../../admin/configuration.rst:204 +msgid "**Manage library federation**: users with this permission can ask to federate with other instances, and accept/deny federation requests from other instances." +msgstr "" + +#: ../../admin/configuration.rst:207 +msgid "There is no dedicated interface to manage users permissions, but superusers can login on the :doc:`Django's admin ` at ``/api/admin/`` and grant permissions to users at ``/api/admin/users/user/``." +msgstr "" + +#: ../../admin/configuration.rst:212 +msgid "Front-end settings" +msgstr "" + +#: ../../admin/configuration.rst:214 +msgid "We offer a basic mechanism to customize the behavior and look and feel of Funkwhale's Web UI. To use any of the options below, you will need to create a custom JSON configuration file and serve it on ``https://yourinstanceurl/settings.json``." +msgstr "" + +#: ../../admin/configuration.rst:218 +msgid "On typical deployments, this url returns a 404 error, which is simply ignored." +msgstr "" + +#: ../../admin/configuration.rst:221 +msgid "Set-up" +msgstr "" + +#: ../../admin/configuration.rst:223 +msgid "First, create the settings file:" +msgstr "" + +#: ../../admin/configuration.rst:241 +msgid "Once the ``settings.json`` file is created, you will need to serve it from your reverse proxy." +msgstr "" + +#: ../../admin/configuration.rst:243 +msgid "If you are using nginx, add the following snippet to your vhost configuration::" +msgstr "" + +#: ../../admin/configuration.rst:249 +msgid "On Apache, add the following to your vhost configuration::" +msgstr "" + +#: ../../admin/configuration.rst:253 +msgid "Then, reload your reverse proxy." +msgstr "" + +#: ../../admin/configuration.rst:255 +msgid "At this point, visiting ``https://yourinstanceurl/settings.json`` should serve the content of the settings.json file." +msgstr "" + +#: ../../admin/configuration.rst:260 +msgid "The settings.json file must be a valid JSON file. If you have any issue, try linting the file with a tool such as ``_ to detect potential syntax issues." +msgstr "" + +#: ../../admin/configuration.rst:265 +msgid "Available configuration options" +msgstr "" + +#: ../../admin/configuration.rst:267 +msgid "Your :file:`settings.json` can contain the following options:" +msgstr "" + +#: ../../admin/configuration.rst:270 +msgid "Name" +msgstr "" + +#: ../../admin/configuration.rst:270 +msgid "Type" +msgstr "" + +#: ../../admin/configuration.rst:270 +msgid "Example value" +msgstr "" + +#: ../../admin/configuration.rst:270 +msgid "Description" +msgstr "" + +#: ../../admin/configuration.rst:272 +msgid "``additionalStylesheets``" +msgstr "" + +#: ../../admin/configuration.rst:272 +msgid "Array of URLs" +msgstr "" + +#: ../../admin/configuration.rst:272 +msgid "``[\"https://test/theme.css\"]`` (default: ``[]``)" +msgstr "" + +#: ../../admin/configuration.rst:272 +msgid "A list of stylesheets URL (absolute or relative) that the web UI should load. see the \"Theming\" section below for a detailed explanation" +msgstr "" + +#: ../../admin/configuration.rst:277 +msgid "``defaultServerUrl``" +msgstr "" + +#: ../../admin/configuration.rst:277 +msgid "URL" +msgstr "" + +#: ../../admin/configuration.rst:277 +msgid "``\"https://api.yourdomain.com\"`` (default: ``null``)" +msgstr "" + +#: ../../admin/configuration.rst:277 +msgid "The URL of the API server this front-end should connect with. If null, the UI will use the value of VUE_APP_INSTANCE_URL (specified during build) or fallback to the current domain" +msgstr "" + +#: ../../admin/configuration.rst:283 +msgid "Missing options or options with a ``null`` value in the ``settings.json`` file are ignored." +msgstr "" + +#: ../../admin/configuration.rst:286 +msgid "Theming" +msgstr "" + +#: ../../admin/configuration.rst:288 +msgid "To theme your Funkwhale instance, you need:" +msgstr "" + +#: ../../admin/configuration.rst:290 +msgid "A CSS file for your theme, that can be loaded by the front-end;" +msgstr "" + +#: ../../admin/configuration.rst:291 +msgid "To update the value of ``additionalStylesheets`` in your settings.json file to point to your CSS file URL." +msgstr "" + +#: ../../admin/configuration.rst:308 +msgid "The last step to make this work is to ensure your CSS file is served by the reverse proxy." +msgstr "" + +#: ../../admin/configuration.rst:310 +msgid "On nginx, add the following snippet to your vhost config::" +msgstr "" + +#: ../../admin/configuration.rst:316 +msgid "On Apache, use the following::" +msgstr "" + +#: ../../admin/configuration.rst:326 +msgid "Once done, reload your reverse proxy, refresh Funkwhale in your web browser, and you should see a red background." +msgstr "" + +#: ../../admin/configuration.rst:331 +msgid "You can reference external urls as well in ``additionalStylesheets``, simply use the full urls. Be especially careful with external urls as they may affect your users privacy." +msgstr "" + +#: ../../admin/configuration.rst:337 +msgid "Loading additional stylesheets and CSS rules can affect the performance and usability of your instance. If you encounter issues with the interfaces and use custom stylesheets, try to disable those to ensure the issue is not caused by your customizations." +msgstr "" diff --git a/docs/locales/gettext/admin/debugging.pot b/docs/locales/gettext/admin/debugging.pot new file mode 100644 index 000000000..6a7bf6d0a --- /dev/null +++ b/docs/locales/gettext/admin/debugging.pot @@ -0,0 +1,81 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/debugging.rst:2 +msgid "Debugging Funkwhale" +msgstr "" + +#: ../../admin/debugging.rst:4 +msgid "In order to track down errors its useful to provide as many information as possible. Usually pasting the logs should be sufficient, but there are some tools for some deeper debugging." +msgstr "" + +#: ../../admin/debugging.rst:8 +msgid "Frontend Logs" +msgstr "" + +#: ../../admin/debugging.rst:10 +msgid "Logs and errors written by the Frontend can be accessed with Firefox. When opening the website of your Funkwhale instance, simply hit ``Ctlr + Shift + J``. Alternatively open the Firefox Menu and open the Browser Console in the developers menu." +msgstr "" + +#: ../../admin/debugging.rst:14 +msgid "In the opening window you can see all the output. You can copy what you want to share or repeat the failing operation to see what error occurs." +msgstr "" + +#: ../../admin/debugging.rst:18 +msgid "Backend Logs" +msgstr "" + +#: ../../admin/debugging.rst:20 +msgid "Depending on your setup you can see the logs from our API server in different ways." +msgstr "" + +#: ../../admin/debugging.rst:23 +msgid "Docker" +msgstr "" + +#: ../../admin/debugging.rst:25 +msgid "Simply run ``docker-compose logs --tail=100 api`` If you want continuous logs, add the ``f`` flag." +msgstr "" + +#: ../../admin/debugging.rst:28 +msgid "Quick install" +msgstr "" + +#: ../../admin/debugging.rst:30 +msgid "To get the logs, run ``journalctl -xn -u funkwhale-server``" +msgstr "" + +#: ../../admin/debugging.rst:33 +msgid "Profiling" +msgstr "" + +#: ../../admin/debugging.rst:35 +msgid "In order to find performance issues, its possible to run API requests with activated profiling. In order to do this, add ``funkwhale_api.common.middleware.ProfilerMiddleware`` to the environment variable ``ADDITIONAL_MIDDLEWARES_BEFORE``" +msgstr "" + +#: ../../admin/debugging.rst:39 +msgid "If enabled, simply add ``?prof`` to the request URL you want to profile. You should get an HTML-Report of the running request." +msgstr "" + +#: ../../admin/debugging.rst:43 +msgid "Memory Tracing" +msgstr "" + +#: ../../admin/debugging.rst:45 +msgid "Its possible to print memory traces for each API request to the API logs. In order to do this, add ``funkwhale_api.common.middleware.PymallocMiddleware`` to the environment variable ``ADDITIONAL_MODDLEWARES_BEFORE`` This adds a middleware which should not do anything by default. Tracing can be activated by setting ``PYTHONTRACEMALLOC=1`` This might has some inpact on the performance, please report how it goes. The Middleware now prints the top 25 memory allocations to the API logs." +msgstr "" diff --git a/docs/locales/gettext/admin/django.pot b/docs/locales/gettext/admin/django.pot new file mode 100644 index 000000000..d5d5ad439 --- /dev/null +++ b/docs/locales/gettext/admin/django.pot @@ -0,0 +1,165 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/django.rst:2 +msgid "Using the Django Administration Backend" +msgstr "" + +#: ../../admin/django.rst:4 +msgid "Funkwhale is being actively developed, and new features are being added to the frontend all the time. However, there are some administrative tasks that can only be undertaken in the Django Administration backend." +msgstr "" + +#: ../../admin/django.rst:7 +msgid "Deleting items on the backend is **not** recommended. Deletions performed on the backend are permanent. If you remove something in the backend, you will need to re-add it from scratch." +msgstr "" + +#: ../../admin/django.rst:10 +msgid "Accessing the Django Backend" +msgstr "" + +#: ../../admin/django.rst:12 +msgid "To access your instance's backend, navigate to ``https://yourdomain/api/admin``. You will be prompted to log in. By default, the login details will be those of the priviliged user created during the setup process." +msgstr "" + +#: ../../admin/django.rst:15 +msgid "Deleting Items" +msgstr "" + +#: ../../admin/django.rst:17 +msgid "By default, deleting items in the front end removes the file from the server but **does not** delete associated entities such as artists, albums, and track data, meaning that they will still be viewable but no longer playable. Items deleted in this way will also still count on the instance statistics. To remove them completely, it is necessary to remove them from the database entirely using the Django Administration backend." +msgstr "" + +#: ../../admin/django.rst:20 +msgid "Deleting tracks, albums, or artists will also remove them completely from any associated playlists, radios, or favorites lists. Before continuing, make sure other users on the instance are aware of the deletion(s)." +msgstr "" + +#: ../../admin/django.rst:23 +msgid "Deleting a Track" +msgstr "" + +#: ../../admin/django.rst:25 +msgid "Navigate to ``https://yourdomain/api/admin/music/track``" +msgstr "" + +#: ../../admin/django.rst:26 +msgid "Select the track(s) you wish to delete" +msgstr "" + +#: ../../admin/django.rst:27 +#: ../../admin/django.rst:35 +#: ../../admin/django.rst:47 +#: ../../admin/django.rst:61 +msgid "In the ``Action`` dropdown menu, select \"Delete Selected Items\"" +msgstr "" + +#: ../../admin/django.rst:28 +msgid "Click on \"Go\". You will be prompted to confirm the track's deletion" +msgstr "" + +#: ../../admin/django.rst:31 +msgid "Deleting an Album" +msgstr "" + +#: ../../admin/django.rst:33 +#: ../../admin/django.rst:69 +msgid "Navigate to ``https://yourdomain/api/admin/music/album``" +msgstr "" + +#: ../../admin/django.rst:34 +msgid "Select the album(s) you wish to delete" +msgstr "" + +#: ../../admin/django.rst:36 +msgid "Click on \"Go\". You will be prompted to confirm the album's deletion" +msgstr "" + +#: ../../admin/django.rst:40 +msgid "Deleting an album will remove all tracks associated with the album" +msgstr "" + +#: ../../admin/django.rst:43 +msgid "Deleting an Artist" +msgstr "" + +#: ../../admin/django.rst:45 +msgid "Navigate to ``https://yourdomain/api/admin/music/artist``" +msgstr "" + +#: ../../admin/django.rst:46 +msgid "Select the artist(s) you wish to delete" +msgstr "" + +#: ../../admin/django.rst:48 +msgid "Click on \"Go\". You will be prompted to confirm the artist's deletion" +msgstr "" + +#: ../../admin/django.rst:52 +msgid "Deleting an artist will remove all tracks and albums associated with the artist" +msgstr "" + +#: ../../admin/django.rst:55 +msgid "Removing a Followed Library" +msgstr "" + +#: ../../admin/django.rst:57 +msgid "In Funkwhale, unfollowing a library will leave the items in place but inaccessible. To completely remove them:" +msgstr "" + +#: ../../admin/django.rst:59 +msgid "Navigate to ``https://yourdomain/api/admin/music/library/``" +msgstr "" + +#: ../../admin/django.rst:60 +msgid "Tick the box next to the library you wish to remove" +msgstr "" + +#: ../../admin/django.rst:62 +msgid "Click on \"Go\". You will be prompted to confirm the library's deletion" +msgstr "" + +#: ../../admin/django.rst:65 +msgid "Adding Missing Album Art" +msgstr "" + +#: ../../admin/django.rst:67 +msgid "Sometimes album art can fail to appear despite music being properly tagged. When this happens, it is possible to replace the missing art." +msgstr "" + +#: ../../admin/django.rst:70 +msgid "Search for and select the album in question" +msgstr "" + +#: ../../admin/django.rst:71 +msgid "Find the item marked \"Cover\"" +msgstr "" + +#: ../../admin/django.rst:72 +msgid "Click \"Browse\" and select the file from your computer" +msgstr "" + +#: ../../admin/django.rst:73 +msgid "Click \"Save\" to confirm the changes" +msgstr "" + +#: ../../admin/django.rst:75 +msgid "The album art will now be present on the frontend." +msgstr "" + +#: ../../admin/django.rst:79 +msgid "You can also clear currently loaded album art by checking the checkbox next to the current item and selecting \"Clear\"" +msgstr "" diff --git a/docs/locales/gettext/admin/external-storages.pot b/docs/locales/gettext/admin/external-storages.pot new file mode 100644 index 000000000..1ef76cc8c --- /dev/null +++ b/docs/locales/gettext/admin/external-storages.pot @@ -0,0 +1,161 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/external-storages.rst:2 +msgid "Using external storages to store Funkwhale content" +msgstr "" + +#: ../../admin/external-storages.rst:4 +msgid "By default, Funkwhale will store user-uploaded and related media such as audio files, transcoded files, avatars and album covers on a server directory." +msgstr "" + +#: ../../admin/external-storages.rst:7 +msgid "However, for bigger instances or more complex deployment scenarios, you may want to use distributed or external storages." +msgstr "" + +#: ../../admin/external-storages.rst:11 +msgid "S3 and S3-compatible servers" +msgstr "" + +#: ../../admin/external-storages.rst:15 +msgid "This feature was released in Funkwhale 0.19 and is still considered experimental. Please let us know if you see anything unusual while using it." +msgstr "" + +#: ../../admin/external-storages.rst:18 +msgid "Funkwhale supports storing media files Amazon S3 and compatible implementations such as Minio or Wasabi." +msgstr "" + +#: ../../admin/external-storages.rst:20 +msgid "In this scenario, the content itself is stored in the S3 bucket. Non-sensitive media such as album covers or user avatars are served directly from the bucket. However, audio files are still served by the reverse proxy, to enforce proper authentication." +msgstr "" + +#: ../../admin/external-storages.rst:24 +msgid "To enable S3 on Funkwhale, add the following environment variables::" +msgstr "" + +#: ../../admin/external-storages.rst:38 +msgid "Then, edit your nginx configuration. On docker setups, the file is located at ``/srv/funkwhale/nginx/funkwhale.template``, and at ``/etc/nginx/sites-available/funkwhale.template`` on non-docker setups." +msgstr "" + +#: ../../admin/external-storages.rst:41 +msgid "Replace the ``location /_protected/media`` block with the following::" +msgstr "" + +#: ../../admin/external-storages.rst:50 +msgid "Add your S3 store URL to the ``img-src`` and ``media-src`` headers" +msgstr "" + +#: ../../admin/external-storages.rst:56 +msgid "Then restart Funkwhale and nginx." +msgstr "" + +#: ../../admin/external-storages.rst:58 +msgid "From now on, media files will be stored on the S3 bucket you configured. If you already had media files before configuring the S3 bucket, you also have to move those on the bucket by hand (which is outside the scope of this guide)." +msgstr "" + +#: ../../admin/external-storages.rst:64 +msgid "At the moment, we do not support S3 when using Apache as a reverse proxy." +msgstr "" + +#: ../../admin/external-storages.rst:68 +msgid "If you are attempting to integrate your docker deployment with an existing nginx webserver, such as the one provided by `linuxserver/swag `_ (formerly `linuxserver/letsencrypt `_), you may run into an issue where an additional ``Content-Security-Policy`` header appears in responses from the server, without the newly included S3 URL values." +msgstr "" + +#: ../../admin/external-storages.rst:74 +msgid "In this case, you can suppress the extraneous ``Content-Security-Policy`` header by specifying it in a ``proxy_hide_header`` `directive `_ in the ``location /`` block." +msgstr "" + +#: ../../admin/external-storages.rst:89 +msgid "Serving audio files directly from the bucket" +msgstr "" + +#: ../../admin/external-storages.rst:91 +msgid "Depending on your setup, you may want to serve audio files directly from the S3 bucket instead of proxying them through Funkwhale, e.g to reduce the bandwidth consumption on your server, or get better performance." +msgstr "" + +#: ../../admin/external-storages.rst:95 +msgid "You can achieve that by adding ``PROXY_MEDIA=false`` to your ``.env`` file." +msgstr "" + +#: ../../admin/external-storages.rst:97 +msgid "When receiving a request on the stream endpoint, Funkwhale will check for authentication and permissions, then issue a 302 redirect to the file URL in the bucket." +msgstr "" + +#: ../../admin/external-storages.rst:100 +msgid "This URL is actually be visible by the client, but contains a signature valid only for one hour, to ensure no one can reuse this URL or share it publicly to distribute unauthorized content." +msgstr "" + +#: ../../admin/external-storages.rst:105 +msgid "If you are using Amazon S3, you will need to set your ``AWS_S3_REGION_NAME`` in the ``.env`` file to use this feature." +msgstr "" + +#: ../../admin/external-storages.rst:110 +msgid "Since some Subsonic clients don't support 302 redirections, Funkwhale will ignore the ``PROXY_MEDIA`` setting and always proxy file when accessed through the Subsonic API." +msgstr "" + +#: ../../admin/external-storages.rst:115 +msgid "Securing your S3 bucket" +msgstr "" + +#: ../../admin/external-storages.rst:117 +msgid "It's important to ensure your the root of your bucket doesn't list its content, which is the default on many S3 servers. Otherwise, anyone could find out the true URLs of your audio files and bypass authentication." +msgstr "" + +#: ../../admin/external-storages.rst:121 +msgid "To avoid that, you can set the following policy on your bucket::" +msgstr "" + +#: ../../admin/external-storages.rst:144 +msgid "If you are using ``awscli``, you can store this policy in a ``/tmp/policy`` file, and apply it using the following command::" +msgstr "" + +#: ../../admin/external-storages.rst:150 +msgid "Troubleshooting" +msgstr "" + +#: ../../admin/external-storages.rst:153 +msgid "No Resolver Found" +msgstr "" + +#: ../../admin/external-storages.rst:155 +msgid "Depending on your setup, you may experience the following issue when trying to stream music directly from your S3-compatible store." +msgstr "" + +#: ../../admin/external-storages.rst:162 +msgid "This happpens when the nginx config is unable to use your server's DNS resolver. This issue is still under investigation, but in the meantime can be worked around by specifying a resolver in your ``funkwhale.template`` under the ``location ~/_protected/media/(.+)`` section." +msgstr "" + +#: ../../admin/external-storages.rst:176 +msgid "No Images or Media Loading" +msgstr "" + +#: ../../admin/external-storages.rst:178 +msgid "If you are serving media from an S3-compatible store, you may experience an issue where nothing loads in the front end. The error logs in your browser may show something like the following:" +msgstr "" + +#: ../../admin/external-storages.rst:187 +msgid "This happens when your S3 store isn't defined in the ``Content-Security-Policy`` headers in your Nginx files. To resolve the issue, add the base URL of your S3 store to the ``img-src`` and ``media-src`` headers and reload nginx." +msgstr "" + +#: ../../admin/external-storages.rst:196 +msgid "Broken Images in Audio Player On Page Reload" +msgstr "" + +#: ../../admin/external-storages.rst:198 +msgid "If you are serving media directly from an S3-compatible store, you may find that images in the queue and the player won't load after the page is refreshed. This happens if the generated URL has expired and the authorization is no longer valid. You can extend the expiry time using the following setting in your ``.env`` file:" +msgstr "" diff --git a/docs/locales/gettext/admin/importing-music.pot b/docs/locales/gettext/admin/importing-music.pot new file mode 100644 index 000000000..ca2255ba3 --- /dev/null +++ b/docs/locales/gettext/admin/importing-music.pot @@ -0,0 +1,273 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/importing-music.rst:2 +msgid "Importing music from the server" +msgstr "" + +#: ../../admin/importing-music.rst:4 +msgid "Funkwhale can import music files saved on the server assuming they are readable by the Funkwhale application. Your music files should contain at least ``artist``, ``album`` and ``title`` tags, but we recommend you tag extensively using a proper tool, such as Beets or Musicbrainz Picard." +msgstr "" + +#: ../../admin/importing-music.rst:11 +msgid "Funkwhale supports two different import modes:" +msgstr "" + +#: ../../admin/importing-music.rst:13 +msgid "copy(default): files are copied into Funkwhale's internal storage. This means importing a 1GB library will result in the same amount of space being used by Funkwhale." +msgstr "" + +#: ../../admin/importing-music.rst:14 +msgid ":ref:`in-place ` (with ``--in-place`` flag): files are referenced in Funkwhale's DB but not copied or touched in anyway. This is useful if you have a huge library, or one that is updated by an external tool such as Beets." +msgstr "" + +#: ../../admin/importing-music.rst:16 +msgid "Regardless of the mode you choose, follow the below steps to import music, assuming your files are located in ``/srv/funkwhale/data/music``:" +msgstr "" + +#: ../../admin/importing-music.rst:27 +msgid "You have to create a library in the Web UI to get your library ID. Simply visit https://yourdomain/content/libraries/ to create one." +msgstr "" + +#: ../../admin/importing-music.rst:30 +msgid "Library IDs are part of the library url or sharing link. For example, the library ID of https://funkwhale.instance/content/libraries/769a2ae3-eb3d-4aff-9f94-2c4d80d5c2d1, is 769a2bc3-eb1d-4aff-9f84-2c4d80d5c2d1" +msgstr "" + +#: ../../admin/importing-music.rst:35 +msgid "You can use only the first characters of the ID when calling the command, like that: ``export LIBRARY_ID=\"769a2bc3\"``" +msgstr "" + +#: ../../admin/importing-music.rst:38 +msgid "When you use docker, ``/srv/funkwhale/data/music`` is mounted from the host to the ``/music`` directory on the container:" +msgstr "" + +#: ../../admin/importing-music.rst:46 +msgid "When you installed Funkwhale via ansible, you need to call a script instead of Python, and the folder path must be adapted accordingly:" +msgstr "" + +#: ../../admin/importing-music.rst:54 +msgid "The import command supports several options, check the help for details::" +msgstr "" + +#: ../../admin/importing-music.rst:61 +msgid "We recommend tagging your music collection using `Picard `_ to have the best quality metadata." +msgstr "" + +#: ../../admin/importing-music.rst:65 +msgid "This command is idempotent, meaning you can run it multiple times on the same files and already imported files are simply skipped." +msgstr "" + +#: ../../admin/importing-music.rst:71 +msgid "At the moment, only Flac, OGG/Vorbis and MP3 or AIFF files with ID3 tags are supported." +msgstr "" + +#: ../../admin/importing-music.rst:77 +msgid "In-place import" +msgstr "" + +#: ../../admin/importing-music.rst:79 +msgid "By default, the CLI-importer will copy imported files to Funkwhale's internal storage. This means importing a 1GB library will result in the same amount of space being used by Funkwhale." +msgstr "" + +#: ../../admin/importing-music.rst:83 +msgid "While this behaviour has some benefits (easier backups and configuration), it is not always the best choice, especially if you have a huge library to import and don't want to double your disk usage." +msgstr "" + +#: ../../admin/importing-music.rst:88 +msgid "The CLI importer supports an additional ``--in-place`` option through which Funkwhale will store file paths rather than file content." +msgstr "" + +#: ../../admin/importing-music.rst:92 +msgid "Structure" +msgstr "" + +#: ../../admin/importing-music.rst:94 +msgid "Because imported files are not managed by Funkwhale, we offer additional configuration options to ensure the webserver can serve them properly:" +msgstr "" + +#: ../../admin/importing-music.rst:98 +msgid ":data:`MUSIC_DIRECTORY_PATH `" +msgstr "" + +#: ../../admin/importing-music.rst:99 +msgid ":data:`MUSIC_DIRECTORY_SERVING_PATH `" +msgstr "" + +#: ../../admin/importing-music.rst:101 +msgid "We recommend you symlink all your music directories into ``/srv/funkwhale/data/music`` and run the `import_files` command from that directory. This will make it possible to use multiple music directories without any additional configuration on the webserver side." +msgstr "" + +#: ../../admin/importing-music.rst:106 +msgid "For instance, if you have an NFS share with your music mounted at ``/media/mynfsshare``, you can create a symlink like this::" +msgstr "" + +#: ../../admin/importing-music.rst:112 +msgid "And import music from the share::" +msgstr "" + +#: ../../admin/importing-music.rst:118 +msgid "Docker" +msgstr "" + +#: ../../admin/importing-music.rst:120 +msgid "Docker setups require a bit more work, because while the ``/srv/funkwhale/data/music`` is mounted in containers, symlinked directories are not." +msgstr "" + +#: ../../admin/importing-music.rst:124 +msgid "To fix that, you can use bind mounts instead of symbolic links, as they replicate the source directory tree. With the previous NFS share, use this command::" +msgstr "" + +#: ../../admin/importing-music.rst:130 +msgid "If you want to go with symlinks, ensure each symlinked directory is mounted as a volume as well as in your ``docker-compose.yml`` file::" +msgstr "" + +#: ../../admin/importing-music.rst:149 +msgid "Metadata updates" +msgstr "" + +#: ../../admin/importing-music.rst:151 +msgid "When doing an import with in ``in-place`` mode, the importer will also check and update existing entries found in the database. For instance, if the ID3 Title tag of an existing song was updated since the last scan, Funkwhale picks up the new title. The following fields can be updated this way:" +msgstr "" + +#: ../../admin/importing-music.rst:156 +msgid "Track mbid" +msgstr "" + +#: ../../admin/importing-music.rst:157 +msgid "Track title" +msgstr "" + +#: ../../admin/importing-music.rst:158 +msgid "Track position and disc number" +msgstr "" + +#: ../../admin/importing-music.rst:159 +msgid "Track license and copyright" +msgstr "" + +#: ../../admin/importing-music.rst:160 +msgid "Track genre (`from version 1.2 `_)" +msgstr "" + +#: ../../admin/importing-music.rst:161 +msgid "Album cover" +msgstr "" + +#: ../../admin/importing-music.rst:162 +msgid "Album title" +msgstr "" + +#: ../../admin/importing-music.rst:163 +msgid "Album mbid" +msgstr "" + +#: ../../admin/importing-music.rst:164 +msgid "Album release date" +msgstr "" + +#: ../../admin/importing-music.rst:165 +msgid "Artist name" +msgstr "" + +#: ../../admin/importing-music.rst:166 +msgid "Artist mbid" +msgstr "" + +#: ../../admin/importing-music.rst:167 +msgid "Album artist name" +msgstr "" + +#: ../../admin/importing-music.rst:168 +msgid "Album artist mbid" +msgstr "" + +#: ../../admin/importing-music.rst:170 +msgid "Changes in artist name can lead to multiple artists with the same name in the database, `this is a known issue `_ and can be remedied by adding mbids." +msgstr "" + +#: ../../admin/importing-music.rst:175 +msgid "React to filesystem events with ``--watch``" +msgstr "" + +#: ../../admin/importing-music.rst:177 +msgid "If you have a really big library or update it regularly, running the ``import_files`` command by hand may not be practical. For this use case, the ``import_files`` command supports a ``--watch`` flag through which it observes filesystem events instead of performing a full import." +msgstr "" + +#: ../../admin/importing-music.rst:183 +msgid "File creation, move, update and removal are handled when ``--watch`` is provided:" +msgstr "" + +#: ../../admin/importing-music.rst:186 +msgid "Files created in the watched directory are imported immediately" +msgstr "" + +#: ../../admin/importing-music.rst:187 +msgid "If using ``in-place`` mode, files updates trigger a metadata update on the corresponding entries" +msgstr "" + +#: ../../admin/importing-music.rst:188 +msgid "If using ``in-place`` mode, files that are moved and known by Funkwhale will see their path updated in Funkwhale's DB" +msgstr "" + +#: ../../admin/importing-music.rst:189 +msgid "If using ``in-place`` mode, files that are removed and known by Funkwhale will be removed from Funkwhale's DB" +msgstr "" + +#: ../../admin/importing-music.rst:192 +msgid "Pruning dangling metadata with ``--prune``" +msgstr "" + +#: ../../admin/importing-music.rst:194 +msgid "Funkwhale is, by design, conservative with music metadata in its database. If you remove a file from Funkwhale's DB, the corresponding artist, album and track object won't be deleted by default." +msgstr "" + +#: ../../admin/importing-music.rst:198 +msgid "If you want to prune dangling metadata from the database once the ``import_files`` command is over, simply add the ``--prune`` flag. This also works in with ``--watch``." +msgstr "" + +#: ../../admin/importing-music.rst:202 +msgid "Album covers" +msgstr "" + +#: ../../admin/importing-music.rst:204 +msgid "Whenever possible, Funkwhale obtains album covers for tracks, with the following precedence:" +msgstr "" + +#: ../../admin/importing-music.rst:207 +msgid "The cover embedded in the audio files themeselves, if any (Flac/MP3 only)" +msgstr "" + +#: ../../admin/importing-music.rst:208 +msgid "Use a cover.jpg or a cover.png file from the imported track directory, if any" +msgstr "" + +#: ../../admin/importing-music.rst:209 +msgid "Fetch cover art from musicbrainz, assuming the file is tagged correctly" +msgstr "" + +#: ../../admin/importing-music.rst:212 +msgid "Getting demo tracks" +msgstr "" + +#: ../../admin/importing-music.rst:214 +msgid "If you do not have any music on your server but want to test the import process, you can call the following methods to download a few albums licenced under creative commons (courtesy of Jamendo):" +msgstr "" + +#: ../../admin/importing-music.rst:226 +msgid "This will download a bunch of zip archives (one per album) under the ``data/music`` directory and unzip their content." +msgstr "" diff --git a/docs/locales/gettext/admin/index.pot b/docs/locales/gettext/admin/index.pot new file mode 100644 index 000000000..e24e935a4 --- /dev/null +++ b/docs/locales/gettext/admin/index.pot @@ -0,0 +1,37 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/index.rst:2 +msgid "Administrator Documentation" +msgstr "" + +#: ../../admin/index.rst:4 +msgid "This documentation is targeted at administrators of instances. This typically refers to the person(s) responsible for running the server and managing the software on a technical level." +msgstr "" + +#: ../../admin/index.rst:9 +msgid "Setup Guides" +msgstr "" + +#: ../../admin/index.rst:25 +msgid "Administration" +msgstr "" + +#: ../../admin/index.rst:37 +msgid "Troubleshooting" +msgstr "" diff --git a/docs/locales/gettext/admin/ldap.pot b/docs/locales/gettext/admin/ldap.pot new file mode 100644 index 000000000..248a5bcec --- /dev/null +++ b/docs/locales/gettext/admin/ldap.pot @@ -0,0 +1,113 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/ldap.rst:2 +msgid "LDAP configuration" +msgstr "" + +#: ../../admin/ldap.rst:4 +msgid "LDAP is a protocol for providing directory services, in practice allowing a central authority for user login information." +msgstr "" + +#: ../../admin/ldap.rst:6 +msgid "Funkwhale supports LDAP through the Django LDAP authentication module and by setting several configuration options." +msgstr "" + +#: ../../admin/ldap.rst:10 +msgid "Note that LDAP-based users cannot change their password inside the app." +msgstr "" + +#: ../../admin/ldap.rst:13 +msgid "Dependencies" +msgstr "" + +#: ../../admin/ldap.rst:15 +msgid "LDAP support requires some additional dependencies to enable. On the OS level both ``libldap2-dev`` and ``libsasl2-dev`` are required, and the Python modules ``python-ldap`` and ``python-django-auth-ldap`` must be installed. These dependencies are all included in the ``requirements.*`` files so deploying with those will install these dependencies by default. However, they are not required unless LDAP support is explicitly enabled." +msgstr "" + +#: ../../admin/ldap.rst:18 +msgid "Environment variables" +msgstr "" + +#: ../../admin/ldap.rst:20 +msgid "LDAP authentication is configured entirely through the environment variables. The following options enable the LDAP features:" +msgstr "" + +#: ../../admin/ldap.rst:23 +msgid "Basic features" +msgstr "" + +#: ../../admin/ldap.rst:25 +msgid "``LDAP_ENABLED``: Set to ``True`` to enable LDAP support. Default: ``False``." +msgstr "" + +#: ../../admin/ldap.rst:26 +msgid "``LDAP_SERVER_URI``: LDAP URI to the authentication server, e.g. ``ldap://my.host:389``." +msgstr "" + +#: ../../admin/ldap.rst:27 +msgid "``LDAP_BIND_DN``: LDAP user DN to bind as to perform searches." +msgstr "" + +#: ../../admin/ldap.rst:28 +msgid "``LDAP_BIND_PASSWORD``: LDAP user password for bind DN." +msgstr "" + +#: ../../admin/ldap.rst:29 +msgid "``LDAP_SEARCH_FILTER``: The LDAP user filter, using ``{0}`` as the username placeholder, e.g. ``(|(cn={0})(mail={0}))``; uses standard LDAP search syntax. Default: ``(uid={0})``." +msgstr "" + +#: ../../admin/ldap.rst:30 +msgid "``LDAP_START_TLS``: Set to ``True`` to enable LDAP StartTLS support. Default: ``False``." +msgstr "" + +#: ../../admin/ldap.rst:31 +msgid "``LDAP_ROOT_DN``: The LDAP search root DN, e.g. ``dc=my,dc=domain,dc=com``; supports multiple entries in a space-delimited list, e.g. ``dc=users,dc=domain,dc=com dc=admins,dc=domain,dc=com``." +msgstr "" + +#: ../../admin/ldap.rst:32 +msgid "``LDAP_USER_ATTR_MAP``: A mapping of Django user attributes to LDAP values, e.g. ``first_name:givenName, last_name:sn, username:cn, email:mail``. Default: ``first_name:givenName, last_name:sn, username:cn, email:mail``." +msgstr "" + +#: ../../admin/ldap.rst:33 +msgid "``AUTH_LDAP_BIND_AS_AUTHENTICATING_USER``: Controls whether direct binding is used. Default: ``False``." +msgstr "" + +#: ../../admin/ldap.rst:36 +msgid "Group features" +msgstr "" + +#: ../../admin/ldap.rst:38 +msgid "For details on these options, see the `Django documentation `_. Group configuration is disabled unless an ``LDAP_GROUP_DN`` is set. This is an advanced LDAP feature and most users should not need to configure these settings." +msgstr "" + +#: ../../admin/ldap.rst:40 +msgid "``LDAP_GROUP_DN``: The LDAP group search root DN, e.g. ``ou=groups,dc=domain,dc=com``." +msgstr "" + +#: ../../admin/ldap.rst:41 +msgid "``LDAP_GROUP_FILTER``: The LDAP group filter, e.g. ``(objectClass=groupOfNames)``." +msgstr "" + +#: ../../admin/ldap.rst:42 +msgid "``LDAP_REQUIRE_GROUP``: A group users must be a part of to authenticate, e.g. ``cn=enabled,ou=groups,dc=domain,dc=com``." +msgstr "" + +#: ../../admin/ldap.rst:43 +msgid "``LDAP_DENY_GROUP``: A group users must not be a part of to authenticate, e.g. ``cn=disabled,ou=groups,dc=domain,dc=com``." +msgstr "" diff --git a/docs/locales/gettext/admin/migration.pot b/docs/locales/gettext/admin/migration.pot new file mode 100644 index 000000000..edf6fc3f1 --- /dev/null +++ b/docs/locales/gettext/admin/migration.pot @@ -0,0 +1,122 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/migration.rst:2 +msgid "Migrating to a New Server" +msgstr "" + +#: ../../admin/migration.rst:4 +msgid "Sometimes, it may be necessary or desirable to migrate your existing Funkwhale setup to a new server. This can be helpful if you need to boost resources or if you wish to use a different hosting platform." +msgstr "" + +#: ../../admin/migration.rst:9 +msgid "In this guide, the existing Funkwhale setup is called the origin server, and the new setup the destination server." +msgstr "" + +#: ../../admin/migration.rst:12 +msgid "Requirements" +msgstr "" + +#: ../../admin/migration.rst:14 +msgid "To get started with your new setup, you will need to have the following:" +msgstr "" + +#: ../../admin/migration.rst:17 +msgid "`rsync `_ installed on the **destination** server" +msgstr "" + +#: ../../admin/migration.rst:18 +msgid "SSH access set up between the two servers" +msgstr "" + +#: ../../admin/migration.rst:21 +msgid "Non-Docker" +msgstr "" + +#: ../../admin/migration.rst:23 +msgid "On the destination server, run through the :doc:`installation steps<../installation/debian>` with the exception of the following points:" +msgstr "" + +#: ../../admin/migration.rst:25 +msgid "Do not enable the extensions ``unaccent`` and ``citext`` when setting up the database;" +msgstr "" + +#: ../../admin/migration.rst:26 +msgid "Do not initialize the database by applying the migrate command;" +msgstr "" + +#: ../../admin/migration.rst:27 +msgid "Do not create an admin account." +msgstr "" + +#: ../../admin/migration.rst:29 +msgid "Stop all funkwhale related services on the destination server:" +msgstr "" + +#: ../../admin/migration.rst:35 +#: ../../admin/migration.rst:75 +msgid "On the origin server, create a database backup:" +msgstr "" + +#: ../../admin/migration.rst:41 +msgid "On the destination server, use rsync to fetch the contents of ``/srv/funwkhale/data/media/music/`` and ``/srv/funkwhale/data/media/`` from the origin server, as well as the database dump and the ``.env`` file:" +msgstr "" + +#: ../../admin/migration.rst:54 +msgid "On the destination server, restore the database dump:" +msgstr "" + +#: ../../admin/migration.rst:60 +msgid "Once the database has been restored, follow the database migration steps from the non-docker installation guide to complete the installation on the destination server." +msgstr "" + +#: ../../admin/migration.rst:62 +msgid "Ensure that all DNS changes have been made and start the services:" +msgstr "" + +#: ../../admin/migration.rst:69 +msgid "Docker" +msgstr "" + +#: ../../admin/migration.rst:71 +msgid "On the destination server, run through the :doc:`installation steps<../installation/docker>` but skip the ``docker-compose run --rm api python manage.py migrate`` step." +msgstr "" + +#: ../../admin/migration.rst:73 +msgid "Stop all funkwhale related containers on the destination server." +msgstr "" + +#: ../../admin/migration.rst:81 +msgid "On the destination server, use rsync to fetch the contents of ``/srv/funwkhale/data/media/music`` and ``/srv/funkwhale/data/media`` from the origin server, as well as the database dump nd the ``.env`` file:" +msgstr "" + +#: ../../admin/migration.rst:94 +msgid "Initialize the Postgres container with the funkwhale database and its user. For easier, we create a db init dump file than we import in the postgres container:" +msgstr "" + +#: ../../admin/migration.rst:105 +msgid "After that, we can restore the database dump:" +msgstr "" + +#: ../../admin/migration.rst:111 +msgid "Once the database has been restored, run the migrations following the docker installation guide." +msgstr "" + +#: ../../admin/migration.rst:113 +msgid "Ensure that all DNS changes have been made and start the services." +msgstr "" diff --git a/docs/locales/gettext/admin/mrf.pot b/docs/locales/gettext/admin/mrf.pot new file mode 100644 index 000000000..e80c37dcb --- /dev/null +++ b/docs/locales/gettext/admin/mrf.pot @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/mrf.rst:2 +msgid "Message Rewrite Facility (MRF)" +msgstr "" + +#: ../../admin/mrf.rst:4 +msgid "Funkwhale includes a feature that mimics `Pleroma's Message Rewrite Facility `_. Using the MRF, instance admins can write and configure custom and automated moderation rules that couldn't be implemented otherwise using :doc:`our other built-in moderation tools <../moderator/index>`." +msgstr "" + +#: ../../admin/mrf.rst:9 +msgid "Architecture" +msgstr "" + +#: ../../admin/mrf.rst:11 +msgid "The MRF is a pluggable system that will process messages and forward those to the list of registered policies, in turn. Each policy can mutate the message, leave it as is, or discard it entirely." +msgstr "" + +#: ../../admin/mrf.rst:14 +msgid "Some of our built-in moderation tools are actually implemented as a MRF policy, e.g:" +msgstr "" + +#: ../../admin/mrf.rst:16 +msgid "Allow-list, when checking incoming messages (`code `__)" +msgstr "" + +#: ../../admin/mrf.rst:17 +msgid "Domain and user blocking, when checking incoming messages (`code `__)" +msgstr "" + +#: ../../admin/mrf.rst:21 +msgid "While Pleroma MRF policies can also affect outgoing messages, this is not supported yet in Funkwhale." +msgstr "" + +#: ../../admin/mrf.rst:25 +msgid "Disclaimer" +msgstr "" + +#: ../../admin/mrf.rst:27 +msgid "Writing custom MRF can impact negatively the performance and stability of your pod, as well as message delivery. Your policy will be called everytime a message is delivered, so ensure you don't execute any slow operation here." +msgstr "" + +#: ../../admin/mrf.rst:31 +msgid "Please note that the Funkwhale developers consider custom MRF policy modules to fall under the purview of the AGPL. As such, you are obligated to release the sources to your custom MRF policy modules upon request." +msgstr "" + +#: ../../admin/mrf.rst:34 +msgid "Writing your first MRF policy" +msgstr "" + +#: ../../admin/mrf.rst:36 +msgid "MRF Policies are written as Python 3 functions that take at least one ``payload`` parameter. This payload is the raw ActivityPub message, received via HTTP, after the HTTP signature check." +msgstr "" + +#: ../../admin/mrf.rst:39 +msgid "In the example below we write a policy that discards all Follow requests from listed domains:" +msgstr "" + +#: ../../admin/mrf.rst:66 +msgid "This code must be stored in a Funkwhale plugin. To create one, just execute the following:" +msgstr "" + +#: ../../admin/mrf.rst:89 +msgid "Once you have a Funkwhale plugin, simply put your MRF policy code inside a ``mrf_policies.py`` file whithin the plugin directory. Then enable the plugin in your ``.env`` by adding its name to the coma-separated list of ``FUNKWHALE_PLUGINS`` (add the variable if it's not there)." +msgstr "" + +#: ../../admin/mrf.rst:95 +msgid "Testing a MRF policy" +msgstr "" + +#: ../../admin/mrf.rst:97 +msgid "To make the job of writing and debugging MRF policies easier, we provide a management command:" +msgstr "" diff --git a/docs/locales/gettext/admin/optimization.pot b/docs/locales/gettext/admin/optimization.pot new file mode 100644 index 000000000..233ffedd9 --- /dev/null +++ b/docs/locales/gettext/admin/optimization.pot @@ -0,0 +1,61 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/optimization.rst:2 +msgid "Optimizing your Funkwhale instance" +msgstr "" + +#: ../../admin/optimization.rst:4 +msgid "Depending on your requirements, you may want to reduce as much as possible Funkwhale's memory footprint." +msgstr "" + +#: ../../admin/optimization.rst:8 +msgid "Reduce workers concurrency" +msgstr "" + +#: ../../admin/optimization.rst:10 +msgid "Asynchronous tasks are handled by a celery worker, which will by default spawn a worker process per CPU available. This can lead to a higher memory usage." +msgstr "" + +#: ../../admin/optimization.rst:14 +msgid "You can control this behavior using the ``--concurrency`` flag. For instance, setting ``--concurrency=1`` will spawn only one worker." +msgstr "" + +#: ../../admin/optimization.rst:17 +msgid "This flag should be appended after the ``celery -A funkwhale_api.taskapp worker`` command in your :file:`docker-compose.yml` file if your using Docker, or in your :file:`/etc/systemd/system/funkwhale-worker.service` otherwise." +msgstr "" + +#: ../../admin/optimization.rst:23 +msgid "Reducing concurrency comes at a cost: asynchronous tasks will be processed more slowly. However, on small instances, this should not be an issue." +msgstr "" + +#: ../../admin/optimization.rst:28 +msgid "Switch from prefork to solo pool" +msgstr "" + +#: ../../admin/optimization.rst:30 +msgid "Using a different pool implementation for Celery tasks may also help." +msgstr "" + +#: ../../admin/optimization.rst:32 +msgid "Using the ``solo`` pool type should reduce your memory consumption. You can control this behavior using the ``--pool=solo`` flag." +msgstr "" + +#: ../../admin/optimization.rst:35 +msgid "This flag should be appended after the ``celery -A funkwhale_api.taskapp worker`` command in your :file:`docker-compose.yml` file if you're using Docker, or in your :file:`/etc/systemd/system/funkwhale-worker.service` otherwise." +msgstr "" diff --git a/docs/locales/gettext/admin/troubleshooting.pot b/docs/locales/gettext/admin/troubleshooting.pot new file mode 100644 index 000000000..ca24f51d1 --- /dev/null +++ b/docs/locales/gettext/admin/troubleshooting.pot @@ -0,0 +1,290 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/troubleshooting.rst:2 +msgid "Troubleshooting" +msgstr "" + +#: ../../admin/troubleshooting.rst:4 +msgid "Various errors and issues can arise on your Funkwhale instance, caused by configuration errors, deployment/environment specific issues, or bugs in the software itself." +msgstr "" + +#: ../../admin/troubleshooting.rst:7 +msgid "On this document, you'll find:" +msgstr "" + +#: ../../admin/troubleshooting.rst:9 +msgid "Tools and commands you can use to better understand the issues" +msgstr "" + +#: ../../admin/troubleshooting.rst:10 +msgid "A list of common pitfalls and errors and how to solve them" +msgstr "" + +#: ../../admin/troubleshooting.rst:11 +msgid "A collection of links and advice to get help from the community and report new issues" +msgstr "" + +#: ../../admin/troubleshooting.rst:14 +msgid "Diagnose problems" +msgstr "" + +#: ../../admin/troubleshooting.rst:16 +msgid "Funkwhale is made of several components, each one being a potential cause for failure. Having an even basic overview of Funkwhale's technical architecture can help you understand what is going on. You can refer to :doc:`the technical architecture <../developers/architecture>` for that." +msgstr "" + +#: ../../admin/troubleshooting.rst:19 +msgid "Problems usually fall into one of those categories:" +msgstr "" + +#: ../../admin/troubleshooting.rst:21 +msgid "**Frontend**: Funkwhale's interface is not loading, not behaving as expected, music is not playing" +msgstr "" + +#: ../../admin/troubleshooting.rst:22 +msgid "**API**: the interface do not display any data or show errors" +msgstr "" + +#: ../../admin/troubleshooting.rst:23 +msgid "**Import**: uploaded/imported tracks are not imported correctly or at all" +msgstr "" + +#: ../../admin/troubleshooting.rst:24 +msgid "**Federation**: you cannot contact other Funkwhale servers, access their library, play federated tracks" +msgstr "" + +#: ../../admin/troubleshooting.rst:25 +msgid "**Everything else**" +msgstr "" + +#: ../../admin/troubleshooting.rst:27 +msgid "Each category comes with its own set of diagnose tools and/or commands we will detail below. We'll also give you simple steps for each type of problem. Please try those to see if it fix your issues. If none of those works, please report your issue on our issue tracker." +msgstr "" + +#: ../../admin/troubleshooting.rst:33 +msgid "To get detailed log messages, set the environment variable ``LOGLEVEL=debug``. If you are using the docker setup you can configure this in the ``.env`` file." +msgstr "" + +#: ../../admin/troubleshooting.rst:37 +msgid "Backend issues" +msgstr "" + +#: ../../admin/troubleshooting.rst:39 +#: ../../admin/troubleshooting.rst:98 +#: ../../admin/troubleshooting.rst:109 +msgid "Diagnostic tools:" +msgstr "" + +#: ../../admin/troubleshooting.rst:42 +msgid "Reverse proxy logs:" +msgstr "" + +#: ../../admin/troubleshooting.rst:42 +msgid "Apache logs should be available at :file:`/var/log/apache/access.log` and :file:`/var/log/apache/error.log`" +msgstr "" + +#: ../../admin/troubleshooting.rst:43 +msgid "Nginx logs should be available at :file:`/var/log/nginx/access.log` and :file:`/var/log/nginx/error.log`" +msgstr "" + +#: ../../admin/troubleshooting.rst:46 +#: ../../admin/troubleshooting.rst:112 +msgid "API logs:" +msgstr "" + +#: ../../admin/troubleshooting.rst:45 +#: ../../admin/troubleshooting.rst:112 +msgid "Docker setup: ``docker-compose logs -f --tail=50 api`` (remove the ``--tail`` flag to get the full logs)" +msgstr "" + +#: ../../admin/troubleshooting.rst:46 +#: ../../admin/troubleshooting.rst:113 +msgid "Non-docker setup: ``journalctl -xn -u funkwhale-server``" +msgstr "" + +#: ../../admin/troubleshooting.rst:50 +msgid "If you edit your .env file to test a new configuration, you have to restart your services to pick up the changes:" +msgstr "" + +#: ../../admin/troubleshooting.rst:52 +msgid "Docker setup: ``docker-compose up -d``" +msgstr "" + +#: ../../admin/troubleshooting.rst:53 +msgid "Non-docker setup: ``systemctl restart funkwhale.target``" +msgstr "" + +#: ../../admin/troubleshooting.rst:56 +#: ../../admin/troubleshooting.rst:119 +msgid "Common problems" +msgstr "" + +#: ../../admin/troubleshooting.rst:59 +msgid "Instance works properly, but audio files are not served (404 error)" +msgstr "" + +#: ../../admin/troubleshooting.rst:61 +msgid "If you're using docker, ensure the ``MEDIA_ROOT`` variable is commented in your env file" +msgstr "" + +#: ../../admin/troubleshooting.rst:62 +msgid "Ensure the ``_protected/media`` block points toward the path where media files are stored (``/srv/funkwhale/data/media``, by default)" +msgstr "" + +#: ../../admin/troubleshooting.rst:63 +msgid "If you're using in-place import, ensure :data:`MUSIC_DIRECTORY_PATH `, :data:`MUSIC_DIRECTORY_SERVE_PATH ` and :data:`REVERSE_PROXY_TYPE ` are configured properly, and that the files are readable by the webserver" +msgstr "" + +#: ../../admin/troubleshooting.rst:66 +msgid "Weakref error when running ``python manage.py ``" +msgstr "" + +#: ../../admin/troubleshooting.rst:68 +msgid "On Python <3.6, you may see this kind of errors when running commands like ``python manage.py migrate``::" +msgstr "" + +#: ../../admin/troubleshooting.rst:75 +msgid "This is caused by a bug in Python (cf https://github.com/celery/celery/issues/3818), and is not affecting in any way the command you execute. You can safely ignore this error." +msgstr "" + +#: ../../admin/troubleshooting.rst:79 +msgid "``Your models have changes that are not yet reflected in a migration`` warning" +msgstr "" + +#: ../../admin/troubleshooting.rst:81 +msgid "When running ``python manage.py migrate`` (both in docker or non-docker), you may end-up with this::" +msgstr "" + +#: ../../admin/troubleshooting.rst:91 +msgid "This warning can be safely ignored. You should not run the suggested ``manage.py makemigrations`` command." +msgstr "" + +#: ../../admin/troubleshooting.rst:94 +msgid "File import issues" +msgstr "" + +#: ../../admin/troubleshooting.rst:96 +msgid "Unless you are using the CLI to import files, imports are send as tasks in a queue to a celery worker that will process them." +msgstr "" + +#: ../../admin/troubleshooting.rst:102 +#: ../../admin/troubleshooting.rst:116 +msgid "Celery worker logs:" +msgstr "" + +#: ../../admin/troubleshooting.rst:101 +#: ../../admin/troubleshooting.rst:115 +msgid "Docker setup: ``docker-compose logs -f --tail=50 celeryworker`` (remove the ``--tail`` flag to get the full logs)" +msgstr "" + +#: ../../admin/troubleshooting.rst:102 +#: ../../admin/troubleshooting.rst:116 +msgid "Non-docker setup: ``journalctl -xn -u funkwhale-worker``" +msgstr "" + +#: ../../admin/troubleshooting.rst:105 +msgid "Federation issues" +msgstr "" + +#: ../../admin/troubleshooting.rst:107 +msgid "Received federations messages are sent to a dedicated task queue and processed asynchronously by a celery worker." +msgstr "" + +#: ../../admin/troubleshooting.rst:122 +msgid "I have no access to another instance library" +msgstr "" + +#: ../../admin/troubleshooting.rst:124 +msgid "Check if it works with the demo library (library@demo.funkwhale.audio)" +msgstr "" + +#: ../../admin/troubleshooting.rst:125 +msgid "Check if the remote library received your follow request and approved it" +msgstr "" + +#: ../../admin/troubleshooting.rst:126 +msgid "Trigger a scan via the interface" +msgstr "" + +#: ../../admin/troubleshooting.rst:127 +msgid "Have a look in the celery logs for potential errors during the scan" +msgstr "" + +#: ../../admin/troubleshooting.rst:130 +msgid "Other problems" +msgstr "" + +#: ../../admin/troubleshooting.rst:132 +msgid "It's a bit hard to give targeted advice about problems that do not fit in the previous categories. However, we can recommend to:" +msgstr "" + +#: ../../admin/troubleshooting.rst:134 +msgid "Try to identify the scope of the issue and reproduce it reliably" +msgstr "" + +#: ../../admin/troubleshooting.rst:135 +msgid "Ensure your instance is configured as detailed in the installation documentation, and if you did not use the default values, to check what you changed" +msgstr "" + +#: ../../admin/troubleshooting.rst:137 +msgid "To read the .env file carefully, as most of the options are described in the comments" +msgstr "" + +#: ../../admin/troubleshooting.rst:141 +msgid "Report an issue or get help" +msgstr "" + +#: ../../admin/troubleshooting.rst:143 +msgid "Well be more than happy to help you to debug installation and configuration issues. The main channel for receiving support about your Funkwhale installation is the `#funkwhale-troubleshooting:matrix.org `_ Matrix channel." +msgstr "" + +#: ../../admin/troubleshooting.rst:146 +msgid "Before asking for help, we'd really appreciate if you took the time to go through this document and try to diagnose the problem yourself. But if you don't find anything relevant or don't have the time, we'll be there for you!" +msgstr "" + +#: ../../admin/troubleshooting.rst:149 +msgid "Here are a few recommendations on how to structure and what to include in your help requests:" +msgstr "" + +#: ../../admin/troubleshooting.rst:151 +msgid "Give us as much context as possible about your installation (OS, version, Docker/non-docker, reverse-proxy type, relevant logs and errors, etc.)" +msgstr "" + +#: ../../admin/troubleshooting.rst:152 +msgid "Including screenshots or small gifs or videos can help us considerably when debugging front-end issues" +msgstr "" + +#: ../../admin/troubleshooting.rst:154 +msgid "You can also open issues on our `issue tracker `_. Please have a quick look for similar issues before doing that, and use the issue tracker only to report bugs, suggest enhancements (both in the software and the documentation) or new features." +msgstr "" + +#: ../../admin/troubleshooting.rst:159 +msgid "If you ever need to share screenshots or urls with someone else, ensure those do not include your personal token. This token is binded to your account and can be used to connect and use your account." +msgstr "" + +#: ../../admin/troubleshooting.rst:162 +msgid "Urls that includes your token looks like: ``https://your.instance/api/v1/uploads/42/serve/?jwt=yoursecrettoken``" +msgstr "" + +#: ../../admin/troubleshooting.rst:165 +msgid "Improving this documentation" +msgstr "" + +#: ../../admin/troubleshooting.rst:167 +msgid "If you feel like something should be improved in this document (and in the documentation in general), feel free to :doc:`contribute to the documentation <../documentation/creating>`. If you're not comfortable contributing or would like to ask somebody else to do it, feel free to :doc:`request a change in documentation <../documentation/identifying>`." +msgstr "" diff --git a/docs/locales/gettext/admin/uninstall.pot b/docs/locales/gettext/admin/uninstall.pot new file mode 100644 index 000000000..9b8ba35cb --- /dev/null +++ b/docs/locales/gettext/admin/uninstall.pot @@ -0,0 +1,98 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/uninstall.rst:2 +msgid "Uninstall Funkwhale" +msgstr "" + +#: ../../admin/uninstall.rst:4 +msgid "The following instructions helps you remove Funkwhale from your server, for instance after migrating to another server, or if you do not want to use Funkwhale anymore." +msgstr "" + +#: ../../admin/uninstall.rst:8 +msgid "The following instructions cannot be undone and might result in loss of data. If necessary, please make a backup of your server following the :doc:`backup instructions`." +msgstr "" + +#: ../../admin/uninstall.rst:10 +msgid "Especially, it must be noted that:" +msgstr "" + +#: ../../admin/uninstall.rst:12 +#: ../../admin/uninstall.rst:81 +msgid "Remote content hosted on an S3 or S3-compatible server will not be removed." +msgstr "" + +#: ../../admin/uninstall.rst:13 +msgid "In place imports will not be removed, provided they are located outside ``/srv/funkwhale/``" +msgstr "" + +#: ../../admin/uninstall.rst:17 +msgid "These instructions apply only for the manual installation on Debian or Arch Linux. It matches the default setup." +msgstr "" + +#: ../../admin/uninstall.rst:19 +msgid "First, stop the all funkwhale related services:" +msgstr "" + +#: ../../admin/uninstall.rst:25 +msgid "Remove the reverse proxy configuration data and reload the reverse proxy." +msgstr "" + +#: ../../admin/uninstall.rst:27 +msgid "If you are using nginx:" +msgstr "" + +#: ../../admin/uninstall.rst:37 +msgid "If you are using Apache2:" +msgstr "" + +#: ../../admin/uninstall.rst:46 +msgid "Remove the systemd services:" +msgstr "" + +#: ../../admin/uninstall.rst:62 +msgid "Then, remove the database:" +msgstr "" + +#: ../../admin/uninstall.rst:69 +msgid "Finally, remove the user ``funkwhale`` and all funkwhale related data, including the server and the data:" +msgstr "" + +#: ../../admin/uninstall.rst:77 +msgid "The last command will remove ``/srv/funkwhale/``. On the default setup, this directory contains all user data. Please proceed cautiously!" +msgstr "" + +#: ../../admin/uninstall.rst:79 +msgid "However, it must be noted that:" +msgstr "" + +#: ../../admin/uninstall.rst:82 +msgid "In place imports will not be removed, provided they are not located in the directory ``/srv/funkwhale/``" +msgstr "" + +#: ../../admin/uninstall.rst:86 +msgid "If relevant, you might also want to:" +msgstr "" + +#: ../../admin/uninstall.rst:88 +msgid "remove the SSL certificates;" +msgstr "" + +#: ../../admin/uninstall.rst:89 +msgid "remove the corresponding DNS entries." +msgstr "" diff --git a/docs/locales/gettext/admin/upgrading.pot b/docs/locales/gettext/admin/upgrading.pot new file mode 100644 index 000000000..891d1c009 --- /dev/null +++ b/docs/locales/gettext/admin/upgrading.pot @@ -0,0 +1,135 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/upgrading.rst:2 +msgid "Upgrading your Funkwhale instance to a newer version" +msgstr "" + +#: ../../admin/upgrading.rst:6 +msgid "Before upgrading your instance, we strongly advise you to make at least a database backup. Ideally, you should make a full backup, including the database and the media files." +msgstr "" + +#: ../../admin/upgrading.rst:9 +msgid "We're commited to make upgrade as easy and straightforward as possible, however, Funkwhale is still in development and you'll be safer with a backup." +msgstr "" + +#: ../../admin/upgrading.rst:14 +msgid "Reading the release notes" +msgstr "" + +#: ../../admin/upgrading.rst:16 +msgid "Please take a few minutes to read the :doc:`../changelog`: updates should work similarly from version to version, but some of them may require additional steps. Those steps would be described in the version release notes." +msgstr "" + +#: ../../admin/upgrading.rst:22 +msgid "Insights about new versions" +msgstr "" + +#: ../../admin/upgrading.rst:24 +msgid "Some versions may be bigger than usual, and we'll try to detail the changes when possible." +msgstr "" + +#: ../../admin/upgrading.rst:34 +msgid "Docker setup" +msgstr "" + +#: ../../admin/upgrading.rst:36 +msgid "If you've followed the setup instructions in :doc:`../installation/docker`, upgrade path is easy:" +msgstr "" + +#: ../../admin/upgrading.rst:40 +msgid "Mono-container installation" +msgstr "" + +#: ../../admin/upgrading.rst:42 +msgid "Basically, you need to pull the new container image, stop and delete your existing container, and relaunch a new one:" +msgstr "" + +#: ../../admin/upgrading.rst:45 +msgid "To upgrade your service, change the version number of the image in ``docker-compose.yml`` with the latest release (i.e. |version|)." +msgstr "" + +#: ../../admin/upgrading.rst:47 +msgid "Pull the new images:" +msgstr "" + +#: ../../admin/upgrading.rst:53 +msgid "Restart the service:" +msgstr "" + +#: ../../admin/upgrading.rst:60 +msgid "Multi-container installation" +msgstr "" + +#: ../../admin/upgrading.rst:86 +#: ../../admin/upgrading.rst:194 +msgid "You may sometimes get the following warning while applying migrations::" +msgstr "" + +#: ../../admin/upgrading.rst:90 +#: ../../admin/upgrading.rst:198 +msgid "This is a warning, not an error, and it can be safely ignored. Never run the ``makemigrations`` command yourself." +msgstr "" + +#: ../../admin/upgrading.rst:94 +msgid "Upgrading the Postgres container" +msgstr "" + +#: ../../admin/upgrading.rst:96 +msgid "With some Funkwhale releases, it is recommended to upgrade the version of the Postgres database server container. For example, Funkwhale 0.17 recommended Postgres 9.4, but Funkwhale 0.18 recommends Postgres 11. When upgrading Postgres, it is not sufficient to change the container referenced in ``docker-compose.yml``. New major versions of Postgres cannot read the databases created by older major versions. The data has to be exported from a running instance of the old version and imported by the new version." +msgstr "" + +#: ../../admin/upgrading.rst:104 +msgid "Thankfully, there is a Docker container available to automate this process. You can use the following snippet to upgrade your database in ``./postgres``, keeping a backup of the old version in ``./postgres-old``:" +msgstr "" + +#: ../../admin/upgrading.rst:126 +msgid "Non-docker setup" +msgstr "" + +#: ../../admin/upgrading.rst:128 +msgid "If you installed Funkwhale using the install script, upgrading is done using ``sh -c \"$(curl -sSL https://get.funkwhale.audio/upgrade.sh)\"``. Make sure to run this command with root permissions." +msgstr "" + +#: ../../admin/upgrading.rst:130 +msgid "If you manually installed Funkwhale, please use the following instructions." +msgstr "" + +#: ../../admin/upgrading.rst:133 +msgid "Upgrade the static files" +msgstr "" + +#: ../../admin/upgrading.rst:135 +msgid "On non-docker setups, the front-end app is updated separately from the API. This is as simple as downloading the zip with the static files and extracting it in the correct place." +msgstr "" + +#: ../../admin/upgrading.rst:139 +msgid "The following example assume your setup match :ref:`frontend-setup`." +msgstr "" + +#: ../../admin/upgrading.rst:151 +msgid "Upgrading the API" +msgstr "" + +#: ../../admin/upgrading.rst:153 +msgid "On non-docker, upgrade involves a few more commands. We assume your setup match what is described in :doc:`/installation/debian`:" +msgstr "" + +#: ../../admin/upgrading.rst:187 +msgid "If you see a PermissionError when running the ``migrate`` command, try running the following commands by hand, and relaunch the migrations::" +msgstr "" diff --git a/docs/locales/gettext/admin/url.pot b/docs/locales/gettext/admin/url.pot new file mode 100644 index 000000000..922788333 --- /dev/null +++ b/docs/locales/gettext/admin/url.pot @@ -0,0 +1,85 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../admin/url.rst:2 +msgid "Changing Your Instance URL" +msgstr "" + +#: ../../admin/url.rst:6 +msgid "We highly recommend not to change your instance URL. Members of the community tried to do this and documented their steps here. This guide might be incomplete or fail for your instance. There is no support for this procedure and likely no way back." +msgstr "" + +#: ../../admin/url.rst:9 +msgid "At some point, you may wish to change your instance URL. In order to do this, you will need to change the following:" +msgstr "" + +#: ../../admin/url.rst:12 +msgid "The instance URL in your .env file" +msgstr "" + +#: ../../admin/url.rst:13 +msgid "The instance URL in your ``/etc/nginx/sites-enabled/funkwhale.conf`` or ``/etc/apache2/sites-enabled/funkwhale.conf`` depending on your web server setup" +msgstr "" + +#: ../../admin/url.rst:14 +msgid "Any references to the old URL in your database" +msgstr "" + +#: ../../admin/url.rst:16 +msgid "The changes to the database can be achieved with the ``fix_federation_ids`` script in the ``manage.py`` file." +msgstr "" + +#: ../../admin/url.rst:19 +msgid "Example output:" +msgstr "" + +#: ../../admin/url.rst:53 +msgid "On Docker Installations" +msgstr "" + +#: ../../admin/url.rst:55 +msgid "If you have followed the :doc:`Docker installation instructions <../installation/docker>`, you will need to do the following:" +msgstr "" + +#: ../../admin/url.rst:58 +#: ../../admin/url.rst:81 +msgid "Edit your .env file to change the ``FUNKWHALE_HOSTNAME`` and ``DJANGO_ALLOWED_HOSTS`` value to your new URL" +msgstr "" + +#: ../../admin/url.rst:59 +#: ../../admin/url.rst:82 +msgid "Edit your ``/etc/nginx/sites-enabled/funkwhale.conf`` file to change the ``server_name`` values to your new URL" +msgstr "" + +#: ../../admin/url.rst:60 +#: ../../admin/url.rst:83 +msgid "Run the following command to change all mentions of your old instance URL in the database:" +msgstr "" + +#: ../../admin/url.rst:66 +#: ../../admin/url.rst:89 +msgid "Restart Nginx or Apache to pick up the new changes" +msgstr "" + +#: ../../admin/url.rst:77 +msgid "On Non-Docker Installations" +msgstr "" + +#: ../../admin/url.rst:79 +msgid "If you have followed the :doc:`non-docker setup <../installation/debian>`, you will need to do the following:" +msgstr "" diff --git a/docs/locales/gettext/administrator_documentation/index.pot b/docs/locales/gettext/administrator_documentation/index.pot new file mode 100644 index 000000000..99016bf44 --- /dev/null +++ b/docs/locales/gettext/administrator_documentation/index.pot @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../administrator_documentation/index.md:1 +msgid "Get started" +msgstr "" + +#: ../../administrator_documentation/index.md:3 +msgid "Follow the guides in this section to set up and administrate your pod." +msgstr "" + +#: ../../administrator_documentation/index.md:9 +msgid "Install Funkwhale on your server" +msgstr "" + +#: ../../administrator_documentation/index.md:11 +msgid "Funkwhale is self-hosted, meaning you run it on your own server. To set up your own Funkwhale pod, check out [our installation guides](installation_docs/index.md). Choose the installation method that works for you!" +msgstr "" diff --git a/docs/locales/gettext/administrator_documentation/installation_docs/debian.pot b/docs/locales/gettext/administrator_documentation/installation_docs/debian.pot new file mode 100644 index 000000000..af70db653 --- /dev/null +++ b/docs/locales/gettext/administrator_documentation/installation_docs/debian.pot @@ -0,0 +1,361 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../administrator_documentation/installation_docs/debian.md:1 +msgid "Install Funkwhale on Debian" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:3 +msgid "We support [Debian](https://debian.org) and Debian-based Linux distributions. Follow these steps to set up Funkwhale on a Debian server." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:10 +msgid "Before you begin" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:12 +msgid "Set a `FUNKWHALE_VERSION` variable to the version you want to install. You will use this version for all commands in this guide." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:18 +msgid "Install `curl`." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:25 +msgid "1. Install Funkwhale dependencies" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:27 +msgid "To install Funkwhale on your server, you first need to install its dependencies. We provide all dependencies in a single file to enable you to install everything at once. You can pass the information from this file to `apt` using the following command:" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:33 +msgid "When prompted, hit {kbd}`y` to confirm the install." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:35 +msgid "That's it! `apt` installs all dependencies and tells you once it has finished." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:37 +msgid "2. Create a Funkwhale user" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:39 +msgid "It's good practice to create a user on your server for Funkwhale administration. Doing this makes it easy to make sure you're running commands from the right place. Follow these steps to set up your user." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:41 +msgid "Create the `funkwhale` user and set its shell to `bash` and its home directory to `/srv/funkwhale`." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:47 +msgid "Create a password for the user. You need to do this so that you can use this user to perform database administration." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:53 +msgid "Finally, give the user `sudo` privileges. You need to do this so that the user can run administrative tasks." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:59 +msgid "That's it! You've created your `funkwhale` user. Log in as this user when you want to perform any Funkwhale related tasks." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:61 +msgid "3. Download Funkwhale" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:63 +msgid "Once you've created your `funkwhale` user you can download the Funkwhale software itself." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:65 +msgid "Create the directory layout" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:67 +msgid "Log in to your `funkwhale` account and go to the `/srv/funkwhale` directory." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:74 +msgid "Create the directories for Funkwhale." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:80 +msgid "That's it! Your directory structure should look like this:" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:93 +msgid "Download the Funkwhale release" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:95 +msgid "Once you've created the directory structure you can download Funkwhale. Funkwhale comes in two parts: the API and the Frontend. You need both to run the application." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:97 +msgid "Download the API." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:106 +msgid "Download the frontend" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:116 +msgid "You're done! These commands put the software in the correct location for Funkwhale to serve them." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:118 +msgid "4. Install Python dependencies" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:120 +msgid "The Funkwhale API is written in Python. You need to install the API's dependencies to run the software. We use [Poetry](https://python-poetry.org) to handle Python dependencies." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:122 +msgid "Install Poetry. Follow the steps in this wizard to set it up." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:128 +msgid "Add Poetry to your `$PATH`. This allows you to use `poetry` commands." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:134 +msgid "Set up poetry in your `/srv/funkwhale/api` directory." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:141 +msgid "You're done! Poetry installs all Python dependencies." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:143 +msgid "5. Set up your environment file" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:145 +msgid "The environment file contains options you can use to control your Funkwhale pod. Follow these steps to get a working environment up and running." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:147 +msgid "Download the `.env` template to your `/srv/funkwhale/config` directory." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:153 +msgid "Generate a secret key for Django. This keeps your Funkwhale data secure. Do not share this key with anybody." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:159 +msgid "Reduce the permissions on your `.env` file to `600`. This means that only the `funkwhale` user can read and write this file." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:165 +msgid "Open the `.env` file in a text editor. For this example, we will use `nano`." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:171 +msgid "Update the following settings:" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:172 +msgid "Paste the secret key in the `DJANGO_SECRET_KEY` field." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:173 +msgid "Populate the `DATABASE_URL` field:" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:179 +msgid "Populate the `CACHE_URL` field:" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:185 +msgid "Populate the `FUNKWHALE_HOSTNAME` field with the URL of your server." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:187 +msgid "Hit {kbd}`ctrl + x` then {kbd}`y` to save the file and close `nano`." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:189 +msgid "You're done! Your environment file is now ready to go. You can check out a full list of configuration options in our Environment file guide." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:191 +msgid "6. Set up your database" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:193 +msgid "Funkwhale uses a [PostgreSQL](https://www.postgresql.org/) database to store information. Follow these steps to set up your database." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:195 +msgid "Install PostgreSQL and the `postgresql-contrib` package. This package contains extra features that Funkwhale uses." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:201 +msgid "Once you've installed PostgreSQL, launch a `psql` shell as the `postgres` user to set up your database." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:207 +msgid "Create your Funkwhale database." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:213 +msgid "Create a user for Funkwhale. This user needs all privileges so it can manage the database." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:220 +msgid "Once you're finished, exit the shell" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:226 +msgid "Run the following commands to create extra extensions for the `funkwhale` database." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:233 +msgid "Your database is ready to be populated! Use the `manage.py` script to create the database structure." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:241 +msgid "You may see the following warning when applying migrations:" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:247 +msgid "You can safely ignore this warning." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:250 +msgid "That's it! You've finished setting up your database." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:252 +msgid "7. Set up Funkwhale" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:254 +msgid "Once you have got your database up and running, you can get Funkwhale ready to launch. Use the built-in `manage.py` script to get things ready." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:256 +msgid "Create a superuser for your pod" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:259 +msgid "You can create several superusers." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:262 +msgid "To start using Funkwhale, you need to create a superuser for your pod. This user has all the permissions needed to administrate the pod. Follow these steps to create a superuser." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:268 +msgid "That's it! You can log in as this user when you finish setting up Funkwhale." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:270 +msgid "Collect static files" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:272 +msgid "Funkwhale uses several static assets to serve its frontend. Use `manage.py` to collect these files so that the webserver can serve them." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:278 +msgid "8. Set up systemd unit files" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:280 +msgid "Funkwhale uses [systemd](https://www.freedesktop.org/wiki/Software/systemd/) to manage its services. systemd helps prevent downtime by bringing services back up if they fail. It also starts your Funkwhale services after a reboot. Follow these steps to set up Funkwhale services with systemd." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:282 +msgid "Download the sample unit files from Funkwhale." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:291 +msgid "Reload systemd to register the new services." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:297 +msgid "Start all Funkwhale services." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:303 +msgid "Enable the services. Systemd can then start the services after a reboot." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:311 +msgid "That's it! systemd keeps these services running and starts them up in the correct order after a reboot." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:313 +msgid "9. Set up a reverse proxy" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:315 +msgid "Funkwhale uses a reverse proxy to serve content to users. We use [Nginx](https://nginx.com) to serve this proxy. Follow this guide to install an Nginx configuration using details from your `.env` file." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:317 +msgid "Install Nginx." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:324 +msgid "Download the Nginx templates from Funkwhale." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:332 +msgid "Create an Nginx template with details from your `.env` file." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:355 +msgid "That's it! You've created your Nginx file. Run the following command to check the `.env` details populated correctly." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:361 +msgid "10. Set up TLS" +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:363 +msgid "To enable your users to connect to your pod securely, you need to set up {abbr}`TLS (Transport Layer Security)`. To do this, we recommend using the script." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:365 +msgid "Log in as the superuser account to run these commands." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:371 +msgid "Create the `/etc/certs` folder to store the certificates." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:377 +msgid "Download and run `acme.sh`. Replace `my@example.com` with your email address." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:383 +msgid "Generate a certificate. Replace `example.com` with your Funkwhale pod name. Use `/srv/funkwhale/front` as your web root folder." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:389 +msgid "Install the certificate to your Nginx config. Replace `example.com` with your Funkwhale pod name." +msgstr "" + +#: ../../administrator_documentation/installation_docs/debian.md:398 +msgid "That's it! acme.sh renews your certificate every 60 days, so you don't need to about renewing it." +msgstr "" diff --git a/docs/locales/gettext/administrator_documentation/installation_docs/docker.pot b/docs/locales/gettext/administrator_documentation/installation_docs/docker.pot new file mode 100644 index 000000000..903833845 --- /dev/null +++ b/docs/locales/gettext/administrator_documentation/installation_docs/docker.pot @@ -0,0 +1,213 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../administrator_documentation/installation_docs/docker.md:1 +msgid "Install Funkwhale using Docker" +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:3 +msgid "Funkwhale is available as a containerized application. This enables you to run each service in containers rather than install them on your server. You can run Funkwhale using [Docker](https://docker.com) and Docker-Compose." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:6 +msgid "This guide assumes you are using a [Debian](https://debian.org)-based system." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:13 +msgid "Before you begin" +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:15 +msgid "Set a `FUNKWHALE_VERSION` variable to the version you want to install. You will use this version for all commands in this guide." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:21 +msgid "Install [Docker](https://docs.docker.com/engine/install/) and [Docker Compose](https://docs.docker.com/compose/install/)." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:22 +msgid "Install `curl`." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:29 +msgid "1. Download the project files" +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:31 +msgid "Create the project directory structure." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:37 +msgid "Navigate to the project directory" +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:43 +msgid "Download the `docker-compose` template. This contains information about the containers and how they work together." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:49 +msgid "Download the nginx templates. You need these to set up your reverse proxy." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:56 +msgid "That's it! You've set up your project files. The directory structure looks like this:" +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:66 +msgid "2. Set up your environment file" +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:68 +msgid "The environment file contains options you can use to control your Funkwhale pod. Follow these steps to get a working environment up and running." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:70 +msgid "Download the `.env` template to your `/srv/funkwhale` directory." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:76 +msgid "Update `FUNKWHALE_VERSION` in the `.env` file to the `$FUNKWHALE_VERSION` variable you set earlier." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:82 +msgid "Reduce the permissions on your `.env` file to `600`. This means that only your user can read and write this file." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:88 +msgid "Generate a secret key for Django. This keeps your Funkwhale data secure. Do not share this key with anybody." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:94 +msgid "Open the `.env` file in a text editor. For this example, we will use `nano`." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:100 +msgid "Update the following settings:" +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:101 +msgid "Paste the secret key in the `DJANGO_SECRET_KEY` field." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:102 +msgid "Populate the `FUNKWHALE_HOSTNAME` field with the URL of your server." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:104 +msgid "Hit {kbd}`ctrl + x` then {kbd}`y` to save the file and close `nano`." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:106 +msgid "You're done! Your environment file is now ready to go. You can check out a full list of configuration options in our Environment file guide." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:108 +msgid "3. Set up Funkwhale" +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:110 +msgid "Once you've filled in your environment file, you can set up Funkwhale. Follow these steps to create your database and create a superuser." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:112 +msgid "Pull the containers to download all the required services." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:119 +msgid "Bring up the database container so you can run the database migrations." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:125 +msgid "Run the database migrations." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:132 +msgid "You may see the following warning when applying migrations:" +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:138 +msgid "You can safely ignore this warning." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:141 +msgid "Create your superuser." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:147 +msgid "Launch all the containers to bring up your pod." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:153 +msgid "That's it! Your Funkwhale pod is now up and running." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:155 +msgid "4. Set up your reverse proxy" +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:157 +msgid "Funkwhale uses a reverse proxy to serve content to users. We use [Nginx](https://nginx.com) to serve this proxy. Follow this guide to install an Nginx configuration using details from your `.env` file." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:159 +msgid "Install Nginx." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:166 +msgid "Download the Nginx templates from Funkwhale." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:173 +msgid "Create an Nginx template with details from your `.env` file." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:196 +msgid "That's it! You've created your Nginx file. Run the following command to check the `.env` details populated correctly." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:202 +msgid "5. Set up TLS" +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:204 +msgid "To enable your users to connect to your pod securely, you need to set up {abbr}`TLS (Transport Layer Security)`. To do this, we recommend using the script." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:206 +msgid "Log in as the superuser account to run these commands." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:212 +msgid "Create the `/etc/certs` folder to store the certificates." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:218 +msgid "Download and run `acme.sh`. Replace `my@example.com` with your email address." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:224 +msgid "Generate a certificate. Replace `example.com` with your Funkwhale pod name. Use `/srv/funkwhale/front` as your web root folder." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:230 +msgid "Install the certificate to your Nginx config. Replace `example.com` with your Funkwhale pod name." +msgstr "" + +#: ../../administrator_documentation/installation_docs/docker.md:239 +msgid "That's it! acme.sh renews your certificate every 60 days, so you don't need to about renewing it." +msgstr "" diff --git a/docs/locales/gettext/administrator_documentation/installation_docs/index.pot b/docs/locales/gettext/administrator_documentation/installation_docs/index.pot new file mode 100644 index 000000000..28b8f1e73 --- /dev/null +++ b/docs/locales/gettext/administrator_documentation/installation_docs/index.pot @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../administrator_documentation/installation_docs/index.md:10 +#: ../../administrator_documentation/installation_docs/index.md:10 +msgid "Choose your installation method" +msgstr "" + +#: ../../administrator_documentation/installation_docs/index.md:1 +msgid "Install Funkwhale on your server" +msgstr "" + +#: ../../administrator_documentation/installation_docs/index.md:3 +msgid "Choose your installation method and follow the guides to set up your pod." +msgstr "" + +#: ../../administrator_documentation/installation_docs/index.md:5 +msgid "Funkwhale requires the following:" +msgstr "" + +#: ../../administrator_documentation/installation_docs/index.md:7 +msgid "__A dedicated domain or subdomain__ – you can't run Funkwhale in a subdirectory of a domain. You need to run it on a domain or a subdomain. For example: `https://mypod.io` or `https://funkwhale.mysite.io`." +msgstr "" + +#: ../../administrator_documentation/installation_docs/index.md:8 +msgid "__Access to ports `80` and `443`__ – Funkwhale uses these ports for federation." +msgstr "" diff --git a/docs/locales/gettext/administrator_documentation/installation_docs/quick_install.pot b/docs/locales/gettext/administrator_documentation/installation_docs/quick_install.pot new file mode 100644 index 000000000..24135c181 --- /dev/null +++ b/docs/locales/gettext/administrator_documentation/installation_docs/quick_install.pot @@ -0,0 +1,61 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../administrator_documentation/installation_docs/quick_install.md:1 +msgid "Install Funkwhale with the quick install script" +msgstr "" + +#: ../../administrator_documentation/installation_docs/quick_install.md:3 +msgid "The quick install script is the easiest way to install Funkwhale. Run this script on a [Debian](https://debian.org)-based server to get your pod set up." +msgstr "" + +#: ../../administrator_documentation/installation_docs/quick_install.md:5 +msgid "Before you begin" +msgstr "" + +#: ../../administrator_documentation/installation_docs/quick_install.md:7 +msgid "You need `sudo` access to run the quick install script." +msgstr "" + +#: ../../administrator_documentation/installation_docs/quick_install.md:8 +msgid "The quick install script installs Nginx, PostgreSQL, and Redis by default. You can customize this behavior by selecting the options in the script." +msgstr "" + +#: ../../administrator_documentation/installation_docs/quick_install.md:10 +msgid "1. Install dependencies" +msgstr "" + +#: ../../administrator_documentation/installation_docs/quick_install.md:12 +msgid "To download the quick install script, install `curl`:" +msgstr "" + +#: ../../administrator_documentation/installation_docs/quick_install.md:19 +msgid "2. Install Funkwhale" +msgstr "" + +#: ../../administrator_documentation/installation_docs/quick_install.md:21 +msgid "Now that you have `curl` installed, download and run the quick install script:" +msgstr "" + +#: ../../administrator_documentation/installation_docs/quick_install.md:27 +msgid "The script will prompt you to enter information about your instance. Follow the onscreen prompts until the script completes." +msgstr "" + +#: ../../administrator_documentation/installation_docs/quick_install.md:29 +msgid "That's it! You've finished installing Funkwhale. You should now be able to visit your pod in your web browser." +msgstr "" diff --git a/docs/locales/gettext/administrator_documentation/installation_docs/third_party.pot b/docs/locales/gettext/administrator_documentation/installation_docs/third_party.pot new file mode 100644 index 000000000..600087505 --- /dev/null +++ b/docs/locales/gettext/administrator_documentation/installation_docs/third_party.pot @@ -0,0 +1,49 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../administrator_documentation/installation_docs/third_party.md:1 +msgid "Third-party installation methods" +msgstr "" + +#: ../../administrator_documentation/installation_docs/third_party.md:3 +msgid "These installation methods are not provided by the Funkwhale project. If you have any issues with your installation, please contact the installation maintainers." +msgstr "" + +#: ../../administrator_documentation/installation_docs/third_party.md:5 +msgid "[YunoHost](https://github.com/YunoHost-Apps/funkwhale_ynh)" +msgstr "" + +#: ../../administrator_documentation/installation_docs/third_party.md:6 +msgid "[Arch Linux](https://wiki.archlinux.org/index.php/Funkwhale)" +msgstr "" + +#: ../../administrator_documentation/installation_docs/third_party.md:7 +msgid "[NixOS](https://github.com/mmai/funkwhale-nixos)" +msgstr "" + +#: ../../administrator_documentation/installation_docs/third_party.md:8 +msgid "[Kubernetes helm chart](https://gitlab.com/ananace/charts/)" +msgstr "" + +#: ../../administrator_documentation/installation_docs/third_party.md:9 +msgid "[HomelabOS](https://homelabos.com/docs/software/funkwhale/)" +msgstr "" + +#: ../../administrator_documentation/installation_docs/third_party.md:10 +msgid "[Docker swarm](https://github.com/fedeb95/funkwhale-swarm)" +msgstr "" diff --git a/docs/locales/gettext/api.pot b/docs/locales/gettext/api.pot new file mode 100644 index 000000000..ad3c6616a --- /dev/null +++ b/docs/locales/gettext/api.pot @@ -0,0 +1,25 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api.rst:2 +msgid "Funkwhale API" +msgstr "" + +#: ../../api.rst:4 +msgid "Funkwhale API is still a work in progress and should not be considered as stable. We offer an `interactive documentation using swagger `_ were you can browse available endpoints and try the API." +msgstr "" diff --git a/docs/locales/gettext/changelog.pot b/docs/locales/gettext/changelog.pot new file mode 100644 index 000000000..4feaa925d --- /dev/null +++ b/docs/locales/gettext/changelog.pot @@ -0,0 +1,6548 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../../CHANGELOG:2 +msgid "Changelog" +msgstr "" + +#: ../../../CHANGELOG:4 +msgid "You can subscribe to release announcements by:" +msgstr "" + +#: ../../../CHANGELOG:6 +msgid "Following `@funkwhale@fosstodon.org `_ on Mastodon" +msgstr "" + +#: ../../../CHANGELOG:7 +msgid "Subscribing to the following Atom feed: https://dev.funkwhale.audio/funkwhale/funkwhale/commits/develop?format=atom&search=Merge+tag" +msgstr "" + +#: ../../../CHANGELOG:9 +msgid "This changelog is viewable on the web at https://docs.funkwhale.audio/changelog.html." +msgstr "" + +#: ../../../CHANGELOG:14 +msgid "1.2.3 (2022-03-18)" +msgstr "" + +#: ../../../CHANGELOG:16 +#: ../../../CHANGELOG:75 +#: ../../../CHANGELOG:132 +#: ../../../CHANGELOG:163 +#: ../../../CHANGELOG:367 +#: ../../../CHANGELOG:375 +#: ../../../CHANGELOG:394 +#: ../../../CHANGELOG:413 +#: ../../../CHANGELOG:433 +#: ../../../CHANGELOG:519 +#: ../../../CHANGELOG:533 +#: ../../../CHANGELOG:595 +#: ../../../CHANGELOG:620 +#: ../../../CHANGELOG:764 +#: ../../../CHANGELOG:796 +#: ../../../CHANGELOG:1172 +#: ../../../CHANGELOG:1237 +#: ../../../CHANGELOG:1562 +#: ../../../CHANGELOG:1611 +#: ../../../CHANGELOG:1831 +#: ../../../CHANGELOG:1882 +#: ../../../CHANGELOG:1903 +msgid "Upgrade instructions are available at https://docs.funkwhale.audio/admin/upgrading.html" +msgstr "" + +#: ../../../CHANGELOG:19 +#: ../../../CHANGELOG:187 +#: ../../../CHANGELOG:378 +#: ../../../CHANGELOG:397 +#: ../../../CHANGELOG:416 +#: ../../../CHANGELOG:436 +#: ../../../CHANGELOG:536 +#: ../../../CHANGELOG:598 +#: ../../../CHANGELOG:688 +#: ../../../CHANGELOG:767 +#: ../../../CHANGELOG:804 +#: ../../../CHANGELOG:1052 +#: ../../../CHANGELOG:1194 +#: ../../../CHANGELOG:1479 +#: ../../../CHANGELOG:1565 +#: ../../../CHANGELOG:1732 +#: ../../../CHANGELOG:1848 +#: ../../../CHANGELOG:1885 +#: ../../../CHANGELOG:1986 +#: ../../../CHANGELOG:2225 +#: ../../../CHANGELOG:2319 +#: ../../../CHANGELOG:2535 +#: ../../../CHANGELOG:2617 +#: ../../../CHANGELOG:2850 +#: ../../../CHANGELOG:2921 +#: ../../../CHANGELOG:3042 +#: ../../../CHANGELOG:3141 +#: ../../../CHANGELOG:3343 +#: ../../../CHANGELOG:3463 +#: ../../../CHANGELOG:3611 +#: ../../../CHANGELOG:3707 +#: ../../../CHANGELOG:3800 +#: ../../../CHANGELOG:3874 +msgid "Enhancements:" +msgstr "" + +#: ../../../CHANGELOG:21 +msgid "Added support for all cover sources in the embedded player (#1697)." +msgstr "" + +#: ../../../CHANGELOG:22 +msgid "Change unmaintained PyMemoize library to django-cache-memoize to enable Python 3.10 support" +msgstr "" + +#: ../../../CHANGELOG:25 +#: ../../../CHANGELOG:78 +#: ../../../CHANGELOG:135 +#: ../../../CHANGELOG:207 +#: ../../../CHANGELOG:382 +#: ../../../CHANGELOG:402 +#: ../../../CHANGELOG:421 +#: ../../../CHANGELOG:450 +#: ../../../CHANGELOG:522 +#: ../../../CHANGELOG:551 +#: ../../../CHANGELOG:604 +#: ../../../CHANGELOG:713 +#: ../../../CHANGELOG:775 +#: ../../../CHANGELOG:814 +#: ../../../CHANGELOG:1080 +#: ../../../CHANGELOG:1204 +#: ../../../CHANGELOG:1509 +#: ../../../CHANGELOG:1579 +#: ../../../CHANGELOG:1767 +#: ../../../CHANGELOG:1856 +#: ../../../CHANGELOG:1892 +#: ../../../CHANGELOG:1996 +#: ../../../CHANGELOG:2263 +#: ../../../CHANGELOG:2329 +#: ../../../CHANGELOG:2501 +#: ../../../CHANGELOG:2517 +#: ../../../CHANGELOG:2545 +#: ../../../CHANGELOG:2635 +#: ../../../CHANGELOG:2856 +#: ../../../CHANGELOG:2932 +#: ../../../CHANGELOG:3051 +#: ../../../CHANGELOG:3158 +#: ../../../CHANGELOG:3350 +#: ../../../CHANGELOG:3469 +#: ../../../CHANGELOG:3624 +#: ../../../CHANGELOG:3718 +#: ../../../CHANGELOG:3784 +#: ../../../CHANGELOG:3888 +#: ../../../CHANGELOG:3960 +#: ../../../CHANGELOG:3985 +#: ../../../CHANGELOG:4096 +#: ../../../CHANGELOG:4112 +#: ../../../CHANGELOG:4267 +#: ../../../CHANGELOG:4285 +msgid "Bugfixes:" +msgstr "" + +#: ../../../CHANGELOG:27 +msgid "Catch ValueError on radio end (#1596)" +msgstr "" + +#: ../../../CHANGELOG:28 +msgid "Fix bug that prevents users from creating a new oauth application (#1706)" +msgstr "" + +#: ../../../CHANGELOG:29 +msgid "Fix failed track adding to playlist being silent (#1020)" +msgstr "" + +#: ../../../CHANGELOG:30 +msgid "Fix recently added radio not working has expected (#1674)" +msgstr "" + +#: ../../../CHANGELOG:31 +msgid "Fixed an issue where you couldn't load the details page for tracks with no associated album (#1703)" +msgstr "" + +#: ../../../CHANGELOG:32 +msgid "Fixed library visibility dropdown (#1384)" +msgstr "" + +#: ../../../CHANGELOG:33 +msgid "In playlist editor can now click outside the trashcan but inside the button to delete entry (#1348)" +msgstr "" + +#: ../../../CHANGELOG:35 +#: ../../../CHANGELOG:102 +#: ../../../CHANGELOG:140 +#: ../../../CHANGELOG:304 +msgid "Contributors to our Issues:" +msgstr "" + +#: ../../../CHANGELOG:37 +#: ../../../CHANGELOG:577 +#: ../../../CHANGELOG:612 +#: ../../../CHANGELOG:736 +#: ../../../CHANGELOG:788 +#: ../../../CHANGELOG:846 +#: ../../../CHANGELOG:1126 +msgid "Agate" +msgstr "" + +#: ../../../CHANGELOG:38 +msgid "Baudouin Feildel" +msgstr "" + +#: ../../../CHANGELOG:39 +msgid "Christoph Pomaska" +msgstr "" + +#: ../../../CHANGELOG:40 +#: ../../../CHANGELOG:54 +#: ../../../CHANGELOG:104 +#: ../../../CHANGELOG:115 +#: ../../../CHANGELOG:122 +#: ../../../CHANGELOG:579 +#: ../../../CHANGELOG:614 +#: ../../../CHANGELOG:741 +#: ../../../CHANGELOG:790 +#: ../../../CHANGELOG:847 +#: ../../../CHANGELOG:1131 +#: ../../../CHANGELOG:1223 +#: ../../../CHANGELOG:1533 +#: ../../../CHANGELOG:1596 +#: ../../../CHANGELOG:1803 +msgid "Ciarán Ainsworth" +msgstr "" + +#: ../../../CHANGELOG:41 +#: ../../../CHANGELOG:55 +#: ../../../CHANGELOG:65 +#: ../../../CHANGELOG:105 +#: ../../../CHANGELOG:116 +#: ../../../CHANGELOG:123 +#: ../../../CHANGELOG:151 +#: ../../../CHANGELOG:582 +msgid "Georg Krause" +msgstr "" + +#: ../../../CHANGELOG:42 +#: ../../../CHANGELOG:56 +#: ../../../CHANGELOG:66 +#: ../../../CHANGELOG:106 +#: ../../../CHANGELOG:117 +#: ../../../CHANGELOG:124 +msgid "JuniorJPDJ" +msgstr "" + +#: ../../../CHANGELOG:43 +#: ../../../CHANGELOG:57 +msgid "Kasper Seweryn" +msgstr "" + +#: ../../../CHANGELOG:44 +#: ../../../CHANGELOG:58 +#: ../../../CHANGELOG:107 +#: ../../../CHANGELOG:118 +#: ../../../CHANGELOG:126 +msgid "Marcos Peña" +msgstr "" + +#: ../../../CHANGELOG:45 +#: ../../../CHANGELOG:108 +msgid "Mathieu Jourdan" +msgstr "" + +#: ../../../CHANGELOG:46 +#: ../../../CHANGELOG:59 +#: ../../../CHANGELOG:67 +msgid "MattDHarding" +msgstr "" + +#: ../../../CHANGELOG:47 +#: ../../../CHANGELOG:109 +msgid "Micha Gläß-Stöcker" +msgstr "" + +#: ../../../CHANGELOG:48 +msgid "dnikolov" +msgstr "" + +#: ../../../CHANGELOG:49 +#: ../../../CHANGELOG:585 +#: ../../../CHANGELOG:1813 +msgid "jovuit" +msgstr "" + +#: ../../../CHANGELOG:50 +#: ../../../CHANGELOG:60 +#: ../../../CHANGELOG:111 +msgid "petitminion" +msgstr "" + +#: ../../../CHANGELOG:52 +#: ../../../CHANGELOG:113 +#: ../../../CHANGELOG:149 +#: ../../../CHANGELOG:337 +msgid "Contributors to our Merge Requests:" +msgstr "" + +#: ../../../CHANGELOG:62 +#: ../../../CHANGELOG:120 +msgid "Committers" +msgstr "" + +#: ../../../CHANGELOG:64 +msgid "Ciaran Ainsworth" +msgstr "" + +#: ../../../CHANGELOG:68 +msgid "Petitminion" +msgstr "" + +#: ../../../CHANGELOG:69 +msgid "Reinhard Prechtl" +msgstr "" + +#: ../../../CHANGELOG:73 +msgid "1.2.2 (2022-02-04)" +msgstr "" + +#: ../../../CHANGELOG:80 +msgid "Fix an issue where the tracks tab in a library doesn't show any tracks (#1683)" +msgstr "" + +#: ../../../CHANGELOG:81 +msgid "Fix an issue with the embedded player not showing any content (#1675)" +msgstr "" + +#: ../../../CHANGELOG:82 +msgid "Fix broken instance description if it contains a line break #1673" +msgstr "" + +#: ../../../CHANGELOG:84 +msgid "Dependency Updates:" +msgstr "" + +#: ../../../CHANGELOG:86 +msgid "Update dependency vue-template-compiler to 2.6.14 Update dependency vue to ^2.6.14 Update dependency vuex-persistedstate to ^2.7.1 Update dependency vuedraggable to ^2.24.3 Update dependency vue-lazyload to ^1.3.3 Update dependency vue-plyr to ^5.1.3 Update dependency vue-upload-component to ^2.8.22 Update dependency vue-gettext to ^2.1.12 Update dependency showdown to ^1.9.1 Update dependency js-logger to ^1.6.1 Update dependency register-service-worker to ^1.7.2 Update dependency howler to ^2.2.3 Update dependency fomantic-ui-css to ^2.8.8 Update dependency diff to ^4.0.2 Update dependency axios-auth-refresh to ^2.2.8" +msgstr "" + +#: ../../../CHANGELOG:110 +msgid "Ricardo" +msgstr "" + +#: ../../../CHANGELOG:125 +#: ../../../CHANGELOG:1144 +#: ../../../CHANGELOG:1542 +msgid "Keunes" +msgstr "" + +#: ../../../CHANGELOG:130 +msgid "1.2.1 (2022-01-06)" +msgstr "" + +#: ../../../CHANGELOG:137 +msgid "Fix Pipeline for stable release builds (#1652)" +msgstr "" + +#: ../../../CHANGELOG:138 +msgid "Fix remote content page (#1655)" +msgstr "" + +#: ../../../CHANGELOG:142 +msgid "Ciarán Ainsworth Georg Krause Jakob Schürz Mathieu Jourdan Micha Gläß-Stöcker petitminion" +msgstr "" + +#: ../../../CHANGELOG:153 +msgid "Committers: Dignified Silence Georg Krause JuniorJPDJ nztvar" +msgstr "" + +#: ../../../CHANGELOG:161 +msgid "1.2.0 (2021-12-27)" +msgstr "" + +#: ../../../CHANGELOG:166 +msgid "Due to a bug in our CI Pipeline frontend artifacts are not available at https://dev.funkwhale.audio/funkwhale/funkwhale/builds/artifacts/1.2.0/download?job=build_front as they would usually. Please use this URL to get your frontend build: https://dev.funkwhale.audio/funkwhale/funkwhale/-/jobs/81069/artifacts/download" +msgstr "" + +#: ../../../CHANGELOG:170 +msgid "If you are running the All-in-One-Container since a longer time, you probably need to manually migrate your database information. If thats the case, you will get a message like this:" +msgstr "" + +#: ../../../CHANGELOG:172 +msgid "`DETAIL: The data directory was initialized by PostgreSQL version 11, which is not compatible with this version 13.5.`" +msgstr "" + +#: ../../../CHANGELOG:174 +msgid "Make sure the Funkwhale version is set to `1.1.4` in `docker-compose.yml`. Now you can run this command to dump the database into a file:" +msgstr "" + +#: ../../../CHANGELOG:176 +msgid "`docker-compose exec -T funkwhale pg_dump -c -U funkwhale > \"db.dump\"`" +msgstr "" + +#: ../../../CHANGELOG:178 +msgid "Now you can update the Funkwhale version in `docker-compose.yml` to `1.2.0`. Additionally you should save your `data` directory, eg by running `mv data data.bak && mkdir data`. Stop Funkwhale and start it again with the new version, by using `docker-compose down && docker-compose up -d`. This will initialize a fresh DB and applies all migrations. Now you can restore your database with the following command: `cat db.dump | docker-compose exec -T funkwhale psql -U funkwhale`. Thats it, enjoy!" +msgstr "" + +#: ../../../CHANGELOG:180 +#: ../../../CHANGELOG:680 +#: ../../../CHANGELOG:800 +#: ../../../CHANGELOG:1041 +#: ../../../CHANGELOG:1466 +#: ../../../CHANGELOG:1719 +#: ../../../CHANGELOG:2217 +#: ../../../CHANGELOG:2313 +#: ../../../CHANGELOG:2531 +#: ../../../CHANGELOG:2606 +#: ../../../CHANGELOG:2839 +#: ../../../CHANGELOG:3131 +#: ../../../CHANGELOG:3335 +#: ../../../CHANGELOG:3456 +#: ../../../CHANGELOG:3603 +#: ../../../CHANGELOG:3702 +#: ../../../CHANGELOG:3794 +#: ../../../CHANGELOG:3867 +#: ../../../CHANGELOG:3950 +#: ../../../CHANGELOG:3980 +#: ../../../CHANGELOG:4001 +#: ../../../CHANGELOG:4092 +#: ../../../CHANGELOG:4105 +#: ../../../CHANGELOG:4261 +#: ../../../CHANGELOG:4280 +msgid "Features:" +msgstr "" + +#: ../../../CHANGELOG:182 +msgid "Implemented awesome recently added radio (part of #1390)" +msgstr "" + +#: ../../../CHANGELOG:183 +msgid "Rework the instance about page (#1376)" +msgstr "" + +#: ../../../CHANGELOG:184 +msgid "Made changes to the track table to make it more visibly pleasing" +msgstr "" + +#: ../../../CHANGELOG:189 +msgid "Add linting for Frontend code (#1602)" +msgstr "" + +#: ../../../CHANGELOG:190 +msgid "Add xmlns:content to feed schemas fixes #1535" +msgstr "" + +#: ../../../CHANGELOG:191 +msgid "Add a Maloja plugin to submit listenings" +msgstr "" + +#: ../../../CHANGELOG:192 +msgid "Add artist cover art in subsonic API response (#1528)" +msgstr "" + +#: ../../../CHANGELOG:193 +msgid "Allow listen activities privacy level to be set public" +msgstr "" + +#: ../../../CHANGELOG:194 +msgid "Allow running multi-container setup on non-root user inside docker (!1375) (fixes #1334)" +msgstr "" + +#: ../../../CHANGELOG:195 +msgid "Change volume dynamic range from 60dB to 40dB (fixes #1544)" +msgstr "" + +#: ../../../CHANGELOG:196 +msgid "Change Start Radio to Play Radio (#1400)" +msgstr "" + +#: ../../../CHANGELOG:197 +msgid "Display toast when subsonic password is copied (#1496)" +msgstr "" + +#: ../../../CHANGELOG:198 +msgid "Expose more metadata in Subsonic's getAlbumList endpoint (#623)" +msgstr "" + +#: ../../../CHANGELOG:199 +msgid "ListenBrainz: Submit media player and submission client information" +msgstr "" + +#: ../../../CHANGELOG:200 +msgid "Make \"play in list\" the default when interacting with individual tracks (#1274)" +msgstr "" + +#: ../../../CHANGELOG:201 +msgid "Prevent an uncontrolled exception when uploading a file without tags, and prints user friendly message (1275)" +msgstr "" + +#: ../../../CHANGELOG:202 +msgid "Remove deprecated JWT Authentication (#1108) (1108)" +msgstr "" + +#: ../../../CHANGELOG:203 +msgid "Remove Raven SDK to report errors to Sentry (#1425) (1425)" +msgstr "" + +#: ../../../CHANGELOG:204 +msgid "Replace psycopg2-binary with psycopg2 (#1513)" +msgstr "" + +#: ../../../CHANGELOG:209 +#: ../../../CHANGELOG:385 +msgid "Add worker-src to nginx header to prevent issues (#1489)" +msgstr "" + +#: ../../../CHANGELOG:210 +msgid "Enable stepless adjustment of the volume slider (!1294)" +msgstr "" + +#: ../../../CHANGELOG:211 +msgid "Fix an error in a Subsonic methods that return lists of numbers/strings like getUser" +msgstr "" + +#: ../../../CHANGELOG:212 +msgid "Fix showing too long radio descriptions (#1556)" +msgstr "" + +#: ../../../CHANGELOG:213 +msgid "Fix X-Frame-Options HTTP header for embed and force it to SAMEORIGIN value for other pages (fix #1022)" +msgstr "" + +#: ../../../CHANGELOG:214 +msgid "Fix before last track starts playing when last track removed (#1485)" +msgstr "" + +#: ../../../CHANGELOG:215 +msgid "Fix delete account button is not disalbed when missing password (#1591)" +msgstr "" + +#: ../../../CHANGELOG:216 +msgid "Fix omputed properties already defined in components data (#1649)" +msgstr "" + +#: ../../../CHANGELOG:217 +msgid "Fix the all in one docker image building process, related to #1503" +msgstr "" + +#: ../../../CHANGELOG:218 +msgid "Fix crash in album moderation interface when missing cover (#1474)" +msgstr "" + +#: ../../../CHANGELOG:219 +msgid "Fix subsonic scrobble not triggering plugin hook (#1416)" +msgstr "" + +#: ../../../CHANGELOG:220 +msgid "Improve formatting of RSS episode descriptions (#1405)" +msgstr "" + +#: ../../../CHANGELOG:221 +#: ../../../CHANGELOG:386 +msgid "Only suggest typed tag once if it already exists" +msgstr "" + +#: ../../../CHANGELOG:222 +msgid "Partially fixed playing two tracks at same time (#1213)" +msgstr "" + +#: ../../../CHANGELOG:223 +msgid "Revert changes that break mobile browser playback (#1509)" +msgstr "" + +#: ../../../CHANGELOG:224 +msgid "Sanitize remote tracks' saving locations with slashes on their names (#1435)" +msgstr "" + +#: ../../../CHANGELOG:225 +msgid "Show embed option for channel tracks (#1278)" +msgstr "" + +#: ../../../CHANGELOG:226 +msgid "Store volume in logarithmic scale and convert when setting it to audio (fixes #1543)" +msgstr "" + +#: ../../../CHANGELOG:227 +msgid "Use global Howler volume instead of setting it separatly for each track (fixes #1542)" +msgstr "" + +#: ../../../CHANGELOG:230 +#: ../../../CHANGELOG:729 +#: ../../../CHANGELOG:1216 +#: ../../../CHANGELOG:1793 +#: ../../../CHANGELOG:1873 +#: ../../../CHANGELOG:2010 +#: ../../../CHANGELOG:2294 +#: ../../../CHANGELOG:2344 +#: ../../../CHANGELOG:2652 +#: ../../../CHANGELOG:2865 +#: ../../../CHANGELOG:2940 +#: ../../../CHANGELOG:3064 +#: ../../../CHANGELOG:3177 +#: ../../../CHANGELOG:3474 +#: ../../../CHANGELOG:3633 +#: ../../../CHANGELOG:3731 +#: ../../../CHANGELOG:3897 +#: ../../../CHANGELOG:3971 +msgid "Documentation:" +msgstr "" + +#: ../../../CHANGELOG:232 +msgid "Add email configuration to the documentation (#1481)" +msgstr "" + +#: ../../../CHANGELOG:233 +msgid "Add server uninstallation documentation (\\!1314)" +msgstr "" + +#: ../../../CHANGELOG:234 +msgid "Document location of cli env file on macOS (\\!1354)" +msgstr "" + +#: ../../../CHANGELOG:235 +msgid "Fix broken backup documentation (#1345)" +msgstr "" + +#: ../../../CHANGELOG:236 +msgid "Refactore installation documentation and other small documentation adjustments (\\!1314)" +msgstr "" + +#: ../../../CHANGELOG:237 +msgid "Add User documentation for built-in plugins" +msgstr "" + +#: ../../../CHANGELOG:240 +#: ../../../CHANGELOG:2349 +#: ../../../CHANGELOG:2945 +#: ../../../CHANGELOG:3183 +#: ../../../CHANGELOG:3992 +#: ../../../CHANGELOG:4122 +msgid "Other:" +msgstr "" + +#: ../../../CHANGELOG:242 +msgid "Create stable branch, master is now deprecated and will be removed in 1.3 (#1476)" +msgstr "" + +#: ../../../CHANGELOG:244 +msgid "Committers:" +msgstr "" + +#: ../../../CHANGELOG:246 +msgid "Alexandra Parker Alyssa Ross appzer0 Arthur Brugière Asier Iturralde Sarasola bittin Blopware Brian McMillen Christoph Pomaska Ciaran Ainsworth Ciarán Ainsworth Classified Connor Hay Damian Szetela David Marzal Deleted User Dignified Silence Dominik Danelski egon0 Erik Präntare Georg Abenthung Georgios B Georgios Brellas Georg Krause ghose greengekota heyarne ian Vatega Janek jovuit JuniorJPDJ Konstantinos G manuelviens Manuel Viens Marcos Marcos Peña Martin Giger Matthew J Micha Gläß-Stöcker petitminion Petitminion Philipp Wolfer Porrumentzio Quentin PAGÈS Raphael Lullis Riccardo Sacchetto Romain Failliot Rubén Cabrera Ryan Harg Sergio Varela SpcCw Stefano Pigozzi Thomas Tony Simoes Tony Wasserka vachan-maker Virgile Robles" +msgstr "" + +#: ../../../CHANGELOG:306 +msgid "AMoonRabbit Agate Antoine POPINEAU Arthur Brugière Ciarán Ainsworth Connor Hay Creak David Marzal Georg Krause Gerhard Beck Greg Poole JuniorJPDJ Kuba Orlik Lunar Control Marcos Peña Mateusz Korzeniewski Mathieu Jourdan Micha Gläß-Stöcker Philipp Wolfer Porrumentzio Thomas Tony Wasserka Ville Ranki arkhi heyarne interfect jovuit mal petitminion vachan-maker" +msgstr "" + +#: ../../../CHANGELOG:339 +msgid "Agate Arthur Brugière Ciarán Ainsworth Connor Hay David Marzal Distopico Fanyx Georg Abenthung Georg Krause Janek JuniorJPDJ Kasper Seweryn Marcos Peña Mathieu Jourdan Matthew J. Micha Gläß-Stöcker Philipp Wolfer Thomas Tony Wasserka heyarne jovuit petitminion thanksd" +msgstr "" + +#: ../../../CHANGELOG:365 +msgid "1.1.4 (2021-08-02)" +msgstr "" + +#: ../../../CHANGELOG:370 +msgid "Pinned version of asgiref to avoid trouble with latest release. For further information, see #1516" +msgstr "" + +#: ../../../CHANGELOG:373 +msgid "1.1.3 (2021-08-02)" +msgstr "" + +#: ../../../CHANGELOG:380 +msgid "Test better tagging of Docker Images (#1505)" +msgstr "" + +#: ../../../CHANGELOG:384 +msgid "Fix the scrobbler plugin submitting literal \"None\" as MusicBrainz ID (#1498)" +msgstr "" + +#: ../../../CHANGELOG:387 +msgid "Implement access control on the moderation views (#1494)" +msgstr "" + +#: ../../../CHANGELOG:388 +msgid "Prevent open redirect on login (#1492)" +msgstr "" + +#: ../../../CHANGELOG:392 +msgid "1.1.2 (2021-05-19)" +msgstr "" + +#: ../../../CHANGELOG:399 +msgid "Added modal to prompt users to log in when subscribing to channels (#1296)" +msgstr "" + +#: ../../../CHANGELOG:404 +msgid "Added missing is_playable serializer for the tracks endpoint." +msgstr "" + +#: ../../../CHANGELOG:405 +msgid "Fixed minor graphical bug where loaders would appear white in dark theme (#1442)" +msgstr "" + +#: ../../../CHANGELOG:406 +msgid "Fixed systemd unit for funkwhale-worker (#1160)" +msgstr "" + +#: ../../../CHANGELOG:407 +msgid "Several minor fixes for the Frontend" +msgstr "" + +#: ../../../CHANGELOG:411 +msgid "1.1.1 (2021-04-13)" +msgstr "" + +#: ../../../CHANGELOG:418 +msgid "Improve UI consistency in artist tracks (#1286)" +msgstr "" + +#: ../../../CHANGELOG:419 +msgid "Adds year to album's card and album's base UI" +msgstr "" + +#: ../../../CHANGELOG:423 +msgid "Fix playback issues when pausing close the the end of a track (#1324)" +msgstr "" + +#: ../../../CHANGELOG:424 +msgid "Fix tracks playing in the background without the ability to control them (#1213) (#1387)" +msgstr "" + +#: ../../../CHANGELOG:425 +msgid "Fixed track playback indicator to reset on queue end (#1380)" +msgstr "" + +#: ../../../CHANGELOG:426 +msgid "Frontend build tooling is less dependent on `npm` or `yarn` being used (!1285)" +msgstr "" + +#: ../../../CHANGELOG:427 +msgid "Fixed a small discrepancy to the subsonic api 1374" +msgstr "" + +#: ../../../CHANGELOG:431 +msgid "1.1 (2021-03-10)" +msgstr "" + +#: ../../../CHANGELOG:438 +#: ../../../CHANGELOG:538 +msgid "Add number of tracks and discs of an album to API (#1238)" +msgstr "" + +#: ../../../CHANGELOG:439 +#: ../../../CHANGELOG:539 +msgid "Add spacing after \"Play all\" button in playlist view (!1271)" +msgstr "" + +#: ../../../CHANGELOG:440 +#: ../../../CHANGELOG:540 +msgid "Added a ListenBrainz plugin to submit listenings" +msgstr "" + +#: ../../../CHANGELOG:441 +#: ../../../CHANGELOG:541 +msgid "Added ability to choose fediverse addresses from channel subscription page/podcast screen (#1294)" +msgstr "" + +#: ../../../CHANGELOG:442 +#: ../../../CHANGELOG:542 +msgid "Added new search functions to allow users to more easily search for podcasts in the UI." +msgstr "" + +#: ../../../CHANGELOG:443 +#: ../../../CHANGELOG:543 +msgid "Added padding to volume slider to ease mouse control (#1241)" +msgstr "" + +#: ../../../CHANGELOG:444 +#: ../../../CHANGELOG:544 +msgid "Logarithmic scale for volume slider (#1222)" +msgstr "" + +#: ../../../CHANGELOG:445 +#: ../../../CHANGELOG:545 +msgid "More user-friendly subsonic tokens (#1269)" +msgstr "" + +#: ../../../CHANGELOG:446 +#: ../../../CHANGELOG:546 +msgid "Remove manual entry of Import Reference on front-end import (#1284)" +msgstr "" + +#: ../../../CHANGELOG:447 +#: ../../../CHANGELOG:548 +msgid "Support AIFF file format (#1243)" +msgstr "" + +#: ../../../CHANGELOG:452 +#: ../../../CHANGELOG:553 +msgid "\"Add check for empty/null covers (#1281)\"" +msgstr "" + +#: ../../../CHANGELOG:453 +#: ../../../CHANGELOG:554 +msgid "Added an album filter to fix problem where channel entries would show up in the wrong series (#1282)" +msgstr "" + +#: ../../../CHANGELOG:454 +#: ../../../CHANGELOG:555 +msgid "Avoid broken Faker version (#1323)" +msgstr "" + +#: ../../../CHANGELOG:455 +#: ../../../CHANGELOG:556 +msgid "Changed audio format detection to happen via sniffing and not file extensions (#1274)" +msgstr "" + +#: ../../../CHANGELOG:456 +#: ../../../CHANGELOG:557 +msgid "Changed default behaviour of channel entries to use channel artwork if no entry artwork available (#1289)" +msgstr "" + +#: ../../../CHANGELOG:457 +#: ../../../CHANGELOG:558 +msgid "Fix delete library modal closing immediately (#1272)" +msgstr "" + +#: ../../../CHANGELOG:458 +#: ../../../CHANGELOG:559 +msgid "Fix public shared remote library radio button being disabled (#1292)" +msgstr "" + +#: ../../../CHANGELOG:459 +#: ../../../CHANGELOG:560 +msgid "Fixed an issue that prevented disabling plugins" +msgstr "" + +#: ../../../CHANGELOG:460 +#: ../../../CHANGELOG:561 +msgid "Fixed an issue where channel albums don't show up in the album search (#1300)" +msgstr "" + +#: ../../../CHANGELOG:461 +#: ../../../CHANGELOG:562 +msgid "Fixed an issue where modals would prevent users being able to interact with channels (#1295)" +msgstr "" + +#: ../../../CHANGELOG:462 +#: ../../../CHANGELOG:563 +msgid "Update MediaSession metadata for initially loaded track (#1252)" +msgstr "" + +#: ../../../CHANGELOG:463 +#: ../../../CHANGELOG:564 +msgid "Update playback position slider also when track is paused (#1266)" +msgstr "" + +#: ../../../CHANGELOG:464 +#: ../../../CHANGELOG:524 +msgid "Fixed follows from Pleroma with custom Emoji as Tag by ignoring not supported tag types #1342" +msgstr "" + +#: ../../../CHANGELOG:465 +#: ../../../CHANGELOG:525 +msgid "Update pleroma JSON-LD Schema (#1341)" +msgstr "" + +#: ../../../CHANGELOG:466 +#: ../../../CHANGELOG:527 +msgid "Pin twisted version to 20.3.0" +msgstr "" + +#: ../../../CHANGELOG:468 +#: ../../../CHANGELOG:566 +#: ../../../CHANGELOG:610 +#: ../../../CHANGELOG:786 +msgid "Contributors to this release (development, documentation, reviews):" +msgstr "" + +#: ../../../CHANGELOG:470 +msgid "Adam Novak Agate alemairebe Alicia Blasco Leon anonymous Amaranthe appzer0 Arne Asier Iturralde Sarasola Christian Paul Ciarán Ainsworth Daniel David Dominik Danelski Eorn le goéland Eleos Erik Duxstad Esteban Fred Uggla Freyja Wildes Georg Krause ghose hellekin heyarne interfect Jess Jing Johannes H. jovuit marzzzello Meliurwen Mehdi Nitai Bezerra da Silva Philipp Wolfer Pierre Couy Porrumentzio Reg Robert Kaye Rubén Cabrera Silver Fox Snack Capt SpcCw Strom Lin vicdorke x" +msgstr "" + +#: ../../../CHANGELOG:517 +msgid "1.1-rc2 (2021-03-01)" +msgstr "" + +#: ../../../CHANGELOG:526 +msgid "Revert fork replacement of http-signature since official package breaks federation" +msgstr "" + +#: ../../../CHANGELOG:531 +msgid "1.1-rc1 (2021-02-24)" +msgstr "" + +#: ../../../CHANGELOG:547 +msgid "Replaced forked http-signature dependency with official package (#876)" +msgstr "" + +#: ../../../CHANGELOG:568 +#: ../../../CHANGELOG:1549 +#: ../../../CHANGELOG:1605 +msgid "Reg" +msgstr "" + +#: ../../../CHANGELOG:569 +#: ../../../CHANGELOG:1538 +#: ../../../CHANGELOG:1602 +msgid "hellekin" +msgstr "" + +#: ../../../CHANGELOG:570 +#: ../../../CHANGELOG:1227 +#: ../../../CHANGELOG:1535 +#: ../../../CHANGELOG:1600 +msgid "Esteban" +msgstr "" + +#: ../../../CHANGELOG:571 +#: ../../../CHANGELOG:1537 +#: ../../../CHANGELOG:1601 +msgid "Freyja Wildes" +msgstr "" + +#: ../../../CHANGELOG:572 +#: ../../../CHANGELOG:1531 +msgid "Amaranthe" +msgstr "" + +#: ../../../CHANGELOG:573 +msgid "Eleos" +msgstr "" + +#: ../../../CHANGELOG:574 +#: ../../../CHANGELOG:1228 +#: ../../../CHANGELOG:1541 +#: ../../../CHANGELOG:1603 +msgid "Johannes H." +msgstr "" + +#: ../../../CHANGELOG:575 +#: ../../../CHANGELOG:1545 +#: ../../../CHANGELOG:1604 +msgid "Mehdi" +msgstr "" + +#: ../../../CHANGELOG:576 +msgid "Adam Novak" +msgstr "" + +#: ../../../CHANGELOG:578 +msgid "Christian Paul" +msgstr "" + +#: ../../../CHANGELOG:580 +msgid "Erik Duxstad" +msgstr "" + +#: ../../../CHANGELOG:581 +msgid "Fred Uggla" +msgstr "" + +#: ../../../CHANGELOG:583 +msgid "heyarne" +msgstr "" + +#: ../../../CHANGELOG:584 +#: ../../../CHANGELOG:1810 +msgid "interfect" +msgstr "" + +#: ../../../CHANGELOG:586 +msgid "Nitai Bezerra da Silva" +msgstr "" + +#: ../../../CHANGELOG:587 +msgid "Philipp Wolfer" +msgstr "" + +#: ../../../CHANGELOG:588 +msgid "Pierre Couy" +msgstr "" + +#: ../../../CHANGELOG:589 +msgid "Robert Kaye" +msgstr "" + +#: ../../../CHANGELOG:590 +msgid "Strom Lin" +msgstr "" + +#: ../../../CHANGELOG:593 +msgid "1.0.1 (2020-10-31)" +msgstr "" + +#: ../../../CHANGELOG:600 +msgid "Added controls to play volume of an album (#1226)" +msgstr "" + +#: ../../../CHANGELOG:601 +msgid "Allow genre tags to be updated when rescanning files in-place (#1246)" +msgstr "" + +#: ../../../CHANGELOG:606 +msgid "Fixed broken install because of upgraded dependencies" +msgstr "" + +#: ../../../CHANGELOG:607 +msgid "Fixed duplication of discs for multi-disc albums in album views (#1228)" +msgstr "" + +#: ../../../CHANGELOG:608 +msgid "Make the generated RSS feed more conformant with w3c specification (#1250)" +msgstr "" + +#: ../../../CHANGELOG:613 +msgid "Cédric Schieli" +msgstr "" + +#: ../../../CHANGELOG:615 +msgid "Kuba Orlik" +msgstr "" + +#: ../../../CHANGELOG:618 +msgid "1.0 (2020-09-09)" +msgstr "" + +#: ../../../CHANGELOG:625 +msgid "Dropped python 3.5 support [manual action required, non-docker only]" +msgstr "" + +#: ../../../CHANGELOG:627 +msgid "With Funkwhale 1.0, we're dropping support for Python 3.5. Before upgrading, ensure ``python3 --version`` returns ``3.6`` or higher." +msgstr "" + +#: ../../../CHANGELOG:630 +msgid "If it returns ``3.6`` or higher, you have nothing to do." +msgstr "" + +#: ../../../CHANGELOG:632 +msgid "If it returns ``3.5``, you will need to upgrade your Python version/Host, then recreate your virtual environment::" +msgstr "" + +#: ../../../CHANGELOG:639 +msgid "Increased quality of JPEG thumbnails [manual action required]" +msgstr "" + +#: ../../../CHANGELOG:641 +msgid "Default quality for JPEG thumbnails was increased from 70 to 95, as 70 was producing visible artifacts in resized images." +msgstr "" + +#: ../../../CHANGELOG:643 +msgid "Because of this change, existing thumbnails will not load, and you will need to:" +msgstr "" + +#: ../../../CHANGELOG:645 +msgid "delete the ``__sized__`` directory in your ``MEDIA_ROOT`` directory" +msgstr "" + +#: ../../../CHANGELOG:646 +msgid "run ``python manage.py fw media generate-thumbnails`` to regenerate thumbnails with the enhanced quality" +msgstr "" + +#: ../../../CHANGELOG:648 +msgid "If you don't want to regenerate thumbnails, you can keep the old ones by adding ``THUMBNAIL_JPEG_RESIZE_QUALITY=70`` to your .env file." +msgstr "" + +#: ../../../CHANGELOG:651 +#: ../../../CHANGELOG:831 +msgid "Small API breaking change in ``/api/v1/libraries``" +msgstr "" + +#: ../../../CHANGELOG:653 +#: ../../../CHANGELOG:833 +msgid "To allow easier crawling of public libraries on a pod,we had to make a slight breaking change to the behaviour of ``GET /api/v1/libraries``." +msgstr "" + +#: ../../../CHANGELOG:656 +#: ../../../CHANGELOG:836 +msgid "Before, it returned only libraries owned by the current user." +msgstr "" + +#: ../../../CHANGELOG:658 +#: ../../../CHANGELOG:838 +msgid "Now, it returns all the accessible libraries (including ones from other users and pods)." +msgstr "" + +#: ../../../CHANGELOG:660 +#: ../../../CHANGELOG:840 +msgid "If you are consuming the API via a third-party client and need to retrieve your libraries, use the ``scope`` parameter, like this: ``GET /api/v1/libraries?scope=me``" +msgstr "" + +#: ../../../CHANGELOG:664 +msgid "API breaking change in ``/api/v1/albums``" +msgstr "" + +#: ../../../CHANGELOG:666 +msgid "To increase performance, querying ``/api/v1/albums`` doesn't return album tracks anymore. This caused some performance issues, especially as some albums and series have dozens or even hundreds of tracks." +msgstr "" + +#: ../../../CHANGELOG:669 +msgid "If you want to retrieve tracks for an album, you can query ``/api/v1/tracks/?album=``." +msgstr "" + +#: ../../../CHANGELOG:672 +msgid "JWT deprecation" +msgstr "" + +#: ../../../CHANGELOG:674 +msgid "API Authentication using JWT is deprecated and will be removed in Funkwhale 1.0. Please use OAuth or application tokens and refer to our API documentation at https://docs.funkwhale.audio/swagger/ for guidance." +msgstr "" + +#: ../../../CHANGELOG:678 +#: ../../../CHANGELOG:1039 +msgid "Full list of changes" +msgstr "" + +#: ../../../CHANGELOG:682 +msgid "Allow users to hide compilation artists on the artist search page (#1053)" +msgstr "" + +#: ../../../CHANGELOG:683 +msgid "Can now launch server import from the UI (#1105)" +msgstr "" + +#: ../../../CHANGELOG:684 +msgid "Dedicated, advanced search page (#370)" +msgstr "" + +#: ../../../CHANGELOG:685 +msgid "Persist theme and language settings accross sessions (#996)" +msgstr "" + +#: ../../../CHANGELOG:690 +msgid "Add support for unauthenticated users hitting the logout page" +msgstr "" + +#: ../../../CHANGELOG:691 +msgid "Added support for Licence Art Libre (#1088)" +msgstr "" + +#: ../../../CHANGELOG:692 +msgid "Broadcast/handle rejected follows (#858)" +msgstr "" + +#: ../../../CHANGELOG:693 +msgid "Confirm email without requiring the user to validate the form manually (#407)" +msgstr "" + +#: ../../../CHANGELOG:694 +msgid "Display channel and track downloads count (#1178)" +msgstr "" + +#: ../../../CHANGELOG:695 +msgid "Do not include tracks in album API representation (#1102)" +msgstr "" + +#: ../../../CHANGELOG:696 +msgid "Dropped python 3.5 support. Python 3.6 is the minimum required version (#1099)" +msgstr "" + +#: ../../../CHANGELOG:697 +msgid "Improved keyboard accessibility (#1125)" +msgstr "" + +#: ../../../CHANGELOG:698 +msgid "Improved naming of pages for accessibility (#1127)" +msgstr "" + +#: ../../../CHANGELOG:699 +msgid "Improved shuffle behaviour (#1190)" +msgstr "" + +#: ../../../CHANGELOG:700 +msgid "Increased quality of JPEG thumbnails" +msgstr "" + +#: ../../../CHANGELOG:701 +msgid "Lock focus in modals to improve accessibility (#1128)" +msgstr "" + +#: ../../../CHANGELOG:702 +msgid "More consistent search UX on /albums, /artists, /radios and /playlists (#1131)" +msgstr "" + +#: ../../../CHANGELOG:703 +msgid "Play button now replace current queue instead of appending to it (#1083)" +msgstr "" + +#: ../../../CHANGELOG:704 +msgid "Set proper lang attribute on HTML document (#1130)" +msgstr "" + +#: ../../../CHANGELOG:705 +msgid "Use semantic headers for accessibility (#1121)" +msgstr "" + +#: ../../../CHANGELOG:706 +msgid "Users can now update their email address (#292)" +msgstr "" + +#: ../../../CHANGELOG:707 +msgid "[plugin, scrobbler] Use last.fm API v2 for scrobbling if API key and secret are provided" +msgstr "" + +#: ../../../CHANGELOG:708 +msgid "Added a new, large thumbnail size for cover images (#1205" +msgstr "" + +#: ../../../CHANGELOG:709 +msgid "Enforce authentication when viewing remote channels, profiles and libraries (#1210)" +msgstr "" + +#: ../../../CHANGELOG:715 +msgid "Fix broken media support detection (#1180)" +msgstr "" + +#: ../../../CHANGELOG:716 +msgid "Fix layout issue with playbar on landscape tablets (#1144)" +msgstr "" + +#: ../../../CHANGELOG:717 +msgid "Fix random radio so that podcast content is not picked up (#1140)" +msgstr "" + +#: ../../../CHANGELOG:718 +msgid "Fixed an issue with search pages where results would not appear after navigating to another page" +msgstr "" + +#: ../../../CHANGELOG:719 +msgid "Fixed crash with negative track position in file tags (#1193)" +msgstr "" + +#: ../../../CHANGELOG:720 +msgid "Handle access errors scanning directories when importing files" +msgstr "" + +#: ../../../CHANGELOG:721 +#: ../../../CHANGELOG:784 +msgid "Make channel card updated times more humanly readable, add internationalization (#1089)" +msgstr "" + +#: ../../../CHANGELOG:722 +msgid "Ensure search page reloads if another search is submitted in the sidebar (#1197)" +msgstr "" + +#: ../../../CHANGELOG:723 +msgid "Fixed \"scope=subscribed\" on albums, artists, uploads and libraries API (#1217)" +msgstr "" + +#: ../../../CHANGELOG:724 +msgid "Fixed broken federation with pods using allow-listing (#1999)" +msgstr "" + +#: ../../../CHANGELOG:725 +msgid "Fixed broken search when using (, \" or & chars (#1196)" +msgstr "" + +#: ../../../CHANGELOG:726 +msgid "Fixed domains table hidden controls when no domains are found (#1198)" +msgstr "" + +#: ../../../CHANGELOG:731 +msgid "Simplify Docker mono-container installation and upgrade documentation" +msgstr "" + +#: ../../../CHANGELOG:734 +#: ../../../CHANGELOG:1124 +msgid "Contributors to this release (translation, development, documentation, reviews, design, testing, third-party projects):" +msgstr "" + +#: ../../../CHANGELOG:737 +msgid "Andy Craze" +msgstr "" + +#: ../../../CHANGELOG:738 +msgid "anonymous" +msgstr "" + +#: ../../../CHANGELOG:739 +msgid "appzer0" +msgstr "" + +#: ../../../CHANGELOG:740 +msgid "Arne" +msgstr "" + +#: ../../../CHANGELOG:742 +#: ../../../CHANGELOG:1133 +#: ../../../CHANGELOG:1225 +#: ../../../CHANGELOG:1805 +msgid "Daniele Lira Mereb" +msgstr "" + +#: ../../../CHANGELOG:743 +msgid "dulz" +msgstr "" + +#: ../../../CHANGELOG:744 +#: ../../../CHANGELOG:1137 +#: ../../../CHANGELOG:1536 +msgid "Francesc Galí" +msgstr "" + +#: ../../../CHANGELOG:745 +msgid "ghose" +msgstr "" + +#: ../../../CHANGELOG:746 +msgid "Kalle Anka" +msgstr "" + +#: ../../../CHANGELOG:747 +msgid "mekind" +msgstr "" + +#: ../../../CHANGELOG:748 +msgid "Meliurwen" +msgstr "" + +#: ../../../CHANGELOG:749 +msgid "Puri" +msgstr "" + +#: ../../../CHANGELOG:750 +#: ../../../CHANGELOG:1155 +#: ../../../CHANGELOG:1231 +msgid "Quentin PAGÈS" +msgstr "" + +#: ../../../CHANGELOG:751 +msgid "Raphaël Ventura" +msgstr "" + +#: ../../../CHANGELOG:752 +msgid "Slimane Selyan Amiri" +msgstr "" + +#: ../../../CHANGELOG:753 +#: ../../../CHANGELOG:1159 +#: ../../../CHANGELOG:1552 +msgid "SpcCw" +msgstr "" + +#: ../../../CHANGELOG:754 +msgid "Stefano Pigozzi" +msgstr "" + +#: ../../../CHANGELOG:755 +msgid "Sébastien de Melo" +msgstr "" + +#: ../../../CHANGELOG:756 +msgid "Ventura Pérez García" +msgstr "" + +#: ../../../CHANGELOG:757 +msgid "vicdorke" +msgstr "" + +#: ../../../CHANGELOG:758 +#: ../../../CHANGELOG:1167 +#: ../../../CHANGELOG:1556 +msgid "Xosé M" +msgstr "" + +#: ../../../CHANGELOG:762 +msgid "0.21.2 (2020-07-27)" +msgstr "" + +#: ../../../CHANGELOG:769 +msgid "Added a new ?related=obj_id filter for artists, albums and tracks, based on tags" +msgstr "" + +#: ../../../CHANGELOG:770 +msgid "Can now filter subscribed content through API (#1116)" +msgstr "" + +#: ../../../CHANGELOG:771 +msgid "Support ordering=random for artists, albums, tracks and channels endpoints (#1145)" +msgstr "" + +#: ../../../CHANGELOG:772 +msgid "Use role=alert on forms/toast message to improve accessibility (#1134)" +msgstr "" + +#: ../../../CHANGELOG:777 +msgid "Fix embedded player not working on channel serie/album (#1175)" +msgstr "" + +#: ../../../CHANGELOG:778 +msgid "Fixed broken mimetype detection during import (#1165)" +msgstr "" + +#: ../../../CHANGELOG:779 +msgid "Fixed crash when loading recent albums via Subsonic (#1158)" +msgstr "" + +#: ../../../CHANGELOG:780 +msgid "Fixed crash with null help text in admin (#1161)" +msgstr "" + +#: ../../../CHANGELOG:781 +msgid "Fixed invalid metadata when importing multi-artists tracks/albums (#1104)" +msgstr "" + +#: ../../../CHANGELOG:782 +msgid "Fixed player crash when using Funkwhale as a PWA (#1157)" +msgstr "" + +#: ../../../CHANGELOG:783 +msgid "Fixed wrong covert art displaying in some situations (#1138)" +msgstr "" + +#: ../../../CHANGELOG:789 +msgid "Bheesham Persaud" +msgstr "" + +#: ../../../CHANGELOG:794 +msgid "0.21.1 (2020-06-11)" +msgstr "" + +#: ../../../CHANGELOG:802 +msgid "Support a --watch mode with ``import_files`` to automatically add, update and remove files when filesystem is updated (#721)" +msgstr "" + +#: ../../../CHANGELOG:806 +msgid "Added new channels widget on pod landing page (#1113)" +msgstr "" + +#: ../../../CHANGELOG:807 +msgid "Fix HTML not including instance name in some situations (#1107)" +msgstr "" + +#: ../../../CHANGELOG:808 +msgid "Make URL-building logic more resilient against reverse proxy misconfiguration (#1085)" +msgstr "" + +#: ../../../CHANGELOG:809 +msgid "Removed unused masonry dependency (#1112)" +msgstr "" + +#: ../../../CHANGELOG:810 +msgid "Support for specifying itunes:email and itunes:name in channels for compatibiliy with third-party platforms (#1154)" +msgstr "" + +#: ../../../CHANGELOG:811 +msgid "Updated the /api/v1/libraries endpoint to support listing public libraries from other users/pods (#1151)" +msgstr "" + +#: ../../../CHANGELOG:816 +msgid "Added safeguard to ensure local uploads are never purged from cache (#1086)" +msgstr "" + +#: ../../../CHANGELOG:817 +msgid "Ensure firefox password manager dont autofill username in search bar (#1090)" +msgstr "" + +#: ../../../CHANGELOG:818 +msgid "Ensure player doesn't disappear when last queue track is removed manually (#1092)" +msgstr "" + +#: ../../../CHANGELOG:819 +msgid "Ensure tracks linked to skipped upload can be pruned (#1011)" +msgstr "" + +#: ../../../CHANGELOG:820 +msgid "Fix playlist modal only listing 50 first playlists (#1087)" +msgstr "" + +#: ../../../CHANGELOG:821 +msgid "Fixed a wording issue on artist channel page (#1117)" +msgstr "" + +#: ../../../CHANGELOG:822 +msgid "Fixed crash on python 3.5 with cli importer (#1155)" +msgstr "" + +#: ../../../CHANGELOG:823 +msgid "Fixed issue when displaying starred tracks on subsonic (#1082)" +msgstr "" + +#: ../../../CHANGELOG:824 +msgid "Fixed mimetype detection issue that broke transcoding on some tracks (#1093). Run ``python manage.py fix_uploads --mimetype`` to set proper mimetypes on existing uploads." +msgstr "" + +#: ../../../CHANGELOG:825 +msgid "Fixed page not refreshing when switching between My Library and Explore sections (#1091)" +msgstr "" + +#: ../../../CHANGELOG:826 +msgid "Fixed recursive CLI importing crashing under Python 3.5 (#1148, #1147)" +msgstr "" + +#: ../../../CHANGELOG:827 +msgid "Fixed wrong album and track count in admin artist API (#1096)" +msgstr "" + +#: ../../../CHANGELOG:828 +msgid "Include tracks by album artist when filtering by artist on /api/v1/tracks (#1078)" +msgstr "" + +#: ../../../CHANGELOG:844 +msgid "Contributors to this release (development, documentation, reviews, testing):" +msgstr "" + +#: ../../../CHANGELOG:848 +#: ../../../CHANGELOG:1132 +#: ../../../CHANGELOG:1597 +msgid "Creak" +msgstr "" + +#: ../../../CHANGELOG:849 +msgid "gisforgabriel" +msgstr "" + +#: ../../../CHANGELOG:850 +msgid "Siren" +msgstr "" + +#: ../../../CHANGELOG:851 +#: ../../../CHANGELOG:1162 +msgid "Tony Wasserka" +msgstr "" + +#: ../../../CHANGELOG:855 +msgid "0.21 \"Agate\" (2020-04-24)" +msgstr "" + +#: ../../../CHANGELOG:857 +msgid "This 0.21 release is dedicated to Agate, to thank her, for both having created the Funkwhale project, being the current lead developer, and for her courage of coming out. Thank you Agate from all the members of the Funkwhale community <3" +msgstr "" + +#: ../../../CHANGELOG:859 +msgid "We are truly grateful as well to the dozens of people who contributed to this release with translations, development, documentation, reviews, design, testing, feedback, financial support, third-party projects and integrations… You made it possible!" +msgstr "" + +#: ../../../CHANGELOG:861 +msgid "Upgrade instructions are available at https://docs.funkwhale.audio/admin/upgrading.html, there are also additional operations you need to execute, listed in the changelog below (search \"Manual action\")." +msgstr "" + +#: ../../../CHANGELOG:865 +msgid "Channels and podcasts" +msgstr "" + +#: ../../../CHANGELOG:867 +msgid "Funkwhale 0.21 includes a brand new feature: Channels!" +msgstr "" + +#: ../../../CHANGELOG:869 +msgid "Channels can be used as a replacement to public libraries, to publish audio content, both musical and non-musical. They federate with other Funkwhale pods, but also other fediverse software, in particular Mastodon, Pleroma, Friendica and Reel2Bits, meaning people can subscribe to your channel from any of these software. To get started with publication, simply visit your profile and create a channel from there." +msgstr "" + +#: ../../../CHANGELOG:874 +msgid "Each Funkwhale channel also comes with RSS feed that is compatible with existing podcasting applications, like AntennaPod on Android and, within Funkwhale, you can also subscribe to any podcast from its RSS feed!" +msgstr "" + +#: ../../../CHANGELOG:877 +msgid "Many, many thanks to the numerous people who helped with the feature design, development and testing, and in particular to the members of the working group who met every week for months in order to get this done, and the members of other third-party projects who took the time to work with us to ensure compatibility." +msgstr "" + +#: ../../../CHANGELOG:882 +msgid "Redesigned navigation, player and queue" +msgstr "" + +#: ../../../CHANGELOG:884 +msgid "This release includes a full redesign of our navigation, player and queue. Overall, it should provide a better, less confusing experience, especially on mobile devices. This redesign was suggested 14 months ago, and took a while, but thanks to the involvement and feedback of many people, we got it done!" +msgstr "" + +#: ../../../CHANGELOG:889 +msgid "Improved search bar for searching remote objects" +msgstr "" + +#: ../../../CHANGELOG:891 +msgid "The search bar now support fetching arbitrary objects using a URL. In particular, you can use this to quickly:" +msgstr "" + +#: ../../../CHANGELOG:893 +msgid "Subscribe to a remote library via its URL" +msgstr "" + +#: ../../../CHANGELOG:894 +msgid "Listen a public track from another pod" +msgstr "" + +#: ../../../CHANGELOG:895 +msgid "Subscribe to a channel" +msgstr "" + +#: ../../../CHANGELOG:898 +msgid "Screening for sign-ups and custom sign-up form" +msgstr "" + +#: ../../../CHANGELOG:900 +msgid "Instance admins can now configure their pod so that registrations required manual approval from a moderator. This is especially useful on private or semi-private pods where you don't want to close registrations completely, but don't want spam or unwanted users to join your pod." +msgstr "" + +#: ../../../CHANGELOG:904 +msgid "When this is enabled and a new user register, their request is put in a moderation queue, and moderators are notified by email. When the request is approved or refused, the user is also notified by email." +msgstr "" + +#: ../../../CHANGELOG:907 +msgid "In addition, it's also possible to customize the sign-up form by:" +msgstr "" + +#: ../../../CHANGELOG:909 +msgid "Providing a custom help text, in markdown format" +msgstr "" + +#: ../../../CHANGELOG:910 +msgid "Including additional fields in the form, for instance to ask the user why they want to join. Data collected through these fields is included in the sign-up request and viewable by the mods" +msgstr "" + +#: ../../../CHANGELOG:913 +msgid "Federated reports" +msgstr "" + +#: ../../../CHANGELOG:915 +msgid "It's now possible to send a copy of a report to the server hosting the reported object, in order to make moderation easier and more distributed." +msgstr "" + +#: ../../../CHANGELOG:917 +msgid "This feature is inspired by Mastodon's current design, and should work with at least Funkwhale and Mastodon servers." +msgstr "" + +#: ../../../CHANGELOG:920 +msgid "Improved search performance" +msgstr "" + +#: ../../../CHANGELOG:922 +msgid "Our search engine went through a full rewrite to make it faster. This new engine is enabled by default when using the search bar, or when searching for artists, albums and tracks. It leverages PostgreSQL full-text search capabilities." +msgstr "" + +#: ../../../CHANGELOG:926 +msgid "During our tests, we observed huge performance improvements after the switch, by an order of magnitude. This should be especially perceptible on pods with large databases, more modest hardware or hard drives." +msgstr "" + +#: ../../../CHANGELOG:930 +msgid "We plan to remove the old engine in an upcoming release. In the meantime, if anything goes wrong, you can switch back by setting ``USE_FULL_TEXT_SEARCH=false`` in your ``.env`` file." +msgstr "" + +#: ../../../CHANGELOG:934 +msgid "Enforced email verification" +msgstr "" + +#: ../../../CHANGELOG:936 +msgid "The brand new ``ACCOUNT_EMAIL_VERIFICATION_ENFORCE`` setting can be used to make email verification mandatory for your users. It defaults to ``false``, and doesn't apply to superuser accounts created through the CLI." +msgstr "" + +#: ../../../CHANGELOG:940 +msgid "If you enable this, ensure you have a SMTP server configured too." +msgstr "" + +#: ../../../CHANGELOG:943 +msgid "More reliable CLI importer [manual action required]" +msgstr "" + +#: ../../../CHANGELOG:945 +msgid "Our CLI importer is now more reliable and less prone to Out-of-Memory issues, especially when scanning large libraries. (hundreds of GB or bigger)" +msgstr "" + +#: ../../../CHANGELOG:947 +msgid "We've also improved the directory crawling logic, so that you don't have to use glob patterns or specify extensions when importing. As a result, the syntax for providing directories to the command as changed slightly." +msgstr "" + +#: ../../../CHANGELOG:949 +msgid "If you use the ``import_files`` command, this means you should replace scripts that look like this::" +msgstr "" + +#: ../../../CHANGELOG:953 +msgid "By this::" +msgstr "" + +#: ../../../CHANGELOG:957 +msgid "And Funkwhale will happily import any supported audio file from the specified directory." +msgstr "" + +#: ../../../CHANGELOG:960 +#: ../../../CHANGELOG:1050 +msgid "User management through the server CLI" +msgstr "" + +#: ../../../CHANGELOG:962 +msgid "We now support user creation (incl. non-admin accounts), update and removal directly from the server CLI. Typical use cases include:" +msgstr "" + +#: ../../../CHANGELOG:965 +msgid "Changing a user password from the command line" +msgstr "" + +#: ../../../CHANGELOG:966 +msgid "Creating or updating users from deployments scripts or playbooks" +msgstr "" + +#: ../../../CHANGELOG:967 +msgid "Removing or granting permissions or upload quota to multiple users at once" +msgstr "" + +#: ../../../CHANGELOG:968 +msgid "Marking multiple users as inactive" +msgstr "" + +#: ../../../CHANGELOG:970 +msgid "All user-related commands are available under the ``python manage.py fw users`` namespace. Please refer to the `Admin documentation <https://docs.funkwhale.audio/admin/commands.html#user-management>`_ for more information and instructions." +msgstr "" + +#: ../../../CHANGELOG:974 +msgid "Progressive web app [Manual action sugFull list of changes ^^^^^^^^^^^^^^^^^^^^gested, non-docker only] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^" +msgstr "" + +#: ../../../CHANGELOG:978 +msgid "We've made Funkwhale's Web UI a Progressive Web Application (PWA), in order to improve the user experience during offline use, and on mobile devices." +msgstr "" + +#: ../../../CHANGELOG:981 +msgid "In order to fully benefit from this change, if your pod isn't deployed using Docker, ensure the following instruction is present in your nginx configuration::" +msgstr "" + +#: ../../../CHANGELOG:990 +msgid "Postgres docker changed environment variable [manual action required, docker multi-container only]" +msgstr "" + +#: ../../../CHANGELOG:992 +msgid "If you're running with docker and our multi-container setup, there was a breaking change starting in the 11.7 postgres image (https://github.com/docker-library/postgres/pull/658)" +msgstr "" + +#: ../../../CHANGELOG:994 +msgid "You need to add this to your .env file: ``POSTGRES_HOST_AUTH_METHOD=trust``" +msgstr "" + +#: ../../../CHANGELOG:996 +msgid "Newer deployments aren't affected." +msgstr "" + +#: ../../../CHANGELOG:999 +msgid "Upgrade from Postgres 10 to 11 [manual action required, docker all-in-one only]" +msgstr "" + +#: ../../../CHANGELOG:1001 +msgid "With our upgrade to Alpine 3.10, the ``funkwhale/all-in-one`` image now includes PostgreSQL 11." +msgstr "" + +#: ../../../CHANGELOG:1003 +msgid "In order to update to Funkwhale 0.21, you will first need to uprade Funkwhale's PostgreSQL database, following the steps below::" +msgstr "" + +#: ../../../CHANGELOG:1030 +msgid "Once you have completed the Funkwhale upgrade with our regular instructions and everything works properly, you can remove the backups/old files::" +msgstr "" + +#: ../../../CHANGELOG:1043 +msgid "Support for publishing and subscribing to podcasts (#170)" +msgstr "" + +#: ../../../CHANGELOG:1044 +msgid "Brand new navigation, queue and player redesign (#594)" +msgstr "" + +#: ../../../CHANGELOG:1045 +msgid "Can now browse a library content through the UI (#926)" +msgstr "" + +#: ../../../CHANGELOG:1046 +msgid "Federated reports (#1038)" +msgstr "" + +#: ../../../CHANGELOG:1047 +msgid "Screening for sign-ups (#1040)" +msgstr "" + +#: ../../../CHANGELOG:1048 +msgid "Make it possible to enforce email verification (#1039)" +msgstr "" + +#: ../../../CHANGELOG:1049 +msgid "Added a new radio based on another user listenings (#1060)" +msgstr "" + +#: ../../../CHANGELOG:1054 +msgid "Added ability to reject library follows from notifications screen (#859)" +msgstr "" + +#: ../../../CHANGELOG:1055 +msgid "Added periodic background task and CLI command to associate genre tags to artists and albums based on identical tags found on corresponding tracks (#988)" +msgstr "" + +#: ../../../CHANGELOG:1056 +msgid "Added support for CELERYD_CONCURRENCY env var to control the number of worker processes (#997)" +msgstr "" + +#: ../../../CHANGELOG:1057 +msgid "Added the ability to sort albums by release date (#1013)" +msgstr "" + +#: ../../../CHANGELOG:1058 +msgid "Added two new radios to play your own content or a given library tracks" +msgstr "" + +#: ../../../CHANGELOG:1059 +msgid "Advertise list of known nodes on /api/v1/federation/domains and in nodeinfo if stats sharing is enabled" +msgstr "" + +#: ../../../CHANGELOG:1060 +msgid "Changed footer to use instance name if available, and append ellipses if instance URL/Name is too long (#1012)" +msgstr "" + +#: ../../../CHANGELOG:1061 +msgid "Favor local uploads when playing a track with multiple uploads (#1036)" +msgstr "" + +#: ../../../CHANGELOG:1062 +msgid "Include only local content in nodeinfo stats, added downloads count" +msgstr "" + +#: ../../../CHANGELOG:1063 +msgid "Make media and static files serving more reliable when reverse proxy X_FORWARDED_* headers are incorrect (#947)" +msgstr "" + +#: ../../../CHANGELOG:1064 +msgid "Order the playlist columns by modification date in the Browse tab (#775)" +msgstr "" + +#: ../../../CHANGELOG:1065 +msgid "Reduced size of funkwhale/funkwhale docker images thanks to multi-stage builds (!1042)" +msgstr "" + +#: ../../../CHANGELOG:1066 +msgid "Remember display settings in Album, Artist, Radio and Playlist views (#391)" +msgstr "" + +#: ../../../CHANGELOG:1067 +msgid "Removed unnecessary \"Federation music needs approval\" setting (#959)" +msgstr "" + +#: ../../../CHANGELOG:1068 +msgid "Replaced our slow research logic by PostgreSQL full-text search (#994)" +msgstr "" + +#: ../../../CHANGELOG:1069 +msgid "Support autoplay when loading embed frame from Mastodon and third-party websites (#1041)" +msgstr "" + +#: ../../../CHANGELOG:1070 +msgid "Support filtering playlist by name and several additional UX improvements in playlists modal (#974)" +msgstr "" + +#: ../../../CHANGELOG:1071 +msgid "Support modifying album cover art through the web UI (#588)" +msgstr "" + +#: ../../../CHANGELOG:1072 +msgid "Use a dedicated scope for throttling subsonic to avoid intrusive rate-limiting" +msgstr "" + +#: ../../../CHANGELOG:1073 +msgid "Use same markdown widget for all content fields (rules, description, reports, notes, etc.)" +msgstr "" + +#: ../../../CHANGELOG:1074 +msgid "CLI Importer is now more reliable and less resource-hungry on large libraries" +msgstr "" + +#: ../../../CHANGELOG:1075 +#: ../../../CHANGELOG:1099 +msgid "Add support custom domain for S3 storage" +msgstr "" + +#: ../../../CHANGELOG:1076 +msgid "Better placeholders for channels when there are no episodes or series" +msgstr "" + +#: ../../../CHANGELOG:1077 +msgid "Updated documentation for 0.21 release" +msgstr "" + +#: ../../../CHANGELOG:1078 +msgid "Improved performance and error handling when fetching remote attachments" +msgstr "" + +#: ../../../CHANGELOG:1082 +msgid "Added missing manuallyApprovesFollowers entry in JSON-LD contexts (#961)" +msgstr "" + +#: ../../../CHANGELOG:1083 +msgid "Fix issue with browser shortcuts such as search and focus URL not being recognised (#340, #985)" +msgstr "" + +#: ../../../CHANGELOG:1084 +msgid "Fixed admin dropdown not showing after login (#1042)" +msgstr "" + +#: ../../../CHANGELOG:1085 +msgid "Fixed an issue with celerybeat container failing to restart (#1004)" +msgstr "" + +#: ../../../CHANGELOG:1086 +msgid "Fixed invalid displayed number of tracks in playlist (#986)" +msgstr "" + +#: ../../../CHANGELOG:1087 +msgid "Fixed issue with recent results not being loaded from the API (#948)" +msgstr "" + +#: ../../../CHANGELOG:1088 +msgid "Fixed issue with sorting by album name not working (#960)" +msgstr "" + +#: ../../../CHANGELOG:1089 +msgid "Fixed short audio glitch when switching switching to another track with player paused (#970)" +msgstr "" + +#: ../../../CHANGELOG:1090 +msgid "Improved deduplication logic to prevent skipped files during import (#348, #474, #557, #740, #928)" +msgstr "" + +#: ../../../CHANGELOG:1091 +msgid "More resilient tag parsing with empty release date or album artist (#1037)" +msgstr "" + +#: ../../../CHANGELOG:1092 +msgid "More robust importer against malformed dates (#966)" +msgstr "" + +#: ../../../CHANGELOG:1093 +msgid "Removed \"nodeinfo disabled\" setting, as nodeinfo is required for the UI to work (#982)" +msgstr "" + +#: ../../../CHANGELOG:1094 +msgid "Replaced PDF icon by List icon in playlist placeholder (#943)" +msgstr "" + +#: ../../../CHANGELOG:1095 +msgid "Resolve an issue where disc numbers were not taken into consideration when playing an album from the album card (#1006)" +msgstr "" + +#: ../../../CHANGELOG:1096 +msgid "Set correct size for album covers in playlist cards (#680)" +msgstr "" + +#: ../../../CHANGELOG:1097 +msgid "Remove double spaces in ChannelForm" +msgstr "" + +#: ../../../CHANGELOG:1098 +msgid "Deduplicate tags in Audio ActivityPub representation" +msgstr "" + +#: ../../../CHANGELOG:1100 +msgid "Fix #1079: fixed z-index issues with dropdowns (#1079 and #1075)" +msgstr "" + +#: ../../../CHANGELOG:1101 +msgid "Exclude external podcasts from library home" +msgstr "" + +#: ../../../CHANGELOG:1102 +msgid "Fixed broken channel save when description is too long" +msgstr "" + +#: ../../../CHANGELOG:1103 +msgid "Fixed 500 error when federation is disabled and application+json is requested" +msgstr "" + +#: ../../../CHANGELOG:1104 +msgid "Fixed minor subsonic API crash" +msgstr "" + +#: ../../../CHANGELOG:1105 +msgid "Fixed broken local profile page when allow-list is enabled" +msgstr "" + +#: ../../../CHANGELOG:1106 +msgid "Fixed issue with confirmation email not sending when signup-approval was enabled" +msgstr "" + +#: ../../../CHANGELOG:1107 +msgid "Ensure 0 quota on user is honored" +msgstr "" + +#: ../../../CHANGELOG:1108 +msgid "Fixed attachments URL not honoring media URL" +msgstr "" + +#: ../../../CHANGELOG:1109 +msgid "Fix grammar in msg string in TrackBase.vue" +msgstr "" + +#: ../../../CHANGELOG:1110 +msgid "Fix typo in SubscribeButton.vue" +msgstr "" + +#: ../../../CHANGELOG:1112 +msgid "Translations:" +msgstr "" + +#: ../../../CHANGELOG:1114 +msgid "Arabic" +msgstr "" + +#: ../../../CHANGELOG:1115 +msgid "Catalan" +msgstr "" + +#: ../../../CHANGELOG:1116 +msgid "English (United Kingdom)" +msgstr "" + +#: ../../../CHANGELOG:1117 +msgid "German" +msgstr "" + +#: ../../../CHANGELOG:1118 +msgid "Hungarian" +msgstr "" + +#: ../../../CHANGELOG:1119 +msgid "Japanese" +msgstr "" + +#: ../../../CHANGELOG:1120 +msgid "Occitan" +msgstr "" + +#: ../../../CHANGELOG:1121 +msgid "Portuguese (Brazil)" +msgstr "" + +#: ../../../CHANGELOG:1122 +msgid "Russian" +msgstr "" + +#: ../../../CHANGELOG:1127 +msgid "annando" +msgstr "" + +#: ../../../CHANGELOG:1128 +msgid "Anton Strömkvist" +msgstr "" + +#: ../../../CHANGELOG:1129 +msgid "Audrey" +msgstr "" + +#: ../../../CHANGELOG:1130 +#: ../../../CHANGELOG:1532 +#: ../../../CHANGELOG:1802 +msgid "ButterflyOfFire" +msgstr "" + +#: ../../../CHANGELOG:1134 +msgid "dashie" +msgstr "" + +#: ../../../CHANGELOG:1135 +msgid "Eloisa" +msgstr "" + +#: ../../../CHANGELOG:1136 +msgid "eorn" +msgstr "" + +#: ../../../CHANGELOG:1138 +msgid "gerhardbeck" +msgstr "" + +#: ../../../CHANGELOG:1139 +msgid "GinnyMcQueen" +msgstr "" + +#: ../../../CHANGELOG:1140 +msgid "guillermau" +msgstr "" + +#: ../../../CHANGELOG:1141 +msgid "Haelwenn" +msgstr "" + +#: ../../../CHANGELOG:1142 +msgid "jinxx" +msgstr "" + +#: ../../../CHANGELOG:1143 +msgid "Jonathan Aylard" +msgstr "" + +#: ../../../CHANGELOG:1145 +msgid "M.G" +msgstr "" + +#: ../../../CHANGELOG:1146 +msgid "marzzzello" +msgstr "" + +#: ../../../CHANGELOG:1147 +msgid "Mathé Grievink" +msgstr "" + +#: ../../../CHANGELOG:1148 +#: ../../../CHANGELOG:1546 +#: ../../../CHANGELOG:1814 +msgid "Mélanie Chauvel" +msgstr "" + +#: ../../../CHANGELOG:1149 +msgid "Mjourdan" +msgstr "" + +#: ../../../CHANGELOG:1150 +msgid "Morgan Kesler" +msgstr "" + +#: ../../../CHANGELOG:1151 +msgid "Noe Gaumont" +msgstr "" + +#: ../../../CHANGELOG:1152 +msgid "Noureddine HADDAG" +msgstr "" + +#: ../../../CHANGELOG:1153 +msgid "Ollie" +msgstr "" + +#: ../../../CHANGELOG:1154 +msgid "Peter Wickenberg" +msgstr "" + +#: ../../../CHANGELOG:1156 +#: ../../../CHANGELOG:1819 +msgid "Renon" +msgstr "" + +#: ../../../CHANGELOG:1157 +msgid "Satsuki Yanagi" +msgstr "" + +#: ../../../CHANGELOG:1158 +msgid "Shlee" +msgstr "" + +#: ../../../CHANGELOG:1160 +msgid "techknowlogick" +msgstr "" + +#: ../../../CHANGELOG:1161 +msgid "ThibG" +msgstr "" + +#: ../../../CHANGELOG:1163 +msgid "unklebonehead" +msgstr "" + +#: ../../../CHANGELOG:1164 +msgid "wakest" +msgstr "" + +#: ../../../CHANGELOG:1165 +msgid "wxcafé" +msgstr "" + +#: ../../../CHANGELOG:1166 +#: ../../../CHANGELOG:1555 +msgid "Xaloc" +msgstr "" + +#: ../../../CHANGELOG:1170 +msgid "0.20.1 (2019-10-28)" +msgstr "" + +#: ../../../CHANGELOG:1177 +#: ../../../CHANGELOG:1198 +msgid "Denormalized audio permission logic in a separate table to enhance performance" +msgstr "" + +#: ../../../CHANGELOG:1179 +msgid "With this release, we're introducing a performance enhancement that should reduce the load on the database and API servers (cf https://dev.funkwhale.audio/funkwhale/funkwhale/merge_requests/939)." +msgstr "" + +#: ../../../CHANGELOG:1182 +msgid "Under the hood, we now maintain a separate table to link users to the tracks they are allowed to see. This change is **disabled** by default, but should be enabled by default starting in Funkwhale 0.21." +msgstr "" + +#: ../../../CHANGELOG:1185 +msgid "If you want to try it now, add ``MUSIC_USE_DENORMALIZATION=True`` to your ``.env`` file, restart Funkwhale, and run the following command::" +msgstr "" + +#: ../../../CHANGELOG:1190 +msgid "This shouldn't cause any regression, but we'd appreciate if you could test this before the 0.21 release and report any unusual behaviour regarding tracks, albums and artists visibility." +msgstr "" + +#: ../../../CHANGELOG:1196 +msgid "Added a retry option for failed uploads (#942)" +msgstr "" + +#: ../../../CHANGELOG:1197 +msgid "Added feedback via loading spinner when searching a remote library" +msgstr "" + +#: ../../../CHANGELOG:1199 +msgid "Placeholders will now be shown if no content is available across the application (#750)" +msgstr "" + +#: ../../../CHANGELOG:1200 +msgid "Reduce the number of simultaneous DB connections under some deployment scenario" +msgstr "" + +#: ../../../CHANGELOG:1201 +msgid "Support byYear filtering in Subsonic API (#936)" +msgstr "" + +#: ../../../CHANGELOG:1206 +msgid "Ensure password input doesn't overflow outside of container (#933)" +msgstr "" + +#: ../../../CHANGELOG:1207 +msgid "Fix audio serving issues under S3/nginx when signatures are enabled" +msgstr "" + +#: ../../../CHANGELOG:1208 +msgid "Fix import crash when importing M4A file with no embedded cover (#946)" +msgstr "" + +#: ../../../CHANGELOG:1209 +msgid "Fix tag exclusion in custom radios (#950)" +msgstr "" + +#: ../../../CHANGELOG:1210 +msgid "Fixed an issue with embed player CSS being purged during build (#935)" +msgstr "" + +#: ../../../CHANGELOG:1211 +msgid "Fixed escaped pod name displayed on home/about page (#945)" +msgstr "" + +#: ../../../CHANGELOG:1212 +msgid "Fixed pagination in subsonic getSongsByGenre endpoint (#954)" +msgstr "" + +#: ../../../CHANGELOG:1213 +msgid "Fixed style glitches in dropdowns" +msgstr "" + +#: ../../../CHANGELOG:1218 +msgid "Documented how to create DB extension by hand in case of permission error during migrations (#934)" +msgstr "" + +#: ../../../CHANGELOG:1221 +#: ../../../CHANGELOG:1529 +msgid "Contributors to this release (translation, development, documentation, reviews, design):" +msgstr "" + +#: ../../../CHANGELOG:1224 +msgid "Dag Stenstad" +msgstr "" + +#: ../../../CHANGELOG:1226 +#: ../../../CHANGELOG:1534 +#: ../../../CHANGELOG:1599 +#: ../../../CHANGELOG:1806 +msgid "Eliot Berriot" +msgstr "" + +#: ../../../CHANGELOG:1229 +msgid "knuxify" +msgstr "" + +#: ../../../CHANGELOG:1230 +msgid "Mateus Mattei Garcia" +msgstr "" + +#: ../../../CHANGELOG:1235 +msgid "0.20 (2019-10-04)" +msgstr "" + +#: ../../../CHANGELOG:1242 +msgid "Support for genres via tags" +msgstr "" + +#: ../../../CHANGELOG:1244 +msgid "One of our most requested missing features is now available!" +msgstr "" + +#: ../../../CHANGELOG:1246 +msgid "Starting with Funkwhale 0.20, Funkwhale will automatically extract genre information from uploaded files and associate it with the corresponding tracks in the form of tags (similar to Mastodon or Twitter hashtags). Please refer to `our tagging documentation <https://docs.funkwhale.audio/users/upload.html#tagging-files>`_ for more information regarding the tagging process." +msgstr "" + +#: ../../../CHANGELOG:1252 +msgid "Tags can also be associated with artists and albums, and updated after upload through the UI using the edit system released in Funkwhale 0.19. Tags are also fetched when retrieving content via federation." +msgstr "" + +#: ../../../CHANGELOG:1256 +msgid "Tags are used in various places to enhance user experience:" +msgstr "" + +#: ../../../CHANGELOG:1258 +msgid "Tags are listed on tracks, albums and artist profiles" +msgstr "" + +#: ../../../CHANGELOG:1259 +msgid "Each tag has a dedicated page were you can browse corresponding content and quickly start a radio" +msgstr "" + +#: ../../../CHANGELOG:1260 +msgid "The custom radio builder now supports using tags" +msgstr "" + +#: ../../../CHANGELOG:1261 +msgid "Subsonic apps that support genres - such as DSub or Ultrasonic - should display this information as well" +msgstr "" + +#: ../../../CHANGELOG:1263 +msgid "If you are a pod admin and want to extract tags from already uploaded content, you run `this snippet <https://dev.funkwhale.audio/funkwhale/funkwhale/snippets/43>`__ and `this snippet <https://dev.funkwhale.audio/funkwhale/funkwhale/snippets/44>`__ in a ``python manage.py shell``." +msgstr "" + +#: ../../../CHANGELOG:1267 +msgid "Content and account reports" +msgstr "" + +#: ../../../CHANGELOG:1269 +msgid "It is now possible to report content, such as artists, tracks or libraries, as well as user accounts. Such reports are forwarded to the pod moderators, who can review it and delete reported content, block accounts or take any other action they deem necessary." +msgstr "" + +#: ../../../CHANGELOG:1272 +msgid "By default, both anonymous and authenticated users can submit these reports. This makes sure moderators can receive and handle takedown requests and other reports for illegal content that may be sent by third-parties without an account on the pod. However, you can disable anonymous reports completely via your pod settings." +msgstr "" + +#: ../../../CHANGELOG:1276 +msgid "Federation of the reports will be supported in a future release." +msgstr "" + +#: ../../../CHANGELOG:1278 +#: ../../../CHANGELOG:1292 +msgid "For more information about this feature, please check out our documentation:" +msgstr "" + +#: ../../../CHANGELOG:1280 +msgid "`User documentation <https://docs.funkwhale.audio/moderator/reports.html>`__" +msgstr "" + +#: ../../../CHANGELOG:1281 +msgid "`Moderator documentation <https://docs.funkwhale.audio/users/reports.html>`__" +msgstr "" + +#: ../../../CHANGELOG:1284 +msgid "Account deletion" +msgstr "" + +#: ../../../CHANGELOG:1286 +msgid "Users can now delete their account themselves, without involving an administrator." +msgstr "" + +#: ../../../CHANGELOG:1288 +msgid "The deletion process will remove any local data and objects associated with the account, but the username won't be able to new users to avoid impersonation. Deletion is also broadcasted to other known servers on the federation." +msgstr "" + +#: ../../../CHANGELOG:1294 +msgid "`User documentation <https://docs.funkwhale.audio/users/account.html>`__" +msgstr "" + +#: ../../../CHANGELOG:1297 +msgid "Landing and about page redesign [Manual action suggested]" +msgstr "" + +#: ../../../CHANGELOG:1299 +msgid "In this release, we've completely redesigned the landing and about page, by making it more useful and adapted to your pod configuration. Among other things, the landing page will now include:" +msgstr "" + +#: ../../../CHANGELOG:1302 +msgid "your pod and an excerpt from your pod's description" +msgstr "" + +#: ../../../CHANGELOG:1303 +#: ../../../CHANGELOG:1315 +msgid "your pod banner image, if any" +msgstr "" + +#: ../../../CHANGELOG:1304 +#: ../../../CHANGELOG:1316 +msgid "your contact email, if any" +msgstr "" + +#: ../../../CHANGELOG:1305 +msgid "the login form" +msgstr "" + +#: ../../../CHANGELOG:1306 +msgid "the signup form (if registrations are open on your pod)" +msgstr "" + +#: ../../../CHANGELOG:1307 +msgid "some basic statistics about your pod" +msgstr "" + +#: ../../../CHANGELOG:1308 +msgid "a widget including recently uploaded albums, if anonymous access is enabled" +msgstr "" + +#: ../../../CHANGELOG:1310 +msgid "The landing page will still include some information about Funkwhale, but in a less intrusive and proeminent way than before." +msgstr "" + +#: ../../../CHANGELOG:1312 +msgid "Additionally, the about page now includes:" +msgstr "" + +#: ../../../CHANGELOG:1314 +msgid "your pod name, description, rules and terms" +msgstr "" + +#: ../../../CHANGELOG:1317 +msgid "comprehensive statistics about your pod" +msgstr "" + +#: ../../../CHANGELOG:1318 +msgid "some info about your pod configuration, such as registration and federation status or the default upload quota for new users" +msgstr "" + +#: ../../../CHANGELOG:1320 +msgid "With this redesign, we've added a handful of additional pod settings:" +msgstr "" + +#: ../../../CHANGELOG:1322 +msgid "Pod banner image" +msgstr "" + +#: ../../../CHANGELOG:1323 +msgid "Contact email" +msgstr "" + +#: ../../../CHANGELOG:1324 +msgid "Rules" +msgstr "" + +#: ../../../CHANGELOG:1325 +msgid "Terms of service" +msgstr "" + +#: ../../../CHANGELOG:1327 +msgid "We recommend taking a few moments to fill these accordingly to your needs, by visiting ``/manage/settings``." +msgstr "" + +#: ../../../CHANGELOG:1330 +msgid "Allow-list to restrict federation to trusted domains" +msgstr "" + +#: ../../../CHANGELOG:1332 +msgid "The Allow-Listing feature grants pod moderators and administrators greater control over federation by allowing you to create a pod-wide allow-list." +msgstr "" + +#: ../../../CHANGELOG:1336 +msgid "When allow-listing is enabled, your pod's users will only be able to interact with pods included in the allow-list. Any messages, activity, uploads, or modifications to libraries and playlists will only be shared with pods on the allow-list. Pods which are not included in the allow-list will not have access to your pod's content or messages and will not be able to send anything to your pod." +msgstr "" + +#: ../../../CHANGELOG:1345 +msgid "If you want to enable this feature on your pod, or learn more, please refer to `our documentation <https://docs.funkwhale.audio/moderator/listing.html>`_!" +msgstr "" + +#: ../../../CHANGELOG:1348 +msgid "Periodic message to incite people to support their pod and Funkwhale" +msgstr "" + +#: ../../../CHANGELOG:1350 +msgid "Users will now be reminded on a regular basis that they can help Funkwhale by donating or contributing." +msgstr "" + +#: ../../../CHANGELOG:1352 +msgid "If specified by the pod admin, a separate and custom message will also be displayed in a similar way to provide instructions and links to support the pod." +msgstr "" + +#: ../../../CHANGELOG:1354 +msgid "Both messages will appear for the first time 15 days after signup, in the notifications tab. For each message, users can schedule a reminder for a later time, or disable the messages entirely." +msgstr "" + +#: ../../../CHANGELOG:1358 +msgid "Replaced Daphne by Gunicorn/Uvicorn [manual action required, non-docker only]" +msgstr "" + +#: ../../../CHANGELOG:1360 +msgid "To improve the performance, stability and reliability of Funkwhale's web processes, we now recommend using Gunicorn and Uvicorn instead of Daphne. This combination unlock new use cases such as:" +msgstr "" + +#: ../../../CHANGELOG:1363 +msgid "zero-downtime upgrades" +msgstr "" + +#: ../../../CHANGELOG:1364 +msgid "configurable number of web worker processes" +msgstr "" + +#: ../../../CHANGELOG:1366 +msgid "Based on our benchmarks, Gunicorn/Unicorn is also faster and more stable under higher workloads compared to Daphne." +msgstr "" + +#: ../../../CHANGELOG:1368 +msgid "To benefit from this enhancement on existing instances, you need to add ``FUNKWHALE_WEB_WORKERS=1`` in your ``.env`` file (use a higher number if you want to have more web worker processes)." +msgstr "" + +#: ../../../CHANGELOG:1371 +msgid "Then, edit your ``/etc/systemd/system/funkwhale-server.service`` and replace the ``ExecStart=`` line with ``ExecStart=/srv/funkwhale/virtualenv/bin/gunicorn config.asgi:application -w ${FUNKWHALE_WEB_WORKERS} -k uvicorn.workers.UvicornWorker -b ${FUNKWHALE_API_IP}:${FUNKWHALE_API_PORT}``" +msgstr "" + +#: ../../../CHANGELOG:1374 +msgid "Then reload the configuration change with ``sudo systemctl daemon-reload`` and ``sudo systemctl restart funkwhale-server``." +msgstr "" + +#: ../../../CHANGELOG:1378 +msgid "Content-Security-Policy and additional security headers [manual action suggested]" +msgstr "" + +#: ../../../CHANGELOG:1380 +msgid "To improve the security and reduce the attack surface in case of a successfull exploit, we suggest you add the following Content-Security-Policy to your nginx configuration." +msgstr "" + +#: ../../../CHANGELOG:1383 +msgid "..note::" +msgstr "" + +#: ../../../CHANGELOG:1391 +msgid "**On non-docker setups**, in ``/etc/nginx/sites-available/funkwhale.conf``::" +msgstr "" + +#: ../../../CHANGELOG:1413 +msgid "Then reload nginx with ``systemctl reload nginx``." +msgstr "" + +#: ../../../CHANGELOG:1415 +msgid "**On docker setups**, in ``/srv/funkwhalenginx/funkwhale.template``::" +msgstr "" + +#: ../../../CHANGELOG:1437 +msgid "Then reload nginx with ``docker-compose restart nginx``." +msgstr "" + +#: ../../../CHANGELOG:1440 +msgid "Rate limiting" +msgstr "" + +#: ../../../CHANGELOG:1442 +msgid "With this release, rate-limiting on the API is enabled by default, with high enough limits to ensure regular users of the app aren't affected. Requests beyond allowed limits are answered with a 429 HTTP error." +msgstr "" + +#: ../../../CHANGELOG:1445 +msgid "For anonymous requests, the limit is applied to the IP adress of the client, and for authenticated requests, the limit is applied to the corresponding user account. By default, anonymous requests get a lower limit than authenticated requests." +msgstr "" + +#: ../../../CHANGELOG:1448 +msgid "You can disable the rate-limiting feature by adding `THROTTLING_ENABLED=false` to your ``.env`` file and restarting the services. If you are using the Funkwhale API in your project or app and want to know more about the limits, please consult https://docs.funkwhale.audio/swagger/." +msgstr "" + +#: ../../../CHANGELOG:1452 +msgid "Broken audio streaming when using S3/Minio and DSub [manual action required]" +msgstr "" + +#: ../../../CHANGELOG:1454 +msgid "Some Subsonic clients, such as DSub, are sending an Authorization headers which was forwarded to the S3 storage when streaming, causing some issues. If you are using S3 or a compatible storage such as Minio, please add the following in your nginx ``~ /_protected/media/(.+)`` location::" +msgstr "" + +#: ../../../CHANGELOG:1461 +msgid "And reload your nginx process." +msgstr "" + +#: ../../../CHANGELOG:1464 +msgid "Detail" +msgstr "" + +#: ../../../CHANGELOG:1468 +msgid "Added periodical message to incite people to support their pod and Funkwhale (#839)" +msgstr "" + +#: ../../../CHANGELOG:1469 +msgid "Admins can now add custom CSS from their pod settings (#879)" +msgstr "" + +#: ../../../CHANGELOG:1470 +msgid "Allow-list to restrict federation to trusted domains (#853)" +msgstr "" + +#: ../../../CHANGELOG:1471 +msgid "Content and account reports (#890)" +msgstr "" + +#: ../../../CHANGELOG:1472 +msgid "Dark theme (#756)" +msgstr "" + +#: ../../../CHANGELOG:1473 +msgid "Enforce a configurable rate limit on the API to mitigate abuse (#261)" +msgstr "" + +#: ../../../CHANGELOG:1474 +msgid "Redesign of the landing and about pages (#872)" +msgstr "" + +#: ../../../CHANGELOG:1475 +msgid "Support for genres, via tags (#432)" +msgstr "" + +#: ../../../CHANGELOG:1476 +msgid "Users can now delete their account without admin intervention (#852)" +msgstr "" + +#: ../../../CHANGELOG:1481 +msgid "Added a info message on embed wizard when anonymous access to content is disabled (#878)" +msgstr "" + +#: ../../../CHANGELOG:1482 +msgid "Added Catalan translation files" +msgstr "" + +#: ../../../CHANGELOG:1483 +msgid "Added Czech translation (#844)" +msgstr "" + +#: ../../../CHANGELOG:1484 +msgid "Added field to manage user upload quota in Django backend (#903)" +msgstr "" + +#: ../../../CHANGELOG:1485 +msgid "Added the option to replace the queue's current contents with a selected album or track (#761)" +msgstr "" + +#: ../../../CHANGELOG:1486 +msgid "Artists with no albums will now show track count on artist card (#895)" +msgstr "" + +#: ../../../CHANGELOG:1487 +msgid "Ensure API urls answer with and without a trailing slash (#877)" +msgstr "" + +#: ../../../CHANGELOG:1488 +msgid "Hardcoded list of supported browsers to avoid unexpected regressions (#854)" +msgstr "" + +#: ../../../CHANGELOG:1489 +msgid "Hardened security thanks to CSP and additional HTTP headers (#880)" +msgstr "" + +#: ../../../CHANGELOG:1490 +msgid "Improve display of search results by including artist and album data" +msgstr "" + +#: ../../../CHANGELOG:1491 +msgid "Increase the security of JWT token generation by using DJANGO_SECRET_KEY as well as user-specific salt for the signature" +msgstr "" + +#: ../../../CHANGELOG:1492 +msgid "Mods can now change a library visibility through the admin UI (#548)" +msgstr "" + +#: ../../../CHANGELOG:1493 +msgid "New keyboard shortcuts added for enhanced control over audio player (#866)" +msgstr "" + +#: ../../../CHANGELOG:1494 +msgid "Now refetch remote ActivityPub artists, albums and tracks to avoid local stale data" +msgstr "" + +#: ../../../CHANGELOG:1495 +msgid "Numbers on the stats page will now be formatted in a human readable way and will update with the locale (#873)" +msgstr "" + +#: ../../../CHANGELOG:1496 +msgid "Pickup folder.png and folder.jpg files for cover art when importing from CLI (#898)" +msgstr "" + +#: ../../../CHANGELOG:1497 +msgid "Prevent usage of too weak passwords (#883)" +msgstr "" + +#: ../../../CHANGELOG:1498 +msgid "Reduced CSS size by 30% using purgecss" +msgstr "" + +#: ../../../CHANGELOG:1499 +msgid "Replaced Daphne by Gunicorn/Uvicorn to improve stability, flexibility and performance (#862)" +msgstr "" + +#: ../../../CHANGELOG:1500 +msgid "Simplified embedded docker reverse proxy IP configuration (#834)" +msgstr "" + +#: ../../../CHANGELOG:1501 +msgid "Support embeds on public playlists" +msgstr "" + +#: ../../../CHANGELOG:1502 +msgid "Support for M4A/AAC files (#661)" +msgstr "" + +#: ../../../CHANGELOG:1503 +msgid "Switched from Semantic-UI to Fomentic-UI" +msgstr "" + +#: ../../../CHANGELOG:1504 +msgid "Add dropdown menu to track table (#531)" +msgstr "" + +#: ../../../CHANGELOG:1505 +msgid "Display placeholder on homepage when there are no playlists (#892)" +msgstr "" + +#: ../../../CHANGELOG:1506 +msgid "Make album cards height independent (#710)" +msgstr "" + +#: ../../../CHANGELOG:1511 +msgid "Added context strings to en_GB translations so that picking the language changes the interface as expected" +msgstr "" + +#: ../../../CHANGELOG:1512 +msgid "Ensure selected locale is not reset to browser default when refreshing app" +msgstr "" + +#: ../../../CHANGELOG:1513 +msgid "Fix missing license information on track details page (#913)" +msgstr "" + +#: ../../../CHANGELOG:1514 +msgid "Fix regression to quota bar color (#897)" +msgstr "" + +#: ../../../CHANGELOG:1515 +msgid "Fixed a responsive display issues on 1024px wide screens (#904)" +msgstr "" + +#: ../../../CHANGELOG:1516 +msgid "Fixed album art not being retrieved from Ogg/Opus files" +msgstr "" + +#: ../../../CHANGELOG:1517 +msgid "Fixed broken embedded player layout after dependency update (#875)" +msgstr "" + +#: ../../../CHANGELOG:1518 +msgid "Fixed broken external HTTPS request under some scenarios, because of missing PyOpenSSL" +msgstr "" + +#: ../../../CHANGELOG:1519 +msgid "Fixed broken less listened radio (#912)" +msgstr "" + +#: ../../../CHANGELOG:1520 +msgid "Fixed broken URL to artist and album on album and track pages (#871)" +msgstr "" + +#: ../../../CHANGELOG:1521 +msgid "Fixed empty contentType causing client crash in some Subsonic payloads (#893)" +msgstr "" + +#: ../../../CHANGELOG:1522 +msgid "Fixed import crashing with empty cover file or too long values on some fields" +msgstr "" + +#: ../../../CHANGELOG:1523 +msgid "Fixed in-place imported files not playing under nginx when filename contains ? or % (#924)" +msgstr "" + +#: ../../../CHANGELOG:1524 +msgid "Fixed remaining transcoding issue with Subsonic API (#867)" +msgstr "" + +#: ../../../CHANGELOG:1525 +msgid "Fixed search usability issue when browsing artists, albums, radios and playlists (#902)" +msgstr "" + +#: ../../../CHANGELOG:1526 +msgid "Improved performance of /artists, /albums and /tracks API endpoints by a factor 2 (#865)" +msgstr "" + +#: ../../../CHANGELOG:1527 +msgid "Updated docs to ensure streaming works when using Minio/S3 and DSub (#932)" +msgstr "" + +#: ../../../CHANGELOG:1539 +msgid "IISergII" +msgstr "" + +#: ../../../CHANGELOG:1540 +msgid "jiri-novacek" +msgstr "" + +#: ../../../CHANGELOG:1543 +msgid "Koen" +msgstr "" + +#: ../../../CHANGELOG:1544 +msgid "Manuel Cortez" +msgstr "" + +#: ../../../CHANGELOG:1547 +#: ../../../CHANGELOG:1815 +msgid "nouts" +msgstr "" + +#: ../../../CHANGELOG:1548 +#: ../../../CHANGELOG:1818 +msgid "Quentí" +msgstr "" + +#: ../../../CHANGELOG:1550 +#: ../../../CHANGELOG:1820 +msgid "Rodrigo Leite" +msgstr "" + +#: ../../../CHANGELOG:1551 +msgid "Romain Failliot" +msgstr "" + +#: ../../../CHANGELOG:1553 +#: ../../../CHANGELOG:1821 +msgid "Sylke Vicious" +msgstr "" + +#: ../../../CHANGELOG:1554 +msgid "Tobias Reisinger" +msgstr "" + +#: ../../../CHANGELOG:1560 +msgid "0.19.1 (2019-06-28)" +msgstr "" + +#: ../../../CHANGELOG:1567 +msgid "The currently playing track is now highlighted with an orange play icon (#832)" +msgstr "" + +#: ../../../CHANGELOG:1568 +msgid "Support for importing files with no album tag (#122)" +msgstr "" + +#: ../../../CHANGELOG:1569 +msgid "Redirect from / to /library when user is logged in (#864)" +msgstr "" + +#: ../../../CHANGELOG:1570 +msgid "Added a SUBSONIC_DEFAULT_TRANSCODING_FORMAT env var to support clients that don't provide the format parameter (#867)" +msgstr "" + +#: ../../../CHANGELOG:1571 +msgid "Added button to search for objects on Discogs (#368)" +msgstr "" + +#: ../../../CHANGELOG:1572 +msgid "Added copy-to-clipboard button with Subsonic password input (#814)" +msgstr "" + +#: ../../../CHANGELOG:1573 +msgid "Added opus to the list of supported mimetypes and extensions (#868)" +msgstr "" + +#: ../../../CHANGELOG:1574 +msgid "Aligned search headers with search results in the sidebar (#708)" +msgstr "" + +#: ../../../CHANGELOG:1575 +msgid "Clicking on the currently selected playlist in the Playlist popup will now close the popup (#807)" +msgstr "" + +#: ../../../CHANGELOG:1576 +msgid "Favorites radio will not be visible if the user does not have any favorites (#419)" +msgstr "" + +#: ../../../CHANGELOG:1581 +msgid "Ensure empty but optional fields in file metadata don't error during import (#850)" +msgstr "" + +#: ../../../CHANGELOG:1582 +msgid "Fix broken upload for specific files when using S3 storage (#857)" +msgstr "" + +#: ../../../CHANGELOG:1583 +msgid "Fixed broken translation on home and track detail page (#833)" +msgstr "" + +#: ../../../CHANGELOG:1584 +msgid "Fixed broken user admin for users with non-digit or letters in their username (#869)" +msgstr "" + +#: ../../../CHANGELOG:1585 +msgid "Fixed invalid file extension for transcoded tracks (#848)" +msgstr "" + +#: ../../../CHANGELOG:1586 +msgid "Fixed issue with French translation for \"Start radio\" (#849)" +msgstr "" + +#: ../../../CHANGELOG:1587 +msgid "Fixed issue with player changing height when hovering over the volume slider (#838)" +msgstr "" + +#: ../../../CHANGELOG:1588 +msgid "Fixed secondary menus truncated on narrow screens (#855)" +msgstr "" + +#: ../../../CHANGELOG:1589 +msgid "Fixed wrong og:image url when using S3 storage (#851)" +msgstr "" + +#: ../../../CHANGELOG:1590 +msgid "Hide pod statistics on about page if those are disabled (#835)" +msgstr "" + +#: ../../../CHANGELOG:1591 +msgid "Use ASCII filename before upload to S3 to avoid playback issues (#847)" +msgstr "" + +#: ../../../CHANGELOG:1594 +msgid "Contributors to this release (commiters and reviewers):" +msgstr "" + +#: ../../../CHANGELOG:1598 +msgid "ealgase" +msgstr "" + +#: ../../../CHANGELOG:1609 +msgid "0.19.0 (2019-05-16)" +msgstr "" + +#: ../../../CHANGELOG:1616 +msgid "Edits on tracks, albums and artists" +msgstr "" + +#: ../../../CHANGELOG:1618 +msgid "Funkwhale was a bit annoying when it camed to metadata. Tracks, albums and artists profiles were created from audio file tags, but basically immutable after that (unless you had admin access to Django's UI, which wasn't ideal to do this kind of changes)." +msgstr "" + +#: ../../../CHANGELOG:1622 +msgid "With this release, everyone can suggest changes on track, album and artist pages. Users with the \"library\" permission can review suggested edits in a dedicated interface and apply/reject them." +msgstr "" + +#: ../../../CHANGELOG:1626 +msgid "Approved edits are broadcasted via federation, to ensure other instances get the information too." +msgstr "" + +#: ../../../CHANGELOG:1629 +msgid "Not all fields are currently modifiable using this feature. Especially, it's not possible to suggest a new album cover, or reassign a track to a different album or artist. Those will be implemented in a future release." +msgstr "" + +#: ../../../CHANGELOG:1634 +msgid "Admin UI for tracks, albums, artists, libraries and uploads" +msgstr "" + +#: ../../../CHANGELOG:1636 +msgid "As part of our ongoing effort to make Funkwhale easier to manage for instance owners, this release includes a brand new administration interface to deal with:" +msgstr "" + +#: ../../../CHANGELOG:1639 +msgid "tracks" +msgstr "" + +#: ../../../CHANGELOG:1640 +msgid "albums" +msgstr "" + +#: ../../../CHANGELOG:1641 +msgid "artists" +msgstr "" + +#: ../../../CHANGELOG:1642 +msgid "libraries" +msgstr "" + +#: ../../../CHANGELOG:1643 +msgid "uploads" +msgstr "" + +#: ../../../CHANGELOG:1645 +msgid "You can use this UI to quickly search for any object, delete objects in batch, understand where they are coming from etc. This new UI should remove the need to go through Django's admin in the vast majority of cases (but also includes a link to Django's admin when needed)." +msgstr "" + +#: ../../../CHANGELOG:1650 +msgid "Artist hiding in the interface" +msgstr "" + +#: ../../../CHANGELOG:1652 +msgid "It's now possible for users to hide artists they don't want to see." +msgstr "" + +#: ../../../CHANGELOG:1654 +msgid "Content linked to hidden artists will not show up in the interface anymore. Especially:" +msgstr "" + +#: ../../../CHANGELOG:1656 +msgid "Hidden artists tracks are removed from the current queue" +msgstr "" + +#: ../../../CHANGELOG:1657 +msgid "Starting a playlist will skip tracks from hidden artists" +msgstr "" + +#: ../../../CHANGELOG:1658 +msgid "Recently favorited, recently listened and recently added widgets on the homepage won't include content from hidden artists" +msgstr "" + +#: ../../../CHANGELOG:1659 +msgid "Radio suggestions will exclude tracks from hidden artists" +msgstr "" + +#: ../../../CHANGELOG:1660 +msgid "Hidden artists won't appear in Subsonic apps" +msgstr "" + +#: ../../../CHANGELOG:1662 +msgid "Results linked to hidden artists will continue to show up in search results and their profile page remains accessible." +msgstr "" + +#: ../../../CHANGELOG:1665 +msgid "OAuth2 authorization for better integration with third-party apps" +msgstr "" + +#: ../../../CHANGELOG:1667 +msgid "Funkwhale now support the OAuth2 authorization and authentication protocol which will allow third-party apps to interact with Funkwhale on behalf of users." +msgstr "" + +#: ../../../CHANGELOG:1670 +msgid "This feature makes it possible to build third-party apps that have the same capabilities as Funkwhale's Web UI. The only exception at the moment is for actions that requires special permissions, such as modifying instance settings or moderation (but this will be enabled in a future release)." +msgstr "" + +#: ../../../CHANGELOG:1675 +msgid "If you want to start building an app on top of Funkwhale's API, please check-out https://docs.funkwhale.audio/api.html and https://docs.funkwhale.audio/developers/authentication.html." +msgstr "" + +#: ../../../CHANGELOG:1679 +msgid "Better error handling and display during import" +msgstr "" + +#: ../../../CHANGELOG:1681 +msgid "Funkwhale should now be more resilient to missing tags in imported files, and give you more insights when something goes wrong, including the specific tags that were missing or invalid, and additional debug information to share in your support requests." +msgstr "" + +#: ../../../CHANGELOG:1685 +msgid "This information is available in all pages that list uploads, when clicking on the button next to the upload status." +msgstr "" + +#: ../../../CHANGELOG:1688 +msgid "Support for S3-compatible storages to store media files" +msgstr "" + +#: ../../../CHANGELOG:1690 +msgid "Storing all media files on the Funkwhale server itself may not be possible or desirable in all scenarios. You can now configure Funkwhale to store those files in a S3 bucket instead." +msgstr "" + +#: ../../../CHANGELOG:1694 +msgid "Check-out https://docs.funkwhale.audio/admin/external-storages.html if you want to use this feature." +msgstr "" + +#: ../../../CHANGELOG:1698 +msgid "Prune library command" +msgstr "" + +#: ../../../CHANGELOG:1700 +msgid "Users are often surprised by Funkwhale's tendency to keep track, album and artist metadata even if no associated files exist." +msgstr "" + +#: ../../../CHANGELOG:1703 +msgid "To help with that, we now offer a ``prune_library`` management command you can run to purge your database from obsolete entries. `Please refer to our documentation for usage instructions <https://docs.funkwhale.audio/admin/commands.html#pruning-library>`__." +msgstr "" + +#: ../../../CHANGELOG:1708 +msgid "Check in-place files command" +msgstr "" + +#: ../../../CHANGELOG:1710 +msgid "When using in-place import with a living audio library, you'll quite often rename or remove files from the file system. Unfortunately, Funkwhale keeps a reference to those files in the database, which results in unplayable tracks." +msgstr "" + +#: ../../../CHANGELOG:1714 +msgid "To help with that, we now offer a ``check_inplace_files`` management command you can run to purge your database from obsolete files. `Please refer to our documentation for usage instructions <https://docs.funkwhale.audio/admin/commands.html#remove-obsolete-files-from-database>`__." +msgstr "" + +#: ../../../CHANGELOG:1721 +msgid "Added albums view. Similar to artists view, it's viewable by clicking on the \"Albums\" link on the top bar. (#356)" +msgstr "" + +#: ../../../CHANGELOG:1722 +msgid "Allow artists hiding (#701)" +msgstr "" + +#: ../../../CHANGELOG:1723 +msgid "Change the document title to display current track information. (#359)" +msgstr "" + +#: ../../../CHANGELOG:1724 +msgid "Display a confirmation dialog when adding duplicate songs to a playlist (#784)" +msgstr "" + +#: ../../../CHANGELOG:1725 +msgid "Improved error handling and display during import (#252, #718, #583, #501, #544)" +msgstr "" + +#: ../../../CHANGELOG:1726 +msgid "Support embedding full artist discographies (#747)" +msgstr "" + +#: ../../../CHANGELOG:1727 +msgid "Support metadata update on tracks, albums and artists and broadcast those on the federation (#689)" +msgstr "" + +#: ../../../CHANGELOG:1728 +msgid "Support OAuth2 authorization for better integration with third-party apps (#752)" +msgstr "" + +#: ../../../CHANGELOG:1729 +msgid "Support S3-compatible storages for media files (#565)" +msgstr "" + +#: ../../../CHANGELOG:1734 +msgid "[Experimental] Added a new \"Similar\" radio based on users history (suggested by @gordon)" +msgstr "" + +#: ../../../CHANGELOG:1735 +msgid "Added a \"load more\" button on artist pages to load more tracks/albums (#719)" +msgstr "" + +#: ../../../CHANGELOG:1736 +msgid "Added a `check_inplace_files` management command to remove purge the database from references to in-place imported files that don't exist on disk anymore (#781)" +msgstr "" + +#: ../../../CHANGELOG:1737 +msgid "Added a prune_library management command to remove obsolete metadata from the database (#777)" +msgstr "" + +#: ../../../CHANGELOG:1738 +msgid "Added admin options to disable login for users, ensure related content is deleted when deleting a user account (#809)" +msgstr "" + +#: ../../../CHANGELOG:1739 +msgid "Added standardized translation context for all strings in the frontend to give accurate hints to translators." +msgstr "" + +#: ../../../CHANGELOG:1740 +msgid "Added twitter:* meta tags to detect tracks and albums players automatically on more sites (#578) Improved responsiveness of embedded player" +msgstr "" + +#: ../../../CHANGELOG:1742 +msgid "Advertise the list of supported upload extensions in the Nodeinfo endpoint (#808)" +msgstr "" + +#: ../../../CHANGELOG:1743 +msgid "Better handling of follow/accept messages to avoid and recover from desync between instances (#830)" +msgstr "" + +#: ../../../CHANGELOG:1744 +msgid "Better workflow for connecting to another instance (#715)" +msgstr "" + +#: ../../../CHANGELOG:1746 +msgid "Changing the instance used is now better integrated in the App, and it is checked that the chosen instance and the suggested instances are valid and running Funkwhale servers." +msgstr "" + +#: ../../../CHANGELOG:1747 +msgid "Bumped dependencies to latest versions (#815)" +msgstr "" + +#: ../../../CHANGELOG:1748 +msgid "Descriptions will now be shown underneath user libraries (#768)" +msgstr "" + +#: ../../../CHANGELOG:1749 +msgid "Don't store unhandled ActivityPub messages in database (#776)" +msgstr "" + +#: ../../../CHANGELOG:1750 +msgid "Enhanced the design of the embed wizard. (!619)" +msgstr "" + +#: ../../../CHANGELOG:1751 +msgid "Ensure the footer always stays at the bottom of the page" +msgstr "" + +#: ../../../CHANGELOG:1752 +msgid "Expose an instance-level actor (service@domain) in nodeinfo endpoint (#689)" +msgstr "" + +#: ../../../CHANGELOG:1753 +msgid "Improved readability of logo (#385)" +msgstr "" + +#: ../../../CHANGELOG:1754 +msgid "Keep persistent connections to the database instead of recreating a new one for each request" +msgstr "" + +#: ../../../CHANGELOG:1755 +msgid "Labels for privacy levels are now consistently grabbed from a common source instead of being hardcoded everytime they are needed." +msgstr "" + +#: ../../../CHANGELOG:1756 +msgid "Merged artist/album buttons with title text on artist and album pages (#725)" +msgstr "" + +#: ../../../CHANGELOG:1757 +msgid "Now honor maxBitrate parameter in Subsonic API (#802)" +msgstr "" + +#: ../../../CHANGELOG:1758 +msgid "Preload next track in queue (#572)" +msgstr "" + +#: ../../../CHANGELOG:1759 +msgid "Reduced app size for regular users by moving admin-related code in a dedicated chunk (#805)" +msgstr "" + +#: ../../../CHANGELOG:1760 +msgid "Removed broken/instable lyrics feature (#799)" +msgstr "" + +#: ../../../CHANGELOG:1761 +msgid "Show remaining storage space during import and prevent file upload if not enough space is remaining (#550)" +msgstr "" + +#: ../../../CHANGELOG:1762 +msgid "The buttons displaying an icon now always show a little divider between the icon and the text. (!620)" +msgstr "" + +#: ../../../CHANGELOG:1763 +msgid "Use attributedTo instead of actor in library ActivityPub payload (#619)" +msgstr "" + +#: ../../../CHANGELOG:1764 +msgid "Use network/depends_on instead of links in docker-compose.yml (!716)" +msgstr "" + +#: ../../../CHANGELOG:1769 +msgid "Add missing command from contributing file (#754)" +msgstr "" + +#: ../../../CHANGELOG:1770 +msgid "Add required envvar for dev environment (!668)" +msgstr "" + +#: ../../../CHANGELOG:1771 +msgid "Added env variable to set AWS region and signature version to serve media without proxy (#826)" +msgstr "" + +#: ../../../CHANGELOG:1772 +msgid "Allow users with dots in their usernames to request a subsonic password (#798)" +msgstr "" + +#: ../../../CHANGELOG:1773 +msgid "Better handling of featuring/multi-artist tracks tagged with MusicBrainz (#782)" +msgstr "" + +#: ../../../CHANGELOG:1774 +msgid "Do not consider tracks as duplicates during import if they have different positions (#740)" +msgstr "" + +#: ../../../CHANGELOG:1775 +msgid "Ensure all our ActivityPub fetches are authenticated (#758)" +msgstr "" + +#: ../../../CHANGELOG:1776 +msgid "Ensure correct track duration and playable status when browsing radios (#812)" +msgstr "" + +#: ../../../CHANGELOG:1777 +msgid "Fixed alignement/size issue with some buttons (#702)" +msgstr "" + +#: ../../../CHANGELOG:1778 +msgid "Fixed an encoding issue with instance name on about page (#828)" +msgstr "" + +#: ../../../CHANGELOG:1779 +msgid "Fixed cover not showing in queue/player when playing tracks from \"albums\" tab (#795)" +msgstr "" + +#: ../../../CHANGELOG:1780 +msgid "Fixed crashing upload processing on invalid date format (#718)" +msgstr "" + +#: ../../../CHANGELOG:1781 +msgid "Fixed dev command for fake data creation (!664)" +msgstr "" + +#: ../../../CHANGELOG:1782 +msgid "Fixed invalid OEmbed URL when using a local FUNKWHALE_SPA_HTML_ROOT (#824)" +msgstr "" + +#: ../../../CHANGELOG:1783 +msgid "Fixed invalid required fields in Upload django's admin (#819)" +msgstr "" + +#: ../../../CHANGELOG:1784 +msgid "Fixed issue with querying the albums api endpoint (#356)" +msgstr "" + +#: ../../../CHANGELOG:1785 +msgid "Fixed non-transparent background for volume range on Firefox (#722)" +msgstr "" + +#: ../../../CHANGELOG:1786 +msgid "Fixed overflowing input on account detail page (#791)" +msgstr "" + +#: ../../../CHANGELOG:1787 +msgid "Fixed unplayable radios for anonymous users (#563)" +msgstr "" + +#: ../../../CHANGELOG:1788 +msgid "Prevent skipping on file import if album_mbid is different (#772)" +msgstr "" + +#: ../../../CHANGELOG:1789 +msgid "Use proper site name/domain in emails (#806)" +msgstr "" + +#: ../../../CHANGELOG:1790 +msgid "Width of filter menus for radios has been set to stop text from overlapping the borders" +msgstr "" + +#: ../../../CHANGELOG:1795 +msgid "Document how to use Redis over unix sockets (#770)" +msgstr "" + +#: ../../../CHANGELOG:1797 +msgid "Contributors to this release (commiters and translators):" +msgstr "" + +#: ../../../CHANGELOG:1799 +msgid "Ale London" +msgstr "" + +#: ../../../CHANGELOG:1800 +msgid "Alexander" +msgstr "" + +#: ../../../CHANGELOG:1801 +msgid "Ben Finney" +msgstr "" + +#: ../../../CHANGELOG:1804 +msgid "Damien Nicolas" +msgstr "" + +#: ../../../CHANGELOG:1807 +msgid "Elza Gelez" +msgstr "" + +#: ../../../CHANGELOG:1808 +msgid "gerry_the_hat" +msgstr "" + +#: ../../../CHANGELOG:1809 +msgid "gordon" +msgstr "" + +#: ../../../CHANGELOG:1811 +msgid "jake" +msgstr "" + +#: ../../../CHANGELOG:1812 +msgid "Jee" +msgstr "" + +#: ../../../CHANGELOG:1816 +msgid "Pierrick" +msgstr "" + +#: ../../../CHANGELOG:1817 +msgid "Qasim Ali" +msgstr "" + +#: ../../../CHANGELOG:1822 +msgid "Thomas Brockmöller" +msgstr "" + +#: ../../../CHANGELOG:1823 +msgid "Tixie" +msgstr "" + +#: ../../../CHANGELOG:1824 +msgid "Vierkantor" +msgstr "" + +#: ../../../CHANGELOG:1825 +msgid "Von" +msgstr "" + +#: ../../../CHANGELOG:1826 +msgid "Zach Halasz" +msgstr "" + +#: ../../../CHANGELOG:1829 +msgid "0.18.3 (2019-03-21)" +msgstr "" + +#: ../../../CHANGELOG:1836 +msgid "Avoid mixed content when deploying mono-container behind proxy [Manual action required]" +msgstr "" + +#: ../../../CHANGELOG:1838 +msgid "*You are only concerned if you use the mono-container docker deployment behind a reverse proxy*" +msgstr "" + +#: ../../../CHANGELOG:1840 +msgid "Because of `an issue in our mono-container configuration <https://github.com/thetarkus/docker-funkwhale/issues/19>`_, users deploying Funkwhale via docker using our `funkwhale/all-in-one` image could face some mixed content warnings (and possibly other troubles) when browsing the Web UI." +msgstr "" + +#: ../../../CHANGELOG:1844 +msgid "This is fixed in this release, but on existing deployments, you'll need to add ``NESTED_PROXY=1`` in your container environment (either in your ``.env`` file, or via your container management tool), then recreate your funkwhale container." +msgstr "" + +#: ../../../CHANGELOG:1850 +msgid "Added title on hover for truncated content (#766)" +msgstr "" + +#: ../../../CHANGELOG:1851 +msgid "Ask for confirmation before leaving upload page if there is a an upload in process (#630)" +msgstr "" + +#: ../../../CHANGELOG:1852 +msgid "Exclude in-place imported files from quota computation (#570)" +msgstr "" + +#: ../../../CHANGELOG:1853 +msgid "Truncate filename in library file table to ensure correct display of the table. (#735)" +msgstr "" + +#: ../../../CHANGELOG:1858 +msgid "Avoid mixed content when deploying mono-container behind HTTPS proxy (thetarkus/docker-funkwhale#19)" +msgstr "" + +#: ../../../CHANGELOG:1859 +msgid "Display new notifications immediatly on notifications page (#729)" +msgstr "" + +#: ../../../CHANGELOG:1860 +msgid "Ensure cover art from uploaded files is picked up properly on existing albums (#757)" +msgstr "" + +#: ../../../CHANGELOG:1861 +msgid "Fixed a crash when federating a track with unspecified position" +msgstr "" + +#: ../../../CHANGELOG:1862 +msgid "Fixed broken Activity and Actor modules in django admin (#767)" +msgstr "" + +#: ../../../CHANGELOG:1863 +msgid "Fixed broken sample apache configuration (#764)" +msgstr "" + +#: ../../../CHANGELOG:1864 +msgid "Fixed constant and unpredictable reordering during file upload (#716)" +msgstr "" + +#: ../../../CHANGELOG:1865 +msgid "Fixed delivering of local activities causing unintended side effects, such as rollbacking changes (#737)" +msgstr "" + +#: ../../../CHANGELOG:1866 +msgid "Fixed escaping issues in translated strings (#652)" +msgstr "" + +#: ../../../CHANGELOG:1867 +msgid "Fixed saving moderation policy when clicking on \"Cancel\" (#751)" +msgstr "" + +#: ../../../CHANGELOG:1868 +msgid "i18n: Update page title when changing the App's language. (#511)" +msgstr "" + +#: ../../../CHANGELOG:1869 +msgid "Include disc number in Subsonic responses (#765)" +msgstr "" + +#: ../../../CHANGELOG:1870 +msgid "Do not send notification when rejecting a follow on a local library (#743)" +msgstr "" + +#: ../../../CHANGELOG:1875 +msgid "Added documentation on mono-container docker upgrade (#713)" +msgstr "" + +#: ../../../CHANGELOG:1876 +msgid "Added documentation to set up let's encrypt certificate (#745)" +msgstr "" + +#: ../../../CHANGELOG:1880 +msgid "0.18.2 (2019-02-13)" +msgstr "" + +#: ../../../CHANGELOG:1887 +msgid "Added a 'fix_federation_ids' management command to deal with protocol/domain issues in federation IDs after deployments (#706)" +msgstr "" + +#: ../../../CHANGELOG:1889 +msgid "Can now use a local file with FUNKWHALE_SPA_HTML_ROOT to avoid sending an HTTP request (#705)" +msgstr "" + +#: ../../../CHANGELOG:1894 +msgid "Downgraded channels dependency to 2.1.6 to fix denied uploads (#697)" +msgstr "" + +#: ../../../CHANGELOG:1895 +msgid "Fixed cards display issues on medium/small screens (#707)" +msgstr "" + +#: ../../../CHANGELOG:1896 +msgid "Fixed Embed component name that could lead to issue when developping on OSX (#696)" +msgstr "" + +#: ../../../CHANGELOG:1897 +msgid "Fixed resizing issues for album cards on artist pages (#694)" +msgstr "" + +#: ../../../CHANGELOG:1901 +msgid "0.18.1 (2019-01-29)" +msgstr "" + +#: ../../../CHANGELOG:1908 +msgid "Fix Gzip compression to avoid BREACH exploit [security] [manual action required]" +msgstr "" + +#: ../../../CHANGELOG:1910 +msgid "In the 0.18 release, we've enabled Gzip compression by default for various content types, including HTML and JSON. Unfortunately, enabling Gzip compression on such content types could make BREACH-type exploits possible." +msgstr "" + +#: ../../../CHANGELOG:1914 +msgid "We've removed the risky content-types from our nginx template files, to ensure new instances are safe, however, if you already have an instance, you need to double check that your host nginx virtualhost do not include the following values for the ``gzip_types`` settings::" +msgstr "" + +#: ../../../CHANGELOG:1928 +msgid "For convenience, you can also replace the whole setting with the following snippet::" +msgstr "" + +#: ../../../CHANGELOG:1949 +msgid "Many thanks to @jibec for the report!" +msgstr "" + +#: ../../../CHANGELOG:1952 +msgid "Fix Apache configuration file for 0.18 [manual action required]" +msgstr "" + +#: ../../../CHANGELOG:1954 +msgid "The way front is served has changed since 0.18. The Apache configuration can't serve 0.18 properly, leading to blank screens." +msgstr "" + +#: ../../../CHANGELOG:1956 +msgid "If you are on an Apache setup, you will have to replace the `<Location \"/api\">` block with the following::" +msgstr "" + +#: ../../../CHANGELOG:1966 +msgid "And add some more `ProxyPass` directives so that the `Alias` part of your configuration file looks this way::" +msgstr "" + +#: ../../../CHANGELOG:1977 +msgid "In case you are using custom css and theming, you also need to match this block::" +msgstr "" + +#: ../../../CHANGELOG:1988 +msgid "Added name attributes on all inputs to improve UX, especially with password managers (#686)" +msgstr "" + +#: ../../../CHANGELOG:1989 +msgid "Disable makemigrations in production and misleading message when running migrate (#685)" +msgstr "" + +#: ../../../CHANGELOG:1990 +msgid "Display progress during file upload" +msgstr "" + +#: ../../../CHANGELOG:1991 +msgid "Hide pagination when there is only one page of results (#681)" +msgstr "" + +#: ../../../CHANGELOG:1992 +msgid "Include shared/public playlists in Subsonic API responses (#684)" +msgstr "" + +#: ../../../CHANGELOG:1993 +msgid "Use proper locale for date-related/duration strings (#670)" +msgstr "" + +#: ../../../CHANGELOG:1998 +msgid "Fix transcoding of in-place imported tracks (#688)" +msgstr "" + +#: ../../../CHANGELOG:1999 +msgid "Fixed celery worker defaulting to development settings instead of production" +msgstr "" + +#: ../../../CHANGELOG:2000 +msgid "Fixed crashing Django admin when loading track detail page (#666)" +msgstr "" + +#: ../../../CHANGELOG:2001 +msgid "Fixed list icon alignement on landing page (#668)" +msgstr "" + +#: ../../../CHANGELOG:2002 +msgid "Fixed overescaping issue in notifications and album page (#676)" +msgstr "" + +#: ../../../CHANGELOG:2003 +msgid "Fixed wrong number of affected elements in bulk action modal (#683)" +msgstr "" + +#: ../../../CHANGELOG:2004 +msgid "Fixed wrong URL in documentation for funkwhale_proxy.conf file when deploying using Docker" +msgstr "" + +#: ../../../CHANGELOG:2005 +msgid "Make Apache configuration file work with 0.18 changes (#667)" +msgstr "" + +#: ../../../CHANGELOG:2006 +msgid "Removed potential BREACH exploit because of Gzip compression (#678)" +msgstr "" + +#: ../../../CHANGELOG:2007 +msgid "Upgraded kombu to fix an incompatibility with redis>=3" +msgstr "" + +#: ../../../CHANGELOG:2012 +msgid "Added user upload documentation at https://docs.funkwhale.audio/users/upload.html" +msgstr "" + +#: ../../../CHANGELOG:2016 +msgid "0.18 \"Naomi\" (2019-01-22)" +msgstr "" + +#: ../../../CHANGELOG:2018 +msgid "This release is dedicated to Naomi, an early contributor and beta tester of Funkwhale. Her positivity, love and support have been incredibly helpful and helped shape the project as you can enjoy it today. Thank you so much Naomi <3" +msgstr "" + +#: ../../../CHANGELOG:2022 +msgid "Many thanks to the dozens of people that contributed to this release: translators, developers, bug hunters, admins and backers. You made it possible!" +msgstr "" + +#: ../../../CHANGELOG:2025 +msgid "Upgrade instructions are available at https://docs.funkwhale.audio/admin/upgrading.html, ensure you also execute the intructions marked with ``[manual action required]`` and ``[manual action suggested]``." +msgstr "" + +#: ../../../CHANGELOG:2029 +msgid "See ``Full changelog`` below for an exhaustive list of changes!" +msgstr "" + +#: ../../../CHANGELOG:2032 +msgid "Audio transcoding is back!" +msgstr "" + +#: ../../../CHANGELOG:2034 +msgid "After removal of our first, buggy transcoding implementation, we're proud to announce that this feature is back. It is enabled by default, and can be configured/disabled in your instance settings!" +msgstr "" + +#: ../../../CHANGELOG:2038 +msgid "This feature works in the browser, with federated/non-federated tracks and using Subsonic clients. Transcoded tracks are generated on the fly, and cached for a configurable amount of time, to reduce the load on the server." +msgstr "" + +#: ../../../CHANGELOG:2044 +msgid "Licensing and copyright information" +msgstr "" + +#: ../../../CHANGELOG:2046 +msgid "Funkwhale is now able to parse copyright and license data from file and store this information. Apart from displaying it on each track detail page, no additional behaviour is currently implemented to use this new data, but this will change in future releases." +msgstr "" + +#: ../../../CHANGELOG:2051 +msgid "License and copyright data is also broadcasted over federation." +msgstr "" + +#: ../../../CHANGELOG:2053 +msgid "License matching is done on the content of the ``License`` tag in the files, with a fallback on the ``Copyright`` tag." +msgstr "" + +#: ../../../CHANGELOG:2056 +msgid "Funkwhale will successfully extract licensing data for the following licenses:" +msgstr "" + +#: ../../../CHANGELOG:2058 +msgid "Creative Commons 0 (Public Domain)" +msgstr "" + +#: ../../../CHANGELOG:2059 +msgid "Creative Commons 1.0 (All declinations)" +msgstr "" + +#: ../../../CHANGELOG:2060 +msgid "Creative Commons 2.0 (All declinations)" +msgstr "" + +#: ../../../CHANGELOG:2061 +msgid "Creative Commons 2.5 (All declinations and countries)" +msgstr "" + +#: ../../../CHANGELOG:2062 +msgid "Creative Commons 3.0 (All declinations and countries)" +msgstr "" + +#: ../../../CHANGELOG:2063 +msgid "Creative Commons 4.0 (All declinations)" +msgstr "" + +#: ../../../CHANGELOG:2065 +msgid "Support for other licenses such as Art Libre or WTFPL will be added in future releases." +msgstr "" + +#: ../../../CHANGELOG:2069 +msgid "Instance-level moderation tools" +msgstr "" + +#: ../../../CHANGELOG:2071 +msgid "This release includes a first set of moderation tools that will give more control to admins about the way their instance federates with other instance and accounts on the network. Using these tools, it's now possible to:" +msgstr "" + +#: ../../../CHANGELOG:2075 +msgid "Browse known accounts and domains, and associated data (storage size, software version, etc.)" +msgstr "" + +#: ../../../CHANGELOG:2076 +msgid "Purge data belonging to given accounts and domains" +msgstr "" + +#: ../../../CHANGELOG:2077 +msgid "Block or partially restrict interactions with any account or domain" +msgstr "" + +#: ../../../CHANGELOG:2079 +msgid "All those features are usable using a brand new \"moderation\" permission, meaning you can appoint one or multiple moderators to help with this task." +msgstr "" + +#: ../../../CHANGELOG:2082 +msgid "I'd like to thank all Mastodon contributors, because some of the these tools are heavily inspired from what's being done in Mastodon. Thank you so much!" +msgstr "" + +#: ../../../CHANGELOG:2087 +msgid "Iframe widget to embed public tracks and albums [manual action required]" +msgstr "" + +#: ../../../CHANGELOG:2089 +msgid "Funkwhale now supports embedding a lightweight audio player on external websites for album and tracks that are available in public libraries. Important pages, such as artist, album and track pages also include OpenGraph tags that will enable previews on compatible apps (like sharing a Funkwhale track link on Mastodon or Twitter)." +msgstr "" + +#: ../../../CHANGELOG:2095 +msgid "To achieve that, we had to tweak the way Funkwhale front-end is served. You'll have to modify your nginx configuration when upgrading to keep your instance working." +msgstr "" + +#: ../../../CHANGELOG:2098 +msgid "**On docker setups**, edit your ``/srv/funkwhale/nginx/funkwhale.template`` and replace the ``location /api/`` and `location /` blocks by the following snippets::" +msgstr "" + +#: ../../../CHANGELOG:2112 +msgid "The change of configuration will be picked when restarting your nginx container." +msgstr "" + +#: ../../../CHANGELOG:2114 +msgid "**On non-docker setups**, edit your ``/etc/nginx/sites-available/funkwhale.conf`` file, and replace the ``location /api/`` and `location /` blocks by the following snippets::" +msgstr "" + +#: ../../../CHANGELOG:2129 +msgid "Replace ``${FUNKWHALE_FRONTEND_PATH}`` by the corresponding variable from your .env file, which should be ``/srv/funkwhale/front/dist`` by default, then reload your nginx process with ``sudo systemctl reload nginx``." +msgstr "" + +#: ../../../CHANGELOG:2135 +msgid "Alternative docker deployment method" +msgstr "" + +#: ../../../CHANGELOG:2137 +msgid "Thanks to the awesome work done by @thetarkus at https://github.com/thetarkus/docker-funkwhale, we're now able to provide an alternative and easier Docker deployment method!" +msgstr "" + +#: ../../../CHANGELOG:2140 +msgid "In contrast with our current, multi-container offer, this method integrates all Funkwhale processes and services (database, redis, etc.) into a single, easier to deploy container." +msgstr "" + +#: ../../../CHANGELOG:2143 +msgid "Both methods will coexist in parallel, as each one has pros and cons. You can learn more about this exciting new deployment option by visiting https://docs.funkwhale.audio/installation/docker.html!" +msgstr "" + +#: ../../../CHANGELOG:2147 +msgid "Automatically load .env file" +msgstr "" + +#: ../../../CHANGELOG:2149 +msgid "On non-docker deployments, earlier versions required you to source the config/.env file before launching any Funkwhale command, with ``export $(cat config/.env | grep -v ^# | xargs)`` This led to more complex and error prone deployment / setup." +msgstr "" + +#: ../../../CHANGELOG:2153 +msgid "This is not the case anymore, and Funkwhale will automatically load this file if it's available." +msgstr "" + +#: ../../../CHANGELOG:2157 +msgid "Delete pre 0.17 federated tracks [manual action suggested]" +msgstr "" + +#: ../../../CHANGELOG:2159 +msgid "If you were using Funkwhale before the 0.17 release and federated with other instances, it's possible that you still have some unplayable federated files in the database." +msgstr "" + +#: ../../../CHANGELOG:2162 +msgid "To purge the database of those entries, you can run the following command:" +msgstr "" + +#: ../../../CHANGELOG:2164 +#: ../../../CHANGELOG:2715 +#: ../../../CHANGELOG:2738 +msgid "On docker setups::" +msgstr "" + +#: ../../../CHANGELOG:2168 +#: ../../../CHANGELOG:2719 +#: ../../../CHANGELOG:2742 +msgid "On non-docker setups::" +msgstr "" + +#: ../../../CHANGELOG:2174 +msgid "Enable gzip compression [manual action suggested]" +msgstr "" + +#: ../../../CHANGELOG:2176 +msgid "Gzip compression will be enabled on new instances by default and will reduce the amount of bandwidth consumed by your instance." +msgstr "" + +#: ../../../CHANGELOG:2179 +msgid "If you want to benefit from gzip compression on your instance, edit your reverse proxy virtualhost file (located at ``/etc/nginx/sites-available/funkwhale.conf``) and add the following snippet in the server block, then reload your nginx server::" +msgstr "" + +#: ../../../CHANGELOG:2215 +msgid "Full changelog" +msgstr "" + +#: ../../../CHANGELOG:2219 +msgid "Allow embedding of albums and tracks available in public libraries via an <iframe> (#578)" +msgstr "" + +#: ../../../CHANGELOG:2220 +msgid "Audio transcoding is back! (#272)" +msgstr "" + +#: ../../../CHANGELOG:2221 +msgid "First set of instance level moderation tools (#580, !521)" +msgstr "" + +#: ../../../CHANGELOG:2222 +msgid "Store licensing and copyright information from file metadata, if available (#308)" +msgstr "" + +#: ../../../CHANGELOG:2227 +msgid "Add UI elements for multi-disc albums (#631)" +msgstr "" + +#: ../../../CHANGELOG:2228 +msgid "Added alternative funkwhale/all-in-one docker image (#614)" +msgstr "" + +#: ../../../CHANGELOG:2229 +msgid "Broadcast library updates (name, description, visibility) over federation" +msgstr "" + +#: ../../../CHANGELOG:2230 +msgid "Based Docker image on alpine to have a smaller (and faster to build) image" +msgstr "" + +#: ../../../CHANGELOG:2231 +msgid "Improved front-end performance by stripping unused dependencies, reducing bundle size and enabling gzip compression" +msgstr "" + +#: ../../../CHANGELOG:2233 +msgid "Improved accessibility by using main/section/nav tags and aria-labels in most critical places (#612)" +msgstr "" + +#: ../../../CHANGELOG:2234 +msgid "The progress bar in the player now display loading state / buffer loading (#586)" +msgstr "" + +#: ../../../CHANGELOG:2235 +msgid "Added \"type: funkwhale\" and \"funkwhale-version\" in Subsonic responses (#573)" +msgstr "" + +#: ../../../CHANGELOG:2236 +msgid "Documented keyboard shortcuts, list is now available by pressing \"h\" or in the footer (#611)" +msgstr "" + +#: ../../../CHANGELOG:2237 +msgid "Documented which Subsonic endpoints are implemented (#575)" +msgstr "" + +#: ../../../CHANGELOG:2238 +msgid "Hide invitation code field during signup when it's not required (#410)" +msgstr "" + +#: ../../../CHANGELOG:2239 +msgid "Importer will now pick embedded images in files with OTHER type if no COVER_FRONT is present" +msgstr "" + +#: ../../../CHANGELOG:2240 +msgid "Improved keyboard accessibility on player, queue and various controls (#576)" +msgstr "" + +#: ../../../CHANGELOG:2241 +msgid "Improved performance when listing playable tracks, albums and artists" +msgstr "" + +#: ../../../CHANGELOG:2242 +msgid "Increased default upload limit from 30 to 100MB (#654)" +msgstr "" + +#: ../../../CHANGELOG:2243 +msgid "Load env file in config/.env automatically to avoid sourcing it by hand (#626)" +msgstr "" + +#: ../../../CHANGELOG:2244 +msgid "More resilient date parsing during audio import, will not crash anymore on invalid dates (#622)" +msgstr "" + +#: ../../../CHANGELOG:2246 +msgid "Now start radios immediatly, skipping any existing tracks in queue (#585)" +msgstr "" + +#: ../../../CHANGELOG:2247 +msgid "Officially support connecting to a password protected redis server, with the redis://:password@localhost:6379/0 scheme (#640)" +msgstr "" + +#: ../../../CHANGELOG:2249 +msgid "Performance improvement when fetching favorites, down to a single, small http request" +msgstr "" + +#: ../../../CHANGELOG:2250 +msgid "Removed \"Activity\" page, since all the data is available on the \"Browse\" page (#600)" +msgstr "" + +#: ../../../CHANGELOG:2251 +msgid "Removed the need to specify the DJANGO_ALLOWED_HOSTS variable" +msgstr "" + +#: ../../../CHANGELOG:2252 +msgid "Restructured the footer, added useful links and removed unused content" +msgstr "" + +#: ../../../CHANGELOG:2253 +msgid "Show short entries first in search results to improve UX" +msgstr "" + +#: ../../../CHANGELOG:2254 +msgid "Store disc number and order tracks by disc number / position) (#507)" +msgstr "" + +#: ../../../CHANGELOG:2255 +msgid "Strip EXIF metadata from uploaded avatars to avoid leaking private data (#374)" +msgstr "" + +#: ../../../CHANGELOG:2256 +msgid "Support blind key rotation in HTTP Signatures (#658)" +msgstr "" + +#: ../../../CHANGELOG:2257 +msgid "Support setting a server URL in settings.json (#650)" +msgstr "" + +#: ../../../CHANGELOG:2258 +msgid "Updated default docker postgres version from 9.4 to 11 (#656)" +msgstr "" + +#: ../../../CHANGELOG:2259 +msgid "Updated lots of dependencies (especially django 2.0->2.1), and removed unused dependencies (#657)" +msgstr "" + +#: ../../../CHANGELOG:2260 +msgid "Improved test suite speed by reducing / disabling expensive operations (#648)" +msgstr "" + +#: ../../../CHANGELOG:2265 +msgid "Fixed parsing of embedded file cover for ogg files tagged with MusicBrainz (#469)" +msgstr "" + +#: ../../../CHANGELOG:2266 +msgid "Upgraded core dependencies to fix websocket/messaging issues and possible memory leaks (#643)" +msgstr "" + +#: ../../../CHANGELOG:2267 +msgid "Fix \".None\" extension when downloading Flac file (#473)" +msgstr "" + +#: ../../../CHANGELOG:2268 +msgid "Fixed None extension when downloading an in-place imported file (#621)" +msgstr "" + +#: ../../../CHANGELOG:2269 +msgid "Added a script to prune pre 0.17 federated tracks (#564)" +msgstr "" + +#: ../../../CHANGELOG:2270 +msgid "Advertise public libraries properly in ActivityPub representations (#553)" +msgstr "" + +#: ../../../CHANGELOG:2271 +msgid "Allow opus file upload (#598)" +msgstr "" + +#: ../../../CHANGELOG:2272 +msgid "Do not display \"view on MusicBrainz\" button if we miss the mbid (#422)" +msgstr "" + +#: ../../../CHANGELOG:2273 +msgid "Do not try to create unaccent extension if it's already present (#663)" +msgstr "" + +#: ../../../CHANGELOG:2274 +msgid "Ensure admin links in sidebar are displayed for users with relavant permissions, and only them (#597)" +msgstr "" + +#: ../../../CHANGELOG:2275 +msgid "Fix broken websocket connexion under Chrome browser (#589)" +msgstr "" + +#: ../../../CHANGELOG:2276 +msgid "Fix play button not starting playback with empty queue (#632)" +msgstr "" + +#: ../../../CHANGELOG:2277 +msgid "Fixed a styling inconsistency on about page when instance description was missing (#659)" +msgstr "" + +#: ../../../CHANGELOG:2278 +msgid "Fixed a UI discrepency in playlist tracks count (#647)" +msgstr "" + +#: ../../../CHANGELOG:2279 +msgid "Fixed greyed tracks in radio builder and detail page (#637)" +msgstr "" + +#: ../../../CHANGELOG:2280 +msgid "Fixed inconsistencies in subsonic error responses (#616)" +msgstr "" + +#: ../../../CHANGELOG:2281 +msgid "Fixed incorrect icon for \"next track\" in player control (#613)" +msgstr "" + +#: ../../../CHANGELOG:2282 +msgid "Fixed malformed search string when redirecting to LyricsWiki (#608)" +msgstr "" + +#: ../../../CHANGELOG:2283 +msgid "Fixed missing track count on various library cards (#581)" +msgstr "" + +#: ../../../CHANGELOG:2284 +msgid "Fixed skipped track when appending multiple tracks to the queue under certain conditions (#209)" +msgstr "" + +#: ../../../CHANGELOG:2285 +msgid "Fixed wrong album/track count on artist page (#599)" +msgstr "" + +#: ../../../CHANGELOG:2286 +msgid "Hide unplayable/emtpy playlists in \"Browse playlist\" pages (#424)" +msgstr "" + +#: ../../../CHANGELOG:2287 +msgid "Initial UI render using correct language from browser (#644)" +msgstr "" + +#: ../../../CHANGELOG:2288 +msgid "Invalid URI for reverse proxy websocket with apache (#617)" +msgstr "" + +#: ../../../CHANGELOG:2289 +msgid "Properly encode Wikipedia and lyrics search urls (#470)" +msgstr "" + +#: ../../../CHANGELOG:2290 +msgid "Refresh profile after user settings update to avoid cache issues (#606)" +msgstr "" + +#: ../../../CHANGELOG:2291 +msgid "Use role=button instead of empty links for player controls (#610)" +msgstr "" + +#: ../../../CHANGELOG:2296 +msgid "Deploy documentation from the master branch instead of the develop branch to avoid inconsistencies (#642)" +msgstr "" + +#: ../../../CHANGELOG:2297 +msgid "Document how to find and use library id when importing files in CLI (#562)" +msgstr "" + +#: ../../../CHANGELOG:2298 +msgid "Fix documentation typos (#645)" +msgstr "" + +#: ../../../CHANGELOG:2302 +msgid "0.17 (2018-10-07)" +msgstr "" + +#: ../../../CHANGELOG:2305 +msgid "Per user libraries" +msgstr "" + +#: ../../../CHANGELOG:2307 +msgid "This release contains a big change in music management. This has a lot of impact on how Funkwhale behaves, and you should have a look at https://docs.funkwhale.audio/upgrading/0.17.html for information about what changed and how to migrate." +msgstr "" + +#: ../../../CHANGELOG:2315 +msgid "Per user libraries (#463, also fixes #160 and #147)" +msgstr "" + +#: ../../../CHANGELOG:2316 +msgid "Authentication using a LDAP directory (#194)" +msgstr "" + +#: ../../../CHANGELOG:2321 +msgid "Add configuration option to set Musicbrainz hostname" +msgstr "" + +#: ../../../CHANGELOG:2322 +msgid "Add sign up link in the sidebar (#408)" +msgstr "" + +#: ../../../CHANGELOG:2323 +msgid "Added a library widget to display libraries associated with a track, album and artist (#551)" +msgstr "" + +#: ../../../CHANGELOG:2325 +msgid "Ensure from_activity field is not required in django's admin (#546)" +msgstr "" + +#: ../../../CHANGELOG:2326 +msgid "Move setting link from profile page to the sidebar (#406)" +msgstr "" + +#: ../../../CHANGELOG:2327 +msgid "Simplified and less error-prone nginx setup (#358)" +msgstr "" + +#: ../../../CHANGELOG:2331 +msgid "Do not restart current song when rordering queue, deleting tracks from queue or adding tracks to queue (#464)" +msgstr "" + +#: ../../../CHANGELOG:2333 +msgid "Fix broken icons in playlist editor (#515)" +msgstr "" + +#: ../../../CHANGELOG:2334 +msgid "Fixed a few untranslated strings (#559)" +msgstr "" + +#: ../../../CHANGELOG:2335 +msgid "Fixed splitted album when importing from federation (#346)" +msgstr "" + +#: ../../../CHANGELOG:2336 +msgid "Fixed toggle mute in volume bar does not restore previous volume level (#514)" +msgstr "" + +#: ../../../CHANGELOG:2337 +msgid "Fixed wrong env file URL and display bugs in deployment documentation (#520)" +msgstr "" + +#: ../../../CHANGELOG:2338 +msgid "Fixed wrong title in PlayButton (#435)" +msgstr "" + +#: ../../../CHANGELOG:2339 +msgid "Remove transparency on artist page button (#517)" +msgstr "" + +#: ../../../CHANGELOG:2340 +msgid "Set sane width default for ui cards and center play button (#530)" +msgstr "" + +#: ../../../CHANGELOG:2341 +msgid "Updated wrong icon and copy in play button dropdown (#436)" +msgstr "" + +#: ../../../CHANGELOG:2346 +msgid "Fixed wrong URLs for docker / nginx files in documentation (#537)" +msgstr "" + +#: ../../../CHANGELOG:2351 +msgid "Added a merge request template and more documentation about the changelog" +msgstr "" + +#: ../../../CHANGELOG:2355 +msgid "Using a LDAP directory to authenticate to your Funkwhale instance" +msgstr "" + +#: ../../../CHANGELOG:2357 +msgid "Funkwhale now support LDAP as an authentication source: you can configure your instance to delegate login to a LDAP directory, which is especially useful when you have an existing directory and don't want to manage users manually." +msgstr "" + +#: ../../../CHANGELOG:2362 +msgid "You can use this authentication backend side by side with the classic one." +msgstr "" + +#: ../../../CHANGELOG:2364 +msgid "Have a look at https://docs.funkwhale.audio/installation/ldap.html for detailed instructions on how to set this up." +msgstr "" + +#: ../../../CHANGELOG:2369 +msgid "Simplified nginx setup [Docker: Manual action required]" +msgstr "" + +#: ../../../CHANGELOG:2371 +msgid "We've received a lot of user feedback regarding our installation process, and it seems the proxy part is the one which is the most confusing and difficult. Unfortunately, this is also the one where errors and mistakes can completely break the application." +msgstr "" + +#: ../../../CHANGELOG:2376 +msgid "To make things easier for everyone, we now offer a simplified deployment process for the reverse proxy part. This will make upgrade of the proxy configuration significantly easier on docker deployments." +msgstr "" + +#: ../../../CHANGELOG:2380 +msgid "On non-docker instances, you have nothing to do." +msgstr "" + +#: ../../../CHANGELOG:2382 +msgid "If you have a dockerized instance, here is the upgrade path." +msgstr "" + +#: ../../../CHANGELOG:2384 +msgid "First, tweak your .env file::" +msgstr "" + +#: ../../../CHANGELOG:2396 +msgid "Then, add the following block at the end of your docker-compose.yml file::" +msgstr "" + +#: ../../../CHANGELOG:2431 +msgid "By doing that, you'll enable a dockerized nginx that will automatically be configured to serve your Funkwhale instance." +msgstr "" + +#: ../../../CHANGELOG:2434 +msgid "Download the required configuration files for the nginx container:" +msgstr "" + +#: ../../../CHANGELOG:2443 +msgid "Update the funkwhale.conf configuration of your server's reverse-proxy::" +msgstr "" + +#: ../../../CHANGELOG:2489 +msgid "Check that your configuration is valid then reload:" +msgstr "" + +#: ../../../CHANGELOG:2491 +msgid "sudo nginx -t sudo systemctl reload nginx" +msgstr "" + +#: ../../../CHANGELOG:2496 +msgid "0.16.3 (2018-08-21)" +msgstr "" + +#: ../../../CHANGELOG:2498 +#: ../../../CHANGELOG:2514 +#: ../../../CHANGELOG:2528 +#: ../../../CHANGELOG:2603 +#: ../../../CHANGELOG:2836 +#: ../../../CHANGELOG:2918 +#: ../../../CHANGELOG:3040 +#: ../../../CHANGELOG:3597 +msgid "Upgrade instructions are available at https://docs.funkwhale.audio/upgrading.html" +msgstr "" + +#: ../../../CHANGELOG:2503 +msgid "Fixed front-end not contacting the proper path on the API (!385)" +msgstr "" + +#: ../../../CHANGELOG:2507 +msgid "0.16.2 (2018-08-21)" +msgstr "" + +#: ../../../CHANGELOG:2511 +msgid "**This release is broken, do not use it. Upgrade to 0.16.3 or higher instead.**" +msgstr "" + +#: ../../../CHANGELOG:2519 +msgid "Ensure we always have a default api url set on first load to avoid displaying the instance picker (#490)" +msgstr "" + +#: ../../../CHANGELOG:2521 +msgid "Fixed CLI importer syntax error because of async reserved keyword usage (#494)" +msgstr "" + +#: ../../../CHANGELOG:2526 +msgid "0.16.1 (2018-08-19)" +msgstr "" + +#: ../../../CHANGELOG:2533 +msgid "Make funkwhale themable by loading external stylesheets (#456)" +msgstr "" + +#: ../../../CHANGELOG:2537 +msgid "Add link to admin on \"Staff member\" button (#202)" +msgstr "" + +#: ../../../CHANGELOG:2538 +msgid "Can now add a description to radios and better radio cards (#331)" +msgstr "" + +#: ../../../CHANGELOG:2539 +msgid "Display track duration in track tables (#461)" +msgstr "" + +#: ../../../CHANGELOG:2540 +msgid "More permissive default permissions for front-end files (#388)" +msgstr "" + +#: ../../../CHANGELOG:2541 +msgid "Simpler configuration and toolchain for the front-end using vue-cli (!375)" +msgstr "" + +#: ../../../CHANGELOG:2542 +msgid "Use Howler to manage audio instead of our own dirty/untested code (#392)" +msgstr "" + +#: ../../../CHANGELOG:2547 +msgid "Fix alignment issue on top bar in Admin tabs (#395)" +msgstr "" + +#: ../../../CHANGELOG:2548 +msgid "Fix Apache2 permission issue preventing `/media` folder from being served correctly (#389)" +msgstr "" + +#: ../../../CHANGELOG:2550 +msgid "Fix loading on browse page lists causing them to go down, and dimming over the top bar (#468)" +msgstr "" + +#: ../../../CHANGELOG:2552 +msgid "Fixed (again): administration section not showing up in sidebar after login (#245)" +msgstr "" + +#: ../../../CHANGELOG:2554 +msgid "Fixed audio mimetype not showing up on track detail and list (#459)" +msgstr "" + +#: ../../../CHANGELOG:2555 +msgid "Fixed broken audio playback on Chrome and invisible volume control (#390)" +msgstr "" + +#: ../../../CHANGELOG:2556 +msgid "Fixed broken federation import on big imports due to missing transaction logic (#397)" +msgstr "" + +#: ../../../CHANGELOG:2558 +msgid "Fixed crash on artist pages when no cover is available (#457)" +msgstr "" + +#: ../../../CHANGELOG:2559 +msgid "Fixed favorited status of tracks not appearing in interface (#398)" +msgstr "" + +#: ../../../CHANGELOG:2560 +msgid "Fixed invitation code not prefilled in form when accessing invitation link (#476)" +msgstr "" + +#: ../../../CHANGELOG:2562 +msgid "Fixed typos in scheduled tasks configuration (#487)" +msgstr "" + +#: ../../../CHANGELOG:2563 +msgid "Removed release date error in case of empty date (#478)" +msgstr "" + +#: ../../../CHANGELOG:2564 +msgid "Removed white on white artist button on hover, on Album page (#393)" +msgstr "" + +#: ../../../CHANGELOG:2565 +msgid "Smarter date parsing during import by replacing arrow with pendulum (#376)" +msgstr "" + +#: ../../../CHANGELOG:2566 +msgid "Display public playlists properly for anonymous users (#488)" +msgstr "" + +#: ../../../CHANGELOG:2569 +#: ../../../CHANGELOG:2661 +msgid "i18n:" +msgstr "" + +#: ../../../CHANGELOG:2571 +msgid "Added portuguese, spanish and german translations" +msgstr "" + +#: ../../../CHANGELOG:2575 +msgid "Custom themes for Funkwhale" +msgstr "" + +#: ../../../CHANGELOG:2577 +msgid "If you ever wanted to give a custom look and feel to your instance, this is now possible." +msgstr "" + +#: ../../../CHANGELOG:2579 +msgid "Check https://docs.funkwhale.audio/configuration.html#theming if you want to know more!" +msgstr "" + +#: ../../../CHANGELOG:2583 +msgid "Fix Apache2 configuration file for media block [Manual action required]" +msgstr "" + +#: ../../../CHANGELOG:2585 +msgid "The permission scope on the current Apache2 configuration file is too narrow, preventing thumbnails from being served." +msgstr "" + +#: ../../../CHANGELOG:2587 +msgid "On Apache2 setups, you have to replace the following line::" +msgstr "" + +#: ../../../CHANGELOG:2591 +msgid "with::" +msgstr "" + +#: ../../../CHANGELOG:2595 +msgid "You can now restart your server::" +msgstr "" + +#: ../../../CHANGELOG:2601 +msgid "0.16 (2018-07-22)" +msgstr "" + +#: ../../../CHANGELOG:2608 +msgid "Complete redesign of the library home and playlist pages (#284)" +msgstr "" + +#: ../../../CHANGELOG:2609 +msgid "Expose ActivityPub actors for users (#317)" +msgstr "" + +#: ../../../CHANGELOG:2610 +msgid "Implemented a basic but functionnal Github-like search on federated tracks list (#344)" +msgstr "" + +#: ../../../CHANGELOG:2612 +msgid "Internationalized interface as well as translations for Arabic, French, Esperanto, Italian, Occitan, Polish, Portuguese and Swedish (#161, #167)" +msgstr "" + +#: ../../../CHANGELOG:2614 +msgid "Users can now upload an avatar in their settings page (#257)" +msgstr "" + +#: ../../../CHANGELOG:2619 +msgid "Added feedback when creating/updating radio (#302)" +msgstr "" + +#: ../../../CHANGELOG:2620 +msgid "Apply restrictions to username characters during signup" +msgstr "" + +#: ../../../CHANGELOG:2621 +msgid "Autoselect best language based on browser configuration (#386)" +msgstr "" + +#: ../../../CHANGELOG:2622 +msgid "Can now order tracks on federated track list (#326)" +msgstr "" + +#: ../../../CHANGELOG:2623 +msgid "Can now relaunch pending import jobs from the web interface (#323)" +msgstr "" + +#: ../../../CHANGELOG:2624 +msgid "Ensure we do not display pagination on single pages (#334)" +msgstr "" + +#: ../../../CHANGELOG:2625 +msgid "Ensure we have sane defaults for MEDIA_ROOT, STATIC_ROOT and MUSIC_DIRECTORY_PATH in the deployment .env file (#350)" +msgstr "" + +#: ../../../CHANGELOG:2627 +msgid "Make some space for the volume slider to allow precise control (#318)" +msgstr "" + +#: ../../../CHANGELOG:2628 +msgid "Removed django-cacheops dependency" +msgstr "" + +#: ../../../CHANGELOG:2629 +msgid "Store track artist and album artist separately (#237) Better handling of tracks with a different artist than the album artist" +msgstr "" + +#: ../../../CHANGELOG:2631 +msgid "The navigation bar of Library is now fixed (#375)" +msgstr "" + +#: ../../../CHANGELOG:2632 +msgid "Use thumbnails for avatars and covers to reduce bandwidth" +msgstr "" + +#: ../../../CHANGELOG:2637 +msgid "Ensure 750 permissions on CI artifacts (#332)" +msgstr "" + +#: ../../../CHANGELOG:2638 +msgid "Ensure images are not cropped in queue (#337)" +msgstr "" + +#: ../../../CHANGELOG:2639 +msgid "Ensure we do not import artists with empty names (#351)" +msgstr "" + +#: ../../../CHANGELOG:2640 +msgid "Fix notifications not closing when clicking on the cross (#366)" +msgstr "" + +#: ../../../CHANGELOG:2641 +msgid "Fix the most annoying offset in the whole fediverse (#369)" +msgstr "" + +#: ../../../CHANGELOG:2642 +msgid "Fixed persistent message in playlist modal (#304)" +msgstr "" + +#: ../../../CHANGELOG:2643 +msgid "Fixed unfiltered results in favorites API (#384)" +msgstr "" + +#: ../../../CHANGELOG:2644 +msgid "Raise a warning instead of crashing when getting a broken path in file import (#138)" +msgstr "" + +#: ../../../CHANGELOG:2646 +msgid "Remove parallelization of uploads during import to avoid crashing small servers (#382)" +msgstr "" + +#: ../../../CHANGELOG:2648 +msgid "Subsonic API login is now case insensitive (#339)" +msgstr "" + +#: ../../../CHANGELOG:2649 +msgid "Validate Date header in HTTP Signatures (#328)" +msgstr "" + +#: ../../../CHANGELOG:2654 +msgid "Added troubleshotting and technical overview documentation (#256)" +msgstr "" + +#: ../../../CHANGELOG:2655 +msgid "Arch Linux installation steps" +msgstr "" + +#: ../../../CHANGELOG:2656 +msgid "Document that users can use Ultrasonic on Android (#316)" +msgstr "" + +#: ../../../CHANGELOG:2657 +msgid "Fixed a couple of typos" +msgstr "" + +#: ../../../CHANGELOG:2658 +msgid "Some cosmetic improvements to the doc" +msgstr "" + +#: ../../../CHANGELOG:2663 +msgid "Arabic translation (!302)" +msgstr "" + +#: ../../../CHANGELOG:2664 +msgid "Polish translation (!304)" +msgstr "" + +#: ../../../CHANGELOG:2668 +msgid "Library home and playlist page overhaul" +msgstr "" + +#: ../../../CHANGELOG:2670 +msgid "The library home page have been completely redesigned to include:" +msgstr "" + +#: ../../../CHANGELOG:2672 +msgid "other users activity (listenings, playlists and favorites)" +msgstr "" + +#: ../../../CHANGELOG:2673 +msgid "recently imported albums" +msgstr "" + +#: ../../../CHANGELOG:2675 +msgid "We think this new version showcases more music in a more useful way, let us know what you think about it!" +msgstr "" + +#: ../../../CHANGELOG:2678 +msgid "The playlist page have been updated as well." +msgstr "" + +#: ../../../CHANGELOG:2682 +msgid "Internationalized interface" +msgstr "" + +#: ../../../CHANGELOG:2684 +msgid "After months of work, we're proud to announce our interface is now ready for internationalization." +msgstr "" + +#: ../../../CHANGELOG:2687 +msgid "Translators have already started the work of translating Funkwhale in 8 different languages, and we're ready to add more as needed." +msgstr "" + +#: ../../../CHANGELOG:2690 +msgid "You can easily get involved at https://translate.funkwhale.audio/engage/funkwhale/" +msgstr "" + +#: ../../../CHANGELOG:2694 +msgid "Better handling of tracks with a different artist than the album artist" +msgstr "" + +#: ../../../CHANGELOG:2696 +msgid "Some tracks involve a different artist than the album artist (e.g. a featuring) and Funkwhale has been known to do weird things when importing such tracks, resulting in albums that contained a single track, for instance." +msgstr "" + +#: ../../../CHANGELOG:2700 +msgid "The situation should be improved with this release, as Funkwhale is now able to store separately the track and album artist, and display it properly in the interface." +msgstr "" + +#: ../../../CHANGELOG:2705 +msgid "Users now have an ActivityPub Actor [Manual action required]" +msgstr "" + +#: ../../../CHANGELOG:2707 +msgid "In the process of implementing federation for user activity such as listening history, we are now making user profiles (a.k.a. ActivityPub actors) available through federation." +msgstr "" + +#: ../../../CHANGELOG:2710 +msgid "This does not means the federation is working, but this is a needed step to implement it." +msgstr "" + +#: ../../../CHANGELOG:2712 +msgid "Those profiles will be created automatically for new users, but you have to run a command to create them for existing users." +msgstr "" + +#: ../../../CHANGELOG:2723 +msgid "This should only take a few seconds to run. It is safe to interrupt the process or rerun it multiple times." +msgstr "" + +#: ../../../CHANGELOG:2727 +msgid "Image thumbnails [Manual action required]" +msgstr "" + +#: ../../../CHANGELOG:2729 +msgid "To reduce bandwidth usage on slow or limited connexions and improve performance in general, we now use smaller images in the front-end. For instance, if you have an album cover with a 1000x1000 pixel size, we will create smaller versions of this image (50x50, 200x200, 400x400) and reference those resized version when we don't actually need the original image." +msgstr "" + +#: ../../../CHANGELOG:2735 +msgid "Thumbnail will be created automatically for new objects, however, you have to launch a manual command to deal with existing ones." +msgstr "" + +#: ../../../CHANGELOG:2746 +msgid "This should be quite fast but may take up to a few minutes depending on the number of albums you have in database. It is safe to interrupt the process or rerun it multiple times." +msgstr "" + +#: ../../../CHANGELOG:2751 +msgid "Improved search on federated tracks list" +msgstr "" + +#: ../../../CHANGELOG:2753 +msgid "Having a powerful but easy-to-use search is important but difficult to achieve, especially if you do not want to have a real complex search interface." +msgstr "" + +#: ../../../CHANGELOG:2756 +msgid "Github does a pretty good job with that, using a structured but simple query system (See https://help.github.com/articles/searching-issues-and-pull-requests/#search-only-issues-or-pull-requests)." +msgstr "" + +#: ../../../CHANGELOG:2759 +msgid "This release implements a limited but working subset of this query system. You can use it only on the federated tracks list (/manage/federation/tracks) at the moment, but depending on feedback it will be rolled-out on other pages as well." +msgstr "" + +#: ../../../CHANGELOG:2762 +msgid "This is the type of query you can run:" +msgstr "" + +#: ../../../CHANGELOG:2764 +msgid "``hello world``: search for \"hello\" and \"world\" in all the available fields" +msgstr "" + +#: ../../../CHANGELOG:2765 +msgid "``hello in:artist`` search for results where artist name is \"hello\"" +msgstr "" + +#: ../../../CHANGELOG:2766 +msgid "``spring in:artist,album`` search for results where artist name or album title contain \"spring\"" +msgstr "" + +#: ../../../CHANGELOG:2767 +msgid "``artist:hello`` search for results where artist name equals \"hello\"" +msgstr "" + +#: ../../../CHANGELOG:2768 +msgid "``artist:\"System of a Down\" domain:instance.funkwhale`` search for results where artist name equals \"System of a Down\" and inside \"instance.funkwhale\" library" +msgstr "" + +#: ../../../CHANGELOG:2772 +msgid "Ensure MEDIA_ROOT, STATIC_ROOT and MUSIC_DIRECTORY_* are set explicitely [Manual action required]" +msgstr "" + +#: ../../../CHANGELOG:2774 +msgid "In our default .env file, MEDIA_ROOT and STATIC_ROOT were commented by default, causing some deployment issues on non-docker setups when people forgot to uncomment them." +msgstr "" + +#: ../../../CHANGELOG:2777 +msgid "From now on, those variables are uncommented, and will also be used on docker setups to mount the volumes automatically in the docker-compose.yml file. This has been a source of headache as well in some deployments, where you had to update both the .env file and the compose file." +msgstr "" + +#: ../../../CHANGELOG:2782 +msgid "This also applies to in-place paths (MUSIC_DIRECTORY_PATH and MUSIC_DIRECTORY_SERVE_PATH), whose values are now used directly to set up the proper Docker volumes." +msgstr "" + +#: ../../../CHANGELOG:2785 +msgid "This will only affect new deployments though. If you want to benefit from this on an existing instance, do a backup of your ``.env`` and ``docker-compose.yml`` files and apply the following changes:" +msgstr "" + +#: ../../../CHANGELOG:2788 +msgid "Ensure ``MEDIA_ROOT`` is uncommented in your .env file and match the absolute path where media files are stored on your host (``/srv/funkwhale/data/media`` by default)" +msgstr "" + +#: ../../../CHANGELOG:2790 +msgid "Ensure ``STATIC_ROOT`` is uncommented in your .env file and match the absolute path where static files are stored on your host (``/srv/funkwhale/data/static`` by default)" +msgstr "" + +#: ../../../CHANGELOG:2794 +msgid "If you use in-place import:" +msgstr "" + +#: ../../../CHANGELOG:2793 +msgid "Ensure MUSIC_DIRECTORY_PATH is uncommented and set to ``/music``" +msgstr "" + +#: ../../../CHANGELOG:2794 +msgid "Ensure MUSIC_DIRECTORY_SERVE_PATH is uncommented and set to the absolute path on your host were your music files are stored (``/srv/funkwhale/data/music`` by default)" +msgstr "" + +#: ../../../CHANGELOG:2802 +msgid "Edit your docker-compose.yml file to reflect the changes:" +msgstr "" + +#: ../../../CHANGELOG:2797 +msgid "Search for volumes (there should be two occurrences) that contains ``/app/funkwhale_api/media`` on the right side, and replace the whole line with ``- \"${MEDIA_ROOT}:${MEDIA_ROOT}\"``" +msgstr "" + +#: ../../../CHANGELOG:2799 +msgid "Search for a volume that contains ``/app/staticfiles`` on the right side, and replace the whole line with ``- \"${STATIC_ROOT}:${STATIC_ROOT}\"``" +msgstr "" + +#: ../../../CHANGELOG:2801 +msgid "If you use in-place import, search for volumes (there should be two occurrences) that contains ``/music:ro`` on the right side, and replace the whole line with ``- \"${MUSIC_DIRECTORY_SERVE_PATH}:${MUSIC_DIRECTORY_PATH}:ro\"``" +msgstr "" + +#: ../../../CHANGELOG:2804 +msgid "In the end, the ``volumes`` directives of your containers should look like that::" +msgstr "" + +#: ../../../CHANGELOG:2822 +msgid "Removed Cacheops dependency" +msgstr "" + +#: ../../../CHANGELOG:2824 +msgid "We removed one of our dependency named django-cacheops. It was unly used in a few places, and not playing nice with other dependencies." +msgstr "" + +#: ../../../CHANGELOG:2827 +msgid "You can safely remove this dependency in your environment with ``pip uninstall django-cacheops`` if you're not using docker." +msgstr "" + +#: ../../../CHANGELOG:2830 +msgid "You can also safely remove any ``CACHEOPS_ENABLED`` setting from your environment file." +msgstr "" + +#: ../../../CHANGELOG:2834 +msgid "0.15 (2018-06-24)" +msgstr "" + +#: ../../../CHANGELOG:2841 +msgid "Added admin interface to manage import requests (#190)" +msgstr "" + +#: ../../../CHANGELOG:2842 +msgid "Added replace flag during import to replace already present tracks with a new version of their track file (#222)" +msgstr "" + +#: ../../../CHANGELOG:2844 +msgid "Funkwhale's front-end can now point to any instance (#327) Removed front-end and back-end coupling" +msgstr "" + +#: ../../../CHANGELOG:2846 +msgid "Management interface for users (#212)" +msgstr "" + +#: ../../../CHANGELOG:2847 +msgid "New invite system (#248) New invite system" +msgstr "" + +#: ../../../CHANGELOG:2852 +msgid "Added \"TV\" to the list of highlighted words during YouTube import (#154)" +msgstr "" + +#: ../../../CHANGELOG:2853 +msgid "Command line import now accepts unlimited args (#242)" +msgstr "" + +#: ../../../CHANGELOG:2858 +msgid "Expose track files date in manage API (#307)" +msgstr "" + +#: ../../../CHANGELOG:2859 +msgid "Fixed current track restart/hiccup when shuffling queue, deleting track from queue or reordering (#310)" +msgstr "" + +#: ../../../CHANGELOG:2861 +msgid "Include user's current private playlists on playlist list (#302)" +msgstr "" + +#: ../../../CHANGELOG:2862 +msgid "Remove link to generic radios, since they don't have detail pages (#324)" +msgstr "" + +#: ../../../CHANGELOG:2867 +msgid "Document that Funkwhale may be installed with YunoHost (#325)" +msgstr "" + +#: ../../../CHANGELOG:2868 +msgid "Documented a saner layout with symlinks for in-place imports (#254)" +msgstr "" + +#: ../../../CHANGELOG:2869 +msgid "Upgrade documentation now use the correct user on non-docker setups (#265)" +msgstr "" + +#: ../../../CHANGELOG:2873 +msgid "Invite system" +msgstr "" + +#: ../../../CHANGELOG:2875 +msgid "On closed instances, it has always been a little bit painful to create accounts by hand for new users. This release solve that by adding invitations." +msgstr "" + +#: ../../../CHANGELOG:2878 +msgid "You can generate invitation codes via the \"users\" admin interface (you'll find a link in the sidebar). Those codes are valid for 14 days, and can be used once to create a new account on the instance, even if registrations are closed." +msgstr "" + +#: ../../../CHANGELOG:2882 +msgid "By default, we generate a random code for invitations, but you can also use custom codes if you need to print them or make them fancier ;)" +msgstr "" + +#: ../../../CHANGELOG:2885 +msgid "Invitations generation and management requires the \"settings\" permission." +msgstr "" + +#: ../../../CHANGELOG:2889 +msgid "Removed front-end and back-end coupling" +msgstr "" + +#: ../../../CHANGELOG:2891 +msgid "Eventhough Funkwhale's front-end has always been a Single Page Application, talking to an API, it was only able to talk to an API on the same domain." +msgstr "" + +#: ../../../CHANGELOG:2894 +msgid "There was no real technical justification behind this (only lazyness), and it was also blocking interesting use cases:" +msgstr "" + +#: ../../../CHANGELOG:2897 +msgid "Use multiple customized versions of the front-end with the same instance" +msgstr "" + +#: ../../../CHANGELOG:2898 +msgid "Use a customized version of the front-end with multiple instances" +msgstr "" + +#: ../../../CHANGELOG:2899 +msgid "Use a locally hosted front-end with a remote API, which is especially useful in development" +msgstr "" + +#: ../../../CHANGELOG:2901 +msgid "From now on, Funkwhale's front-end can connect to any Funkwhale server. You can change the server you are connecting to in the footer." +msgstr "" + +#: ../../../CHANGELOG:2904 +msgid "Fixing this also unlocked a really interesting feature in our development/review workflow: by leveraging Gitlab CI and review apps, we are now able to deploy automatically live versions of a merge request, making it possible for anyone to review front-end changes easily, without the need to install a local environment." +msgstr "" + +#: ../../../CHANGELOG:2911 +msgid "0.14.2 (2018-06-16)" +msgstr "" + +#: ../../../CHANGELOG:2915 +msgid "This release contains a fix for a permission issue. You should upgrade as soon as possible. Read the changelog below for more details." +msgstr "" + +#: ../../../CHANGELOG:2923 +msgid "Added feedback on shuffle button (#262)" +msgstr "" + +#: ../../../CHANGELOG:2924 +msgid "Added multiple warnings in the documentation that you should never run makemigrations yourself (#291)" +msgstr "" + +#: ../../../CHANGELOG:2926 +msgid "Album cover served in http (#264)" +msgstr "" + +#: ../../../CHANGELOG:2927 +msgid "Apache2 reverse proxy now supports websockets (tested with Apache 2.4.25) (!252)" +msgstr "" + +#: ../../../CHANGELOG:2929 +msgid "Display file size in human format during file upload (#289)" +msgstr "" + +#: ../../../CHANGELOG:2930 +msgid "Switch from BSD-3 licence to AGPL-3 licence (#280)" +msgstr "" + +#: ../../../CHANGELOG:2934 +msgid "Ensure radios can only be edited and deleted by their owners (#311)" +msgstr "" + +#: ../../../CHANGELOG:2935 +msgid "Fixed admin menu not showing after login (#245)" +msgstr "" + +#: ../../../CHANGELOG:2936 +msgid "Fixed broken pagination in Subsonic API (#295)" +msgstr "" + +#: ../../../CHANGELOG:2937 +msgid "Fixed duplicated websocket connexion on timeline (#287)" +msgstr "" + +#: ../../../CHANGELOG:2942 +msgid "Improved documentation about in-place imports setup (#298)" +msgstr "" + +#: ../../../CHANGELOG:2947 +msgid "Added Black and flake8 checks in CI to ensure consistent code styling and formatting (#297)" +msgstr "" + +#: ../../../CHANGELOG:2949 +msgid "Added bug and feature issue templates (#299)" +msgstr "" + +#: ../../../CHANGELOG:2953 +msgid "Permission issues on radios" +msgstr "" + +#: ../../../CHANGELOG:2955 +msgid "Because of an error in the way we checked user permissions on radios, public radios could be deleted by any logged-in user, even if they were not the owner of the radio." +msgstr "" + +#: ../../../CHANGELOG:2959 +msgid "We recommend instances owners to upgrade as fast as possible to avoid any abuse and data loss." +msgstr "" + +#: ../../../CHANGELOG:2964 +msgid "Funkwhale is now licenced under AGPL-3" +msgstr "" + +#: ../../../CHANGELOG:2966 +msgid "Following the recent switch made by PixelFed (https://github.com/dansup/pixelfed/issues/143), we decided along with the community to relicence Funkwhale under the AGPL-3 licence. We did this switch for various reasons:" +msgstr "" + +#: ../../../CHANGELOG:2971 +msgid "This is better aligned with other fediverse software" +msgstr "" + +#: ../../../CHANGELOG:2972 +msgid "It prohibits anyone to distribute closed-source and proprietary forks of Funkwhale" +msgstr "" + +#: ../../../CHANGELOG:2974 +msgid "As end users and instance owners, this does not change anything. You can continue to use Funkwhale exactly as you did before :)" +msgstr "" + +#: ../../../CHANGELOG:2979 +msgid "Apache support for websocket" +msgstr "" + +#: ../../../CHANGELOG:2981 +msgid "Up until now, our Apache2 configuration was not working with websockets. This is now solved by adding this at the beginning of your Apache2 configuration file::" +msgstr "" + +#: ../../../CHANGELOG:2986 +msgid "And this, before the \"/api\" block::" +msgstr "" + +#: ../../../CHANGELOG:2991 +msgid "Websockets may not be supported in older versions of Apache2. Be sure to upgrade to the latest version available." +msgstr "" + +#: ../../../CHANGELOG:2995 +msgid "Serving album covers in https (Apache2 proxy)" +msgstr "" + +#: ../../../CHANGELOG:2997 +msgid "Two issues are addressed here. The first one was about Django replying with mixed content (http) when queried for covers. Setting up the `X-Forwarded-Proto` allows Django to know that the client is using https, and that the reply must be https as well." +msgstr "" + +#: ../../../CHANGELOG:3002 +msgid "Second issue was a problem of permission causing Apache a denied access to album cover folder. It is solved by adding another block for this path in the Apache configuration file for funkwhale." +msgstr "" + +#: ../../../CHANGELOG:3006 +msgid "Here is how to modify your `funkwhale.conf` apache2 configuration::" +msgstr "" + +#: ../../../CHANGELOG:3027 +msgid "About the makemigrations warning" +msgstr "" + +#: ../../../CHANGELOG:3029 +msgid "You may sometimes get the following warning while applying migrations::" +msgstr "" + +#: ../../../CHANGELOG:3033 +msgid "This is a warning, not an error, and it can be safely ignored. Never run the ``makemigrations`` command yourself." +msgstr "" + +#: ../../../CHANGELOG:3038 +msgid "0.14.1 (2018-06-06)" +msgstr "" + +#: ../../../CHANGELOG:3044 +msgid "Display server version in the footer (#270)" +msgstr "" + +#: ../../../CHANGELOG:3045 +msgid "fix_track_files will now update files with bad mimetype (and not only the one with no mimetype) (#273)" +msgstr "" + +#: ../../../CHANGELOG:3047 +msgid "Huge performance boost (~x5 to x7) during CLI import that queries MusicBrainz (#288)" +msgstr "" + +#: ../../../CHANGELOG:3049 +msgid "Removed alpha-state transcoding support (#271)" +msgstr "" + +#: ../../../CHANGELOG:3053 +msgid "Broken logging statement during import error (#274)" +msgstr "" + +#: ../../../CHANGELOG:3054 +msgid "Broken search bar on library home (#278)" +msgstr "" + +#: ../../../CHANGELOG:3055 +msgid "Do not crash when importing track with an artist that do not match the release artist (#237)" +msgstr "" + +#: ../../../CHANGELOG:3057 +msgid "Do not crash when tag contains multiple uuids with a / separator (#267)" +msgstr "" + +#: ../../../CHANGELOG:3058 +msgid "Ensure we do not store bad mimetypes (such as application/x-empty) (#266)" +msgstr "" + +#: ../../../CHANGELOG:3059 +msgid "Fix broken \"play all\" button that played only 25 tracks (#281)" +msgstr "" + +#: ../../../CHANGELOG:3060 +msgid "Fixed broken track download modal (overflow and wrong URL) (#239)" +msgstr "" + +#: ../../../CHANGELOG:3061 +msgid "Removed hardcoded size limit in file upload widget (#275)" +msgstr "" + +#: ../../../CHANGELOG:3066 +msgid "Added warning about _protected/music location in nginx configuration (#247)" +msgstr "" + +#: ../../../CHANGELOG:3070 +msgid "Removed alpha-state transcoding (#271)" +msgstr "" + +#: ../../../CHANGELOG:3072 +msgid "A few months ago, a basic transcoding feature was implemented. Due to the way this feature was designed, it was slow, CPU intensive on the server side, and very tightly coupled to the reverse-proxy configuration, preventing it to work Apache2, for instance. It was also not compatible with Subsonic clients." +msgstr "" + +#: ../../../CHANGELOG:3077 +msgid "Based on that, we're currently removing support for transcoding **in its current state**. The work on a better designed transcoding feature can be tracked in https://dev.funkwhale.audio/funkwhale/funkwhale/issues/272." +msgstr "" + +#: ../../../CHANGELOG:3081 +msgid "You don't have to do anything on your side, but you may want to remove the now obsolete configuration from your reverse proxy file (nginx only)::" +msgstr "" + +#: ../../../CHANGELOG:3126 +msgid "0.14 (2018-06-02)" +msgstr "" + +#: ../../../CHANGELOG:3129 +#: ../../../CHANGELOG:3333 +#: ../../../CHANGELOG:3454 +msgid "Upgrade instructions are available at" +msgstr "" + +#: ../../../CHANGELOG:3129 +#: ../../../CHANGELOG:3333 +#: ../../../CHANGELOG:3454 +msgid "https://docs.funkwhale.audio/upgrading.html" +msgstr "" + +#: ../../../CHANGELOG:3133 +msgid "Admins can now configure default permissions that will be granted to all registered users (#236)" +msgstr "" + +#: ../../../CHANGELOG:3135 +msgid "Files management interface for users with \"library\" permission (#223)" +msgstr "" + +#: ../../../CHANGELOG:3136 +msgid "New action table component for quick and efficient batch actions (#228) This is implemented on the federated tracks pages, but will be included in other pages as well depending on the feedback." +msgstr "" + +#: ../../../CHANGELOG:3143 +msgid "Added a new \"upload\" permission that allows user to launch import and view their own imports (#230)" +msgstr "" + +#: ../../../CHANGELOG:3145 +msgid "Added Support for OggTheora in import." +msgstr "" + +#: ../../../CHANGELOG:3146 +msgid "Autoremove media files on model instance deletion (#241)" +msgstr "" + +#: ../../../CHANGELOG:3147 +msgid "Can now import a whole remote library at once thanks to new Action Table component (#164)" +msgstr "" + +#: ../../../CHANGELOG:3149 +msgid "Can now use album covers from flac/mp3 metadata and separate file in track directory (#219)" +msgstr "" + +#: ../../../CHANGELOG:3151 +msgid "Implemented getCovertArt in Subsonic API to serve album covers (#258)" +msgstr "" + +#: ../../../CHANGELOG:3152 +msgid "Implemented scrobble endpoint of subsonic API, listenings are now tracked correctly from third party apps that use this endpoint (#260)" +msgstr "" + +#: ../../../CHANGELOG:3154 +msgid "Retructured music API to increase performance and remove useless endpoints (#224)" +msgstr "" + +#: ../../../CHANGELOG:3160 +msgid "Consistent constraints/checks for URL size (#207)" +msgstr "" + +#: ../../../CHANGELOG:3161 +msgid "Display proper total number of tracks on radio detail (#225)" +msgstr "" + +#: ../../../CHANGELOG:3162 +msgid "Do not crash on flac import if musicbrainz tags are missing (#214)" +msgstr "" + +#: ../../../CHANGELOG:3163 +msgid "Empty save button in radio builder (#226)" +msgstr "" + +#: ../../../CHANGELOG:3164 +msgid "Ensure anonymous users can use the app if the instance is configured accordingly (#229)" +msgstr "" + +#: ../../../CHANGELOG:3166 +msgid "Ensure inactive users cannot get auth tokens (#218) This was already the case bug we missed some checks" +msgstr "" + +#: ../../../CHANGELOG:3168 +msgid "File-upload import now supports Flac files (#213)" +msgstr "" + +#: ../../../CHANGELOG:3169 +msgid "File-upload importer should now work properly, assuming files are tagged (#106)" +msgstr "" + +#: ../../../CHANGELOG:3171 +msgid "Fixed a few broken translations strings (#227)" +msgstr "" + +#: ../../../CHANGELOG:3172 +msgid "Fixed broken ordering in front-end lists (#179)" +msgstr "" + +#: ../../../CHANGELOG:3173 +msgid "Fixed ignored page_size paremeter on artist and favorites list (#240)" +msgstr "" + +#: ../../../CHANGELOG:3174 +msgid "Read ID3Tag Tracknumber from TRCK (#220)" +msgstr "" + +#: ../../../CHANGELOG:3175 +msgid "We now fetch album covers regardless of the import methods (#231)" +msgstr "" + +#: ../../../CHANGELOG:3179 +msgid "Added missing subsonic configuration block in deployment vhost files (#249)" +msgstr "" + +#: ../../../CHANGELOG:3180 +msgid "Moved upgrade doc under install doc in TOC (#251)" +msgstr "" + +#: ../../../CHANGELOG:3185 +msgid "Removed acoustid support, as the integration was buggy and error-prone (#106)" +msgstr "" + +#: ../../../CHANGELOG:3189 +msgid "Files management interface" +msgstr "" + +#: ../../../CHANGELOG:3191 +msgid "This is the first bit of an ongoing work that will span several releases, to bring more powerful library management features to Funkwhale. This iteration includes a basic file management interface where users with the \"library\" permission can list and search available files, order them using various criterias (size, bitrate, duration...) and delete them." +msgstr "" + +#: ../../../CHANGELOG:3198 +msgid "New \"upload\" permission" +msgstr "" + +#: ../../../CHANGELOG:3200 +msgid "This new permission is helpful if you want to give upload/import rights to some users, but don't want them to be able to manage the library as a whole: although there are no controls yet for managing library in the fron-end, subsequent release will introduce management interfaces for artists, files, etc." +msgstr "" + +#: ../../../CHANGELOG:3206 +msgid "Because of that, users with the \"library\" permission will have much more power, and will also be able to remove content from the platform. On the other hand, users with the \"upload\" permission will only have the ability to add new content." +msgstr "" + +#: ../../../CHANGELOG:3211 +msgid "Also, this release also includes a new feature called \"default permissions\": those are permissions that are granted to every users on the platform. On public/open instances, this will play well with the \"upload\" permission since everyone will be able to contribute to the instance library without an admin giving the permission to every single user." +msgstr "" + +#: ../../../CHANGELOG:3218 +msgid "Smarter album cover importer" +msgstr "" + +#: ../../../CHANGELOG:3220 +msgid "In earlier versions, covers where only imported when launching a YouTube import. Starting from this release, covers will be imported regardless of the import mode (file upload, youtube-dl, CLI, in-place...). Funkwhale will look for covers in the following order:" +msgstr "" + +#: ../../../CHANGELOG:3225 +msgid "In the imported file itself (FLAC/MP3 only)" +msgstr "" + +#: ../../../CHANGELOG:3226 +msgid "In a cover.jpg or cover.png in the file directory" +msgstr "" + +#: ../../../CHANGELOG:3227 +msgid "By fetching cover art from Musibrainz, assuming the file is tagged correctly" +msgstr "" + +#: ../../../CHANGELOG:3229 +msgid "This will only work for newly imported tracks and albums though. In the future, we may offer an option to refetch album covers from the interface, but in the meantime, you can use the following snippet:" +msgstr "" + +#: ../../../CHANGELOG:3247 +msgid "Then launch it::" +msgstr "" + +#: ../../../CHANGELOG:3262 +msgid "Depending on your number of albums, the previous snippet may take some time to execute. You can interrupt it at any time using ctrl-c and relaunch it later, as it's idempotent." +msgstr "" + +#: ../../../CHANGELOG:3267 +msgid "Music API changes" +msgstr "" + +#: ../../../CHANGELOG:3269 +msgid "This release includes an API break. Even though the API is advertised as unstable, and not documented, here is a brief explanation of the change in case you are using the API in a client or in a script. Summary of the changes:" +msgstr "" + +#: ../../../CHANGELOG:3273 +msgid "``/api/v1/artists`` does not includes a list of tracks anymore. It was to heavy to return all of this data all the time. You can get all tracks for an artist using ``/api/v1/tracks?artist=artist_id``" +msgstr "" + +#: ../../../CHANGELOG:3276 +msgid "Additionally, ``/api/v1/tracks`` now support an ``album`` filter to filter tracks matching an album" +msgstr "" + +#: ../../../CHANGELOG:3278 +msgid "``/api/v1/artists/search``, ``/api/v1/albums/search`` and ``/api/v1/tracks/search`` endpoints are removed. Use ``/api/v1/{artists|albums|tracks}/?q=yourquery`` instead. It's also more powerful, since you can combine search with other filters and ordering options." +msgstr "" + +#: ../../../CHANGELOG:3282 +msgid "``/api/v1/requests/import-requests/search`` endpoint is removed as well. Use ``/api/v1/requests/import-requests/?q=yourquery`` instead. It's also more powerful, since you can combine search with other filters and ordering options." +msgstr "" + +#: ../../../CHANGELOG:3287 +msgid "Of course, the front-end was updated to work with the new API, so this should not impact end-users in any way, apart from slight performance gains." +msgstr "" + +#: ../../../CHANGELOG:3292 +msgid "The API is still not stable and may evolve again in the future. API freeze will come at a later point." +msgstr "" + +#: ../../../CHANGELOG:3296 +msgid "Flac files imports via upload" +msgstr "" + +#: ../../../CHANGELOG:3298 +msgid "You have nothing to do to benefit from this, however, since Flac files tend to be a lot bigger than other files, you may want to increase the ``client_max_body_size`` value in your Nginx configuration if you plan to upload flac files." +msgstr "" + +#: ../../../CHANGELOG:3304 +msgid "Missing subsonic configuration bloc in vhost files" +msgstr "" + +#: ../../../CHANGELOG:3306 +msgid "Because of a missing bloc in the sample Nginx and Apache configurations, instances that were deployed after the 0.13 release are likely to be unable to answer to Subsonic clients (the missing bits were properly documented in the changelog)." +msgstr "" + +#: ../../../CHANGELOG:3311 +msgid "Ensure you have the following snippets in your Nginx or Apache configuration if you plan to use the Subsonic API." +msgstr "" + +#: ../../../CHANGELOG:3314 +msgid "Nginx::" +msgstr "" + +#: ../../../CHANGELOG:3321 +msgid "Apache2::" +msgstr "" + +#: ../../../CHANGELOG:3330 +msgid "0.13 (2018-05-19)" +msgstr "" + +#: ../../../CHANGELOG:3337 +msgid "Can now import and play flac files (#157)" +msgstr "" + +#: ../../../CHANGELOG:3338 +msgid "Simpler permission system (#152)" +msgstr "" + +#: ../../../CHANGELOG:3339 +msgid "Store file length, size and bitrate (#195)" +msgstr "" + +#: ../../../CHANGELOG:3340 +msgid "We now have a brand new instance settings interface in the front-end (#206)" +msgstr "" + +#: ../../../CHANGELOG:3345 +msgid "Disabled browsable HTML API in production (#205)" +msgstr "" + +#: ../../../CHANGELOG:3346 +msgid "Instances can now indicate on the nodeinfo endpoint if they want to remain private (#200)" +msgstr "" + +#: ../../../CHANGELOG:3352 +msgid ".well-known/nodeinfo endpoint can now answer to request with Accept: application/json (#197)" +msgstr "" + +#: ../../../CHANGELOG:3354 +msgid "Fixed escaping issue of track name in playlist modal (#201)" +msgstr "" + +#: ../../../CHANGELOG:3355 +msgid "Fixed missing dot when downloading file (#204)" +msgstr "" + +#: ../../../CHANGELOG:3356 +msgid "In-place imported tracks with non-ascii characters don't break reverse-proxy serving (#196)" +msgstr "" + +#: ../../../CHANGELOG:3358 +msgid "Removed Python 3.6 dependency (secrets module) (#198)" +msgstr "" + +#: ../../../CHANGELOG:3359 +msgid "Uplayable tracks are now properly disabled in the interface (#199)" +msgstr "" + +#: ../../../CHANGELOG:3363 +msgid "Instance settings interface" +msgstr "" + +#: ../../../CHANGELOG:3365 +msgid "Prior to this release, the only way to update instance settings (such as instance description, signup policy, federation configuration, etc.) was using the admin interface provided by Django (the back-end framework which power the API)." +msgstr "" + +#: ../../../CHANGELOG:3369 +msgid "This interface worked, but was not really-user friendly and intuitive." +msgstr "" + +#: ../../../CHANGELOG:3371 +msgid "Starting from this release, we now offer a dedicated interface directly in the front-end. You can view and edit all your instance settings from here, assuming you have the required permissions." +msgstr "" + +#: ../../../CHANGELOG:3375 +msgid "This interface is available at ``/manage/settings`` and via link in the sidebar." +msgstr "" + +#: ../../../CHANGELOG:3379 +msgid "Storage of bitrate, size and length in database" +msgstr "" + +#: ../../../CHANGELOG:3381 +msgid "Starting with this release, when importing files, Funkwhale will store additional information about audio files:" +msgstr "" + +#: ../../../CHANGELOG:3384 +msgid "Bitrate" +msgstr "" + +#: ../../../CHANGELOG:3385 +msgid "Size (in bytes)" +msgstr "" + +#: ../../../CHANGELOG:3386 +msgid "Duration" +msgstr "" + +#: ../../../CHANGELOG:3388 +msgid "This change is not retroactive, meaning already imported files will lack those informations. The interface and API should work as before in such case, however, we offer a command to deal with legacy files and populate the missing values." +msgstr "" + +#: ../../../CHANGELOG:3392 +#: ../../../CHANGELOG:3432 +msgid "On docker setups:" +msgstr "" + +#: ../../../CHANGELOG:3399 +#: ../../../CHANGELOG:3438 +msgid "On non-docker setups:" +msgstr "" + +#: ../../../CHANGELOG:3408 +msgid "The execution time for this command is proportional to the number of audio files stored on your instance. This is because we need to read the files from disk to fetch the data. You can run it in the background while Funkwhale is up." +msgstr "" + +#: ../../../CHANGELOG:3413 +msgid "It's also safe to interrupt this command and rerun it at a later point, or run it multiple times." +msgstr "" + +#: ../../../CHANGELOG:3416 +msgid "Use the --dry-run flag to check how many files would be impacted." +msgstr "" + +#: ../../../CHANGELOG:3420 +msgid "Simpler permission system" +msgstr "" + +#: ../../../CHANGELOG:3422 +msgid "Starting from this release, the permission system is much simpler. Up until now, we were using Django's built-in permission system, which was working, but also quite complex to deal with." +msgstr "" + +#: ../../../CHANGELOG:3426 +msgid "The new implementation relies on simpler logic, which will make integration on the front-end in upcoming releases faster and easier." +msgstr "" + +#: ../../../CHANGELOG:3429 +msgid "If you have manually given permissions to users on your instance, you can migrate those to the new system." +msgstr "" + +#: ../../../CHANGELOG:3445 +msgid "There is still no dedicated interface to manage user permissions, but you can use the admin interface at ``/api/admin/users/user/`` for that purpose in the meantime." +msgstr "" + +#: ../../../CHANGELOG:3451 +msgid "0.12 (2018-05-09)" +msgstr "" + +#: ../../../CHANGELOG:3458 +msgid "Subsonic API implementation to offer compatibility with existing clients such as DSub (#75)" +msgstr "" + +#: ../../../CHANGELOG:3460 +msgid "Use nodeinfo standard for publishing instance information (#192)" +msgstr "" + +#: ../../../CHANGELOG:3465 +msgid "Play button now play tracks immediately instead of appending them to the queue (#99, #156)" +msgstr "" + +#: ../../../CHANGELOG:3471 +msgid "Fix broken federated import (#193)" +msgstr "" + +#: ../../../CHANGELOG:3476 +msgid "Up-to-date documentation for upgrading front-end files on docker setup (#132)" +msgstr "" + +#: ../../../CHANGELOG:3480 +msgid "Subsonic API" +msgstr "" + +#: ../../../CHANGELOG:3482 +msgid "This release implements some core parts of the Subsonic API, which is widely deployed in various projects and supported by numerous clients." +msgstr "" + +#: ../../../CHANGELOG:3485 +msgid "By offering this API in Funkwhale, we make it possible to access the instance library and listen to the music without from existing Subsonic clients, and without developping our own alternative clients for each and every platform." +msgstr "" + +#: ../../../CHANGELOG:3489 +msgid "Most advanced Subsonic clients support offline caching of music files, playlist management and search, which makes them well-suited for nomadic use." +msgstr "" + +#: ../../../CHANGELOG:3492 +msgid "Please head over :doc:`users/apps` for more informations about supported clients and user instructions." +msgstr "" + +#: ../../../CHANGELOG:3495 +msgid "At the instance-level, the Subsonic API is enabled by default, but require and additional endpoint to be added in you reverse-proxy configuration." +msgstr "" + +#: ../../../CHANGELOG:3498 +msgid "On nginx, add the following block::" +msgstr "" + +#: ../../../CHANGELOG:3505 +msgid "On Apache, add the following block::" +msgstr "" + +#: ../../../CHANGELOG:3512 +msgid "The Subsonic can be disabled at the instance level from the django admin." +msgstr "" + +#: ../../../CHANGELOG:3516 +msgid "Because of Subsonic's API design which assumes cleartext storing of user passwords, we chose to have a dedicated, separate password for that purpose. Users can generate this password from their settings page in the web client." +msgstr "" + +#: ../../../CHANGELOG:3523 +msgid "Nodeinfo standard for instance information and stats" +msgstr "" + +#: ../../../CHANGELOG:3527 +msgid "The ``/api/v1/instance/stats/`` endpoint which was used to display instance data in the about page is removed in favor of the new ``/api/v1/instance/nodeinfo/2.0/`` endpoint." +msgstr "" + +#: ../../../CHANGELOG:3531 +msgid "In earlier version, we where using a custom endpoint and format for our instance information and statistics. While this was working, this was not compatible with anything else on the fediverse." +msgstr "" + +#: ../../../CHANGELOG:3535 +msgid "We now offer a nodeinfo 2.0 endpoint which provides, in a single place, all the instance information such as library and user activity statistics, public instance settings (description, registration and federation status, etc.)." +msgstr "" + +#: ../../../CHANGELOG:3539 +msgid "We offer two settings to manage nodeinfo in your Funkwhale instance:" +msgstr "" + +#: ../../../CHANGELOG:3541 +msgid "One setting to completely disable nodeinfo, but this is not recommended as the exposed data may be needed to make some parts of the front-end work (especially the about page)." +msgstr "" + +#: ../../../CHANGELOG:3544 +msgid "One setting to disable only usage and library statistics in the nodeinfo endpoint. This is useful if you want the nodeinfo endpoint to work, but don't feel comfortable sharing aggregated statistics about your library and user activity." +msgstr "" + +#: ../../../CHANGELOG:3549 +msgid "To make your instance fully compatible with the nodeinfo protocol, you need to to edit your nginx configuration file::" +msgstr "" + +#: ../../../CHANGELOG:3568 +msgid "You can do the same if you use apache::" +msgstr "" + +#: ../../../CHANGELOG:3586 +msgid "This will ensure all well-known endpoints are proxied to funkwhale, and not just webfinger one." +msgstr "" + +#: ../../../CHANGELOG:3589 +msgid "Links:" +msgstr "" + +#: ../../../CHANGELOG:3591 +msgid "About nodeinfo: https://github.com/jhass/nodeinfo" +msgstr "" + +#: ../../../CHANGELOG:3595 +msgid "0.11 (2018-05-06)" +msgstr "" + +#: ../../../CHANGELOG:3599 +msgid "Special thanks for this release go to @renon:matrix.org (@Hazmo on Gitlab) for bringing Apache2 support to Funkwhale and contributing on other issues. Thank you!" +msgstr "" + +#: ../../../CHANGELOG:3605 +msgid "Funkwhale now works behind an Apache2 reverse proxy (!165) check out the brand new documentation at https://docs.funkwhale.audio/installation/index.html#apache2 if you want to try it!" +msgstr "" + +#: ../../../CHANGELOG:3608 +msgid "Users can now request password reset by email, assuming a SMTP server was correctly configured (#187)" +msgstr "" + +#: ../../../CHANGELOG:3613 +msgid "Added a fix_track_files command to run checks and fixes against library (#183)" +msgstr "" + +#: ../../../CHANGELOG:3615 +msgid "Avoid fetching Actor object on every request authentication" +msgstr "" + +#: ../../../CHANGELOG:3616 +msgid "Can now relaunch errored jobs and batches (#176)" +msgstr "" + +#: ../../../CHANGELOG:3617 +msgid "List pending requests by default, added a status filter for requests (#109)" +msgstr "" + +#: ../../../CHANGELOG:3618 +msgid "More structured menus in sidebar, added labels with notifications" +msgstr "" + +#: ../../../CHANGELOG:3619 +msgid "Sample virtual-host file for Apache2 reverse-proxy (!165)" +msgstr "" + +#: ../../../CHANGELOG:3620 +msgid "Store high-level settings (such as federation or auth-related ones) in database (#186)" +msgstr "" + +#: ../../../CHANGELOG:3626 +msgid "Ensure in place imported files get a proper mimetype (#183)" +msgstr "" + +#: ../../../CHANGELOG:3627 +msgid "Federation cache suppression is now simpler and also deletes orphaned files (#189)" +msgstr "" + +#: ../../../CHANGELOG:3629 +msgid "Fixed small UI glitches/bugs in federation tabs (#184)" +msgstr "" + +#: ../../../CHANGELOG:3630 +msgid "X-sendfile not working with in place import (#182)" +msgstr "" + +#: ../../../CHANGELOG:3635 +msgid "Added a documentation area for third-party projects (#180)" +msgstr "" + +#: ../../../CHANGELOG:3636 +msgid "Added documentation for optimizing Funkwhale and reduce its memory footprint." +msgstr "" + +#: ../../../CHANGELOG:3637 +msgid "Document that the database should use an utf-8 encoding (#185)" +msgstr "" + +#: ../../../CHANGELOG:3638 +msgid "Foundations for API documentation with Swagger (#178)" +msgstr "" + +#: ../../../CHANGELOG:3642 +msgid "Database storage for high-level settings" +msgstr "" + +#: ../../../CHANGELOG:3644 +msgid "Due to the work done in #186, the following environment variables have been deprecated:" +msgstr "" + +#: ../../../CHANGELOG:3647 +msgid "FEDERATION_ENABLED" +msgstr "" + +#: ../../../CHANGELOG:3648 +msgid "FEDERATION_COLLECTION_PAGE_SIZE" +msgstr "" + +#: ../../../CHANGELOG:3649 +msgid "FEDERATION_MUSIC_NEEDS_APPROVAL" +msgstr "" + +#: ../../../CHANGELOG:3650 +msgid "FEDERATION_ACTOR_FETCH_DELAY" +msgstr "" + +#: ../../../CHANGELOG:3651 +msgid "PLAYLISTS_MAX_TRACKS" +msgstr "" + +#: ../../../CHANGELOG:3652 +msgid "API_AUTHENTICATION_REQUIRED" +msgstr "" + +#: ../../../CHANGELOG:3654 +msgid "Configuration for this settings has been moved to database, as it will provide a better user-experience, by allowing you to edit these values on-the-fly, without restarting Funkwhale processes." +msgstr "" + +#: ../../../CHANGELOG:3658 +msgid "You can leave those environment variables in your .env file for now, as the values will be used to populate the database entries. We'll make a proper announcement when the variables won't be used anymore." +msgstr "" + +#: ../../../CHANGELOG:3662 +msgid "Please browse https://docs.funkwhale.audio/configuration.html#instance-settings for more information about instance configuration using the web interface." +msgstr "" + +#: ../../../CHANGELOG:3667 +msgid "System emails" +msgstr "" + +#: ../../../CHANGELOG:3669 +msgid "Starting from this release, Funkwhale will send two types of emails:" +msgstr "" + +#: ../../../CHANGELOG:3672 +msgid "Email confirmation emails, to ensure a user's email is valid" +msgstr "" + +#: ../../../CHANGELOG:3673 +msgid "Password reset emails, enabling user to reset their password without an admin's intervention" +msgstr "" + +#: ../../../CHANGELOG:3675 +msgid "Email sending is disabled by default, as it requires additional configuration. In this mode, emails are simply outputed on stdout." +msgstr "" + +#: ../../../CHANGELOG:3678 +msgid "If you want to actually send those emails to your users, you should edit your .env file and tweak the ``EMAIL_CONFIG`` variable. See :data:`EMAIL_CONFIG <config.settings.common.EMAIL_CONFIG>` for more details." +msgstr "" + +#: ../../../CHANGELOG:3684 +msgid "As a result of these changes, the ``DJANGO_EMAIL_BACKEND`` variable, which was not documented, has no effect anymore. You can safely remove it from your .env file if it is set." +msgstr "" + +#: ../../../CHANGELOG:3690 +msgid "Proxy headers for non-docker deployments" +msgstr "" + +#: ../../../CHANGELOG:3692 +msgid "For non-docker deployments, add ``--proxy-headers`` at the end of the ``daphne`` command in :file:`/etc/systemd/system/funkwhale-server.service`." +msgstr "" + +#: ../../../CHANGELOG:3695 +msgid "This will ensure the application receive the correct IP address from the client and not the proxy's one." +msgstr "" + +#: ../../../CHANGELOG:3700 +msgid "0.10 (2018-04-23)" +msgstr "" + +#: ../../../CHANGELOG:3704 +msgid "Can now import files in-place from the CLI importer (#155)" +msgstr "" + +#: ../../../CHANGELOG:3709 +msgid "Avoid downloading audio files multiple times from remote libraries (#163)" +msgstr "" + +#: ../../../CHANGELOG:3710 +msgid "Better file import performance and error handling (#144)" +msgstr "" + +#: ../../../CHANGELOG:3711 +msgid "Import job and batch API and front-end have been improved with better performance, pagination and additional filters (#171)" +msgstr "" + +#: ../../../CHANGELOG:3713 +msgid "Increased max_length on TrackFile.source, this will help when importing files with a really long path (#142)" +msgstr "" + +#: ../../../CHANGELOG:3715 +msgid "Player is back in Queue tab (#150)" +msgstr "" + +#: ../../../CHANGELOG:3720 +msgid "Fail graciously when AP representation includes a null_value for mediaType" +msgstr "" + +#: ../../../CHANGELOG:3721 +msgid "Fix sidebar tabs not showing under small resolution under Chrome (#173)" +msgstr "" + +#: ../../../CHANGELOG:3722 +msgid "Fixed broken login due to badly configured Axios (#172)" +msgstr "" + +#: ../../../CHANGELOG:3723 +msgid "Fixed broken playlist modal after login (#155)" +msgstr "" + +#: ../../../CHANGELOG:3724 +msgid "Fixed queue reorder or track deletion restarting currently playing track (#151)" +msgstr "" + +#: ../../../CHANGELOG:3726 +msgid "Radio will now append new track if you delete the last track in queue (#145)" +msgstr "" + +#: ../../../CHANGELOG:3727 +msgid "Reset all sensitive front-end data on logout (#124)" +msgstr "" + +#: ../../../CHANGELOG:3728 +msgid "Typos/not showing text due to i18n work (#175)" +msgstr "" + +#: ../../../CHANGELOG:3733 +msgid "Better documentation for hardware requirements and memory usage (#165)" +msgstr "" + +#: ../../../CHANGELOG:3737 +msgid "In-place import" +msgstr "" + +#: ../../../CHANGELOG:3739 +msgid "This release includes in-place imports for the CLI import. This means you can load gigabytes of music into funkwhale without worrying about about Funkwhale copying those music files in its internal storage and eating your disk space." +msgstr "" + +#: ../../../CHANGELOG:3743 +msgid "`This new feature is documented here <https://docs.funkwhale.audio/importing-music.html#in-place-import>`_ and require additional configuration to ensure funkwhale and your webserver can serve those files properly." +msgstr "" + +#: ../../../CHANGELOG:3747 +msgid "**Non-docker users:**" +msgstr "" + +#: ../../../CHANGELOG:3749 +#: ../../../CHANGELOG:3763 +msgid "Assuming your music is stored in ``/srv/funkwhale/data/music``, add the following block to your nginx configuration::" +msgstr "" + +#: ../../../CHANGELOG:3757 +msgid "And the following to your .env file::" +msgstr "" + +#: ../../../CHANGELOG:3761 +msgid "**Docker users:**" +msgstr "" + +#: ../../../CHANGELOG:3771 +msgid "Assuming you have the following volume directive in your ``docker-compose.yml`` (it's the default): ``/srv/funkwhale/data/music:/music:ro``, then add the following to your .env file::" +msgstr "" + +#: ../../../CHANGELOG:3782 +msgid "0.9.1 (2018-04-17)" +msgstr "" + +#: ../../../CHANGELOG:3786 +msgid "Allow null values for musicbrainz_id in Audio ActivityPub representation" +msgstr "" + +#: ../../../CHANGELOG:3787 +msgid "Fixed broken permission check on library scanning and too aggressive page validation" +msgstr "" + +#: ../../../CHANGELOG:3792 +msgid "0.9 (2018-04-17)" +msgstr "" + +#: ../../../CHANGELOG:3796 +msgid "Add internationalization support (#5)" +msgstr "" + +#: ../../../CHANGELOG:3797 +msgid "Can now follow and import music from remote libraries (#136, #137)" +msgstr "" + +#: ../../../CHANGELOG:3802 +msgid "Added a i18n-extract yarn script to extract strings to PO files (#162)" +msgstr "" + +#: ../../../CHANGELOG:3803 +msgid "User admin now includes signup and last login dates (#148)" +msgstr "" + +#: ../../../CHANGELOG:3804 +msgid "We now use a proper user agent including instance version and url during outgoing requests" +msgstr "" + +#: ../../../CHANGELOG:3809 +msgid "Federation is here!" +msgstr "" + +#: ../../../CHANGELOG:3811 +msgid "This is for real this time, and includes:" +msgstr "" + +#: ../../../CHANGELOG:3813 +msgid "Following other Funkwhale libraries" +msgstr "" + +#: ../../../CHANGELOG:3814 +msgid "Importing tracks from remote libraries (tracks are hotlinked, and only cached for a short amount of time)" +msgstr "" + +#: ../../../CHANGELOG:3815 +msgid "Searching accross federated catalogs" +msgstr "" + +#: ../../../CHANGELOG:3817 +msgid "Note that by default, federation is opt-in, on a per-instance basis: instances will request access to your catalog, and you can accept or refuse those requests. You can also revoke the access at any time." +msgstr "" + +#: ../../../CHANGELOG:3821 +msgid "Documentation was updated with relevant instructions to use and benefit from this new feature: https://docs.funkwhale.audio/federation.html" +msgstr "" + +#: ../../../CHANGELOG:3825 +msgid "Preparing internationalization" +msgstr "" + +#: ../../../CHANGELOG:3827 +msgid "Funkwhale's front-end as always been english-only, and this is a barrier to new users. The work make Funkwhale's interface translatable was started in this release by Baptiste. Although nothing is translated yet, this release includes behind the stage changes that will make it possible in the near future." +msgstr "" + +#: ../../../CHANGELOG:3833 +msgid "Many thank to Baptiste for the hard work and for figuring out a proper solution to this difficult problem." +msgstr "" + +#: ../../../CHANGELOG:3837 +msgid "Upgrade path" +msgstr "" + +#: ../../../CHANGELOG:3839 +msgid "In addition to the usual instructions from https://docs.funkwhale.audio/upgrading.html, non-docker users will have to setup an additional systemd unit file for recurrent tasks." +msgstr "" + +#: ../../../CHANGELOG:3843 +msgid "This was forgotten in the deployment documentation, but recurrent tasks, managed by the celery beat process, will be needed more and more in subsequent releases. Right now, we'll be using to clear the cache for federated music files and keep disk usage to a minimum." +msgstr "" + +#: ../../../CHANGELOG:3848 +msgid "In the future, they will also be needed to refetch music metadata or federated information periodically." +msgstr "" + +#: ../../../CHANGELOG:3851 +msgid "Celery beat can be enabled easily::" +msgstr "" + +#: ../../../CHANGELOG:3861 +msgid "Docker users already have celerybeat enabled." +msgstr "" + +#: ../../../CHANGELOG:3865 +msgid "0.8 (2018-04-02)" +msgstr "" + +#: ../../../CHANGELOG:3869 +msgid "Add a detail page for radios (#64)" +msgstr "" + +#: ../../../CHANGELOG:3870 +msgid "Implemented page title binding (#1)" +msgstr "" + +#: ../../../CHANGELOG:3871 +msgid "Previous Track button restart playback after 3 seconds (#146)" +msgstr "" + +#: ../../../CHANGELOG:3876 +msgid "Added credits to Francis Gading for the logotype (#101)" +msgstr "" + +#: ../../../CHANGELOG:3877 +msgid "API endpoint for fetching instance activity and updated timeline to use this new endpoint (#141)" +msgstr "" + +#: ../../../CHANGELOG:3879 +msgid "Better error messages in case of missing environment variables (#140)" +msgstr "" + +#: ../../../CHANGELOG:3880 +msgid "Implemented a @test@yourfunkwhaledomain bot to ensure federation works properly. Send it \"/ping\" and it will answer back :)" +msgstr "" + +#: ../../../CHANGELOG:3882 +msgid "Queue shuffle now apply only to tracks after the current one (#97)" +msgstr "" + +#: ../../../CHANGELOG:3883 +msgid "Removed player from queue tab and consistently show current track in queue (#131)" +msgstr "" + +#: ../../../CHANGELOG:3885 +msgid "We now restrict some usernames from being used during signup (#139)" +msgstr "" + +#: ../../../CHANGELOG:3890 +msgid "Better error handling during file import (#120)" +msgstr "" + +#: ../../../CHANGELOG:3891 +msgid "Better handling of utf-8 filenames during file import (#138)" +msgstr "" + +#: ../../../CHANGELOG:3892 +msgid "Converted favicon from .ico to .png (#130)" +msgstr "" + +#: ../../../CHANGELOG:3893 +msgid "Upgraded to Python 3.6 to fix weird but harmless weakref error on django task (#121)" +msgstr "" + +#: ../../../CHANGELOG:3899 +msgid "Documented the upgrade process (#127)" +msgstr "" + +#: ../../../CHANGELOG:3903 +msgid "Preparing for federation" +msgstr "" + +#: ../../../CHANGELOG:3905 +msgid "Federation of music libraries is one of the most asked feature. While there is still a lot of work to do, this version includes the foundation that will enable funkwhale servers to communicate between each others, and with other federated software, such as Mastodon." +msgstr "" + +#: ../../../CHANGELOG:3911 +msgid "Funkwhale will use ActivityPub as it's federation protocol." +msgstr "" + +#: ../../../CHANGELOG:3913 +msgid "In order to prepare for federation (see #136 and #137), new API endpoints have been added under /federation and /.well-known/webfinger." +msgstr "" + +#: ../../../CHANGELOG:3916 +msgid "For these endpoints to work, you will need to update your nginx configuration, and add the following snippets::" +msgstr "" + +#: ../../../CHANGELOG:3929 +msgid "This will ensure federation endpoints will be reachable in the future. You can of course skip this part if you know you will not federate your instance." +msgstr "" + +#: ../../../CHANGELOG:3932 +msgid "A new ``FEDERATION_ENABLED`` env var have also been added to control whether federation is enabled or not on the application side. This settings defaults to True, which should have no consequences at the moment, since actual federation is not implemented and the only available endpoints are for testing purposes." +msgstr "" + +#: ../../../CHANGELOG:3938 +msgid "Add ``FEDERATION_ENABLED=false`` to your .env file to disable federation on the application side." +msgstr "" + +#: ../../../CHANGELOG:3941 +msgid "To test and troubleshoot federation, we've added a bot account. This bot is available at @test@yourinstancedomain, and sending it \"/ping\", for example, via Mastodon, should trigger a response." +msgstr "" + +#: ../../../CHANGELOG:3948 +msgid "0.7 (2018-03-21)" +msgstr "" + +#: ../../../CHANGELOG:3952 +msgid "Can now filter artists and albums with no listenable tracks (#114)" +msgstr "" + +#: ../../../CHANGELOG:3953 +msgid "Improve the style of the sidebar to make it easier to understand which tab is selected (#118)" +msgstr "" + +#: ../../../CHANGELOG:3955 +msgid "On artist page, albums are not sorted by release date, if any (#116)" +msgstr "" + +#: ../../../CHANGELOG:3956 +msgid "Playlists are here \\o/ :tada: (#3, #93, #94)" +msgstr "" + +#: ../../../CHANGELOG:3957 +msgid "Use django-cacheops to cache common ORM requests (#117)" +msgstr "" + +#: ../../../CHANGELOG:3962 +msgid "Fixed broken import request admin (#115)" +msgstr "" + +#: ../../../CHANGELOG:3963 +msgid "Fixed forced redirection to login event with API_AUTHENTICATION_REQUIRED=False (#119)" +msgstr "" + +#: ../../../CHANGELOG:3965 +msgid "Fixed position not being reseted properly when playing the same track multiple times in a row" +msgstr "" + +#: ../../../CHANGELOG:3967 +msgid "Fixed synchronized start/stop radio buttons for all custom radios (#103)" +msgstr "" + +#: ../../../CHANGELOG:3968 +msgid "Fixed typo and missing icon on homepage (#96)" +msgstr "" + +#: ../../../CHANGELOG:3973 +msgid "Up-to-date and complete development and contribution instructions in README.rst (#123)" +msgstr "" + +#: ../../../CHANGELOG:3978 +msgid "0.6.1 (2018-03-06)" +msgstr "" + +#: ../../../CHANGELOG:3982 +msgid "Can now skip acoustid on file import with the --no-acoustid flag (#111)" +msgstr "" + +#: ../../../CHANGELOG:3987 +msgid "Added missing batch id in output during import (#112)" +msgstr "" + +#: ../../../CHANGELOG:3988 +msgid "Added some feedback on the play button (#100)" +msgstr "" + +#: ../../../CHANGELOG:3989 +msgid "Smarter pagination which takes a fixed size (#84)" +msgstr "" + +#: ../../../CHANGELOG:3994 +msgid "Completely removed django-cachalot from the codebase (#110). You can safely remove the CACHALOT_ENABLED setting from your .env file" +msgstr "" + +#: ../../../CHANGELOG:3999 +msgid "0.6 (2018-03-04)" +msgstr "" + +#: ../../../CHANGELOG:4003 +msgid "Basic activity stream for listening and favorites (#23)" +msgstr "" + +#: ../../../CHANGELOG:4004 +msgid "Switched to django-channels and daphne for serving HTTP and websocket (#34)" +msgstr "" + +#: ../../../CHANGELOG:4007 +msgid "Upgrades notes" +msgstr "" + +#: ../../../CHANGELOG:4009 +msgid "This version contains breaking changes in the way funkwhale is deployed, please read the notes carefully." +msgstr "" + +#: ../../../CHANGELOG:4013 +msgid "Instance timeline" +msgstr "" + +#: ../../../CHANGELOG:4015 +msgid "A new \"Activity\" page is now available from the sidebar, where you can browse your instance activity. At the moment, this includes other users favorites and listening, but more activity types will be implemented in the future." +msgstr "" + +#: ../../../CHANGELOG:4020 +msgid "Internally, we implemented those events by following the Activity Stream specification, which will help us to be compatible with other networks in the long-term." +msgstr "" + +#: ../../../CHANGELOG:4024 +msgid "A new settings page has been added to control the visibility of your activity. By default, your activity will be browsable by anyone on your instance, but you can switch to a full private mode where nothing is shared." +msgstr "" + +#: ../../../CHANGELOG:4028 +msgid "The setting form is available in your profile." +msgstr "" + +#: ../../../CHANGELOG:4031 +msgid "Switch from gunicorn to daphne" +msgstr "" + +#: ../../../CHANGELOG:4033 +msgid "This release include an important change in the way we serve the HTTP API. To prepare for new realtime features and enable websocket support in Funkwhale, we are now using django-channels and daphne to serve HTTP and websocket traffic." +msgstr "" + +#: ../../../CHANGELOG:4037 +msgid "This replaces gunicorn and the switch should be easy assuming you follow the upgrade process described bellow." +msgstr "" + +#: ../../../CHANGELOG:4040 +msgid "If you are using docker, please remove the command instruction inside the api service, as the up-to-date command is now included directly in the image as the default entry point:" +msgstr "" + +#: ../../../CHANGELOG:4051 +msgid "On non docker setups, you'll have to update the [Service] block of your funkwhale-server systemd unit file to launch the application server using daphne instead of gunicorn." +msgstr "" + +#: ../../../CHANGELOG:4054 +msgid "The new configuration should be similar to this:" +msgstr "" + +#: ../../../CHANGELOG:4065 +msgid "Ensure you update funkwhale's dependencies as usual to install the required packages." +msgstr "" + +#: ../../../CHANGELOG:4068 +msgid "On both docker and non-docker setup, you'll also have to update your nginx configuration for websocket support. Ensure you have the following blocks included in your virtualhost file:" +msgstr "" + +#: ../../../CHANGELOG:4086 +msgid "Remember to reload your nginx server after the edit." +msgstr "" + +#: ../../../CHANGELOG:4090 +msgid "0.5.4 (2018-02-28)" +msgstr "" + +#: ../../../CHANGELOG:4094 +msgid "Now stop running radio when clearing queue (#98)" +msgstr "" + +#: ../../../CHANGELOG:4098 +msgid "Fixed queue skipping tracks (#91)" +msgstr "" + +#: ../../../CHANGELOG:4099 +msgid "Now loop properly on queue when we only have one track (#95)" +msgstr "" + +#: ../../../CHANGELOG:4103 +msgid "0.5.3 (2018-02-27)" +msgstr "" + +#: ../../../CHANGELOG:4107 +msgid "Added admin interface for radios, track files, favorites and import requests (#80)" +msgstr "" + +#: ../../../CHANGELOG:4108 +msgid "Added basic instance stats on /about (#82)" +msgstr "" + +#: ../../../CHANGELOG:4109 +msgid "Search now unaccent letters for queries like \"The Dø\" or \"Björk\" yielding more results (#81)" +msgstr "" + +#: ../../../CHANGELOG:4114 +msgid "Always use username in sidebar (#89)" +msgstr "" + +#: ../../../CHANGELOG:4115 +msgid "Click event outside of player icons (#83)" +msgstr "" + +#: ../../../CHANGELOG:4116 +msgid "Fixed broken import because of missing transaction" +msgstr "" + +#: ../../../CHANGELOG:4117 +msgid "Now always load next radio track on last queue track ended (#87)" +msgstr "" + +#: ../../../CHANGELOG:4118 +msgid "Now exclude tracks without file from radio candidates (#88)" +msgstr "" + +#: ../../../CHANGELOG:4119 +msgid "skip to next track properly on 40X errors (#86)" +msgstr "" + +#: ../../../CHANGELOG:4124 +msgid "Switched to towncrier for changelog management and compilation" +msgstr "" + +#: ../../../CHANGELOG:4128 +msgid "0.5.2 (2018-02-26)" +msgstr "" + +#: ../../../CHANGELOG:4130 +msgid "Fixed broken file import due to wrong url (#73)" +msgstr "" + +#: ../../../CHANGELOG:4131 +msgid "More accurate mimetype detection" +msgstr "" + +#: ../../../CHANGELOG:4132 +msgid "Fixed really small size on small screens" +msgstr "" + +#: ../../../CHANGELOG:4133 +msgid "Added masonry layout for artists, requests and radios (#68)" +msgstr "" + +#: ../../../CHANGELOG:4134 +msgid "We now have a favicon!" +msgstr "" + +#: ../../../CHANGELOG:4135 +msgid "Fixed truncated play icon (#65)" +msgstr "" + +#: ../../../CHANGELOG:4139 +msgid "0.5.1 (2018-02-24)" +msgstr "" + +#: ../../../CHANGELOG:4141 +msgid "Front: Fixed broken ajax call on radio builder (#69)" +msgstr "" + +#: ../../../CHANGELOG:4142 +msgid "Front: Shuffle now restart next track from beginning (#70)" +msgstr "" + +#: ../../../CHANGELOG:4143 +msgid "Front: volume slider should now have the same style everywhere (#72)" +msgstr "" + +#: ../../../CHANGELOG:4147 +msgid "0.5 (2018-02-24)" +msgstr "" + +#: ../../../CHANGELOG:4149 +msgid "Front: Now reset player colors when track has no cover (#46)" +msgstr "" + +#: ../../../CHANGELOG:4150 +msgid "Front: play button now disabled for unplayable tracks" +msgstr "" + +#: ../../../CHANGELOG:4151 +msgid "API: You can now enable or disable registration on the fly, via a preference (#58)" +msgstr "" + +#: ../../../CHANGELOG:4152 +msgid "Front: can now signup via the web interface (#35)" +msgstr "" + +#: ../../../CHANGELOG:4153 +msgid "Front: Fixed broken redirection on login" +msgstr "" + +#: ../../../CHANGELOG:4154 +msgid "Front: Fixed broken error handling on settings and login form" +msgstr "" + +#: ../../../CHANGELOG:4156 +msgid "About page:" +msgstr "" + +#: ../../../CHANGELOG:4158 +msgid "There is a brand new about page on instances (/about), and instance owner can now provide a name, a short and a long description for their instance via the admin (/api/admin/dynamic_preferences/globalpreferencemodel/)." +msgstr "" + +#: ../../../CHANGELOG:4161 +msgid "Transcoding:" +msgstr "" + +#: ../../../CHANGELOG:4163 +msgid "Basic transcoding is now available to/from the following formats : ogg and mp3." +msgstr "" + +#: ../../../CHANGELOG:4165 +msgid "*This is still an alpha feature at the moment, please report any bug.*" +msgstr "" + +#: ../../../CHANGELOG:4167 +msgid "This relies internally on FFMPEG and can put some load on your server. It's definitely recommended you setup some caching for the transcoded files at your webserver level. Check the the exemple nginx file at deploy/nginx.conf for an implementation." +msgstr "" + +#: ../../../CHANGELOG:4172 +msgid "On the frontend, usage of transcoding should be transparent in the player." +msgstr "" + +#: ../../../CHANGELOG:4174 +msgid "Music Requests:" +msgstr "" + +#: ../../../CHANGELOG:4176 +msgid "This release includes a new feature, music requests, which allows users to request music they'd like to see imported. Admins can browse those requests and mark them as completed when an import is made." +msgstr "" + +#: ../../../CHANGELOG:4182 +msgid "0.4 (2018-02-18)" +msgstr "" + +#: ../../../CHANGELOG:4184 +msgid "Front: ambiant colors in player based on current track cover (#59)" +msgstr "" + +#: ../../../CHANGELOG:4185 +msgid "Front: simplified front dev setup thanks to webpack proxy (#59)" +msgstr "" + +#: ../../../CHANGELOG:4186 +msgid "Front: added some unittests for the store (#55)" +msgstr "" + +#: ../../../CHANGELOG:4187 +msgid "Front: fixed broken login redirection when 401" +msgstr "" + +#: ../../../CHANGELOG:4188 +msgid "Front: Removed autoplay on page reload" +msgstr "" + +#: ../../../CHANGELOG:4189 +msgid "API: Added a /instance/settings endpoint" +msgstr "" + +#: ../../../CHANGELOG:4190 +msgid "Front: load /instance/settings on page load" +msgstr "" + +#: ../../../CHANGELOG:4191 +msgid "Added settings to report JS and Python error to a Sentry instance This is disabled by default, but feel free to enable it if you want to help us by sending your error reports :) (#8)" +msgstr "" + +#: ../../../CHANGELOG:4197 +msgid "0.3.5 (2018-01-07)" +msgstr "" + +#: ../../../CHANGELOG:4199 +msgid "Smarter BACKEND_URL in frontend" +msgstr "" + +#: ../../../CHANGELOG:4203 +msgid "0.3.4 (2018-01-07)" +msgstr "" + +#: ../../../CHANGELOG:4205 +msgid "Fixed wrong URL construction in ajax call" +msgstr "" + +#: ../../../CHANGELOG:4209 +msgid "0.3.3 (2018-01-07)" +msgstr "" + +#: ../../../CHANGELOG:4211 +msgid "Users can now create their own dynamic radios (#51)" +msgstr "" + +#: ../../../CHANGELOG:4215 +msgid "0.3.2" +msgstr "" + +#: ../../../CHANGELOG:4217 +msgid "Fixed an issue in the main dockerfile" +msgstr "" + +#: ../../../CHANGELOG:4221 +msgid "0.3.1" +msgstr "" + +#: ../../../CHANGELOG:4223 +msgid "Revamped all import logic, everything is more tested and consistend" +msgstr "" + +#: ../../../CHANGELOG:4224 +msgid "Can now use Acoustid in file imports to automatically grab metadata from musicbrainz" +msgstr "" + +#: ../../../CHANGELOG:4225 +msgid "Brand new file import wizard" +msgstr "" + +#: ../../../CHANGELOG:4229 +msgid "0.2.7" +msgstr "" + +#: ../../../CHANGELOG:4231 +msgid "Shortcuts: can now use the ``f`` shortcut to toggle the currently playing track as a favorite (#53)" +msgstr "" + +#: ../../../CHANGELOG:4233 +msgid "Shortcuts: avoid collisions between shortcuts by using the exact modifier (#53)" +msgstr "" + +#: ../../../CHANGELOG:4234 +msgid "Player: Added looping controls and shortcuts (#52)" +msgstr "" + +#: ../../../CHANGELOG:4235 +msgid "Player: Added shuffling controls and shortcuts (#52)" +msgstr "" + +#: ../../../CHANGELOG:4236 +msgid "Favorites: can now modify the ordering of track list (#50)" +msgstr "" + +#: ../../../CHANGELOG:4237 +msgid "Library: can now search/reorder results on artist browsing view (#50)" +msgstr "" + +#: ../../../CHANGELOG:4238 +msgid "Upgraded celery to 4.1, added endpoint logic for fingerprinting audio files" +msgstr "" + +#: ../../../CHANGELOG:4239 +msgid "Fixed #56: invalidate tokens on password change, also added change password form" +msgstr "" + +#: ../../../CHANGELOG:4240 +msgid "Fixed #57: now refresh jwt token on page refresh" +msgstr "" + +#: ../../../CHANGELOG:4241 +msgid "removed ugly dividers in batch import list" +msgstr "" + +#: ../../../CHANGELOG:4242 +msgid "Fixed a few padding issues" +msgstr "" + +#: ../../../CHANGELOG:4243 +msgid "Now persist/restore queue/radio/player state automatically" +msgstr "" + +#: ../../../CHANGELOG:4244 +msgid "Removed old broken imports" +msgstr "" + +#: ../../../CHANGELOG:4245 +msgid "Now force tests paths" +msgstr "" + +#: ../../../CHANGELOG:4246 +msgid "Fixed #54: Now use pytest everywhere \\o/" +msgstr "" + +#: ../../../CHANGELOG:4247 +msgid "Now use vuex to manage state for favorites" +msgstr "" + +#: ../../../CHANGELOG:4248 +msgid "Now use vuex to manage state for authentication" +msgstr "" + +#: ../../../CHANGELOG:4249 +msgid "Now use vuex to manage state for player/queue/radios" +msgstr "" + +#: ../../../CHANGELOG:4253 +msgid "0.2.6 (2017-12-15)" +msgstr "" + +#: ../../../CHANGELOG:4255 +msgid "Fixed broken Dockerfile" +msgstr "" + +#: ../../../CHANGELOG:4259 +msgid "0.2.5 (2017-12-15)" +msgstr "" + +#: ../../../CHANGELOG:4263 +msgid "Import: can now specify search template when querying import sources (#45)" +msgstr "" + +#: ../../../CHANGELOG:4264 +msgid "Login form: now redirect to previous page after login (#2)" +msgstr "" + +#: ../../../CHANGELOG:4265 +msgid "404: a decent 404 template, at least (#48)" +msgstr "" + +#: ../../../CHANGELOG:4269 +msgid "Player: better handling of errors when fetching the audio file (#46)" +msgstr "" + +#: ../../../CHANGELOG:4270 +msgid "Csrf: default CSRF_TRUSTED_ORIGINS to ALLOWED_HOSTS to avoid Csrf issues on admin (#49)" +msgstr "" + +#: ../../../CHANGELOG:4272 +msgid "Tech:" +msgstr "" + +#: ../../../CHANGELOG:4274 +msgid "Django 2 compatibility, lot of packages upgrades (#47)" +msgstr "" + +#: ../../../CHANGELOG:4278 +msgid "0.2.4 (2017-12-14)" +msgstr "" + +#: ../../../CHANGELOG:4282 +msgid "Models: now store relese group mbid on Album model (#7)" +msgstr "" + +#: ../../../CHANGELOG:4283 +msgid "Models: now bind import job to track files (#44)" +msgstr "" + +#: ../../../CHANGELOG:4287 +msgid "Library: fixen broken \"play all albums\" button on artist cards in Artist browsing view (#43)" +msgstr "" diff --git a/docs/locales/gettext/contributing.pot b/docs/locales/gettext/contributing.pot new file mode 100644 index 000000000..2cbdbbdfa --- /dev/null +++ b/docs/locales/gettext/contributing.pot @@ -0,0 +1,1016 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../../CONTRIBUTING.rst:2 +msgid "Contribute to Funkwhale development" +msgstr "" + +#: ../../../CONTRIBUTING.rst:4 +msgid "First of all, thank you for your interest in the project! We really appreciate the fact that you're about to take some time to read this and hack on the project." +msgstr "" + +#: ../../../CONTRIBUTING.rst:8 +msgid "This document will guide you through common operations such as:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:10 +#: ../../../CONTRIBUTING.rst:59 +msgid "Setup your development environment" +msgstr "" + +#: ../../../CONTRIBUTING.rst:11 +msgid "Working on your first issue" +msgstr "" + +#: ../../../CONTRIBUTING.rst:12 +msgid "Writing unit tests to validate your work" +msgstr "" + +#: ../../../CONTRIBUTING.rst:13 +msgid "Submit your work" +msgstr "" + +#: ../../../CONTRIBUTING.rst:16 +msgid "A quick path to contribute on the front-end" +msgstr "" + +#: ../../../CONTRIBUTING.rst:18 +msgid "The next sections of this document include a full installation guide to help you setup a local, development version of Funkwhale. If you only want to fix small things on the front-end, and don't want to manage a full development environment, there is another way." +msgstr "" + +#: ../../../CONTRIBUTING.rst:22 +msgid "As the front-end can work with any Funkwhale server, you can work with the front-end only, and make it talk with an existing instance (like the demo one, or you own instance, if you have one)." +msgstr "" + +#: ../../../CONTRIBUTING.rst:25 +msgid "If even that is too much for you, you can also make your changes without any development environment, and open a merge request. We will be able to review your work easily by spawning automatically a live version of your changes, thanks to Gitlab Review apps." +msgstr "" + +#: ../../../CONTRIBUTING.rst:30 +msgid "Setup front-end only development environment" +msgstr "" + +#: ../../../CONTRIBUTING.rst:32 +msgid "Clone the repository::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:38 +msgid "Install `nodejs <https://nodejs.org/en/download/package-manager/>`_ and `yarn <https://yarnpkg.com/lang/en/docs/install/#debian-stable>`_" +msgstr "" + +#: ../../../CONTRIBUTING.rst:40 +msgid "Install the dependencies::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:44 +msgid "Compile the translations::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:48 +msgid "Launch the development server::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:53 +msgid "Make the front-end talk with an existing server (like https://demo.funkwhale.audio or https://open.audio), by clicking on the corresponding link in the footer" +msgstr "" + +#: ../../../CONTRIBUTING.rst:56 +msgid "Start hacking!" +msgstr "" + +#: ../../../CONTRIBUTING.rst:61 +msgid "If you want to fix a bug or implement a feature, you'll need to run a local, development copy of funkwhale." +msgstr "" + +#: ../../../CONTRIBUTING.rst:64 +msgid "We provide a docker based development environment, which should be both easy to setup and work similarly regardless of your development machine setup." +msgstr "" + +#: ../../../CONTRIBUTING.rst:68 +msgid "Instructions for bare-metal setup will come in the future (Merge requests are welcome)." +msgstr "" + +#: ../../../CONTRIBUTING.rst:72 +msgid "Installing docker and docker-compose" +msgstr "" + +#: ../../../CONTRIBUTING.rst:74 +msgid "This is already cover in the relevant documentations:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:76 +msgid "https://docs.docker.com/install/" +msgstr "" + +#: ../../../CONTRIBUTING.rst:77 +msgid "https://docs.docker.com/compose/install/" +msgstr "" + +#: ../../../CONTRIBUTING.rst:81 +msgid "If you are on Fedora, know that you can't use `podman` or `moby-engine` to set up the development environment. Stick to `docker-ce` and you'll be fine." +msgstr "" + +#: ../../../CONTRIBUTING.rst:85 +msgid "Cloning the project" +msgstr "" + +#: ../../../CONTRIBUTING.rst:87 +msgid "Visit https://dev.funkwhale.audio/funkwhale/funkwhale and clone the repository using SSH or HTTPS. Example using SSH::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:94 +msgid "As of January 2020, the SSH fingerprints of our Gitlab server are the following::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:106 +msgid "A note about branches" +msgstr "" + +#: ../../../CONTRIBUTING.rst:108 +msgid "Next release development occurs on the \"develop\" branch, and releases are made on the \"stable\" branch. Therefore, when submitting Merge Requests, ensure you are merging on the develop branch." +msgstr "" + +#: ../../../CONTRIBUTING.rst:112 +msgid "Working with docker" +msgstr "" + +#: ../../../CONTRIBUTING.rst:114 +msgid "In development, we use the docker-compose file named ``dev.yml``, and this is why all our docker-compose commands will look like this::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:118 +msgid "If you do not want to add the ``-f dev.yml`` snippet every time, you can run this command before starting your work::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:124 +msgid "Creating your env file" +msgstr "" + +#: ../../../CONTRIBUTING.rst:126 +msgid "We provide a working .env.dev configuration file that is suitable for development. However, to enable customization on your machine, you should also create a .env file that will hold your personal environment variables (those will not be commited to the project)." +msgstr "" + +#: ../../../CONTRIBUTING.rst:131 +msgid "Create it like this::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:137 +msgid "Create docker network" +msgstr "" + +#: ../../../CONTRIBUTING.rst:139 +msgid "Create the federation network::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:145 +msgid "Building the containers" +msgstr "" + +#: ../../../CONTRIBUTING.rst:147 +msgid "On your initial clone, or if there have been some changes in the app dependencies, you will have to rebuild your containers. This is done via the following command::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:155 +msgid "Database management" +msgstr "" + +#: ../../../CONTRIBUTING.rst:157 +msgid "To setup funkwhale's database schema, run this::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:161 +msgid "This will create all the tables needed for the API to run properly. You will also need to run this whenever changes are made on the database schema." +msgstr "" + +#: ../../../CONTRIBUTING.rst:165 +msgid "It is safe to run this command multiple times, so you can run it whenever you fetch develop." +msgstr "" + +#: ../../../CONTRIBUTING.rst:170 +msgid "Development data" +msgstr "" + +#: ../../../CONTRIBUTING.rst:172 +msgid "You'll need at least an admin user and some artists/tracks/albums to work locally." +msgstr "" + +#: ../../../CONTRIBUTING.rst:175 +msgid "Create an admin user with the following command::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:179 +msgid "Injecting fake data is done by running the following script::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:185 +msgid "The previous command will create 25 artists with random albums, tracks and metadata." +msgstr "" + +#: ../../../CONTRIBUTING.rst:190 +msgid "Launch all services" +msgstr "" + +#: ../../../CONTRIBUTING.rst:192 +msgid "Before the first Funkwhale launch, it is required to run this::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:196 +msgid "Then you can run everything with::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:200 +msgid "This will launch all services, and output the logs in your current terminal window. If you prefer to launch them in the background instead, use the ``-d`` flag, and access the logs when you need it via ``docker-compose -f dev.yml logs --tail=50 --follow``." +msgstr "" + +#: ../../../CONTRIBUTING.rst:203 +msgid "Once everything is up, you can access the various funkwhale's components:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:205 +msgid "The Vue webapp, on http://localhost:8000" +msgstr "" + +#: ../../../CONTRIBUTING.rst:206 +msgid "The API, on http://localhost:8000/api/v1/" +msgstr "" + +#: ../../../CONTRIBUTING.rst:207 +msgid "The django admin, on http://localhost:8000/api/admin/" +msgstr "" + +#: ../../../CONTRIBUTING.rst:210 +msgid "Stopping everything" +msgstr "" + +#: ../../../CONTRIBUTING.rst:212 +msgid "Once you're down with your work, you can stop running containers, if any, with::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:218 +msgid "Removing everything" +msgstr "" + +#: ../../../CONTRIBUTING.rst:220 +msgid "If you want to wipe your development environment completely (e.g. if you want to start over from scratch), just run::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:224 +msgid "This will wipe your containers and data, so please be careful before running it." +msgstr "" + +#: ../../../CONTRIBUTING.rst:226 +msgid "You can keep your data by removing the ``-v`` flag." +msgstr "" + +#: ../../../CONTRIBUTING.rst:230 +msgid "Working with federation locally" +msgstr "" + +#: ../../../CONTRIBUTING.rst:232 +msgid "This is not needed unless you need to work on federation-related features." +msgstr "" + +#: ../../../CONTRIBUTING.rst:234 +msgid "To achieve that, you'll need:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:236 +msgid "to update your dns resolver to resolve all your .dev hostnames locally" +msgstr "" + +#: ../../../CONTRIBUTING.rst:237 +msgid "a reverse proxy (such as traefik) to catch those .dev requests and and with https certificate" +msgstr "" + +#: ../../../CONTRIBUTING.rst:239 +msgid "two instances (or more) running locally, following the regular dev setup" +msgstr "" + +#: ../../../CONTRIBUTING.rst:242 +msgid "Resolve .dev names locally" +msgstr "" + +#: ../../../CONTRIBUTING.rst:244 +msgid "If you use dnsmasq, this is as simple as doing::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:249 +msgid "If you use NetworkManager with dnsmasq integration, use this instead::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:255 +msgid "Add wildcard certificate to the trusted certificates" +msgstr "" + +#: ../../../CONTRIBUTING.rst:257 +msgid "Simply copy bundled certificates::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:262 +msgid "This certificate is a wildcard for ``*.funkwhale.test``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:265 +msgid "Run a reverse proxy for your instances" +msgstr "" + +#: ../../../CONTRIBUTING.rst:269 +msgid "Launch everything" +msgstr "" + +#: ../../../CONTRIBUTING.rst:271 +msgid "Launch the traefik proxy::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:275 +msgid "Then, in separate terminals, you can setup as many different instances as you need::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:284 +msgid "Note that by default, if you don't export the COMPOSE_PROJECT_NAME, we will default to node1 as the name of your instance." +msgstr "" + +#: ../../../CONTRIBUTING.rst:287 +msgid "Assuming your project name is ``node1``, your server will be reachable at ``https://node1.funkwhale.test/``. Not that you'll have to trust the SSL Certificate as it's self signed." +msgstr "" + +#: ../../../CONTRIBUTING.rst:291 +msgid "When working on federation with traefik, ensure you have this in your ``env``::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:304 +msgid "Typical workflow for a contribution" +msgstr "" + +#: ../../../CONTRIBUTING.rst:306 +msgid "Fork the project if you did not already or if you do not have access to the main repository" +msgstr "" + +#: ../../../CONTRIBUTING.rst:307 +msgid "Checkout the development branch and pull most recent changes: ``git checkout develop && git pull``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:308 +msgid "If working on an issue, assign yourself to the issue. Otherwise, consider open an issue before starting to work on something, especially for new features." +msgstr "" + +#: ../../../CONTRIBUTING.rst:309 +msgid "Create a dedicated branch for your work ``42-awesome-fix``. It is good practice to prefix your branch name with the ID of the issue you are solving." +msgstr "" + +#: ../../../CONTRIBUTING.rst:310 +msgid "Work on your stuff" +msgstr "" + +#: ../../../CONTRIBUTING.rst:311 +msgid "[Optional] Consider running ``yarn lint`` in ``front`` if you changed something there. Consider fixing some linting errors in the files you touched." +msgstr "" + +#: ../../../CONTRIBUTING.rst:313 +msgid "Commit small, atomic changes to make it easier to review your contribution" +msgstr "" + +#: ../../../CONTRIBUTING.rst:314 +msgid "Add a changelog fragment to summarize your changes: ``echo \"Implemented awesome stuff (#42)\" > changes/changelog.d/42.feature``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:315 +msgid "Push your branch" +msgstr "" + +#: ../../../CONTRIBUTING.rst:316 +msgid "Create your merge request" +msgstr "" + +#: ../../../CONTRIBUTING.rst:317 +msgid "Take a step back and enjoy, we're really grateful you did all of this and took the time to contribute!" +msgstr "" + +#: ../../../CONTRIBUTING.rst:320 +msgid "Changelog management" +msgstr "" + +#: ../../../CONTRIBUTING.rst:322 +msgid "To ensure we have extensive and well-structured changelog, any significant work such as closing an issue must include a changelog fragment. Small changes may include a changelog fragment as well but this is not mandatory. If you're not sure about what to do, do not panic, open your merge request normally and we'll figure everything during the review ;)" +msgstr "" + +#: ../../../CONTRIBUTING.rst:328 +msgid "Changelog fragments are text files that can contain one or multiple lines that describe the changes occurring in a bunch of commits. Those files reside in ``changes/changelog.d``." +msgstr "" + +#: ../../../CONTRIBUTING.rst:333 +msgid "Content" +msgstr "" + +#: ../../../CONTRIBUTING.rst:335 +msgid "A typical fragment looks like that:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:337 +msgid "Fixed broken audio player on Chrome 42 for ogg files (#567)" +msgstr "" + +#: ../../../CONTRIBUTING.rst:339 +msgid "If the work fixes one or more issues, the issue number should be included at the end of the fragment (``(#567)`` is the issue number in the previous example)." +msgstr "" + +#: ../../../CONTRIBUTING.rst:342 +msgid "If your work is not related to a specific issue, use the merge request identifier instead, like this:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:345 +msgid "Fixed a typo in landing page copy (!342)" +msgstr "" + +#: ../../../CONTRIBUTING.rst:348 +msgid "Naming" +msgstr "" + +#: ../../../CONTRIBUTING.rst:350 +msgid "Fragment files should respect the following naming pattern: ``changes/changelog.d/<name>.<category>``. Name can be anything describing your work, or simply the identifier of the issue number you are fixing. Category can be one of:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:354 +msgid "``feature``: for new features" +msgstr "" + +#: ../../../CONTRIBUTING.rst:355 +msgid "``enhancement``: for enhancements on existing features" +msgstr "" + +#: ../../../CONTRIBUTING.rst:356 +msgid "``bugfix``: for bugfixes" +msgstr "" + +#: ../../../CONTRIBUTING.rst:357 +msgid "``doc``: for documentation" +msgstr "" + +#: ../../../CONTRIBUTING.rst:358 +msgid "``i18n``: for internationalization-related work" +msgstr "" + +#: ../../../CONTRIBUTING.rst:359 +msgid "``misc``: for anything else" +msgstr "" + +#: ../../../CONTRIBUTING.rst:362 +msgid "Shortcuts" +msgstr "" + +#: ../../../CONTRIBUTING.rst:364 +msgid "Here is a shortcut you can use/adapt to easily create new fragments from command-line:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:373 +msgid "You can of course create fragments by hand in your text editor, or from Gitlab's interface as well." +msgstr "" + +#: ../../../CONTRIBUTING.rst:377 +msgid "Internationalization" +msgstr "" + +#: ../../../CONTRIBUTING.rst:379 +msgid "We're using https://github.com/Polyconseil/vue-gettext to manage i18n in the project." +msgstr "" + +#: ../../../CONTRIBUTING.rst:381 +msgid "When working on the front-end, any end-user string should be marked as a translatable string, with the proper context, as described below." +msgstr "" + +#: ../../../CONTRIBUTING.rst:385 +msgid "Translations in HTML" +msgstr "" + +#: ../../../CONTRIBUTING.rst:387 +msgid "Translations in HTML use the ``<translate>`` tag::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:411 +msgid "Anything between the `<translate>` and `</translate>` delimiters will be considered as a translatable string. You can use variables in the translated string via the ``:translate-params=\"{var: 'value'}\"`` directive, and reference them like this: ``val value is %{ value }``." +msgstr "" + +#: ../../../CONTRIBUTING.rst:415 +msgid "For pluralization, you need to use ``translate-params`` in conjunction with ``translate-plural`` and ``translate-n``:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:417 +msgid "``translate-params`` should contain the variable you're using for pluralization (which is usually shown to the user)" +msgstr "" + +#: ../../../CONTRIBUTING.rst:418 +msgid "``translate-n`` should match the same variable" +msgstr "" + +#: ../../../CONTRIBUTING.rst:419 +msgid "The ``<translate>`` delimiters contain the non-pluralized version of your string" +msgstr "" + +#: ../../../CONTRIBUTING.rst:420 +msgid "The ``translate-plural`` directive contains the pluralized version of your string" +msgstr "" + +#: ../../../CONTRIBUTING.rst:424 +msgid "Translations in javascript" +msgstr "" + +#: ../../../CONTRIBUTING.rst:426 +msgid "Translations in javascript work by calling the ``this.$*gettext`` functions::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:441 +msgid "The first argument of the ``$pgettext`` and ``$npgettext`` functions is the string context." +msgstr "" + +#: ../../../CONTRIBUTING.rst:444 +msgid "Contextualization" +msgstr "" + +#: ../../../CONTRIBUTING.rst:446 +msgid "Translation contexts provided via the ``translate-context`` directive and the ``$pgettext`` and ``$npgettext`` are never shown to end users but visible by Funkwhale translators. They help translators where and how the strings are used, especially with short or ambiguous strings, like ``May``, which can refer a month or a verb." +msgstr "" + +#: ../../../CONTRIBUTING.rst:450 +msgid "While we could in theory use free form context, like ``This string is inside a button, in the main page, and is a call to action``, Funkwhale use a hierarchical structure to write contexts and keep them short and consistents accross the app. The previous context, rewritten correctly would be: ``Content/Home/Button/Call to action``." +msgstr "" + +#: ../../../CONTRIBUTING.rst:454 +msgid "This hierarchical structure is made of several parts:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:463 +msgid "The location part, which is required and refers to the big blocks found in Funkwhale UI where the translated string is displayed:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:457 +msgid "``Content``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:458 +msgid "``Footer``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:459 +msgid "``Head``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:460 +#: ../../../CONTRIBUTING.rst:504 +msgid "``Menu``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:461 +msgid "``Popup``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:462 +msgid "``Sidebar``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:463 +msgid "``*`` for strings that are not tied to a specific location" +msgstr "" + +#: ../../../CONTRIBUTING.rst:486 +msgid "The feature part, which is required, and refers to the feature associated with the translated string:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:466 +msgid "``About``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:467 +msgid "``Admin``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:468 +msgid "``Album``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:469 +msgid "``Artist``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:470 +msgid "``Embed``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:471 +msgid "``Home``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:472 +msgid "``Login``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:473 +msgid "``Library``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:474 +msgid "``Moderation``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:475 +msgid "``Player``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:476 +msgid "``Playlist``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:477 +msgid "``Profile``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:478 +msgid "``Favorites``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:479 +msgid "``Notifications``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:480 +msgid "``Radio``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:481 +msgid "``Search``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:482 +msgid "``Settings``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:483 +msgid "``Signup``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:484 +msgid "``Track``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:485 +msgid "``Queue``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:486 +msgid "``*`` for strings that are not tied to a specific feature" +msgstr "" + +#: ../../../CONTRIBUTING.rst:512 +msgid "The component part, which is required and refers to the type of element that contain the string:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:489 +msgid "``Button``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:490 +msgid "``Card``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:491 +msgid "``Checkbox``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:492 +msgid "``Dropdown``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:493 +msgid "``Error message``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:494 +msgid "``Form``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:495 +msgid "``Header``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:496 +msgid "``Help text``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:497 +msgid "``Hidden text``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:498 +msgid "``Icon``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:499 +msgid "``Input``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:500 +msgid "``Image``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:501 +msgid "``Label``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:502 +msgid "``Link``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:503 +msgid "``List item``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:505 +msgid "``Message``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:506 +msgid "``Paragraph``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:507 +msgid "``Placeholder``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:508 +msgid "``Tab``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:509 +msgid "``Table``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:510 +msgid "``Title``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:511 +msgid "``Tooltip``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:512 +msgid "``*`` for strings that are not tied to a specific component" +msgstr "" + +#: ../../../CONTRIBUTING.rst:520 +msgid "The detail part, which is optional and refers to the contents of the string itself, such as:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:515 +msgid "``Adjective``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:516 +msgid "``Call to action``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:517 +msgid "``Noun``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:518 +msgid "``Short``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:519 +msgid "``Unit``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:520 +msgid "``Verb``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:522 +msgid "Here are a few examples of valid context hierarchies:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:524 +msgid "``Sidebar/Player/Button``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:525 +msgid "``Content/Home/Button/Call to action``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:526 +msgid "``Footer/*/Help text``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:527 +msgid "``*/*/*/Verb, Short``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:528 +msgid "``Popup/Playlist/Button``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:529 +msgid "``Content/Admin/Table.Label/Short, Noun (Value is a date)``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:531 +msgid "It's possible to nest multiple component parts to reach a higher level of detail. The component parts are then separated by a dot:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:533 +msgid "``Sidebar/Queue/Tab.Title``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:534 +msgid "``Content/*/Button.Title``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:535 +msgid "``Content/*/Table.Header``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:536 +msgid "``Footer/*/List item.Link``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:537 +msgid "``Content/*/Form.Help text``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:540 +msgid "Collecting translatable strings" +msgstr "" + +#: ../../../CONTRIBUTING.rst:542 +msgid "If you want to ensure your translatable strings are correctly marked for translation, you can try to extract them." +msgstr "" + +#: ../../../CONTRIBUTING.rst:545 +msgid "Extraction is done by calling ``yarn run i18n-extract``, which will pull all the strings from source files and put them in a PO files." +msgstr "" + +#: ../../../CONTRIBUTING.rst:548 +msgid "You can then inspect the PO files to ensure everything is fine (but don't commit them, it's not needed)." +msgstr "" + +#: ../../../CONTRIBUTING.rst:551 +msgid "Contributing to the API" +msgstr "" + +#: ../../../CONTRIBUTING.rst:554 +msgid "Project structure" +msgstr "" + +#: ../../../CONTRIBUTING.rst:568 +msgid "Unless trivial, API contributions must include unittests to ensure your fix or feature is working as expected and won't break in the future" +msgstr "" + +#: ../../../CONTRIBUTING.rst:572 +#: ../../../CONTRIBUTING.rst:730 +msgid "Running tests" +msgstr "" + +#: ../../../CONTRIBUTING.rst:574 +msgid "To run the pytest test suite, use the following command::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:578 +msgid "This is regular pytest, so you can use any arguments/options that pytest usually accept::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:588 +msgid "Writing tests" +msgstr "" + +#: ../../../CONTRIBUTING.rst:590 +msgid "Although teaching you how to write unit tests is outside of the scope of this document, you'll find below a collection of tips, snippets and resources you can use if you want to learn on that subject." +msgstr "" + +#: ../../../CONTRIBUTING.rst:594 +msgid "Useful links:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:596 +msgid "`A quick introduction to unit test writing with pytest <https://semaphoreci.com/community/tutorials/testing-python-applications-with-pytest>`_" +msgstr "" + +#: ../../../CONTRIBUTING.rst:597 +msgid "`A complete guide to Test-Driven Development (although not using Pytest) <https://www.obeythetestinggoat.com/>`_" +msgstr "" + +#: ../../../CONTRIBUTING.rst:598 +msgid "`pytest <https://docs.pytest.org/en/latest/>`_: documentation of our testing engine and runner" +msgstr "" + +#: ../../../CONTRIBUTING.rst:599 +msgid "`pytest-mock <https://pypi.org/project/pytest-mock/>`_: project page of our mocking engine" +msgstr "" + +#: ../../../CONTRIBUTING.rst:600 +msgid "`factory-boy <http://factoryboy.readthedocs.io/>`_: documentation of factory-boy, which we use to easily generate fake objects and data" +msgstr "" + +#: ../../../CONTRIBUTING.rst:602 +msgid "Recommendations:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:604 +msgid "Test files must target a module and mimic ``funkwhale_api`` directory structure: if you're writing tests for ``funkwhale_api/myapp/views.py``, you should put thoses tests in ``tests/myapp/test_views.py``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:605 +msgid "Tests should be small and test one thing. If you need to test multiple things, write multiple tests." +msgstr "" + +#: ../../../CONTRIBUTING.rst:607 +msgid "We provide a lot of utils and fixtures to make the process of writing tests as painless as possible. You'll find some usage examples below." +msgstr "" + +#: ../../../CONTRIBUTING.rst:610 +msgid "Use factories to create arbitrary objects:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:645 +msgid "We offer factories for almost if not all models. Factories are located in a ``factories.py`` file inside each app." +msgstr "" + +#: ../../../CONTRIBUTING.rst:648 +msgid "Mocking: mocking is the process of faking some logic in our code. This is useful when testing components that depend on each other:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:703 +msgid "Views: you can find some readable views tests in file: ``api/tests/users/test_views.py``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:707 +msgid "A complete list of available-fixtures is available by running ``docker-compose -f dev.yml run --rm api pytest --fixtures``" +msgstr "" + +#: ../../../CONTRIBUTING.rst:712 +msgid "Contributing to the front-end" +msgstr "" + +#: ../../../CONTRIBUTING.rst:715 +msgid "Styles and themes" +msgstr "" + +#: ../../../CONTRIBUTING.rst:717 +msgid "Our UI framework is Fomantic UI (https://fomantic-ui.com/), and Funkwhale's custom styles are written in SCSS. All the styles are configured in ``front/src/styles/_main.scss``, including imporing of Fomantic UI styles and components." +msgstr "" + +#: ../../../CONTRIBUTING.rst:720 +msgid "We're applying several changes on top of the Fomantic CSS files, before they are imported:" +msgstr "" + +#: ../../../CONTRIBUTING.rst:722 +msgid "Many hardcoded color values are replaced by CSS vars: e.g ``color: orange`` is replaced by ``color: var(--vibrant-color)``. This makes theming way easier." +msgstr "" + +#: ../../../CONTRIBUTING.rst:723 +msgid "Unused components variations and icons are stripped from the source files, in order to reduce the final size of our CSS files" +msgstr "" + +#: ../../../CONTRIBUTING.rst:725 +msgid "This changes are applied automatically when running ``yarn install``, through a ``postinstall`` hook. Internally, ``front/scripts/fix-fomantic-css.py`` is called and handle both kind of modifications. Please refer to this script if you need to use new icons to the project, or restore some components variations that were stripped in order to use them." +msgstr "" + +#: ../../../CONTRIBUTING.rst:732 +msgid "To run the front-end test suite, use the following command::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:736 +msgid "We also support a \"watch and test\" mode were we continually relaunch tests when changes are recorded on the file system::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:741 +msgid "The latter is especially useful when you are debugging failing tests." +msgstr "" + +#: ../../../CONTRIBUTING.rst:745 +msgid "The front-end test suite coverage is still pretty low" +msgstr "" + +#: ../../../CONTRIBUTING.rst:749 +msgid "Making a release" +msgstr "" + +#: ../../../CONTRIBUTING.rst:751 +msgid "To make a new 3.4 release::" +msgstr "" + +#: ../../../CONTRIBUTING.rst:790 +msgid "Then, visit https://dev.funkwhale.audio/funkwhale/funkwhale/-/tags, copy-paste the changelog on the corresponding tag, and announce the good news ;)" +msgstr "" diff --git a/docs/locales/gettext/developers/architecture.pot b/docs/locales/gettext/developers/architecture.pot new file mode 100644 index 000000000..1b03a1815 --- /dev/null +++ b/docs/locales/gettext/developers/architecture.pot @@ -0,0 +1,158 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../developers/architecture.rst:2 +msgid "Architecture" +msgstr "" + +#: ../../developers/architecture.rst:4 +msgid "Funkwhale is made of several components, each of them fulfilling a specific mission:" +msgstr "" + +#: ../../developers/architecture.rst:33 +msgid "This graph may looks a bit scary, so we'll detail the role of each component below." +msgstr "" + +#: ../../developers/architecture.rst:36 +msgid "The user" +msgstr "" + +#: ../../developers/architecture.rst:38 +msgid "Funkwhale users can interact with your instance using:" +msgstr "" + +#: ../../developers/architecture.rst:40 +msgid "The official web interface" +msgstr "" + +#: ../../developers/architecture.rst:41 +#: ../../developers/architecture.rst:51 +msgid "Third-party apps" +msgstr "" + +#: ../../developers/architecture.rst:44 +msgid "The web interface" +msgstr "" + +#: ../../developers/architecture.rst:46 +msgid "This refers to Funkwhale's built-in web interface, which is a Single Page application written in Vue JS. This application will interact with Funkwhale's API to retrieve or persist data." +msgstr "" + +#: ../../developers/architecture.rst:53 +msgid "Since Funkwhale implements a subset of the Subsonic API, it's compatible with existing :doc:`apps <../users/apps>` such as DSub, Ultrasonic or Clementine that support this API. Those apps can be used as a replacement or in conjunction of the web interface, but the underlying data is the same." +msgstr "" + +#: ../../developers/architecture.rst:58 +msgid "The reverse proxy" +msgstr "" + +#: ../../developers/architecture.rst:60 +msgid "Funkwhale's API server should never be exposed directly to the internet, as we require a reverse proxy (Apache or Nginx) for performance and security reasons. The reverse proxy will receive client HTTP or HTTPS requests, and:" +msgstr "" + +#: ../../developers/architecture.rst:64 +msgid "Proxy them to the API server" +msgstr "" + +#: ../../developers/architecture.rst:65 +msgid "Serve requested static files (audio files, stylesheets, javascript, fonts...)" +msgstr "" + +#: ../../developers/architecture.rst:68 +msgid "The API server" +msgstr "" + +#: ../../developers/architecture.rst:70 +msgid "Funkwhale's API server is the central piece of the project. This component is responsible for answering and processing user requests, manipulate data from the database, send long-running tasks to workers, etc." +msgstr "" + +#: ../../developers/architecture.rst:74 +msgid "It's a Python/Django application." +msgstr "" + +#: ../../developers/architecture.rst:77 +msgid "The database" +msgstr "" + +#: ../../developers/architecture.rst:79 +msgid "Most of the data such as user accounts, favorites, music metadata or playlist is stored in a PostgreSQL database." +msgstr "" + +#: ../../developers/architecture.rst:83 +msgid "The cache/message queue" +msgstr "" + +#: ../../developers/architecture.rst:85 +msgid "Fetching data from the database is sometimes slow or resource hungry. To reduce the load, Redis act as a cache for data that is considerably faster than a database." +msgstr "" + +#: ../../developers/architecture.rst:88 +msgid "It is also a message queue that will deliver tasks to the worker." +msgstr "" + +#: ../../developers/architecture.rst:91 +msgid "The worker" +msgstr "" + +#: ../../developers/architecture.rst:93 +msgid "Some operations are too long to live in the HTTP request/response cycle. Typically, importing a bunch of uploaded tracks could take a minute or two." +msgstr "" + +#: ../../developers/architecture.rst:96 +msgid "To keep the API response time as fast as possible, we offload long-running tasks to a background process, also known as the Celery worker." +msgstr "" + +#: ../../developers/architecture.rst:99 +msgid "Typical tasks include:" +msgstr "" + +#: ../../developers/architecture.rst:101 +msgid "Handling music imports" +msgstr "" + +#: ../../developers/architecture.rst:102 +msgid "Handling federation/ActivityPub messages" +msgstr "" + +#: ../../developers/architecture.rst:103 +msgid "Scanning other instances libraries" +msgstr "" + +#: ../../developers/architecture.rst:105 +msgid "This worker is also able to retry failed tasks, or spawn automatically more process when the number of received tasks increase." +msgstr "" + +#: ../../developers/architecture.rst:109 +msgid "The scheduler" +msgstr "" + +#: ../../developers/architecture.rst:111 +msgid "Some long-running tasks are not triggered by user or external input, but on a recurring basis instead. The scheduler is responsible for triggering those tasks and put the corresponding messages in the message queue so the worker can process them." +msgstr "" + +#: ../../developers/architecture.rst:115 +msgid "Recurring tasks include:" +msgstr "" + +#: ../../developers/architecture.rst:117 +msgid "Cache cleaning" +msgstr "" + +#: ../../developers/architecture.rst:118 +msgid "Music metadata refreshing" +msgstr "" diff --git a/docs/locales/gettext/developers/authentication.pot b/docs/locales/gettext/developers/authentication.pot new file mode 100644 index 000000000..ea31d4ad6 --- /dev/null +++ b/docs/locales/gettext/developers/authentication.pot @@ -0,0 +1,237 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../developers/authentication.rst:2 +msgid "API Authentication" +msgstr "" + +#: ../../developers/authentication.rst:4 +msgid "Each Funkwhale API endpoint supports access from:" +msgstr "" + +#: ../../developers/authentication.rst:6 +msgid "Anonymous users (if the endpoint is configured to do so, for exemple via the ``API Authentication Required`` setting)" +msgstr "" + +#: ../../developers/authentication.rst:7 +msgid "Logged-in users" +msgstr "" + +#: ../../developers/authentication.rst:8 +msgid "Third-party apps (via OAuth2)" +msgstr "" + +#: ../../developers/authentication.rst:10 +msgid "To seamlessly support this range of access modes, we internally use oauth scopes to describes what permissions are required to perform any given operation." +msgstr "" + +#: ../../developers/authentication.rst:14 +msgid "OAuth" +msgstr "" + +#: ../../developers/authentication.rst:17 +msgid "Create an app" +msgstr "" + +#: ../../developers/authentication.rst:19 +msgid "To connect to Funkwhale API via OAuth, you need to create an application. There are two ways to do that:" +msgstr "" + +#: ../../developers/authentication.rst:22 +msgid "By visiting ``/settings/applications/new`` when logged in on your Funkwhale instance." +msgstr "" + +#: ../../developers/authentication.rst:23 +msgid "By sending a ``POST`` request to ``/api/v1/oauth/apps/``, as described in `our API documentation <https://docs.funkwhale.audio/swagger/>`_." +msgstr "" + +#: ../../developers/authentication.rst:25 +msgid "Both method will give you a client ID and secret." +msgstr "" + +#: ../../developers/authentication.rst:28 +msgid "Getting an access token" +msgstr "" + +#: ../../developers/authentication.rst:30 +msgid "Once you have a client ID and secret, you can request access tokens using the `authorization code grant flow <https://tools.ietf.org/html/rfc6749#section-4.1>`_." +msgstr "" + +#: ../../developers/authentication.rst:33 +msgid "We support the ``urn:ietf:wg:oauth:2.0:oob`` redirect URI for non-web applications, as well as traditionnal redirection-based flow." +msgstr "" + +#: ../../developers/authentication.rst:36 +msgid "Our authorization endpoint is located at ``/authorize``, and our token endpoint at ``/api/v1/oauth/token/``." +msgstr "" + +#: ../../developers/authentication.rst:39 +msgid "Refreshing tokens" +msgstr "" + +#: ../../developers/authentication.rst:41 +msgid "When your access token is expired, you can `request a new one as described in the OAuth specification <https://tools.ietf.org/html/rfc6749#section-6>`_." +msgstr "" + +#: ../../developers/authentication.rst:44 +msgid "Security considerations" +msgstr "" + +#: ../../developers/authentication.rst:46 +msgid "Grant codes are valid for a 5 minutes after authorization request is approved by the end user." +msgstr "" + +#: ../../developers/authentication.rst:47 +msgid "Access codes are valid for 10 hours. When expired, you will need to request a new one using your refresh token." +msgstr "" + +#: ../../developers/authentication.rst:48 +msgid "We return a new refresh token everytime an access token is requested, and invalidate the old one. Ensure you store the new refresh token in your app." +msgstr "" + +#: ../../developers/authentication.rst:52 +msgid "Scopes" +msgstr "" + +#: ../../developers/authentication.rst:54 +msgid "Scopes are defined in :file:`funkwhale_api/users/oauth/scopes.py:BASE_SCOPES`, and generally are mapped to a business-logic resources (follows, favorites, etc.). All those base scopes come in two flawours:" +msgstr "" + +#: ../../developers/authentication.rst:56 +msgid "`read:<base_scope>`: get read-only access to the resource" +msgstr "" + +#: ../../developers/authentication.rst:57 +msgid "`write:<base_scope>`: get write-only access to the ressource" +msgstr "" + +#: ../../developers/authentication.rst:59 +msgid "For example, ``playlists`` is a base scope, and ``write:playlists`` is the actual scope needed to perform write operations on playlists (via a ``POST``, ``PATCH``, ``PUT`` or ``DELETE``. ``read:playlists`` is used to perform read operations on playlists such as fetching a given playlist via ``GET``." +msgstr "" + +#: ../../developers/authentication.rst:63 +msgid "Having the generic ``read`` or ``write`` scope give you the corresponding access on *all* resources." +msgstr "" + +#: ../../developers/authentication.rst:65 +msgid "This is the list of OAuth scopes that third-party applications can request:" +msgstr "" + +#: ../../developers/authentication.rst:69 +msgid "Scope" +msgstr "" + +#: ../../developers/authentication.rst:69 +msgid "Description" +msgstr "" + +#: ../../developers/authentication.rst:71 +msgid "``read``" +msgstr "" + +#: ../../developers/authentication.rst:71 +msgid "Read-only access to all data (equivalent to all ``read:*`` scopes)" +msgstr "" + +#: ../../developers/authentication.rst:74 +msgid "``write``" +msgstr "" + +#: ../../developers/authentication.rst:74 +msgid "Write-only access to all data (equivalent to all ``write:*`` scopes)" +msgstr "" + +#: ../../developers/authentication.rst:77 +msgid "``<read/write>:profile``" +msgstr "" + +#: ../../developers/authentication.rst:77 +msgid "Access to profile data (e-mail address, username, etc.)" +msgstr "" + +#: ../../developers/authentication.rst:79 +msgid "``<read/write>:libraries``" +msgstr "" + +#: ../../developers/authentication.rst:79 +msgid "Access to library data (uploads, libraries tracks, albums, artists...)" +msgstr "" + +#: ../../developers/authentication.rst:82 +msgid "``<read/write>:favorites``" +msgstr "" + +#: ../../developers/authentication.rst:82 +msgid "Access to favorites" +msgstr "" + +#: ../../developers/authentication.rst:84 +msgid "``<read/write>:listenings``" +msgstr "" + +#: ../../developers/authentication.rst:84 +msgid "Access to history" +msgstr "" + +#: ../../developers/authentication.rst:86 +msgid "``<read/write>:follows``" +msgstr "" + +#: ../../developers/authentication.rst:86 +msgid "Access to followers" +msgstr "" + +#: ../../developers/authentication.rst:88 +msgid "``<read/write>:playlists``" +msgstr "" + +#: ../../developers/authentication.rst:88 +msgid "Access to playlists" +msgstr "" + +#: ../../developers/authentication.rst:90 +msgid "``<read/write>:radios``" +msgstr "" + +#: ../../developers/authentication.rst:90 +msgid "Access to radios" +msgstr "" + +#: ../../developers/authentication.rst:92 +msgid "``<read/write>:filters``" +msgstr "" + +#: ../../developers/authentication.rst:92 +msgid "Access to content filters" +msgstr "" + +#: ../../developers/authentication.rst:94 +msgid "``<read/write>:notifications``" +msgstr "" + +#: ../../developers/authentication.rst:94 +msgid "Access to notifications" +msgstr "" + +#: ../../developers/authentication.rst:96 +msgid "``<read/write>:edits``" +msgstr "" + +#: ../../developers/authentication.rst:96 +msgid "Access to metadata edits" +msgstr "" diff --git a/docs/locales/gettext/developers/index.pot b/docs/locales/gettext/developers/index.pot new file mode 100644 index 000000000..0424d4053 --- /dev/null +++ b/docs/locales/gettext/developers/index.pot @@ -0,0 +1,25 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../developers/index.rst:2 +msgid "Developer documentation" +msgstr "" + +#: ../../developers/index.rst:4 +msgid "This documentation is targeted primarily at developers who want to understand how Funkwhale works and how to build apps that integrate with Funkwhale's ecosystem." +msgstr "" diff --git a/docs/locales/gettext/developers/plugins.pot b/docs/locales/gettext/developers/plugins.pot new file mode 100644 index 000000000..9229ede44 --- /dev/null +++ b/docs/locales/gettext/developers/plugins.pot @@ -0,0 +1,173 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../developers/plugins.rst:2 +msgid "Funkwhale plugins" +msgstr "" + +#: ../../developers/plugins.rst:4 +msgid "Starting with Funkwhale 1.0, it is now possible to implement new features via plugins." +msgstr "" + +#: ../../developers/plugins.rst:7 +msgid "Some plugins are maintained by the Funkwhale team (e.g. this is the case of the ``scrobbler`` plugin), or by third-parties." +msgstr "" + +#: ../../developers/plugins.rst:11 +msgid "Installing a plugin" +msgstr "" + +#: ../../developers/plugins.rst:13 +msgid "To install a plugin, ensure its directory is present in the ``FUNKWHALE_PLUGINS_PATH`` directory." +msgstr "" + +#: ../../developers/plugins.rst:15 +msgid "Then, add its name to the ``FUNKWHALE_PLUGINS`` environment variable, like this::" +msgstr "" + +#: ../../developers/plugins.rst:19 +msgid "We provide a command to make it easy to install third-party plugins::" +msgstr "" + +#: ../../developers/plugins.rst:25 +msgid "If you use the command, you will still need to append the plugin name to ``FUNKWHALE_PLUGINS``" +msgstr "" + +#: ../../developers/plugins.rst:29 +msgid "Types of plugins" +msgstr "" + +#: ../../developers/plugins.rst:31 +msgid "There are two types of plugins:" +msgstr "" + +#: ../../developers/plugins.rst:33 +msgid "Plugins that are accessible to end-users, a.k.a. user-level plugins. This is the case of our Scrobbler plugin" +msgstr "" + +#: ../../developers/plugins.rst:34 +msgid "Pod-level plugins that are configured by pod admins and are not tied to a particular user" +msgstr "" + +#: ../../developers/plugins.rst:36 +msgid "Additionally, user-level plugins can be regular plugins or source plugins. A source plugin provides a way to import files from a third-party service, e.g via webdav, FTP or something similar." +msgstr "" + +#: ../../developers/plugins.rst:40 +msgid "Hooks and filters" +msgstr "" + +#: ../../developers/plugins.rst:42 +msgid "Funkwhale includes two kind of entrypoints for plugins to use: hooks and filters. B" +msgstr "" + +#: ../../developers/plugins.rst:44 +msgid "Hooks should be used when you want to react to some change. For instance, the ``LISTENING_CREATED`` hook notify each registered callback that a listening was created. Our ``scrobbler`` plugin has a callback registered to this hook, so that it can notify Last.fm properly:" +msgstr "" + +#: ../../developers/plugins.rst:57 +msgid "Filters work slightly differently, and expect callbacks to return a value that will be used by Funkwhale." +msgstr "" + +#: ../../developers/plugins.rst:59 +msgid "For instance, the ``PLUGINS_DEPENDENCIES`` filter can be used as a way to install additional dependencies needed by your plugin:" +msgstr "" + +#: ../../developers/plugins.rst:72 +msgid "To sum it up, hooks are used when you need to react to something, and filters when you need to alter something." +msgstr "" + +#: ../../developers/plugins.rst:75 +msgid "Writing a plugin" +msgstr "" + +#: ../../developers/plugins.rst:77 +msgid "Regardless of the type of plugin you want to write, lots of concepts are similar." +msgstr "" + +#: ../../developers/plugins.rst:79 +msgid "First, a plugin need three files:" +msgstr "" + +#: ../../developers/plugins.rst:81 +msgid "a ``__init__.py`` file, since it's a Python package" +msgstr "" + +#: ../../developers/plugins.rst:82 +msgid "a ``funkwhale_startup.py`` file, that is loaded during Funkwhale initialization" +msgstr "" + +#: ../../developers/plugins.rst:83 +msgid "a ``funkwhale_ready.py`` file, that is loaded when Funkwhale is configured and ready" +msgstr "" + +#: ../../developers/plugins.rst:85 +msgid "So your plugin directory should look like this::" +msgstr "" + +#: ../../developers/plugins.rst:92 +msgid "Now, let's write our plugin!" +msgstr "" + +#: ../../developers/plugins.rst:94 +msgid "``funkwhale_startup.py`` is where you declare your plugin and it's configuration options:" +msgstr "" + +#: ../../developers/plugins.rst:114 +msgid "Now that our plugin is declared and configured, let's implement actual functionality in ``funkwhale_ready.py``:" +msgstr "" + +#: ../../developers/plugins.rst:149 +msgid "And that's pretty much it. Now, login, visit https://yourpod.domain/settings/plugins, set a value in the ``greeting`` field and enable the plugin." +msgstr "" + +#: ../../developers/plugins.rst:151 +msgid "After that, you should be greeted properly if you go to https://yourpod.domain/greeting." +msgstr "" + +#: ../../developers/plugins.rst:154 +msgid "Hooks reference" +msgstr "" + +#: ../../docstring of config.plugins.LISTENING_CREATED:1 +msgid "Called when a track is being listened" +msgstr "" + +#: ../../developers/plugins.rst:159 +msgid "Filters reference" +msgstr "" + +#: ../../docstring of config.plugins.PLUGINS_DEPENDENCIES:1 +msgid "Called with an empty list, use this filter to append pip dependencies to the list for installation." +msgstr "" + +#: ../../docstring of config.plugins.PLUGINS_APPS:1 +msgid "Called with an empty list, use this filter to append apps to INSTALLED_APPS" +msgstr "" + +#: ../../docstring of config.plugins.MIDDLEWARES_BEFORE:1 +msgid "Called with an empty list, use this filter to prepend middlewares to MIDDLEWARE" +msgstr "" + +#: ../../docstring of config.plugins.MIDDLEWARES_AFTER:1 +msgid "Called with an empty list, use this filter to append middlewares to MIDDLEWARE" +msgstr "" + +#: ../../docstring of config.plugins.URLS:1 +msgid "Called with an empty list, use this filter to register new urls and views" +msgstr "" diff --git a/docs/locales/gettext/developers/subsonic.pot b/docs/locales/gettext/developers/subsonic.pot new file mode 100644 index 000000000..a93a9b27a --- /dev/null +++ b/docs/locales/gettext/developers/subsonic.pot @@ -0,0 +1,165 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../developers/subsonic.rst:2 +msgid "Subsonic API" +msgstr "" + +#: ../../developers/subsonic.rst:4 +msgid "Funkwhale implements a subset of the `Subsonic API <http://www.subsonic.org/pages/api.jsp>`_ that makes it compatible with various apps in the Subsonic ecosystem (See :doc:`../users/apps`)." +msgstr "" + +#: ../../developers/subsonic.rst:8 +msgid "Supported endpoints" +msgstr "" + +#: ../../developers/subsonic.rst:10 +msgid "We seek the best compatibility with existing apps and will eventually implement all endpoints that match Funkwhale's feature set. However, the current implementation do not include folder-based endpoints, as it does not match our internal model at all and will require substantial effort to emulate." +msgstr "" + +#: ../../developers/subsonic.rst:15 +msgid "We'll try to keep this list up-to-date, but you can also browse `the relevant code <https://dev.funkwhale.audio/funkwhale/funkwhale/blob/develop/api/funkwhale_api/subsonic/views.py>`_ if needed." +msgstr "" + +#: ../../developers/subsonic.rst:19 +msgid "As of today, the following endpoints are implemented:" +msgstr "" + +#: ../../developers/subsonic.rst:21 +msgid "createPlaylist" +msgstr "" + +#: ../../developers/subsonic.rst:22 +msgid "deletePlaylist" +msgstr "" + +#: ../../developers/subsonic.rst:23 +msgid "getAlbum" +msgstr "" + +#: ../../developers/subsonic.rst:24 +msgid "getAlbumList2" +msgstr "" + +#: ../../developers/subsonic.rst:25 +msgid "getArtist" +msgstr "" + +#: ../../developers/subsonic.rst:26 +msgid "getArtistInfo2" +msgstr "" + +#: ../../developers/subsonic.rst:27 +msgid "getArtists" +msgstr "" + +#: ../../developers/subsonic.rst:28 +msgid "getAvatar" +msgstr "" + +#: ../../developers/subsonic.rst:29 +msgid "getCoverArt" +msgstr "" + +#: ../../developers/subsonic.rst:30 +msgid "getIndexes" +msgstr "" + +#: ../../developers/subsonic.rst:31 +msgid "getLicense" +msgstr "" + +#: ../../developers/subsonic.rst:32 +msgid "getMusicFolders" +msgstr "" + +#: ../../developers/subsonic.rst:33 +msgid "getPlaylist" +msgstr "" + +#: ../../developers/subsonic.rst:34 +msgid "getPlaylists" +msgstr "" + +#: ../../developers/subsonic.rst:35 +msgid "getRandomSongs" +msgstr "" + +#: ../../developers/subsonic.rst:36 +msgid "getSong" +msgstr "" + +#: ../../developers/subsonic.rst:37 +msgid "getStarred" +msgstr "" + +#: ../../developers/subsonic.rst:38 +msgid "getStarred2" +msgstr "" + +#: ../../developers/subsonic.rst:39 +msgid "getUser" +msgstr "" + +#: ../../developers/subsonic.rst:40 +msgid "ping" +msgstr "" + +#: ../../developers/subsonic.rst:41 +msgid "scrobble" +msgstr "" + +#: ../../developers/subsonic.rst:42 +msgid "search3" +msgstr "" + +#: ../../developers/subsonic.rst:43 +msgid "star" +msgstr "" + +#: ../../developers/subsonic.rst:44 +msgid "stream" +msgstr "" + +#: ../../developers/subsonic.rst:45 +msgid "unstar" +msgstr "" + +#: ../../developers/subsonic.rst:46 +msgid "updatePlaylist" +msgstr "" + +#: ../../developers/subsonic.rst:48 +msgid "We support both XML and JSON formats for all those endpoints." +msgstr "" + +#: ../../developers/subsonic.rst:51 +msgid "Additional properties" +msgstr "" + +#: ../../developers/subsonic.rst:53 +msgid "Regardless of the endpoints, we always return those additional properties in our payload, which you can use to adapt your client behaviour if needed:" +msgstr "" + +#: ../../developers/subsonic.rst:66 +msgid "Testing a Subsonic app" +msgstr "" + +#: ../../developers/subsonic.rst:68 +msgid "We maintain a demo server at https://demo.funkwhale.audio/, which you can use for your tests. Example with the ping endpoint: https://demo.funkwhale.audio/rest/ping.view?f=json" +msgstr "" diff --git a/docs/locales/gettext/documentation/creating.pot b/docs/locales/gettext/documentation/creating.pot new file mode 100644 index 000000000..881242f9d --- /dev/null +++ b/docs/locales/gettext/documentation/creating.pot @@ -0,0 +1,182 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../documentation/creating.rst:2 +msgid "Adding New Documents" +msgstr "" + +#: ../../documentation/creating.rst:5 +msgid "Writing Documents" +msgstr "" + +#: ../../documentation/creating.rst:7 +msgid "Before you start writing documents:" +msgstr "" + +#: ../../documentation/creating.rst:9 +msgid "Make sure you have all the necessary information and :doc:`tools you need <tools>` to get started" +msgstr "" + +#: ../../documentation/creating.rst:10 +msgid "Check the `current documents <https://docs.funkwhale.audio>`_ carefully to make sure you're not repeating something somebody has already said" +msgstr "" + +#: ../../documentation/creating.rst:11 +msgid "Familiarize yourself with :doc:`reStructuredText <restructured>` and :doc:`the recommended document style <style>`" +msgstr "" + +#: ../../documentation/creating.rst:13 +msgid "Once you're ready to get started, you can start :ref:`working with Gitlab <work-with-gitlab>`" +msgstr "" + +#: ../../documentation/creating.rst:18 +msgid "Working With Gitlab" +msgstr "" + +#: ../../documentation/creating.rst:20 +msgid "Documents are managed in the Funkwhale `Gitlab <https://dev.funkwhale.audio>`_ repository along with the code. In order to add new documents, you will need to follow this process:" +msgstr "" + +#: ../../documentation/creating.rst:23 +msgid ":ref:`Sign up to Gitlab <sign-up>`" +msgstr "" + +#: ../../documentation/creating.rst:24 +msgid ":ref:`Fork the project <fork-project>`" +msgstr "" + +#: ../../documentation/creating.rst:25 +msgid ":ref:`Clone the Repository <clone-repo>`" +msgstr "" + +#: ../../documentation/creating.rst:26 +msgid ":ref:`Add documents to your branch <add-docs>`" +msgstr "" + +#: ../../documentation/creating.rst:27 +msgid ":ref:`Create a Merge Request <merge-request>`" +msgstr "" + +#: ../../documentation/creating.rst:32 +msgid "Signing up to Gitlab" +msgstr "" + +#: ../../documentation/creating.rst:34 +msgid "Before you can contribute documents to Funkwhale, you will need to set up an account on the project's `Gitlab <https://dev.funkwhale.audio>`_. To do this:" +msgstr "" + +#: ../../documentation/creating.rst:37 +msgid "Navigate to the https://dev.funkwhale.audio" +msgstr "" + +#: ../../documentation/creating.rst:38 +msgid "Click on \"register\" to bring up the registration form" +msgstr "" + +#: ../../documentation/creating.rst:39 +msgid "Fill in the relevant details, or alternatively sign up with Github if you already have an account" +msgstr "" + +#: ../../documentation/creating.rst:40 +msgid "[Optional]: You can then `set up an SSH key <https://docs.gitlab.com/ee/ssh/>`_ to enable easy management of your :ref:`repository <clone-repo>`" +msgstr "" + +#: ../../documentation/creating.rst:45 +msgid "Fork the project" +msgstr "" + +#: ../../documentation/creating.rst:47 +msgid "Once you have set up an account, you can `fork the project <https://help.github.com/en/articles/fork-a-repo>`_ to create a copy of the repository that you can make changes to." +msgstr "" + +#: ../../documentation/creating.rst:50 +#: ../../documentation/creating.rst:117 +msgid "Navigate to the `Funkwhale repository <https://dev.funkwhale.audio/funkwhale/funkwhale>`_" +msgstr "" + +#: ../../documentation/creating.rst:51 +msgid "Click \"Fork\" at the top of the repository" +msgstr "" + +#: ../../documentation/creating.rst:52 +msgid "You will be redirected to a new version of the project. This one's all yours!" +msgstr "" + +#: ../../documentation/creating.rst:57 +msgid "Clone the Repository" +msgstr "" + +#: ../../documentation/creating.rst:59 +msgid "Once you have successfully forked the project, you can safely download a copy of this to your local computer to create documents." +msgstr "" + +#: ../../documentation/creating.rst:72 +msgid "Once you've cloned the repository, it's a good idea to create a new branch for your documents so that you can :ref:`merge it later <merge-request>`" +msgstr "" + +#: ../../documentation/creating.rst:88 +msgid "Add Documents to Your Branch" +msgstr "" + +#: ../../documentation/creating.rst:90 +msgid "When you've got your repository all set up, you can start writing your documents. Remember to keep in mind :doc:`who you are writing for <style>` when you are writing, and :doc:`check your syntax works <restructured>`." +msgstr "" + +#: ../../documentation/creating.rst:93 +msgid "Once you've written what you need to write, you can push these changes to your forked repository:" +msgstr "" + +#: ../../documentation/creating.rst:112 +msgid "Create a Merge Request" +msgstr "" + +#: ../../documentation/creating.rst:114 +msgid "Once you've pushed all of your documents, you can create a `Merge Request <https://docs.gitlab.com/ee/gitlab-basics/add-merge-request.html>`_ to request the documents be merged into the official Funkwhale develop branch." +msgstr "" + +#: ../../documentation/creating.rst:118 +msgid "Click \"Merge Requests\" on the left hand side" +msgstr "" + +#: ../../documentation/creating.rst:119 +msgid "Click on the \"New Merge Request\"" +msgstr "" + +#: ../../documentation/creating.rst:120 +msgid "Under the \"Source Branch\" select your forked repository and the branch to which you've pushed changes" +msgstr "" + +#: ../../documentation/creating.rst:121 +msgid "Under \"Target Branch\", select the \"develop\" branch" +msgstr "" + +#: ../../documentation/creating.rst:122 +msgid "Click \"Compare Branches and Continue\"" +msgstr "" + +#: ../../documentation/creating.rst:123 +msgid "In the form that comes up, provide a title/description of the changes you've made" +msgstr "" + +#: ../../documentation/creating.rst:124 +msgid "Click \"Submit Merge Request\" to submit" +msgstr "" + +#: ../../documentation/creating.rst:126 +msgid "That's it! If your merge request is successful, you will get a notification from one of the maintainers letting you know your changes have been accepted. Sometimes, you may need to make minor corrections. Don't worry! We'll let you know what needs correcting." +msgstr "" diff --git a/docs/locales/gettext/documentation/identifying.pot b/docs/locales/gettext/documentation/identifying.pot new file mode 100644 index 000000000..91a7eec4e --- /dev/null +++ b/docs/locales/gettext/documentation/identifying.pot @@ -0,0 +1,57 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../documentation/identifying.rst:2 +msgid "Identifying Gaps in Funkwhale Documentation" +msgstr "" + +#: ../../documentation/identifying.rst:4 +msgid "As Funkwhale and its community continue to grow and develop, more and more processes and features will need to be documented. As users find interesting new ways to interact with the software, provide novel solutions to existing issues, and find information they need missing, the documents will need to be updated and added to." +msgstr "" + +#: ../../documentation/identifying.rst:9 +msgid "If you are trying to do something in Funkwhale and can't find any resources to help, you can help out by contributing in one of the following ways:" +msgstr "" + +#: ../../documentation/identifying.rst:13 +msgid "Providing Documentation" +msgstr "" + +#: ../../documentation/identifying.rst:15 +msgid "If you've identified a gap or mistake in the documentation and feel comfortable writing up new guides/correcting existing ones, please feel free to do so. The best way to do this is by following the :doc:`document creation guide <creating>` to make sure your documents get processed as quickly as possible." +msgstr "" + +#: ../../documentation/identifying.rst:21 +msgid "Requesting Documentation" +msgstr "" + +#: ../../documentation/identifying.rst:23 +msgid "If you're not comfortable with writing documents or don't feel like you can, you can help out by requesting a document be written. There are three ways to request new documents:" +msgstr "" + +#: ../../documentation/identifying.rst:26 +msgid "Open a new issue on `Gitlab <https://dev.funkwhale.audio/funkwhale/funkwhale/issues>`_, providing as much detail as possible" +msgstr "" + +#: ../../documentation/identifying.rst:27 +msgid "Start a new thread on `the forum <https://forum.funkwhale.audio/>`_ with more details about your requests" +msgstr "" + +#: ../../documentation/identifying.rst:28 +msgid "Ask somebody on our `chat room <https://matrix.to/#/#funkwhale:matrix.org>`_" +msgstr "" diff --git a/docs/locales/gettext/documentation/index.pot b/docs/locales/gettext/documentation/index.pot new file mode 100644 index 000000000..ff31912fb --- /dev/null +++ b/docs/locales/gettext/documentation/index.pot @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../documentation/index.rst:2 +msgid "Contribute to Funkwhale's Documentation" +msgstr "" + +#: ../../documentation/index.rst:4 +msgid "Funkwhale is constantly growing and changing, so good documentation is essential. If you find a gap or mistake in existing documents, or you want to create new documents to cover something that isn't covered yet, you can follow this procedure to contribute to Funkwhale's documentation store." +msgstr "" + +#: ../../documentation/index.rst:10 +msgid "Setup" +msgstr "" + +#: ../../documentation/index.rst:20 +msgid "Contributing" +msgstr "" diff --git a/docs/locales/gettext/documentation/rearrange.pot b/docs/locales/gettext/documentation/rearrange.pot new file mode 100644 index 000000000..ded4c60a5 --- /dev/null +++ b/docs/locales/gettext/documentation/rearrange.pot @@ -0,0 +1,69 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../documentation/rearrange.rst:2 +msgid "Rearranging Files" +msgstr "" + +#: ../../documentation/rearrange.rst:4 +msgid "Sometimes, rearranging the layout of documents in the docs folder can help to make things a bit clearer for users. However, this can present the following issues:" +msgstr "" + +#: ../../documentation/rearrange.rst:7 +msgid ":ref:`Orphaned document links <orphaned-doc>`" +msgstr "" + +#: ../../documentation/rearrange.rst:8 +msgid ":ref:`Orphaned URLs <orphaned-url>`" +msgstr "" + +#: ../../documentation/rearrange.rst:13 +msgid "Orphaned Document Links" +msgstr "" + +#: ../../documentation/rearrange.rst:15 +msgid "Documents frequently reference other documents to avoid repeating information. If you move a document, you need to be sure to update any orphaned references." +msgstr "" + +#: ../../documentation/rearrange.rst:18 +msgid "Running ``make html`` in the ``docs`` directory (assuming you have :doc:`Sphinx installed <tools>`) will generate a series of warnings letting you know if any links are orphaned." +msgstr "" + +#: ../../documentation/rearrange.rst:25 +msgid "You can then go to the file/line in question and update the link to its new location." +msgstr "" + +#: ../../documentation/rearrange.rst:30 +msgid "Orphaned URLs" +msgstr "" + +#: ../../documentation/rearrange.rst:32 +msgid "Once internal document links have been resolved, it is important to consider that the moved file may have also been linked externally elsewhere before. In order to ensure that anybody trying to access the file is properly redirected to its new location, we need to make use of the link redirector in the ``conf.py`` file." +msgstr "" + +#: ../../documentation/rearrange.rst:37 +msgid "The link redirector takes two arguments: the old location of the file (passed as a .html file at the relative path ``docs``), and the new location it should redirect to. For example, if a document was moved from ``docs/index.html`` to ``docs/admin/index.html``, we would add the following to the ``redirect_files`` section of ``conf.py``:" +msgstr "" + +#: ../../documentation/rearrange.rst:53 +msgid "If you are moving something from one folder to another, you would need to tell the redirect to move to the correct level. For example, if a file is moving from ``docs/admin/index.html`` to ``docs/users/index.html``, you will need to add the following to the ``redirect_files`` section of ``conf.py``:" +msgstr "" + +#: ../../documentation/rearrange.rst:69 +msgid "The script will then take these two arguments and create a redirect file in the original location so that anybody accessing the existing URL will be redirected." +msgstr "" diff --git a/docs/locales/gettext/documentation/restructured.pot b/docs/locales/gettext/documentation/restructured.pot new file mode 100644 index 000000000..ee8a540ac --- /dev/null +++ b/docs/locales/gettext/documentation/restructured.pot @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../documentation/restructured.rst:2 +msgid "Writing reStructuredText" +msgstr "" + +#: ../../documentation/restructured.rst:4 +msgid "Funkwhale's documentation is written using a standard markup language called `reStructuredText <http://docutils.sourceforge.net/rst.html>`_. It is similar to Markdown and other web-based markup languages, but is better suited to technical documentation due to its standardized nature. A full syntax breakdown can be found `here <http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html>`_, but the following should be enough to get you started on writing docs for Funkwhale." +msgstr "" + +#: ../../documentation/restructured.rst:11 +msgid "Headings" +msgstr "" + +#: ../../documentation/restructured.rst:13 +msgid "Headings are useful for splitting up text into relevant subsections. With `Sphinx <http://www.sphinx-doc.org/>`_, major headers and direct subheaders are rendered as navigation links on Index pages, which makes them ideal for sharing specific information quickly." +msgstr "" + +#: ../../documentation/restructured.rst:17 +msgid "Headers are written like so:" +msgstr "" + +#: ../../documentation/restructured.rst:32 +msgid "Underlines should be **at least** as long as the words they underline" +msgstr "" + +#: ../../documentation/restructured.rst:35 +msgid "Links" +msgstr "" + +#: ../../documentation/restructured.rst:37 +msgid "Links can be rendered in several different ways depending on where they link to:" +msgstr "" + +#: ../../documentation/restructured.rst:45 +msgid "Inline references can also be generated using the following syntax:" +msgstr "" + +#: ../../documentation/restructured.rst:56 +msgid "Lists" +msgstr "" + +#: ../../documentation/restructured.rst:58 +msgid "Bullet point lists are usually written using dashes like so:" +msgstr "" + +#: ../../documentation/restructured.rst:67 +msgid "Blocks" +msgstr "" + +#: ../../documentation/restructured.rst:69 +msgid "Blocks can be used to easily and concisely present information to a reader and are particularly useful when demonstrating technical steps. Blocks in reStructuredText can be written as follows:" +msgstr "" + +#: ../../documentation/restructured.rst:87 +msgid "Other syntax highlighting is available. See the spec for full details." +msgstr "" + +#: ../../documentation/restructured.rst:91 +msgid "Content within code blocks should be indented by three spaces. You can end the code block by removing the indent." +msgstr "" + +#: ../../documentation/restructured.rst:95 +msgid "Notes and Warnings" +msgstr "" + +#: ../../documentation/restructured.rst:97 +msgid "Notes are great for presenting important information to users and providing additional context. Warnings can be very useful if a step you're writing about could potentially have adverse consequences." +msgstr "" + +#: ../../documentation/restructured.rst:112 +msgid "Content within notes and warnings should be indented by three spaces. You can end the block by removing the indent." +msgstr "" diff --git a/docs/locales/gettext/documentation/style.pot b/docs/locales/gettext/documentation/style.pot new file mode 100644 index 000000000..a40c9da25 --- /dev/null +++ b/docs/locales/gettext/documentation/style.pot @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../documentation/style.rst:2 +msgid "Documentation Style Guide" +msgstr "" + +#: ../../documentation/style.rst:5 +msgid "End-user Documentation" +msgstr "" + +#: ../../documentation/style.rst:7 +msgid "End-user documentation is often the most difficult to write as it requires striking the right balance between technical and non-technical instruction. Typically, writing a document should start with you asking yourself the following question:" +msgstr "" + +#: ../../documentation/style.rst:11 +msgid "Why is the user reading this document?" +msgstr "" + +#: ../../documentation/style.rst:13 +msgid "The answer will usually be one of the following:" +msgstr "" + +#: ../../documentation/style.rst:15 +msgid "They are new to the project and are looking to learn more about it" +msgstr "" + +#: ../../documentation/style.rst:16 +msgid "They are trying to do something and are having difficulty" +msgstr "" + +#: ../../documentation/style.rst:18 +msgid "Documentation should be written with these two answers in mind. Information should be clearly laid out in small sections with plenty of clear examples and precise instructions. You should also try to pre-empt where the user might need to go next in order to ease their journey through the document by providing logical and relevant links to more documents." +msgstr "" + +#: ../../documentation/style.rst:24 +msgid "Administrator Documentation" +msgstr "" + +#: ../../documentation/style.rst:26 +msgid "Funkwhale is quite a technical project and is enjoyed by people who like setting up their own systems. These users can range from experienced server administrators to hobbyists, so administrator documentation should include plenty of technical instructions with an easy-to-read explanation of each step to cover both use-cases." +msgstr "" + +#: ../../documentation/style.rst:32 +msgid "Developer Documentation" +msgstr "" + +#: ../../documentation/style.rst:34 +msgid "Developer documentation should aim to be as technical and readable as possible. Since the reader is likely a developer themselves, providing as much technical detail as possible is the best course of action as it allows them to dive in to the project's internals with more confidence. It is safe to assume they are used to reading more technical work." +msgstr "" diff --git a/docs/locales/gettext/documentation/tools.pot b/docs/locales/gettext/documentation/tools.pot new file mode 100644 index 000000000..26fff8259 --- /dev/null +++ b/docs/locales/gettext/documentation/tools.pot @@ -0,0 +1,85 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../documentation/tools.rst:2 +msgid "Documentation Requirements" +msgstr "" + +#: ../../documentation/tools.rst:4 +msgid "Funkwhale's documentation is written using :doc:`reStructuredText <restructured>` and is built using `Sphinx <http://www.sphinx-doc.org/>`_." +msgstr "" + +#: ../../documentation/tools.rst:8 +msgid "Text Editor" +msgstr "" + +#: ../../documentation/tools.rst:10 +msgid "As reStructuredText is a writing standard, any text editor can be used to modify documents depending on preference. User-friendly programs such as `Retext <https://github.com/retext-project/retext>`_ are good options for those just getting started with writing reStructuredText. Many other editors such as `Vim <https://www.vim.org/>`_, `Emacs <https://www.gnu.org/software/emacs/>`_, `VS Code <https://code.visualstudio.com/>`_, and `Atom <https://atom.io/>`_ have addons which can help with syntax highlighting and live previewing." +msgstr "" + +#: ../../documentation/tools.rst:17 +msgid "Sphinx" +msgstr "" + +#: ../../documentation/tools.rst:19 +msgid "Sphinx is used to generate a static site based on the ``.rst`` files in the ``docs`` directory. When writing documents, it can be useful to build the site to see how your changes will look in production. To do this:" +msgstr "" + +#: ../../documentation/tools.rst:22 +msgid "Install Sphinx using `pip <https://pypi.org/project/pip/>`_" +msgstr "" + +#: ../../documentation/tools.rst:28 +msgid "Navigate to your local ``funkwhale/docs`` directory" +msgstr "" + +#: ../../documentation/tools.rst:34 +msgid "Use the make file to build the site" +msgstr "" + +#: ../../documentation/tools.rst:40 +msgid "Sphinx will generate the site in your ``funkwhale/docs/_build`` directory unless otherwise stated" +msgstr "" + +#: ../../documentation/tools.rst:42 +msgid "Once you have generated a local copy of the site, you can open it up by opening the index.html file in ``funkwhale/docs/_build``." +msgstr "" + +#: ../../documentation/tools.rst:47 +msgid "If you are familiar with `Docker <https://www.docker.com/>`_ and `docker-compose <https://docs.docker.com/compose/>`_, you can also hack on the documentation via a single command: ``docker-compose -f dev.yml up docs``." +msgstr "" + +#: ../../documentation/tools.rst:50 +msgid "This will make the documentation available at http://0.0.0.0:8001, with live-reloading enabled, so any change made in the ``.rst`` files will be reflected immediately in your browser." +msgstr "" + +#: ../../documentation/tools.rst:55 +msgid "Git" +msgstr "" + +#: ../../documentation/tools.rst:57 +msgid "In order to work on files on your computer, you will need to install `git <https://git-scm.com/>`_ for your operating system. Git is used to push and pull files to and from the Funkwhale repository and track changes made to documents/code alike." +msgstr "" + +#: ../../documentation/tools.rst:62 +msgid "Gitlab" +msgstr "" + +#: ../../documentation/tools.rst:64 +msgid "If you are only making minor changes to a document or don't wish to install anything, you can use `Gitlab's <https://dev.funkwhale.audio>`_ built-in IDE. Once you have made an account and :doc:`created a pull request <creating>`, you can click on the \"Open in Web IDE\" button to open up a fully-fledged editor in your web browser." +msgstr "" diff --git a/docs/locales/gettext/federation/index.pot b/docs/locales/gettext/federation/index.pot new file mode 100644 index 000000000..add9de6a0 --- /dev/null +++ b/docs/locales/gettext/federation/index.pot @@ -0,0 +1,609 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../federation/index.rst:2 +msgid "Funkwhale Federation" +msgstr "" + +#: ../../federation/index.rst:4 +msgid "This documentation section is more technical, and targets people who want to understand how Funkwhale's federation works." +msgstr "" + +#: ../../federation/index.rst:9 +msgid "Technologies and standards" +msgstr "" + +#: ../../federation/index.rst:11 +msgid "Funkwhale's federation is built on top of the following technologies:" +msgstr "" + +#: ../../federation/index.rst:13 +msgid "`ActivityPub`_ as the high-level federation protocol" +msgstr "" + +#: ../../federation/index.rst:14 +msgid "`HTTP Signatures`_ as the primary mean to authenticate messages" +msgstr "" + +#: ../../federation/index.rst:15 +msgid "`Webfinger`_ to easily retrieve resources using human-friendly names" +msgstr "" + +#: ../../federation/index.rst:16 +msgid "`ActivityStreams`_ and `ActivityStreams vocabulary`_ as the mean to structure messages" +msgstr "" + +#: ../../federation/index.rst:18 +msgid "Support for the following is planned but not implemented-yet:" +msgstr "" + +#: ../../federation/index.rst:20 +msgid "`JSON-LD signatures`_ as an alternate mean to authenticate messages" +msgstr "" + +#: ../../federation/index.rst:30 +msgid "Philosophy" +msgstr "" + +#: ../../federation/index.rst:32 +msgid "Our goal is to stick to the specifications as much as possible, to ensure compatibility with existing applications such as Mastodon, Peertube, Plume, Pleroma or PixelFed." +msgstr "" + +#: ../../federation/index.rst:35 +msgid "However, this is not always possible for all our use cases. The ActivityPub and ActivityStreams specifications are really high-level and do not always fit our use cases. For such cases, we will use an ad-hoc solution, and document it here." +msgstr "" + +#: ../../federation/index.rst:39 +msgid "There are plenty of projects built using ActivityPub, and our goal is not to support all the existing activities. Instead, we want to support activities and objects that make sense for Funkwhale use cases, such as follows or likes." +msgstr "" + +#: ../../federation/index.rst:43 +msgid "If you think this document is not accurate or find evidence that Funkwhale is not behaving according to the behaviour documented here, please file a bug on our issue tracker, as we consider this a bug." +msgstr "" + +#: ../../federation/index.rst:48 +#: ../../federation/index.rst:157 +#: ../../federation/index.rst:211 +#: ../../federation/index.rst:266 +#: ../../federation/index.rst:310 +#: ../../federation/index.rst:361 +#: ../../federation/index.rst:445 +msgid "Internal logic" +msgstr "" + +#: ../../federation/index.rst:50 +msgid "This section is relevant if you're interested in how we handle things internally in our application code." +msgstr "" + +#: ../../federation/index.rst:54 +msgid "Database schema" +msgstr "" + +#: ../../federation/index.rst:56 +msgid "As much as possible, we try to map our internal model and database schema to ActivityPub entities, as this makes things easier to deal with." +msgstr "" + +#: ../../federation/index.rst:59 +msgid "We store received activities payload directly in the database before we attempt to process or deliver them. Storing the activities unlock some interesting use cases, such as debugging federation issues, replaying deliveries, or reprocess historical activities that were not supported before." +msgstr "" + +#: ../../federation/index.rst:64 +msgid "Each local user is bound to an ``Actor``. Remote and local actors share the same database table and all federated entities (such as uploads) are linked to an ``Actor`` and not to a user. This means that, internally, in general, there is no distinction between local and remote users." +msgstr "" + +#: ../../federation/index.rst:69 +#: ../../federation/index.rst:98 +msgid "Links:" +msgstr "" + +#: ../../federation/index.rst:71 +msgid "`Federation models <https://dev.funkwhale.audio/funkwhale/funkwhale/blob/develop/api/funkwhale_api/federation/models.py>`_" +msgstr "" + +#: ../../federation/index.rst:75 +msgid "Activity creation and delivery" +msgstr "" + +#: ../../federation/index.rst:77 +msgid "When a local actor is making an action that should trigger an ``Activity``, which roughly is equivalent to posting an activity to an outbox, we create an object, with the proper payload and store it in our ``Activity`` table. We then trigger two kind of deliveries:" +msgstr "" + +#: ../../federation/index.rst:81 +msgid "A delivery to local recipients: for each local recipient, we create an ``InboxItem``, linked to the activity. A local actor's feed is then made of all the available inbox items, which can also have a read/unread status" +msgstr "" + +#: ../../federation/index.rst:84 +msgid "A delivery to remote recipients: we collect all inboxes and shared inbox urls from remote recipients, and create a ``Delivery`` object in our database, linked to the initial activity and the inbox or shared inbox url. This ``Delivery`` object is then used by our worker to post the activity content to the url." +msgstr "" + +#: ../../federation/index.rst:88 +msgid "Receiving an activity from a remote actor in a local inbox is basically the same, but we skip step 2." +msgstr "" + +#: ../../federation/index.rst:90 +msgid "Funkwhale does not support all activities, and we have a basic routing logic to handle specific activities, and discard unsupported ones." +msgstr "" + +#: ../../federation/index.rst:93 +msgid "If a delivered activity matches one of our routes, a dedicated handler is called, which can trigger additional logic. For instance, if we receive a :ref:`activity-create` activity for an :ref:`object-audio` object, our handler will persist the proper data in our local ``Upload`` table, retrieve the audio cover, etc." +msgstr "" + +#: ../../federation/index.rst:100 +msgid "`Routing logic for activities <https://dev.funkwhale.audio/funkwhale/funkwhale/blob/develop/api/funkwhale_api/federation/routes.py>`_" +msgstr "" + +#: ../../federation/index.rst:101 +msgid "`Delivery logic for activities <https://dev.funkwhale.audio/funkwhale/funkwhale/blob/develop/api/funkwhale_api/federation/tasks.py>`_" +msgstr "" + +#: ../../federation/index.rst:107 +msgid "Service actor" +msgstr "" + +#: ../../federation/index.rst:109 +msgid "In some situations, we will send messages or authenticate our fetches using what we call the service actor. A service actor is an ActivityPub actor object that acts on behalf of a Funkwhale server." +msgstr "" + +#: ../../federation/index.rst:113 +msgid "The actor id usually looks like ``https://yourdomain.com/federation/actors/service``, but the reliable way to determine it is to query the nodeinfo endpoint and use the value available in the ``metadata > actorId`` field." +msgstr "" + +#: ../../federation/index.rst:117 +msgid "Funkwhale generally considers that the service actor has authority to send activities associated with any object on the same domain. For instance, the service actor could send a :ref:`activity-delete` activity linked to another users' library on the same domain." +msgstr "" + +#: ../../federation/index.rst:123 +msgid "Supported activities" +msgstr "" + +#: ../../federation/index.rst:128 +msgid "Follow" +msgstr "" + +#: ../../federation/index.rst:131 +#: ../../federation/index.rst:181 +#: ../../federation/index.rst:236 +#: ../../federation/index.rst:282 +#: ../../federation/index.rst:332 +#: ../../federation/index.rst:384 +msgid "Supported on" +msgstr "" + +#: ../../federation/index.rst:133 +#: ../../federation/index.rst:387 +msgid ":ref:`object-Library` objects" +msgstr "" + +#: ../../federation/index.rst:136 +msgid "Example of library follow" +msgstr "" + +#: ../../federation/index.rst:153 +msgid "In this example, Alice is following the :ref:`object-library` described in ``object``, which is owned by Bob." +msgstr "" + +#: ../../federation/index.rst:159 +msgid "When a follow is received on a :ref:`object-Library`, Funkwhale will behave differently depending on the visibility of the library:" +msgstr "" + +#: ../../federation/index.rst:162 +msgid "Automatic accept, when the library is public: a notification is sent to the library owner, and an :ref:`activity-accept` is sent automatically to the follow actor." +msgstr "" + +#: ../../federation/index.rst:163 +msgid "Manual accept, in all other cases: a notification is sent to the library owner. After manual approval from the owner, an :ref:`activity-accept` is sent to the follow actor." +msgstr "" + +#: ../../federation/index.rst:165 +msgid "Funkwhale uses library follow status to grant access to the follow actor. If a library is not public and an actor does not have an approved follow, library content will be inaccessible to the actor." +msgstr "" + +#: ../../federation/index.rst:170 +#: ../../federation/index.rst:225 +#: ../../federation/index.rst:271 +#: ../../federation/index.rst:318 +#: ../../federation/index.rst:368 +#: ../../federation/index.rst:451 +msgid "Checks" +msgstr "" + +#: ../../federation/index.rst:172 +msgid "Before handling the activity, Funkwhale will ensure the library's owner is the activity recipient." +msgstr "" + +#: ../../federation/index.rst:178 +msgid "Accept" +msgstr "" + +#: ../../federation/index.rst:183 +#: ../../federation/index.rst:238 +msgid ":ref:`activity-follow` objects" +msgstr "" + +#: ../../federation/index.rst:186 +#: ../../federation/index.rst:241 +#: ../../federation/index.rst:287 +#: ../../federation/index.rst:338 +#: ../../federation/index.rst:469 +#: ../../federation/index.rst:499 +#: ../../federation/index.rst:541 +#: ../../federation/index.rst:581 +#: ../../federation/index.rst:626 +msgid "Example" +msgstr "" + +#: ../../federation/index.rst:208 +msgid "In this example, Bob accepts Alice's follow." +msgstr "" + +#: ../../federation/index.rst:213 +msgid "When an :ref:`activity-accept` is received with a :ref:`activity-follow` object, the corresponding follow is marked as accepted in the database." +msgstr "" + +#: ../../federation/index.rst:216 +msgid "For library follows, this means that the actor will receive future activities occurring within this library, such as :ref:`activity-create` :ref:`object-audio`, :ref:`activity-delete` :ref:`object-audio` or :ref:`activity-delete` :ref:`object-library`" +msgstr "" + +#: ../../federation/index.rst:220 +msgid "The follow actor will also be able to browse the library pages and download the library's audio files. Have a look at :ref:`library-access` for more details." +msgstr "" + +#: ../../federation/index.rst:227 +msgid "Before handling the activity, Funkwhale will ensure the accept comes from the library's owner." +msgstr "" + +#: ../../federation/index.rst:233 +msgid "Undo" +msgstr "" + +#: ../../federation/index.rst:263 +msgid "In this example, Alice is notifying Bob she's undoing her follow." +msgstr "" + +#: ../../federation/index.rst:268 +msgid "When an undo is received, the corresponding follow is deleted from the database." +msgstr "" + +#: ../../federation/index.rst:273 +msgid "Before handling the activity, Funkwhale will ensure the undo actor is the follow actor." +msgstr "" + +#: ../../federation/index.rst:279 +msgid "Create" +msgstr "" + +#: ../../federation/index.rst:284 +#: ../../federation/index.rst:386 +msgid ":ref:`object-audio` objects" +msgstr "" + +#: ../../federation/index.rst:307 +msgid "Refer to :ref:`object-audio` to see the structure of the ``object`` attribute." +msgstr "" + +#: ../../federation/index.rst:312 +msgid "When a :ref:`activity-create` is received with an :ref:`object-audio` object, Funkwhale will persist a local upload and bind it to the proper library and track. If no local track match the audio metadata, a track is created using the ``metadata`` attribute from the :ref:`object-audio` object." +msgstr "" + +#: ../../federation/index.rst:320 +msgid "Before handling the activity, Funkwhale will ensure the activity actor and the audio library's actor are the same." +msgstr "" + +#: ../../federation/index.rst:323 +msgid "If no local actor follows the audio's library, the activity will be discarded." +msgstr "" + +#: ../../federation/index.rst:329 +msgid "Update" +msgstr "" + +#: ../../federation/index.rst:334 +msgid ":ref:`object-library` objects" +msgstr "" + +#: ../../federation/index.rst:335 +msgid ":ref:`object-track` objects" +msgstr "" + +#: ../../federation/index.rst:358 +msgid "Refer to :ref:`object-library` or :ref:`object-track` to see the structure of the ``object`` attribute." +msgstr "" + +#: ../../federation/index.rst:363 +msgid "When a :ref:`activity-update` is received with a :ref:`object-library` or :ref:`object-track` object, Funkwhale will try to update the local copy of the corresponding object in it's database." +msgstr "" + +#: ../../federation/index.rst:370 +msgid "Checks vary depending of the type of object associated with the update." +msgstr "" + +#: ../../federation/index.rst:372 +msgid "For :ref:`object-library` objects, we ensure the actor sending the message is the owner of the library." +msgstr "" + +#: ../../federation/index.rst:374 +msgid "For musical entities such as :ref:`object-track`, we ensure the actor sending the message matches the :ref:`property-attributedTo` property declared on the local copy on the object, or the :ref:`service-actor`." +msgstr "" + +#: ../../federation/index.rst:381 +msgid "Delete" +msgstr "" + +#: ../../federation/index.rst:390 +msgid "Example (on :ref:`object-Library`)" +msgstr "" + +#: ../../federation/index.rst:412 +msgid "Example (on :ref:`object-audio`)" +msgstr "" + +#: ../../federation/index.rst:437 +msgid "In this example, Bob notifies the followers of their library that 3 objects were deleted." +msgstr "" + +#: ../../federation/index.rst:441 +msgid "For performance reason, when deleting :ref:`object-audio` objects, Funkwhale supports either a list of ids or a single id." +msgstr "" + +#: ../../federation/index.rst:447 +msgid "When a :ref:`activity-delete` is received, the corresponding objects are immediately deleted from the database." +msgstr "" + +#: ../../federation/index.rst:453 +msgid "Before handling deletion, Funkwhale ensures the actor initiating the activity is the owner of the deleted :ref:`object-audio` or :ref:`object-Library`." +msgstr "" + +#: ../../federation/index.rst:457 +msgid "Supported objects" +msgstr "" + +#: ../../federation/index.rst:462 +msgid "Artist" +msgstr "" + +#: ../../federation/index.rst:466 +#: ../../federation/index.rst:496 +#: ../../federation/index.rst:538 +msgid "This object is not standard." +msgstr "" + +#: ../../federation/index.rst:482 +#: ../../federation/index.rst:521 +#: ../../federation/index.rst:559 +#: ../../federation/index.rst:599 +#: ../../federation/index.rst:649 +msgid "Structure" +msgstr "" + +#: ../../federation/index.rst:484 +msgid "**id** (required): a uri identifying the artist over federation" +msgstr "" + +#: ../../federation/index.rst:485 +msgid "**name** (required): a name for the artist" +msgstr "" + +#: ../../federation/index.rst:486 +msgid "**published** (required): the publication date of the artist (on the federation)" +msgstr "" + +#: ../../federation/index.rst:487 +msgid "**musicbrainzId** (optional): the musicbrainz artist id" +msgstr "" + +#: ../../federation/index.rst:492 +msgid "Album" +msgstr "" + +#: ../../federation/index.rst:523 +msgid "**id** (required): a uri identifying the album over federation" +msgstr "" + +#: ../../federation/index.rst:524 +msgid "**name** (required): the title of the album" +msgstr "" + +#: ../../federation/index.rst:525 +msgid "**artists** (required): a list of :ref:`object-artist` objects involved in the album" +msgstr "" + +#: ../../federation/index.rst:526 +#: ../../federation/index.rst:564 +#: ../../federation/index.rst:657 +msgid "**published** (required): the publication date of the entity (on the federation)" +msgstr "" + +#: ../../federation/index.rst:527 +msgid "**released** (optional): the release date of the album" +msgstr "" + +#: ../../federation/index.rst:528 +msgid "**musicbrainzId** (optional): the musicbrainz release id" +msgstr "" + +#: ../../federation/index.rst:529 +msgid "**cover** (optional): a `Link` object representing the album cover" +msgstr "" + +#: ../../federation/index.rst:534 +msgid "Track" +msgstr "" + +#: ../../federation/index.rst:561 +msgid "**id** (required): a uri identifying the track over federation" +msgstr "" + +#: ../../federation/index.rst:562 +msgid "**name** (required): the title of the track" +msgstr "" + +#: ../../federation/index.rst:563 +msgid "**position** (required): the position of the :ref:`object-track` in the album" +msgstr "" + +#: ../../federation/index.rst:565 +msgid "**musicbrainzId** (optional): the musicbrainz recording id" +msgstr "" + +#: ../../federation/index.rst:566 +msgid "**album** (required): the :ref:`object-album` that contains the track" +msgstr "" + +#: ../../federation/index.rst:567 +msgid "**artists** (required): a list of :ref:`object-artist` objects involved in the track (they can differ from the album artists)" +msgstr "" + +#: ../../federation/index.rst:572 +msgid "Library" +msgstr "" + +#: ../../federation/index.rst:576 +msgid "This object is not standard but inherits its behaviour and properties from Actor and Collection." +msgstr "" + +#: ../../federation/index.rst:601 +msgid "**id** (required): a uri identifying the library over federation" +msgstr "" + +#: ../../federation/index.rst:602 +msgid "**actor** (required): the id of the actor managing the library" +msgstr "" + +#: ../../federation/index.rst:603 +msgid "**name** (required): the name of the library" +msgstr "" + +#: ../../federation/index.rst:604 +msgid "**followers** (required): the id of the library's followers collection" +msgstr "" + +#: ../../federation/index.rst:605 +msgid "**totalItems** (required): the number of audio objects available in the library" +msgstr "" + +#: ../../federation/index.rst:606 +msgid "**first** (required): the URL of the first page of the library" +msgstr "" + +#: ../../federation/index.rst:607 +msgid "**last** (required): the URL of the last page of the library" +msgstr "" + +#: ../../federation/index.rst:608 +msgid "**summary** (optional): a description for the library" +msgstr "" + +#: ../../federation/index.rst:612 +msgid "Crawling library pages requires authentication and an approved follow, unless the library is public." +msgstr "" + +#: ../../federation/index.rst:618 +msgid "Audio" +msgstr "" + +#: ../../federation/index.rst:622 +msgid "This object `is specified in ActivityStreams <https://www.w3.org/TR/activitystreams-vocabulary/#dfn-audio>`_, but Funkwhale needs non-standard attributes to handle it." +msgstr "" + +#: ../../federation/index.rst:651 +msgid "**id** (required): a uri identifying the audio over federation" +msgstr "" + +#: ../../federation/index.rst:652 +msgid "**name** (required): a human-friendly title for the audio (We concatenate track name, album title and artist name)" +msgstr "" + +#: ../../federation/index.rst:653 +msgid "**size** (required, non-standard): the size of the audio, in bytes" +msgstr "" + +#: ../../federation/index.rst:654 +msgid "**bitrate** (required, non-standard): the bitrate of the audio, in bytes/s" +msgstr "" + +#: ../../federation/index.rst:655 +msgid "**duration** (required): the duration of the audio, in seconds" +msgstr "" + +#: ../../federation/index.rst:656 +msgid "**library** (required, non-standard): the id of the :ref:`object-Library` object that contains the object" +msgstr "" + +#: ../../federation/index.rst:658 +msgid "**updated** (required): the last update date of the entity (on the federation)" +msgstr "" + +#: ../../federation/index.rst:659 +msgid "**url** (required): a ``Link`` object with an ``audio/`` mediaType where the audio file is downloadable" +msgstr "" + +#: ../../federation/index.rst:660 +msgid "**track** (required, non-standard): the :ref:`object-track` the :ref:`object-audio` is bound to" +msgstr "" + +#: ../../federation/index.rst:664 +msgid "Accessing the Audio file via its url requires authentication and an approved follow on the containing library, unless the library is public." +msgstr "" + +#: ../../federation/index.rst:671 +msgid "Audio fetching on restricted libraries" +msgstr "" + +#: ../../federation/index.rst:673 +msgid ":ref:`object-library` and :ref:`object-audio` url objects may require additional authentication to be accessed." +msgstr "" + +#: ../../federation/index.rst:676 +msgid "For :ref:`object-library` objects:" +msgstr "" + +#: ../../federation/index.rst:678 +msgid "If the library is public, library pages can be accessed without restriction" +msgstr "" + +#: ../../federation/index.rst:679 +msgid "Otherwise, the HTTP request must be signed by an actor with an approved follow on the library" +msgstr "" + +#: ../../federation/index.rst:682 +msgid "For :ref:`object-audio` url objects:" +msgstr "" + +#: ../../federation/index.rst:684 +msgid "If the audio's library is public, audio file can be accessed without restriction" +msgstr "" + +#: ../../federation/index.rst:685 +msgid "Otherwise, the HTTP request must be signed by an actor with an approved follow on the audio's library" +msgstr "" + +#: ../../federation/index.rst:689 +msgid "Properties" +msgstr "" + +#: ../../federation/index.rst:694 +msgid "attributedTo" +msgstr "" + +#: ../../federation/index.rst:696 +msgid "Funkwhale will generally use the ``attributedTo`` property to communicate who is responsible for a given object. When an object has the ``attributedTo`` attribute, the associated actor has the permission to :ref:`activity-update`, :ref:`activity-delete` or more generally apply any kind of activity on the object." +msgstr "" + +#: ../../federation/index.rst:701 +msgid "In addition, Funkwhale consider all the objects of a domain as attributed to its corresponding :ref:`service-actor`." +msgstr "" diff --git a/docs/locales/gettext/glossary.pot b/docs/locales/gettext/glossary.pot new file mode 100644 index 000000000..3fe218b6c --- /dev/null +++ b/docs/locales/gettext/glossary.pot @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../glossary.md:1 +msgid "Glossary of terms" +msgstr "" + +#: ../../glossary.md:3 +msgid "Funkwhale glossary" +msgstr "" + +#: ../../glossary.md:0 +msgid "Pod" +msgstr "" + +#: ../../glossary.md:7 +msgid "A pod is an instance of Funkwhale running on a server. Pods can communicate with one another across the {term}`Fediverse`." +msgstr "" + +#: ../../glossary.md:12 +msgid "Channel glossary" +msgstr "" + +#: ../../glossary.md:0 +msgid "Fediverse" +msgstr "" + +#: ../../glossary.md:16 +msgid "A term used to refer to a collection of federated (interconnected) servers. These servers run software that enables users to publish and host their own content." +msgstr "" + +#: ../../glossary.md:3 +msgid "Podcatcher" +msgstr "" + +#: ../../glossary.md:19 +msgid "A podcatcher is a piece of software that can read podcast feeds. Podcatchers enable listeners to follow and listen to podcast content." +msgstr "" + +#: ../../glossary.md:24 +msgid "Plugin glossary" +msgstr "" + +#: ../../glossary.md:0 +msgid "Plugin" +msgstr "" + +#: ../../glossary.md:28 +msgid "A plugin is a piece of software that extends the functionality of another piece of software." +msgstr "" + +#: ../../glossary.md:3 +msgid "Scrobbling" +msgstr "" + +#: ../../glossary.md:31 +msgid "Scrobbling is the act of recording listen data. Services use this information to keep track of listening preferences and recommend music." +msgstr "" diff --git a/docs/locales/gettext/index.pot b/docs/locales/gettext/index.pot new file mode 100644 index 000000000..af0d76faa --- /dev/null +++ b/docs/locales/gettext/index.pot @@ -0,0 +1,97 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../index.md:7 +msgid "User documentation" +msgstr "" + +#: ../../index.md:29 +msgid "Admin documentation" +msgstr "" + +#: ../../index.md:41 +msgid "Moderator documentation" +msgstr "" + +#: ../../index.md:58 +msgid "Developer documentation" +msgstr "" + +#: ../../index.md:70 +msgid "Contributor documentation" +msgstr "" + +#: ../../index.md:82 +msgid "Reference" +msgstr "" + +#: ../../index.md:93 +msgid "Changes" +msgstr "" + +#: ../../index.md:1 +msgid "Welcome to Funkwhale's documentation" +msgstr "" + +#: ../../index.md:3 +msgid "Funkwhale is a self-hosted audio player and publication platform. It enables users to build libraries of existing content and publish their own." +msgstr "" + +#: ../../index.md:5 +msgid "Funkwhale uses the [ActivityPub protocol](https://www.w3.org/TR/activitypub/) to talk to other apps across the {term}`Fediverse`. Users can share content between {term}`Funkwhale pods <Pod>` or with other Fediverse software." +msgstr "" + +#: ../../index.md:109 +msgid "{fa}`user` Users" +msgstr "" + +#: ../../index.md:112 +msgid "Looking to use Funkwhale for your content? Read through our guides to master the app!" +msgstr "" + +#: ../../index.md:124 +msgid "{fa}`wrench` Admins" +msgstr "" + +#: ../../index.md:127 +msgid "Want to host your own Funkwhale pod? Our admin documentation guides you through the process." +msgstr "" + +#: ../../index.md:138 +msgid "{fa}`shield` Moderators" +msgstr "" + +#: ../../index.md:141 +msgid "Keeping your users safe from harassment and spam or clearing illegal content? Check out our moderator docs." +msgstr "" + +#: ../../index.md:152 +msgid "{fa}`code` Developers" +msgstr "" + +#: ../../index.md:155 +msgid "Want to use Funkwhale's API or help with the project? Our developer docs give you what you need to get started." +msgstr "" + +#: ../../index.md:167 +msgid "{fa}`users` Contributors" +msgstr "" + +#: ../../index.md:170 +msgid "Want to help make Funkwhale even better? Check out these guides for some ideas." +msgstr "" diff --git a/docs/locales/gettext/installation/debian.pot b/docs/locales/gettext/installation/debian.pot new file mode 100644 index 000000000..de548e866 --- /dev/null +++ b/docs/locales/gettext/installation/debian.pot @@ -0,0 +1,355 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../installation/debian.rst:2 +msgid "Debian and Arch Linux installation" +msgstr "" + +#: ../../installation/debian.rst:6 +msgid "This guide targets Debian 10 (Buster), which is the latest version available, as well as Arch Linux." +msgstr "" + +#: ../../installation/debian.rst:9 +msgid "Cache setup (Redis)" +msgstr "" + +#: ../../installation/debian.rst:11 +msgid "Funkwhale requires a cache server:" +msgstr "" + +#: ../../installation/debian.rst:13 +msgid "to make the whole system faster, by caching network requests or database queries;" +msgstr "" + +#: ../../installation/debian.rst:14 +msgid "to handle asynchronous tasks such as music import." +msgstr "" + +#: ../../installation/debian.rst:16 +msgid "On Debian-like distributions, a redis package is available, and you can install it:" +msgstr "" + +#: ../../installation/debian.rst:23 +#: ../../installation/debian.rst:45 +#: ../../installation/debian.rst:244 +msgid "On Arch Linux and its derivatives:" +msgstr "" + +#: ../../installation/debian.rst:29 +msgid "This should be enough to have your redis server set up." +msgstr "" + +#: ../../installation/debian.rst:32 +msgid "Install system dependencies" +msgstr "" + +#: ../../installation/debian.rst:34 +msgid "On Debian-like systems, you can install them using:" +msgstr "" + +#: ../../installation/debian.rst:56 +msgid "External Authentication (LDAP)" +msgstr "" + +#: ../../installation/debian.rst:58 +msgid "LDAP support requires some additional dependencies to enable. On the OS level both ``libldap2-dev`` and ``libsasl2-dev`` are required, and the Python modules ``python-ldap`` and ``python-django-auth-ldap`` must be installed. These dependencies are all included in the ``requirements.*`` files so deploying with those will install these dependencies by default. However, they are not required unless LDAP support is explicitly enabled. See :doc:`../admin/ldap` for more details." +msgstr "" + +#: ../../installation/debian.rst:61 +msgid "Installation structure" +msgstr "" + +#: ../../installation/debian.rst:63 +msgid "All Funkwhale-related files will be located under ``/srv/funkwhale`` apart from database files and a few configuration files. We will also have a dedicated ``funkwhale`` user to launch the processes we need and own those files." +msgstr "" + +#: ../../installation/debian.rst:67 +msgid "You are free to use different values here, just remember to adapt those in the next steps." +msgstr "" + +#: ../../installation/debian.rst:72 +msgid "Create the user and the directory:" +msgstr "" + +#: ../../installation/debian.rst:79 +msgid "Log in as the newly created user from now on:" +msgstr "" + +#: ../../installation/debian.rst:85 +msgid "Now let's setup our directory layout. Here is how it will look like::" +msgstr "" + +#: ../../installation/debian.rst:94 +msgid "Create the aforementioned directories:" +msgstr "" + +#: ../../installation/debian.rst:100 +msgid "The ``virtualenv`` directory is a bit special and will be created separately." +msgstr "" + +#: ../../installation/debian.rst:103 +msgid "Download the latest Funkwhale release" +msgstr "" + +#: ../../installation/debian.rst:105 +msgid "Funkwhale is splitted in two components:" +msgstr "" + +#: ../../installation/debian.rst:107 +msgid "The API, which will handle music storage and user accounts;" +msgstr "" + +#: ../../installation/debian.rst:108 +msgid "The frontend, that will simply connect to the API to interact with its data." +msgstr "" + +#: ../../installation/debian.rst:110 +msgid "Those components are packaged in subsequent releases, such as 0.1, 0.2, etc. You can browse the :doc:`changelog </changelog>` for a list of available releases and pick the one you want to install, usually the latest one should be okay." +msgstr "" + +#: ../../installation/debian.rst:114 +msgid "In this guide, we will assume you want to install the latest version of Funkwhale, which is |version|:" +msgstr "" + +#: ../../installation/debian.rst:116 +msgid "First, we will download the latest api release:" +msgstr "" + +#: ../../installation/debian.rst:126 +msgid "Then we will download the frontend files:" +msgstr "" + +#: ../../installation/debian.rst:137 +msgid "You can also choose to get the code directly from the git repo. In this case, run::" +msgstr "" + +#: ../../installation/debian.rst:146 +msgid "The above clone command uses the stable branch instead of the default develop branch, as stable is stable and more suited for production setups." +msgstr "" + +#: ../../installation/debian.rst:148 +msgid "You'll also need to re-create the folders we make earlier::" +msgstr "" + +#: ../../installation/debian.rst:152 +msgid "You will still need to get the frontend files as specified before, because we're not going to build them." +msgstr "" + +#: ../../installation/debian.rst:156 +msgid "You can leave the ZIP archives in the directory, this will help you know which version you've installed next time you want to upgrade your installation." +msgstr "" + +#: ../../installation/debian.rst:160 +msgid "Install Python dependencies" +msgstr "" + +#: ../../installation/debian.rst:162 +msgid "We use `poetry <https://python-poetry.org/>`_ to manage Python dependencies. Poetry installs packages in a `virtualenv <https://docs.python.org/3/library/venv.html>`_. This prevents collisions with other Python packages on your system. To install poetry, check out `their documentation <https://python-poetry.org/docs/#installation>`_." +msgstr "" + +#: ../../installation/debian.rst:167 +msgid "By default, poetry creates a virtualenv in `{cache-dir}/virtualenvs`. We recommend creating your virtualenv inside your Funkwhale `api` directory. To do this, navigate to the directory and run the :command:`poetry config virtualenvs.in-project` command." +msgstr "" + +#: ../../installation/debian.rst:177 +msgid "Poetry creates a virtualenv in `/srv/funkwhale/api/.venv`." +msgstr "" + +#: ../../installation/debian.rst:180 +msgid "To run Funkwhale commands, you need to activate the virtualenv using poetry. To make copying and pasting from this guide easier, we prefix all commands with :command:`poetry run`. If you use :command:`poetry shell` to enter your virtualenv, make sure you remove :command:`poetry run` from each command." +msgstr "" + +#: ../../installation/debian.rst:186 +msgid "Once you have set up your virtualenv, install the dependencies using :command:`poetry install`." +msgstr "" + +#: ../../installation/debian.rst:195 +msgid "Environment file" +msgstr "" + +#: ../../installation/debian.rst:197 +msgid "You can now start to configure Funkwhale. The main way to achieve that is by adding an environment file that will host settings that are relevant to your installation." +msgstr "" + +#: ../../installation/debian.rst:201 +msgid "Download the sample environment file:" +msgstr "" + +#: ../../installation/debian.rst:209 +msgid "if you used git to get the latest version of the code earlier, you can instead do::" +msgstr "" + +#: ../../installation/debian.rst:214 +msgid "Generate a secret key for Django::" +msgstr "" + +#: ../../installation/debian.rst:218 +msgid "You can then edit the file: the file is heavily commented, and the most relevant configuration options are mentioned at the top of the file." +msgstr "" + +#: ../../installation/debian.rst:226 +msgid "Paste the secret key you generated earlier at the entry ``DJANGO_SECRET_KEY`` and populate the ``DATABASE_URL`` and ``CACHE_URL`` values based on how you configured your PostgreSQL and Redis servers in." +msgstr "" + +#: ../../installation/debian.rst:232 +msgid "Database setup" +msgstr "" + +#: ../../installation/debian.rst:234 +msgid "Funkwhale requires a PostgreSQL database to work properly. Please refer to the `PostgreSQL documentation <https://www.postgresql.org/download/>`_ for installation instructions specific to your os." +msgstr "" + +#: ../../installation/debian.rst:238 +msgid "On Debian-like systems, you would install the database server like this:" +msgstr "" + +#: ../../installation/debian.rst:250 +msgid "On Arch Linux, you'll also need to initialize the database. See `the Arch Linux wiki <https://wiki.archlinux.org/index.php/Postgresql#Initial_configuration>`_." +msgstr "" + +#: ../../installation/debian.rst:252 +msgid "The remaining steps are heavily inspired from `this Digital Ocean guide <https://www.digitalocean.com/community/tutorials/how-to-set-up-django-with-postgres-nginx-and-gunicorn-on-ubuntu-16-04>`_." +msgstr "" + +#: ../../installation/debian.rst:254 +msgid "Open a database shell:" +msgstr "" + +#: ../../installation/debian.rst:260 +msgid "Create the project database and user:" +msgstr "" + +#: ../../installation/debian.rst:270 +msgid "It's important that you use utf-8 encoding for your database, otherwise you'll end up with errors and crashes later on when dealing with music metadata that contains non-ascii chars." +msgstr "" + +#: ../../installation/debian.rst:274 +msgid "Assuming you already have :ref:`created your funkwhale user <create-funkwhale-user>`, you should now be able to open a postgresql shell:" +msgstr "" + +#: ../../installation/debian.rst:281 +msgid "Unless you give a superuser access to the database user, you should also enable some extensions on your database server, as those are required for Funkwhale to work properly:" +msgstr "" + +#: ../../installation/debian.rst:290 +msgid "Now that the database has been created, import the initial database structure using the virtualenv created before:" +msgstr "" + +#: ../../installation/debian.rst:296 +msgid "This creates the required tables and rows." +msgstr "" + +#: ../../installation/debian.rst:300 +msgid "You can safely execute this command any time you want, this will only run unapplied migrations." +msgstr "" + +#: ../../installation/debian.rst:305 +msgid "You may sometimes get the following warning while applying migrations::" +msgstr "" + +#: ../../installation/debian.rst:309 +msgid "This is a warning, not an error, and it can be safely ignored. Never run the ``makemigrations`` command yourself." +msgstr "" + +#: ../../installation/debian.rst:313 +msgid "Create an admin account" +msgstr "" + +#: ../../installation/debian.rst:315 +msgid "Using the virtualenv created before, create your first user account:" +msgstr "" + +#: ../../installation/debian.rst:321 +msgid "If you ever want to change a user's password from the command line, just run:" +msgstr "" + +#: ../../installation/debian.rst:328 +msgid "Collect static files" +msgstr "" + +#: ../../installation/debian.rst:330 +msgid "Static files are the static assets used by the API server (icon PNGs, CSS, etc.). We need to collect them explicitly, so they can be served by the webserver:" +msgstr "" + +#: ../../installation/debian.rst:337 +msgid "This should populate the directory you choose for the ``STATIC_ROOT`` variable in your ``.env`` file." +msgstr "" + +#: ../../installation/debian.rst:341 +msgid "Systemd unit file" +msgstr "" + +#: ../../installation/debian.rst:345 +msgid "All the command lines below should be executed as root." +msgstr "" + +#: ../../installation/debian.rst:347 +msgid "Systemd offers a convenient way to manage your Funkwhale instance if you're not using docker. We'll see how to setup systemd to properly start a Funkwhale instance." +msgstr "" + +#: ../../installation/debian.rst:350 +msgid "First, download the sample unitfiles:" +msgstr "" + +#: ../../installation/debian.rst:359 +msgid "This will download three unitfiles:" +msgstr "" + +#: ../../installation/debian.rst:361 +msgid "``funkwhale-server.service`` to launch the Funkwhale web server;" +msgstr "" + +#: ../../installation/debian.rst:362 +msgid "``funkwhale-worker.service`` to launch the Funkwhale task worker;" +msgstr "" + +#: ../../installation/debian.rst:363 +msgid "``funkwhale-beat.service`` to launch the Funkwhale task beat (this is for recurring tasks);" +msgstr "" + +#: ../../installation/debian.rst:364 +msgid "``funkwhale.target`` to easily stop and start all of the services at once." +msgstr "" + +#: ../../installation/debian.rst:366 +msgid "You can of course review and edit them to suit your deployment scenario if needed, but the defaults should be fine." +msgstr "" + +#: ../../installation/debian.rst:369 +msgid "Once the files are downloaded, reload systemd:" +msgstr "" + +#: ../../installation/debian.rst:375 +msgid "And start the services:" +msgstr "" + +#: ../../installation/debian.rst:381 +msgid "To ensure all Funkwhale processes are started automatically after a reboot, run:" +msgstr "" + +#: ../../installation/debian.rst:389 +msgid "You can check the statuses of all processes like this:" +msgstr "" + +#: ../../installation/debian.rst:396 +msgid "Reverse proxy setup" +msgstr "" + +#: ../../installation/debian.rst:398 +msgid "See :ref:`Reverse proxy <reverse-proxy-setup>`." +msgstr "" diff --git a/docs/locales/gettext/installation/docker.pot b/docs/locales/gettext/installation/docker.pot new file mode 100644 index 000000000..ebcccb10e --- /dev/null +++ b/docs/locales/gettext/installation/docker.pot @@ -0,0 +1,204 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../installation/docker.rst:2 +msgid "Docker installation" +msgstr "" + +#: ../../installation/docker.rst:4 +msgid "Docker is the easiest way to get a Funkwhale instance up and running." +msgstr "" + +#: ../../installation/docker.rst:6 +msgid "We support two types of Docker deployments:" +msgstr "" + +#: ../../installation/docker.rst:8 +msgid ":ref:`Mono-container <docker-mono-container>`: all processes live in the same container (database, nginx, redis, etc.). It's easier to deploy and to integrate with container management systems like Portainer. However, it's not possible to scale this type of deployment on multiple servers." +msgstr "" + +#: ../../installation/docker.rst:9 +msgid ":ref:`Multi-container <docker-multi-container>`: each process lives in a dedicated container. This setup is more involved but also more flexible and scalable." +msgstr "" + +#: ../../installation/docker.rst:13 +#: ../../installation/docker.rst:23 +msgid "The All-In-One-Container or Mono-Container installation is deprecated, don't use it for new installations. For more information, visit our blog: https://blog.funkwhale.audio/deprecation-all-in-one-container.html" +msgstr "" + +#: ../../installation/docker.rst:19 +msgid "Mono-container installation" +msgstr "" + +#: ../../installation/docker.rst:28 +msgid "This installation method was originally contributed by `@thetarkus <https://github.com/thetarkus>`_" +msgstr "" + +#: ../../installation/docker.rst:30 +msgid "These are the installation steps:" +msgstr "" + +#: ../../installation/docker.rst:32 +#: ../../installation/docker.rst:39 +msgid "Install docker" +msgstr "" + +#: ../../installation/docker.rst:33 +#: ../../installation/docker.rst:44 +msgid "Create ``funkwhale`` user" +msgstr "" + +#: ../../installation/docker.rst:34 +#: ../../installation/docker.rst:60 +msgid "Create ``.env`` file" +msgstr "" + +#: ../../installation/docker.rst:35 +#: ../../installation/docker.rst:86 +msgid "Create ``docker-compose.yml`` file" +msgstr "" + +#: ../../installation/docker.rst:36 +#: ../../installation/docker.rst:117 +msgid "Start Funkwhale service" +msgstr "" + +#: ../../installation/docker.rst:41 +msgid "Ensure you have `Docker <https://docs.docker.com/engine/installation/>`_ and `docker-compose <https://docs.docker.com/compose/install/>`_ installed." +msgstr "" + +#: ../../installation/docker.rst:46 +msgid "Create the user and the directory:" +msgstr "" + +#: ../../installation/docker.rst:53 +msgid "Log in as the newly created user from now on:" +msgstr "" + +#: ../../installation/docker.rst:62 +msgid "Create a ``.env`` file to store a few important configuration options:" +msgstr "" + +#: ../../installation/docker.rst:88 +msgid "Create a ``docker-compose.yml`` file to set up the containers:" +msgstr "" + +#: ../../installation/docker.rst:112 +msgid "The version can be changed (after ``funkwhale/all-in-one:``), `select the version <https://hub.docker.com/r/funkwhale/all-in-one/tags>`_ you want to deploy." +msgstr "" + +#: ../../installation/docker.rst:113 +msgid "``PUID`` and ``PGID`` are optional but useful to prevent permission issues with docker volumes" +msgstr "" + +#: ../../installation/docker.rst:114 +msgid "``/path/to/your/music/dir`` should point to a path on your host where music you would like to import is located. You can safely remove the volume if you don't want to import music that way." +msgstr "" + +#: ../../installation/docker.rst:119 +msgid "Start the container:" +msgstr "" + +#: ../../installation/docker.rst:125 +msgid "Your container should start in the background, and your instance be available at ``yourip:5000`` shortly." +msgstr "" + +#: ../../installation/docker.rst:127 +msgid "You will need an admin account to login and manage your account, create one using the following command: ``docker exec -it funkwhale manage createsuperuser``" +msgstr "" + +#: ../../installation/docker.rst:129 +msgid "Useful commands:" +msgstr "" + +#: ../../installation/docker.rst:131 +msgid "You can start and stop your instance using ``docker-compose start`` and ``docker-compose stop``, respectively" +msgstr "" + +#: ../../installation/docker.rst:132 +msgid "You can examine the logs by running ``docker logs -f --tail=50 funkwhale``" +msgstr "" + +#: ../../installation/docker.rst:133 +msgid "To have a better idea of the resource usage of your instance (CPU, memory), run ``docker stats funkwhale``" +msgstr "" + +#: ../../installation/docker.rst:135 +#: ../../installation/docker.rst:218 +msgid "Now, you just need to configure your :ref:`reverse-proxy <reverse-proxy-setup>`. Don't worry, it's quite easy." +msgstr "" + +#: ../../installation/docker.rst:140 +msgid "Multi-container installation" +msgstr "" + +#: ../../installation/docker.rst:142 +msgid "First, ensure you have `Docker <https://docs.docker.com/engine/installation/>`_ and `docker-compose <https://docs.docker.com/compose/install/>`_ installed." +msgstr "" + +#: ../../installation/docker.rst:144 +msgid "Export the `version you want <https://hub.docker.com/r/funkwhale/all-in-one/tags>`_ to deploy (e.g., ``0.21``):" +msgstr "" + +#: ../../installation/docker.rst:150 +msgid "Download the sample docker-compose file:" +msgstr "" + +#: ../../installation/docker.rst:161 +msgid "At this point, the architecture of ``/srv/funkwhale`` should look like that:" +msgstr "" + +#: ../../installation/docker.rst:171 +msgid "Create your env file:" +msgstr "" + +#: ../../installation/docker.rst:181 +msgid "Ensure to edit it to match your needs (this file is heavily commented), in particular ``DJANGO_SECRET_KEY`` and ``FUNKWHALE_HOSTNAME``. You should take a look at the `configuration reference <https://docs.funkwhale.audio/configuration.html#configuration-reference>`_ for more detailed information regarding each setting." +msgstr "" + +#: ../../installation/docker.rst:184 +msgid "Then, you should be able to pull the required images:" +msgstr "" + +#: ../../installation/docker.rst:190 +msgid "Run the database container and the initial migrations:" +msgstr "" + +#: ../../installation/docker.rst:199 +msgid "You may sometimes get the following warning while applying migrations::" +msgstr "" + +#: ../../installation/docker.rst:203 +msgid "This is a warning, not an error, and it can be safely ignored. Never run the ``makemigrations`` command yourself." +msgstr "" + +#: ../../installation/docker.rst:206 +msgid "Create your admin user:" +msgstr "" + +#: ../../installation/docker.rst:212 +msgid "Then launch the whole thing:" +msgstr "" + +#: ../../installation/docker.rst:221 +msgid "About music acquisition" +msgstr "" + +#: ../../installation/docker.rst:223 +msgid "If you want to :doc:`import music located on the server <../admin/importing-music>`, you can put it in the ``data/music`` directory and it will become readable by the importer." +msgstr "" diff --git a/docs/locales/gettext/installation/index.pot b/docs/locales/gettext/installation/index.pot new file mode 100644 index 000000000..4b9ee8ad4 --- /dev/null +++ b/docs/locales/gettext/installation/index.pot @@ -0,0 +1,397 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../installation/index.rst:2 +msgid "Installation" +msgstr "" + +#: ../../installation/index.rst:5 +msgid "Requirements" +msgstr "" + +#: ../../installation/index.rst:7 +msgid "Regardless of your chosen installation method, the following is required to successfully deploy Funkwhale:" +msgstr "" + +#: ../../installation/index.rst:10 +msgid "**A dedicated domain or subdomain**: it is not possible to deploy Funkwhale on a subdirectory of an existing domain." +msgstr "" + +#: ../../installation/index.rst:11 +msgid "**Access to ports 80 and/or 443**: if you cannot serve the Funkwhale web app and API on these ports, federation will not work" +msgstr "" + +#: ../../installation/index.rst:15 +msgid "Because of the federated nature of Funkwhale, **it is strongly recommended not to change the Funkwhale domain after initial deployment**, as it is likely to break your installation." +msgstr "" + +#: ../../installation/index.rst:20 +msgid "Project architecture" +msgstr "" + +#: ../../installation/index.rst:22 +msgid "The project relies on the following components and services to work:" +msgstr "" + +#: ../../installation/index.rst:24 +msgid "A web application server (Python/Django/Gunicorn)" +msgstr "" + +#: ../../installation/index.rst:25 +msgid "A PostgreSQL database to store application data" +msgstr "" + +#: ../../installation/index.rst:26 +msgid "A redis server to store cache and tasks data" +msgstr "" + +#: ../../installation/index.rst:27 +msgid "A celery worker to run asynchronous tasks (such as music import)" +msgstr "" + +#: ../../installation/index.rst:28 +msgid "A celery scheduler to run recurrent tasks" +msgstr "" + +#: ../../installation/index.rst:29 +msgid "A `ntp-synced clock <https://wiki.debian.org/NTP>`_ to ensure federation is working seamlessly" +msgstr "" + +#: ../../installation/index.rst:33 +msgid "The synced clock is needed for federation purpose, to assess the validity of incoming requests." +msgstr "" + +#: ../../installation/index.rst:37 +msgid "Hardware requirements" +msgstr "" + +#: ../../installation/index.rst:39 +msgid "Funkwhale is not especially CPU hungry. On a dockerized instance with 2 CPUs and a few active users, the memory footprint is around 500Mb::" +msgstr "" + +#: ../../installation/index.rst:50 +msgid "Some users have reported running Funkwhale on Raspberry Pis with a memory consumption of less than 350 MiB." +msgstr "" + +#: ../../installation/index.rst:53 +msgid "Thus, Funkwhale should run fine on commodity hardware, small hosting boxes and Raspberry Pi. We lack real-world examples of such deployments, so don't hesitate do give us your feedback (either positive or negative)." +msgstr "" + +#: ../../installation/index.rst:57 +msgid "Check out :doc:`../admin/optimization` for advice on how to tune your instance on small configurations." +msgstr "" + +#: ../../installation/index.rst:61 +msgid "Software requirements" +msgstr "" + +#: ../../installation/index.rst:63 +msgid "Software requirements will vary depending of your installation method. For Docker-based installations, the only requirement will be an Nginx reverse-proxy that will expose your instance to the outside world." +msgstr "" + +#: ../../installation/index.rst:67 +msgid "If you plan to install your Funkwhale instance without Docker, most of the dependencies should be available in your distribution's repositories." +msgstr "" + +#: ../../installation/index.rst:72 +msgid "Funkwhale works only with Python >= 3.5, as we need support for async/await. Older versions of Python are not supported." +msgstr "" + +#: ../../installation/index.rst:76 +msgid "Available installation methods" +msgstr "" + +#: ../../installation/index.rst:78 +msgid "Funkwhale can be installed using one of the following method:" +msgstr "" + +#: ../../installation/index.rst:82 +msgid "The All-In-One-Container or Mono-Container installation is deprecated, don't use it for new installations. For more information, visit our blog: https://blog.funkwhale.audio/deprecation-all-in-one-container.html" +msgstr "" + +#: ../../installation/index.rst:85 +msgid "Quick install, the most straight forward way to get Funkwhale;" +msgstr "" + +#: ../../installation/index.rst:86 +msgid "Mono-container Docker installation;" +msgstr "" + +#: ../../installation/index.rst:87 +msgid "Multi-container Docker installation;" +msgstr "" + +#: ../../installation/index.rst:88 +msgid "Manual Debian and Arch Linux installation;" +msgstr "" + +#: ../../installation/index.rst:89 +msgid "`Ansible role <https://dev.funkwhale.audio/funkwhale/ansible/>`_." +msgstr "" + +#: ../../installation/index.rst:91 +msgid "Further, Funkwhale packages are available for the following platforms:" +msgstr "" + +#: ../../installation/index.rst:93 +msgid "`YunoHost 3 <https://yunohost.org/>`_: https://github.com/YunoHost-Apps/funkwhale_ynh (kindly maintained by `@Jibec <https://github.com/Jibec>`_)" +msgstr "" + +#: ../../installation/index.rst:94 +msgid "ArchLinux (as an AUR package): if you'd rather use a package, check out this alternative installation method on ArchLinux: https://wiki.archlinux.org/index.php/Funkwhale (package and wiki kindly maintained by getzee)" +msgstr "" + +#: ../../installation/index.rst:95 +msgid "`NixOS <https://github.com/mmai/funkwhale-nixos>`_ (kindly maintained by @mmai)" +msgstr "" + +#: ../../installation/index.rst:96 +msgid "`Helm chart <https://gitlab.com/ananace/charts/>`_ to install Funkwhale on Kubernetes (kindly maintained by `@ananace <https://gitlab.com/ananace>`_)" +msgstr "" + +#: ../../installation/index.rst:97 +msgid "`HomelabOS <https://homelabos.com/docs/software/funkwhale/>`_" +msgstr "" + +#: ../../installation/index.rst:100 +msgid "Quick install" +msgstr "" + +#: ../../installation/index.rst:102 +msgid "To install the latest version of Funkwhale on a recent Debian or Ubuntu server, run::" +msgstr "" + +#: ../../installation/index.rst:108 +msgid "This installation script will ask you a few questions, install the required dependencies and set up your instance." +msgstr "" + +#: ../../installation/index.rst:111 +msgid "Additional info:" +msgstr "" + +#: ../../installation/index.rst:113 +msgid "This script is based on our `Ansible role <https://dev.funkwhale.audio/funkwhale/ansible/>`_." +msgstr "" + +#: ../../installation/index.rst:114 +msgid "By default, the script installs Nginx, PostgreSQL, Redis and Funkwhale itself but you can customize the installation procedure if you already have some of these services available on your machine" +msgstr "" + +#: ../../installation/index.rst:115 +msgid "Edit your pod configuration in ``/srv/funkwhale/ansible/playbook.yml`` and apply new configuration with ``sudo /srv/funkwhale/ansible/reconfigure``" +msgstr "" + +#: ../../installation/index.rst:116 +msgid "Upgrade is done using ``sh -c \"$(curl -sSL https://get.funkwhale.audio/upgrade.sh)\"``." +msgstr "" + +#: ../../installation/index.rst:120 +msgid "Alternative installation methods" +msgstr "" + +#: ../../installation/index.rst:130 +msgid "Running Funkwhale on the develop branch" +msgstr "" + +#: ../../installation/index.rst:132 +msgid "Traditional deployments are done using tagged releases. However, you may want to benefit from the latest changes available, or to help detect bugs before they are included in actual releases." +msgstr "" + +#: ../../installation/index.rst:136 +msgid "To do that, you'll need to run your instance on the develop branch, which contains all the unreleased changes and features of the next version." +msgstr "" + +#: ../../installation/index.rst:139 +msgid "Please take into account that the develop branch may be unstable and will contain bugs that may affect the well-being of your instance. If you are comfortable with that, you need to backup at least your database before pulling the latest changes from the develop branch." +msgstr "" + +#: ../../installation/index.rst:144 +msgid "Otherwise, the deployment process is similar to deploying with releases. You simply need to use ``export FUNKWHALE_VERSION=develop`` in the installation and upgrade process instead of a real version number, as we build artifacts on the development branch the same way we do for releases." +msgstr "" + +#: ../../installation/index.rst:149 +msgid "It's also recommended to check out the `develop release notes <https://dev.funkwhale.audio/funkwhale/funkwhale/blob/develop/changes/notes.rst>`_ before upgrading, since you may have to apply manual actions for your instance to continue to work. Such actions are labelled with ``[manual action required]`` in the releases notes." +msgstr "" + +#: ../../installation/index.rst:155 +msgid "Serving only the frontend" +msgstr "" + +#: ../../installation/index.rst:159 +msgid "You do not need to do this if you are deploying using Docker, as frontend files are already included in the docker image." +msgstr "" + +#: ../../installation/index.rst:162 +msgid "You also do not need to do this if you are deploying manually on Debian or Arch, as this is covered by the corresponding documentation already." +msgstr "" + +#: ../../installation/index.rst:166 +msgid "Files for the web frontend are purely static and can simply be downloaded, unzipped and served from any webserver:" +msgstr "" + +#: ../../installation/index.rst:177 +msgid "Reverse proxy configuration" +msgstr "" + +#: ../../installation/index.rst:179 +msgid "In order to make Funkwhale accessible from outside your server and to play nicely with other applications on your machine, you should configure a reverse proxy." +msgstr "" + +#: ../../installation/index.rst:183 +msgid "We offer sample configurations for Nginx, Apache2 and Caddy." +msgstr "" + +#: ../../installation/index.rst:187 +msgid "You can freely adapt the proposed configuration to your own needs, as we cannot cover every use case with a single template, especially when it's related to SSL configuration." +msgstr "" + +#: ../../installation/index.rst:192 +msgid "Nginx" +msgstr "" + +#: ../../installation/index.rst:194 +msgid "Ensure you have a recent version of nginx on your server. On a Debian-based system use apt:" +msgstr "" + +#: ../../installation/index.rst:202 +msgid "On Arch Linux and its derivatives:" +msgstr "" + +#: ../../installation/index.rst:208 +msgid "To avoid configuration errors at this level, we will generate an nginx configuration using your .env file. This will ensure your reverse-proxy configuration always matches the application configuration and makes upgrade/maintenance easier." +msgstr "" + +#: ../../installation/index.rst:215 +msgid "The following commands need to be run as superuser." +msgstr "" + +#: ../../installation/index.rst:217 +msgid "On docker deployments, run the following commands:" +msgstr "" + +#: ../../installation/index.rst:237 +msgid "On non-docker deployments, run the following commands:" +msgstr "" + +#: ../../installation/index.rst:259 +msgid "The resulting file should not contain any variables such as ``${FUNKWHALE_HOSTNAME}``. You can check that using this command::" +msgstr "" + +#: ../../installation/index.rst:264 +msgid "Finally, enable the resulting configuration:" +msgstr "" + +#: ../../installation/index.rst:272 +msgid "If you plan to use in-place import, ensure the alias value in the ``_protected/music`` location matches your MUSIC_DIRECTORY_SERVE_PATH env var." +msgstr "" + +#: ../../installation/index.rst:276 +msgid "Finally, check that the configuration is valid with ``nginx -t`` then reload your nginx server with ``sudo systemctl reload nginx``." +msgstr "" + +#: ../../installation/index.rst:279 +msgid "Music (and other static) files are never served by the app itself, but by the reverse proxy. This is needed because a webserver is way more efficient at serving files than a Python process." +msgstr "" + +#: ../../installation/index.rst:283 +msgid "However, we do want to ensure users have the right to access music files, and it can't be done at the proxy's level. To tackle this issue, `we use nginx's internal directive <http://nginx.org/en/docs/http/ngx_http_core_module.html#internal>`_." +msgstr "" + +#: ../../installation/index.rst:287 +msgid "When the API receives a request on its music serving endpoint, it will check that the user making the request can access the file. Then, it will return an empty response with a ``X-Accel-Redirect`` header. This header will contain the path to the file to serve to the user, and will be picked by nginx, but never sent back to the client." +msgstr "" + +#: ../../installation/index.rst:293 +msgid "Using this technique, we can ensure music files are covered by the authentication and permission policy of your instance, while remaining as performant as possible." +msgstr "" + +#: ../../installation/index.rst:298 +msgid "Apache2" +msgstr "" + +#: ../../installation/index.rst:302 +msgid "These instructions are for Debian only. For Arch Linux please refer to the `Arch Linux wiki <https://wiki.archlinux.org/index.php/Apache>`_." +msgstr "" + +#: ../../installation/index.rst:305 +msgid "Ensure you have a recent version of Apache2 installed on your server. You'll also need the following dependencies::" +msgstr "" + +#: ../../installation/index.rst:310 +msgid "Add the following to your ``.env`` file::" +msgstr "" + +#: ../../installation/index.rst:314 +msgid "Then restart Funkwhale. This is needed to ensure Funkwhale provides proper headers for media file serving." +msgstr "" + +#: ../../installation/index.rst:317 +msgid "Then, download our sample virtualhost file:" +msgstr "" + +#: ../../installation/index.rst:324 +msgid "Tweak the configuration file according to your setup, especially the TLS configuration. Otherwise, defaults should work if you followed the installation guide." +msgstr "" + +#: ../../installation/index.rst:328 +msgid "Check the configuration with ``apache2ctl configtest`` and once you're done, load the new configuration with ``service apache2 restart``." +msgstr "" + +#: ../../installation/index.rst:333 +msgid "Caddy" +msgstr "" + +#: ../../installation/index.rst:335 +msgid "We currently do not support a Caddy-only setup, but you can `help develop it <https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/1384>`_!" +msgstr "" + +#: ../../installation/index.rst:338 +msgid "To employ Caddy as a reverse proxy in front of your docker containers (either mono- or multi-container setup), use the following Caddyfile configuration:" +msgstr "" + +#: ../../installation/index.rst:342 +msgid "Caddy v2::" +msgstr "" + +#: ../../installation/index.rst:348 +msgid "Caddy v1::" +msgstr "" + +#: ../../installation/index.rst:359 +msgid "HTTPS configuration" +msgstr "" + +#: ../../installation/index.rst:361 +msgid "After configuring the reverse proxy, you need a SSL certificate to enable HTTPS on your server (unless you use Caddy, which handles them automatically)." +msgstr "" + +#: ../../installation/index.rst:365 +msgid "The default reverse proxy configuration assumes you have those available at ``/etc/letsencrypt/live/${FUNKWHALE_HOSTNAME}/``, which is the path used by `certbot <https://certbot.eff.org/docs/>`_ when generating certificates with Let's Encrypt." +msgstr "" + +#: ../../installation/index.rst:368 +msgid "If you already have a certificate you would like to use, simply update the reverse proxy configuration and replace the following values with the proper paths: - For nginx: ``ssl_certificate`` and ``ssl_certificate_key``; - For Apache2: ``SSLCertificateFile`` and ``SSLCertificateKeyFile``." +msgstr "" + +#: ../../installation/index.rst:373 +msgid "If you don't have one, comment or remove the lines starting with ``ssl_certificate`` and ``ssl_certificate_key`` for nginx, and ``SSLCertificateFile`` and ``SSLCertificateKeyFile`` for Apache2. You can then proceed to generate a certificate, as shown below. These instructions are provided by `certbot <https://certbot.eff.org/instructions>`:" +msgstr "" + +#: ../../installation/index.rst:389 +msgid "This creates a valid certificate and edit the nginx or Apache2 configuration to use the new certificate. The certificate will be automatically renewed when they expire." +msgstr "" diff --git a/docs/locales/gettext/installation/non_amd64_architectures.pot b/docs/locales/gettext/installation/non_amd64_architectures.pot new file mode 100644 index 000000000..cf55d634f --- /dev/null +++ b/docs/locales/gettext/installation/non_amd64_architectures.pot @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../installation/non_amd64_architectures.rst:2 +msgid "Running Funkwhale on non amd64 architectures" +msgstr "" + +#: ../../installation/non_amd64_architectures.rst:4 +msgid "Funkwhale should be runnable on any architecture assuming Funkwhale installation dependencies are satisfied." +msgstr "" + +#: ../../installation/non_amd64_architectures.rst:6 +msgid "On non-docker deployments (e.g. when deploying on debian), this should be completely transparent." +msgstr "" + +#: ../../installation/non_amd64_architectures.rst:8 +msgid "On docker deployments, you will need to build Funkwhale's image yourself, because we don't provide pre-built multi-arch images on the Docker Hub yet. The build process itself only requires git, Docker and is described below." +msgstr "" + +#: ../../installation/non_amd64_architectures.rst:13 +msgid "Building the mono-process Docker image (funkwhale/funkwhale)" +msgstr "" + +#: ../../installation/non_amd64_architectures.rst:15 +msgid "This image is intended to be used in conjunction with our :ref:`Multi-container installation guide <docker-multi-container>`." +msgstr "" + +#: ../../installation/non_amd64_architectures.rst:23 +#: ../../installation/non_amd64_architectures.rst:61 +msgid "Replace by develop for building a development branch image." +msgstr "" + +#: ../../installation/non_amd64_architectures.rst:44 +msgid "Building the mono-container Docker image (funkwhale/all-in-one)" +msgstr "" + +#: ../../installation/non_amd64_architectures.rst:48 +msgid "The All-In-One-Container or Mono-Container installation is deprecated, don't use it for new installations. For more information, visit our blog: https://blog.funkwhale.audio/deprecation-all-in-one-container.html" +msgstr "" + +#: ../../installation/non_amd64_architectures.rst:51 +msgid "This image is intended to be used in conjunction with our :ref:`Mono-container installation guide <docker-mono-container>`. guide." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/allow_listing/add_domain.pot b/docs/locales/gettext/moderator_documentation/allow_listing/add_domain.pot new file mode 100644 index 000000000..1e4be6f40 --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/allow_listing/add_domain.pot @@ -0,0 +1,124 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/allow_listing/add_domain.md:1 +msgid "Add a domain to your allow-list" +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:3 +msgid "If you have allow-listing enabled, you need to add a domain to your allow-list to interact with it. You can add new domains in two ways:" +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:10 +msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus." +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:13 +msgid "Add a new domain" +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:15 +msgid "To add a domain that is not currently in your domains list:" +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:0 +#: ../../moderator_documentation/allow_listing/add_domain.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:19 +#: ../../moderator_documentation/allow_listing/add_domain.md:31 +#: ../../moderator_documentation/allow_listing/add_domain.md:49 +#: ../../moderator_documentation/allow_listing/add_domain.md:61 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:20 +#: ../../moderator_documentation/allow_listing/add_domain.md:50 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:21 +#: ../../moderator_documentation/allow_listing/add_domain.md:33 +#: ../../moderator_documentation/allow_listing/add_domain.md:51 +#: ../../moderator_documentation/allow_listing/add_domain.md:63 +msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens." +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:22 +#: ../../moderator_documentation/allow_listing/add_domain.md:34 +#: ../../moderator_documentation/allow_listing/add_domain.md:52 +#: ../../moderator_documentation/allow_listing/add_domain.md:64 +msgid "Select {guilabel}`Domains` at the top of the page. The {guilabel}`Domains` page opens. You can see a list of known domains on this page." +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:23 +#: ../../moderator_documentation/allow_listing/add_domain.md:35 +msgid "Enter the URL of the Fediverse server you want to add in the {guilabel}`Add a domain` field." +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:24 +#: ../../moderator_documentation/allow_listing/add_domain.md:36 +msgid "Check ({fa}`check-square`) the checkbox labeled {guilabel}`Add to allow-list`." +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:25 +#: ../../moderator_documentation/allow_listing/add_domain.md:37 +msgid "Select {guilabel}`Add`." +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:0 +#: ../../moderator_documentation/allow_listing/add_domain.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:32 +#: ../../moderator_documentation/allow_listing/add_domain.md:62 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:41 +msgid "That's it! You've added the domain to your pod's allow-list." +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:43 +msgid "Add a known domain" +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:45 +msgid "To add a domain that is already in your pod's domain list:" +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:53 +#: ../../moderator_documentation/allow_listing/add_domain.md:65 +msgid "Check ({fa}`check-square`) the checkbox next to the domain(s) you want to add to the allow-list." +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:54 +#: ../../moderator_documentation/allow_listing/add_domain.md:66 +msgid "Select {guilabel}`Add to allow-list` in the {guilabel}`Actions` dropdown." +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:55 +#: ../../moderator_documentation/allow_listing/add_domain.md:67 +msgid "Select {guilabel}`Go`. A green tick ({fa}`check`) appears next to the domain(s)" +msgstr "" + +#: ../../moderator_documentation/allow_listing/add_domain.md:71 +msgid "You're done! You've added the domain to your pod's allow-list." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/allow_listing/index.pot b/docs/locales/gettext/moderator_documentation/allow_listing/index.pot new file mode 100644 index 000000000..bf1a3967c --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/allow_listing/index.pot @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/allow_listing/index.md:7 +#: ../../moderator_documentation/allow_listing/index.md:7 +msgid "Manage your pod's allow-list" +msgstr "" + +#: ../../moderator_documentation/allow_listing/index.md:1 +msgid "Allow-listing" +msgstr "" + +#: ../../moderator_documentation/allow_listing/index.md:3 +msgid "By default, Funkwhale communicates with all reachable pods on the {term}`Fediverse`. If you want to lock down which pods you interact with, your pod admin can enable __allow-listing__. With this enabled, only pods on your allow-list can interact with your pod." +msgstr "" + +#: ../../moderator_documentation/allow_listing/index.md:5 +msgid "If you didn't use allow-listing before, you can remove all content from pods not on your list. Check out our guide on [purging content](../domains/purge_domain.md) to remove this content." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/allow_listing/remove_domain.pot b/docs/locales/gettext/moderator_documentation/allow_listing/remove_domain.pot new file mode 100644 index 000000000..2a8a2b5d7 --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/allow_listing/remove_domain.pot @@ -0,0 +1,83 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/allow_listing/remove_domain.md:1 +msgid "Remove a domain from your allow-list" +msgstr "" + +#: ../../moderator_documentation/allow_listing/remove_domain.md:3 +msgid "You can remove a domain from your {term}`pod's <Pod>` allow-list to stop communicating with it." +msgstr "" + +#: ../../moderator_documentation/allow_listing/remove_domain.md:6 +msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus." +msgstr "" + +#: ../../moderator_documentation/allow_listing/remove_domain.md:9 +msgid "To remove a domain from your allow-list:" +msgstr "" + +#: ../../moderator_documentation/allow_listing/remove_domain.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/allow_listing/remove_domain.md:13 +#: ../../moderator_documentation/allow_listing/remove_domain.md:25 +msgid "Log in to your pod." +msgstr "" + +#: ../../moderator_documentation/allow_listing/remove_domain.md:14 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/allow_listing/remove_domain.md:15 +#: ../../moderator_documentation/allow_listing/remove_domain.md:27 +msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens." +msgstr "" + +#: ../../moderator_documentation/allow_listing/remove_domain.md:16 +#: ../../moderator_documentation/allow_listing/remove_domain.md:28 +msgid "Select {guilabel}`Domains` at the top of the page. The {guilabel}`Domains` page opens. You can see a list of known domains on this page." +msgstr "" + +#: ../../moderator_documentation/allow_listing/remove_domain.md:17 +#: ../../moderator_documentation/allow_listing/remove_domain.md:29 +msgid "Check ({fa}`check-square`) the checkbox next to the domain(s) you want to add to the allow-list." +msgstr "" + +#: ../../moderator_documentation/allow_listing/remove_domain.md:18 +#: ../../moderator_documentation/allow_listing/remove_domain.md:30 +msgid "Select {guilabel}`Remove from allow-list` in the {guilabel}`Actions` dropdown." +msgstr "" + +#: ../../moderator_documentation/allow_listing/remove_domain.md:19 +#: ../../moderator_documentation/allow_listing/remove_domain.md:31 +msgid "Select {guilabel}`Go`." +msgstr "" + +#: ../../moderator_documentation/allow_listing/remove_domain.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/allow_listing/remove_domain.md:26 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/allow_listing/remove_domain.md:35 +msgid "You're done! You've removed the domain from your pod's allow-list." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/content/delete_content.pot b/docs/locales/gettext/moderator_documentation/content/delete_content.pot new file mode 100644 index 000000000..6667b5399 --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/content/delete_content.pot @@ -0,0 +1,197 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/content/delete_content.md:1 +msgid "Delete content from your pod" +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:4 +msgid "Deleting content from your pod deletes the files from the server. Deleting objects like channels and libraries deletes all associated content. This action is irreversible." +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:7 +msgid "Moderators can delete content from their {term}`pod` if required. Use this feature to handle content that violates your pod's rules." +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:10 +msgid "{guilabel}`Moderation` – provides access to the administration menu." +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:11 +msgid "{guilabel}`Library` – provides access to the library menu." +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:14 +msgid "There are two ways to delete content:" +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:20 +msgid "Delete individual objects" +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:22 +msgid "If you want to delete a specific object:" +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:0 +#: ../../moderator_documentation/content/delete_content.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:26 +#: ../../moderator_documentation/content/delete_content.md:46 +#: ../../moderator_documentation/content/delete_content.md:72 +#: ../../moderator_documentation/content/delete_content.md:93 +msgid "Log in to your pod." +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:27 +#: ../../moderator_documentation/content/delete_content.md:73 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:28 +#: ../../moderator_documentation/content/delete_content.md:48 +#: ../../moderator_documentation/content/delete_content.md:74 +#: ../../moderator_documentation/content/delete_content.md:95 +msgid "Select {guilabel}`Library`. The {guilabel}`Edits` page opens." +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:29 +#: ../../moderator_documentation/content/delete_content.md:49 +#: ../../moderator_documentation/content/delete_content.md:75 +#: ../../moderator_documentation/content/delete_content.md:96 +msgid "Select the type of content you want to delete from the top of the page:" +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:30 +#: ../../moderator_documentation/content/delete_content.md:50 +#: ../../moderator_documentation/content/delete_content.md:76 +#: ../../moderator_documentation/content/delete_content.md:97 +msgid "{guilabel}`Channels`" +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:31 +#: ../../moderator_documentation/content/delete_content.md:51 +#: ../../moderator_documentation/content/delete_content.md:77 +#: ../../moderator_documentation/content/delete_content.md:98 +msgid "{guilabel}`Artists`" +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:32 +#: ../../moderator_documentation/content/delete_content.md:52 +#: ../../moderator_documentation/content/delete_content.md:78 +#: ../../moderator_documentation/content/delete_content.md:99 +msgid "{guilabel}`Albums`" +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:33 +#: ../../moderator_documentation/content/delete_content.md:53 +#: ../../moderator_documentation/content/delete_content.md:79 +#: ../../moderator_documentation/content/delete_content.md:100 +msgid "{guilabel}`Tracks`" +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:34 +#: ../../moderator_documentation/content/delete_content.md:54 +#: ../../moderator_documentation/content/delete_content.md:80 +#: ../../moderator_documentation/content/delete_content.md:101 +msgid "{guilabel}`Libraries`" +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:35 +#: ../../moderator_documentation/content/delete_content.md:55 +#: ../../moderator_documentation/content/delete_content.md:81 +#: ../../moderator_documentation/content/delete_content.md:102 +msgid "{guilabel}`Uploads`" +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:36 +#: ../../moderator_documentation/content/delete_content.md:56 +#: ../../moderator_documentation/content/delete_content.md:82 +#: ../../moderator_documentation/content/delete_content.md:103 +msgid "{guilabel}`Tags`" +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:37 +#: ../../moderator_documentation/content/delete_content.md:57 +#: ../../moderator_documentation/content/delete_content.md:83 +#: ../../moderator_documentation/content/delete_content.md:104 +msgid "Use the filters on the content page to find the object you want to delete." +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:38 +#: ../../moderator_documentation/content/delete_content.md:58 +msgid "Select the object to go to its moderation page." +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:39 +#: ../../moderator_documentation/content/delete_content.md:59 +msgid "Select {guilabel}`Delete`. A {guilabel}`Delete this {object}` warning appears." +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:40 +#: ../../moderator_documentation/content/delete_content.md:60 +msgid "Select {guilabel}`Delete`." +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:0 +#: ../../moderator_documentation/content/delete_content.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:47 +#: ../../moderator_documentation/content/delete_content.md:94 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:64 +msgid "That's it! You've deleted the object." +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:66 +msgid "Delete objects in bulk" +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:68 +msgid "To delete several items at once:" +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:84 +#: ../../moderator_documentation/content/delete_content.md:105 +msgid "Select the checkbox ({fa}`square`) next to the objects you want to delete. Selected objects show a tick ({fa}`check-square`)." +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:85 +#: ../../moderator_documentation/content/delete_content.md:106 +msgid "Select {guilabel}`Delete` in the {guilabel}`Actions` dropdown." +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:86 +#: ../../moderator_documentation/content/delete_content.md:107 +msgid "Select {guilabel}`Go`. A {guilabel}`Do you want to launch delete on {count} items` warning appears." +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:87 +#: ../../moderator_documentation/content/delete_content.md:108 +msgid "Select {guilabel}`Launch`." +msgstr "" + +#: ../../moderator_documentation/content/delete_content.md:112 +msgid "You're done! You've deleted the selected objects from your pod." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/content/handle_edits.pot b/docs/locales/gettext/moderator_documentation/content/handle_edits.pot new file mode 100644 index 000000000..2b386d178 --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/content/handle_edits.pot @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/content/handle_edits.md:1 +msgid "Handle edits" +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:4 +msgid "Users can edit content in their own libraries. Moderators don't need to approve these edits. The edits appear in the __Edits__ queue to give admins and moderators a full timeline of changes." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:7 +msgid "Users can suggest metadata edits on objects they can access. When a user suggests an edit, it's sent to the __Edits__ queue for review. Moderators and pod admins can accept or reject these edits." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:10 +msgid "{guilabel}`Moderation` – provides access to the administration menu." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:11 +msgid "{guilabel}`Library` – provides access to the library menu." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:14 +msgid "Each edit object contains the following information:" +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:16 +msgid "A {guilabel}`Modification` ID – the unique ID of the modification. Select this to show the modification in context with the edited object." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:17 +msgid "A timestamp of when the user suggested the edit." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:18 +msgid "The status of the edit." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:19 +msgid "The {guilabel}`Field` that the user edited." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:20 +msgid "The {guilabel}`Old value` that the user edited." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:21 +msgid "The {guilabel}`New value` that the user entered." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:22 +msgid "The user who suggested the edit." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:24 +msgid "To review suggested edits:" +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:28 +#: ../../moderator_documentation/content/handle_edits.md:40 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:29 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:30 +#: ../../moderator_documentation/content/handle_edits.md:42 +msgid "Select {guilabel}`Library`. The {guilabel}`Edits` page opens. The {guilabel}`Library edits` section displays a list of unresolved edits." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:31 +#: ../../moderator_documentation/content/handle_edits.md:43 +msgid "Review the edit and select on of the following options:" +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:32 +#: ../../moderator_documentation/content/handle_edits.md:44 +msgid "{guilabel}`Approve` – approve the edit and apply it to the object." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:33 +#: ../../moderator_documentation/content/handle_edits.md:45 +msgid "{guilabel}`Reject` – reject the edit and leave the object in its current state." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:34 +#: ../../moderator_documentation/content/handle_edits.md:46 +msgid "{guilabel}`Delete` – delete the edit suggestion without taking further action. The object remains in its current state." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:41 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/content/handle_edits.md:50 +msgid "That's it! You've handled the edit request. You can use the filters on this page to search for historical requests." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/content/index.pot b/docs/locales/gettext/moderator_documentation/content/index.pot new file mode 100644 index 000000000..3d1c3d24c --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/content/index.pot @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/content/index.md:5 +#: ../../moderator_documentation/content/index.md:5 +msgid "Manage your pod's content" +msgstr "" + +#: ../../moderator_documentation/content/index.md:1 +msgid "Moderate content on your pod" +msgstr "" + +#: ../../moderator_documentation/content/index.md:3 +msgid "If you have the __Library__ permission, you can change content on your pod. Use this permission to hide copyrighted content and remove offensive material." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/content/library_visibility.pot b/docs/locales/gettext/moderator_documentation/content/library_visibility.pot new file mode 100644 index 000000000..d82d59d08 --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/content/library_visibility.pot @@ -0,0 +1,101 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/content/library_visibility.md:1 +msgid "Change the visibility of a library" +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:4 +msgid "You can only change the visibility of libraries stored on your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:7 +msgid "If a user has put copyrighted material in a public library, you can change the visibility of the library. This lets the user keep the content and protects your pod from legal issues." +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:10 +msgid "{guilabel}`Moderation` – provides access to the administration menu." +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:11 +msgid "{guilabel}`Library` – provides access to the library menu." +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:14 +msgid "To change the visibility of a library:" +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:18 +#: ../../moderator_documentation/content/library_visibility.md:32 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:19 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:20 +#: ../../moderator_documentation/content/library_visibility.md:34 +msgid "Select {guilabel}`Library`. The {guilabel}`Edits` page opens." +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:21 +#: ../../moderator_documentation/content/library_visibility.md:35 +msgid "Select {guilabel}`Libraries` at the top of the page. The {guilabel}`Libraries` page opens." +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:22 +#: ../../moderator_documentation/content/library_visibility.md:36 +msgid "Select the library you want to update. The library's moderation page opens." +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:23 +#: ../../moderator_documentation/content/library_visibility.md:37 +msgid "Select one of the following options from the {guilabel}`Visibility` dropdown menu:" +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:24 +#: ../../moderator_documentation/content/library_visibility.md:38 +msgid "{guilabel}`Private` – makes the library visible only to the owner and anyone they have shared it with." +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:25 +#: ../../moderator_documentation/content/library_visibility.md:39 +msgid "{guilabel}`Instance` – makes the library visible only to users who have an account on your pod." +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:26 +#: ../../moderator_documentation/content/library_visibility.md:40 +msgid "{guilabel}`Everyone` – makes the library visible to users across all pods." +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:33 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/content/library_visibility.md:44 +msgid "That's it! You've updated the library's visibility. You should contact the user informing them of the action." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/domains/add_domain.pot b/docs/locales/gettext/moderator_documentation/domains/add_domain.pot new file mode 100644 index 000000000..0c6b2e3e1 --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/domains/add_domain.pot @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/domains/add_domain.md:1 +msgid "Add a domain to your pod's domain list" +msgstr "" + +#: ../../moderator_documentation/domains/add_domain.md:3 +msgid "Funkwhale records the domains of other {term}`Fediverse` servers when users interact with them. Once a domain is in your domains list, you can [add moderation rules](add_rules.md) to it." +msgstr "" + +#: ../../moderator_documentation/domains/add_domain.md:6 +msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus." +msgstr "" + +#: ../../moderator_documentation/domains/add_domain.md:9 +msgid "You can also add domains to this list at any time to create rules before users interact with them. To do this:" +msgstr "" + +#: ../../moderator_documentation/domains/add_domain.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/domains/add_domain.md:13 +#: ../../moderator_documentation/domains/add_domain.md:24 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/domains/add_domain.md:14 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/domains/add_domain.md:15 +#: ../../moderator_documentation/domains/add_domain.md:26 +msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens." +msgstr "" + +#: ../../moderator_documentation/domains/add_domain.md:16 +#: ../../moderator_documentation/domains/add_domain.md:27 +msgid "Select {guilabel}`Domains` at the top of the page. The {guilabel}`Domains` page opens. You can see a list of known domains on this page." +msgstr "" + +#: ../../moderator_documentation/domains/add_domain.md:17 +#: ../../moderator_documentation/domains/add_domain.md:28 +msgid "Enter the URL of the Fediverse server you want to add in the {guilabel}`Add a domain` field." +msgstr "" + +#: ../../moderator_documentation/domains/add_domain.md:18 +#: ../../moderator_documentation/domains/add_domain.md:29 +msgid "Select {guilabel}`Add` to add the domain. The domain moderation page opens." +msgstr "" + +#: ../../moderator_documentation/domains/add_domain.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/domains/add_domain.md:25 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the page to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/domains/add_domain.md:33 +msgid "That's it! The domain is now in your domains list. You can now add moderation rules to this domain." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/domains/add_rule.pot b/docs/locales/gettext/moderator_documentation/domains/add_rule.pot new file mode 100644 index 000000000..e151c842e --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/domains/add_rule.pot @@ -0,0 +1,107 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/domains/add_rule.md:1 +msgid "Add a moderation rule" +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:4 +msgid "Purging a domain's data removes all objects and caches associated to that domain. This impacts users who have objects from these domains in their libraries." +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:7 +msgid "Add moderation rules to domains to control how they can interact with your {term}`pod`. Moderation rules enable you to restrict content from a domain showing on your pod." +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:10 +msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus." +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:13 +msgid "To add a moderation rule to a domain:" +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:17 +#: ../../moderator_documentation/domains/add_rule.md:33 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:18 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:19 +#: ../../moderator_documentation/domains/add_rule.md:35 +msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens." +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:20 +#: ../../moderator_documentation/domains/add_rule.md:36 +msgid "Select {guilabel}`Domains` at the top of the page. The {guilabel}`Domains` page opens. You can see a list of known domains on this page." +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:21 +#: ../../moderator_documentation/domains/add_rule.md:37 +msgid "Select the domain you want to apply the rule to. The domain's moderation page opens." +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:22 +#: ../../moderator_documentation/domains/add_rule.md:38 +msgid "Select {guilabel}`Add a moderation policy`. The moderation policy form appears." +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:23 +#: ../../moderator_documentation/domains/add_rule.md:39 +msgid "Enter the {guilabel}`Reason` you are applying the rule. Depending on your pod's configuration, users may be able to see this." +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:24 +#: ../../moderator_documentation/domains/add_rule.md:40 +msgid "Choose your moderation rule:" +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:25 +#: ../../moderator_documentation/domains/add_rule.md:41 +msgid "{guilabel}`Block everything` – purge all content from the domain and block all content." +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:26 +#: ../../moderator_documentation/domains/add_rule.md:42 +msgid "{guilabel}`Reject media` – only reject media files such as audio files, avatars, and album art." +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:27 +#: ../../moderator_documentation/domains/add_rule.md:43 +msgid "Select {guilabel}`Create` to save your rule." +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:34 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/domains/add_rule.md:47 +msgid "That's all there is to it! You've applied your moderation rule. The rule takes effect as soon as you create it." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/domains/delete_rule.pot b/docs/locales/gettext/moderator_documentation/domains/delete_rule.pot new file mode 100644 index 000000000..45bcc422b --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/domains/delete_rule.pot @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/domains/delete_rule.md:1 +msgid "Delete a moderation rule" +msgstr "" + +#: ../../moderator_documentation/domains/delete_rule.md:3 +msgid "If you no longer need a moderation rule, you can delete it completely. This allows the other server to interact with your pod normally." +msgstr "" + +#: ../../moderator_documentation/domains/delete_rule.md:6 +msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus." +msgstr "" + +#: ../../moderator_documentation/domains/delete_rule.md:9 +msgid "To delete an existing moderation rule:" +msgstr "" + +#: ../../moderator_documentation/domains/delete_rule.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/domains/delete_rule.md:13 +#: ../../moderator_documentation/domains/delete_rule.md:26 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/domains/delete_rule.md:14 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/domains/delete_rule.md:15 +#: ../../moderator_documentation/domains/delete_rule.md:28 +msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens." +msgstr "" + +#: ../../moderator_documentation/domains/delete_rule.md:16 +#: ../../moderator_documentation/domains/delete_rule.md:29 +msgid "Select {guilabel}`Domains` at the top of the page. The {guilabel}`Domains` page opens. You can see a list of known domains on this page." +msgstr "" + +#: ../../moderator_documentation/domains/delete_rule.md:17 +#: ../../moderator_documentation/domains/delete_rule.md:30 +msgid "Select the domain with the moderation rule you want to edit. The domain's moderation page opens." +msgstr "" + +#: ../../moderator_documentation/domains/delete_rule.md:18 +#: ../../moderator_documentation/domains/delete_rule.md:31 +msgid "Select {guilabel}`Edit` under the {guilabel}`This domain is subject to specific moderation rules` header. The moderation policy form opens." +msgstr "" + +#: ../../moderator_documentation/domains/delete_rule.md:19 +#: ../../moderator_documentation/domains/delete_rule.md:32 +msgid "Select {guilabel}`Delete`. A {guilabel}`Delete this moderation rule?` warning appears." +msgstr "" + +#: ../../moderator_documentation/domains/delete_rule.md:20 +#: ../../moderator_documentation/domains/delete_rule.md:33 +msgid "Select {guilabel}`Delete moderation rule`." +msgstr "" + +#: ../../moderator_documentation/domains/delete_rule.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/domains/delete_rule.md:27 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/domains/delete_rule.md:37 +msgid "That's it! You've deleted your moderation rule. Content from the domain will no longer get blocked." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/domains/edit_rule.pot b/docs/locales/gettext/moderator_documentation/domains/edit_rule.pot new file mode 100644 index 000000000..abcc0cacb --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/domains/edit_rule.pot @@ -0,0 +1,117 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/domains/edit_rule.md:1 +msgid "Edit a moderation rule" +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:4 +msgid "Purging a domain's data removes all objects and caches associated to that domain. This impacts users who have objects from these domains in their libraries." +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:7 +msgid "You can change a moderation rule on a domain at any time." +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:10 +msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus." +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:13 +msgid "To update an existing moderation rule:" +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:17 +#: ../../moderator_documentation/domains/edit_rule.md:35 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:18 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:19 +#: ../../moderator_documentation/domains/edit_rule.md:37 +msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens." +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:20 +#: ../../moderator_documentation/domains/edit_rule.md:38 +msgid "Select {guilabel}`Domains` at the top of the page. The {guilabel}`Domains` page opens. You can see a list of known domains on this page." +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:21 +#: ../../moderator_documentation/domains/edit_rule.md:39 +msgid "Select the domain with the moderation rule you want to edit. The domain's moderation page opens." +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:22 +#: ../../moderator_documentation/domains/edit_rule.md:40 +msgid "Select {guilabel}`Edit` under the {guilabel}`This domain is subject to specific moderation rules` header. The moderation policy form opens." +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:23 +#: ../../moderator_documentation/domains/edit_rule.md:41 +msgid "__Optional__ – Edit the following settings:" +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:24 +#: ../../moderator_documentation/domains/edit_rule.md:42 +msgid "{guilabel}`Enabled` – toggle this switch to enable or disable the rule without deleting it." +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:25 +#: ../../moderator_documentation/domains/edit_rule.md:43 +msgid "{guilabel}`Reason` – update the reason for the moderation rule." +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:26 +#: ../../moderator_documentation/domains/edit_rule.md:44 +msgid "__Optional__ – Update your moderation rule:" +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:27 +#: ../../moderator_documentation/domains/edit_rule.md:45 +msgid "{guilabel}`Block everything` – purge all content from this domain and block all content." +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:28 +#: ../../moderator_documentation/domains/edit_rule.md:46 +msgid "{guilabel}`Reject media` – only reject media files such as audio files, avatars, and album art." +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:29 +#: ../../moderator_documentation/domains/edit_rule.md:47 +msgid "Select {guilabel}`Update` to save your rule." +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:36 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/domains/edit_rule.md:51 +msgid "You're done! The changes to the rule take effect as soon as you update it." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/domains/index.pot b/docs/locales/gettext/moderator_documentation/domains/index.pot new file mode 100644 index 000000000..e4a4c666b --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/domains/index.pot @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/domains/index.md:5 +#: ../../moderator_documentation/domains/index.md:5 +msgid "Manage external domains" +msgstr "" + +#: ../../moderator_documentation/domains/index.md:16 +#: ../../moderator_documentation/domains/index.md:16 +msgid "Manage moderation rules" +msgstr "" + +#: ../../moderator_documentation/domains/index.md:1 +msgid "Moderate external domains" +msgstr "" + +#: ../../moderator_documentation/domains/index.md:3 +msgid "You can add moderation rules to control how your {term}`pod` interacts with other domains. Use these rules to control access to content and interaction with users on other pods." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/domains/purge_domain.pot b/docs/locales/gettext/moderator_documentation/domains/purge_domain.pot new file mode 100644 index 000000000..5bceec2ff --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/domains/purge_domain.pot @@ -0,0 +1,92 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/domains/purge_domain.md:1 +msgid "Purge domain data" +msgstr "" + +#: ../../moderator_documentation/domains/purge_domain.md:4 +msgid "Purging a domain's data removes all objects and caches associated to that domain. This impacts users who have objects from these domains in their libraries." +msgstr "" + +#: ../../moderator_documentation/domains/purge_domain.md:7 +msgid "When users follow content from another domain that content is visible on your {term}`pod`. If a domain hosts illegal or offensive content you can purge the content associated with it." +msgstr "" + +#: ../../moderator_documentation/domains/purge_domain.md:10 +msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus." +msgstr "" + +#: ../../moderator_documentation/domains/purge_domain.md:13 +msgid "To purge content from a domain:" +msgstr "" + +#: ../../moderator_documentation/domains/purge_domain.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/domains/purge_domain.md:17 +#: ../../moderator_documentation/domains/purge_domain.md:30 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/domains/purge_domain.md:18 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/domains/purge_domain.md:19 +#: ../../moderator_documentation/domains/purge_domain.md:32 +msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens." +msgstr "" + +#: ../../moderator_documentation/domains/purge_domain.md:20 +#: ../../moderator_documentation/domains/purge_domain.md:33 +msgid "Select {guilabel}`Domains` at the top of the page. The {guilabel}`Domains` page opens. You can see a list of known domains on this page." +msgstr "" + +#: ../../moderator_documentation/domains/purge_domain.md:21 +#: ../../moderator_documentation/domains/purge_domain.md:34 +msgid "Select the checkbox ({fa}`square`) next to the domain(s) you want to purge. Selected domains show a tick ({fa}`check-square`)." +msgstr "" + +#: ../../moderator_documentation/domains/purge_domain.md:22 +#: ../../moderator_documentation/domains/purge_domain.md:35 +msgid "Select {guilabel}`Purge` in the {guilabel}`Actions` dropdown." +msgstr "" + +#: ../../moderator_documentation/domains/purge_domain.md:23 +#: ../../moderator_documentation/domains/purge_domain.md:36 +msgid "Select {guilabel}`Go`. A {guilabel}`Do you want to launch purge on {count} items` warning appears." +msgstr "" + +#: ../../moderator_documentation/domains/purge_domain.md:24 +#: ../../moderator_documentation/domains/purge_domain.md:37 +msgid "Select {guilabel}`Launch`." +msgstr "" + +#: ../../moderator_documentation/domains/purge_domain.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/domains/purge_domain.md:31 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/domains/purge_domain.md:41 +msgid "You're done! Your pod clears all the content associated with the selected domains." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/external_users/add_rule.pot b/docs/locales/gettext/moderator_documentation/external_users/add_rule.pot new file mode 100644 index 000000000..a1fdfd65b --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/external_users/add_rule.pot @@ -0,0 +1,107 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/external_users/add_rule.md:1 +msgid "Add a moderation rule" +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:4 +msgid "Purging a user's data removes all objects and caches associated to that user. This impacts users who have objects from these users in their libraries." +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:7 +msgid "Add moderation rules to users to control how they can interact with your {term}`pod`. Moderation rules enable you to restrict content from a user showing on your pod." +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:10 +msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus." +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:13 +msgid "To add a moderation rule to a user:" +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:17 +#: ../../moderator_documentation/external_users/add_rule.md:33 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:18 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:19 +#: ../../moderator_documentation/external_users/add_rule.md:35 +msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens." +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:20 +#: ../../moderator_documentation/external_users/add_rule.md:36 +msgid "Select {guilabel}`Accounts` at the top of the page. The {guilabel}`Accounts` page opens. You can see a list of known accounts on this page." +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:21 +#: ../../moderator_documentation/external_users/add_rule.md:37 +msgid "Select the account you want to apply the rule to. The account's moderation page opens." +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:22 +#: ../../moderator_documentation/external_users/add_rule.md:38 +msgid "Select {guilabel}`Add a moderation policy`. The moderation policy form appears." +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:23 +#: ../../moderator_documentation/external_users/add_rule.md:39 +msgid "Enter the {guilabel}`Reason` you are applying the rule. Depending on your pod's configuration, users may be able to see this." +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:24 +#: ../../moderator_documentation/external_users/add_rule.md:40 +msgid "Choose your moderation rule:" +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:25 +#: ../../moderator_documentation/external_users/add_rule.md:41 +msgid "{guilabel}`Block everything` – purge all content from the user and block all content." +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:26 +#: ../../moderator_documentation/external_users/add_rule.md:42 +msgid "{guilabel}`Reject media` – only reject media files such as audio files, avatars, and album art." +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:27 +#: ../../moderator_documentation/external_users/add_rule.md:43 +msgid "Select {guilabel}`Create` to save your rule." +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:34 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/external_users/add_rule.md:47 +msgid "That's all there is to it! You've applied your moderation rule. The rule takes effect as soon as you create it." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/external_users/delete_rule.pot b/docs/locales/gettext/moderator_documentation/external_users/delete_rule.pot new file mode 100644 index 000000000..a74fa01ed --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/external_users/delete_rule.pot @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/external_users/delete_rule.md:1 +msgid "Delete a moderation rule" +msgstr "" + +#: ../../moderator_documentation/external_users/delete_rule.md:3 +msgid "If you no longer need a moderation rule, you can delete it completely. This allows the user to interact with your pod normally." +msgstr "" + +#: ../../moderator_documentation/external_users/delete_rule.md:6 +msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus." +msgstr "" + +#: ../../moderator_documentation/external_users/delete_rule.md:9 +msgid "To delete an existing moderation rule:" +msgstr "" + +#: ../../moderator_documentation/external_users/delete_rule.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/external_users/delete_rule.md:13 +#: ../../moderator_documentation/external_users/delete_rule.md:26 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/external_users/delete_rule.md:14 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/external_users/delete_rule.md:15 +#: ../../moderator_documentation/external_users/delete_rule.md:28 +msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens." +msgstr "" + +#: ../../moderator_documentation/external_users/delete_rule.md:16 +#: ../../moderator_documentation/external_users/delete_rule.md:29 +msgid "Select {guilabel}`Users` at the top of the page. The {guilabel}`Users` page opens. You can see a list of known users on this page." +msgstr "" + +#: ../../moderator_documentation/external_users/delete_rule.md:17 +#: ../../moderator_documentation/external_users/delete_rule.md:30 +msgid "Select the user with the moderation rule you want to edit. The user's moderation page opens." +msgstr "" + +#: ../../moderator_documentation/external_users/delete_rule.md:18 +#: ../../moderator_documentation/external_users/delete_rule.md:31 +msgid "Select {guilabel}`Edit` under the {guilabel}`This user is subject to specific moderation rules` header. The moderation policy form opens." +msgstr "" + +#: ../../moderator_documentation/external_users/delete_rule.md:19 +#: ../../moderator_documentation/external_users/delete_rule.md:32 +msgid "Select {guilabel}`Delete`. A {guilabel}`Delete this moderation rule?` warning appears." +msgstr "" + +#: ../../moderator_documentation/external_users/delete_rule.md:20 +#: ../../moderator_documentation/external_users/delete_rule.md:33 +msgid "Select {guilabel}`Delete moderation rule`." +msgstr "" + +#: ../../moderator_documentation/external_users/delete_rule.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/external_users/delete_rule.md:27 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/external_users/delete_rule.md:37 +msgid "That's it! You've deleted your moderation rule. Content from the user will no longer get blocked." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/external_users/edit_rule.pot b/docs/locales/gettext/moderator_documentation/external_users/edit_rule.pot new file mode 100644 index 000000000..105c9757a --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/external_users/edit_rule.pot @@ -0,0 +1,117 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/external_users/edit_rule.md:1 +msgid "Edit a moderation rule" +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:4 +msgid "Purging a user's data removes all objects and caches associated to that user. This impacts users who have objects from these users in their libraries." +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:7 +msgid "You can change a moderation rule on a user at any time." +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:10 +msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus." +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:13 +msgid "To update an existing moderation rule:" +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:17 +#: ../../moderator_documentation/external_users/edit_rule.md:35 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:18 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:19 +#: ../../moderator_documentation/external_users/edit_rule.md:37 +msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens." +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:20 +#: ../../moderator_documentation/external_users/edit_rule.md:38 +msgid "Select {guilabel}`Users` at the top of the page. The {guilabel}`Users` page opens. You can see a list of known users on this page." +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:21 +#: ../../moderator_documentation/external_users/edit_rule.md:39 +msgid "Select the user with the moderation rule you want to edit. The user's moderation page opens." +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:22 +#: ../../moderator_documentation/external_users/edit_rule.md:40 +msgid "Select {guilabel}`Edit` under the {guilabel}`This user is subject to specific moderation rules` header. The moderation policy form opens." +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:23 +#: ../../moderator_documentation/external_users/edit_rule.md:41 +msgid "__Optional__ – Edit the following settings:" +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:24 +#: ../../moderator_documentation/external_users/edit_rule.md:42 +msgid "{guilabel}`Enabled` – toggle this switch to enable or disable the rule without deleting it." +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:25 +#: ../../moderator_documentation/external_users/edit_rule.md:43 +msgid "{guilabel}`Reason` – update the reason for the moderation rule." +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:26 +#: ../../moderator_documentation/external_users/edit_rule.md:44 +msgid "__Optional__ – Update your moderation rule:" +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:27 +#: ../../moderator_documentation/external_users/edit_rule.md:45 +msgid "{guilabel}`Block everything` – purge all content from this user and block all content." +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:28 +#: ../../moderator_documentation/external_users/edit_rule.md:46 +msgid "{guilabel}`Reject media` – only reject media files such as audio files, avatars, and album art." +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:29 +#: ../../moderator_documentation/external_users/edit_rule.md:47 +msgid "Select {guilabel}`Update` to save your rule." +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:36 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/external_users/edit_rule.md:51 +msgid "You're done! The changes to the rule take effect as soon as you update it." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/external_users/index.pot b/docs/locales/gettext/moderator_documentation/external_users/index.pot new file mode 100644 index 000000000..63e6d1774 --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/external_users/index.pot @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/external_users/index.md:5 +#: ../../moderator_documentation/external_users/index.md:5 +msgid "Manage external users" +msgstr "" + +#: ../../moderator_documentation/external_users/index.md:15 +#: ../../moderator_documentation/external_users/index.md:15 +msgid "Manage moderation rules" +msgstr "" + +#: ../../moderator_documentation/external_users/index.md:1 +msgid "Moderate external users" +msgstr "" + +#: ../../moderator_documentation/external_users/index.md:3 +msgid "You can add moderation rules to control how external users can interact with your {term}`pod`. This lets you filter users from other pods without applying rules to their whole [domain](../domains/index.md)." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/external_users/purge_users.pot b/docs/locales/gettext/moderator_documentation/external_users/purge_users.pot new file mode 100644 index 000000000..418b5e90c --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/external_users/purge_users.pot @@ -0,0 +1,92 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/external_users/purge_users.md:1 +msgid "Purge user data" +msgstr "" + +#: ../../moderator_documentation/external_users/purge_users.md:4 +msgid "Purging a user's data removes all objects and caches associated to that user. This impacts users who have objects from these users in their libraries." +msgstr "" + +#: ../../moderator_documentation/external_users/purge_users.md:7 +msgid "When users follow users from another domain their content is visible on your {term}`pod`. If a user posts illegal or offensive content you can purge the content associated with them." +msgstr "" + +#: ../../moderator_documentation/external_users/purge_users.md:10 +msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus." +msgstr "" + +#: ../../moderator_documentation/external_users/purge_users.md:13 +msgid "To purge a user's content:" +msgstr "" + +#: ../../moderator_documentation/external_users/purge_users.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/external_users/purge_users.md:17 +#: ../../moderator_documentation/external_users/purge_users.md:30 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/external_users/purge_users.md:18 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/external_users/purge_users.md:19 +#: ../../moderator_documentation/external_users/purge_users.md:32 +msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens." +msgstr "" + +#: ../../moderator_documentation/external_users/purge_users.md:20 +#: ../../moderator_documentation/external_users/purge_users.md:33 +msgid "Select {guilabel}`Accounts` at the top of the page. The {guilabel}`Accounts` page opens. You can see a list of known accounts on this page." +msgstr "" + +#: ../../moderator_documentation/external_users/purge_users.md:21 +#: ../../moderator_documentation/external_users/purge_users.md:34 +msgid "Select the checkbox ({fa}`square`) next to the account(s) you want to purge. Selected accounts show a tick ({fa}`check-square`)." +msgstr "" + +#: ../../moderator_documentation/external_users/purge_users.md:22 +#: ../../moderator_documentation/external_users/purge_users.md:35 +msgid "Select {guilabel}`Purge` in the {guilabel}`Actions` dropdown." +msgstr "" + +#: ../../moderator_documentation/external_users/purge_users.md:23 +#: ../../moderator_documentation/external_users/purge_users.md:36 +msgid "Select {guilabel}`Go`. A {guilabel}`Do you want to launch purge on {count} element(s)` warning appears." +msgstr "" + +#: ../../moderator_documentation/external_users/purge_users.md:24 +#: ../../moderator_documentation/external_users/purge_users.md:37 +msgid "Select {guilabel}`Launch`." +msgstr "" + +#: ../../moderator_documentation/external_users/purge_users.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/external_users/purge_users.md:31 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/external_users/purge_users.md:41 +msgid "You're done! Your pod clears all the content associated with the selected users." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/index.pot b/docs/locales/gettext/moderator_documentation/index.pot new file mode 100644 index 000000000..e49d06752 --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/index.pot @@ -0,0 +1,85 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/index.md:1 +msgid "Get started" +msgstr "" + +#: ../../moderator_documentation/index.md:3 +msgid "{term}`Pod` moderators are responsible for enforcing the rules of a pod. Moderation permissions enable moderators to provide specific tasks:" +msgstr "" + +#: ../../moderator_documentation/index.md:5 +msgid "{guilabel}`Moderation` – enables the moderator to moderate users, domains, and the allow-list." +msgstr "" + +#: ../../moderator_documentation/index.md:6 +msgid "{guilabel}`Library` – enables the moderator to make changes to library content. This includes deleting local objects and handling edit suggestions." +msgstr "" + +#: ../../moderator_documentation/index.md:8 +msgid "Follow the guides in our moderator documentation to handle moderation tasks." +msgstr "" + +#: ../../moderator_documentation/index.md:14 +msgid "Handle user reports" +msgstr "" + +#: ../../moderator_documentation/index.md:16 +msgid "One of the most important duties of a moderator is handling reports. If a user finds content that violates your pod's rules or the law, they can report it. Users can also report other users if they have broken the rules of your pod. Follow the guides in the [Reports](reports/index.md) section to learn how to handle these reports." +msgstr "" + +#: ../../moderator_documentation/index.md:18 +msgid "Moderate your pod's users" +msgstr "" + +#: ../../moderator_documentation/index.md:20 +msgid "As a moderator, you are responsible for moderating the behavior of users on your pod. Funkwhale provides you with tools to help you handle users that violate your pod's rules. Check out our [Moderate your pod's users](internal_users/index.md) section for more information." +msgstr "" + +#: ../../moderator_documentation/index.md:22 +msgid "Moderate content on your pod" +msgstr "" + +#: ../../moderator_documentation/index.md:24 +msgid "Funkwhale's moderation tools enable moderators to handle the content on a pod. This means you can update, delete, or hide content. It also enables you to approve or reject edits submitted by users on your pod. Check out the guides in the [Moderate content on your pod](content/index.md) for more information." +msgstr "" + +#: ../../moderator_documentation/index.md:26 +msgid "Moderate external domains" +msgstr "" + +#: ../../moderator_documentation/index.md:28 +msgid "As {term}`fediverse` software, Funkwhale interacts with other software over federation. Read through the [Moderate external domains](domains/index.md) section to handle content from other servers." +msgstr "" + +#: ../../moderator_documentation/index.md:30 +msgid "Moderate external users" +msgstr "" + +#: ../../moderator_documentation/index.md:32 +msgid "You can moderate how external users interact with users on your pod. Check out the [Moderate external users](external_users/index.md) guides to learn how to manage users from other servers." +msgstr "" + +#: ../../moderator_documentation/index.md:34 +msgid "Manage your allow-list" +msgstr "" + +#: ../../moderator_documentation/index.md:36 +msgid "If your pod admin has set up allow-listing, you can add and remove domains from your pod's list. Follow the guides in the [Allow-listing](allow_listing/index.md) section to learn how to handle your allow-list." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/internal_users/handle_registration.pot b/docs/locales/gettext/moderator_documentation/internal_users/handle_registration.pot new file mode 100644 index 000000000..dc853cb75 --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/internal_users/handle_registration.pot @@ -0,0 +1,143 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/internal_users/handle_registration.md:1 +msgid "Handle user registrations" +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:3 +msgid "{term}`Pod` admins can enable manual sign-up validation. This setting requires moderators to approve or refuse account creations." +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:6 +msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus." +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:9 +msgid "Requests appear in the {guilabel}`User Requests` list. Each request contains the following information:" +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:11 +msgid "The user the request was {guilabel}`Submitted by`" +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:12 +msgid "The {guilabel}`Creation date` of the request." +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:13 +msgid "__Optional__ – any responses the user left to fields in the sign-up form." +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:14 +msgid "The {guilabel}`Status` of the request." +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:15 +msgid "Which moderator the request is {guilabel}`Assigned to`." +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:16 +msgid "The {guilabel}`Resolution date` of the request." +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:17 +msgid "Any {guilabel}`Internal notes` left by the moderators." +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:23 +msgid "Approve a sign-up request" +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:25 +msgid "To approve a sign-up request:" +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:0 +#: ../../moderator_documentation/internal_users/handle_registration.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:29 +#: ../../moderator_documentation/internal_users/handle_registration.md:40 +#: ../../moderator_documentation/internal_users/handle_registration.md:57 +#: ../../moderator_documentation/internal_users/handle_registration.md:68 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:30 +#: ../../moderator_documentation/internal_users/handle_registration.md:58 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:31 +#: ../../moderator_documentation/internal_users/handle_registration.md:42 +#: ../../moderator_documentation/internal_users/handle_registration.md:59 +#: ../../moderator_documentation/internal_users/handle_registration.md:70 +msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens." +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:32 +#: ../../moderator_documentation/internal_users/handle_registration.md:43 +#: ../../moderator_documentation/internal_users/handle_registration.md:60 +#: ../../moderator_documentation/internal_users/handle_registration.md:71 +msgid "Select {guilabel}`User Requests` at the top of the screen. A list of pending requests appears." +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:33 +#: ../../moderator_documentation/internal_users/handle_registration.md:44 +#: ../../moderator_documentation/internal_users/handle_registration.md:61 +#: ../../moderator_documentation/internal_users/handle_registration.md:72 +msgid "Read through the details of the request." +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:34 +#: ../../moderator_documentation/internal_users/handle_registration.md:45 +msgid "Select {guilabel}`Approve` in the {guilabel}`Actions` section." +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:0 +#: ../../moderator_documentation/internal_users/handle_registration.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:41 +#: ../../moderator_documentation/internal_users/handle_registration.md:69 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:49 +msgid "That's it! You've approved the user's sign-up request. The user can now log in." +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:51 +msgid "Refuse a sign-up request" +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:53 +msgid "To refuse a sign-up request:" +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:62 +#: ../../moderator_documentation/internal_users/handle_registration.md:73 +msgid "Select {guilabel}`Refuse` in the {guilabel}`Actions` section." +msgstr "" + +#: ../../moderator_documentation/internal_users/handle_registration.md:77 +msgid "That's it! You've refused the user's sign-up request. The user can't log in to your pod." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/internal_users/index.pot b/docs/locales/gettext/moderator_documentation/internal_users/index.pot new file mode 100644 index 000000000..6b484af9f --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/internal_users/index.pot @@ -0,0 +1,39 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/internal_users/index.md:7 +#: ../../moderator_documentation/internal_users/index.md:7 +msgid "Moderate users" +msgstr "" + +#: ../../moderator_documentation/internal_users/index.md:17 +#: ../../moderator_documentation/internal_users/index.md:17 +msgid "Handle user registrations" +msgstr "" + +#: ../../moderator_documentation/internal_users/index.md:1 +msgid "Moderate your pod's users" +msgstr "" + +#: ../../moderator_documentation/internal_users/index.md:3 +msgid "Funkwhale provides you the tools you need to moderate users on your pod. Use these tools to tackle harassment and problematic content." +msgstr "" + +#: ../../moderator_documentation/internal_users/index.md:5 +msgid "{term}`Pod` admins can also enable manual sign-up validation. With this setting enabled, moderators need to approve or reject any user who signs up." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/reports/handle_content.pot b/docs/locales/gettext/moderator_documentation/reports/handle_content.pot new file mode 100644 index 000000000..3fdbf0810 --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/reports/handle_content.pot @@ -0,0 +1,149 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/reports/handle_content.md:1 +msgid "Handle reported content" +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:4 +msgid "Deleting reported objects is irreversible. This action deletes the associated files from the pod." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:7 +msgid "You can handle content reports from the {guilabel}`Reports` page or from the reported object's moderation page. You only need to open the moderation page to edit objects." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:10 +msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:11 +msgid "{guilabel}`Library` – enables the moderator to delete objects." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:18 +msgid "Handle reports from the Reports page" +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:20 +msgid "To handle a content report from the {guilabel}`Reports` page:" +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:0 +#: ../../moderator_documentation/reports/handle_content.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:24 +#: ../../moderator_documentation/reports/handle_content.md:36 +#: ../../moderator_documentation/reports/handle_content.md:54 +#: ../../moderator_documentation/reports/handle_content.md:70 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:25 +#: ../../moderator_documentation/reports/handle_content.md:55 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:26 +#: ../../moderator_documentation/reports/handle_content.md:38 +#: ../../moderator_documentation/reports/handle_content.md:56 +#: ../../moderator_documentation/reports/handle_content.md:72 +msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:27 +#: ../../moderator_documentation/reports/handle_content.md:39 +#: ../../moderator_documentation/reports/handle_content.md:57 +#: ../../moderator_documentation/reports/handle_content.md:73 +msgid "[Search for the report](search_reports.md)." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:28 +#: ../../moderator_documentation/reports/handle_content.md:40 +msgid "Select an action from the {guilabel}`Actions` section:" +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:29 +#: ../../moderator_documentation/reports/handle_content.md:41 +msgid "{guilabel}`Resolve` – resolve the report with no further action." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:30 +#: ../../moderator_documentation/reports/handle_content.md:42 +msgid "{guilabel}`Delete reported object` – delete the object associated with the report. If you delete an artist or album, this deletes all files associated with the object." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:0 +#: ../../moderator_documentation/reports/handle_content.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:37 +#: ../../moderator_documentation/reports/handle_content.md:71 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:46 +#: ../../moderator_documentation/reports/handle_content.md:84 +msgid "Resolving the report assigns it to you so other moderators know who handled the report. Add [internal notes](internal_notes.md) to keep a record of your changes." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:48 +msgid "Edit content in the moderation page" +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:50 +msgid "If you want to edit an object to change its metadata:" +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:58 +#: ../../moderator_documentation/reports/handle_content.md:74 +msgid "Select {guilabel}`Open in moderation interface` in the {guilabel}`Reported object` section. The object's moderation page opens." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:59 +#: ../../moderator_documentation/reports/handle_content.md:75 +msgid "Select {guilabel}`Edit`. The {guilabel}`Edit` page opens." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:60 +#: ../../moderator_documentation/reports/handle_content.md:76 +msgid "Edit the details on this page. Leave a {guilabel}`Summary` of your changes for reference." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:61 +#: ../../moderator_documentation/reports/handle_content.md:77 +msgid "Select {guilabel}`Submit and apply edit`." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:62 +#: ../../moderator_documentation/reports/handle_content.md:78 +msgid "Return to the {guilabel}`Reports` page." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:63 +#: ../../moderator_documentation/reports/handle_content.md:79 +msgid "Search for the report." +msgstr "" + +#: ../../moderator_documentation/reports/handle_content.md:64 +#: ../../moderator_documentation/reports/handle_content.md:80 +msgid "Select {guilabel}`Resolve` in the {guilabel}`Actions` section." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/reports/handle_users.pot b/docs/locales/gettext/moderator_documentation/reports/handle_users.pot new file mode 100644 index 000000000..db0f4a77b --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/reports/handle_users.pot @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/reports/handle_users.md:1 +msgid "Handle reported users" +msgstr "" + +#: ../../moderator_documentation/reports/handle_users.md:3 +msgid "If a user has reported another user on your pod, you can make changes to the reported user's profile. Use the user's moderation page to take the appropriate steps to handle the report." +msgstr "" + +#: ../../moderator_documentation/reports/handle_users.md:6 +msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus." +msgstr "" + +#: ../../moderator_documentation/reports/handle_users.md:9 +msgid "To open a user's moderation page:" +msgstr "" + +#: ../../moderator_documentation/reports/handle_users.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/reports/handle_users.md:13 +#: ../../moderator_documentation/reports/handle_users.md:22 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/reports/handle_users.md:14 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/reports/handle_users.md:15 +#: ../../moderator_documentation/reports/handle_users.md:24 +msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens." +msgstr "" + +#: ../../moderator_documentation/reports/handle_users.md:16 +#: ../../moderator_documentation/reports/handle_users.md:25 +msgid "[Search for the report](search_reports.md) and select {guilabel}`Open in moderation interface` under {guilabel}`Reported object`. The user's moderation page opens." +msgstr "" + +#: ../../moderator_documentation/reports/handle_users.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/reports/handle_users.md:23 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the page to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/reports/handle_users.md:29 +msgid "You can change the following settings in the moderation interface:" +msgstr "" + +#: ../../moderator_documentation/reports/handle_users.md:31 +msgid "{guilabel}`Login status` – disable this switch to prevent the user being able to log in." +msgstr "" + +#: ../../moderator_documentation/reports/handle_users.md:32 +msgid "{guilabel}`Permissions` – add or remove permissions associated with the user." +msgstr "" + +#: ../../moderator_documentation/reports/handle_users.md:33 +msgid "{guilabel}`Upload quota` – change the amount of data (in megabytes) that the user can upload." +msgstr "" + +#: ../../moderator_documentation/reports/handle_users.md:35 +msgid "Once you have made your changes, return to the {guilabel}`Reports` page and {guilabel}`Resolve` the report. Resolving the report assigns it to you so other moderators know who handled the report. Add [internal notes](internal_notes.md) to keep a record of your changes." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/reports/index.pot b/docs/locales/gettext/moderator_documentation/reports/index.pot new file mode 100644 index 000000000..995c1654b --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/reports/index.pot @@ -0,0 +1,76 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/reports/index.md:20 +#: ../../moderator_documentation/reports/index.md:20 +msgid "Use the reports page" +msgstr "" + +#: ../../moderator_documentation/reports/index.md:32 +#: ../../moderator_documentation/reports/index.md:1 +#: ../../moderator_documentation/reports/index.md:32 +msgid "Handle reports" +msgstr "" + +#: ../../moderator_documentation/reports/index.md:3 +msgid "As a Funkwhale moderator, you have extra permissions. These permissions enable you to handle reports submitted by users and anonymous browsers." +msgstr "" + +#: ../../moderator_documentation/reports/index.md:5 +msgid "When a user submits a report it ends up in the moderation queue on the {guilabel}`Reports` page. Moderators can use the tools on this page to handle the report." +msgstr "" + +#: ../../moderator_documentation/reports/index.md:7 +msgid "Each report contains information that can help you handle the reported object:" +msgstr "" + +#: ../../moderator_documentation/reports/index.md:9 +msgid "The user who submitted the report." +msgstr "" + +#: ../../moderator_documentation/reports/index.md:10 +msgid "The report {guilabel}`Category`. You can change this if it is not correct." +msgstr "" + +#: ../../moderator_documentation/reports/index.md:11 +msgid "The date the user submitted the report." +msgstr "" + +#: ../../moderator_documentation/reports/index.md:12 +msgid "The message the user posted with the report (if applicable)." +msgstr "" + +#: ../../moderator_documentation/reports/index.md:13 +msgid "The {guilabel}`Status` of the report." +msgstr "" + +#: ../../moderator_documentation/reports/index.md:14 +msgid "Any {guilabel}`Internal notes` left by moderators." +msgstr "" + +#: ../../moderator_documentation/reports/index.md:15 +msgid "A summary of the {guilabel}`Reported object`." +msgstr "" + +#: ../../moderator_documentation/reports/index.md:16 +msgid "A list of available {guilabel}`Actions`." +msgstr "" + +#: ../../moderator_documentation/reports/index.md:18 +msgid "Follow the guides in this section to start handling reports submitted to your {term}`pod`." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/reports/internal_notes.pot b/docs/locales/gettext/moderator_documentation/reports/internal_notes.pot new file mode 100644 index 000000000..0a4b15b61 --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/reports/internal_notes.pot @@ -0,0 +1,110 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/reports/internal_notes.md:1 +msgid "Use internal notes" +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:3 +msgid "Use internal notes to add information to a report. This can be a summary of your actions or an update on your investigation. Internal notes are only visible to pod admins and moderators." +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:6 +msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus." +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:9 +msgid "Add notes to a report" +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:11 +msgid "You can add notes to __Unresolved__ and __Resolved__ reports. To add an internal note:" +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:0 +#: ../../moderator_documentation/reports/internal_notes.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:15 +#: ../../moderator_documentation/reports/internal_notes.md:26 +#: ../../moderator_documentation/reports/internal_notes.md:45 +#: ../../moderator_documentation/reports/internal_notes.md:56 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:16 +#: ../../moderator_documentation/reports/internal_notes.md:46 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:17 +#: ../../moderator_documentation/reports/internal_notes.md:28 +#: ../../moderator_documentation/reports/internal_notes.md:47 +#: ../../moderator_documentation/reports/internal_notes.md:58 +msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens." +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:18 +#: ../../moderator_documentation/reports/internal_notes.md:29 +#: ../../moderator_documentation/reports/internal_notes.md:48 +#: ../../moderator_documentation/reports/internal_notes.md:59 +msgid "[Search for the report](search_reports.md)." +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:19 +#: ../../moderator_documentation/reports/internal_notes.md:30 +msgid "{guilabel}`Write` your note in the {guilabel}`Internal notes` section. This input field supports Markdown syntax. You can {guilabel}`Preview` how the note will look to other users." +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:20 +#: ../../moderator_documentation/reports/internal_notes.md:31 +msgid "Select {guilabel}`Add note` to save your note." +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:0 +#: ../../moderator_documentation/reports/internal_notes.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:27 +#: ../../moderator_documentation/reports/internal_notes.md:57 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:35 +msgid "Delete notes from a report" +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:38 +msgid "Deleting an internal note is irreversible. Make sure you are not deleting anything important." +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:41 +msgid "You can delete your own notes and the notes of other moderators. You can do this for both __Resolved__ and __Unresolved__ reports. To delete an internal note:" +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:49 +#: ../../moderator_documentation/reports/internal_notes.md:60 +msgid "Find the note you want to delete in the {guilabel}`Internal notes` section." +msgstr "" + +#: ../../moderator_documentation/reports/internal_notes.md:50 +#: ../../moderator_documentation/reports/internal_notes.md:61 +msgid "Select {guilabel}`Delete`" +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/reports/search_reports.pot b/docs/locales/gettext/moderator_documentation/reports/search_reports.pot new file mode 100644 index 000000000..896b0ba61 --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/reports/search_reports.pot @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/reports/search_reports.md:1 +msgid "Search for reports" +msgstr "" + +#: ../../moderator_documentation/reports/search_reports.md:3 +msgid "The {guilabel}`Reports` page contains filters that enable you to search for reports. Use these filters to find reports by category, status, or key words." +msgstr "" + +#: ../../moderator_documentation/reports/search_reports.md:6 +msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus." +msgstr "" + +#: ../../moderator_documentation/reports/search_reports.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/reports/search_reports.md:11 +#: ../../moderator_documentation/reports/search_reports.md:25 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/reports/search_reports.md:12 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/reports/search_reports.md:13 +#: ../../moderator_documentation/reports/search_reports.md:27 +msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens." +msgstr "" + +#: ../../moderator_documentation/reports/search_reports.md:14 +#: ../../moderator_documentation/reports/search_reports.md:28 +msgid "Use the filters to find the report you want:" +msgstr "" + +#: ../../moderator_documentation/reports/search_reports.md:15 +#: ../../moderator_documentation/reports/search_reports.md:29 +msgid "Enter key words in the {guilabel}`Search` field. This enables you to search for content in the report's {guilabel}`Message` section. Hit {kbd}`⏎ Return` to update your search." +msgstr "" + +#: ../../moderator_documentation/reports/search_reports.md:16 +#: ../../moderator_documentation/reports/search_reports.md:30 +msgid "Filter reports by {guilabel}`Status`." +msgstr "" + +#: ../../moderator_documentation/reports/search_reports.md:17 +#: ../../moderator_documentation/reports/search_reports.md:31 +msgid "Filter reports by {guilabel}`Category`." +msgstr "" + +#: ../../moderator_documentation/reports/search_reports.md:18 +#: ../../moderator_documentation/reports/search_reports.md:32 +msgid "Select the criteria for {guilabel}`Ordering` of your search results." +msgstr "" + +#: ../../moderator_documentation/reports/search_reports.md:19 +#: ../../moderator_documentation/reports/search_reports.md:33 +msgid "Select which {guilabel}`Order` you want to see your search results in." +msgstr "" + +#: ../../moderator_documentation/reports/search_reports.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/reports/search_reports.md:26 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/reports/search_reports.md:37 +msgid "Once you have found the required report, you can handle the reported [user](handle_users.md) or [content](handle_content.md). You can also update the [internal notes](internal_notes.md) on the report." +msgstr "" diff --git a/docs/locales/gettext/moderator_documentation/reports/view_reports.pot b/docs/locales/gettext/moderator_documentation/reports/view_reports.pot new file mode 100644 index 000000000..7e667cfe4 --- /dev/null +++ b/docs/locales/gettext/moderator_documentation/reports/view_reports.pot @@ -0,0 +1,137 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../moderator_documentation/reports/view_reports.md:1 +msgid "View unresolved reports" +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:3 +msgid "When a user reports an object on your {term}`pod`, the report gets sent to a moderation queue. You can check this moderation queue to handle any reports that users have submitted." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:6 +msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:9 +msgid "Check the Reports page" +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:11 +msgid "You can see a list of unresolved reports by going to the {guilabel}`Reports` page. To do this:" +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:0 +msgid "Desktop" +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:15 +#: ../../moderator_documentation/reports/view_reports.md:23 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:16 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:17 +#: ../../moderator_documentation/reports/view_reports.md:25 +msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:0 +msgid "Mobile" +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:24 +msgid "Select the wrench icon ({fa}`wrench`) at the top of the screen to open the {guilabel}`Administration` menu." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:29 +msgid "That's it! A list of unresolved reports appears on the screen. The summary contains the following information:" +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:31 +#: ../../moderator_documentation/reports/view_reports.md:46 +msgid "The user who submitted the report." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:32 +msgid "The report {guilabel}`Category`." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:33 +msgid "The date the user submitted the report." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:34 +#: ../../moderator_documentation/reports/view_reports.md:50 +msgid "The message the user posted with the report (if applicable)." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:35 +msgid "The {guilabel}`Status` of the report." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:36 +msgid "Any {guilabel}`Internal notes` left by moderators." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:37 +msgid "A summary of the {guilabel}`Reported object`." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:38 +msgid "A list of available {guilabel}`Actions`." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:40 +msgid "Use the tools on this page the handle the reported [content](handle_content.md) or [user](handle_users.md)." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:42 +msgid "Email notifications" +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:44 +msgid "When a user submits a report, an email gets sent to all pod moderators. This email contains a summary of the report including:" +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:47 +msgid "The object that the user reported." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:48 +msgid "A link to the object on your pod." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:49 +msgid "A link to the object's moderation page." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:51 +msgid "A link to the report." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:52 +msgid "A link to the {guilabel}`Reports` page." +msgstr "" + +#: ../../moderator_documentation/reports/view_reports.md:54 +msgid "Follow the links in the email to view the report." +msgstr "" diff --git a/docs/locales/gettext/translators.pot b/docs/locales/gettext/translators.pot new file mode 100644 index 000000000..927e91354 --- /dev/null +++ b/docs/locales/gettext/translators.pot @@ -0,0 +1,125 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../../TRANSLATORS.rst:2 +msgid "Translating Funkwhale" +msgstr "" + +#: ../../../TRANSLATORS.rst:4 +msgid "A step-by-step, beginner friendly guide is available at https://contribute.funkwhale.audio/guides/translate/" +msgstr "" + +#: ../../../TRANSLATORS.rst:6 +msgid "Thank you for reading this! If you want to help translate Funkwhale, you found the proper place :)" +msgstr "" + +#: ../../../TRANSLATORS.rst:9 +msgid "Translation is done via our own Weblate instance at https://translate.funkwhale.audio/projects/funkwhale/front/." +msgstr "" + +#: ../../../TRANSLATORS.rst:11 +msgid "You can signup/login using your Gitlab account (from https://dev.funkwhale.audio)." +msgstr "" + +#: ../../../TRANSLATORS.rst:14 +msgid "Translation workflow" +msgstr "" + +#: ../../../TRANSLATORS.rst:16 +msgid "Once you're logged-in on the Weblate instance, you can suggest translations. Your suggestions will then be reviewer by the project maintainer or other translators to ensure consistency." +msgstr "" + +#: ../../../TRANSLATORS.rst:20 +msgid "Guidelines" +msgstr "" + +#: ../../../TRANSLATORS.rst:22 +msgid "Respecting those guidelines is mandatory if you want your translation to be included:" +msgstr "" + +#: ../../../TRANSLATORS.rst:24 +msgid "Use gender-neutral language and wording" +msgstr "" + +#: ../../../TRANSLATORS.rst:27 +msgid "Submitting a new language" +msgstr "" + +#: ../../../TRANSLATORS.rst:29 +msgid "Pull the latest version of ``develop``" +msgstr "" + +#: ../../../TRANSLATORS.rst:30 +msgid "Create a new branch, e.g ``git checkout -b translations-new-fr-ca``" +msgstr "" + +#: ../../../TRANSLATORS.rst:31 +msgid "Add your new language code and name in ``front/src/locales.js``. Use the native language name, as it is what appears in the UI selector." +msgstr "" + +#: ../../../TRANSLATORS.rst:32 +msgid "Create the ``po`` file from template:" +msgstr "" + +#: ../../../TRANSLATORS.rst:40 +msgid "Then commit your changes, push, and submit a pull request on the ``develop`` branch" +msgstr "" + +#: ../../../TRANSLATORS.rst:43 +msgid "Requesting a new language" +msgstr "" + +#: ../../../TRANSLATORS.rst:45 +msgid "If you cannot submit a new language yourself, you can request it by opening an issue here: https://dev.funkwhale.audio/funkwhale/funkwhale/issues" +msgstr "" + +#: ../../../TRANSLATORS.rst:49 +msgid "Extracting messages from source" +msgstr "" + +#: ../../../TRANSLATORS.rst:51 +msgid "We offer a script to update existing ``po`` and ``pot`` files with new translations from the source code. This action should be run regularly, and in particular before lots of translation work is expected (e.g a few weeks before a new release), or when the UI code changes a lot. Otherwise, translators end up translating some obsolete messages, or not translationg new messages." +msgstr "" + +#: ../../../TRANSLATORS.rst:57 +msgid "`Lock the translations on weblate <https://translate.funkwhale.audio/projects/funkwhale/front/#repository>`_ (``Lock`` button in the sidebar). This will prevent translators from working, and help prevent potential conflicts in the source code" +msgstr "" + +#: ../../../TRANSLATORS.rst:58 +msgid "`Commit and push changes from weblate <https://translate.funkwhale.audio/projects/funkwhale/front/#repository>`_ (``Commit`` and ``Push`` buttons in the sidebar)" +msgstr "" + +#: ../../../TRANSLATORS.rst:59 +msgid "Pull ``develop`` in your local git repository to ensure you have the latest version of the translations" +msgstr "" + +#: ../../../TRANSLATORS.rst:60 +msgid "Create a dedicated branch with ``git checkout -b translations-integration``" +msgstr "" + +#: ../../../TRANSLATORS.rst:61 +msgid "Extract the translations with ``cd front && ./scripts/i18n-extract.sh``. This will update all ``po`` files as necessary" +msgstr "" + +#: ../../../TRANSLATORS.rst:62 +msgid "Review, commit and push the changes, then open a merge request on the ``develop`` branch" +msgstr "" + +#: ../../../TRANSLATORS.rst:63 +msgid "When the MR is merged, `Unlock the translations on weblate <https://translate.funkwhale.audio/projects/funkwhale/front/#repository>`_ (``Unlock`` button in the sidebar)." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/accounts/activity_visibility.pot b/docs/locales/gettext/user_documentation/accounts/activity_visibility.pot new file mode 100644 index 000000000..8211f1fe0 --- /dev/null +++ b/docs/locales/gettext/user_documentation/accounts/activity_visibility.pot @@ -0,0 +1,86 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/accounts/activity_visibility.md:1 +msgid "Change your activity visibility" +msgstr "" + +#: ../../user_documentation/accounts/activity_visibility.md:3 +msgid "Your __activity visibility__ determines who can see your listening activity on Funkwhale. There are three visibility options:" +msgstr "" + +#: ../../user_documentation/accounts/activity_visibility.md:5 +msgid "__Nobody except me__ – only you can see your listening activity." +msgstr "" + +#: ../../user_documentation/accounts/activity_visibility.md:6 +msgid "__Everyone on this instance__ – users who have an account on the same {term}`pod` as you can see your listening activity." +msgstr "" + +#: ../../user_documentation/accounts/activity_visibility.md:7 +msgid "__Everyone, across all instances__ – anybody can see your listening activity." +msgstr "" + +#: ../../user_documentation/accounts/activity_visibility.md:9 +msgid "To change your activity visibility:" +msgstr "" + +#: ../../user_documentation/accounts/activity_visibility.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/accounts/activity_visibility.md:13 +#: ../../user_documentation/accounts/activity_visibility.md:24 +msgid "Log in to your account." +msgstr "" + +#: ../../user_documentation/accounts/activity_visibility.md:14 +msgid "Select the cog icon ({fa}`cog`) or your avatar to expand the user menu." +msgstr "" + +#: ../../user_documentation/accounts/activity_visibility.md:15 +#: ../../user_documentation/accounts/activity_visibility.md:26 +msgid "Select {guilabel}`Settings`." +msgstr "" + +#: ../../user_documentation/accounts/activity_visibility.md:16 +#: ../../user_documentation/accounts/activity_visibility.md:27 +msgid "Find {guilabel}`Activity visibility` in the {guilabel}`Account settings` section." +msgstr "" + +#: ../../user_documentation/accounts/activity_visibility.md:17 +#: ../../user_documentation/accounts/activity_visibility.md:28 +msgid "Select your visibility level from the dropdown menu." +msgstr "" + +#: ../../user_documentation/accounts/activity_visibility.md:18 +#: ../../user_documentation/accounts/activity_visibility.md:29 +msgid "Select {guilabel}`Update settings` to save your changes." +msgstr "" + +#: ../../user_documentation/accounts/activity_visibility.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/accounts/activity_visibility.md:25 +msgid "Select the cog icon ({fa}`cog`) or your avatar to open the {guilabel}`Options` menu." +msgstr "" + +#: ../../user_documentation/accounts/activity_visibility.md:33 +msgid "That's it! You've updated your activity visibility. This change takes effect as soon as you update your settings." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/accounts/add_avatar.pot b/docs/locales/gettext/user_documentation/accounts/add_avatar.pot new file mode 100644 index 000000000..533b70f45 --- /dev/null +++ b/docs/locales/gettext/user_documentation/accounts/add_avatar.pot @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/accounts/add_avatar.md:1 +msgid "Add your avatar" +msgstr "" + +#: ../../user_documentation/accounts/add_avatar.md:3 +msgid "You can upload an avatar to your account. Other users can see this when they visit your profile. To add an avatar:" +msgstr "" + +#: ../../user_documentation/accounts/add_avatar.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/accounts/add_avatar.md:7 +#: ../../user_documentation/accounts/add_avatar.md:18 +msgid "Log in to your account." +msgstr "" + +#: ../../user_documentation/accounts/add_avatar.md:8 +msgid "Select the cog icon ({fa}`cog`) or your existing avatar to expand the user menu." +msgstr "" + +#: ../../user_documentation/accounts/add_avatar.md:9 +#: ../../user_documentation/accounts/add_avatar.md:20 +msgid "Select {guilabel}`Settings`." +msgstr "" + +#: ../../user_documentation/accounts/add_avatar.md:10 +#: ../../user_documentation/accounts/add_avatar.md:21 +msgid "Scroll down to the {guilabel}`Avatar` section." +msgstr "" + +#: ../../user_documentation/accounts/add_avatar.md:11 +msgid "Select {guilabel}`Browse…` to open the file picker." +msgstr "" + +#: ../../user_documentation/accounts/add_avatar.md:12 +#: ../../user_documentation/accounts/add_avatar.md:23 +msgid "Select the image you want to use as your avatar and confirm." +msgstr "" + +#: ../../user_documentation/accounts/add_avatar.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/accounts/add_avatar.md:19 +msgid "Select the cog icon ({fa}`cog`) or your existing avatar to open the {guilabel}`Options` menu." +msgstr "" + +#: ../../user_documentation/accounts/add_avatar.md:22 +msgid "Select {guilabel}`Choose File` to open the file picker." +msgstr "" + +#: ../../user_documentation/accounts/add_avatar.md:27 +msgid "Congratulations! You've updated your avatar." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/accounts/change_email.pot b/docs/locales/gettext/user_documentation/accounts/change_email.pot new file mode 100644 index 000000000..2b3896c29 --- /dev/null +++ b/docs/locales/gettext/user_documentation/accounts/change_email.pot @@ -0,0 +1,75 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/accounts/change_email.md:1 +msgid "Change your email address" +msgstr "" + +#: ../../user_documentation/accounts/change_email.md:3 +msgid "You can update your email address whenever you need to. To do this:" +msgstr "" + +#: ../../user_documentation/accounts/change_email.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/accounts/change_email.md:7 +#: ../../user_documentation/accounts/change_email.md:19 +msgid "Log in to your account." +msgstr "" + +#: ../../user_documentation/accounts/change_email.md:8 +msgid "Select the cog icon ({fa}`cog`) or your avatar to expand the user menu." +msgstr "" + +#: ../../user_documentation/accounts/change_email.md:9 +#: ../../user_documentation/accounts/change_email.md:21 +msgid "Select {guilabel}`Settings`." +msgstr "" + +#: ../../user_documentation/accounts/change_email.md:10 +#: ../../user_documentation/accounts/change_email.md:22 +msgid "Scroll to the {guilabel}`Change my e-mail address` section." +msgstr "" + +#: ../../user_documentation/accounts/change_email.md:11 +#: ../../user_documentation/accounts/change_email.md:23 +msgid "Enter your {guilabel}`New e-mail address`." +msgstr "" + +#: ../../user_documentation/accounts/change_email.md:12 +#: ../../user_documentation/accounts/change_email.md:24 +msgid "Enter your {guilabel}`Password`." +msgstr "" + +#: ../../user_documentation/accounts/change_email.md:13 +#: ../../user_documentation/accounts/change_email.md:25 +msgid "Select {guilabel}`Update`." +msgstr "" + +#: ../../user_documentation/accounts/change_email.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/accounts/change_email.md:20 +msgid "Select the cog icon ({fa}`cog`) or your avatar to open the {guilabel}`Options` menu." +msgstr "" + +#: ../../user_documentation/accounts/change_email.md:29 +msgid "That's it! If your pod admin has email verification enabled, you'll receive a confirmation email. Follow the instructions in this email to finish changing your email address." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/accounts/change_password.pot b/docs/locales/gettext/user_documentation/accounts/change_password.pot new file mode 100644 index 000000000..83f3debc2 --- /dev/null +++ b/docs/locales/gettext/user_documentation/accounts/change_password.pot @@ -0,0 +1,79 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/accounts/change_password.md:1 +msgid "Change your password" +msgstr "" + +#: ../../user_documentation/accounts/change_password.md:4 +msgid "Changing your account password also changes your Subsonic API password. If you are using a Subsonic app, you need to update your password in the app as well." +msgstr "" + +#: ../../user_documentation/accounts/change_password.md:7 +msgid "You can update your account password whenever you need to. To do this:" +msgstr "" + +#: ../../user_documentation/accounts/change_password.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/accounts/change_password.md:11 +#: ../../user_documentation/accounts/change_password.md:23 +msgid "Log in to your account." +msgstr "" + +#: ../../user_documentation/accounts/change_password.md:12 +msgid "Select the cog icon ({fa}`cog`) or your avatar to expand the user menu." +msgstr "" + +#: ../../user_documentation/accounts/change_password.md:13 +#: ../../user_documentation/accounts/change_password.md:25 +msgid "Select {guilabel}`Settings`." +msgstr "" + +#: ../../user_documentation/accounts/change_password.md:14 +#: ../../user_documentation/accounts/change_password.md:26 +msgid "Scroll to the {guilabel}`Change my password` section." +msgstr "" + +#: ../../user_documentation/accounts/change_password.md:15 +#: ../../user_documentation/accounts/change_password.md:27 +msgid "Enter your {guilabel}`Current password`." +msgstr "" + +#: ../../user_documentation/accounts/change_password.md:16 +#: ../../user_documentation/accounts/change_password.md:28 +msgid "Enter your {guilabel}`New password`." +msgstr "" + +#: ../../user_documentation/accounts/change_password.md:17 +#: ../../user_documentation/accounts/change_password.md:29 +msgid "Select {guilabel}`Change password`." +msgstr "" + +#: ../../user_documentation/accounts/change_password.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/accounts/change_password.md:24 +msgid "Select the cog icon ({fa}`cog`) or your avatar to open the {guilabel}`Options` menu." +msgstr "" + +#: ../../user_documentation/accounts/change_password.md:33 +msgid "That's it! Your password is reset. You need to use your new password to log in from now on." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/accounts/check_quota.pot b/docs/locales/gettext/user_documentation/accounts/check_quota.pot new file mode 100644 index 000000000..ec569bfbe --- /dev/null +++ b/docs/locales/gettext/user_documentation/accounts/check_quota.pot @@ -0,0 +1,69 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/accounts/check_quota.md:1 +msgid "Check your upload quota" +msgstr "" + +#: ../../user_documentation/accounts/check_quota.md:3 +msgid "Your {term}`pod` admin can assign users an __upload quota__. This is the amount of storage you have access to. Pod admins can assign a default quota to all users. They can also increase or decrease quotas for individual users. Your upload quota applies to content in [libraries](../libraries/index.md) and [channels](../channels/index.md)." +msgstr "" + +#: ../../user_documentation/accounts/check_quota.md:5 +msgid "If you run out of space, you can contact your pod admin to request more." +msgstr "" + +#: ../../user_documentation/accounts/check_quota.md:7 +msgid "To check your upload quota:" +msgstr "" + +#: ../../user_documentation/accounts/check_quota.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/accounts/check_quota.md:11 +#: ../../user_documentation/accounts/check_quota.md:21 +msgid "Log in to your pod." +msgstr "" + +#: ../../user_documentation/accounts/check_quota.md:12 +msgid "Select the upload icon ({fa}`upload`) in the top of the sidebar." +msgstr "" + +#: ../../user_documentation/accounts/check_quota.md:13 +#: ../../user_documentation/accounts/check_quota.md:23 +msgid "Select {guilabel}`Get started` under {guilabel}`Upload third-party content in a library`." +msgstr "" + +#: ../../user_documentation/accounts/check_quota.md:14 +#: ../../user_documentation/accounts/check_quota.md:24 +msgid "The {guilabel}`My libraries` screen appears showing your upload quota and your libraries." +msgstr "" + +#: ../../user_documentation/accounts/check_quota.md:15 +#: ../../user_documentation/accounts/check_quota.md:25 +msgid "The {guilabel}`Current usage` section shows you how much of your quota you are using." +msgstr "" + +#: ../../user_documentation/accounts/check_quota.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/accounts/check_quota.md:22 +msgid "Select the upload icon ({fa}`upload`) at the top of the screen" +msgstr "" diff --git a/docs/locales/gettext/user_documentation/accounts/create_account.pot b/docs/locales/gettext/user_documentation/accounts/create_account.pot new file mode 100644 index 000000000..8181e3e47 --- /dev/null +++ b/docs/locales/gettext/user_documentation/accounts/create_account.pot @@ -0,0 +1,126 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/accounts/create_account.md:1 +msgid "Create your Funkwhale account" +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:4 +msgid "Use our [Pod Picker tool](https://network.funkwhale.audio/dashboards/d/overview/network-overview) to find the perfect pod for you!" +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:7 +msgid "To use Funkwhale, you need to create an account on a {term}`Funkwhale pod <Pod>`. Signing up to a pod requires the following information:" +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:9 +msgid "A valid email address. Administrators can use this to verify you are not a bot." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:10 +msgid "A username." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:11 +msgid "A password." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:13 +msgid "Check your pod's policies" +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:15 +msgid "Before you sign up to a pod, you should check its __policies__. You can find these by navigating to the pod's {guilabel}`About this pod` page." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:17 +msgid "Navigate to the pod." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:18 +msgid "Select the {guilabel}`About this pod` link in the sidebar." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:19 +msgid "Select the {guilabel}`Learn more` button in the {guilabel}`About this pod` section." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:21 +msgid "Administrators can add a pod's {guilabel}`Rules` and {guilabel}`Terms and privacy policy` to this page. Make sure to read through them before signing up. Also check the {guilabel}`Upload quota` to see how much space users have access to." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:23 +msgid "Sign up" +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:25 +msgid "Once you've found an instance you like the look of, you can create your account." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:27 +msgid "Select the {guilabel}`Create an account` button in the sidebar." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:28 +msgid "Enter the {guilabel}`Username` you have chosen." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:29 +msgid "Enter your {guilabel}`Email` address." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:30 +#: ../../user_documentation/accounts/create_account.md:41 +msgid "Enter your {guilabel}`Password`." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:31 +msgid "Pod administrators can add extra requirements for new accounts. Fields marked with an asterisk ({guilabel}`*`) are required." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:32 +msgid "Select {guilabel}`Create my account`." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:33 +msgid "Pod administrators may require you to verify your email address before you can use your account. Check your email for more instructions." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:35 +msgid "Log in" +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:37 +msgid "When you've created and activated your account, you can log in." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:39 +msgid "Select the {guilabel}`Login` button in the sidebar." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:40 +msgid "Enter your {guilabel}`Username or e-mail address`." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:42 +msgid "Select {guilabel}`Login`." +msgstr "" + +#: ../../user_documentation/accounts/create_account.md:44 +msgid "Congratulations! You've set up your Funkwhale account. Check out what you can do now in our user documentation." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/accounts/delete_account.pot b/docs/locales/gettext/user_documentation/accounts/delete_account.pot new file mode 100644 index 000000000..b4371df16 --- /dev/null +++ b/docs/locales/gettext/user_documentation/accounts/delete_account.pot @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/accounts/delete_account.md:1 +msgid "Delete your Funkwhale account" +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:3 +msgid "If you have decided you no longer want your Funkwhale account, you can delete it. This action removes your profile and all your data from your {term}`pod`, including:" +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:5 +msgid "Your user avatar." +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:6 +msgid "Your email address." +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:7 +msgid "The list of your followers." +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:8 +msgid "Music files you have uploaded." +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:9 +msgid "Radios you have created." +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:10 +msgid "Playlists you have created." +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:11 +msgid "Your favorites." +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:13 +msgid "When you delete your account, your pod sends a message to other Funkwhale pods notifying them. If these pods hold any of your data, they should also delete it." +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:16 +msgid "Other pods should delete local copies of your data in compliance with your request. There is no guarantee that they will do so, and some data may remain available. This can happen if a pod is offline or unavailable when your pod sends out the deletion message." +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:19 +msgid "To delete your account:" +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:23 +#: ../../user_documentation/accounts/delete_account.md:35 +msgid "Log in to your account." +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:24 +msgid "Select the cog icon ({fa}`cog`) or your avatar to expand the user menu." +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:25 +#: ../../user_documentation/accounts/delete_account.md:37 +msgid "Select {guilabel}`Settings`." +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:26 +#: ../../user_documentation/accounts/delete_account.md:38 +msgid "Scroll to the {guilabel}`Delete my account` section." +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:27 +#: ../../user_documentation/accounts/delete_account.md:39 +msgid "Enter your {guilabel}`Password`." +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:28 +#: ../../user_documentation/accounts/delete_account.md:40 +msgid "Select {guilabel}`Delete my account…`." +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:29 +#: ../../user_documentation/accounts/delete_account.md:41 +msgid "Select {guilabel}`Delete my account` on the warning notice that appears." +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:36 +msgid "Select the cog icon ({fa}`cog`) or your avatar to open the {guilabel}`Options` menu." +msgstr "" + +#: ../../user_documentation/accounts/delete_account.md:45 +msgid "That's it! You've deleted your account. You can [create another account](create_account.md) at any time." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/accounts/delete_avatar.pot b/docs/locales/gettext/user_documentation/accounts/delete_avatar.pot new file mode 100644 index 000000000..baf729f4d --- /dev/null +++ b/docs/locales/gettext/user_documentation/accounts/delete_avatar.pot @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/accounts/delete_avatar.md:1 +msgid "Remove your avatar" +msgstr "" + +#: ../../user_documentation/accounts/delete_avatar.md:3 +msgid "If you don't want to have an avatar any more, you can remove it. To do this:" +msgstr "" + +#: ../../user_documentation/accounts/delete_avatar.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/accounts/delete_avatar.md:7 +#: ../../user_documentation/accounts/delete_avatar.md:17 +msgid "Log in to your account." +msgstr "" + +#: ../../user_documentation/accounts/delete_avatar.md:8 +msgid "Select your avatar to expand the user menu." +msgstr "" + +#: ../../user_documentation/accounts/delete_avatar.md:9 +#: ../../user_documentation/accounts/delete_avatar.md:19 +msgid "Select {guilabel}`Settings`." +msgstr "" + +#: ../../user_documentation/accounts/delete_avatar.md:10 +#: ../../user_documentation/accounts/delete_avatar.md:20 +msgid "Scroll down to the {guilabel}`Avatar` section." +msgstr "" + +#: ../../user_documentation/accounts/delete_avatar.md:11 +#: ../../user_documentation/accounts/delete_avatar.md:21 +msgid "Select {guilabel}`Remove`." +msgstr "" + +#: ../../user_documentation/accounts/delete_avatar.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/accounts/delete_avatar.md:18 +msgid "Select your avatar to open the {guilabel}`Options` menu." +msgstr "" + +#: ../../user_documentation/accounts/delete_avatar.md:25 +msgid "That's it! You've removed your avatar from your account. Other users will only see the initials of your username when they visit your profile." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/accounts/index.pot b/docs/locales/gettext/user_documentation/accounts/index.pot new file mode 100644 index 000000000..c250b5fe3 --- /dev/null +++ b/docs/locales/gettext/user_documentation/accounts/index.pot @@ -0,0 +1,39 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/accounts/index.md:7 +#: ../../user_documentation/accounts/index.md:7 +msgid "Manage your account" +msgstr "" + +#: ../../user_documentation/accounts/index.md:19 +#: ../../user_documentation/accounts/index.md:19 +msgid "Change account settings" +msgstr "" + +#: ../../user_documentation/accounts/index.md:1 +msgid "Your account" +msgstr "" + +#: ../../user_documentation/accounts/index.md:3 +msgid "Your Funkwhale account is the key to your Funkwhale experience. Creating an account on a {term}`pod` gives you the ability to upload content, follow channels, and listen to audio." +msgstr "" + +#: ../../user_documentation/accounts/index.md:5 +msgid "Follow the guides in this section to manage your Funkwhale account." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/channels/create_channel.pot b/docs/locales/gettext/user_documentation/channels/create_channel.pot new file mode 100644 index 000000000..b2fc742d8 --- /dev/null +++ b/docs/locales/gettext/user_documentation/channels/create_channel.pot @@ -0,0 +1,175 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/channels/create_channel.md:1 +msgid "Create a channel" +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:4 +msgid "Your channel's __Fediverse handle__ needs to be unique. This is how other {term}`Fediverse` software identifies your channel. You can't change the __Fediverse handle__ once you've created your channel." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:7 +msgid "Create a channel to start publishing your content on your {term}`Funkwhale pod <Pod>`. Users can access channel content from Funkwhale or other Fediverse software." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:9 +msgid "You can create two types of channel:" +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:15 +msgid "Artist discography" +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:17 +msgid "To create an __Artist discography__ channel:" +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:0 +#: ../../user_documentation/channels/create_channel.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:21 +#: ../../user_documentation/channels/create_channel.md:37 +#: ../../user_documentation/channels/create_channel.md:59 +#: ../../user_documentation/channels/create_channel.md:80 +msgid "Log in to your pod." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:22 +#: ../../user_documentation/channels/create_channel.md:60 +msgid "Select the upload icon ({fa}`upload`) in the top of the sidebar." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:23 +#: ../../user_documentation/channels/create_channel.md:39 +#: ../../user_documentation/channels/create_channel.md:61 +#: ../../user_documentation/channels/create_channel.md:82 +msgid "Select {guilabel}`Get started` under {guilabel}`Publish your work in a channel`. Your user profile opens." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:24 +#: ../../user_documentation/channels/create_channel.md:40 +#: ../../user_documentation/channels/create_channel.md:62 +#: ../../user_documentation/channels/create_channel.md:83 +msgid "Select {guilabel}`+ Add new` next to the {guilabel}`Channels` header. A {guilabel}`Create channel` pop-up window appears." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:25 +#: ../../user_documentation/channels/create_channel.md:41 +msgid "Select {guilabel}`Artist discography` and select {guilabel}`Next step`. The {guilabel}`Artist channel` form appears." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:26 +#: ../../user_documentation/channels/create_channel.md:42 +#: ../../user_documentation/channels/create_channel.md:64 +#: ../../user_documentation/channels/create_channel.md:85 +msgid "Enter the {guilabel}`Name` of your channel. Users see this when they visit your channel page." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:27 +#: ../../user_documentation/channels/create_channel.md:43 +#: ../../user_documentation/channels/create_channel.md:65 +#: ../../user_documentation/channels/create_channel.md:86 +msgid "Enter the {guilabel}`Fediverse handle` of your channel. This is how other Fediverse software identifies your channel." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:28 +#: ../../user_documentation/channels/create_channel.md:44 +#: ../../user_documentation/channels/create_channel.md:66 +#: ../../user_documentation/channels/create_channel.md:87 +msgid "__Optional__ – upload a {guilabel}`Channel picture`. Users see this when they visit your channel page. Select {guilabel}`Browse…` to open a file picker." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:29 +#: ../../user_documentation/channels/create_channel.md:45 +#: ../../user_documentation/channels/create_channel.md:67 +#: ../../user_documentation/channels/create_channel.md:88 +msgid "__Optional__ – add {guilabel}`Tags` that describe your channel. Start typing in the {guilabel}`Search…` input box to find existing tags. You can also create new tags by typing them in and selecting them or hitting {kbd}`⏎ Return`." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:30 +#: ../../user_documentation/channels/create_channel.md:46 +#: ../../user_documentation/channels/create_channel.md:69 +#: ../../user_documentation/channels/create_channel.md:90 +msgid "__Optional__ – enter a {guilabel}`Description` of your channel. You can {guilabel}`Write` using [Markdown](https://www.markdownguide.org/) syntax and {guilabel}`Preview` how it will look. Users see this when they visit your channel page." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:31 +#: ../../user_documentation/channels/create_channel.md:47 +#: ../../user_documentation/channels/create_channel.md:74 +#: ../../user_documentation/channels/create_channel.md:95 +msgid "Select {guilabel}`Create channel` to create your channel." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:0 +#: ../../user_documentation/channels/create_channel.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:38 +#: ../../user_documentation/channels/create_channel.md:81 +msgid "Select the upload icon ({fa}`upload`) at the top of the screen." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:51 +msgid "That's it! You've created your artist channel. You can now [add some music to it](upload_artist.md)." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:53 +msgid "Podcast" +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:55 +msgid "To create a __Podcast__ channel:" +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:63 +#: ../../user_documentation/channels/create_channel.md:84 +msgid "Select {guilabel}`Podcasts` and select {guilabel}`Next step`. The {guilabel}`Podcast channel` form appears." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:68 +#: ../../user_documentation/channels/create_channel.md:89 +msgid "Choose the {guilabel}`Language` of your podcast." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:70 +#: ../../user_documentation/channels/create_channel.md:91 +msgid "Select the {guilabel}`Category` of your podcast. {term}`Podcatchers<Podcatcher>` use this information to sort your podcast content." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:71 +#: ../../user_documentation/channels/create_channel.md:92 +msgid "__Optional__ – select the {guilabel}`Subcategory` of your podcast." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:72 +#: ../../user_documentation/channels/create_channel.md:93 +msgid "__Optional__ – enter the {guilabel}`Owner e-mail address`. This populates the ``itunes:email`` field of your podcast's {abbr}`RSS (Really Simple Syndication)` feed." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:73 +#: ../../user_documentation/channels/create_channel.md:94 +msgid "__Optional__ – enter the {guilabel}`Owner name`. This populates the ``itunes:name`` field of your podcast's {abbr}`RSS (Really Simple Syndication)` feed." +msgstr "" + +#: ../../user_documentation/channels/create_channel.md:99 +msgid "You're done! You've created your podcast channel. Now you can [add some episodes to it](upload_podcast.md)." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/channels/delete_artist.pot b/docs/locales/gettext/user_documentation/channels/delete_artist.pot new file mode 100644 index 000000000..4d20c1e10 --- /dev/null +++ b/docs/locales/gettext/user_documentation/channels/delete_artist.pot @@ -0,0 +1,143 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/channels/delete_artist.md:1 +msgid "Delete content from an Artist channel" +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:3 +msgid "You can delete content from your artist channel. This means that your followers won't be able to listen to the deleted content any more." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:9 +msgid "Delete a track" +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:12 +msgid "Deleting a track also deletes the file from your {term}`Funkwhale pod <Pod>`. This action is irreversible." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:15 +msgid "To delete a single track from a channel:" +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:0 +#: ../../user_documentation/channels/delete_artist.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:19 +#: ../../user_documentation/channels/delete_artist.md:33 +#: ../../user_documentation/channels/delete_artist.md:57 +#: ../../user_documentation/channels/delete_artist.md:70 +msgid "Log in to your pod." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:20 +#: ../../user_documentation/channels/delete_artist.md:58 +msgid "Select the upload icon ({fa}`upload`) in the top of the sidebar." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:21 +#: ../../user_documentation/channels/delete_artist.md:35 +#: ../../user_documentation/channels/delete_artist.md:59 +#: ../../user_documentation/channels/delete_artist.md:72 +msgid "Select {guilabel}`Get started` under {guilabel}`Publish your work in a channel`. Your user profile opens." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:22 +#: ../../user_documentation/channels/delete_artist.md:36 +#: ../../user_documentation/channels/delete_artist.md:60 +#: ../../user_documentation/channels/delete_artist.md:73 +msgid "Select the channel containing the content under the {guilabel}`Channels` header. The channel's page opens." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:23 +#: ../../user_documentation/channels/delete_artist.md:37 +msgid "Select the kebab menu ({fa}`ellipsis-v`) next to the track in question. This opens the track options menu." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:24 +#: ../../user_documentation/channels/delete_artist.md:38 +msgid "Select {guilabel}`ℹ︎ Track details`. The track details page opens." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:25 +#: ../../user_documentation/channels/delete_artist.md:39 +msgid "Select the kebab menu ({fa}`ellipsis-v`) at the top of the page." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:26 +#: ../../user_documentation/channels/delete_artist.md:40 +msgid "Select {guilabel}`Delete…`. A {guilabel}`Delete this track?` warning appears." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:27 +#: ../../user_documentation/channels/delete_artist.md:41 +msgid "Select {guilabel}`Delete` to delete the track." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:0 +#: ../../user_documentation/channels/delete_artist.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:34 +#: ../../user_documentation/channels/delete_artist.md:71 +msgid "Select the upload icon ({fa}`upload`) at the top of the screen." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:45 +msgid "That's it! You've deleted your track. You can add it again by [uploading it to your channel](upload_artist.md)." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:47 +msgid "Delete an album" +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:50 +msgid "Deleting an album also deletes all tracks in the album and removes the files from the server. This action is irreversible." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:53 +msgid "Delete an album to remove all tracks it contains. To do this:" +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:61 +#: ../../user_documentation/channels/delete_artist.md:74 +msgid "Select your album in the {guilabel}`Albums` section. The album detail page opens." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:62 +#: ../../user_documentation/channels/delete_artist.md:75 +msgid "Select the kebab menu ({fa}`ellipsis-v`) to open the options menu." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:63 +#: ../../user_documentation/channels/delete_artist.md:76 +msgid "Select {guilabel}`Delete…`. A {guilabel}`Delete this album?` warning appears." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:64 +#: ../../user_documentation/channels/delete_artist.md:77 +msgid "Select {guilabel}`Delete` to delete the album." +msgstr "" + +#: ../../user_documentation/channels/delete_artist.md:81 +msgid "You're done! You've deleted the album and all the tracks it contained. You can add them again by [uploading it to your channel](upload_artist.md)." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/channels/delete_channel.pot b/docs/locales/gettext/user_documentation/channels/delete_channel.pot new file mode 100644 index 000000000..26f704904 --- /dev/null +++ b/docs/locales/gettext/user_documentation/channels/delete_channel.pot @@ -0,0 +1,79 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/channels/delete_channel.md:1 +msgid "Delete a channel" +msgstr "" + +#: ../../user_documentation/channels/delete_channel.md:4 +msgid "Deleting a channel is irreversible. If you delete a channel you also delete the content associated with it. Users won't be able to access the channel any more. You can't re-use the channel's __Fediverse handle__ for another channel." +msgstr "" + +#: ../../user_documentation/channels/delete_channel.md:7 +msgid "If you want to delete your channel, follow these steps:" +msgstr "" + +#: ../../user_documentation/channels/delete_channel.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/channels/delete_channel.md:11 +#: ../../user_documentation/channels/delete_channel.md:23 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../user_documentation/channels/delete_channel.md:12 +msgid "Select the upload icon ({fa}`upload`) in the top of the sidebar." +msgstr "" + +#: ../../user_documentation/channels/delete_channel.md:13 +#: ../../user_documentation/channels/delete_channel.md:25 +msgid "Select {guilabel}`Get started` under {guilabel}`Publish your work in a channel`. Your user profile opens." +msgstr "" + +#: ../../user_documentation/channels/delete_channel.md:14 +#: ../../user_documentation/channels/delete_channel.md:26 +msgid "Select the channel you want to delete under the {guilabel}`Channels` header. The channel's page opens." +msgstr "" + +#: ../../user_documentation/channels/delete_channel.md:15 +#: ../../user_documentation/channels/delete_channel.md:27 +msgid "Select the kebab menu ({fa}`ellipsis-v`) to show the channel options." +msgstr "" + +#: ../../user_documentation/channels/delete_channel.md:16 +#: ../../user_documentation/channels/delete_channel.md:28 +msgid "Select {guilabel}`Delete…`. A {guilabel}`Delete this Channel?` warning message appears" +msgstr "" + +#: ../../user_documentation/channels/delete_channel.md:17 +#: ../../user_documentation/channels/delete_channel.md:29 +msgid "Select {guilabel}`Delete`." +msgstr "" + +#: ../../user_documentation/channels/delete_channel.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/channels/delete_channel.md:24 +msgid "Select the upload icon ({fa}`upload`) at the top of the screen." +msgstr "" + +#: ../../user_documentation/channels/delete_channel.md:33 +msgid "That's it! You deleted your channel." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/channels/delete_podcast.pot b/docs/locales/gettext/user_documentation/channels/delete_podcast.pot new file mode 100644 index 000000000..5f6ce4f1a --- /dev/null +++ b/docs/locales/gettext/user_documentation/channels/delete_podcast.pot @@ -0,0 +1,143 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/channels/delete_podcast.md:1 +msgid "Delete content from a Podcast channel" +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:3 +msgid "You can delete content from your podcast channel. This means that your followers won't be able to listen to the deleted content any more." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:9 +msgid "Delete an episode" +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:12 +msgid "Deleting an episode also deletes the file from the {term}`pod`. This action is irreversible." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:15 +msgid "To delete a single episode from a channel:" +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:0 +#: ../../user_documentation/channels/delete_podcast.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:19 +#: ../../user_documentation/channels/delete_podcast.md:33 +#: ../../user_documentation/channels/delete_podcast.md:57 +#: ../../user_documentation/channels/delete_podcast.md:70 +msgid "Log in to your pod." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:20 +#: ../../user_documentation/channels/delete_podcast.md:58 +msgid "Select the upload icon ({fa}`upload`) in the top of the sidebar." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:21 +#: ../../user_documentation/channels/delete_podcast.md:35 +#: ../../user_documentation/channels/delete_podcast.md:59 +#: ../../user_documentation/channels/delete_podcast.md:72 +msgid "Select {guilabel}`Get started` under {guilabel}`Publish your work in a channel`. Your user profile opens." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:22 +#: ../../user_documentation/channels/delete_podcast.md:36 +#: ../../user_documentation/channels/delete_podcast.md:60 +#: ../../user_documentation/channels/delete_podcast.md:73 +msgid "Select the channel containing the content under the {guilabel}`Channels` header. The channel's page opens." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:23 +#: ../../user_documentation/channels/delete_podcast.md:37 +msgid "Select the kebab menu ({fa}`ellipsis-v`) next to the episode in question. This opens the track options menu." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:24 +#: ../../user_documentation/channels/delete_podcast.md:38 +msgid "Select {guilabel}`ℹ︎ Episode details`. The episode details page opens." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:25 +#: ../../user_documentation/channels/delete_podcast.md:39 +msgid "Select the kebab menu ({fa}`ellipsis-v`) at the top of the page." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:26 +#: ../../user_documentation/channels/delete_podcast.md:40 +msgid "Select {guilabel}`Delete…`. A {guilabel}`Delete this track?` warning appears." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:27 +#: ../../user_documentation/channels/delete_podcast.md:41 +msgid "Select {guilabel}`Delete` to delete the episode." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:0 +#: ../../user_documentation/channels/delete_podcast.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:34 +#: ../../user_documentation/channels/delete_podcast.md:71 +msgid "Select the upload icon ({fa}`upload`) at the top of the screen." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:45 +msgid "That's it! You've deleted your episode. You can add it again by [uploading it to your channel](upload_podcast.md)." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:47 +msgid "Delete a series" +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:50 +msgid "Deleting a series also deletes all episodes in the series and deletes the files from the {term}`pod`. This action is irreversible." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:53 +msgid "Delete a series to remove all episodes it contains. To do this:" +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:61 +#: ../../user_documentation/channels/delete_podcast.md:74 +msgid "Select your series in the {guilabel}`Series` section. The series detail page opens." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:62 +#: ../../user_documentation/channels/delete_podcast.md:75 +msgid "Select the kebab menu ({fa}`ellipsis-v`) to open the options menu." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:63 +#: ../../user_documentation/channels/delete_podcast.md:76 +msgid "Select {guilabel}`Delete…`. A {guilabel}`Delete this album?` warning appears." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:64 +#: ../../user_documentation/channels/delete_podcast.md:77 +msgid "Select {guilabel}`Delete` to delete the series." +msgstr "" + +#: ../../user_documentation/channels/delete_podcast.md:81 +msgid "You're done! You've deleted the series and all the episodes it contained. You can add them again by [uploading it to your channel](upload_podcast.md)." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/channels/edit_channel.pot b/docs/locales/gettext/user_documentation/channels/edit_channel.pot new file mode 100644 index 000000000..015d5bb23 --- /dev/null +++ b/docs/locales/gettext/user_documentation/channels/edit_channel.pot @@ -0,0 +1,179 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/channels/edit_channel.md:1 +msgid "Edit a channel" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:4 +msgid "You can't change a channel's __Fediverse handle__." +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:7 +msgid "Channels are like user profiles on other {term}`Fediverse` software. This means you can edit their details at any time to reflect changes you've made." +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:9 +msgid "You can change different details depending on what type of channel you are editing:" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:15 +msgid "Edit an Artist channel" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:17 +msgid "To edit an __Artist channel__:" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:0 +#: ../../user_documentation/channels/edit_channel.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:21 +#: ../../user_documentation/channels/edit_channel.md:38 +#: ../../user_documentation/channels/edit_channel.md:61 +#: ../../user_documentation/channels/edit_channel.md:83 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:22 +#: ../../user_documentation/channels/edit_channel.md:62 +msgid "Select the upload icon ({fa}`upload`) in the top of the sidebar." +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:23 +#: ../../user_documentation/channels/edit_channel.md:40 +#: ../../user_documentation/channels/edit_channel.md:63 +#: ../../user_documentation/channels/edit_channel.md:85 +msgid "Select {guilabel}`Get started` under {guilabel}`Publish your work in a channel`. Your user profile opens." +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:24 +#: ../../user_documentation/channels/edit_channel.md:41 +#: ../../user_documentation/channels/edit_channel.md:64 +#: ../../user_documentation/channels/edit_channel.md:86 +msgid "Select the channel you want to delete under the {guilabel}`Channels` header. The channel's page opens." +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:25 +#: ../../user_documentation/channels/edit_channel.md:42 +#: ../../user_documentation/channels/edit_channel.md:65 +#: ../../user_documentation/channels/edit_channel.md:87 +msgid "Select the kebab menu ({fa}`ellipsis-v`) to show the channel options." +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:26 +#: ../../user_documentation/channels/edit_channel.md:43 +#: ../../user_documentation/channels/edit_channel.md:66 +#: ../../user_documentation/channels/edit_channel.md:88 +msgid "Select {guilabel}`Edit…`. The {guilabel}`Artist channel` form appears." +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:27 +#: ../../user_documentation/channels/edit_channel.md:44 +#: ../../user_documentation/channels/edit_channel.md:67 +#: ../../user_documentation/channels/edit_channel.md:89 +msgid "Change the details in any of these fields:" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:28 +#: ../../user_documentation/channels/edit_channel.md:45 +#: ../../user_documentation/channels/edit_channel.md:68 +#: ../../user_documentation/channels/edit_channel.md:90 +msgid "{guilabel}`Name`" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:29 +#: ../../user_documentation/channels/edit_channel.md:46 +#: ../../user_documentation/channels/edit_channel.md:69 +#: ../../user_documentation/channels/edit_channel.md:91 +msgid "{guilabel}`Channel Picture`" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:30 +#: ../../user_documentation/channels/edit_channel.md:47 +#: ../../user_documentation/channels/edit_channel.md:70 +#: ../../user_documentation/channels/edit_channel.md:92 +msgid "{guilabel}`Tags`" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:31 +#: ../../user_documentation/channels/edit_channel.md:48 +#: ../../user_documentation/channels/edit_channel.md:72 +#: ../../user_documentation/channels/edit_channel.md:94 +msgid "{guilabel}`Description`" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:32 +#: ../../user_documentation/channels/edit_channel.md:49 +#: ../../user_documentation/channels/edit_channel.md:77 +#: ../../user_documentation/channels/edit_channel.md:99 +msgid "Select {guilabel}`Update channel` to save your changes." +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:0 +#: ../../user_documentation/channels/edit_channel.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:39 +#: ../../user_documentation/channels/edit_channel.md:84 +msgid "Select the upload icon ({fa}`upload`) at the top of the screen." +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:53 +msgid "That's it! You've updated your channel details. Users see the new details when they visit your channel page." +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:55 +msgid "Edit a Podcast channel" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:57 +msgid "To edit a __Podcast channel__:" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:71 +#: ../../user_documentation/channels/edit_channel.md:93 +msgid "{guilabel}`Language`" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:73 +#: ../../user_documentation/channels/edit_channel.md:95 +msgid "{guilabel}`Category`" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:74 +#: ../../user_documentation/channels/edit_channel.md:96 +msgid "{guilabel}`Subcategory`" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:75 +#: ../../user_documentation/channels/edit_channel.md:97 +msgid "{guilabel}`Owner e-mail address`" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:76 +#: ../../user_documentation/channels/edit_channel.md:98 +msgid "{guilabel}`Owner name`" +msgstr "" + +#: ../../user_documentation/channels/edit_channel.md:103 +msgid "You're done! Users see the new details when they visit your channel page. The changes also reflect on your podcast's {abbr}`RSS (Really Simple Syndication)` feed." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/channels/follow_channel.pot b/docs/locales/gettext/user_documentation/channels/follow_channel.pot new file mode 100644 index 000000000..a043d2eee --- /dev/null +++ b/docs/locales/gettext/user_documentation/channels/follow_channel.pot @@ -0,0 +1,131 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/channels/follow_channel.md:1 +msgid "Follow a channel" +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:3 +msgid "Get access to a channel's content by following it. Following a channel makes its content visible to all users on your {term}`pod`." +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:5 +msgid "You can follow channels in a few different ways:" +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:11 +msgid "Follow a channel on your pod" +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:13 +msgid "If a user on your pod follows a channel or has published a channel, you can follow it from your pod. To do this:" +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:15 +#: ../../user_documentation/channels/follow_channel.md:53 +msgid "Select the channel you want to follow. The channel details page opens." +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:16 +msgid "Select the {guilabel}`Subscribe` button. The label changes to {guilabel}`Subscribed`." +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:18 +msgid "That's it! You've subscribed to the channel. You can see the channel in the {guilabel}`Channels` page." +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:20 +msgid "Follow a remote channel" +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:22 +msgid "To follow a channel located on another pod, you need its __Federation handle__. A __Federation handle__ uses the following format: ``@{username}@{domain}``. Once you have the channel's __Federation handle__, you can follow it from the {guilabel}`Channels` page. To do this:" +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:26 +msgid "Select {guilabel}`Channels` in the sidebar. The {guilabel}`Channels` page opens." +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:27 +#: ../../user_documentation/channels/follow_channel.md:39 +msgid "Select {guilabel}`+ Add new` at the top of the page. The {guilabel}`Subscriptions` screen appears." +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:28 +#: ../../user_documentation/channels/follow_channel.md:40 +msgid "Select {guilabel}`Fediverse`." +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:29 +#: ../../user_documentation/channels/follow_channel.md:41 +msgid "Enter the channel's __Federation handle__ in the {guilabel}`Fediverse object` input." +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:30 +#: ../../user_documentation/channels/follow_channel.md:42 +msgid "Select {guilabel}`Subscribe`. The channel details page appears." +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:31 +#: ../../user_documentation/channels/follow_channel.md:43 +msgid "Select the {guilabel}`Subscribe}` button. The label changes to {guilabel}`Subscribed`." +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:37 +msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar." +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:38 +msgid "Select {guilabel}`Channels`. The {guilabel}`Channels` page opens." +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:47 +msgid "That's it! You can now see the channel's content on your pod. Other users of your pod can also see this channel." +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:49 +msgid "Follow a Funkwhale podcast with a podcatcher" +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:51 +msgid "You can follow podcasts published in channels using a standard podcatcher. To do this:" +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:54 +msgid "Select the feed button ({fa}`feed`). The {guilabel}`Subscribe to this channel` window appears." +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:55 +msgid "Select {guilabel}`Copy` under the {guilabel}`Subscribe via RSS` to copy the channel's {abbr}`RSS (Really Simple Syndication)` feed URL." +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:56 +msgid "Paste the URL in your podcatcher." +msgstr "" + +#: ../../user_documentation/channels/follow_channel.md:58 +msgid "That's it! Your podcatcher fetches the podcast details from Funkwhale." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/channels/index.pot b/docs/locales/gettext/user_documentation/channels/index.pot new file mode 100644 index 000000000..4a956e03f --- /dev/null +++ b/docs/locales/gettext/user_documentation/channels/index.pot @@ -0,0 +1,56 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/channels/index.md:12 +#: ../../user_documentation/channels/index.md:12 +msgid "Manage your channels" +msgstr "" + +#: ../../user_documentation/channels/index.md:24 +#: ../../user_documentation/channels/index.md:24 +msgid "Manage channel content" +msgstr "" + +#: ../../user_documentation/channels/index.md:37 +#: ../../user_documentation/channels/index.md:37 +msgid "Follow channels" +msgstr "" + +#: ../../user_documentation/channels/index.md:1 +msgid "Channels" +msgstr "" + +#: ../../user_documentation/channels/index.md:3 +msgid "Use channels to publish your own audio content on Funkwhale. Channels enable you to create and share your creations with the whole {term}`Fediverse`." +msgstr "" + +#: ../../user_documentation/channels/index.md:5 +msgid "Funkwhale supports two types of channel:" +msgstr "" + +#: ../../user_documentation/channels/index.md:7 +msgid "__Podcasts__ – broadcast your podcast over the Fediverse. Listeners can also use their favorite {term}`podcatcher` to listen to podcasts using {abbr}`RSS (Really Simple Syndication)`." +msgstr "" + +#: ../../user_documentation/channels/index.md:8 +msgid "__Artist Discography__ – upload your own music and create a following." +msgstr "" + +#: ../../user_documentation/channels/index.md:10 +msgid "Follow the guides in this section to get started." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/channels/subscribe_rss.pot b/docs/locales/gettext/user_documentation/channels/subscribe_rss.pot new file mode 100644 index 000000000..baa63321e --- /dev/null +++ b/docs/locales/gettext/user_documentation/channels/subscribe_rss.pot @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/channels/subscribe_rss.md:1 +msgid "Subscribe to an RSS feed" +msgstr "" + +#: ../../user_documentation/channels/subscribe_rss.md:4 +msgid "Other users on your pod can't see podcasts you import using RSS. They need to subscribe to the feed themselves." +msgstr "" + +#: ../../user_documentation/channels/subscribe_rss.md:7 +msgid "You can use Funkwhale as a {term}`podcatcher` to listen to your favorite podcasts. Funkwhale can read {abbr}`RSS (Really Simple Syndication)` feeds to import podcasts. To add an RSS feed to Funkwhale:" +msgstr "" + +#: ../../user_documentation/channels/subscribe_rss.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/channels/subscribe_rss.md:11 +msgid "Select {guilabel}`Channels` in the sidebar. The {guilabel}`Channels` page opens." +msgstr "" + +#: ../../user_documentation/channels/subscribe_rss.md:12 +#: ../../user_documentation/channels/subscribe_rss.md:23 +msgid "Select {guilabel}`+ Add new` at the top of the page. The {guilabel}`Subscriptions` screen appears." +msgstr "" + +#: ../../user_documentation/channels/subscribe_rss.md:13 +#: ../../user_documentation/channels/subscribe_rss.md:24 +msgid "Select {guilabel}`RSS`." +msgstr "" + +#: ../../user_documentation/channels/subscribe_rss.md:14 +#: ../../user_documentation/channels/subscribe_rss.md:25 +msgid "Enter the URL of the RSS feed in the {guilabel}`RSS feed location` input." +msgstr "" + +#: ../../user_documentation/channels/subscribe_rss.md:15 +#: ../../user_documentation/channels/subscribe_rss.md:26 +msgid "Select {guilabel}`Subscribe`." +msgstr "" + +#: ../../user_documentation/channels/subscribe_rss.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/channels/subscribe_rss.md:21 +msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar." +msgstr "" + +#: ../../user_documentation/channels/subscribe_rss.md:22 +msgid "Select {guilabel}`Channels`. The {guilabel}`Channels` page opens." +msgstr "" + +#: ../../user_documentation/channels/subscribe_rss.md:30 +msgid "That's it! Your favorite podcast is now available in the {guilabel}`Channels` page. Funkwhale updates the feed to make sure you always have the latest episodes." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/channels/upload_artist.pot b/docs/locales/gettext/user_documentation/channels/upload_artist.pot new file mode 100644 index 000000000..b515c21d4 --- /dev/null +++ b/docs/locales/gettext/user_documentation/channels/upload_artist.pot @@ -0,0 +1,294 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/channels/upload_artist.md:1 +msgid "Upload content to an Artist channel" +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:3 +msgid "Once you have [created a channel](create_channel.md), you can start to add content to it. Users who follow your channel can see and play your content from their {term}`pods <Pod>`." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:5 +msgid "You can also create albums to organize your channel content." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:11 +msgid "Create an album (optional)" +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:13 +msgid "Albums are a good way of organizing your content. You can create as many albums as you want. To create a new album:" +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:0 +#: ../../user_documentation/channels/upload_artist.md:0 +#: ../../user_documentation/channels/upload_artist.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:17 +#: ../../user_documentation/channels/upload_artist.md:29 +#: ../../user_documentation/channels/upload_artist.md:61 +#: ../../user_documentation/channels/upload_artist.md:78 +#: ../../user_documentation/channels/upload_artist.md:115 +#: ../../user_documentation/channels/upload_artist.md:132 +msgid "Log in to your pod." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:18 +#: ../../user_documentation/channels/upload_artist.md:62 +#: ../../user_documentation/channels/upload_artist.md:116 +msgid "Select the upload icon ({fa}`upload`) in the top of the sidebar." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:19 +#: ../../user_documentation/channels/upload_artist.md:31 +#: ../../user_documentation/channels/upload_artist.md:63 +#: ../../user_documentation/channels/upload_artist.md:80 +#: ../../user_documentation/channels/upload_artist.md:117 +#: ../../user_documentation/channels/upload_artist.md:134 +msgid "Select {guilabel}`Get started` under {guilabel}`Publish your work in a channel`. Your user profile opens." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:20 +#: ../../user_documentation/channels/upload_artist.md:32 +msgid "Select the channel you want to add an album to under the {guilabel}`Channels` header. The channel's page opens." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:21 +#: ../../user_documentation/channels/upload_artist.md:33 +msgid "Select {guilabel}`+ Add new` next to the {guilabel}`Albums` section. A {guilabel}`New album` screen appears." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:22 +#: ../../user_documentation/channels/upload_artist.md:34 +msgid "Enter the {guilabel}`Title` of your album." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:23 +#: ../../user_documentation/channels/upload_artist.md:35 +msgid "Select {guilabel}`Create` to create your new album. The album appears on the screen." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:0 +#: ../../user_documentation/channels/upload_artist.md:0 +#: ../../user_documentation/channels/upload_artist.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:30 +#: ../../user_documentation/channels/upload_artist.md:79 +#: ../../user_documentation/channels/upload_artist.md:133 +msgid "Select the upload icon ({fa}`upload`) at the top of the screen." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:39 +msgid "Once you've created your album, you can add some details to it. To do this:" +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:41 +msgid "Select the album. The album details screen opens." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:42 +msgid "Select the kebab menu ({fa}`ellipsis-v`) to show the album options." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:43 +msgid "Select {guilabel}`Edit`. The {guilabel}`Edit this album` screen opens." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:44 +#: ../../user_documentation/channels/upload_artist.md:97 +msgid "Change the details in any of these fields:" +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:45 +msgid "{guilabel}`Title` – the title of the album." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:46 +msgid "{guilabel}`Description` – a description of the album." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:47 +msgid "{guilabel}`Release date` – the release date of the album." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:48 +msgid "{guilabel}`Cover` – the cover art of the album." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:49 +msgid "{guilabel}`Tags` – the genre of the album." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:50 +msgid "__Optional__ – enter a {guilabel}`Summary` of your changes." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:51 +msgid "Select {guilabel}`Submit and apply edit` to save your changes." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:53 +msgid "That's it! You can now add content to your album." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:55 +msgid "Add your content" +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:57 +msgid "To add content to your channel:" +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:64 +#: ../../user_documentation/channels/upload_artist.md:81 +#: ../../user_documentation/channels/upload_artist.md:118 +#: ../../user_documentation/channels/upload_artist.md:135 +msgid "Select the channel you want to add content to under the {guilabel}`Channels` header. The channel's page opens." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:65 +#: ../../user_documentation/channels/upload_artist.md:82 +#: ../../user_documentation/channels/upload_artist.md:119 +#: ../../user_documentation/channels/upload_artist.md:136 +msgid "Select {guilabel}`⇧ Upload`. The {guilabel}`Publish audio` screen appears." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:66 +#: ../../user_documentation/channels/upload_artist.md:83 +#: ../../user_documentation/channels/upload_artist.md:120 +#: ../../user_documentation/channels/upload_artist.md:137 +msgid "Select the {guilabel}`Channel` you want to publish your audio in. This populates with the channel you selected by default." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:67 +#: ../../user_documentation/channels/upload_artist.md:84 +#: ../../user_documentation/channels/upload_artist.md:121 +#: ../../user_documentation/channels/upload_artist.md:138 +msgid "__Optional__ – choose which [{guilabel}`Album`](#create-an-album-optional) you want to publish the music in." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:68 +#: ../../user_documentation/channels/upload_artist.md:85 +#: ../../user_documentation/channels/upload_artist.md:122 +#: ../../user_documentation/channels/upload_artist.md:139 +msgid "__Optional__ – choose a {guilabel}`License` to apply to your music. Funkwhale supports [Creative Commons](https://creativecommons.org/) licenses." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:69 +#: ../../user_documentation/channels/upload_artist.md:86 +#: ../../user_documentation/channels/upload_artist.md:123 +#: ../../user_documentation/channels/upload_artist.md:140 +msgid "Select {guilabel}`Next step`. The {guilabel}`Files to upload` screen appears." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:70 +msgid "Click on the section marked {guilabel}`Browse…` to open a file picker, or drag and drop your files on to it." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:71 +msgid "If you opened the file picker, select the files you want to upload and confirm." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:72 +#: ../../user_documentation/channels/upload_artist.md:88 +msgid "The files appear at the top when you upload them. Select {guilabel}`Remove` to remove them." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:87 +msgid "Click on the section marked {guilabel}`Browse…` to open a file picker. Select the files you want to upload and confirm." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:92 +msgid "Edit your uploads" +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:94 +msgid "Once you have uploaded your files, you can change their details. To do this:" +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:96 +msgid "Select the edit icon ({fa}`edit`) to edit the track details. The {guilabel}`Upload details` screen appears." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:98 +msgid "{guilabel}`Title` – the title of the track" +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:99 +msgid "{guilabel}`Track Picture` – the picture that shows up next to the track." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:100 +msgid "{guilabel}`Tags` – the genre of the track." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:101 +msgid "{guilabel}`Position` – the position of the track in the album." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:102 +msgid "{guilabel}`Description` – a description of the track." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:103 +msgid "Select {guilabel}`Update` to save the track details." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:104 +msgid "Do this for all tracks you want to publish." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:105 +msgid "Select {guilabel}`Publish` to publish the content. To save the content to [upload later](#continue-your-upload-later), select {menuselection}`Down arrow --> Finish later`." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:107 +msgid "That's it! You've added content to your channel. Your followers can now listen to your content from their pods." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:109 +msgid "Continue your upload later" +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:111 +msgid "If you selected {guilabel}`Finish later`, Funkwhale saves your files and edits. You can continue your upload later by doing the following:" +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:124 +#: ../../user_documentation/channels/upload_artist.md:141 +msgid "If there are pending uploads, a {guilabel}`You have some draft uploads pending publication` note shows. Select {guilabel}`Resume` to resume your upload." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:125 +#: ../../user_documentation/channels/upload_artist.md:142 +msgid "[Add new files](#add-your-content) or [edit the pending files](#edit-your-uploads)." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:126 +#: ../../user_documentation/channels/upload_artist.md:143 +msgid "Once you're finished, select {guilabel}`Publish` to publish your music." +msgstr "" + +#: ../../user_documentation/channels/upload_artist.md:147 +msgid "Congratulations! You've finished uploading the saved content. Your followers can now listen to your content from their pods." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/channels/upload_podcast.pot b/docs/locales/gettext/user_documentation/channels/upload_podcast.pot new file mode 100644 index 000000000..c30a10222 --- /dev/null +++ b/docs/locales/gettext/user_documentation/channels/upload_podcast.pot @@ -0,0 +1,294 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/channels/upload_podcast.md:1 +msgid "Upload content to an Podcast channel" +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:3 +msgid "Once you have [created a channel](create_channel.md), you can start to add content to it. Users who follow your channel can see and play your content from their {term}`pods <Pod>`." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:5 +msgid "You can also create series to organize your channel content." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:11 +msgid "Create a series (optional)" +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:13 +msgid "Series are a good way of organizing your content. You can create as many series as you want. To create a new series:" +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:0 +#: ../../user_documentation/channels/upload_podcast.md:0 +#: ../../user_documentation/channels/upload_podcast.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:17 +#: ../../user_documentation/channels/upload_podcast.md:29 +#: ../../user_documentation/channels/upload_podcast.md:61 +#: ../../user_documentation/channels/upload_podcast.md:78 +#: ../../user_documentation/channels/upload_podcast.md:115 +#: ../../user_documentation/channels/upload_podcast.md:132 +msgid "Log in to your pod." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:18 +#: ../../user_documentation/channels/upload_podcast.md:62 +#: ../../user_documentation/channels/upload_podcast.md:116 +msgid "Select the upload icon ({fa}`upload`) in the top of the sidebar." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:19 +#: ../../user_documentation/channels/upload_podcast.md:31 +#: ../../user_documentation/channels/upload_podcast.md:63 +#: ../../user_documentation/channels/upload_podcast.md:80 +#: ../../user_documentation/channels/upload_podcast.md:117 +#: ../../user_documentation/channels/upload_podcast.md:134 +msgid "Select {guilabel}`Get started` under {guilabel}`Publish your work in a channel`. Your user profile opens." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:20 +#: ../../user_documentation/channels/upload_podcast.md:32 +msgid "Select the channel you want to add a series to under the {guilabel}`Channels` header. The channel's page opens." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:21 +#: ../../user_documentation/channels/upload_podcast.md:33 +msgid "Select {guilabel}`+ Add new` next to the {guilabel}`Series` section. A {guilabel}`New album` screen appears." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:22 +#: ../../user_documentation/channels/upload_podcast.md:34 +msgid "Enter the {guilabel}`Title` of your series." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:23 +#: ../../user_documentation/channels/upload_podcast.md:35 +msgid "Select {guilabel}`Create` to create your new series. The series appears on the screen." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:0 +#: ../../user_documentation/channels/upload_podcast.md:0 +#: ../../user_documentation/channels/upload_podcast.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:30 +#: ../../user_documentation/channels/upload_podcast.md:79 +#: ../../user_documentation/channels/upload_podcast.md:133 +msgid "Select the upload icon ({fa}`upload`) at the top of the screen." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:39 +msgid "Once you've created your series, you can add some details to it. To do this:" +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:41 +msgid "Select the series. The series details screen opens." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:42 +msgid "Select the kebab menu ({fa}`ellipsis-v`) to show the album options." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:43 +msgid "Select {guilabel}`✎ Edit`. The {guilabel}`Edit this album` screen opens." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:44 +#: ../../user_documentation/channels/upload_podcast.md:97 +msgid "Change the details in any of these fields:" +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:45 +msgid "{guilabel}`Title` – the title of the series." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:46 +msgid "{guilabel}`Description` – a description of the series." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:47 +msgid "{guilabel}`Release date` – the date on which the series aired." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:48 +msgid "{guilabel}`Cover` – a cover image for the series." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:49 +msgid "{guilabel}`Tags` – tags relating to the series' content." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:50 +msgid "__Optional__ – enter a {guilabel}`Summary` of your changes." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:51 +msgid "Select {guilabel}`Submit and apply edit` to save your changes." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:53 +msgid "That's it! Your series is ready to use." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:55 +msgid "Add your content" +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:57 +msgid "To add content to your channel:" +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:64 +#: ../../user_documentation/channels/upload_podcast.md:81 +#: ../../user_documentation/channels/upload_podcast.md:118 +#: ../../user_documentation/channels/upload_podcast.md:135 +msgid "Select the channel you want to add content to under the {guilabel}`Channels` header. The channel's page opens." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:65 +#: ../../user_documentation/channels/upload_podcast.md:82 +#: ../../user_documentation/channels/upload_podcast.md:119 +#: ../../user_documentation/channels/upload_podcast.md:136 +msgid "Select {guilabel}`⇧ Upload`. The {guilabel}`Publish audio` screen appears." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:66 +#: ../../user_documentation/channels/upload_podcast.md:83 +#: ../../user_documentation/channels/upload_podcast.md:120 +#: ../../user_documentation/channels/upload_podcast.md:137 +msgid "Select the {guilabel}`Channel` you want to publish your audio in. This populates with the channel you selected by default." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:67 +#: ../../user_documentation/channels/upload_podcast.md:84 +#: ../../user_documentation/channels/upload_podcast.md:121 +#: ../../user_documentation/channels/upload_podcast.md:138 +msgid "__Optional__ – choose which [{guilabel}`Series`](#create-a-series-optional) you want to publish the content in." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:68 +#: ../../user_documentation/channels/upload_podcast.md:85 +#: ../../user_documentation/channels/upload_podcast.md:122 +#: ../../user_documentation/channels/upload_podcast.md:139 +msgid "__Optional__ – choose a {guilabel}`License` to apply to your music. Funkwhale supports [Creative Commons](https://creativecommons.org/) licenses." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:69 +#: ../../user_documentation/channels/upload_podcast.md:86 +#: ../../user_documentation/channels/upload_podcast.md:123 +#: ../../user_documentation/channels/upload_podcast.md:140 +msgid "Select {guilabel}`Next step`. The {guilabel}`Files to upload` screen appears." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:70 +msgid "Click on the section marked {guilabel}`Browse…` to open a file picker, or drag and drop your files on to it." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:71 +msgid "If you opened the file picker, select the files you want to upload and confirm." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:72 +#: ../../user_documentation/channels/upload_podcast.md:88 +msgid "The files appear at the top when you upload them. Select {guilabel}`Remove` to remove them." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:87 +msgid "Click on the section marked {guilabel}`Browse…` to open a file picker. Select the files you want to upload and confirm." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:92 +msgid "Edit your uploads" +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:94 +msgid "Once you have uploaded your files, you can change their details. To do this:" +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:96 +msgid "Select the edit icon ({fa}`edit`) to edit the track details. The {guilabel}`Upload details` screen appears." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:98 +msgid "{guilabel}`Title` – the title of the episode" +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:99 +msgid "{guilabel}`Track Picture` – the picture that shows up next to the episode." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:100 +msgid "{guilabel}`Tags` – tags relating to the episode content." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:101 +msgid "{guilabel}`Position` – the position of the track in the series." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:102 +msgid "{guilabel}`Description` – a description of the track." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:103 +msgid "Select {guilabel}`Update` to save the track details." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:104 +msgid "Do this for all episodes you want to publish." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:105 +msgid "Select {guilabel}`Publish` to publish the content. To save the content to upload later, select {menuselection}`Down arrow --> Finish later`." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:107 +msgid "That's it! You've added content to your channel. Your followers can now listen to your content from their pods or podcatchers." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:109 +msgid "Continue your upload later" +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:111 +msgid "If you selected {guilabel}`Finish later`, Funkwhale saves your files and edits. You can continue your upload later by doing the following:" +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:124 +#: ../../user_documentation/channels/upload_podcast.md:141 +msgid "If there are pending uploads, a {guilabel}`You have some draft uploads pending publication` note shows. Select {guilabel}`Resume` to resume your upload." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:125 +#: ../../user_documentation/channels/upload_podcast.md:142 +msgid "[Add new files](#add-your-content) or [edit the pending files](#edit-your-uploads)." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:126 +#: ../../user_documentation/channels/upload_podcast.md:143 +msgid "Once you're finished, select {guilabel}`Publish` to publish your music." +msgstr "" + +#: ../../user_documentation/channels/upload_podcast.md:147 +msgid "Congratulations! You've finished uploading the saved content. Your followers can now listen to your content from their pods." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/favorites/add_favorites.pot b/docs/locales/gettext/user_documentation/favorites/add_favorites.pot new file mode 100644 index 000000000..ea1aa6de0 --- /dev/null +++ b/docs/locales/gettext/user_documentation/favorites/add_favorites.pot @@ -0,0 +1,112 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/favorites/add_favorites.md:1 +msgid "Add tracks to your favorites" +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:3 +msgid "You can add tracks to your favorites list at any time. There are a few ways you can add tracks to your favorites:" +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:9 +msgid "Add the currently playing track" +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:11 +msgid "To add the currently playing track to your favorites, do one of the following:" +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:0 +#: ../../user_documentation/favorites/add_favorites.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:15 +msgid "Select the gray heart icon ({fa}`heart`) on the player bar. The heart turns pink to show that the track is in your favorites." +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:16 +msgid "Hit the {kbd}`l` key on your keyboard. The heart icon on the player turns pink to show that the track is in your favorites." +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:0 +#: ../../user_documentation/favorites/add_favorites.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:22 +msgid "Select the player at the bottom of the screen to expand it. Select the gray heart icon ({fa}`heart`) under the track art. The heart turns pink to show that the track is in your favorites." +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:26 +msgid "That's all there is to it! The currently playing track is now in your favorites list." +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:28 +msgid "Add a track from a track table" +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:30 +msgid "You can favorite tracks on any page with a track table. This includes artist pages, album pages, and the search page. To favorite tracks on the track table:" +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:34 +#: ../../user_documentation/favorites/add_favorites.md:42 +msgid "Find your track in a track table." +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:35 +msgid "Hover over the track row. A gray heart icon ({fa}`heart`) appears." +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:36 +msgid "Select the heart icon. The heart turns pink to show that the track is in your favorites." +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:43 +msgid "Tap on the kebab menu ({fa}`ellipsis-v`) on the track row. The track menu opens." +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:44 +msgid "Select {guilabel}`Add to favorites`. The heart turns pink to show that the track is in your favorites." +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:48 +msgid "You're done! The track is in your favorites." +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:50 +msgid "Add a track from the track details page" +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:52 +msgid "You can add a track to your favorites from its details page. To do this:" +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:54 +msgid "Go to the track's details page." +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:55 +msgid "Select the gray heart icon ({fa}`heart`) at the top of the screen. The heart turns pink to show that the track is in your favorites." +msgstr "" + +#: ../../user_documentation/favorites/add_favorites.md:57 +msgid "That's it! The track is in your favorites." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/favorites/index.pot b/docs/locales/gettext/user_documentation/favorites/index.pot new file mode 100644 index 000000000..058493d5d --- /dev/null +++ b/docs/locales/gettext/user_documentation/favorites/index.pot @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/favorites/index.md:5 +#: ../../user_documentation/favorites/index.md:5 +msgid "Manage your favorites" +msgstr "" + +#: ../../user_documentation/favorites/index.md:1 +msgid "Favorites" +msgstr "" + +#: ../../user_documentation/favorites/index.md:3 +msgid "Your favorites is a list of tracks you've liked while listening on Funkwhale. Follow the guides in this section to manage your favorites." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/favorites/remove_favorites.pot b/docs/locales/gettext/user_documentation/favorites/remove_favorites.pot new file mode 100644 index 000000000..9e4fb3755 --- /dev/null +++ b/docs/locales/gettext/user_documentation/favorites/remove_favorites.pot @@ -0,0 +1,153 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/favorites/remove_favorites.md:1 +msgid "Remove tracks from your favorites" +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:3 +msgid "If you no longer want a track in your favorites list, you can remove it. There are a few ways to do this." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:9 +msgid "Remove tracks from your favorites page" +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:11 +msgid "The easiest way to remove tracks from your favorites is using the __Favorites__ page. This page includes a list of all your favorites. To remove a track from this page:" +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:0 +#: ../../user_documentation/favorites/remove_favorites.md:0 +#: ../../user_documentation/favorites/remove_favorites.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:15 +msgid "Select {guilabel}`Favorites` under the {guilabel}`My Library` section in the sidebar. The {guilabel}`Favorites` page opens." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:16 +#: ../../user_documentation/favorites/remove_favorites.md:26 +msgid "Use the filters to find the track you want to remove." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:17 +msgid "Select the pink heart icon ({fa}`heart`) next to the track you want to remove. The heart turns gray to show that the track isn't in your favorites." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:0 +#: ../../user_documentation/favorites/remove_favorites.md:0 +#: ../../user_documentation/favorites/remove_favorites.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:23 +msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:24 +msgid "Select {guilabel}`My Library`." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:25 +msgid "Select {guilabel}`Favorites`. The {guilabel}`Favorites` page opens." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:27 +#: ../../user_documentation/favorites/remove_favorites.md:68 +msgid "Tap on the kebab menu ({fa}`ellipsis-v`) on the track row. The track menu opens." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:28 +#: ../../user_documentation/favorites/remove_favorites.md:69 +msgid "Select {guilabel}`Remove from favorites`. The heart turns gray to show that the track isn't in your favorites." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:32 +msgid "That's all there is to it! You've removed the track from your favorites." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:34 +msgid "Remove the currently playing track from your favorites" +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:36 +msgid "If you favorited the current track and want to remove it from your favorites, do one of the following:" +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:40 +msgid "Select the pink heart icon ({fa}`heart`) on the player bar. The heart turns gray to show that the track isn't in your favorites." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:41 +msgid "Hit the {kbd}`l` key on your keyboard. The heart icon on the player turns gray to show that the track isn't in your favorites." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:47 +msgid "Select the player at the bottom of the screen to expand it. Select the pink heart icon ({fa}`heart`) under the track art. The heart turns gray to show that the track isn't in your favorites." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:51 +msgid "That's it! You've removed the currently playing track from your favorites." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:53 +msgid "Remove a track from a track table" +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:55 +msgid "You can remove tracks on track tables from your favorites. You can find track tables on artist pages, album pages, and the search page. To remove a track on a track table from your favorites:" +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:59 +#: ../../user_documentation/favorites/remove_favorites.md:67 +msgid "Find your track in a track table." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:60 +msgid "A pink heart icon ({fa}`heart`) shows next to all tracks in your favorites." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:61 +msgid "Select the heart icon on the track you want to remove. The heart turns gray to show that the track isn't in your favorites." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:73 +msgid "You're done! You've removed the track from your favorites." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:75 +msgid "Remove a track from the track details page" +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:77 +msgid "You can remove a track from your favorites from its details page. To do this:" +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:79 +msgid "Go to the track's details page." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:80 +msgid "Select the pink heart icon ({fa}`heart`) at the top of the screen. The heart turns gray to show that the track isn't your favorites." +msgstr "" + +#: ../../user_documentation/favorites/remove_favorites.md:82 +msgid "That's it! You've removed the track from your favorites." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/index.pot b/docs/locales/gettext/user_documentation/index.pot new file mode 100644 index 000000000..d251382d2 --- /dev/null +++ b/docs/locales/gettext/user_documentation/index.pot @@ -0,0 +1,93 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/index.md:1 +msgid "Get started" +msgstr "" + +#: ../../user_documentation/index.md:3 +msgid "Follow the guides in our user documentation to get started using Funkwhale." +msgstr "" + +#: ../../user_documentation/index.md:9 +msgid "Set up your Funkwhale account" +msgstr "" + +#: ../../user_documentation/index.md:11 +msgid "Some {term}`Funkwhale pods <Pod>` allow you to listen to music without signing up. To get the most out of Funkwhale, you should create an account. Check out [Your account](accounts/index.md) to get started." +msgstr "" + +#: ../../user_documentation/index.md:13 +msgid "Publish your content on Funkwhale" +msgstr "" + +#: ../../user_documentation/index.md:15 +msgid "Got a podcast you want to share with the world? Working on a new album? Funkwhale gives you the tools you need to share your creativity with the {term}`Fediverse`. Publish your work in [Channels](channels/index.md) to start building up your following." +msgstr "" + +#: ../../user_documentation/index.md:17 +msgid "Upload your collection to Funkwhale" +msgstr "" + +#: ../../user_documentation/index.md:19 +msgid "Want to listen to your private collection using Funkwhale? Upload your files to [Libraries](libraries/index.md) to store your collection on your pod and share it with others." +msgstr "" + +#: ../../user_documentation/index.md:21 +msgid "Start listening" +msgstr "" + +#: ../../user_documentation/index.md:23 +msgid "Want to listen to something new or enjoy an old favorite? Follow the guides in the sections linked below to master playback in Funkwhale:" +msgstr "" + +#: ../../user_documentation/index.md:25 +msgid "Learn how to use the [Queue](queue/index.md) to organize playback." +msgstr "" + +#: ../../user_documentation/index.md:26 +msgid "Build [Playlists](playlists/index.md) to personalize how you enjoy your favorite content." +msgstr "" + +#: ../../user_documentation/index.md:27 +msgid "Create new [Radios](radios/index.md) to automate your listening experience." +msgstr "" + +#: ../../user_documentation/index.md:29 +msgid "Report content and users" +msgstr "" + +#: ../../user_documentation/index.md:31 +msgid "If you've come across something that doesn't abide by a pod's rules or the law, you can report it. Follow the guides in the [Reporting](reports/index.md) section to see how." +msgstr "" + +#: ../../user_documentation/index.md:33 +msgid "Access Funkwhale from other apps" +msgstr "" + +#: ../../user_documentation/index.md:35 +msgid "Funkwhale supports a subset of the Subsonic API. This means you can play your Funkwhale content on Subsonic apps. Learn more about how to do this in the [Subsonic](subsonic/index.md) section." +msgstr "" + +#: ../../user_documentation/index.md:37 +msgid "Enhance your experience with plugins" +msgstr "" + +#: ../../user_documentation/index.md:39 +msgid "Funkwhale supports plugins to extend its features or to add new features. Check out our [Plugins](plugins/index.md) section for details about our plugins and how to use them." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/info/cli.pot b/docs/locales/gettext/user_documentation/info/cli.pot new file mode 100644 index 000000000..4b818e05b --- /dev/null +++ b/docs/locales/gettext/user_documentation/info/cli.pot @@ -0,0 +1,445 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/info/cli.rst:2 +msgid "Funkwhale CLI" +msgstr "" + +#: ../../user_documentation/info/cli.rst:4 +msgid "`Funkwhale CLI <https://dev.funkwhale.audio/funkwhale/cli/>`_ is a command-line interface you can install on your local computer to interact with any Funkwhale server via the REST API. It's especially useful if you need to do repetitive operations or write scripts that interact with Funkwhale servers." +msgstr "" + +#: ../../user_documentation/info/cli.rst:8 +msgid "Here is a (non-exhaustive) list of operations you can perform via the CLI:" +msgstr "" + +#: ../../user_documentation/info/cli.rst:10 +msgid "Manage libraries" +msgstr "" + +#: ../../user_documentation/info/cli.rst:11 +msgid "Upload local files" +msgstr "" + +#: ../../user_documentation/info/cli.rst:12 +msgid "Retrieve and search tracks, albums and artists" +msgstr "" + +#: ../../user_documentation/info/cli.rst:13 +msgid "Download tracks" +msgstr "" + +#: ../../user_documentation/info/cli.rst:14 +msgid "Manage playlists" +msgstr "" + +#: ../../user_documentation/info/cli.rst:15 +msgid "Manage favorites" +msgstr "" + +#: ../../user_documentation/info/cli.rst:17 +msgid "Table of Contents" +msgstr "" + +#: ../../user_documentation/info/cli.rst:20 +msgid "Installation" +msgstr "" + +#: ../../user_documentation/info/cli.rst:22 +msgid "We provide a prebuilt binary for Linux::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:27 +msgid "You can also install from source with::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:34 +msgid "Installing from source requires you have Python 3.6 or higher available." +msgstr "" + +#: ../../user_documentation/info/cli.rst:36 +msgid "You can check the installation was successful by running ``funkwhale --help``. This should output the list of available commands and the CLI description." +msgstr "" + +#: ../../user_documentation/info/cli.rst:40 +msgid "Basic usage" +msgstr "" + +#: ../../user_documentation/info/cli.rst:42 +msgid "Here are a couple of commands you can try to get started:" +msgstr "" + +#: ../../user_documentation/info/cli.rst:56 +msgid "Getting help" +msgstr "" + +#: ../../user_documentation/info/cli.rst:58 +msgid "The most basic way to get help is to run ``funkwhale --help``. It will list available commands, namespaces and arguments that are common to all commands." +msgstr "" + +#: ../../user_documentation/info/cli.rst:60 +msgid "You can also append the ``--help`` flag after any command to get more information about its arguments and options, like this: ``funkwhale albums ls --help``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:62 +msgid "The CLI offers nested commands. For instance, ``funkwhale albums`` isn't a valid command in itself, but a namespace for all albums-related commands." +msgstr "" + +#: ../../user_documentation/info/cli.rst:64 +msgid "To get the help of a specific namespace and list all its available commands, simply run ``funkwhale <namespace> --help``." +msgstr "" + +#: ../../user_documentation/info/cli.rst:67 +msgid "Authentication" +msgstr "" + +#: ../../user_documentation/info/cli.rst:69 +msgid "The CLI uses JWT tokens to interact with the API. You can either:" +msgstr "" + +#: ../../user_documentation/info/cli.rst:71 +msgid "Run ``funkwhale login``, which will ask you your Funkwhale username and password and store a JWT token in your local keyring. This token will be used automatically afterwards." +msgstr "" + +#: ../../user_documentation/info/cli.rst:72 +msgid "Explicitly pass a token to the command via the ``-t`` flag or the ``FUNKWHALE_TOKEN`` environment variable" +msgstr "" + +#: ../../user_documentation/info/cli.rst:74 +msgid "If you use ``funkwhale login``, you can delete the local token with ``funkwhale logout``." +msgstr "" + +#: ../../user_documentation/info/cli.rst:76 +msgid "You can check that you are fully authenticated by running ``funkwhale users me``. It will display information relating to your user profile." +msgstr "" + +#: ../../user_documentation/info/cli.rst:79 +msgid "Configuration" +msgstr "" + +#: ../../user_documentation/info/cli.rst:81 +msgid "To work, the CLI needs to be pointed to a Funkwhale server. This can be done in various ways:" +msgstr "" + +#: ../../user_documentation/info/cli.rst:83 +msgid "Via the ``-H https://funkwhale.domain`` flag when calling the CLI" +msgstr "" + +#: ../../user_documentation/info/cli.rst:84 +msgid "Via the ``FUNKWHALE_SERVER_URL`` environment variable" +msgstr "" + +#: ../../user_documentation/info/cli.rst:85 +msgid "Via an env file (see below)" +msgstr "" + +#: ../../user_documentation/info/cli.rst:88 +msgid "Env file" +msgstr "" + +#: ../../user_documentation/info/cli.rst:90 +msgid "The CLI will try to read configuration options from a ``.env`` file in the current directory. If this file is not present, it will read the configuration options from ``~/.config/funkwhale/env`` on Linux or ``~/Library/Application Support/funkwhale/env`` on macOS." +msgstr "" + +#: ../../user_documentation/info/cli.rst:92 +msgid "You can also give it a path to another env file via the ``-e /path/to/.envfile`` flag or the ``ENV_FILE`` environment variable." +msgstr "" + +#: ../../user_documentation/info/cli.rst:94 +msgid "An env file simply contains a list of variables, using the same syntax as environment variables (comments starting with # are allowed). Example::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:101 +msgid "List of configuration options" +msgstr "" + +#: ../../user_documentation/info/cli.rst:104 +msgid "CLI Flag" +msgstr "" + +#: ../../user_documentation/info/cli.rst:104 +msgid "Environment variable" +msgstr "" + +#: ../../user_documentation/info/cli.rst:104 +msgid "Example value" +msgstr "" + +#: ../../user_documentation/info/cli.rst:104 +msgid "Description" +msgstr "" + +#: ../../user_documentation/info/cli.rst:106 +msgid "``-e``, ``--env-file``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:106 +msgid "``ENV_FILE``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:106 +msgid "``~/Music/.env``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:106 +msgid "Path to a local env file to use for configuration" +msgstr "" + +#: ../../user_documentation/info/cli.rst:108 +msgid "``-H``, ``--url``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:108 +msgid "``FUNKWHALE_SERVER_URL``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:108 +msgid "``https://demo.funkwhale.audio``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:108 +msgid "The URL of the Funkwhale server the CLI should contact" +msgstr "" + +#: ../../user_documentation/info/cli.rst:110 +msgid "``-t``, ``--token``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:110 +msgid "``FUNKWHALE_TOKEN``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:110 +msgid "``eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:110 +msgid "A JWT token to use for authentication" +msgstr "" + +#: ../../user_documentation/info/cli.rst:112 +msgid "``--no-login``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:112 +msgid "``FUNKWHALE_NO_LOGIN``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:112 +#: ../../user_documentation/info/cli.rst:117 +msgid "``true``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:112 +msgid "Completely disable authentication and keyring" +msgstr "" + +#: ../../user_documentation/info/cli.rst:114 +msgid "``-v``, ``--verbosity``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:114 +msgid "One of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO`` or ``DEBUG``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:114 +msgid "Control the verbosity (default is INFO)" +msgstr "" + +#: ../../user_documentation/info/cli.rst:117 +msgid "``-q``, ``--quiet``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:117 +msgid "``FUNKWHALE_QUIET``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:117 +msgid "Completely disable logging" +msgstr "" + +#: ../../user_documentation/info/cli.rst:121 +msgid "Read commands" +msgstr "" + +#: ../../user_documentation/info/cli.rst:123 +msgid "All commands that list results - such as ``funkwhale albums ls`` or ``funkwhale tracks ls`` - share similar behaviors and sets of arguments." +msgstr "" + +#: ../../user_documentation/info/cli.rst:126 +msgid "Filtering" +msgstr "" + +#: ../../user_documentation/info/cli.rst:128 +msgid "Results can be filtered using the ``-f`` or ``--filter`` flag. Provided values are transmitted directly in the querystring when the requests to the API is made::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:133 +msgid "The flag can be provided multiple times, to add multiple filter conditions::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:140 +msgid "The list of supported fields for filtering depends on the resource being queried, and can be found in our `API documentation`_." +msgstr "" + +#: ../../user_documentation/info/cli.rst:144 +msgid "Searching" +msgstr "" + +#: ../../user_documentation/info/cli.rst:146 +msgid "Any text provided after the ``ls`` command will be considered a search query and transmitted to the API::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:153 +msgid "This is technically equivalent to filtering with a ``q`` parameter as described above::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:159 +msgid "Ordering" +msgstr "" + +#: ../../user_documentation/info/cli.rst:161 +msgid "You can control the ordering of the results with the `-o` or ``--ordering`` flag::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:168 +msgid "Ordering in descending order is supported by prefixing the field name with ``-``, e.g: ``-o -creation_date``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:172 +msgid "The list of supported fields for ordering depends on the resource being queried, and can be found in our `API documentation`_." +msgstr "" + +#: ../../user_documentation/info/cli.rst:176 +msgid "Pagination" +msgstr "" + +#: ../../user_documentation/info/cli.rst:178 +msgid "You can retrieve a specific result page using the ``-p`` or ``--page`` flag::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:183 +msgid "You can also alter the size of the pages using the ``-s`` or ``--page-size`` flag::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:188 +msgid "Sometimes, you may want to retrieve multiple pages of results at once. This is supported using the ``-l`` or ``--limit`` flag::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:193 +msgid "You can, of course, combine these flags::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:199 +msgid "Output" +msgstr "" + +#: ../../user_documentation/info/cli.rst:201 +msgid "While the default output displays a human-readable table, you can customize it." +msgstr "" + +#: ../../user_documentation/info/cli.rst:203 +msgid "The ``--raw`` flag will simply output the raw JSON payload returned by the API server::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:207 +msgid "The ``-h`` or ``--no-headers`` flag simply removes the table column headers." +msgstr "" + +#: ../../user_documentation/info/cli.rst:209 +msgid "The ``-t`` or ``--format`` flag alters the rendering of result, depending on the provided value::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:216 +msgid "Available formats are: ``fancy_grid``, ``github``, ``grid``, ``html``, ``jira``, ``latex``, ``latex_booktabs``, ``latex_raw``, ``mediawiki``, ``moinmoin``, ``orgtbl``, ``pipe``, ``plain``, ``presto``, ``psql``, ``rst``, ``simple``, ``textile``, ``tsv``, ``youtrack``" +msgstr "" + +#: ../../user_documentation/info/cli.rst:218 +msgid "The ``-c`` or ``--column`` flag gives you control on the displayed columns::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:223 +msgid "For a given resource, the list of available columns can be found by running ``funkwhale <resource> ls --help``." +msgstr "" + +#: ../../user_documentation/info/cli.rst:225 +msgid "The ``-i`` or ``--ids`` flag displays only the IDs of results, one per line::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:229 +msgid "This is especially useful in conjunction with other commands (like deletion commands) and piping. Note that this is also technically equivalent to applying the ``--no-headers``, ``--format plain`` and ``--column ID`` flags." +msgstr "" + +#: ../../user_documentation/info/cli.rst:233 +msgid "Write commands" +msgstr "" + +#: ../../user_documentation/info/cli.rst:236 +msgid "Deleting objects" +msgstr "" + +#: ../../user_documentation/info/cli.rst:238 +msgid "Some resources support deletion, via commands such as ``funkwhale libraries rm`` or ``funkwhale playlists rm``, followed by one or more IDs::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:243 +msgid "By default, the ``rm`` command will ask for confirmation, but you can disable this behavior by providing the ``--no-input`` flag." +msgstr "" + +#: ../../user_documentation/info/cli.rst:249 +msgid "Examples" +msgstr "" + +#: ../../user_documentation/info/cli.rst:252 +msgid "Uploading local files" +msgstr "" + +#: ../../user_documentation/info/cli.rst:254 +msgid "**Goal**: create a library and upload all MP3 files from ``~/Music`` to it" +msgstr "" + +#: ../../user_documentation/info/cli.rst:256 +#: ../../user_documentation/info/cli.rst:268 +#: ../../user_documentation/info/cli.rst:284 +#: ../../user_documentation/info/cli.rst:301 +msgid "**Commands**::" +msgstr "" + +#: ../../user_documentation/info/cli.rst:264 +msgid "Favorite an entire album" +msgstr "" + +#: ../../user_documentation/info/cli.rst:266 +msgid "**Goal**: retrieve all the tracks from an album and add these to your favorites" +msgstr "" + +#: ../../user_documentation/info/cli.rst:280 +msgid "Mirror an artist discography locally" +msgstr "" + +#: ../../user_documentation/info/cli.rst:282 +msgid "**Goal**: Download the discography of an artist locally, in the ``~/Music`` directory, in an ``Artist/Album/Track`` folder hierarchy" +msgstr "" + +#: ../../user_documentation/info/cli.rst:297 +msgid "Open a remote album in VLC" +msgstr "" + +#: ../../user_documentation/info/cli.rst:299 +msgid "**Goal**: Variation of the previous example, but instead of downloading an artist discography, we listen to an album in VLC" +msgstr "" diff --git a/docs/locales/gettext/user_documentation/libraries/create_library.pot b/docs/locales/gettext/user_documentation/libraries/create_library.pot new file mode 100644 index 000000000..49193746e --- /dev/null +++ b/docs/locales/gettext/user_documentation/libraries/create_library.pot @@ -0,0 +1,117 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/libraries/create_library.md:1 +msgid "Create a library" +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:4 +msgid "Want to publish your own content on your {term}`pod`? Take a look at [channels](../channels/index)." +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:7 +msgid "To start uploading your collection to your pod, you need to create a library. You can create as many libraries as you need." +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:9 +msgid "To create a library:" +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:13 +#: ../../user_documentation/libraries/create_library.md:31 +msgid "Log in to your pod." +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:14 +msgid "Select the upload icon ({fa}`upload`) in the top of the sidebar." +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:15 +#: ../../user_documentation/libraries/create_library.md:33 +msgid "Select {guilabel}`Get started` under {guilabel}`Upload third-party content in a library`." +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:16 +#: ../../user_documentation/libraries/create_library.md:34 +msgid "A screen appears showing your upload quota. If you have created any libraries, these are also shown." +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:17 +#: ../../user_documentation/libraries/create_library.md:35 +msgid "Select {guilabel}`Create a new library`." +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:18 +#: ../../user_documentation/libraries/create_library.md:36 +msgid "Enter a {guilabel}`Name` for your library (required)." +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:19 +#: ../../user_documentation/libraries/create_library.md:37 +msgid "Enter {guilabel}`Description` for your library." +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:20 +#: ../../user_documentation/libraries/create_library.md:38 +msgid "Set the {guilabel}`Visibility` of your library. This determines who can access the content." +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:21 +#: ../../user_documentation/libraries/create_library.md:39 +msgid "{guilabel}`Everyone, across all instances` – the library's content is available to everybody who interacts with your pod. This includes users of other pods." +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:22 +#: ../../user_documentation/libraries/create_library.md:40 +msgid "{guilabel}`Everyone on this instance` – the library's content is available to all users on your pod. This does not include users of other pods." +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:23 +#: ../../user_documentation/libraries/create_library.md:41 +msgid "{guilabel}`Nobody except me` – the library's content is only available to you and people you share the library with." +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:24 +#: ../../user_documentation/libraries/create_library.md:42 +msgid "Select {guilabel}`Create library`." +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:25 +#: ../../user_documentation/libraries/create_library.md:43 +msgid "A screen appears showing you a summary of your library." +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:32 +msgid "Select the upload icon ({fa}`upload`) at the top of the screen." +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:48 +msgid "Select {guilabel}`Nobody except me` if you don't own the copyright for the content or it isn't freely licensed." +msgstr "" + +#: ../../user_documentation/libraries/create_library.md:51 +msgid "Well done! You've created your library. Now you can add some content to it." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/libraries/delete_content.pot b/docs/locales/gettext/user_documentation/libraries/delete_content.pot new file mode 100644 index 000000000..fd13b1721 --- /dev/null +++ b/docs/locales/gettext/user_documentation/libraries/delete_content.pot @@ -0,0 +1,99 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/libraries/delete_content.md:1 +msgid "Delete content from a library" +msgstr "" + +#: ../../user_documentation/libraries/delete_content.md:4 +msgid "When you delete content from a library you delete the audio files from your {term}`pod`. Make sure you have a backup of any files you want to keep." +msgstr "" + +#: ../../user_documentation/libraries/delete_content.md:7 +msgid "You can delete content from a library at any time. To do this:" +msgstr "" + +#: ../../user_documentation/libraries/delete_content.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/libraries/delete_content.md:11 +#: ../../user_documentation/libraries/delete_content.md:27 +msgid "Log in to your pod." +msgstr "" + +#: ../../user_documentation/libraries/delete_content.md:12 +msgid "Select the upload icon ({fa}`upload`) in the top of the sidebar." +msgstr "" + +#: ../../user_documentation/libraries/delete_content.md:13 +#: ../../user_documentation/libraries/delete_content.md:29 +msgid "Select {guilabel}`Get started` under {guilabel}`Upload third-party content in a library`." +msgstr "" + +#: ../../user_documentation/libraries/delete_content.md:14 +#: ../../user_documentation/libraries/delete_content.md:30 +msgid "A screen appears showing your upload quota and your libraries." +msgstr "" + +#: ../../user_documentation/libraries/delete_content.md:15 +#: ../../user_documentation/libraries/delete_content.md:31 +msgid "Select {guilabel}`Library Details` under the library you want to edit." +msgstr "" + +#: ../../user_documentation/libraries/delete_content.md:16 +#: ../../user_documentation/libraries/delete_content.md:32 +msgid "Select the {guilabel}`✎ Edit` button at the top of the screen." +msgstr "" + +#: ../../user_documentation/libraries/delete_content.md:17 +#: ../../user_documentation/libraries/delete_content.md:33 +msgid "Scroll down to the {guilabel}`Library contents` section. A list of tracks is shown." +msgstr "" + +#: ../../user_documentation/libraries/delete_content.md:18 +#: ../../user_documentation/libraries/delete_content.md:34 +msgid "Select the checkbox ({fa}`square`) next to the tracks you want to delete. Selected tracks show a tick ({fa}`check-square`)." +msgstr "" + +#: ../../user_documentation/libraries/delete_content.md:19 +#: ../../user_documentation/libraries/delete_content.md:35 +msgid "Select {menuselection}`Actions --> Delete`." +msgstr "" + +#: ../../user_documentation/libraries/delete_content.md:20 +#: ../../user_documentation/libraries/delete_content.md:36 +msgid "Select {guilabel}`Go`." +msgstr "" + +#: ../../user_documentation/libraries/delete_content.md:21 +#: ../../user_documentation/libraries/delete_content.md:37 +msgid "Select {guilabel}`Launch` on the warning message that appears." +msgstr "" + +#: ../../user_documentation/libraries/delete_content.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/libraries/delete_content.md:28 +msgid "Select the upload icon ({fa}`upload`) at the top of the screen." +msgstr "" + +#: ../../user_documentation/libraries/delete_content.md:41 +msgid "That's it! You've successfully deleted the content from your library." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/libraries/delete_library.pot b/docs/locales/gettext/user_documentation/libraries/delete_library.pot new file mode 100644 index 000000000..e49a74f51 --- /dev/null +++ b/docs/locales/gettext/user_documentation/libraries/delete_library.pot @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/libraries/delete_library.md:1 +msgid "Delete a library" +msgstr "" + +#: ../../user_documentation/libraries/delete_library.md:4 +msgid "Deleting a library also deletes all content in the library." +msgstr "" + +#: ../../user_documentation/libraries/delete_library.md:7 +msgid "You can delete a library at any time. To do this:" +msgstr "" + +#: ../../user_documentation/libraries/delete_library.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/libraries/delete_library.md:11 +#: ../../user_documentation/libraries/delete_library.md:24 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../user_documentation/libraries/delete_library.md:12 +msgid "Select the upload icon ({fa}`upload`) in the top of the sidebar." +msgstr "" + +#: ../../user_documentation/libraries/delete_library.md:13 +#: ../../user_documentation/libraries/delete_library.md:26 +msgid "Select {guilabel}`Get started` under {guilabel}`Upload third-party content in a library`." +msgstr "" + +#: ../../user_documentation/libraries/delete_library.md:14 +#: ../../user_documentation/libraries/delete_library.md:27 +msgid "A screen appears showing your upload quota and your libraries." +msgstr "" + +#: ../../user_documentation/libraries/delete_library.md:15 +#: ../../user_documentation/libraries/delete_library.md:28 +msgid "Select {guilabel}`Library Details` under the library you want to edit." +msgstr "" + +#: ../../user_documentation/libraries/delete_library.md:16 +#: ../../user_documentation/libraries/delete_library.md:29 +msgid "Select the {guilabel}`✎ Edit` button at the top of the screen." +msgstr "" + +#: ../../user_documentation/libraries/delete_library.md:17 +#: ../../user_documentation/libraries/delete_library.md:30 +msgid "Select {guilabel}`Delete`." +msgstr "" + +#: ../../user_documentation/libraries/delete_library.md:18 +#: ../../user_documentation/libraries/delete_library.md:31 +msgid "Select {guilabel}`Delete library` on the warning notice that appears." +msgstr "" + +#: ../../user_documentation/libraries/delete_library.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/libraries/delete_library.md:25 +msgid "Select the upload icon ({fa}`upload`) at the top of the screen." +msgstr "" + +#: ../../user_documentation/libraries/delete_library.md:35 +msgid "That's it! You've deleted your library and all its content." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/libraries/edit_content.pot b/docs/locales/gettext/user_documentation/libraries/edit_content.pot new file mode 100644 index 000000000..0bc4b6212 --- /dev/null +++ b/docs/locales/gettext/user_documentation/libraries/edit_content.pot @@ -0,0 +1,259 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/libraries/edit_content.md:1 +msgid "Edit library content" +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:4 +msgid "You can only edit content in libraries you own. {term}`Pod` admins can edit all content." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:7 +msgid "You can edit library content after you have uploaded it. This is helpful if the content isn't [tagged](tag_music)." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:13 +msgid "Edit artist" +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:15 +msgid "To edit an artist:" +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:0 +#: ../../user_documentation/libraries/edit_content.md:0 +#: ../../user_documentation/libraries/edit_content.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:19 +msgid "Search for the artist in the sidebar or go to the {guilabel}`Artists` page in {guilabel}`My Library` and search there." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:20 +#: ../../user_documentation/libraries/edit_content.md:37 +msgid "Select the artist you want to edit. The artist details page opens." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:21 +#: ../../user_documentation/libraries/edit_content.md:38 +msgid "Select the {guilabel}`More…` button. The artist options menu opens." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:22 +#: ../../user_documentation/libraries/edit_content.md:39 +msgid "Select {guilabel}`✎ Edit`. The {guilabel}`Edit this artist` screen opens." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:23 +#: ../../user_documentation/libraries/edit_content.md:40 +#: ../../user_documentation/libraries/edit_content.md:62 +#: ../../user_documentation/libraries/edit_content.md:80 +#: ../../user_documentation/libraries/edit_content.md:103 +#: ../../user_documentation/libraries/edit_content.md:123 +msgid "Change the details in any of these fields:" +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:24 +#: ../../user_documentation/libraries/edit_content.md:41 +msgid "{guilabel}`Name` – the name of the artist." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:25 +#: ../../user_documentation/libraries/edit_content.md:42 +msgid "{guilabel}`Description` – a description of the artist. This appears on the artist details page." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:26 +#: ../../user_documentation/libraries/edit_content.md:43 +msgid "{guilabel}`Cover` – the cover image for the artist. This appears on the artist details page." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:27 +#: ../../user_documentation/libraries/edit_content.md:44 +msgid "{guilabel}`Tags` – the genre(s) the artist fits in." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:28 +#: ../../user_documentation/libraries/edit_content.md:45 +#: ../../user_documentation/libraries/edit_content.md:68 +#: ../../user_documentation/libraries/edit_content.md:86 +#: ../../user_documentation/libraries/edit_content.md:111 +#: ../../user_documentation/libraries/edit_content.md:131 +msgid "__Optional__ – enter a {guilabel}`Summary` of your edits." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:29 +#: ../../user_documentation/libraries/edit_content.md:46 +#: ../../user_documentation/libraries/edit_content.md:69 +#: ../../user_documentation/libraries/edit_content.md:87 +#: ../../user_documentation/libraries/edit_content.md:112 +#: ../../user_documentation/libraries/edit_content.md:132 +msgid "Select {guilabel}`Submit and apply edit` to save your changes." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:0 +#: ../../user_documentation/libraries/edit_content.md:0 +#: ../../user_documentation/libraries/edit_content.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:35 +#: ../../user_documentation/libraries/edit_content.md:75 +#: ../../user_documentation/libraries/edit_content.md:118 +msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:36 +msgid "Use the search bar to search for your artist. You can also select {menuselection}`My Library --> Artists` to open the artist search page." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:50 +msgid "That's it! You've edited the artist's details. You can see these details by visiting the artist page." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:52 +msgid "Edit album" +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:54 +msgid "To edit an album:" +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:58 +msgid "Search for the album in the sidebar or go to the {guilabel}`Albums` page in {guilabel}`My Library` and search there." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:59 +#: ../../user_documentation/libraries/edit_content.md:77 +msgid "Select the album you want to edit. The album details page opens." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:60 +#: ../../user_documentation/libraries/edit_content.md:78 +msgid "Select the kebab menu ({fa}`ellipsis-v`) to show the album options." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:61 +#: ../../user_documentation/libraries/edit_content.md:79 +msgid "Select {guilabel}`✎ Edit`. The {guilabel}`Edit this album` screen opens." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:63 +#: ../../user_documentation/libraries/edit_content.md:81 +msgid "{guilabel}`Title` – the title of the album." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:64 +#: ../../user_documentation/libraries/edit_content.md:82 +msgid "{guilabel}`Description` – a description of the album. This appears on the album details page." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:65 +#: ../../user_documentation/libraries/edit_content.md:83 +msgid "{guilabel}`Release date` – the release date of the album." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:66 +#: ../../user_documentation/libraries/edit_content.md:84 +msgid "{guilabel}`Cover` – the album cover art." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:67 +#: ../../user_documentation/libraries/edit_content.md:85 +msgid "{guilabel}`Tags` – the genre(s) associated with the album." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:76 +msgid "Use the search bar to search for your album. You can also select {menuselection}`My Library --> Albums` to open the album search page." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:91 +msgid "That's it! You've edited the album's details. You can see these details by visiting the album page." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:93 +msgid "Edit track" +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:95 +msgid "To edit a track:" +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:99 +msgid "Search for the track in the sidebar." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:100 +#: ../../user_documentation/libraries/edit_content.md:120 +msgid "Select the track you want to edit. The track details page opens." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:101 +#: ../../user_documentation/libraries/edit_content.md:121 +msgid "Select the kebab menu ({fa}`ellipsis-v`) to show the track options." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:102 +#: ../../user_documentation/libraries/edit_content.md:122 +msgid "Select {guilabel}`✎ Edit`. The {guilabel}`Edit this track` screen opens." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:104 +#: ../../user_documentation/libraries/edit_content.md:124 +msgid "{guilabel}`Title` – the title of the track." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:105 +#: ../../user_documentation/libraries/edit_content.md:125 +msgid "{guilabel}`Description` – a description of the track. This appears on the track details page." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:106 +#: ../../user_documentation/libraries/edit_content.md:126 +msgid "{guilabel}`Cover` – the track cover art. This appears on the track details page." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:107 +#: ../../user_documentation/libraries/edit_content.md:127 +msgid "{guilabel}`Position` – the position of the track in its album." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:108 +#: ../../user_documentation/libraries/edit_content.md:128 +msgid "{guilabel}`Copyright` – the name of the copyright holder." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:109 +#: ../../user_documentation/libraries/edit_content.md:129 +msgid "{guilabel}`License` – the license of the track. Funkwhale supports [Creative Commons](https://creativecommons.org) licenses. Leave this blank if you aren't sure." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:110 +#: ../../user_documentation/libraries/edit_content.md:130 +msgid "{guilabel}`Tags` – the genre(s) associated with the track." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:119 +msgid "Use the search bar to search for your track." +msgstr "" + +#: ../../user_documentation/libraries/edit_content.md:136 +msgid "That's it! You've edited the track's details. You can see these details by visiting the track details page." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/libraries/edit_library.pot b/docs/locales/gettext/user_documentation/libraries/edit_library.pot new file mode 100644 index 000000000..ea27371f8 --- /dev/null +++ b/docs/locales/gettext/user_documentation/libraries/edit_library.pot @@ -0,0 +1,95 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/libraries/edit_library.md:1 +msgid "Edit a library" +msgstr "" + +#: ../../user_documentation/libraries/edit_library.md:3 +msgid "You can update the details of your libraries at any time. To do this:" +msgstr "" + +#: ../../user_documentation/libraries/edit_library.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/libraries/edit_library.md:7 +#: ../../user_documentation/libraries/edit_library.md:23 +msgid "Log in to your {term}`pod`." +msgstr "" + +#: ../../user_documentation/libraries/edit_library.md:8 +msgid "Select the upload icon ({fa}`upload`) in the top of the sidebar." +msgstr "" + +#: ../../user_documentation/libraries/edit_library.md:9 +#: ../../user_documentation/libraries/edit_library.md:25 +msgid "Select {guilabel}`Get started` under {guilabel}`Upload third-party content in a library`." +msgstr "" + +#: ../../user_documentation/libraries/edit_library.md:10 +#: ../../user_documentation/libraries/edit_library.md:26 +msgid "A screen appears showing your upload quota and your libraries." +msgstr "" + +#: ../../user_documentation/libraries/edit_library.md:11 +#: ../../user_documentation/libraries/edit_library.md:27 +msgid "Select {guilabel}`Library Details` under the library you want to edit." +msgstr "" + +#: ../../user_documentation/libraries/edit_library.md:12 +#: ../../user_documentation/libraries/edit_library.md:28 +msgid "Select the {guilabel}`✎ Edit` button at the top of the screen." +msgstr "" + +#: ../../user_documentation/libraries/edit_library.md:13 +#: ../../user_documentation/libraries/edit_library.md:29 +msgid "Change any of the following:" +msgstr "" + +#: ../../user_documentation/libraries/edit_library.md:14 +#: ../../user_documentation/libraries/edit_library.md:30 +msgid "{guilabel}`Name`." +msgstr "" + +#: ../../user_documentation/libraries/edit_library.md:15 +#: ../../user_documentation/libraries/edit_library.md:31 +msgid "{guilabel}`Description`." +msgstr "" + +#: ../../user_documentation/libraries/edit_library.md:16 +#: ../../user_documentation/libraries/edit_library.md:32 +msgid "{guilabel}`Visibility`." +msgstr "" + +#: ../../user_documentation/libraries/edit_library.md:17 +#: ../../user_documentation/libraries/edit_library.md:33 +msgid "Select {guilabel}`Update Library` to save your changes. A toast notification appears at the bottom of the screen to confirm your changes." +msgstr "" + +#: ../../user_documentation/libraries/edit_library.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/libraries/edit_library.md:24 +msgid "Select the upload icon ({fa}`upload`) at the top of the screen." +msgstr "" + +#: ../../user_documentation/libraries/edit_library.md:37 +msgid "That's it! You've updated your library's details." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/libraries/follow_library.pot b/docs/locales/gettext/user_documentation/libraries/follow_library.pot new file mode 100644 index 000000000..451d825bc --- /dev/null +++ b/docs/locales/gettext/user_documentation/libraries/follow_library.pot @@ -0,0 +1,107 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/libraries/follow_library.md:1 +msgid "Follow a library" +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:3 +msgid "Follow a library to get access to its content. There are two ways to follow a library:" +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:9 +msgid "Use a sharing link" +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:11 +msgid "If you've received a sharing link, you can use this to follow a library. To do this:" +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:15 +#: ../../user_documentation/libraries/follow_library.md:26 +#: ../../user_documentation/libraries/follow_library.md:45 +msgid "Log in to your pod." +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:16 +msgid "Select the upload icon ({fa}`upload`) in the top of the sidebar." +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:17 +#: ../../user_documentation/libraries/follow_library.md:28 +msgid "Select {guilabel}`Get started` under {guilabel}`Follow remote libraries`. A screen appears showing you the libraries you are following." +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:18 +#: ../../user_documentation/libraries/follow_library.md:29 +msgid "Paste the sharing link into the {guilabel}`Search a remote library` search bar." +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:19 +#: ../../user_documentation/libraries/follow_library.md:30 +msgid "Select the {guilabel}`Search` icon or hit {kbd}`⏎ Return` to search for the library. If the library exists, a library card appears." +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:20 +#: ../../user_documentation/libraries/follow_library.md:31 +msgid "Select {guilabel}`Follow` on the library card. If the library's privacy level is {guilabel}`Nobody except me`, the owner needs to approve the request." +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:27 +msgid "Select the upload icon ({fa}`upload`) at the top of the screen" +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:35 +msgid "That's it! The server then scans the content and you can see it on your {term}`pod`." +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:37 +msgid "Follow from content on your pod" +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:40 +msgid "You can only follow a library from content pages if its privacy level is not {guilabel}`Nobody except me`." +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:43 +msgid "If a user on your {term}`pod` has already followed a library, you can find it by selecting content from that library. To do this:" +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:46 +msgid "Select a track, album, or artist from the library you want to follow." +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:47 +msgid "Scroll to the bottom of the page. The library card appears in the {guilabel}`User libraries` section." +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:48 +msgid "Select {guilabel}`Follow` on the library card." +msgstr "" + +#: ../../user_documentation/libraries/follow_library.md:50 +msgid "You're done! The content will remain on the server even if the other user stops following the library." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/libraries/index.pot b/docs/locales/gettext/user_documentation/libraries/index.pot new file mode 100644 index 000000000..17c5ba2de --- /dev/null +++ b/docs/locales/gettext/user_documentation/libraries/index.pot @@ -0,0 +1,56 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/libraries/index.md:11 +#: ../../user_documentation/libraries/index.md:11 +msgid "Manage your libraries" +msgstr "" + +#: ../../user_documentation/libraries/index.md:23 +#: ../../user_documentation/libraries/index.md:23 +msgid "Manage library content" +msgstr "" + +#: ../../user_documentation/libraries/index.md:36 +#: ../../user_documentation/libraries/index.md:36 +msgid "Share and follow libraries" +msgstr "" + +#: ../../user_documentation/libraries/index.md:1 +msgid "Libraries" +msgstr "" + +#: ../../user_documentation/libraries/index.md:3 +msgid "Libraries enable you to organize audio content you upload to your {term}`pod`. You can set the privacy level on libraries to control who can access them. Choose from the available privacy levels:" +msgstr "" + +#: ../../user_documentation/libraries/index.md:5 +msgid "__Everyone, across all instances__ – the library's content is available to everybody who interacts with your pod. This includes users of other pods." +msgstr "" + +#: ../../user_documentation/libraries/index.md:6 +msgid "__Everyone on this instance__ – the library's content is available to all users on your pod. This does not include users of other pods." +msgstr "" + +#: ../../user_documentation/libraries/index.md:7 +msgid "__Nobody except me__ – the library's content is only available to you and people you share the library with." +msgstr "" + +#: ../../user_documentation/libraries/index.md:9 +msgid "Use libraries for private collections or freely licensed music you want to share." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/libraries/share_library.pot b/docs/locales/gettext/user_documentation/libraries/share_library.pot new file mode 100644 index 000000000..ef7fc7488 --- /dev/null +++ b/docs/locales/gettext/user_documentation/libraries/share_library.pot @@ -0,0 +1,105 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/libraries/share_library.md:1 +msgid "Share a library" +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:3 +msgid "Sharing a library gives another user access to the library's content. When a user follows your library, they'll be able to play and download any content it contains from their {term}`pod`. Share private libraries with friends and family or share public libraries with everyone!" +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:5 +msgid "To share a library you own:" +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:0 +#: ../../user_documentation/libraries/share_library.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:9 +#: ../../user_documentation/libraries/share_library.md:21 +#: ../../user_documentation/libraries/share_library.md:35 +#: ../../user_documentation/libraries/share_library.md:44 +msgid "Log in to your pod." +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:10 +msgid "Select the upload icon ({fa}`upload`) in the top of the sidebar." +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:11 +#: ../../user_documentation/libraries/share_library.md:23 +msgid "Select {guilabel}`Get started` under {guilabel}`Upload third-party content in a library`." +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:12 +#: ../../user_documentation/libraries/share_library.md:24 +msgid "A screen appears showing your upload quota and your libraries." +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:13 +#: ../../user_documentation/libraries/share_library.md:25 +msgid "Select {guilabel}`Library Details` under the library you want to share." +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:14 +#: ../../user_documentation/libraries/share_library.md:26 +msgid "The {guilabel}`Sharing link` appears on the library details page. Select {guilabel}`Copy` to copy the sharing link to your clipboard. A label appears letting you know you've copied the link." +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:15 +#: ../../user_documentation/libraries/share_library.md:27 +msgid "Send the link to whomever you want to share the library with." +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:0 +#: ../../user_documentation/libraries/share_library.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:22 +msgid "Select the upload icon ({fa}`upload`) at the top of the screen." +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:31 +msgid "If you have set the library's privacy level to {guilabel}`Nobody except me`, you need to approve followers. You receive a notification when a user follows your library. To approve a follow request:" +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:36 +msgid "Select the cog icon ({fa}`cog`) or your avatar to expand the user menu." +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:37 +#: ../../user_documentation/libraries/share_library.md:46 +msgid "Select {guilabel}`Notifications`. The notifications screen opens." +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:38 +#: ../../user_documentation/libraries/share_library.md:47 +msgid "Notifications show the username of the user who wants to follow the library as well as the library name. Select {guilabel}`Accept` to approve the follow request or {guilabel}`Reject` to reject the request." +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:45 +msgid "Select the cog icon ({fa}`cog`) or your avatar to open the {guilabel}`Options` menu." +msgstr "" + +#: ../../user_documentation/libraries/share_library.md:51 +msgid "That's it! You've shared your library. The invited users can now listen to its content." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/libraries/tag_music.pot b/docs/locales/gettext/user_documentation/libraries/tag_music.pot new file mode 100644 index 000000000..5a1aa9da9 --- /dev/null +++ b/docs/locales/gettext/user_documentation/libraries/tag_music.pot @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/libraries/tag_music.md:1 +msgid "Tag your content with Picard" +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:3 +msgid "Funkwhale relies on [ID3 tags](https://id3.org/) to sort audio content. ID3 tags tell Funkwhale information about your files. Funkwhale uses this information to display your content in your {term}`pod`." +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:5 +msgid "We recommend using [MusicBrainz Picard](https://picard.musicbrainz.org/) to tag your content. MusicBrainz Picard is free and open source software that connects to [MusicBrainz](https://musicbrainz.org). Funkwhale uses MusicBrainz as its primary data source." +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:7 +msgid "This guide shows you how to tag your content with MusicBrainz Picard." +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:34 +msgid "Tag content" +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:36 +msgid "To tag content using MusicBrainz Picard:" +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:38 +msgid "Select {guilabel}`Add Files` to add individual files or {guilabel}`Add Folder` to add a directory of files." +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:39 +msgid "Select the files or directory you want to tag." +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:40 +msgid "Picard shows the files in the left panel. Picard moves files to the right panel as it tags them. If Picard doesn't tag a file automatically, select {guilabel}`Scan`." +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:41 +msgid "Check a file's tags by highlighting it and looking at the details in the bottom panel. If Picard has applied the wrong tags, look for [alternative versions](#alternative-versions)." +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:42 +#: ../../user_documentation/libraries/tag_music.md:56 +#: ../../user_documentation/libraries/tag_music.md:65 +msgid "Select {guilabel}`Save` or hit {kbd}`ctrl+s` ({kbd}`cmd+s` on macOS) to save the tags to the files." +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:44 +msgid "That's it! You've added ID3 tags to your files. You can now [add these to a library](upload_content.md)" +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:46 +msgid "Alternative versions" +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:48 +msgid "Picard will choose tags based on details included in your file. Sometimes it chooses a different version of a release than the one you want. You can choose an alternative version of your content to get the right tags." +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:50 +msgid "Alternative albums" +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:52 +msgid "If Picard has selected a different version of the album you are tagging:" +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:54 +msgid "Right-click on the album and hover your mouse over {guilabel}`Other versions`. A dropdown list of alternative versions appears." +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:55 +msgid "Select the correct release from the list." +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:58 +msgid "Alternative tracks" +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:60 +msgid "If Picard can't find a release for a track:" +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:62 +msgid "Right-click on the track and select {guilabel}`Search for Similar Tracks…`. A search screen appears." +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:63 +msgid "Search for your track. Use [MusicBrainz's search syntax](https://musicbrainz.org/doc/Indexed_Search_Syntax) for the best results." +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:64 +msgid "Select the correct track and click on {guilabel}`Load into Picard`." +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:67 +msgid "Add items to MusicBrainz" +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:69 +msgid "If Picard can't find your content, you can add it to MusicBrainz yourself. To get started, check out [MusicBrainz's guide](https://musicbrainz.org/doc/How_to_Add_a_Release/)." +msgstr "" + +#: ../../user_documentation/libraries/tag_music.md:71 +msgid "Once you have added the content to MusicBrainz, Picard can tag your files." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/libraries/upload_content.pot b/docs/locales/gettext/user_documentation/libraries/upload_content.pot new file mode 100644 index 000000000..7545793c7 --- /dev/null +++ b/docs/locales/gettext/user_documentation/libraries/upload_content.pot @@ -0,0 +1,90 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/libraries/upload_content.md:1 +msgid "Upload content to a library" +msgstr "" + +#: ../../user_documentation/libraries/upload_content.md:4 +msgid "Access to a library's content is set at a __library level__. You can't change the privacy level of content within the library." +msgstr "" + +#: ../../user_documentation/libraries/upload_content.md:7 +msgid "Once you have [created a library](create_library.md), you can start uploading content to it. Funkwhale reads information about your content from its metadata. For the best results, make sure to [tag your files well](tag_music.md)." +msgstr "" + +#: ../../user_documentation/libraries/upload_content.md:9 +msgid "To upload content to a library:" +msgstr "" + +#: ../../user_documentation/libraries/upload_content.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/libraries/upload_content.md:13 +#: ../../user_documentation/libraries/upload_content.md:26 +msgid "Log in to your pod." +msgstr "" + +#: ../../user_documentation/libraries/upload_content.md:14 +msgid "Select the upload icon ({fa}`upload`) in the top of the sidebar." +msgstr "" + +#: ../../user_documentation/libraries/upload_content.md:15 +#: ../../user_documentation/libraries/upload_content.md:28 +msgid "Select {guilabel}`Get started` under {guilabel}`Upload third-party content in a library`." +msgstr "" + +#: ../../user_documentation/libraries/upload_content.md:16 +#: ../../user_documentation/libraries/upload_content.md:29 +msgid "A screen appears showing your upload quota and your libraries." +msgstr "" + +#: ../../user_documentation/libraries/upload_content.md:17 +#: ../../user_documentation/libraries/upload_content.md:30 +msgid "Select {guilabel}`Upload` under the library you want to add content to." +msgstr "" + +#: ../../user_documentation/libraries/upload_content.md:18 +msgid "Click on the section marked {guilabel}`Click to select files` to open a file picker, or drag and drop your files on to it." +msgstr "" + +#: ../../user_documentation/libraries/upload_content.md:19 +msgid "If you opened the file picker, select the files you want to upload and confirm." +msgstr "" + +#: ../../user_documentation/libraries/upload_content.md:20 +#: ../../user_documentation/libraries/upload_content.md:32 +msgid "The screen shows you the status of each upload. Once the upload queue is empty, your upload is complete." +msgstr "" + +#: ../../user_documentation/libraries/upload_content.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/libraries/upload_content.md:27 +msgid "Select the upload icon ({fa}`upload`) at the top of the screen." +msgstr "" + +#: ../../user_documentation/libraries/upload_content.md:31 +msgid "Click on the section marked {guilabel}`Click to select files` to open a file picker Select the files you want to upload and confirm." +msgstr "" + +#: ../../user_documentation/libraries/upload_content.md:36 +msgid "Congratulations! You added some content to your library. You can now listen to your tracks on your {term}`Funkwhale pod <Pod>`." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/playlists/add_content.pot b/docs/locales/gettext/user_documentation/playlists/add_content.pot new file mode 100644 index 000000000..952dc499d --- /dev/null +++ b/docs/locales/gettext/user_documentation/playlists/add_content.pot @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/playlists/add_content.md:1 +msgid "Add content to a playlist" +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:3 +msgid "To build a playlist, you need to add content to it. You can add content in a few different ways:" +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:9 +msgid "Add the currently playing track" +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:11 +msgid "If you want to add the currently playing track to a playlist:" +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:0 +#: ../../user_documentation/playlists/add_content.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:15 +msgid "Select the playlist icon ({fa}`list`) on the player. The {guilabel}`Manage playlists` screen appears." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:16 +#: ../../user_documentation/playlists/add_content.md:24 +#: ../../user_documentation/playlists/add_content.md:63 +#: ../../user_documentation/playlists/add_content.md:74 +msgid "Select {guilabel}`+ Add track` next to the playlist you want to add the track to." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:0 +#: ../../user_documentation/playlists/add_content.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:22 +msgid "Select the player at the bottom of the screen to expand it." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:23 +msgid "Select the playlist icon ({fa}`list`) under the track art. The {guilabel}`Manage playlists` screen appears." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:28 +msgid "That's it! The currently playing track is now in your playlist." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:30 +msgid "Add content from queue" +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:32 +msgid "You can add all content that is currently in your [player queue](../queue/index.md). To do this:" +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:36 +msgid "Select {guilabel}`Playlists` under the {guilabel}`My Library` section of the sidebar. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:37 +#: ../../user_documentation/playlists/add_content.md:48 +msgid "Select {guilabel}`Manage your playlists`. The {guilabel}`Manage playlists` screen appears." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:38 +#: ../../user_documentation/playlists/add_content.md:49 +msgid "Select the edit icon ({fa}`edit`) next to the playlist you want to edit. The playlist edit screen appears." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:39 +#: ../../user_documentation/playlists/add_content.md:50 +msgid "Select {guilabel}`+ Insert from queue`. Your tracks appear in the playlist. The changes save to the server." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:40 +#: ../../user_documentation/playlists/add_content.md:51 +msgid "Select {guilabel}`Stop editing` to stop editing." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:46 +msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:47 +msgid "Select {menuselection}`My Library --> Playlists`. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:55 +msgid "That's it! You've added the contents from your queue to a playlist." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:57 +msgid "Add track from track details page" +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:59 +msgid "You can add a track to a playlist from the track details page. To do this:" +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:61 +msgid "Go to the track details page of the track you want to add." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:62 +msgid "Select the playlist icon ({fa}`list`) at the top of the screen. The {guilabel}`Manage playlists` screen appears." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:65 +msgid "That's it! The track is available in your playlist." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:67 +msgid "Add track from track table" +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:69 +msgid "You can add tracks from any page with a track table. This includes artist pages, album pages, and the search page. To add tracks from the track table:" +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:71 +msgid "Find your track in a track table." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:72 +msgid "Select the kebab menu ({fa}`ellipsis-v`) next to the track to open the track options menu." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:73 +msgid "Select {guilabel}`Add to playlist…`. The {guilabel}`Manage playlists` screen appears." +msgstr "" + +#: ../../user_documentation/playlists/add_content.md:76 +msgid "Well done! You've added the track to your playlist." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/playlists/create_playlist.pot b/docs/locales/gettext/user_documentation/playlists/create_playlist.pot new file mode 100644 index 000000000..72a43af26 --- /dev/null +++ b/docs/locales/gettext/user_documentation/playlists/create_playlist.pot @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/playlists/create_playlist.md:1 +msgid "Create a playlist" +msgstr "" + +#: ../../user_documentation/playlists/create_playlist.md:3 +msgid "Create playlists to share your favorite tracks with other Funkwhale users." +msgstr "" + +#: ../../user_documentation/playlists/create_playlist.md:5 +msgid "To create a playlist:" +msgstr "" + +#: ../../user_documentation/playlists/create_playlist.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/playlists/create_playlist.md:9 +#: ../../user_documentation/playlists/create_playlist.md:23 +msgid "Log in to your account." +msgstr "" + +#: ../../user_documentation/playlists/create_playlist.md:10 +msgid "Select {guilabel}`Playlists` under the {guilabel}`My Library` section of the sidebar. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/playlists/create_playlist.md:11 +#: ../../user_documentation/playlists/create_playlist.md:26 +msgid "Select {guilabel}`Manage your playlists`. The {guilabel}`Manage playlists` screen appears." +msgstr "" + +#: ../../user_documentation/playlists/create_playlist.md:12 +#: ../../user_documentation/playlists/create_playlist.md:27 +msgid "Enter a {guilabel}`Playlist name` for your new playlist." +msgstr "" + +#: ../../user_documentation/playlists/create_playlist.md:13 +#: ../../user_documentation/playlists/create_playlist.md:28 +msgid "Select the {guilabel}`Playlist visibility` for your playlist. Choose from the following options:" +msgstr "" + +#: ../../user_documentation/playlists/create_playlist.md:14 +msgid "{guilabel}`Everyone, across all instances` – the playlist is available to everybody who interacts with your {term}`pod`. This includes users of other pods." +msgstr "" + +#: ../../user_documentation/playlists/create_playlist.md:15 +#: ../../user_documentation/playlists/create_playlist.md:30 +msgid "{guilabel}`Everyone on this instance` – the playlist is available to all users on your pod. This does not include users of other pods." +msgstr "" + +#: ../../user_documentation/playlists/create_playlist.md:16 +#: ../../user_documentation/playlists/create_playlist.md:31 +msgid "{guilabel}`Nobody except me` – the playlist is only available to you and people you share it with." +msgstr "" + +#: ../../user_documentation/playlists/create_playlist.md:17 +#: ../../user_documentation/playlists/create_playlist.md:32 +msgid "Select {guilabel}`Create playlist`. A {guilabel}`Playlist created` message appears." +msgstr "" + +#: ../../user_documentation/playlists/create_playlist.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/playlists/create_playlist.md:24 +msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar." +msgstr "" + +#: ../../user_documentation/playlists/create_playlist.md:25 +msgid "Select {menuselection}`My Library --> Playlists`. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/playlists/create_playlist.md:29 +msgid "{guilabel}`Everyone, across all instances` – the playlist is available to everybody who interacts with your pod. This includes users of other pods." +msgstr "" + +#: ../../user_documentation/playlists/create_playlist.md:36 +msgid "Congratulations! You've created your playlist. Now you can [add some content to it](add_content.md)." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/playlists/delete_playlist.pot b/docs/locales/gettext/user_documentation/playlists/delete_playlist.pot new file mode 100644 index 000000000..29f086174 --- /dev/null +++ b/docs/locales/gettext/user_documentation/playlists/delete_playlist.pot @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/playlists/delete_playlist.md:1 +msgid "Delete a playlist" +msgstr "" + +#: ../../user_documentation/playlists/delete_playlist.md:4 +msgid "Deleting a playlist removes the playlist for all users. This action is irreversible." +msgstr "" + +#: ../../user_documentation/playlists/delete_playlist.md:7 +msgid "You can delete a playlist if you no longer want it. To do this:" +msgstr "" + +#: ../../user_documentation/playlists/delete_playlist.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/playlists/delete_playlist.md:11 +#: ../../user_documentation/playlists/delete_playlist.md:22 +msgid "Log in to your account." +msgstr "" + +#: ../../user_documentation/playlists/delete_playlist.md:12 +msgid "Select {guilabel}`Playlists` under the {guilabel}`My Library` section of the sidebar. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/playlists/delete_playlist.md:13 +#: ../../user_documentation/playlists/delete_playlist.md:25 +msgid "Select {guilabel}`Manage your playlists`. The {guilabel}`Manage playlists` screen appears." +msgstr "" + +#: ../../user_documentation/playlists/delete_playlist.md:14 +#: ../../user_documentation/playlists/delete_playlist.md:26 +msgid "Select the playlist from the {guilabel}`Available playlists` list. The playlist details screen opens." +msgstr "" + +#: ../../user_documentation/playlists/delete_playlist.md:15 +#: ../../user_documentation/playlists/delete_playlist.md:27 +msgid "Select {guilabel}`Delete`. A {guilabel}`Do you want to delete the playlist?` warning appears." +msgstr "" + +#: ../../user_documentation/playlists/delete_playlist.md:16 +#: ../../user_documentation/playlists/delete_playlist.md:28 +msgid "Select {guilabel}`Delete playlist`." +msgstr "" + +#: ../../user_documentation/playlists/delete_playlist.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/playlists/delete_playlist.md:23 +msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar." +msgstr "" + +#: ../../user_documentation/playlists/delete_playlist.md:24 +msgid "Select {menuselection}`My Library --> Playlists`. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/playlists/delete_playlist.md:32 +msgid "That's it! You've deleted your playlist." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/playlists/edit_playlist.pot b/docs/locales/gettext/user_documentation/playlists/edit_playlist.pot new file mode 100644 index 000000000..ad037b146 --- /dev/null +++ b/docs/locales/gettext/user_documentation/playlists/edit_playlist.pot @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/playlists/edit_playlist.md:1 +msgid "Edit a playlist" +msgstr "" + +#: ../../user_documentation/playlists/edit_playlist.md:3 +msgid "You can edit the details of your playlists at any time. To do this:" +msgstr "" + +#: ../../user_documentation/playlists/edit_playlist.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/playlists/edit_playlist.md:7 +#: ../../user_documentation/playlists/edit_playlist.md:20 +msgid "Log in to your account." +msgstr "" + +#: ../../user_documentation/playlists/edit_playlist.md:8 +msgid "Select {guilabel}`Playlists` under the {guilabel}`My Library` section of the sidebar. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/playlists/edit_playlist.md:9 +#: ../../user_documentation/playlists/edit_playlist.md:23 +msgid "Select {guilabel}`Manage your playlists`. The {guilabel}`Manage playlists` screen appears." +msgstr "" + +#: ../../user_documentation/playlists/edit_playlist.md:10 +#: ../../user_documentation/playlists/edit_playlist.md:24 +msgid "Select the edit icon ({fa}`edit`) next to the playlist you want to edit. The playlist edit screen appears." +msgstr "" + +#: ../../user_documentation/playlists/edit_playlist.md:11 +#: ../../user_documentation/playlists/edit_playlist.md:25 +msgid "Update the following fields:" +msgstr "" + +#: ../../user_documentation/playlists/edit_playlist.md:12 +#: ../../user_documentation/playlists/edit_playlist.md:26 +msgid "{guilabel}`Playlist name`." +msgstr "" + +#: ../../user_documentation/playlists/edit_playlist.md:13 +#: ../../user_documentation/playlists/edit_playlist.md:27 +msgid "{guilabel}`Playlist visibility`." +msgstr "" + +#: ../../user_documentation/playlists/edit_playlist.md:14 +#: ../../user_documentation/playlists/edit_playlist.md:28 +msgid "Select {guilabel}`Update playlist` to save your changes. A message displays {guilabel}`Playlist updated`." +msgstr "" + +#: ../../user_documentation/playlists/edit_playlist.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/playlists/edit_playlist.md:21 +msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar." +msgstr "" + +#: ../../user_documentation/playlists/edit_playlist.md:22 +msgid "Select {menuselection}`My Library --> Playlists`. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/playlists/edit_playlist.md:32 +msgid "That's it! You've edited your playlist." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/playlists/index.pot b/docs/locales/gettext/user_documentation/playlists/index.pot new file mode 100644 index 000000000..8da8cb2b4 --- /dev/null +++ b/docs/locales/gettext/user_documentation/playlists/index.pot @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/playlists/index.md:5 +#: ../../user_documentation/playlists/index.md:5 +msgid "Manage your playlists" +msgstr "" + +#: ../../user_documentation/playlists/index.md:18 +#: ../../user_documentation/playlists/index.md:18 +msgid "Manage playlist content" +msgstr "" + +#: ../../user_documentation/playlists/index.md:1 +msgid "Playlists" +msgstr "" + +#: ../../user_documentation/playlists/index.md:3 +msgid "You can create and share playlists with the {term}`Fediverse`. Add content from all over the network to build playlists you love." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/playlists/listen_playlist.pot b/docs/locales/gettext/user_documentation/playlists/listen_playlist.pot new file mode 100644 index 000000000..6b5171c75 --- /dev/null +++ b/docs/locales/gettext/user_documentation/playlists/listen_playlist.pot @@ -0,0 +1,104 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/playlists/listen_playlist.md:1 +msgid "Listen to a playlist" +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:4 +msgid "You can only listen to content in libraries you have access to. For more information, see [Follow a library](../libraries/follow_library)." +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:7 +msgid "You can listen to your playlists or playlists created by other users of your {term}`pod`." +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:13 +msgid "Listen to your playlists" +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:15 +msgid "To listen to playlists you created:" +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:0 +#: ../../user_documentation/playlists/listen_playlist.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:19 +msgid "Select {menuselection}`My Library --> Playlists` in the sidebar. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:20 +#: ../../user_documentation/playlists/listen_playlist.md:29 +msgid "Use the filters to search for your playlist." +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:21 +#: ../../user_documentation/playlists/listen_playlist.md:30 +msgid "Select the orange play icon ({fa}`play`) on your playlist to start playing the content." +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:0 +#: ../../user_documentation/playlists/listen_playlist.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:27 +#: ../../user_documentation/playlists/listen_playlist.md:50 +msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar." +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:28 +msgid "Select {menuselection}`My Library --> Playlists`. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:34 +msgid "You're done! Your playlist's content appears in your [queue](../queue/index.md)." +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:36 +msgid "Listen to public playlists from your pod" +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:38 +msgid "To listen to public playlists other users created:" +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:42 +msgid "Select {menuselection}`Explore --> Playlists` in the sidebar. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:43 +#: ../../user_documentation/playlists/listen_playlist.md:52 +msgid "Use the filters to search for a playlist." +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:44 +#: ../../user_documentation/playlists/listen_playlist.md:53 +msgid "Select the orange play icon ({fa}`play`) on your selected playlist to start playing the content." +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:51 +msgid "Select {menuselection}`Explore --> Playlists`. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/playlists/listen_playlist.md:57 +msgid "That's it! The playlist's content appears in your [queue](../queue/index.md)." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/playlists/remove_content.pot b/docs/locales/gettext/user_documentation/playlists/remove_content.pot new file mode 100644 index 000000000..ee77860a0 --- /dev/null +++ b/docs/locales/gettext/user_documentation/playlists/remove_content.pot @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/playlists/remove_content.md:1 +msgid "Remove content from a playlist" +msgstr "" + +#: ../../user_documentation/playlists/remove_content.md:4 +msgid "Removing content from a playlist removes it for anybody who follows the playlist." +msgstr "" + +#: ../../user_documentation/playlists/remove_content.md:7 +msgid "You can remove content from a playlist at any time. To do this:" +msgstr "" + +#: ../../user_documentation/playlists/remove_content.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/playlists/remove_content.md:11 +#: ../../user_documentation/playlists/remove_content.md:22 +msgid "Log in to your account." +msgstr "" + +#: ../../user_documentation/playlists/remove_content.md:12 +msgid "Select {guilabel}`Playlists` under the {guilabel}`My Library` section of the sidebar. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/playlists/remove_content.md:13 +#: ../../user_documentation/playlists/remove_content.md:25 +msgid "Select {guilabel}`Manage your playlists`. The {guilabel}`Manage playlists` screen appears." +msgstr "" + +#: ../../user_documentation/playlists/remove_content.md:14 +#: ../../user_documentation/playlists/remove_content.md:26 +msgid "Select the edit icon ({fa}`edit`) next to the playlist you want to edit. The playlist edit screen appears." +msgstr "" + +#: ../../user_documentation/playlists/remove_content.md:15 +#: ../../user_documentation/playlists/remove_content.md:27 +msgid "Select the delete icon ({fa}`trash`) next to the content you want to remove. Select {guilabel}`Clear playlist` to remove all content at once." +msgstr "" + +#: ../../user_documentation/playlists/remove_content.md:16 +#: ../../user_documentation/playlists/remove_content.md:28 +msgid "Select {guilabel}`Stop Editing` to finish editing." +msgstr "" + +#: ../../user_documentation/playlists/remove_content.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/playlists/remove_content.md:23 +msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar." +msgstr "" + +#: ../../user_documentation/playlists/remove_content.md:24 +msgid "Select {menuselection}`My Library --> Playlists`. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/playlists/remove_content.md:32 +msgid "That's it! You've removed the content from your playlist." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/playlists/reorder_content.pot b/docs/locales/gettext/user_documentation/playlists/reorder_content.pot new file mode 100644 index 000000000..0811e9ea8 --- /dev/null +++ b/docs/locales/gettext/user_documentation/playlists/reorder_content.pot @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/playlists/reorder_content.md:1 +msgid "Reorder content in a playlist" +msgstr "" + +#: ../../user_documentation/playlists/reorder_content.md:3 +msgid "You can change the order of the tracks in a playlist. To do this:" +msgstr "" + +#: ../../user_documentation/playlists/reorder_content.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/playlists/reorder_content.md:7 +#: ../../user_documentation/playlists/reorder_content.md:18 +msgid "Log in to your account." +msgstr "" + +#: ../../user_documentation/playlists/reorder_content.md:8 +msgid "Select {guilabel}`Playlists` under the {guilabel}`My Library` section of the sidebar. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/playlists/reorder_content.md:9 +#: ../../user_documentation/playlists/reorder_content.md:21 +msgid "Select {guilabel}`Manage your playlists`. The {guilabel}`Manage playlists` screen appears." +msgstr "" + +#: ../../user_documentation/playlists/reorder_content.md:10 +#: ../../user_documentation/playlists/reorder_content.md:22 +msgid "Select the edit icon ({fa}`edit`) next to the playlist you want to edit. The playlist edit screen appears." +msgstr "" + +#: ../../user_documentation/playlists/reorder_content.md:11 +#: ../../user_documentation/playlists/reorder_content.md:23 +msgid "Drag and drop the tracks in the playlist into the order you want. The position number of each track appears on the left side." +msgstr "" + +#: ../../user_documentation/playlists/reorder_content.md:12 +#: ../../user_documentation/playlists/reorder_content.md:24 +msgid "Select {guilabel}`Stop Editing` to finish editing." +msgstr "" + +#: ../../user_documentation/playlists/reorder_content.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/playlists/reorder_content.md:19 +msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar." +msgstr "" + +#: ../../user_documentation/playlists/reorder_content.md:20 +msgid "Select {menuselection}`My Library --> Playlists`. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/playlists/reorder_content.md:29 +msgid "You're done! You've updated the order of the tracks in your playlist." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/plugins/index.pot b/docs/locales/gettext/user_documentation/plugins/index.pot new file mode 100644 index 000000000..fd54e31b2 --- /dev/null +++ b/docs/locales/gettext/user_documentation/plugins/index.pot @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/plugins/index.md:9 +#: ../../user_documentation/plugins/index.md:9 +msgid "Core plugins" +msgstr "" + +#: ../../user_documentation/plugins/index.md:1 +msgid "User plugins" +msgstr "" + +#: ../../user_documentation/plugins/index.md:4 +msgid "Your {term}`pod's <Pod>` admin needs to enable plugins for you to use them. If you can't find the plugins mentioned here, contact your pod admin." +msgstr "" + +#: ../../user_documentation/plugins/index.md:7 +msgid "Use plugins to extend Funkwhale's features. The Funkwhale collective maintains core plugins to make your listening experience even better. Developers can create extra plugins to add features to a pod." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/plugins/listenbrainz_plugin.pot b/docs/locales/gettext/user_documentation/plugins/listenbrainz_plugin.pot new file mode 100644 index 000000000..c79adb8ca --- /dev/null +++ b/docs/locales/gettext/user_documentation/plugins/listenbrainz_plugin.pot @@ -0,0 +1,85 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/plugins/listenbrainz_plugin.md:1 +msgid "ListenBrainz plugin" +msgstr "" + +#: ../../user_documentation/plugins/listenbrainz_plugin.md:3 +msgid "The __ListenBrainz__ plugin enables you to submit ({term}`scrobble<Scrobbling>`) listens to your [ListenBrainz](https://listenbrainz.org) account. Scrobbling listens helps you build up a profile of your music tastes. It also enables you to keep a record of your listens. To set up the __ListenBrainz plugin__:" +msgstr "" + +#: ../../user_documentation/plugins/listenbrainz_plugin.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/plugins/listenbrainz_plugin.md:7 +#: ../../user_documentation/plugins/listenbrainz_plugin.md:21 +msgid "Log in to your account." +msgstr "" + +#: ../../user_documentation/plugins/listenbrainz_plugin.md:8 +msgid "Select the cog icon ({fa}`cog`) or your avatar to expand the user menu." +msgstr "" + +#: ../../user_documentation/plugins/listenbrainz_plugin.md:9 +#: ../../user_documentation/plugins/listenbrainz_plugin.md:23 +msgid "Select {guilabel}`Settings`." +msgstr "" + +#: ../../user_documentation/plugins/listenbrainz_plugin.md:10 +#: ../../user_documentation/plugins/listenbrainz_plugin.md:24 +msgid "Scroll down to the {guilabel}`Plugins` section." +msgstr "" + +#: ../../user_documentation/plugins/listenbrainz_plugin.md:11 +#: ../../user_documentation/plugins/listenbrainz_plugin.md:25 +msgid "Select {guilabel}`Manage plugins`." +msgstr "" + +#: ../../user_documentation/plugins/listenbrainz_plugin.md:12 +#: ../../user_documentation/plugins/listenbrainz_plugin.md:26 +msgid "Find the {guilabel}`ListenBrainz` plugin." +msgstr "" + +#: ../../user_documentation/plugins/listenbrainz_plugin.md:13 +#: ../../user_documentation/plugins/listenbrainz_plugin.md:27 +msgid "Toggle the {guilabel}`Enabled` switch." +msgstr "" + +#: ../../user_documentation/plugins/listenbrainz_plugin.md:14 +#: ../../user_documentation/plugins/listenbrainz_plugin.md:28 +msgid "Enter {guilabel}`Your ListenBrainz user token`. You can find this on your ListenBrainz profile." +msgstr "" + +#: ../../user_documentation/plugins/listenbrainz_plugin.md:15 +#: ../../user_documentation/plugins/listenbrainz_plugin.md:29 +msgid "Select {guilabel}`Save`." +msgstr "" + +#: ../../user_documentation/plugins/listenbrainz_plugin.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/plugins/listenbrainz_plugin.md:22 +msgid "Select the cog icon ({fa}`cog`) or your avatar to open the {guilabel}`Options` menu." +msgstr "" + +#: ../../user_documentation/plugins/listenbrainz_plugin.md:33 +msgid "That's it! You've set up the __ListenBrainz__ plugin. When you listen to tracks, the plugin sends the information to ListenBrainz." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/plugins/maloja_plugin.pot b/docs/locales/gettext/user_documentation/plugins/maloja_plugin.pot new file mode 100644 index 000000000..8750e973b --- /dev/null +++ b/docs/locales/gettext/user_documentation/plugins/maloja_plugin.pot @@ -0,0 +1,94 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/plugins/maloja_plugin.md:1 +msgid "Maloja plugin" +msgstr "" + +#: ../../user_documentation/plugins/maloja_plugin.md:3 +msgid "The __Maloja__ plugin enables you to submit ({term}`scrobble <Scrobbling>`) listens to your Maloja server. [Maloja](https://github.com/krateng/maloja) is a self-hosted scrobbling service similar to [Last.fm](https://last.fm) and [ListenBrainz](https://listenbrainz.org). Check out [their documentation](https://github.com/krateng/maloja#how-to-install) to set up your own server." +msgstr "" + +#: ../../user_documentation/plugins/maloja_plugin.md:5 +msgid "Scrobbling listens helps you build up a profile of your music tastes. It also enables you to keep a record of your listens. To set up the __Maloja plugin__:" +msgstr "" + +#: ../../user_documentation/plugins/maloja_plugin.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/plugins/maloja_plugin.md:9 +#: ../../user_documentation/plugins/maloja_plugin.md:24 +msgid "Log in to your account." +msgstr "" + +#: ../../user_documentation/plugins/maloja_plugin.md:10 +msgid "Select the cog icon ({fa}`cog`) or your avatar to expand the user menu." +msgstr "" + +#: ../../user_documentation/plugins/maloja_plugin.md:11 +#: ../../user_documentation/plugins/maloja_plugin.md:26 +msgid "Select {guilabel}`Settings`." +msgstr "" + +#: ../../user_documentation/plugins/maloja_plugin.md:12 +#: ../../user_documentation/plugins/maloja_plugin.md:27 +msgid "Scroll down to the {guilabel}`Plugins` section." +msgstr "" + +#: ../../user_documentation/plugins/maloja_plugin.md:13 +#: ../../user_documentation/plugins/maloja_plugin.md:28 +msgid "Select {guilabel}`Manage plugins`." +msgstr "" + +#: ../../user_documentation/plugins/maloja_plugin.md:14 +#: ../../user_documentation/plugins/maloja_plugin.md:29 +msgid "Find the {guilabel}`Maloja` plugin." +msgstr "" + +#: ../../user_documentation/plugins/maloja_plugin.md:15 +#: ../../user_documentation/plugins/maloja_plugin.md:30 +msgid "Toggle the {guilabel}`Enabled` switch." +msgstr "" + +#: ../../user_documentation/plugins/maloja_plugin.md:16 +#: ../../user_documentation/plugins/maloja_plugin.md:31 +msgid "Enter your {guilabel}`Maloja server URL`. This is the URL you set up for your Maloja server." +msgstr "" + +#: ../../user_documentation/plugins/maloja_plugin.md:17 +#: ../../user_documentation/plugins/maloja_plugin.md:32 +msgid "Enter {guilabel}`Your Maloja API key`. Check out [Maloja's documentation](https://github.com/krateng/maloja#how-to-scrobble) for more information." +msgstr "" + +#: ../../user_documentation/plugins/maloja_plugin.md:18 +#: ../../user_documentation/plugins/maloja_plugin.md:33 +msgid "Select {guilabel}`Save`." +msgstr "" + +#: ../../user_documentation/plugins/maloja_plugin.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/plugins/maloja_plugin.md:25 +msgid "Select the cog icon ({fa}`cog`) or your avatar to open the {guilabel}`Options` menu." +msgstr "" + +#: ../../user_documentation/plugins/maloja_plugin.md:37 +msgid "That's it! You've set up the __Maloja__ plugin. When you listen to tracks, the plugin sends the information to your Maloja server." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/plugins/scrobbler_plugin.pot b/docs/locales/gettext/user_documentation/plugins/scrobbler_plugin.pot new file mode 100644 index 000000000..ec89fb8cb --- /dev/null +++ b/docs/locales/gettext/user_documentation/plugins/scrobbler_plugin.pot @@ -0,0 +1,107 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:1 +msgid "Scrobbler plugin" +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:4 +msgid "If you want to use [Last.fm](https://last.fm) to scrobble your listens, your pod admin needs to set up an API account. Contact your {term}`pod` admin if you have any questions." +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:7 +msgid "The __Scrobbler__ plugin enables you to submit ({term}`scrobble<Scrobbling>`) listens to a scrobbler service. Scrobbling listens helps you build up a profile of your music tastes. It also enables you to keep a record of your listens." +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:10 +msgid "Using ListenBrainz or Maloja? Check out the [ListenBrainz](listenbrainz_plugin) and [Maloja](maloja_plugin) plugins!" +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:13 +msgid "The __Scrobbler__ plugin supports any scrobbling service that uses the Audioscrobbler protocol. To set up the __Scrobbler plugin__:" +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:17 +#: ../../user_documentation/plugins/scrobbler_plugin.md:33 +msgid "Log in to your account." +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:18 +msgid "Select the cog icon ({fa}`cog`) or your avatar to expand the user menu." +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:19 +#: ../../user_documentation/plugins/scrobbler_plugin.md:35 +msgid "Select {guilabel}`Settings`." +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:20 +#: ../../user_documentation/plugins/scrobbler_plugin.md:36 +msgid "Scroll down to the {guilabel}`Plugins` section." +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:21 +#: ../../user_documentation/plugins/scrobbler_plugin.md:37 +msgid "Select {guilabel}`Manage plugins`." +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:22 +#: ../../user_documentation/plugins/scrobbler_plugin.md:38 +msgid "Find the {guilabel}`Scrobbler` plugin." +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:23 +#: ../../user_documentation/plugins/scrobbler_plugin.md:39 +msgid "Toggle the {guilabel}`Enabled` switch." +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:24 +#: ../../user_documentation/plugins/scrobbler_plugin.md:40 +msgid "Enter the {guilabel}`URL of the scrobbler service`. If you leave this field blank, the plugin defaults to __Last.fm__." +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:25 +#: ../../user_documentation/plugins/scrobbler_plugin.md:41 +msgid "Enter {guilabel}`Your scrobbler username`. You can set this up on your scrobbler service." +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:26 +#: ../../user_documentation/plugins/scrobbler_plugin.md:42 +msgid "Enter {guilabel}`Your scrobbler password`. You can set this up on your scrobbler service." +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:27 +#: ../../user_documentation/plugins/scrobbler_plugin.md:43 +msgid "Select {guilabel}`Save`." +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:34 +msgid "Select the cog icon ({fa}`cog`) or your avatar to open the {guilabel}`Options` menu." +msgstr "" + +#: ../../user_documentation/plugins/scrobbler_plugin.md:47 +msgid "That's it! You've set up the __Scrobbler__ plugin. When you listen to tracks, the plugin sends the information to your scrobbler service." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/queue/add_album.pot b/docs/locales/gettext/user_documentation/queue/add_album.pot new file mode 100644 index 000000000..9ae99f9dc --- /dev/null +++ b/docs/locales/gettext/user_documentation/queue/add_album.pot @@ -0,0 +1,85 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/queue/add_album.md:1 +msgid "Add albums to your queue" +msgstr "" + +#: ../../user_documentation/queue/add_album.md:3 +msgid "Add entire albums to your queue to start listening to them. Choose from the following __Play options__:" +msgstr "" + +#: ../../user_documentation/queue/add_album.md:5 +msgid "__Play__ – remove all content from the queue and play the selected album." +msgstr "" + +#: ../../user_documentation/queue/add_album.md:6 +msgid "__Add to queue__ – add the selected album to the end of the queue." +msgstr "" + +#: ../../user_documentation/queue/add_album.md:7 +msgid "__Play next__ – add the selected album to the next position in the queue." +msgstr "" + +#: ../../user_documentation/queue/add_album.md:8 +msgid "__Play now__ – play the selected album immediately but do not clear the queue." +msgstr "" + +#: ../../user_documentation/queue/add_album.md:10 +msgid "You can add albums from the following places:" +msgstr "" + +#: ../../user_documentation/queue/add_album.md:16 +msgid "From the album details page" +msgstr "" + +#: ../../user_documentation/queue/add_album.md:18 +msgid "To add an album to the queue from the album details page:" +msgstr "" + +#: ../../user_documentation/queue/add_album.md:20 +msgid "Go to the album's details page." +msgstr "" + +#: ../../user_documentation/queue/add_album.md:21 +msgid "Select the orange play button ({fa}`play`) to __Play__ the album. Select the dropdown icon ({fa}`caret-down`) to select a different __Play option__." +msgstr "" + +#: ../../user_documentation/queue/add_album.md:23 +msgid "You're done! You've added the album to your queue." +msgstr "" + +#: ../../user_documentation/queue/add_album.md:25 +msgid "From an album card" +msgstr "" + +#: ../../user_documentation/queue/add_album.md:27 +msgid "To add an album from its album card:" +msgstr "" + +#: ../../user_documentation/queue/add_album.md:29 +msgid "Find the album card in the interface." +msgstr "" + +#: ../../user_documentation/queue/add_album.md:30 +msgid "Select the orange play button ({fa}`play`) to __Play__ the album. Select the kebab menu ({fa}`ellipsis-v`) to select a different __Play option__." +msgstr "" + +#: ../../user_documentation/queue/add_album.md:32 +msgid "That's it! You've added the album to your queue." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/queue/add_artist.pot b/docs/locales/gettext/user_documentation/queue/add_artist.pot new file mode 100644 index 000000000..d102abe6c --- /dev/null +++ b/docs/locales/gettext/user_documentation/queue/add_artist.pot @@ -0,0 +1,85 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/queue/add_artist.md:1 +msgid "Add artist discographies to your queue" +msgstr "" + +#: ../../user_documentation/queue/add_artist.md:3 +msgid "Add an artist's entire discography to your queue to start listening to it. Choose from the following __Play options__:" +msgstr "" + +#: ../../user_documentation/queue/add_artist.md:5 +msgid "__Play__ – remove all content from the queue and play the artist's discography." +msgstr "" + +#: ../../user_documentation/queue/add_artist.md:6 +msgid "__Add to queue__ – add the selected artist's discography to the end of the queue." +msgstr "" + +#: ../../user_documentation/queue/add_artist.md:7 +msgid "__Play next__ – add the selected artist's discography to the next position in the queue." +msgstr "" + +#: ../../user_documentation/queue/add_artist.md:8 +msgid "__Play now__ – play the artist's discography immediately but do not clear the queue." +msgstr "" + +#: ../../user_documentation/queue/add_artist.md:10 +msgid "You can add an artist's discography from the following places:" +msgstr "" + +#: ../../user_documentation/queue/add_artist.md:16 +msgid "From the artist details page" +msgstr "" + +#: ../../user_documentation/queue/add_artist.md:18 +msgid "To add an artist's discography to the queue from the artist details page:" +msgstr "" + +#: ../../user_documentation/queue/add_artist.md:20 +msgid "Go to the artist's details page." +msgstr "" + +#: ../../user_documentation/queue/add_artist.md:21 +msgid "Select the orange play button ({fa}`play`) to __Play__ the album. Select the {guilabel}`More…` to select a different __Play option__." +msgstr "" + +#: ../../user_documentation/queue/add_artist.md:23 +msgid "You're done! You've added the artist's discography to your queue." +msgstr "" + +#: ../../user_documentation/queue/add_artist.md:25 +msgid "From an artist card" +msgstr "" + +#: ../../user_documentation/queue/add_artist.md:27 +msgid "To add an artist's discography from their artist card:" +msgstr "" + +#: ../../user_documentation/queue/add_artist.md:29 +msgid "Find the artist card in the interface." +msgstr "" + +#: ../../user_documentation/queue/add_artist.md:30 +msgid "Select the orange play button ({fa}`play`) to __Play__ the album. Select the kebab menu ({fa}`ellipsis-v`) to select a different __Play option__." +msgstr "" + +#: ../../user_documentation/queue/add_artist.md:32 +msgid "That's it! You've added the artist's discography to your queue." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/queue/add_playlist.pot b/docs/locales/gettext/user_documentation/queue/add_playlist.pot new file mode 100644 index 000000000..bc2835dbd --- /dev/null +++ b/docs/locales/gettext/user_documentation/queue/add_playlist.pot @@ -0,0 +1,85 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/queue/add_playlist.md:1 +msgid "Add playlists to your queue" +msgstr "" + +#: ../../user_documentation/queue/add_playlist.md:3 +msgid "Add entire playlists to your queue to start listening to them. Choose from the following __Play options__:" +msgstr "" + +#: ../../user_documentation/queue/add_playlist.md:5 +msgid "__Play__ – remove all content from the queue and play the selected playlist." +msgstr "" + +#: ../../user_documentation/queue/add_playlist.md:6 +msgid "__Add to queue__ – add the selected playlist to the end of the queue." +msgstr "" + +#: ../../user_documentation/queue/add_playlist.md:7 +msgid "__Play next__ – add the selected playlist to the next position in the queue." +msgstr "" + +#: ../../user_documentation/queue/add_playlist.md:8 +msgid "__Play now__ – play the selected playlist immediately but do not clear the queue." +msgstr "" + +#: ../../user_documentation/queue/add_playlist.md:10 +msgid "You can add playlists from the following places:" +msgstr "" + +#: ../../user_documentation/queue/add_playlist.md:16 +msgid "From the playlist details page" +msgstr "" + +#: ../../user_documentation/queue/add_playlist.md:18 +msgid "To add an playlist to the queue from the playlist details page:" +msgstr "" + +#: ../../user_documentation/queue/add_playlist.md:20 +msgid "Go to the playlist's details page." +msgstr "" + +#: ../../user_documentation/queue/add_playlist.md:21 +msgid "Select {guilabel}`Play all` to __Play__ the playlist. Select the dropdown icon ({fa}`caret-down`) to select a different __Play option__." +msgstr "" + +#: ../../user_documentation/queue/add_playlist.md:23 +msgid "You're done! You've added the playlist to your queue." +msgstr "" + +#: ../../user_documentation/queue/add_playlist.md:25 +msgid "From an playlist card" +msgstr "" + +#: ../../user_documentation/queue/add_playlist.md:27 +msgid "To add an playlist from its playlist card:" +msgstr "" + +#: ../../user_documentation/queue/add_playlist.md:29 +msgid "Find the playlist card in the interface." +msgstr "" + +#: ../../user_documentation/queue/add_playlist.md:30 +msgid "Select the orange play button ({fa}`play`) to __Play__ the playlist. Select the kebab menu ({fa}`ellipsis-v`) to select a different __Play option__." +msgstr "" + +#: ../../user_documentation/queue/add_playlist.md:32 +msgid "That's it! You've added the playlist to your queue." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/queue/add_series.pot b/docs/locales/gettext/user_documentation/queue/add_series.pot new file mode 100644 index 000000000..e5a703996 --- /dev/null +++ b/docs/locales/gettext/user_documentation/queue/add_series.pot @@ -0,0 +1,57 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/queue/add_series.md:1 +msgid "Add series to your queue" +msgstr "" + +#: ../../user_documentation/queue/add_series.md:3 +msgid "Add entire series to your queue to start listening to them. Choose from the following __Play options__:" +msgstr "" + +#: ../../user_documentation/queue/add_series.md:5 +msgid "__Play__ – remove all content from the queue and play the selected series." +msgstr "" + +#: ../../user_documentation/queue/add_series.md:6 +msgid "__Add to queue__ – add the selected series to the end of the queue." +msgstr "" + +#: ../../user_documentation/queue/add_series.md:7 +msgid "__Play next__ – add the selected series to the next position in the queue." +msgstr "" + +#: ../../user_documentation/queue/add_series.md:8 +msgid "__Play now__ – play the selected series immediately but do not clear the queue." +msgstr "" + +#: ../../user_documentation/queue/add_series.md:10 +msgid "To add a series to the queue from the album details page:" +msgstr "" + +#: ../../user_documentation/queue/add_series.md:12 +msgid "Go to the series' details page." +msgstr "" + +#: ../../user_documentation/queue/add_series.md:13 +msgid "Select the orange play button ({fa}`play`) to __Play__ the series. Select the dropdown icon ({fa}`caret-down`) to select a different __Play option__." +msgstr "" + +#: ../../user_documentation/queue/add_series.md:15 +msgid "You're done! You've added the series to your queue." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/queue/add_tracks.pot b/docs/locales/gettext/user_documentation/queue/add_tracks.pot new file mode 100644 index 000000000..80dbd2933 --- /dev/null +++ b/docs/locales/gettext/user_documentation/queue/add_tracks.pot @@ -0,0 +1,57 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/queue/add_tracks.md:1 +msgid "Add tracks to your queue" +msgstr "" + +#: ../../user_documentation/queue/add_tracks.md:3 +msgid "Add tracks to your queue to start listening to them. Choose from the following __Play options__:" +msgstr "" + +#: ../../user_documentation/queue/add_tracks.md:5 +msgid "__Play__ – remove all content from the queue and play the selected track." +msgstr "" + +#: ../../user_documentation/queue/add_tracks.md:6 +msgid "__Add to queue__ – add the selected track to the end of the queue." +msgstr "" + +#: ../../user_documentation/queue/add_tracks.md:7 +msgid "__Play next__ – add the selected track to the next position in the queue." +msgstr "" + +#: ../../user_documentation/queue/add_tracks.md:8 +msgid "__Play now__ – play the selected track immediately but do not clear the queue." +msgstr "" + +#: ../../user_documentation/queue/add_tracks.md:10 +msgid "To add a track to the queue:" +msgstr "" + +#: ../../user_documentation/queue/add_tracks.md:12 +msgid "Find your track in a track table." +msgstr "" + +#: ../../user_documentation/queue/add_tracks.md:13 +msgid "Select the orange play button ({fa}`play`) to __Play__ the track. Select the kebab menu ({fa}`ellipsis-v`) to select a different __Play option__." +msgstr "" + +#: ../../user_documentation/queue/add_tracks.md:15 +msgid "That's it! You've added the track to your queue." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/queue/index.pot b/docs/locales/gettext/user_documentation/queue/index.pot new file mode 100644 index 000000000..c6f13739a --- /dev/null +++ b/docs/locales/gettext/user_documentation/queue/index.pot @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/queue/index.md:7 +#: ../../user_documentation/queue/index.md:7 +msgid "Manage your queue" +msgstr "" + +#: ../../user_documentation/queue/index.md:1 +msgid "Queue" +msgstr "" + +#: ../../user_documentation/queue/index.md:3 +msgid "Use the audio queue to manage audio playback. You can add tracks, albums, series, artist discographies, and playlists to your queue." +msgstr "" + +#: ../../user_documentation/queue/index.md:5 +msgid "Follow the guides in this section to get started." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/queue/rearrange_content.pot b/docs/locales/gettext/user_documentation/queue/rearrange_content.pot new file mode 100644 index 000000000..4ee2cb610 --- /dev/null +++ b/docs/locales/gettext/user_documentation/queue/rearrange_content.pot @@ -0,0 +1,49 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/queue/rearrange_content.md:1 +msgid "Rearrange content in your queue" +msgstr "" + +#: ../../user_documentation/queue/rearrange_content.md:4 +msgid "Rearranging content is currently only supported on the desktop." +msgstr "" + +#: ../../user_documentation/queue/rearrange_content.md:7 +msgid "You can change the order of content in your queue at any time. To do this:" +msgstr "" + +#: ../../user_documentation/queue/rearrange_content.md:9 +msgid "Select the up arrow ({fa}`caret-up`) on the queue menu to expand the queue." +msgstr "" + +#: ../../user_documentation/queue/rearrange_content.md:10 +msgid "Pick up tracks by selecting the grip lines on the left. Your mouse pointer shows a hand ({fa}`hand-grab-o`)." +msgstr "" + +#: ../../user_documentation/queue/rearrange_content.md:11 +msgid "Drop the tracks in their new position in the queue." +msgstr "" + +#: ../../user_documentation/queue/rearrange_content.md:12 +msgid "Select {guilabel}`Close` to close the queue." +msgstr "" + +#: ../../user_documentation/queue/rearrange_content.md:14 +msgid "That's it! You've rearranged the content in your queue." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/queue/remove_content.pot b/docs/locales/gettext/user_documentation/queue/remove_content.pot new file mode 100644 index 000000000..14cb1c662 --- /dev/null +++ b/docs/locales/gettext/user_documentation/queue/remove_content.pot @@ -0,0 +1,85 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/queue/remove_content.md:1 +msgid "Remove content from your queue" +msgstr "" + +#: ../../user_documentation/queue/remove_content.md:4 +msgid "If you remove the currently playing track, the next item in the queue plays. If you remove all items, the queue closes." +msgstr "" + +#: ../../user_documentation/queue/remove_content.md:7 +msgid "You can remove content from your queue at any time. You can choose between the following options:" +msgstr "" + +#: ../../user_documentation/queue/remove_content.md:13 +msgid "Remove individual tracks from the queue" +msgstr "" + +#: ../../user_documentation/queue/remove_content.md:15 +msgid "To remove individual tracks from the queue:" +msgstr "" + +#: ../../user_documentation/queue/remove_content.md:0 +#: ../../user_documentation/queue/remove_content.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/queue/remove_content.md:19 +#: ../../user_documentation/queue/remove_content.md:27 +#: ../../user_documentation/queue/remove_content.md:40 +#: ../../user_documentation/queue/remove_content.md:48 +msgid "Select the up arrow ({fa}`caret-up`) on the queue menu to expand the queue." +msgstr "" + +#: ../../user_documentation/queue/remove_content.md:20 +#: ../../user_documentation/queue/remove_content.md:28 +msgid "Select the delete icon ({fa}`times`) next to the track you want to remove." +msgstr "" + +#: ../../user_documentation/queue/remove_content.md:0 +#: ../../user_documentation/queue/remove_content.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/queue/remove_content.md:26 +#: ../../user_documentation/queue/remove_content.md:47 +msgid "Select the player bar at the bottom of the screen to expand the player." +msgstr "" + +#: ../../user_documentation/queue/remove_content.md:32 +msgid "That's it! You've removed tracks from your queue." +msgstr "" + +#: ../../user_documentation/queue/remove_content.md:34 +msgid "Remove all content from the queue" +msgstr "" + +#: ../../user_documentation/queue/remove_content.md:36 +msgid "To remove all content from your queue at once:" +msgstr "" + +#: ../../user_documentation/queue/remove_content.md:41 +#: ../../user_documentation/queue/remove_content.md:49 +msgid "Select {guilabel}`Clear` to remove all content from the queue." +msgstr "" + +#: ../../user_documentation/queue/remove_content.md:52 +msgid "That's it! You've removed all content from your queue." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/radios/create_radio.pot b/docs/locales/gettext/user_documentation/radios/create_radio.pot new file mode 100644 index 000000000..4b5cee448 --- /dev/null +++ b/docs/locales/gettext/user_documentation/radios/create_radio.pot @@ -0,0 +1,117 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/radios/create_radio.md:1 +msgid "Create a radio" +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:4 +msgid "If you add content from a __private__ library to a __public__ radio, users can see the tracks but can't play them." +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:7 +msgid "Create a new radio to create a dynamic playlist of content based on filters. You can filter tracks by __Artist__ and __Tag__." +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:9 +msgid "To create a new radio:" +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:13 +msgid "Select {guilabel}`Radios` in the sidebar. The {guilabel}`Browsing radios` screen opens." +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:14 +#: ../../user_documentation/radios/create_radio.md:33 +msgid "Select {guilabel}` Create your own radio` under the {guilabel}`User radios` section. The {guilabel}`Builder` screen opens." +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:15 +#: ../../user_documentation/radios/create_radio.md:34 +msgid "Enter a {guilabel}`Radio name`." +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:16 +#: ../../user_documentation/radios/create_radio.md:35 +msgid "__Optional__ – enter a {guilabel}`Description` for your radio." +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:17 +#: ../../user_documentation/radios/create_radio.md:36 +msgid "To make your radio available to other users on your {term}`pod`, enable the {guilabel}`Display publicly` switch. If you disable this switch, only you can see the radio." +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:18 +#: ../../user_documentation/radios/create_radio.md:37 +msgid "Select {guilabel}`Artist` or {guilabel}`Tag` from the {guilabel}`Select a filter` dropdown." +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:19 +#: ../../user_documentation/radios/create_radio.md:38 +msgid "Select {guilabel}`Add filter` to add the filter to your radio." +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:20 +#: ../../user_documentation/radios/create_radio.md:39 +msgid "Configure your filter:" +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:21 +#: ../../user_documentation/radios/create_radio.md:40 +msgid "Enable the {guilabel}`Exclude` switch to exclude results from your selection in the radio. Disable this switch to include results from your selection in the radio." +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:22 +#: ../../user_documentation/radios/create_radio.md:41 +msgid "Choose your __Artists__ or __Tags__ in the {guilabel}`Config` dropdown menu." +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:23 +#: ../../user_documentation/radios/create_radio.md:42 +msgid "The {guilabel}`Candidates` column shows the number of tracks included. Select the {guilabel}`{count} tracks matching filter` option to view some of these tracks." +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:24 +#: ../../user_documentation/radios/create_radio.md:43 +msgid "Check the tracks under the {guilabel}`{count} tracks matching combined filters` section." +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:25 +#: ../../user_documentation/radios/create_radio.md:44 +msgid "Select {guilabel}`Save` to save your radio." +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:31 +msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar." +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:32 +msgid "Select {menuselection}`Explore --> Radios` or {menuselection}`My Library --> Radios`. The {guilabel}`Browsing radios` screen opens." +msgstr "" + +#: ../../user_documentation/radios/create_radio.md:48 +msgid "You're done! You can now play your radio." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/radios/delete_radio.pot b/docs/locales/gettext/user_documentation/radios/delete_radio.pot new file mode 100644 index 000000000..de7d1b503 --- /dev/null +++ b/docs/locales/gettext/user_documentation/radios/delete_radio.pot @@ -0,0 +1,67 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/radios/delete_radio.md:1 +msgid "Delete a radio" +msgstr "" + +#: ../../user_documentation/radios/delete_radio.md:4 +msgid "Users who have access to your radio won't be able to access it when you delete it. This action is irreversible." +msgstr "" + +#: ../../user_documentation/radios/delete_radio.md:7 +msgid "If you no longer want a radio, you can delete it. To do this:" +msgstr "" + +#: ../../user_documentation/radios/delete_radio.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/radios/delete_radio.md:11 +msgid "Select {guilabel}`Radios` in the sidebar. The {guilabel}`Browsing radios` screen opens." +msgstr "" + +#: ../../user_documentation/radios/delete_radio.md:12 +msgid "Select your radio under the {guilabel}`User radios` section. The radio details screen opens." +msgstr "" + +#: ../../user_documentation/radios/delete_radio.md:13 +#: ../../user_documentation/radios/delete_radio.md:22 +msgid "Select {guilabel}`Delete`. A {guilabel}`Do you want to delete the radio` warning appears." +msgstr "" + +#: ../../user_documentation/radios/delete_radio.md:14 +#: ../../user_documentation/radios/delete_radio.md:23 +msgid "Select {guilabel}`Delete radio`." +msgstr "" + +#: ../../user_documentation/radios/delete_radio.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/radios/delete_radio.md:20 +msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar." +msgstr "" + +#: ../../user_documentation/radios/delete_radio.md:21 +msgid "Select {menuselection}`Explore --> Radios` or {menuselection}`My Library --> Radios`. The {guilabel}`Browsing radios` screen opens.2. 3. Select your radio under the {guilabel}`User radios` section. The radio details screen opens." +msgstr "" + +#: ../../user_documentation/radios/delete_radio.md:27 +msgid "That's it! You've deleted your radio. You can [create a new one](create_radio.md) at any time." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/radios/edit_radio.pot b/docs/locales/gettext/user_documentation/radios/edit_radio.pot new file mode 100644 index 000000000..a15491473 --- /dev/null +++ b/docs/locales/gettext/user_documentation/radios/edit_radio.pot @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/radios/edit_radio.md:1 +msgid "Edit a radio" +msgstr "" + +#: ../../user_documentation/radios/edit_radio.md:3 +msgid "You can edit a radio at any time to change its details, its filters, or both. To do this:" +msgstr "" + +#: ../../user_documentation/radios/edit_radio.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/radios/edit_radio.md:7 +msgid "Select {guilabel}`Radios` in the sidebar. The {guilabel}`Browsing radios` screen opens." +msgstr "" + +#: ../../user_documentation/radios/edit_radio.md:8 +#: ../../user_documentation/radios/edit_radio.md:22 +msgid "Find your radio under the {guilabel}`User radios` section. Select {guilabel}`Edit`. The {guilabel}`Builder` screen opens." +msgstr "" + +#: ../../user_documentation/radios/edit_radio.md:9 +#: ../../user_documentation/radios/edit_radio.md:23 +msgid "Edit any of the following:" +msgstr "" + +#: ../../user_documentation/radios/edit_radio.md:10 +#: ../../user_documentation/radios/edit_radio.md:24 +msgid "{guilabel}`Radio name`." +msgstr "" + +#: ../../user_documentation/radios/edit_radio.md:11 +#: ../../user_documentation/radios/edit_radio.md:25 +msgid "{guilabel}`Description`." +msgstr "" + +#: ../../user_documentation/radios/edit_radio.md:12 +#: ../../user_documentation/radios/edit_radio.md:26 +msgid "{guilabel}`Display publicly`." +msgstr "" + +#: ../../user_documentation/radios/edit_radio.md:13 +#: ../../user_documentation/radios/edit_radio.md:27 +msgid "Select {guilabel}`Add filter` to add new filters. Select {guilabel}`Remove` to remove existing filters." +msgstr "" + +#: ../../user_documentation/radios/edit_radio.md:14 +#: ../../user_documentation/radios/edit_radio.md:28 +msgid "Select {guilabel}`Save` to save your radio." +msgstr "" + +#: ../../user_documentation/radios/edit_radio.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/radios/edit_radio.md:20 +msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar." +msgstr "" + +#: ../../user_documentation/radios/edit_radio.md:21 +msgid "Select {menuselection}`Explore --> Radios` or {menuselection}`My Library --> Radios`. The {guilabel}`Browsing radios` screen opens." +msgstr "" + +#: ../../user_documentation/radios/edit_radio.md:32 +msgid "That's it! You've updated your radio's details." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/radios/index.pot b/docs/locales/gettext/user_documentation/radios/index.pot new file mode 100644 index 000000000..8fa0a285e --- /dev/null +++ b/docs/locales/gettext/user_documentation/radios/index.pot @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/radios/index.md:13 +#: ../../user_documentation/radios/index.md:13 +msgid "Manage your radios" +msgstr "" + +#: ../../user_documentation/radios/index.md:1 +msgid "Radios" +msgstr "" + +#: ../../user_documentation/radios/index.md:3 +msgid "Radios are a great way to discover new music or rediscover old favorites. A radio builds a dynamic playlist of content based on selected criteria. Create genre and artist radios, or tune in to one of Funkwhale's built-in radios." +msgstr "" + +#: ../../user_documentation/radios/index.md:5 +msgid "Funkwhale offers the following radios out of the box:" +msgstr "" + +#: ../../user_documentation/radios/index.md:7 +msgid "__Your content__ – listen to content from [libraries](../libraries/index.md) you own." +msgstr "" + +#: ../../user_documentation/radios/index.md:8 +msgid "__Favorites__ – listen to tracks from your [favorites](../favorites/index.md) list." +msgstr "" + +#: ../../user_documentation/radios/index.md:9 +msgid "__Random__ – discover something new by letting Funkwhale choose tracks at random." +msgstr "" + +#: ../../user_documentation/radios/index.md:10 +msgid "__Recently Added__ – listen to the latest content added to your {term}`pod`." +msgstr "" + +#: ../../user_documentation/radios/index.md:11 +msgid "__Less listened__ – check out tracks you've not heard, or things you haven't given as much attention." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/radios/listen_radio.pot b/docs/locales/gettext/user_documentation/radios/listen_radio.pot new file mode 100644 index 000000000..a285392c9 --- /dev/null +++ b/docs/locales/gettext/user_documentation/radios/listen_radio.pot @@ -0,0 +1,132 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/radios/listen_radio.md:1 +msgid "Listen to a radio" +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:4 +msgid "You can only listen to content in libraries you have access to. For more information, see [Follow a library](../libraries/follow_library)." +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:7 +msgid "You can listen to your radios or public radios created by other users of your {term}`pod`." +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:13 +msgid "Listen to your radios" +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:15 +msgid "To listen to radios you created:" +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:0 +#: ../../user_documentation/radios/listen_radio.md:0 +#: ../../user_documentation/radios/listen_radio.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:19 +msgid "Select {menuselection}`My Library --> Radios` in the sidebar. The {guilabel}`Browsing radios` screen opens." +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:20 +#: ../../user_documentation/radios/listen_radio.md:29 +msgid "Use the filters in the {guilabel}`User radios` section to search for your radio." +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:21 +#: ../../user_documentation/radios/listen_radio.md:30 +msgid "Select {guilabel}`Play radio` on your radio to start playing the content." +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:0 +#: ../../user_documentation/radios/listen_radio.md:0 +#: ../../user_documentation/radios/listen_radio.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:27 +#: ../../user_documentation/radios/listen_radio.md:50 +msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar." +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:28 +msgid "Select {menuselection}`My Library --> Radios`. The {guilabel}`Browsing radios` screen opens." +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:34 +msgid "You're done! Your radio starts playing." +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:36 +msgid "Listen to public radios from your pod" +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:38 +msgid "To listen to public radios other users created:" +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:42 +msgid "Select {menuselection}`Explore --> Radios` in the sidebar. The {guilabel}`Browsing radios` screen opens." +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:43 +#: ../../user_documentation/radios/listen_radio.md:52 +msgid "Use the filters in the {guilabel}`User radios` section to search for a radio." +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:44 +#: ../../user_documentation/radios/listen_radio.md:53 +msgid "Select {guilabel}`Play radio` on the selected radio to start playing the content." +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:51 +msgid "Select {menuselection}`Explore --> Radios`. The {guilabel}`Browsing radios` screen opens." +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:57 +msgid "That's it! The radio starts playing." +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:59 +msgid "Stop a radio" +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:61 +msgid "Radios continue to play until there is no more content matching their criteria. You can stop radios whenever you want. To do this:" +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:65 +#: ../../user_documentation/radios/listen_radio.md:73 +msgid "Select the up arrow ({fa}`caret-up`) on the queue menu to expand the [queue](../queue/index.md)." +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:66 +#: ../../user_documentation/radios/listen_radio.md:74 +msgid "Select {guilabel}`Stop Radio` at the bottom of the queue." +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:72 +msgid "Select the player bar at the bottom of the screen to expand the player." +msgstr "" + +#: ../../user_documentation/radios/listen_radio.md:78 +msgid "That's it! The radio stops playing. The radio's content remains in the queue." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/reports/index.pot b/docs/locales/gettext/user_documentation/reports/index.pot new file mode 100644 index 000000000..9569d8fb4 --- /dev/null +++ b/docs/locales/gettext/user_documentation/reports/index.pot @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/reports/index.md:9 +#: ../../user_documentation/reports/index.md:9 +msgid "Submit reports" +msgstr "" + +#: ../../user_documentation/reports/index.md:1 +msgid "Reporting" +msgstr "" + +#: ../../user_documentation/reports/index.md:4 +msgid "{term}`Pod <Pod>` admins and moderators are responsible for handling reports. Pod admins can choose to allow anonymous (logged out) users to send reports. If you cannot send reports anonymously, contact the pod admin." +msgstr "" + +#: ../../user_documentation/reports/index.md:7 +msgid "Funkwhale provides tools for reporting all content and accounts. You can report content for being objectionable or illegal. You can also report stolen content. Check out the guides in this section to see how to send a report." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/reports/report_account.pot b/docs/locales/gettext/user_documentation/reports/report_account.pot new file mode 100644 index 000000000..99bd33262 --- /dev/null +++ b/docs/locales/gettext/user_documentation/reports/report_account.pot @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/reports/report_account.md:1 +msgid "Report an account" +msgstr "" + +#: ../../user_documentation/reports/report_account.md:3 +msgid "You can report a user account if the user is breaking the {term}`pod's <Pod>` rules. To do this:" +msgstr "" + +#: ../../user_documentation/reports/report_account.md:5 +msgid "Select the user's username to go to their profile page." +msgstr "" + +#: ../../user_documentation/reports/report_account.md:6 +msgid "Select the kebab menu ({fa}`ellipsis-v`) to open the options menu." +msgstr "" + +#: ../../user_documentation/reports/report_account.md:7 +msgid "Select {guilabel}`Report {username}`. A {guilabel}`Do you want to report this object?` menu appears." +msgstr "" + +#: ../../user_documentation/reports/report_account.md:8 +msgid "Select a {guilabel}`Category`. Choose one of the following:" +msgstr "" + +#: ../../user_documentation/reports/report_account.md:9 +msgid "__Takedown request__ – request removal of copyrighted material." +msgstr "" + +#: ../../user_documentation/reports/report_account.md:10 +msgid "__Illegal content__ – report an account that features illegal content." +msgstr "" + +#: ../../user_documentation/reports/report_account.md:11 +msgid "__Offensive content__ – report an account that features offensive or abusive content." +msgstr "" + +#: ../../user_documentation/reports/report_account.md:12 +msgid "__Other__ – submit details of your report in the {guilabel}`Message` field." +msgstr "" + +#: ../../user_documentation/reports/report_account.md:13 +msgid "__If you are not logged in__ – enter your {guilabel}`Email`. Pod moderators use this address to contact you." +msgstr "" + +#: ../../user_documentation/reports/report_account.md:14 +msgid "Enter details of your report in the {guilabel}`Message` field. Provide as much detail as possible here to help the moderators action the report." +msgstr "" + +#: ../../user_documentation/reports/report_account.md:15 +msgid "Select {guilabel}`Submit report` to send your report to the pod moderators." +msgstr "" + +#: ../../user_documentation/reports/report_account.md:17 +msgid "That's it! The pod's moderators can now action the report or contact you for clarification." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/reports/report_album.pot b/docs/locales/gettext/user_documentation/reports/report_album.pot new file mode 100644 index 000000000..22e4c11f6 --- /dev/null +++ b/docs/locales/gettext/user_documentation/reports/report_album.pot @@ -0,0 +1,77 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/reports/report_album.md:1 +msgid "Report an album" +msgstr "" + +#: ../../user_documentation/reports/report_album.md:3 +msgid "If an album violates a {term}`pod's <Pod>` rules or the law, you can report it. To do this:" +msgstr "" + +#: ../../user_documentation/reports/report_album.md:5 +msgid "Go to the album details page." +msgstr "" + +#: ../../user_documentation/reports/report_album.md:6 +msgid "Select the kebab menu ({fa}`ellipsis-v`) to open the options menu." +msgstr "" + +#: ../../user_documentation/reports/report_album.md:7 +msgid "Select {guilabel}`Report this album`. A {guilabel}`Do you want to report this object?` menu appears." +msgstr "" + +#: ../../user_documentation/reports/report_album.md:8 +msgid "Select a {guilabel}`Category`. Choose one of the following:" +msgstr "" + +#: ../../user_documentation/reports/report_album.md:9 +msgid "__Takedown request__ – request removal of copyrighted material." +msgstr "" + +#: ../../user_documentation/reports/report_album.md:10 +msgid "__Illegal content__ – report an album that features illegal content." +msgstr "" + +#: ../../user_documentation/reports/report_album.md:11 +msgid "__Offensive content__ – report an album that features offensive or abusive content." +msgstr "" + +#: ../../user_documentation/reports/report_album.md:12 +msgid "__Invalid metadata__ – report that an album features invalid metadata." +msgstr "" + +#: ../../user_documentation/reports/report_album.md:13 +msgid "__Other__ – submit details of your report in the {guilabel}`Message` field." +msgstr "" + +#: ../../user_documentation/reports/report_album.md:14 +msgid "__If you are not logged in__ – enter your {guilabel}`Email`. Pod moderators use this address to contact you." +msgstr "" + +#: ../../user_documentation/reports/report_album.md:15 +msgid "Enter details of your report in the {guilabel}`Message` field. Provide as much detail as possible here to help the moderators action the report." +msgstr "" + +#: ../../user_documentation/reports/report_album.md:16 +msgid "Select {guilabel}`Submit report` to send your report to the pod moderators." +msgstr "" + +#: ../../user_documentation/reports/report_album.md:18 +msgid "That's it! The pod's moderators can now action the report or contact you for clarification." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/reports/report_artist.pot b/docs/locales/gettext/user_documentation/reports/report_artist.pot new file mode 100644 index 000000000..95150749c --- /dev/null +++ b/docs/locales/gettext/user_documentation/reports/report_artist.pot @@ -0,0 +1,77 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/reports/report_artist.md:1 +msgid "Report an artist" +msgstr "" + +#: ../../user_documentation/reports/report_artist.md:3 +msgid "If an artist's content violates a {term}`pod's <Pod>` rules or the law, you can report it. To do this:" +msgstr "" + +#: ../../user_documentation/reports/report_artist.md:5 +msgid "Go to the artist details page." +msgstr "" + +#: ../../user_documentation/reports/report_artist.md:6 +msgid "Select {guilabel}`More…` to open the options menu." +msgstr "" + +#: ../../user_documentation/reports/report_artist.md:7 +msgid "Select {guilabel}`Report this artist`. A {guilabel}`Do you want to report this object?` menu appears." +msgstr "" + +#: ../../user_documentation/reports/report_artist.md:8 +msgid "Select a {guilabel}`Category`. Choose one of the following:" +msgstr "" + +#: ../../user_documentation/reports/report_artist.md:9 +msgid "__Takedown request__ – request removal of copyrighted material." +msgstr "" + +#: ../../user_documentation/reports/report_artist.md:10 +msgid "__Illegal content__ – report an artist that features illegal content." +msgstr "" + +#: ../../user_documentation/reports/report_artist.md:11 +msgid "__Offensive content__ – report an artist that features offensive or abusive content." +msgstr "" + +#: ../../user_documentation/reports/report_artist.md:12 +msgid "__Invalid metadata__ – report that an artist's content features invalid metadata." +msgstr "" + +#: ../../user_documentation/reports/report_artist.md:13 +msgid "__Other__ – submit details of your report in the {guilabel}`Message` field." +msgstr "" + +#: ../../user_documentation/reports/report_artist.md:14 +msgid "__If you are not logged in__ – enter your {guilabel}`Email`. Pod moderators use this address to contact you." +msgstr "" + +#: ../../user_documentation/reports/report_artist.md:15 +msgid "Enter details of your report in the {guilabel}`Message` field. Provide as much detail as possible here to help the moderators action the report." +msgstr "" + +#: ../../user_documentation/reports/report_artist.md:16 +msgid "Select {guilabel}`Submit report` to send your report to the pod moderators." +msgstr "" + +#: ../../user_documentation/reports/report_artist.md:18 +msgid "That's it! The pod's moderators can now action the report or contact you for clarification." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/reports/report_channel.pot b/docs/locales/gettext/user_documentation/reports/report_channel.pot new file mode 100644 index 000000000..c74657200 --- /dev/null +++ b/docs/locales/gettext/user_documentation/reports/report_channel.pot @@ -0,0 +1,77 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/reports/report_channel.md:1 +msgid "Report a channel" +msgstr "" + +#: ../../user_documentation/reports/report_channel.md:3 +msgid "If a channel's content violates a {term}`pod's <Pod>` rules or the law, you can report it. To do this:" +msgstr "" + +#: ../../user_documentation/reports/report_channel.md:5 +msgid "Go to the channel's details page." +msgstr "" + +#: ../../user_documentation/reports/report_channel.md:6 +msgid "Select the kebab menu ({fa}`ellipsis-v`) to open the options menu." +msgstr "" + +#: ../../user_documentation/reports/report_channel.md:7 +msgid "Select {guilabel}`Report this channel`. A {guilabel}`Do you want to report this object?` menu appears." +msgstr "" + +#: ../../user_documentation/reports/report_channel.md:8 +msgid "Select a {guilabel}`Category`. Choose one of the following:" +msgstr "" + +#: ../../user_documentation/reports/report_channel.md:9 +msgid "__Takedown request__ – request removal of copyrighted material." +msgstr "" + +#: ../../user_documentation/reports/report_channel.md:10 +msgid "__Illegal content__ – report a channel that features illegal content." +msgstr "" + +#: ../../user_documentation/reports/report_channel.md:11 +msgid "__Offensive content__ – report a channel that features offensive or abusive content." +msgstr "" + +#: ../../user_documentation/reports/report_channel.md:12 +msgid "__Invalid metadata__ – report that a channel's content features invalid metadata." +msgstr "" + +#: ../../user_documentation/reports/report_channel.md:13 +msgid "__Other__ – submit details of your report in the {guilabel}`Message` field." +msgstr "" + +#: ../../user_documentation/reports/report_channel.md:14 +msgid "__If you are not logged in__ – enter your {guilabel}`Email`. Pod moderators use this address to contact you." +msgstr "" + +#: ../../user_documentation/reports/report_channel.md:15 +msgid "Enter details of your report in the {guilabel}`Message` field. Provide as much detail as possible here to help the moderators action the report." +msgstr "" + +#: ../../user_documentation/reports/report_channel.md:16 +msgid "Select {guilabel}`Submit report` to send your report to the pod moderators." +msgstr "" + +#: ../../user_documentation/reports/report_channel.md:18 +msgid "That's it! The pod's moderators can now action the report or contact you for clarification." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/reports/report_library.pot b/docs/locales/gettext/user_documentation/reports/report_library.pot new file mode 100644 index 000000000..70452bef5 --- /dev/null +++ b/docs/locales/gettext/user_documentation/reports/report_library.pot @@ -0,0 +1,77 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/reports/report_library.md:1 +msgid "Report a library" +msgstr "" + +#: ../../user_documentation/reports/report_library.md:3 +msgid "If a channel's content violates a {term}`pod's <Pod>` rules or the law, you can report it. To do this:" +msgstr "" + +#: ../../user_documentation/reports/report_library.md:5 +msgid "Go to the library's details page." +msgstr "" + +#: ../../user_documentation/reports/report_library.md:6 +msgid "Select the kebab menu ({fa}`ellipsis-v`) to open the options menu." +msgstr "" + +#: ../../user_documentation/reports/report_library.md:7 +msgid "Select {guilabel}`Report this library`. A {guilabel}`Do you want to report this object?` menu appears." +msgstr "" + +#: ../../user_documentation/reports/report_library.md:8 +msgid "Select a {guilabel}`Category`. Choose one of the following:" +msgstr "" + +#: ../../user_documentation/reports/report_library.md:9 +msgid "__Takedown request__ – request removal of copyrighted material." +msgstr "" + +#: ../../user_documentation/reports/report_library.md:10 +msgid "__Illegal content__ – report a library that features illegal content." +msgstr "" + +#: ../../user_documentation/reports/report_library.md:11 +msgid "__Offensive content__ – report a library that features offensive or abusive content." +msgstr "" + +#: ../../user_documentation/reports/report_library.md:12 +msgid "__Invalid metadata__ – report that a library's content features invalid metadata." +msgstr "" + +#: ../../user_documentation/reports/report_library.md:13 +msgid "__Other__ – submit details of your report in the {guilabel}`Message` field." +msgstr "" + +#: ../../user_documentation/reports/report_library.md:14 +msgid "__If you are not logged in__ – enter your {guilabel}`Email`. Pod moderators use this address to contact you." +msgstr "" + +#: ../../user_documentation/reports/report_library.md:15 +msgid "Enter details of your report in the {guilabel}`Message` field. Provide as much detail as possible here to help the moderators action the report." +msgstr "" + +#: ../../user_documentation/reports/report_library.md:16 +msgid "Select {guilabel}`Submit report` to send your report to the pod moderators." +msgstr "" + +#: ../../user_documentation/reports/report_library.md:18 +msgid "That's it! The pod's moderators can now action the report or contact you for clarification." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/reports/report_playlist.pot b/docs/locales/gettext/user_documentation/reports/report_playlist.pot new file mode 100644 index 000000000..e786870db --- /dev/null +++ b/docs/locales/gettext/user_documentation/reports/report_playlist.pot @@ -0,0 +1,109 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/reports/report_playlist.md:1 +msgid "Report a playlist" +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:3 +msgid "If a playlist's content violates a {term}`pod's <Pod>` rules or the law, you can report it. To do this:" +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:7 +msgid "Select {menuselection}`Explore --> Playlists` in the sidebar. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:8 +#: ../../user_documentation/reports/report_playlist.md:27 +msgid "Use the filters to search for a playlist." +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:9 +#: ../../user_documentation/reports/report_playlist.md:28 +msgid "Select the three dot menu ({fa}`ellipsis-h`) to open the options menu." +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:10 +#: ../../user_documentation/reports/report_playlist.md:29 +msgid "Select {guilabel}`Report this playlist`. A {guilabel}`Do you want to report this object?` menu appears." +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:11 +#: ../../user_documentation/reports/report_playlist.md:30 +msgid "Select a {guilabel}`Category`. Choose one of the following:" +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:12 +#: ../../user_documentation/reports/report_playlist.md:31 +msgid "__Takedown request__ – request removal of copyrighted material." +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:13 +#: ../../user_documentation/reports/report_playlist.md:32 +msgid "__Illegal content__ – report a playlist that features illegal content." +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:14 +#: ../../user_documentation/reports/report_playlist.md:33 +msgid "__Offensive content__ – report a playlist that features offensive or abusive content." +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:15 +#: ../../user_documentation/reports/report_playlist.md:34 +msgid "__Invalid metadata__ – report that a playlist's content features invalid metadata." +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:16 +#: ../../user_documentation/reports/report_playlist.md:35 +msgid "__Other__ – submit details of your report in the {guilabel}`Message` field." +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:17 +#: ../../user_documentation/reports/report_playlist.md:36 +msgid "__If you are not logged in__ – enter your {guilabel}`Email`. Pod moderators use this address to contact you." +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:18 +#: ../../user_documentation/reports/report_playlist.md:37 +msgid "Enter details of your report in the {guilabel}`Message` field. Provide as much detail as possible here to help the moderators action the report." +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:19 +#: ../../user_documentation/reports/report_playlist.md:38 +msgid "Select {guilabel}`Submit report` to send your report to the pod moderators." +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:25 +msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar." +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:26 +msgid "Select {menuselection}`Explore --> Playlists`. The {guilabel}`Browsing playlists` screen opens." +msgstr "" + +#: ../../user_documentation/reports/report_playlist.md:42 +msgid "That's it! The pod's moderators can now action the report or contact you for clarification." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/reports/report_track.pot b/docs/locales/gettext/user_documentation/reports/report_track.pot new file mode 100644 index 000000000..b260867bc --- /dev/null +++ b/docs/locales/gettext/user_documentation/reports/report_track.pot @@ -0,0 +1,77 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/reports/report_track.md:1 +msgid "Report a track" +msgstr "" + +#: ../../user_documentation/reports/report_track.md:3 +msgid "If a track violates a {term}`pod's <Pod>` rules or the law, you can report it. To do this:" +msgstr "" + +#: ../../user_documentation/reports/report_track.md:5 +msgid "Go to the track details page or locate the track in a track table." +msgstr "" + +#: ../../user_documentation/reports/report_track.md:6 +msgid "Select the kebab menu ({fa}`ellipsis-v`) to open the options menu." +msgstr "" + +#: ../../user_documentation/reports/report_track.md:7 +msgid "Select {guilabel}`Report this track`. A {guilabel}`Do you want to report this object?` menu appears." +msgstr "" + +#: ../../user_documentation/reports/report_track.md:8 +msgid "Select a {guilabel}`Category`. Choose one of the following:" +msgstr "" + +#: ../../user_documentation/reports/report_track.md:9 +msgid "__Takedown request__ – request removal of copyrighted material." +msgstr "" + +#: ../../user_documentation/reports/report_track.md:10 +msgid "__Illegal content__ – report a track that features illegal content." +msgstr "" + +#: ../../user_documentation/reports/report_track.md:11 +msgid "__Offensive content__ – report a track that features offensive or abusive content." +msgstr "" + +#: ../../user_documentation/reports/report_track.md:12 +msgid "__Invalid metadata__ – report that a track features invalid metadata." +msgstr "" + +#: ../../user_documentation/reports/report_track.md:13 +msgid "__Other__ – submit details of your report in the {guilabel}`Message` field." +msgstr "" + +#: ../../user_documentation/reports/report_track.md:14 +msgid "__If you are not logged in__ – enter your {guilabel}`Email`. Pod moderators use this address to contact you." +msgstr "" + +#: ../../user_documentation/reports/report_track.md:15 +msgid "Enter details of your report in the {guilabel}`Message` field. Provide as much detail as possible here to help the moderators action the report." +msgstr "" + +#: ../../user_documentation/reports/report_track.md:16 +msgid "Select {guilabel}`Submit report` to send your report to the pod moderators." +msgstr "" + +#: ../../user_documentation/reports/report_track.md:18 +msgid "That's it! The pod's moderators can now action the report or contact you for clarification." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/subsonic/disable_subsonic.pot b/docs/locales/gettext/user_documentation/subsonic/disable_subsonic.pot new file mode 100644 index 000000000..32b68ebf3 --- /dev/null +++ b/docs/locales/gettext/user_documentation/subsonic/disable_subsonic.pot @@ -0,0 +1,75 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/subsonic/disable_subsonic.md:1 +msgid "Disable Subsonic access" +msgstr "" + +#: ../../user_documentation/subsonic/disable_subsonic.md:3 +msgid "If you don't want to use Subsonic any more, you can disable access. This stops any Subsonic apps being able to log in to your account. To do this:" +msgstr "" + +#: ../../user_documentation/subsonic/disable_subsonic.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/subsonic/disable_subsonic.md:7 +#: ../../user_documentation/subsonic/disable_subsonic.md:19 +msgid "Log in to your account." +msgstr "" + +#: ../../user_documentation/subsonic/disable_subsonic.md:8 +msgid "Select the cog icon ({fa}`cog`) or your avatar to expand the user menu." +msgstr "" + +#: ../../user_documentation/subsonic/disable_subsonic.md:9 +#: ../../user_documentation/subsonic/disable_subsonic.md:21 +msgid "Select {guilabel}`Settings`." +msgstr "" + +#: ../../user_documentation/subsonic/disable_subsonic.md:10 +#: ../../user_documentation/subsonic/disable_subsonic.md:22 +msgid "Scroll to the {guilabel}`Subsonic API password` section." +msgstr "" + +#: ../../user_documentation/subsonic/disable_subsonic.md:11 +#: ../../user_documentation/subsonic/disable_subsonic.md:23 +msgid "Select {guilabel}`Disable Subsonic access`." +msgstr "" + +#: ../../user_documentation/subsonic/disable_subsonic.md:12 +#: ../../user_documentation/subsonic/disable_subsonic.md:24 +msgid "Select {guilabel}`Disable access` in the warning message that appears." +msgstr "" + +#: ../../user_documentation/subsonic/disable_subsonic.md:13 +#: ../../user_documentation/subsonic/disable_subsonic.md:25 +msgid "The Subsonic password field shows {guilabel}`Access disabled`." +msgstr "" + +#: ../../user_documentation/subsonic/disable_subsonic.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/subsonic/disable_subsonic.md:20 +msgid "Select the cog icon ({fa}`cog`) or your avatar to open the {guilabel}`Options` menu." +msgstr "" + +#: ../../user_documentation/subsonic/disable_subsonic.md:29 +msgid "You're done! Subsonic apps can no longer access your account. You can re-enable the API at any time by [requesting a new password](subsonic_password)." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/subsonic/index.pot b/docs/locales/gettext/user_documentation/subsonic/index.pot new file mode 100644 index 000000000..60c25ec28 --- /dev/null +++ b/docs/locales/gettext/user_documentation/subsonic/index.pot @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/subsonic/index.md:9 +#: ../../user_documentation/subsonic/index.md:9 +msgid "Manage your Subsonic access" +msgstr "" + +#: ../../user_documentation/subsonic/index.md:1 +msgid "Subsonic access" +msgstr "" + +#: ../../user_documentation/subsonic/index.md:4 +msgid "{term}`Pod` admins can choose to disable access to the Subsonic API. If the Subsonic password option isn't available, contact your pod admin." +msgstr "" + +#: ../../user_documentation/subsonic/index.md:7 +msgid "Funkwhale supports a subset of the [Subsonic API](http://www.subsonic.org/pages/index.jsp). This enables you to use Subsonic apps to stream your Funkwhale content. Check out the guides in this section to manage your Subsonic access." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/subsonic/reset_subsonic.pot b/docs/locales/gettext/user_documentation/subsonic/reset_subsonic.pot new file mode 100644 index 000000000..864090582 --- /dev/null +++ b/docs/locales/gettext/user_documentation/subsonic/reset_subsonic.pot @@ -0,0 +1,79 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/subsonic/reset_subsonic.md:1 +msgid "Reset your Subsonic password" +msgstr "" + +#: ../../user_documentation/subsonic/reset_subsonic.md:4 +msgid "Changing your Subsonic password logs you out of any Subsonic apps you are using. You need to log back in using your new password." +msgstr "" + +#: ../../user_documentation/subsonic/reset_subsonic.md:7 +msgid "You can reset your Subsonic password at any time. To do this:" +msgstr "" + +#: ../../user_documentation/subsonic/reset_subsonic.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/subsonic/reset_subsonic.md:11 +#: ../../user_documentation/subsonic/reset_subsonic.md:23 +msgid "Log in to your account." +msgstr "" + +#: ../../user_documentation/subsonic/reset_subsonic.md:12 +msgid "Select the cog icon ({fa}`cog`) or your avatar to expand the user menu." +msgstr "" + +#: ../../user_documentation/subsonic/reset_subsonic.md:13 +#: ../../user_documentation/subsonic/reset_subsonic.md:25 +msgid "Select {guilabel}`Settings`." +msgstr "" + +#: ../../user_documentation/subsonic/reset_subsonic.md:14 +#: ../../user_documentation/subsonic/reset_subsonic.md:26 +msgid "Scroll to the {guilabel}`Subsonic API password` section." +msgstr "" + +#: ../../user_documentation/subsonic/reset_subsonic.md:15 +#: ../../user_documentation/subsonic/reset_subsonic.md:27 +msgid "Select {guilabel}`Request a new password`." +msgstr "" + +#: ../../user_documentation/subsonic/reset_subsonic.md:16 +#: ../../user_documentation/subsonic/reset_subsonic.md:28 +msgid "Select {guilabel}`Request a new password` in the warning message that appears. The server generates a new password for you." +msgstr "" + +#: ../../user_documentation/subsonic/reset_subsonic.md:17 +#: ../../user_documentation/subsonic/reset_subsonic.md:29 +msgid "Select the {guilabel}`copy` icon next to the password field to copy your password." +msgstr "" + +#: ../../user_documentation/subsonic/reset_subsonic.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/subsonic/reset_subsonic.md:24 +msgid "Select the cog icon ({fa}`cog`) or your avatar to open the {guilabel}`Options` menu." +msgstr "" + +#: ../../user_documentation/subsonic/reset_subsonic.md:33 +msgid "That's it! Your new password is ready to use." +msgstr "" diff --git a/docs/locales/gettext/user_documentation/subsonic/subsonic_password.pot b/docs/locales/gettext/user_documentation/subsonic/subsonic_password.pot new file mode 100644 index 000000000..7c6f60718 --- /dev/null +++ b/docs/locales/gettext/user_documentation/subsonic/subsonic_password.pot @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022, The Funkwhale Collective +# This file is distributed under the same license as the funkwhale package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: funkwhale 1.2.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-04 09:00+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../user_documentation/subsonic/subsonic_password.md:1 +msgid "Request your Subsonic password" +msgstr "" + +#: ../../user_documentation/subsonic/subsonic_password.md:3 +msgid "To access the Subsonic API, you need to request a Subsonic password. To do this:" +msgstr "" + +#: ../../user_documentation/subsonic/subsonic_password.md:0 +msgid "Desktop" +msgstr "" + +#: ../../user_documentation/subsonic/subsonic_password.md:7 +#: ../../user_documentation/subsonic/subsonic_password.md:18 +msgid "Log in to your account." +msgstr "" + +#: ../../user_documentation/subsonic/subsonic_password.md:8 +msgid "Select the cog icon ({fa}`cog`) or your avatar to expand the user menu." +msgstr "" + +#: ../../user_documentation/subsonic/subsonic_password.md:9 +#: ../../user_documentation/subsonic/subsonic_password.md:20 +msgid "Select {guilabel}`Settings`." +msgstr "" + +#: ../../user_documentation/subsonic/subsonic_password.md:10 +#: ../../user_documentation/subsonic/subsonic_password.md:21 +msgid "Scroll to the {guilabel}`Subsonic API password` section." +msgstr "" + +#: ../../user_documentation/subsonic/subsonic_password.md:11 +#: ../../user_documentation/subsonic/subsonic_password.md:22 +msgid "Select {guilabel}`Request a password`. The server generates your password for you." +msgstr "" + +#: ../../user_documentation/subsonic/subsonic_password.md:12 +#: ../../user_documentation/subsonic/subsonic_password.md:23 +msgid "Select the {guilabel}`copy` icon next to the password field to copy your password." +msgstr "" + +#: ../../user_documentation/subsonic/subsonic_password.md:0 +msgid "Mobile" +msgstr "" + +#: ../../user_documentation/subsonic/subsonic_password.md:19 +msgid "Select the cog icon ({fa}`cog`) or your avatar to open the {guilabel}`Options` menu." +msgstr "" + +#: ../../user_documentation/subsonic/subsonic_password.md:27 +msgid "Congratulations! You've got your Subsonic password. You can now enter this in your Subsonic app to start listening to Funkwhale content." +msgstr "" diff --git a/docs/poetry.lock b/docs/poetry.lock index 95c19a52b..54f01e456 100644 --- a/docs/poetry.lock +++ b/docs/poetry.lock @@ -47,6 +47,17 @@ python-versions = ">=3.5.0" [package.extras] unicode_backport = ["unicodedata2"] +[[package]] +name = "click" +version = "8.1.2" +description = "Composable command line interface toolkit" +category = "main" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + [[package]] name = "colorama" version = "0.4.4" @@ -212,11 +223,11 @@ pyparsing = ">=2.0.2,<3.0.5 || >3.0.5" [[package]] name = "pygments" -version = "2.11.2" +version = "2.12.0" description = "Pygments is a syntax highlighting package written in Python." category = "main" optional = false -python-versions = ">=3.5" +python-versions = ">=3.6" [[package]] name = "pyparsing" @@ -302,6 +313,23 @@ docs = ["sphinxcontrib-websupport"] lint = ["flake8 (>=3.5.0)", "isort", "mypy (>=0.931)", "docutils-stubs", "types-typed-ast", "types-requests"] test = ["pytest", "pytest-cov", "html5lib", "cython", "typed-ast"] +[[package]] +name = "sphinx-intl" +version = "2.0.1" +description = "Sphinx utility that make it easy to translate and to apply translation." +category = "main" +optional = false +python-versions = ">=3.5" + +[package.dependencies] +babel = "*" +click = "*" +sphinx = "*" + +[package.extras] +test = ["pytest", "mock"] +transifex = ["transifex_client (>=0.11)"] + [[package]] name = "sphinx-multiversion" version = "0.2.4" @@ -457,7 +485,7 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] [metadata] lock-version = "1.1" python-versions = "^3.10" -content-hash = "78811563b85c2c0b561ae81fd79f970dc0aaaf9ede898c8db89a7d9a6ffa4a4d" +content-hash = "5ff9eeb7b8194756212b0fc2e0e5a1ea75989340fc2407e6ed400f0c20b1541a" [metadata.files] alabaster = [ @@ -480,6 +508,10 @@ charset-normalizer = [ {file = "charset-normalizer-2.0.12.tar.gz", hash = "sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597"}, {file = "charset_normalizer-2.0.12-py3-none-any.whl", hash = "sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df"}, ] +click = [ + {file = "click-8.1.2-py3-none-any.whl", hash = "sha256:24e1a4a9ec5bf6299411369b208c1df2188d9eb8d916302fe6bf03faed227f1e"}, + {file = "click-8.1.2.tar.gz", hash = "sha256:479707fe14d9ec9a0757618b7a100a0ae4c4e236fac5b7f80ca68028141a1a72"}, +] colorama = [ {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"}, {file = "colorama-0.4.4.tar.gz", hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"}, @@ -571,8 +603,8 @@ packaging = [ {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"}, ] pygments = [ - {file = "Pygments-2.11.2-py3-none-any.whl", hash = "sha256:44238f1b60a76d78fc8ca0528ee429702aae011c265fe6a8dd8b63049ae41c65"}, - {file = "Pygments-2.11.2.tar.gz", hash = "sha256:4e426f72023d88d03b2fa258de560726ce890ff3b630f88c21cbb8b2503b8c6a"}, + {file = "Pygments-2.12.0-py3-none-any.whl", hash = "sha256:dc9c10fb40944260f6ed4c688ece0cd2048414940f1cea51b8b226318411c519"}, + {file = "Pygments-2.12.0.tar.gz", hash = "sha256:5eb116118f9612ff1ee89ac96437bb6b49e8f04d8a13b514ba26f620208e26eb"}, ] pyparsing = [ {file = "pyparsing-3.0.8-py3-none-any.whl", hash = "sha256:ef7b523f6356f763771559412c0d7134753f037822dad1b16945b7b846f7ad06"}, @@ -629,6 +661,10 @@ sphinx = [ {file = "Sphinx-4.5.0-py3-none-any.whl", hash = "sha256:ebf612653238bcc8f4359627a9b7ce44ede6fdd75d9d30f68255c7383d3a6226"}, {file = "Sphinx-4.5.0.tar.gz", hash = "sha256:7bf8ca9637a4ee15af412d1a1d9689fec70523a68ca9bb9127c2f3eeb344e2e6"}, ] +sphinx-intl = [ + {file = "sphinx-intl-2.0.1.tar.gz", hash = "sha256:b25a6ec169347909e8d983eefe2d8adecb3edc2f27760db79b965c69950638b4"}, + {file = "sphinx_intl-2.0.1-py3.8.egg", hash = "sha256:2ff97cba0e4e43249e339a3c29dd2f5b63c25ce794050aabca320ad95f5c5b55"}, +] sphinx-multiversion = [ {file = "sphinx-multiversion-0.2.4.tar.gz", hash = "sha256:5cd1ca9ecb5eed63cb8d6ce5e9c438ca13af4fa98e7eb6f376be541dd4990bcb"}, {file = "sphinx_multiversion-0.2.4-py3-none-any.whl", hash = "sha256:dec29f2a5890ad68157a790112edc0eb63140e70f9df0a363743c6258fbeb478"}, diff --git a/docs/pyproject.toml b/docs/pyproject.toml index 764576cb7..da8d22bf2 100644 --- a/docs/pyproject.toml +++ b/docs/pyproject.toml @@ -14,6 +14,7 @@ Django = "4.0.3" myst-parser = "0.17.0" sphinx-panels = "0.6.0" sphinx-multiversion = "0.2.4" +sphinx-intl = "^2.0.1" [tool.poetry.dev-dependencies]