Migrate to sphinx-design

pipelines/22413
Ciarán Ainsworth 2022-07-23 13:32:35 +00:00 zatwierdzone przez JuniorJPDJ
rodzic 31ee580449
commit 644ebce70a
367 zmienionych plików z 18182 dodań i 16495 usunięć

Wyświetl plik

@ -0,0 +1 @@
Migrated to sphinx-design.

Wyświetl plik

@ -1,5 +1,5 @@
FROM python:3.6
RUN apt-get update && apt-get install -y graphviz
RUN pip install sphinx livereload sphinx_rtd_theme django-environ django myst-parser sphinx-panels
RUN pip install sphinx livereload sphinx_rtd_theme django-environ django myst-parser sphinx-design sphinx-multiversion
WORKDIR /app/docs

Wyświetl plik

@ -22,25 +22,30 @@ Running `fix_federation_ids` with the `--no-dry-run` flag is irreversible. Make
2. Change the `server_name` values in your {file}`/etc/nginx/sites-enabled/funkwhale.conf` file.
3. Run the `fix_federation_ids` command to clean up your database.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py fix_federation_ids https://old-url https://new-url --no-dry-run --no-input
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py fix_federation_ids https://old-url https://new-url --no-dry-run --no-input
```
````
:::
::::
Example output:
```
```{code-block} text
Will replace 108 found occurrences of 'https://old-url' by 'https://new-url':
- 20 music.Artist
@ -66,23 +71,23 @@ Running `fix_federation_ids` with the `--no-dry-run` flag is irreversible. Make
4. Restart your webserver to pick up the changes.
````{tabbed} Nginx
::::{tab-set}
```{code} bash
sudo systemctl restart nginx
:::{tab-item} Nginx
:sync: nginx
```
```{code} bash
sudo systemctl restart nginx
```
:::
````
:::{tab-item} Apache
:sync: apache
````{tabbed} Apache
```{code} bash
sudo systemctl restart apache2
```
```{code} bash
sudo systemctl restart apache2
```
````
:::
::::

Wyświetl plik

@ -4,21 +4,26 @@ Your `.env` (environment) file contains variables you can change to customize yo
You need to restart your Funkwhale services after changing your `.env` file.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
sudo systemctl restart funkwhale.target
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose restart
```
````
:::
::::
## Variables

Wyświetl plik

@ -32,7 +32,7 @@ To customize your Funkwhale pod, you need to serve a {file}`settings.json` file
EOF
```
````{dropdown} Supported parameters
:::{dropdown} Supported parameters
```{list-table}
:header-rows: 1
@ -54,33 +54,38 @@ To customize your Funkwhale pod, you need to serve a {file}`settings.json` file
```
````
:::
### Configure your reverse proxy
Once you've created your {file}`settings.json` file you need to configure your reverse proxy to serve it.
````{tabbed} Nginx
::::{tab-set}
:::{tab-item} Nginx
:sync: nginx
Add the following snippet to your {file}`/etc/nginx/sites-available/funkwhale.conf` config file:
```
```{code} text
location /settings.json {
alias /srv/funkwhale/custom;
}
```
````
:::
````{tabbed} Apache
:::{tab-item} Apache
:sync: apache
Add the following snippet to your webserver configuration:
```
```{code} text
Alias /settings.json /srv/funkwhale/custom/settings.json
```
````
:::
::::
Reload your webserver. You should be able to see the contents of your configuration file at `https://yourinstanceurl/settings.json`.
@ -121,22 +126,27 @@ You can use a custom stylesheet to theme your Funkwhale pod. To do this:
4. Add the whole {file}`custom` dir to your webserver configuration.
````{tabbed} Nginx
::::{tab-set}
:::{tab-item} Nginx
:sync: nginx
Add the following to your {file}`/etc/nginx/sites-available/funkwhale.conf` file:
```
```{code} text
location /custom {
alias /srv/funkwhale/custom;
}
```
````
````{tabbed} Apache
:::
:::{tab-item} Apache
:sync: apache
Add the following to your webserver configuration file.
```
```{code} text
Alias /custom /srv/funkwhale/custom
<Directory "/srv/funkwhale/custom">
@ -145,7 +155,9 @@ You can use a custom stylesheet to theme your Funkwhale pod. To do this:
Require all granted
</Directory>
```
````
:::
::::
5. Restart your webserver.

Wyświetl plik

@ -4,20 +4,25 @@ You can find instance settings on your pod's web interface. These settings contr
To find your instance settings:
```{tabbed} Desktop
::::{tab-set}
:::{tab-item} Desktop
:sync: desktop
1. Log in to your {term}`pod`.
2. Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the {guilabel}`Administration` menu.
3. Select {guilabel}`Settings`. The {guilabel}`Instance settings` page opens.
```
:::
```{tabbed} Mobile
:::{tab-item} Mobile
:sync: mobile
1. Log in to your {term}`pod`.
2. Select the wrench icon ({fa}`wrench`) at the top of the page to open the {guilabel}`Administration` menu.
3. Select {guilabel}`Settings`. The {guilabel}`Instance settings` page opens.
```
:::
::::
## Available settings

Wyświetl plik

@ -10,19 +10,19 @@ LDAP users can't change their password in the app.
LDAP support requires extra dependencies. We include these in our requirements files to make it easier to set up. If you aren't using LDAP, you can safely remove these.
```{dropdown} OS dependencies
:::{dropdown} OS dependencies
- `libldap2-dev`
- `libsasl2-dev`
```
:::
```{dropdown} Python dependencies
:::{dropdown} Python dependencies
- `python-ldap`
- `python-django-auth-ldap`
```
:::
## Environment variables

Wyświetl plik

@ -84,74 +84,92 @@ To make the job of writing and debugging MRF policies easier, we provide a manag
- List registered MRF policies.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py mrf_check --list
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py mrf_check --list
```
````
:::
::::
- Check how your MRF policy handles a follow.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
export MRF_MESSAGE='{"actor": "https://normal.domain/@alice", "type": "Create", "object": {"type": "Follow"}}'
echo $MRF_MESSAGE | poetry run python manage.py mrf_check inbox - -p blocked_follow_domains
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
export MRF_MESSAGE='{"actor": "https://normal.domain/@alice", "type": "Create", "object": {"type": "Follow"}}'
echo $MRF_MESSAGE | docker-compose run --rm api python manage.py mrf_check inbox - -p blocked_follow_domains
```
````
::::
- Check how your MRF handles a problematic follow.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
export MRF_MESSAGE='{"actor": "https://botdomain.org/@bob", "type": "Create", "object": {"type": "Follow"}}'
echo $MRF_MESSAGE | poetry run python manage.py mrf_check inbox - -p blocked_follow_domains
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
export MRF_MESSAGE='{"actor": "https://botdomain.org/@bob", "type": "Create", "object": {"type": "Follow"}}'
echo $MRF_MESSAGE | docker-compose run --rm api python manage.py mrf_check inbox - -p blocked_follow_domains
```
````
:::
::::
- Check a payload against activity already present in the database. You can find the UUID of an activity by visiting `/api/admin/federation/activity`.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
export ACTIVITY_UUID="06208aea-c687-4e8b-aefd-22f1c3f76039"
echo $MRF_MESSAGE | poetry run python manage.py mrf_check inbox $ACTIVITY_UUID -p blocked_follow_domains
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
@ -161,22 +179,28 @@ To make the job of writing and debugging MRF policies easier, we provide a manag
```
````
:::
::::
There are extra options for testing MRF policies. Check the command help for more options.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py mrf_check --help
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code}
docker-compose run --rm api python manage.py mrf_check --help
```
````
:::
::::

Wyświetl plik

@ -9,7 +9,7 @@ By default, Funkwhale stores all media data in the `/srv/funkwhale/data/media` d
## Secure your object store
Before you begin, you need to secure your object store. Many S3-compatible stores list contents in the root by default. This exposes the URLs of your audio files and means that users can bypass authentication.
Before you begin, you need to secure your object store. Many S3-compatible stores list contents in the root by default. This exposes the URLs of your audio files and means that users can bypass authentication.
To prevent listing content, add the following policy to your S3-compatible object store.
@ -46,37 +46,37 @@ aws s3api put-bucket-policy --bucket <yourbucketname> --policy file:///tmp/polic
To set up S3-compatible storage, fill out the relevant details in the `.env` file. If you want to serve audio files from the bucket, set `PROXY_MEDIA` to `false`.
````{dropdown} Environment variables
:::{dropdown} Environment variables
```{eval-rst}
```{eval-rst}
.. autodata:: config.settings.common.AWS_QUERYSTRING_AUTH
:noindex:
.. autodata:: config.settings.common.AWS_QUERYSTRING_EXPIRE
:noindex:
.. autodata:: config.settings.common.AWS_ACCESS_KEY_ID
:noindex:
.. autodata:: config.settings.common.AWS_SECRET_ACCESS_KEY
:noindex:
.. autodata:: config.settings.common.AWS_STORAGE_BUCKET_NAME
:noindex:
.. autodata:: config.settings.common.AWS_S3_CUSTOM_DOMAIN
:noindex:
.. autodata:: config.settings.common.AWS_S3_ENDPOINT_URL
:noindex:
:annotation: = https://minio.mydomain.com
.. autodata:: config.settings.common.AWS_S3_REGION_NAME
:noindex:
:annotation: = eu-west-2
.. autodata:: config.settings.common.AWS_LOCATION
:noindex:
:annotation: = funkwhale_music
.. autodata:: config.settings.common.PROXY_MEDIA
:noindex:
.. autodata:: config.settings.common.AWS_QUERYSTRING_AUTH
:noindex:
.. autodata:: config.settings.common.AWS_QUERYSTRING_EXPIRE
:noindex:
.. autodata:: config.settings.common.AWS_ACCESS_KEY_ID
:noindex:
.. autodata:: config.settings.common.AWS_SECRET_ACCESS_KEY
:noindex:
.. autodata:: config.settings.common.AWS_STORAGE_BUCKET_NAME
:noindex:
.. autodata:: config.settings.common.AWS_S3_CUSTOM_DOMAIN
:noindex:
.. autodata:: config.settings.common.AWS_S3_ENDPOINT_URL
:noindex:
:annotation: = https://minio.mydomain.com
.. autodata:: config.settings.common.AWS_S3_REGION_NAME
:noindex:
:annotation: = eu-west-2
.. autodata:: config.settings.common.AWS_LOCATION
:noindex:
:annotation: = funkwhale_music
.. autodata:: config.settings.common.PROXY_MEDIA
:noindex:
```
```
````
:::
## Set up your reverse proxy
@ -88,21 +88,26 @@ Serving files from an object store requires some changes to the reverse proxy.
1. Open your Nginx configuration file in an editor.
````{tabbed} Debian
::::{tab-set}
```{code} bash
sudo nano /etc/nginx/sites-available/funkwhale.template
```
:::{tab-item} Debian
:sync: debian
````
```{code} bash
sudo nano /etc/nginx/sites-available/funkwhale.template
```
````{tabbed} Docker
:::
```{code} bash
nano /srv/funkwhale/nginx/funkwhale.template
```
:::{tab-item} Docker
:sync: docker
````
```{code} bash
nano /srv/funkwhale/nginx/funkwhale.template
```
:::
::::
2. Comment out the `location /_protected/media/` block by adding a `#` to the start of each line.
@ -137,29 +142,34 @@ Serving files from an object store requires some changes to the reverse proxy.
6. Restart Funkwhale and Nginx to pick up the changes.
````{tabbed} Debian
::::{tab-set}
```{code} bash
sudo systemctl restart funkwhale.target
sudo systemctl restart nginx
```
:::{tab-item} Debian
:sync: debian
````
```{code} bash
sudo systemctl restart funkwhale.target
sudo systemctl restart nginx
```
````{tabbed} Docker
:::
```{code} bash
docker-compose restart
sudo systemctl restart nginx
```
:::{tab-item} Docker
:sync: docker
````
```{code} bash
docker-compose restart
sudo systemctl restart nginx
```
:::
::::
That's it! Files are now uploaded to and stored from your S3 bucket.
## Troubleshooting
````{dropdown} No Resolver Found
:::{dropdown} No Resolver Found
You may see the following error when streaming music from your S3-compatible store:
@ -178,4 +188,4 @@ location ~ /_protected/media/(.+) {
}
```
````
:::

Wyświetl plik

@ -16,42 +16,47 @@ Reducing the number of celery workers slows down the handling of asynchronous ta
Celery uses a `prefork` pool by default. This enables the server to process many tasks at the same time. You can switch to a `solo` pool which handles tasks one at a time. This reduces memory overhead but removes the ability to process tasks concurrently.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
1. Open your `funkwhale-worker` unit file in an editor.
```{code} bash
sudo nano /etc/systemd/system/funkwhale-worker.service
```
```{code} bash
sudo nano /etc/systemd/system/funkwhale-worker.service
```
2. Add the `--pool=solo` flag to the `ExecStart` line of your unit file.
```{code} text
ExecStart=/srv/funkwhale/.local/bin/poetry run celery -A --pool=solo funkwhale_api.taskapp worker -l INFO --concurrency=${CELERYD_CONCURRENCY}
```
```{code} text
ExecStart=/srv/funkwhale/.local/bin/poetry run celery -A --pool=solo funkwhale_api.taskapp worker -l INFO --concurrency=${CELERYD_CONCURRENCY}
```
3. Restart the Celery service.
```{code} bash
sudo systemctl restart funkwhale-worker.service
```
```{code} bash
sudo systemctl restart funkwhale-worker.service
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
1. Add the `--pool=solo` flag to the `celerybeat` command in `docker-compose.yml`.
```{code} yaml
celerybeat:
command: celery -A --pool=solo funkwhale_api.taskapp beat --pidfile= -l INFO
```
```{code} yaml
celerybeat:
command: celery -A --pool=solo funkwhale_api.taskapp beat --pidfile= -l INFO
```
2. Restart Celery.
```{code} bash
docker-compose restart celerybeat
```
```{code} bash
docker-compose restart celerybeat
```
````
:::
::::

Wyświetl plik

@ -9,21 +9,26 @@ Funkwhale supports the following import methods:
To see a full list of options, run the command with the `--help` flag.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py import_files --help
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py import_files --help
```
````
:::
::::
```{contents}
:local:
@ -35,21 +40,21 @@ If you don't have music on your server, you can download creative commons music
1. Download the shell script.
```{parsed-literal}
curl -L -o download-tracks.sh "https://dev.funkwhale.audio/funkwhale/funkwhale/raw/{sub-ref}`version`/demo/download-tracks.sh"
```
```{parsed-literal}
curl -L -o download-tracks.sh "https://dev.funkwhale.audio/funkwhale/funkwhale/raw/{sub-ref}`version`/demo/download-tracks.sh"
```
2. Download the music list.
```{parsed-literal}
curl -L -o music.txt "https://dev.funkwhale.audio/funkwhale/funkwhale/raw/{sub-ref}`version`/demo/music.txt" chmod +x download-tracks.sh
```
```{parsed-literal}
curl -L -o music.txt "https://dev.funkwhale.audio/funkwhale/funkwhale/raw/{sub-ref}`version`/demo/music.txt" chmod +x download-tracks.sh
```
3. Run the shell script against the music list to download the tracks.
```{code} bash
./download-tracks.sh music.txt
```
```{code} bash
./download-tracks.sh music.txt
```
This downloads a set compressed albums to your `data/music` directory and unzips them. You can then import these tracks using the methods in this article.
@ -99,7 +104,10 @@ The in-place import method references your files in their current directory. Thi
We recommend you symbolically link your music directories to `/srv/funkwhale/data/music`. You can then run the `import_files` command from that directory. This means you can use many directories without needing to add to them to your webserver.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
To link your storage directory to the Funkwhale store, use the `ln -s` command. For example, if you have an NFS share at `/media/nfsshare`, you can link it to a folder like this:
@ -109,9 +117,10 @@ ln -s ln -s /media/mynfsshare /srv/funkwhale/data/music/nfsshare
You can then run the `import_files` command against `/srv/funkwhale/data/music/nfsshare`.
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
On a Docker install you can use bind mounts to reference your storage directory. To do this, you need to add the directory to the `api` and `celeryworker` blocks in your `docker-compose.yml` file. For example, if you have an NFS share at `/media/nfsshare`, you can add the following to your `docker-compose.yml` file:
@ -137,13 +146,17 @@ api:
You can then run the `import_files` command against `/srv/funkwhale/data/music/nfsshare`.
````
:::
::::
#### Import your files
To use the in-place import method, follow these steps:
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
1. Log in to your server and navigate to your Funkwhale directory.
@ -160,26 +173,28 @@ To use the in-place import method, follow these steps:
4. Run your import command against your music storage directory. In this example, the storage directory is `/srv/funkwhale/data/music/nfsshare`. Replace this with your storage directory.
```{code} bash
poetry run python manage.py import_files $LIBRARY_ID "/srv/funkwhale/data/music/nfsshare/" --recursive --noinput --in-place
```
```{code} bash
poetry run python manage.py import_files $LIBRARY_ID "/srv/funkwhale/data/music/nfsshare/" --recursive --noinput --in-place
```
Funkwhale imports the music in your storage directory into the specified library.
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
1. Add your storage location to your `.env` file if you don't want to bind it to the Funkwhale store. See the [in-place import configuration variables](../configuration_docs/env_file.md#in-place-import-configuration) for more information.
2. Run your import command against your music storage directory:
```{code} bash
docker-compose run --rm api python manage.py import_files $LIBRARY_ID "/srv/funkwhale/data/music/nfsshare/" --recursive --noinput --in-place
```
```{code} bash
docker-compose run --rm api python manage.py import_files $LIBRARY_ID "/srv/funkwhale/data/music/nfsshare/" --recursive --noinput --in-place
```
Funkwhale imports the music in your storage directory into the specified library.
````
:::
::::
### Album art
@ -200,7 +215,7 @@ The `--watch` flag performs the following actions when it detects a change:
- File metadata updated – updates the track metadata in the database.
- File deleted – removes the file from the database.
```{dropdown} Watched metadata
:::dropdown} Watched metadata
The `import_files --watch` command watches for changes to the following metadata fields:
@ -218,23 +233,28 @@ The `import_files --watch` command watches for changes to the following metadata
- Album artist name
- Album artist mbid
```
:::
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py import_files $LIBRARY_ID "/srv/funkwhale/data/music/nfsshare/" --recursive --noinput --in-place --watch
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py import_files $LIBRARY_ID "/srv/funkwhale/data/music/nfsshare/" --recursive --noinput --in-place --watch
```
````
:::
::::
## Prune dangling metadata
@ -246,18 +266,23 @@ If you want to remove the file's metadata when you delete the file, run `import_
You can use the `--prune` flag with the `--watch` flag. This means Funkwhale removes the metadata of referenced files you delete from your storage.
```
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py import_files $LIBRARY_ID "/srv/funkwhale/data/music/nfsshare/" --recursive --noinput --in-place --watch --prune
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py import_files $LIBRARY_ID "/srv/funkwhale/data/music/nfsshare/" --recursive --noinput --in-place --watch --prune
```
````
:::
::::

Wyświetl plik

@ -32,7 +32,10 @@ To get started with your new setup, you need to do the following:
Before you move your data, you need to install Funkwhale on your {term}`destination server`.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
On your {term}`destination server`, follow the [installation guide](debian.md). Skip the following steps:
@ -46,9 +49,10 @@ Once you have finished the installation, stop the Funkwhale services. These shou
sudo systemctl stop funkwhale.target
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
On your {term}`destination server`, follow the [installation guide](docker.md). Skip the following steps:
@ -61,27 +65,33 @@ Once you have finished the installation, stop the Funkwhale services. These shou
docker-compose stop
```
````
:::
::::
## 2. Create a database backup
You need to create a database backup on your {term}`original server` so that you can migrate your database. To do this, run the following command:
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
sudo -u postgres -H pg_dump funkwhale > /srv/funkwhale/dump.sql
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose exec postgres pg_dumpall -c -U postgres > dump.sql
```
````
:::
::::
## 3. Copy files to your destination server
@ -97,25 +107,28 @@ To do this:
1. Log in to your {term}`destination server`.
2. Export your server hostname or IP address and your user name on the server. In this example, the IP address is `123.123.123.123` and the username is `funkwhale`.
```{code} bash
export ORIGIN="123.123.123.123"
export USERNAME="funkwhale"
```
```{code} bash
export ORIGIN="123.123.123.123"
export USERNAME="funkwhale"
```
3. Use `rsync` to copy the information to your {term}`destination server`.
```{code} bash
rsync -a $username@$origin:/srv/funkwhale/data/media/ /srv/funkwhale/data/media/ rsync -a #Copy the media folder
$username@$origin:/srv/funkwhale/data/music/ /srv/funkwhale/data/music/ rsync -a # Copy the music folder
$username@$origin:/srv/funkwhale/config/.env /srv/funkwhale/config/ rsync -a # Copy the .env file
$username@$origin:/srv/funkwhale/dump.sql /srv/funkwhale/ # Copy your database backup
```
```{code} bash
rsync -a $username@$origin:/srv/funkwhale/data/media/ /srv/funkwhale/data/media/ rsync -a #Copy the media folder
$username@$origin:/srv/funkwhale/data/music/ /srv/funkwhale/data/music/ rsync -a # Copy the music folder
$username@$origin:/srv/funkwhale/config/.env /srv/funkwhale/config/ rsync -a # Copy the .env file
$username@$origin:/srv/funkwhale/dump.sql /srv/funkwhale/ # Copy your database backup
```
## 4. Restore your database backup
When you've copied everything to the {term}`destination server`, you need to import your database backup. To do this:
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
Run the following on your {term}`destination server`:
@ -130,35 +143,37 @@ cd /srv/funkwhale/api
poetry run python manage.py migrate
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
You need to initialize the postgres container on your {term}`destination server`. To do this:
1. Export the permissions and create an `init.sql` database dump.
```{code} bash
echo "CREATE DATABASE "funkwhale" WITH ENCODING 'utf8'; \
CREATE USER funkwhale; \
GRANT ALL PRIVILEGES ON DATABASE funkwhale TO funkwhale;" > init.sql # Create an init.sql file with the correct permissions
```{code} bash
echo "CREATE DATABASE "funkwhale" WITH ENCODING 'utf8'; \
CREATE USER funkwhale; \
GRANT ALL PRIVILEGES ON DATABASE funkwhale TO funkwhale;" > init.sql # Create an init.sql file with the correct permissions
docker-compose run --rm postgres psql -U postgres -d postgres < "init.sql" # Import the init.sql file
```
docker-compose run --rm postgres psql -U postgres -d postgres < "init.sql" # Import the init.sql file
```
2. Import your database backup.
```{code} bash
docker-compose run --rm postgres psql -U postgres -d postgres < "dump.sql"
```
```{code} bash
docker-compose run --rm postgres psql -U postgres -d postgres < "dump.sql"
```
3. When the import finishes, run the `manage.py migrate` command to set up the database.
```{code} bash
docker-compose run --rm api python manage.py migrate
```
```{code} bash
docker-compose run --rm api python manage.py migrate
```
````
:::
::::
## 5. Check your DNS settings
@ -168,18 +183,25 @@ Before you start Funkwhale on your {term}`destination server`, check your DNS ch
Once you confirm DNS points to your {term}`destination server`, start the Funkwhale services:
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
sudo systemctl start funkwhale.target
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose up -d
```
:::
::::
That's it! You've migrated your Funkwhale instance to a new server.

Wyświetl plik

@ -10,18 +10,23 @@ Running `check_inplace_files` with the `--no-dry-run` flag is irreversible. Make
To ensure you don't remove data by accident, this command runs in dry run mode by default. In dry run mode, the command lists the items it will delete. Run the command with the `--no-dry-run` flag to perform the pruning action.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py check_inplace_files
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py check_inplace_files
```
````
:::
::::

Wyświetl plik

@ -8,98 +8,123 @@ Use the `fix_uploads` command to let Funkwhale sort out common issues with your
Check and fix file mimetypes with the `--mimetype` flag. This helps prevent issues with serving music files.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py fix_uploads --mimetype
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py fix_uploads --mimetype
```
````
:::
::::
### Fix bitrate and duration
Check and fix bitrate and duration with the `--audio-data` flag. This process can take a long time as it needs to access all files.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py fix_uploads --audio-data
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py fix_uploads --audio-data
```
````
:::
::::
### Fix file size
Check and fix the file size with the `--size` flag.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py fix_uploads --size
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py fix_uploads --size
```
````
:::
::::
### Fix file checksums
Check and fix file checksums with the `--checksum` flag.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py fix_uploads --checksum
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py fix_uploads --checksum
```
````
:::
::::
### Change command batch size
Choose the batch size you want to process with the `--batch-size` or -`s` flag. Smaller batches process faster. Defaults to `1000`.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py fix_uploads --batch-size 500
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py fix_uploads --batch-size 500
```
````
:::
::::

Wyświetl plik

@ -14,93 +14,118 @@ Running `prune_library` commands with the `--no-dry-run` flag is irreversible. M
### Prune tracks with no associated uploads
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```bash
poetry run python manage.py prune_library --tracks
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```bash
docker-compose run --rm api python manage.py prune_library --tracks
```
````
:::
::::
### Prune albums with no associated tracks
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py prune_library --albums
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py prune_library --albums
```
````
:::
::::
### Prune artists with no associated tracks or albums
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py prune_library --artists
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py prune_library --artists
```
````
:::
::::
### Prune all tracks, albums, and artist without associated data
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py prune_library --tracks --albums --artists
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py prune_library --tracks --albums --artists
```
````
:::
::::
There are extra options for pruning your database. Check the command help for more options.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py prune_library --help
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py prune_library --help
```
````
:::
::::
```{note}
The command excludes tracks that are in users' favorites, playlists, and listen history. To include these tracks, add the corresponding `ignore` flag:

Wyświetl plik

@ -12,7 +12,10 @@ The command performs the following actions:
To add tags to untagged albums:
```{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
1. SSH into your Funkwhale server.
2. Navigate to the Funkwhale directory.
@ -27,9 +30,10 @@ To add tags to untagged albums:
poetry run python manage.py fw albums add-tags-from-tracks
```
```
:::
```{tabbed} Docker
:::{tab-item} Docker
:sync: docker
1. SSH into your Funkwhale server.
2. Navigate to the Funkwhale directory.
@ -44,13 +48,17 @@ To add tags to untagged albums:
docker-compose run --rm api python manage.py fw albums add-tags-from-tracks
```
```
:::
::::
## Add tags to artists
To add tags to untagged artists:
```{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
1. SSH into your Funkwhale server.
2. Navigate to the Funkwhale directory.
@ -65,9 +73,10 @@ To add tags to untagged artists:
poetry run python manage.py fw artists add-tags-from-tracks
```
```
:::
```{tabbed} Docker
:::{tab-item} Docker
:sync: docker
1. SSH into your Funkwhale server.
2. Navigate to the Funkwhale directory.
@ -82,4 +91,5 @@ To add tags to untagged artists:
docker-compose run --rm api python manage.py fw artists add-tags-from-tracks
```
```
:::
::::

Wyświetl plik

@ -8,7 +8,10 @@ If you're using S3 storage, the `__sized__` folder is located in your S3 bucket.
To generate new thumbnails:
```{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
1. SSH into your Funkwhale server.
2. Navigate to your Funkwhale directory.
@ -29,9 +32,10 @@ To generate new thumbnails:
poetry run python manage.py fw media generate-thumbnails
```
```
:::
```{tabbed} Docker
:::{tab-item} Docker
:sync: docker
1. SSH into your Funkwhale server.
2. Navigate to your Funkwhale directory.
@ -52,6 +56,7 @@ To generate new thumbnails:
docker-compose run --rm api python manage.py fw media generate-thumbnails
```
```
:::
::::
The script generates new thumbnails for all album and artist art on your pod.

Wyświetl plik

@ -10,77 +10,97 @@ You can create users with the {file}`manage.py` script. There are different ways
### Create a user interactively
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py fw users create
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py fw users create
```
````
:::
::::
### Create a user with a random password
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py fw users create --username <username> --email <user email> -p ""
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py fw users create --username <username> --email <user email> -p ""
```
````
:::
::::
### Create a user with a password set from an environment variable
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
export FUNKWHALE_CLI_USER_PASSWORD=<password>
poetry run python manage.py fw users create --username <username> --email <user email>
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
export FUNKWHALE_CLI_USER_PASSWORD=<password>
docker-compose run --rm api python manage.py fw users create --username <username> --email <user email>
```
````
:::
::::
There are extra options for user configuration, such as quota and {term}`permissions`. Check the command help for more options.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py fw users --help
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py fw users --help
```
````
:::
::::
## Update users
@ -88,131 +108,166 @@ You can update user accounts using the {file}`manage.py` script. Update commands
### Set upload quota for a user
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py fw users set --upload-quota 500 <user>
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py fw users set --upload-quota 500 <user>
```
````
:::
::::
### Make users staff members
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py fw users set --staff --superuser <user 1> <user 2>
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py fw users set --staff --superuser <user 1> <user 2>
```
````
:::
::::
### Remove a user's staff privileges
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py fw users set --no-staff --no-superuser <user>
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py fw users set --no-staff --no-superuser <user>
```
````
:::
::::
### Give a user moderation permissions
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py fw users set --permission-moderation <user>
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py fw users set --permission-moderation <user>
```
````
:::
::::
### Reset a user's password
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py fw users set --password "<password>" <user>
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py fw users set --password "<password>" <user>
```
````
:::
::::
### Reset a user's password using an environment variable
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
export FUNKWHALE_CLI_USER_UPDATE_PASSWORD=<password>
poetry run python manage.py fw users set <user>
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
export FUNKWHALE_CLI_USER_UPDATE_PASSWORD=<password>
docker-compose run --rm api python manage.py fw users set <user>
```
````
:::
::::
There are extra options for updating users. Check the command help for more options.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py fw users set --help
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py fw users set --help
```
````
:::
::::
## Delete users
@ -220,56 +275,71 @@ docker-compose run --rm api python manage.py fw users set --help
This prevents the same username being used in future.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} py
poetry run python manage.py fw users rm <user>
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} py
docker-compose run --rm api python manage.py fw users rm <user>
```
````
:::
::::
### Delete a user's account, including all references in the database
This means the username can be reused.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} py
poetry run python manage.py fw users rm --hard <user>
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} py
docker-compose run --rm api python manage.py fw users rm --hard <user>
```
````
:::
::::
There are extra options for deleting users. Check the command help for more options.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
poetry run python manage.py fw users rm --help
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose run --rm api python manage.py fw users rm --help
```
````
:::
::::

Wyświetl plik

@ -8,16 +8,20 @@ If you have access to the Funkwhale backend, you can use logs to get more inform
- __Reverse proxy logs__ – check these logs if you have connectivity issues.
````{tabbed} Nginx
::::{tab-set}
:::{tab-item} Nginx
:sync: nginx
```{code} bash
sudo tail -f /var/log/nginx/access.log # Follow the access log
sudo tail -f /var/log/nginx/error.log # Follow the error log
```
````
:::
````{tabbed} Apache
:::{tab-item} Apache2
:sync: apache2
```{code} bash
sudo tail -f /var/log/apache/access.log # Follow the access log
@ -28,39 +32,49 @@ If you have access to the Funkwhale backend, you can use logs to get more inform
- __API logs__ – check these if you are having issues with the Funkwhale app, federation, or imports.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
journalctl -xn -u funkwhale-server
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose logs -f --tail=50 api # Follow the last 50 messages
```
````
:::
::::
- __Celery logs__ – check these if a federation or import task isn't working.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
journalctl -xn -u funkwhale-worker
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose logs -f --tail=50 celery # Follow the last 50 messages
```
````
:::
::::
## Troubleshoot issues
@ -78,18 +92,18 @@ If you're having issues importing files, try the following:
- Check that the file is encoded in a supported format
```{dropdown} Supported formats
:::{dropdown} Supported formats
- flac
- ogg
- mp3
- opus
- aac
- m4a
- aiff
- aif
- flac
- ogg
- mp3
- opus
- aac
- m4a
- aiff
- aif
```
:::
- Make sure your files play in another media player.
- Make sure your files are [tagged correctly](../../user_documentation/libraries/tag_music.md).
@ -121,21 +135,26 @@ If your Funkwhale server uses more memory than expected, you can check the footp
3. Restart your Funkwhale server.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
sudo systemctl restart funkwhale.target
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose restart
```
````
:::
::::
The middleware prints out the top 25 memory allocations to the API logs. You can use these to see what requests use the most memory.
@ -155,21 +174,26 @@ To disable memory tracing:
3. Restart your Funkwhale server.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
sudo systemctl restart funkwhale.target
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose restart
```
````
:::
::::
## Get help

Wyświetl plik

@ -49,7 +49,10 @@ Before you uninstall anything from your server, you need to stop the Funkwhale s
To stop serving Funkwhale from your web server, you need to remove your reverse proxy configuration.
````{tabbed} Nginx
::::{tab-set}
:::{tab-item} Nginx
:sync: nginx
1. Remove the configuration files from your web host.
@ -65,9 +68,10 @@ To stop serving Funkwhale from your web server, you need to remove your reverse
sudo systemctl reload nginx
```
````
:::
````{tabbed} Apache2
:::{tab-item} Apache2
:sync: apache2
1. Remove the configuration files from your web host.
@ -82,7 +86,8 @@ To stop serving Funkwhale from your web server, you need to remove your reverse
sudo service apache2 restart
```
````
:::
::::
## Remove the Funkwhale database
@ -128,7 +133,10 @@ This deletes the `funkwhale` user and everything in their home directory (`/srv/
Funkwhale uses the following dependencies on your server:
````{tabbed} apt
::::{tab-set}
:::{tab-item} Apt
:sync: apt
```{code} txt
@ -146,15 +154,17 @@ make
```
````
:::
````{tabbed} Python
:::{tab-item} Python
:sync: python
```{literalinclude} ../../../api/pyproject.toml
:language: toml
:lines: 9-59
```
````
:::
::::
Uninstall any dependencies you don't need.

Wyświetl plik

@ -31,7 +31,10 @@ Before you remove any data, you need to stop the Funkwhale containers.
To stop serving Funkwhale from your web server, you need to remove your reverse proxy configuration.
````{tabbed} Nginx
::::{tab-set}
:::{tab-item} Nginx
:sync: nginx
1. Remove the configuration files from your web host.
@ -47,9 +50,10 @@ To stop serving Funkwhale from your web server, you need to remove your reverse
sudo systemctl reload nginx
```
````
:::
````{tabbed} Apache2
:::{tab-item} Apache2
:sync: apache2
1. Remove the configuration files from your web host.
@ -64,7 +68,8 @@ To stop serving Funkwhale from your web server, you need to remove your reverse
sudo service apache2 restart
```
````
:::
::::
## Remove the containers and their volumes

Wyświetl plik

@ -49,7 +49,10 @@ Before you uninstall anything from your server, you need to stop the Funkwhale s
To stop serving Funkwhale from your web server, you need to remove your reverse proxy configuration.
````{tabbed} Nginx
::::{tab-set}
:::{tab-item} Nginx
:sync: nginx
1. Remove the configuration files from your web host.
@ -65,9 +68,10 @@ To stop serving Funkwhale from your web server, you need to remove your reverse
sudo systemctl reload nginx
```
````
:::
````{tabbed} Apache2
:::{tab-item} Apache2
:sync: apache2
1. Remove the configuration files from your web host.
@ -82,7 +86,8 @@ To stop serving Funkwhale from your web server, you need to remove your reverse
sudo service apache2 restart
```
````
:::
::::
## Remove the Funkwhale database
@ -128,7 +133,10 @@ This deletes the `funkwhale` user and everything in their home directory (`/srv/
The quick install script installs the following dependencies on your server:
````{tabbed} apt
::::{tab-set}
:::{tab-item} Apt
:sync: apt
```{code} txt
@ -146,15 +154,17 @@ make
```
````
:::
````{tabbed} Python
:::{tab-item} Python
:sync: python
```{literalinclude} ../../../api/pyproject.toml
:language: toml
:lines: 9-59
```
````
:::
::::
Uninstall any dependencies you don't need.

Wyświetl plik

@ -4,34 +4,43 @@ Before performing big changes, we recommend you back up your database and media
1. Back up your database.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
sudo -u postgres -H pg_dump funkwhale > /path/to/your/backup/dump_`date +%d-%m-%Y"_"%H_%M_%S`.sql
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
docker-compose exec postgres pg_dumpall -c -U postgres > dump_`date +%d-%m-%Y"_"%H_%M_%S`.sql
```
````
:::
::::
2. Back up your media files. In this example we use [rsync](https://rsync.samba.org) to back up the files.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
rsync -avzhP /srv/funkwhale/data/media /path/to/your/backup/media
rsync -avzhP /srv/funkwhale/data/music /path/to/your/backup/music
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
@ -39,24 +48,30 @@ Before performing big changes, we recommend you back up your database and media
rsync -avzhP /srv/funkwhale/data/music /path/to/your/backup/music
```
````
:::
::::
3. Back up your configuration files.
````{tabbed} Debian
::::{tab-set}
:::{tab-item} Debian
:sync: debian
```{code} bash
rsync -avzhP /srv/funkwhale/config/.env /path/to/your/backup/.env
```
````
:::
````{tabbed} Docker
:::{tab-item} Docker
:sync: docker
```{code} bash
rsync -avzhP /srv/funkwhale/.env /path/to/your/backup/.env
```
````
:::
::::
If you are performing regular backups, you may need deduplication and compression to keep the size down. In this case, a tool like [`borg`](https://www.borgbackup.org/) is more appropriate.

Wyświetl plik

@ -49,7 +49,7 @@ extensions = [
"sphinx.ext.graphviz",
"sphinx.ext.autodoc",
"myst_parser",
"sphinx_panels",
"sphinx_design",
"sphinx_multiversion",
]
autodoc_mock_imports = [
@ -58,6 +58,7 @@ autodoc_mock_imports = [
"ldap",
"persisting_theory",
"rest_framework",
"drf_spectacular",
]
add_module_names = False
# Add any paths that contain templates here, relative to this directory.
@ -72,6 +73,9 @@ source_suffix = ".rst"
# The root toctree document.
root_doc = "index"
# Enable colon fences
myst_enable_extensions = ["colon_fence"]
# Autogenerate anchors
myst_heading_anchors = 3

Wyświetl plik

@ -109,78 +109,115 @@ changelog
```
````{panels}
:body: text-left
:header: text-center
::::{grid} 2
{fa}`user` Users
^^^^^^^^^^^^
:::{grid-item-card}
:text-align: center
{fa}`user` Users
^^^
Looking to use Funkwhale for your content? Read through our guides to master the app!
+++
```{link-button} user_documentation/index
:type: ref
:text: Get started
:classes: btn-outline-primary btn-block stretched-link
```{button-link} user_documentation/index.html
:ref-type: myst
:color: primary
:outline:
:click-parent:
:expand:
Get started
```
---
:::
:::{grid-item-card}
:text-align: center
{fa}`wrench` Admins
^^^^^^^^^^^^^^^^
^^^
Want to host your own Funkwhale pod? Our admin documentation guides you through the process.
+++
```{link-button} administrator_documentation/index
:type: ref
:text: Get started
:classes: btn-outline-primary btn-block stretched-link
```{button-link} administrator_documentation/index.html
:ref-type: ref
:color: primary
:outline:
:click-parent:
:expand:
---
Get started
```
:::
:::{grid-item-card}
:text-align: center
{fa}`shield` Moderators
^^^^^^^^^^^^^^^^^^
^^^
Keeping your users safe from harassment and spam or clearing illegal content? Check out our moderator docs.
+++
```{link-button} moderator_documentation/index
:type: ref
:text: Get started
:classes: btn-outline-primary btn-block stretched-link
```{button-link} moderator_documentation/index.html
:ref-type: ref
:color: primary
:outline:
:click-parent:
:expand:
---
Get started
```
:::
:::{grid-item-card}
:text-align: center
{fa}`code` Developers
^^^^^^^^^^^^^^^^^
^^^
Want to use Funkwhale's API or help with the project? Our developer docs give you what you need to get started.
+++
```{link-button} developers/index
:type: ref
:text: Get started
:classes: btn-outline-primary btn-block stretched-link
```{button-link} developers/index.html
:ref-type: ref
:color: primary
:outline:
:click-parent:
:expand:
---
:column: col-lg-12 p-2
Get started
```
:::
::::
::::{grid} 1
:::{grid-item-card}
:text-align: center
{fa}`users` Contributors
^^^^^^^^^^^^^^^^^^
^^^
Want to help make Funkwhale even better? Check out these guides for some ideas.
+++
```{link-button} contributing
:type: ref
:text: Get started
:classes: btn-outline-primary btn-block stretched-link
```{button-link} contributing.html
:ref-type: ref
:color: primary
:outline:
:click-parent:
:expand:
````
Get started
```
:::
::::

Wyświetl plik

@ -7,19 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 22:14+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 21:04+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/"
"administrator_documentation-configuration_docs-frontend/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/administrator_documentation-configuration_docs-frontend/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../administrator_documentation/configuration_docs/frontend.md:1
msgid "Customize the Funkwhale frontend"
@ -28,12 +27,12 @@ msgstr "Customise the Funkwhale frontend"
#: ../../administrator_documentation/configuration_docs/frontend.md:3
msgid ""
"You can customize the look and behavior of the Funkwhale UI using a JSON "
"configuration file. This file enables you to make very basic changes to the "
"Funkwhale web app."
"configuration file. This file enables you to make very basic changes to "
"the Funkwhale web app."
msgstr ""
"You can customise the look and behaviour of the Funkwhale UI using a JSON "
"configuration file. This file enables you to make very basic changes to the "
"Funkwhale web app."
"You can customise the look and behaviour of the Funkwhale UI using a JSON"
" configuration file. This file enables you to make very basic changes to "
"the Funkwhale web app."
#: ../../administrator_documentation/configuration_docs/frontend.md:5
msgid "Set up your custom configuration"
@ -45,13 +44,13 @@ msgstr "Create your configuration file"
#: ../../administrator_documentation/configuration_docs/frontend.md:9
msgid ""
"To customize your Funkwhale pod, you need to serve a {file}`settings.json` "
"file at `https://yourinstanceurl/settings.json`. Follow these steps to set "
"up your configuration file:"
"To customize your Funkwhale pod, you need to serve a "
"{file}`settings.json` file at `https://yourinstanceurl/settings.json`. "
"Follow these steps to set up your configuration file:"
msgstr ""
"To customise your Funkwhale pod, you need to serve a {file}`settings.json` "
"file at `https://yourinstanceurl/settings.json`. Follow these steps to set "
"up your configuration file:"
"To customise your Funkwhale pod, you need to serve a "
"{file}`settings.json` file at `https://yourinstanceurl/settings.json`. "
"Follow these steps to set up your configuration file:"
#: ../../administrator_documentation/configuration_docs/frontend.md:11
msgid "SSH into your Funkwhale server."
@ -69,6 +68,10 @@ msgstr "Create a new `custom` directory for your file."
msgid "Create a new config file and populate it with placeholder settings."
msgstr "Create a new config file and populate it with placeholder settings."
#: ../../administrator_documentation/configuration_docs/frontend.md
msgid "Supported parameters"
msgstr ""
#: ../../administrator_documentation/configuration_docs/frontend.md:41
msgid "Parameter"
msgstr "Parameter"
@ -111,54 +114,49 @@ msgstr "URL"
#: ../../administrator_documentation/configuration_docs/frontend.md:53
msgid ""
"The URL of the API server you want to connect the frontend to. Defaults to "
"the current domain."
"The URL of the API server you want to connect the frontend to. Defaults "
"to the current domain."
msgstr ""
"The URL of the API server you want to connect the frontend to. Defaults to "
"the current domain."
"The URL of the API server you want to connect the frontend to. Defaults "
"to the current domain."
#: ../../administrator_documentation/configuration_docs/frontend.md:54
msgid "`\"https://api.yourdomain.com\"`"
msgstr "`\"https://api.yourdomain.com\"`"
#: ../../administrator_documentation/configuration_docs/frontend.md:59
#: ../../administrator_documentation/configuration_docs/frontend.md:44
msgid "Configure your reverse proxy"
msgstr "Configure your reverse proxy"
#: ../../administrator_documentation/configuration_docs/frontend.md:61
#: ../../administrator_documentation/configuration_docs/frontend.md:46
msgid ""
"Once you've created your {file}`settings.json` file you need to configure "
"your reverse proxy to serve it."
"Once you've created your {file}`settings.json` file you need to configure"
" your reverse proxy to serve it."
msgstr ""
"Once you've created your {file}`settings.json` file you need to configure "
"your reverse proxy to serve it."
"Once you've created your {file}`settings.json` file you need to configure"
" your reverse proxy to serve it."
#: ../../administrator_documentation/configuration_docs/frontend.md
msgid "Nginx"
msgstr "Nginx"
#: ../../administrator_documentation/configuration_docs/frontend.md:65
#: ../../administrator_documentation/configuration_docs/frontend.md:50
#: ../../administrator_documentation/configuration_docs/frontend.md:69
msgid ""
"Add the following snippet to your {file}`/etc/nginx/sites-available/"
"funkwhale.conf` config file:"
"Add the following snippet to your {file}`/etc/nginx/sites-"
"available/funkwhale.conf` config file:"
msgstr ""
"Add the following snippet to your {file}`/etc/nginx/sites-available/funkwhale"
".conf` config file:"
"Add the following snippet to your {file}`/etc/nginx/sites-"
"available/funkwhale.conf` config file:"
#: ../../administrator_documentation/configuration_docs/frontend.md
msgid "Apache"
msgstr "Apache"
#: ../../administrator_documentation/configuration_docs/frontend.md:77
#: ../../administrator_documentation/configuration_docs/frontend.md:62
#: ../../administrator_documentation/configuration_docs/frontend.md:82
msgid "Add the following snippet to your webserver configuration:"
msgstr "Add the following snippet to your webserver configuration:"
#: ../../administrator_documentation/configuration_docs/frontend.md:85
#: ../../administrator_documentation/configuration_docs/frontend.md:70
#: ../../administrator_documentation/configuration_docs/frontend.md:90
msgid ""
"Reload your webserver. You should be able to see the contents of your "
"configuration file at `https://yourinstanceurl/settings.json`."
@ -166,62 +164,51 @@ msgstr ""
"Reload your webserver. You should be able to see the contents of your "
"configuration file at `https://yourinstanceurl/settings.json`."
#: ../../administrator_documentation/configuration_docs/frontend.md:87
#: ../../administrator_documentation/configuration_docs/frontend.md:72
#: ../../administrator_documentation/configuration_docs/frontend.md:92
msgid "Add a custom theme"
msgstr "Add a custom theme"
#: ../../administrator_documentation/configuration_docs/frontend.md:89
#: ../../administrator_documentation/configuration_docs/frontend.md:74
msgid ""
"You can use a custom stylesheet to theme your Funkwhale pod. To do this:"
msgstr ""
"You can use a custom stylesheet to theme your Funkwhale pod. To do this:"
#: ../../administrator_documentation/configuration_docs/frontend.md:94
msgid "You can use a custom stylesheet to theme your Funkwhale pod. To do this:"
msgstr "You can use a custom stylesheet to theme your Funkwhale pod. To do this:"
#: ../../administrator_documentation/configuration_docs/frontend.md:91
#: ../../administrator_documentation/configuration_docs/frontend.md:76
#: ../../administrator_documentation/configuration_docs/frontend.md:96
msgid "Navigate to your {file}`/srv/funkwhale/custom` directory."
msgstr "Navigate to your {file}`/srv/funkwhale/custom` directory."
#: ../../administrator_documentation/configuration_docs/frontend.md:97
#: ../../administrator_documentation/configuration_docs/frontend.md:82
#: ../../administrator_documentation/configuration_docs/frontend.md:102
msgid "Copy your CSS file to this directory, or create a new one."
msgstr "Copy your CSS file to this directory, or create a new one."
#: ../../administrator_documentation/configuration_docs/frontend.md:109
#: ../../administrator_documentation/configuration_docs/frontend.md:94
#: ../../administrator_documentation/configuration_docs/frontend.md:114
msgid ""
"Add the location of your CSS file to the `additionalStylesheets` parameter "
"in your {file}`settings.json` file."
"Add the location of your CSS file to the `additionalStylesheets` "
"parameter in your {file}`settings.json` file."
msgstr ""
"Add the location of your CSS file to the `additionalStylesheets` parameter "
"in your {file}`settings.json` file."
"Add the location of your CSS file to the `additionalStylesheets` "
"parameter in your {file}`settings.json` file."
#: ../../administrator_documentation/configuration_docs/frontend.md:122
#: ../../administrator_documentation/configuration_docs/frontend.md:107
#: ../../administrator_documentation/configuration_docs/frontend.md:127
msgid "Add the whole {file}`custom` dir to your webserver configuration."
msgstr "Add the whole {file}`custom` dir to your webserver configuration."
#: ../../administrator_documentation/configuration_docs/frontend.md:126
#: ../../administrator_documentation/configuration_docs/frontend.md:111
#: ../../administrator_documentation/configuration_docs/frontend.md:135
msgid ""
"Add the following to your {file}`/etc/nginx/sites-available/funkwhale.conf` "
"file:"
"Add the following to your {file}`/etc/nginx/sites-"
"available/funkwhale.conf` file:"
msgstr ""
"Add the following to your {file}`/etc/nginx/sites-available/funkwhale.conf` "
"file:"
"Add the following to your {file}`/etc/nginx/sites-"
"available/funkwhale.conf` file:"
#: ../../administrator_documentation/configuration_docs/frontend.md:137
#: ../../administrator_documentation/configuration_docs/frontend.md:122
#: ../../administrator_documentation/configuration_docs/frontend.md:148
msgid "Add the following to your webserver configuration file."
msgstr "Add the following to your webserver configuration file."
#: ../../administrator_documentation/configuration_docs/frontend.md:150
#: ../../administrator_documentation/configuration_docs/frontend.md:135
#: ../../administrator_documentation/configuration_docs/frontend.md:162
msgid "Restart your webserver."
msgstr "Restart your webserver."
#: ../../administrator_documentation/configuration_docs/frontend.md:152
#: ../../administrator_documentation/configuration_docs/frontend.md:137
#: ../../administrator_documentation/configuration_docs/frontend.md:164
msgid "Refresh your Funkwhale app. The background should now be red."
msgstr "Refresh your Funkwhale app. The background should now be red."

Wyświetl plik

@ -7,19 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 00:32+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:23+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/administrator_documentation-configuration_docs-ldap/"
"en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/administrator_documentation-configuration_docs-ldap/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../administrator_documentation/configuration_docs/ldap.md:1
msgid "Configure LDAP"
@ -33,9 +32,9 @@ msgid ""
"authentication module](https://django-auth-ldap.readthedocs.io/)."
msgstr ""
"{abbr}`LDAP (Lightweight Directory Access Protocol)` is a protocol for "
"providing directory services. It acts as a central authority for user login "
"information. Funkwhale supports LDAP through the [Django LDAP authentication "
"module](https://django-auth-ldap.readthedocs.io/)."
"providing directory services. It acts as a central authority for user "
"login information. Funkwhale supports LDAP through the [Django LDAP "
"authentication module](https://django-auth-ldap.readthedocs.io/)."
#: ../../administrator_documentation/configuration_docs/ldap.md:6
msgid "LDAP users can't change their password in the app."
@ -52,8 +51,13 @@ msgid ""
" you can safely remove these."
msgstr ""
"LDAP support requires extra dependencies. We include these in our "
"requirements files to make it easier to set up. If you aren't using LDAP, "
"you can safely remove these."
"requirements files to make it easier to set up. If you aren't using LDAP,"
" you can safely remove these."
#: ../../administrator_documentation/configuration_docs/ldap.md
#, fuzzy
msgid "OS dependencies"
msgstr "Dependencies"
#: ../../administrator_documentation/configuration_docs/ldap.md:15
msgid "`libldap2-dev`"
@ -63,6 +67,11 @@ msgstr ""
msgid "`libsasl2-dev`"
msgstr ""
#: ../../administrator_documentation/configuration_docs/ldap.md
#, fuzzy
msgid "Python dependencies"
msgstr "Dependencies"
#: ../../administrator_documentation/configuration_docs/ldap.md:22
msgid "`python-ldap`"
msgstr ""
@ -80,8 +89,8 @@ msgid ""
"You can configure LDAP authentication using environment variables in your"
" `.env` file."
msgstr ""
"You can configure LDAP authentication using environment variables in your `."
"env` file."
"You can configure LDAP authentication using environment variables in your"
" `.env` file."
#: ../../administrator_documentation/configuration_docs/ldap.md:31
msgid "Basic features"
@ -96,8 +105,8 @@ msgid ""
"The LDAP {abbr}`URI (Uniform Resource Identifier)` of your authentication"
" server."
msgstr ""
"The LDAP {abbr}`URI (Uniform Resource Identifier)` of your authentication "
"server."
"The LDAP {abbr}`URI (Uniform Resource Identifier)` of your authentication"
" server."
#: ../../administrator_documentation/configuration_docs/ldap.md:58
msgid ""
@ -118,9 +127,10 @@ msgid ""
"syntax](https://social.technet.microsoft.com/wiki/contents/articles/5392"
".active-directory-ldap-syntax-filters.aspx)."
msgstr ""
"The LDAP user filter, using `{0}` as the username placeholder. Uses standard "
"[LDAP search syntax](https://social.technet.microsoft.com/wiki/contents/"
"articles/5392.active-directory-ldap-syntax-filters.aspx)."
"The LDAP user filter, using `{0}` as the username placeholder. Uses "
"standard [LDAP search "
"syntax](https://social.technet.microsoft.com/wiki/contents/articles/5392"
".active-directory-ldap-syntax-filters.aspx)."
#: ../../administrator_documentation/configuration_docs/ldap.md:85
msgid "Set to `True` to enable LDAP StartTLS support."
@ -152,24 +162,25 @@ msgid ""
" is an advanced feature. Most users don't need to configure these "
"settings."
msgstr ""
"LDAP provides extra features for working with groups. Group configuration is "
"an advanced feature. Most users don't need to configure these settings."
"LDAP provides extra features for working with groups. Group configuration"
" is an advanced feature. Most users don't need to configure these "
"settings."
#: ../../administrator_documentation/configuration_docs/ldap.md:120
msgid ""
"[Django's LDAP documentation](https://django-auth-"
"ldap.readthedocs.io/en/latest/groups.html) for groups."
msgstr ""
"[Django's LDAP documentation](https://django-auth-ldap.readthedocs.io/en/"
"latest/groups.html) for groups."
"[Django's LDAP documentation](https://django-auth-"
"ldap.readthedocs.io/en/latest/groups.html) for groups."
#: ../../administrator_documentation/configuration_docs/ldap.md:129
msgid ""
"The LDAP group search root {abbr}`DN (Distinguised Name)`. This needs to "
"be set to `True` to enable group features."
msgstr ""
"The LDAP group search root {abbr}`DN (Distinguised Name)`. This needs to be "
"set to `True` to enable group features."
"The LDAP group search root {abbr}`DN (Distinguised Name)`. This needs to "
"be set to `True` to enable group features."
#: ../../administrator_documentation/configuration_docs/ldap.md:138
msgid "The LDAP group filter."
@ -185,3 +196,4 @@ msgstr "A group whose members can't authenticate."
#~ msgid "Set this to `True` to enable LDAP support"
#~ msgstr ""

Wyświetl plik

@ -7,19 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-05 19:34+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/"
"administrator_documentation-configuration_docs-object_storage/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/administrator_documentation-configuration_docs-object_storage/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../administrator_documentation/configuration_docs/object_storage.md:1
msgid "Store media in an object store"
@ -31,9 +30,9 @@ msgid ""
"`/srv/funkwhale/data/media` directory. If you prefer to use an "
"S3-compatible object store, follow the instructions in this guide."
msgstr ""
"By default, Funkwhale stores all media data in the `/srv/funkwhale/data/"
"media` directory. If you prefer to use an S3-compatible object store, follow "
"the instructions in this guide."
"By default, Funkwhale stores all media data in the "
"`/srv/funkwhale/data/media` directory. If you prefer to use an "
"S3-compatible object store, follow the instructions in this guide."
#: ../../administrator_documentation/configuration_docs/object_storage.md:10
msgid "Secure your object store"
@ -46,25 +45,26 @@ msgid ""
"the URLs of your audio files and means that users can bypass "
"authentication."
msgstr ""
"Before you begin, you need to secure your object store. Many S3-compatible "
"stores list contents in the root by default. This exposes the URLs of your "
"audio files and means that users can bypass authentication."
"Before you begin, you need to secure your object store. Many "
"S3-compatible stores list contents in the root by default. This exposes "
"the URLs of your audio files and means that users can bypass "
"authentication."
#: ../../administrator_documentation/configuration_docs/object_storage.md:14
msgid ""
"To prevent listing content, add the following policy to your "
"S3-compatible object store."
msgstr ""
"To prevent listing content, add the following policy to your S3-compatible "
"object store."
"To prevent listing content, add the following policy to your "
"S3-compatible object store."
#: ../../administrator_documentation/configuration_docs/object_storage.md:39
msgid ""
"If you're using `awscli`, you can store this policy in a `/tmp/policy` "
"file and apply it using the following command:"
msgstr ""
"If you're using `awscli`, you can store this policy in a `/tmp/policy` file "
"and apply it using the following command:"
"If you're using `awscli`, you can store this policy in a `/tmp/policy` "
"file and apply it using the following command:"
#: ../../administrator_documentation/configuration_docs/object_storage.md:45
msgid "Update your environment file"
@ -76,9 +76,14 @@ msgid ""
"`.env` file. If you want to serve audio files from the bucket, set "
"`PROXY_MEDIA` to `false`."
msgstr ""
"To set up S3-compatible storage, fill out the relevant details in the `.env` "
"file. If you want to serve audio files from the bucket, set `PROXY_MEDIA` to "
"`false`."
"To set up S3-compatible storage, fill out the relevant details in the "
"`.env` file. If you want to serve audio files from the bucket, set "
"`PROXY_MEDIA` to `false`."
#: ../../administrator_documentation/configuration_docs/object_storage.md
#, fuzzy
msgid "Environment variables"
msgstr "Update your environment file"
#: ../../docstring config.settings.common.AWS_QUERYSTRING_AUTH:1 of
msgid ""
@ -121,8 +126,8 @@ msgid ""
"If you use a S3-compatible storage such as minio, set the following "
"variable to the full URL to the storage server."
msgstr ""
"If you use a S3-compatible storage such as minio, set the following variable "
"to the full URL to the storage server."
"If you use a S3-compatible storage such as minio, set the following "
"variable to the full URL to the storage server."
#: ../../docstring config.settings.common.AWS_S3_ENDPOINT_URL:4 of
msgid "Examples:"
@ -157,30 +162,30 @@ msgid ""
"A directory in your S3 bucket where you store files. Use this if you plan"
" to share the bucket between services."
msgstr ""
"A directory in your S3 bucket where you store files. Use this if you plan to "
"share the bucket between services."
"A directory in your S3 bucket where you store files. Use this if you plan"
" to share the bucket between services."
#: ../../docstring config.settings.common.PROXY_MEDIA:1 of
msgid ""
"Whether to proxy audio files through your reverse proxy. We recommend you"
" leave this enabled to enforce access control."
msgstr ""
"Whether to proxy audio files through your reverse proxy. We recommend you "
"leave this enabled to enforce access control."
"Whether to proxy audio files through your reverse proxy. We recommend you"
" leave this enabled to enforce access control."
#: ../../docstring config.settings.common.PROXY_MEDIA:4 of
msgid ""
"If you're using S3 storage with :attr:`AWS_QUERYSTRING_AUTH` enabled, "
"it's safe to disable this setting."
msgstr ""
"If you're using S3 storage with :attr:`AWS_QUERYSTRING_AUTH` enabled, it's "
"safe to disable this setting."
"If you're using S3 storage with :attr:`AWS_QUERYSTRING_AUTH` enabled, "
"it's safe to disable this setting."
#: ../../administrator_documentation/configuration_docs/object_storage.md:71
#: ../../administrator_documentation/configuration_docs/object_storage.md:81
msgid "Set up your reverse proxy"
msgstr "Set up your reverse proxy"
#: ../../administrator_documentation/configuration_docs/object_storage.md:74
#: ../../administrator_documentation/configuration_docs/object_storage.md:84
msgid ""
"Serving files from object storage is not currently supported on Apache "
"deployments."
@ -188,7 +193,7 @@ msgstr ""
"Serving files from object storage is not currently supported on Apache "
"deployments."
#: ../../administrator_documentation/configuration_docs/object_storage.md:77
#: ../../administrator_documentation/configuration_docs/object_storage.md:87
msgid ""
"Serving files from an object store requires some changes to the reverse "
"proxy."
@ -196,7 +201,7 @@ msgstr ""
"Serving files from an object store requires some changes to the reverse "
"proxy."
#: ../../administrator_documentation/configuration_docs/object_storage.md:79
#: ../../administrator_documentation/configuration_docs/object_storage.md:89
msgid "Open your Nginx configuration file in an editor."
msgstr "Open your Nginx configuration file in an editor."
@ -208,56 +213,61 @@ msgstr "Debian"
msgid "Docker"
msgstr "Docker"
#: ../../administrator_documentation/configuration_docs/object_storage.md:97
#: ../../administrator_documentation/configuration_docs/object_storage.md:112
msgid ""
"Comment out the `location /_protected/media/` block by adding a `#` to "
"the start of each line."
msgstr ""
"Comment out the `location /_protected/media/` block by adding a `#` to the "
"start of each line."
"Comment out the `location /_protected/media/` block by adding a `#` to "
"the start of each line."
#: ../../administrator_documentation/configuration_docs/object_storage.md:106
#: ../../administrator_documentation/configuration_docs/object_storage.md:121
msgid ""
"Uncomment the `location ~ /_protected/media/(.+)` block by removing the "
"`#` from the start of each line."
msgstr ""
"Uncomment the `location ~ /_protected/media/(.+)` block by removing the `#` "
"from the start of each line."
"Uncomment the `location ~ /_protected/media/(.+)` block by removing the "
"`#` from the start of each line."
#: ../../administrator_documentation/configuration_docs/object_storage.md:116
#: ../../administrator_documentation/configuration_docs/object_storage.md:131
msgid "Add your S3 store URL to the `img-src` and `media-src` headers."
msgstr "Add your S3 store URL to the `img-src` and `media-src` headers."
#: ../../administrator_documentation/configuration_docs/object_storage.md:122
#: ../../administrator_documentation/configuration_docs/object_storage.md:137
msgid "Test your Nginx configuration."
msgstr "Test your Nginx configuration."
#: ../../administrator_documentation/configuration_docs/object_storage.md:128
#: ../../administrator_documentation/configuration_docs/object_storage.md:143
msgid "Restart Funkwhale and Nginx to pick up the changes."
msgstr "Restart Funkwhale and Nginx to pick up the changes."
#: ../../administrator_documentation/configuration_docs/object_storage.md:148
#: ../../administrator_documentation/configuration_docs/object_storage.md:168
msgid "That's it! Files are now uploaded to and stored from your S3 bucket."
msgstr "That's it! Files are now uploaded to and stored from your S3 bucket."
#: ../../administrator_documentation/configuration_docs/object_storage.md:150
#: ../../administrator_documentation/configuration_docs/object_storage.md:170
msgid "Troubleshooting"
msgstr "Troubleshooting"
#: ../../administrator_documentation/configuration_docs/object_storage.md:154
#: ../../administrator_documentation/configuration_docs/object_storage.md
msgid "No Resolver Found"
msgstr ""
#: ../../administrator_documentation/configuration_docs/object_storage.md:174
msgid ""
"You may see the following error when streaming music from your "
"S3-compatible store:"
msgstr ""
"You may see the following error when streaming music from your S3-compatible "
"store:"
"You may see the following error when streaming music from your "
"S3-compatible store:"
#: ../../administrator_documentation/configuration_docs/object_storage.md:160
#: ../../administrator_documentation/configuration_docs/object_storage.md:180
msgid ""
"This happens when the Nginx config is unable to use your servers DNS "
"resolver. We're still looking into this issue. You can work around this "
"by adding a resolver to the `location ~/_protected/media/(.+)` block."
msgstr ""
"This happens when the Nginx config is unable to use your servers DNS "
"resolver. We're still looking into this issue. You can work around this by "
"adding a resolver to the `location ~/_protected/media/(.+)` block."
"resolver. We're still looking into this issue. You can work around this "
"by adding a resolver to the `location ~/_protected/media/(.+)` block."

Wyświetl plik

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 12:52+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-02 21:07+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language: en_GB\n"
@ -18,7 +18,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../administrator_documentation/import_docs/index.md:1
msgid "Import music from your server"
@ -61,41 +61,41 @@ msgstr "Debian"
msgid "Docker"
msgstr "Docker"
#: ../../administrator_documentation/import_docs/index.md:32
#: ../../administrator_documentation/import_docs/index.md:37
msgid "Get demo music"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:34
#: ../../administrator_documentation/import_docs/index.md:39
msgid ""
"If you don't have music on your server, you can download creative commons"
" music to test imports with. The Funkwhale project provides a collection "
"courtesy of [Jamendo](https://jamendo.com). To download these tracks:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:36
#: ../../administrator_documentation/import_docs/index.md:41
msgid "Download the shell script."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:42
#: ../../administrator_documentation/import_docs/index.md:47
msgid "Download the music list."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:48
#: ../../administrator_documentation/import_docs/index.md:53
msgid "Run the shell script against the music list to download the tracks."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:54
#: ../../administrator_documentation/import_docs/index.md:59
msgid ""
"This downloads a set compressed albums to your `data/music` directory and"
" unzips them. You can then import these tracks using the methods in this "
"article."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:56
#: ../../administrator_documentation/import_docs/index.md:61
msgid "Find your library ID"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:58
#: ../../administrator_documentation/import_docs/index.md:63
msgid ""
"You need to create a library before you can import music. Follow the "
"instructions in [Create a "
@ -103,88 +103,88 @@ msgid ""
"started."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:60
#: ../../administrator_documentation/import_docs/index.md:65
msgid ""
"Once you've created your library, you can find its ID by following these "
"steps:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:62
#: ../../administrator_documentation/import_docs/index.md:67
msgid ""
"Visit `https://<yourdomain>/content/libraries/` in your browser. This "
"page contains a list of your libraries."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:63
#: ../../administrator_documentation/import_docs/index.md:68
msgid ""
"Find the library you want to upload content into. Select "
"{guilabel}`Library details` to open the library details page."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:64
#: ../../administrator_documentation/import_docs/index.md:69
msgid ""
"Your library's ID is the long string of letters and numbers shown in the "
"URL bar. Copy the content before the first hyphen (`-`)."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:66
#: ../../administrator_documentation/import_docs/index.md:71
msgid ""
"For example, if your library ID is `769a2bc3-eb1d-4aff-"
"9f84-2c4d80d5c2d1`, copy the `769a2bc3`. You can use this as a shorthand "
"reference for your library."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:68
#: ../../administrator_documentation/import_docs/index.md:73
msgid "Import your music"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:70
#: ../../administrator_documentation/import_docs/index.md:75
msgid "Copy files from your server"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:72
#: ../../administrator_documentation/import_docs/index.md:77
msgid ""
"Once you have your library ID, you can copy content from your server and "
"import it into the library. To do this:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:74
#: ../../administrator_documentation/import_docs/index.md:148
#: ../../administrator_documentation/import_docs/index.md:79
#: ../../administrator_documentation/import_docs/index.md:162
msgid "Log in to your server and navigate to your Funkwhale directory."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:80
#: ../../administrator_documentation/import_docs/index.md:155
#: ../../administrator_documentation/import_docs/index.md:85
#: ../../administrator_documentation/import_docs/index.md:169
msgid ""
"Export your library ID to reference it later. In this example, the "
"library ID is \"769a2bc3\". Replace this with your library ID."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:86
#: ../../administrator_documentation/import_docs/index.md:91
msgid ""
"Run the `import_files` command to copy your files. In this example, the "
"music is stored in `data/music`. Replace this with your music directory."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:92
#: ../../administrator_documentation/import_docs/index.md:97
msgid "Funkwhale copies your files to your media store."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:94
#: ../../administrator_documentation/import_docs/index.md:99
msgid "Access your files in-place"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:96
#: ../../administrator_documentation/import_docs/index.md:101
msgid ""
"The in-place import method references your files in their current "
"directory. This is useful if you have limited storage space."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:98
#: ../../administrator_documentation/import_docs/index.md:103
msgid "Link your file directory"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:100
#: ../../administrator_documentation/import_docs/index.md:105
msgid ""
"We recommend you symbolically link your music directories to "
"`/srv/funkwhale/data/music`. You can then run the `import_files` command "
@ -192,21 +192,21 @@ msgid ""
"needing to add to them to your webserver."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:104
#: ../../administrator_documentation/import_docs/index.md:113
msgid ""
"To link your storage directory to the Funkwhale store, use the `ln -s` "
"command. For example, if you have an NFS share at `/media/nfsshare`, you "
"can link it to a folder like this:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:110
#: ../../administrator_documentation/import_docs/index.md:138
#: ../../administrator_documentation/import_docs/index.md:119
#: ../../administrator_documentation/import_docs/index.md:148
msgid ""
"You can then run the `import_files` command against "
"`/srv/funkwhale/data/music/nfsshare`."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:116
#: ../../administrator_documentation/import_docs/index.md:126
msgid ""
"On a Docker install you can use bind mounts to reference your storage "
"directory. To do this, you need to add the directory to the `api` and "
@ -215,15 +215,15 @@ msgid ""
"your `docker-compose.yml` file:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:142
#: ../../administrator_documentation/import_docs/index.md:152
msgid "Import your files"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:144
#: ../../administrator_documentation/import_docs/index.md:154
msgid "To use the in-place import method, follow these steps:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:154
#: ../../administrator_documentation/import_docs/index.md:168
msgid ""
"Add your storage location to your `.env` file if you don't want to link "
"it to the Funkwhale store. See the [in-place import configuration "
@ -231,21 +231,21 @@ msgid ""
"configuration) for more information."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:161
#: ../../administrator_documentation/import_docs/index.md:175
msgid ""
"Run your import command against your music storage directory. In this "
"example, the storage directory is `/srv/funkwhale/data/music/nfsshare`. "
"Replace this with your storage directory."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:167
#: ../../administrator_documentation/import_docs/index.md:180
#: ../../administrator_documentation/import_docs/index.md:181
#: ../../administrator_documentation/import_docs/index.md:195
msgid ""
"Funkwhale imports the music in your storage directory into the specified "
"library."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:173
#: ../../administrator_documentation/import_docs/index.md:188
msgid ""
"Add your storage location to your `.env` file if you don't want to bind "
"it to the Funkwhale store. See the [in-place import configuration "
@ -253,39 +253,39 @@ msgid ""
"configuration) for more information."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:174
#: ../../administrator_documentation/import_docs/index.md:189
msgid "Run your import command against your music storage directory:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:184
#: ../../administrator_documentation/import_docs/index.md:199
msgid "Album art"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:186
#: ../../administrator_documentation/import_docs/index.md:201
msgid ""
"Funkwhale attempts to import album art for your music library. The import"
" process checks for the following."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:188
#: ../../administrator_documentation/import_docs/index.md:203
msgid "The cover embedded in the audio files (works with FLAC and MP3 files)."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:189
#: ../../administrator_documentation/import_docs/index.md:204
msgid "A `cover.jpg` or `cover.png` in the the track's directory."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:190
#: ../../administrator_documentation/import_docs/index.md:205
msgid ""
"An `mbid` in the file's tags. If there is an `mbid`, the import process "
"tries to fetch cover art from Musicbrainz."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:192
#: ../../administrator_documentation/import_docs/index.md:207
msgid "Watch for filesystem changes"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:194
#: ../../administrator_documentation/import_docs/index.md:209
msgid ""
"You can run the `import_files` command any time you add new files or "
"update files. For larger collections, this may not be practical. To watch"
@ -294,108 +294,95 @@ msgid ""
"and update your database when something changes."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:196
#: ../../administrator_documentation/import_docs/index.md:211
msgid ""
"The `--watch` flag performs the following actions when it detects a "
"change:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:198
#: ../../administrator_documentation/import_docs/index.md:213
msgid "File created – imports the track."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:199
#: ../../administrator_documentation/import_docs/index.md:214
msgid "File moved – updates the location of the track in the database."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:200
#: ../../administrator_documentation/import_docs/index.md:215
msgid "File metadata updated – updates the track metadata in the database."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:201
#: ../../administrator_documentation/import_docs/index.md:216
msgid "File deleted – removes the file from the database."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:205
msgid ""
"The `import_files --watch` command watches for changes to the following "
"metadata fields:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:207
msgid "Track mbid"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:208
msgid "Track title"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:209
msgid "Track position and disc number"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:210
msgid "Track license and copyright"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:211
msgid "Track genre"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:212
msgid "Album cover"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:213
msgid "Album title"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:214
msgid "Album mbid"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:215
msgid "Album release date"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:216
msgid "Artist name"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:217
msgid "Artist mbid"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:218
msgid "Album artist name"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:219
msgid "Album artist mbid"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:239
#: ../../administrator_documentation/import_docs/index.md:259
msgid "Prune dangling metadata"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:241
#: ../../administrator_documentation/import_docs/index.md:261
msgid ""
"Funkwhale doesn't delete track metadata when you delete a track. This is "
"useful if you want to delete a file but keep a record of a track for "
"created playlists or favorites."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:243
#: ../../administrator_documentation/import_docs/index.md:263
msgid ""
"If you want to remove the file's metadata when you delete the file, run "
"`import_files` with the `--prune` flag. This flag removes the metadata of"
" any"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:246
#: ../../administrator_documentation/import_docs/index.md:266
msgid ""
"You can use the `--prune` flag with the `--watch` flag. This means "
"Funkwhale removes the metadata of referenced files you delete from your "
"storage."
msgstr ""
#~ msgid ""
#~ "The `import_files --watch` command watches "
#~ "for changes to the following metadata"
#~ " fields:"
#~ msgstr ""
#~ msgid "Track mbid"
#~ msgstr ""
#~ msgid "Track title"
#~ msgstr ""
#~ msgid "Track position and disc number"
#~ msgstr ""
#~ msgid "Track license and copyright"
#~ msgstr ""
#~ msgid "Track genre"
#~ msgstr ""
#~ msgid "Album cover"
#~ msgstr ""
#~ msgid "Album title"
#~ msgstr ""
#~ msgid "Album mbid"
#~ msgstr ""
#~ msgid "Album release date"
#~ msgstr ""
#~ msgid "Artist name"
#~ msgstr ""
#~ msgid "Artist mbid"
#~ msgstr ""
#~ msgid "Album artist name"
#~ msgstr ""
#~ msgid "Album artist mbid"
#~ msgstr ""

Wyświetl plik

@ -7,19 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-02 21:07+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/administrator_documentation-troubleshooting-backend/"
"en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/administrator_documentation-troubleshooting-backend/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../administrator_documentation/troubleshooting/backend.md:1
msgid "Troubleshoot backend issues"
@ -51,10 +50,11 @@ msgid "Nginx"
msgstr "Nginx"
#: ../../administrator_documentation/troubleshooting/backend.md
msgid "Apache"
#, fuzzy
msgid "Apache2"
msgstr "Apache"
#: ../../administrator_documentation/troubleshooting/backend.md:29
#: ../../administrator_documentation/troubleshooting/backend.md:33
msgid ""
"__API logs__ – check these if you are having issues with the Funkwhale "
"app, federation, or imports."
@ -68,37 +68,37 @@ msgstr "Debian"
msgid "Docker"
msgstr "Docker"
#: ../../administrator_documentation/troubleshooting/backend.md:47
#: ../../administrator_documentation/troubleshooting/backend.md:56
msgid ""
"__Celery logs__ – check these if a federation or import task isn't "
"working."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:65
#: ../../administrator_documentation/troubleshooting/backend.md:79
msgid "Troubleshoot issues"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:67
#: ../../administrator_documentation/troubleshooting/backend.md:81
msgid "API issues"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:69
#: ../../administrator_documentation/troubleshooting/backend.md:83
msgid "If the API isn't serving audio files, try the following:"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:71
#: ../../administrator_documentation/troubleshooting/backend.md:85
msgid ""
"If youre using Docker, check you have commented out the `MEDIA_ROOT` "
"variable in your `.env` file."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:72
#: ../../administrator_documentation/troubleshooting/backend.md:86
msgid ""
"Check the `_protected/media` block in your webserver points to your media"
" path. This is `/srv/funkwhale/data/media` by default."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:73
#: ../../administrator_documentation/troubleshooting/backend.md:87
msgid ""
"If youre using the in-place import, check you have configured your media"
" paths. Check the `MUSIC_DIRECTORY_PATH`, `MUSIC_DIRECTORY_SERVE_PATH` "
@ -106,135 +106,140 @@ msgid ""
"webserver can read these directories."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:75
#: ../../administrator_documentation/troubleshooting/backend.md:89
msgid "Import issues"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:77
#: ../../administrator_documentation/troubleshooting/backend.md:91
msgid "If you're having issues importing files, try the following:"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:79
#: ../../administrator_documentation/troubleshooting/backend.md:93
msgid "Check that the file is encoded in a supported format"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:83
#: ../../administrator_documentation/troubleshooting/backend.md
msgid "Supported formats"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:97
msgid "flac"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:84
#: ../../administrator_documentation/troubleshooting/backend.md:98
msgid "ogg"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:85
#: ../../administrator_documentation/troubleshooting/backend.md:99
msgid "mp3"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:86
#: ../../administrator_documentation/troubleshooting/backend.md:100
msgid "opus"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:87
#: ../../administrator_documentation/troubleshooting/backend.md:101
msgid "aac"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:88
#: ../../administrator_documentation/troubleshooting/backend.md:102
msgid "m4a"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:89
#: ../../administrator_documentation/troubleshooting/backend.md:103
msgid "aiff"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:90
#: ../../administrator_documentation/troubleshooting/backend.md:104
msgid "aif"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:94
#: ../../administrator_documentation/troubleshooting/backend.md:108
msgid "Make sure your files play in another media player."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:95
#: ../../administrator_documentation/troubleshooting/backend.md:109
msgid ""
"Make sure your files are [tagged "
"correctly](../../user_documentation/libraries/tag_music.md)."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:96
#: ../../administrator_documentation/troubleshooting/backend.md:110
msgid "Check the Celery logs for errors during the import."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:98
#: ../../administrator_documentation/troubleshooting/backend.md:112
msgid "Federation issues"
msgstr "Federation issues"
#: ../../administrator_documentation/troubleshooting/backend.md:100
#: ../../administrator_documentation/troubleshooting/backend.md:114
msgid "If you are having issues accessing federated content, try the following:"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:102
#: ../../administrator_documentation/troubleshooting/backend.md:116
msgid ""
"Check that the remote library received your follow request and approved "
"it."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:103
#: ../../administrator_documentation/troubleshooting/backend.md:117
msgid "Trigger a library scan in the Funkwhale frontend."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:104
#: ../../administrator_documentation/troubleshooting/backend.md:118
msgid "Check the Celery logs for errors during the scan."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:106
#: ../../administrator_documentation/troubleshooting/backend.md:120
msgid "Memory tracing"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:108
#: ../../administrator_documentation/troubleshooting/backend.md:122
msgid ""
"If your Funkwhale server uses more memory than expected, you can check "
"the footprint of requests. This requires a middleware to check memory "
"allocation. To set up this middleware:"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:110
#: ../../administrator_documentation/troubleshooting/backend.md:124
msgid "Add the middleware to your `.env` file."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:116
#: ../../administrator_documentation/troubleshooting/backend.md:130
msgid "Enable memory tracing in your `.env` file."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:122
#: ../../administrator_documentation/troubleshooting/backend.md:156
#: ../../administrator_documentation/troubleshooting/backend.md:136
#: ../../administrator_documentation/troubleshooting/backend.md:175
msgid "Restart your Funkwhale server."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:140
#: ../../administrator_documentation/troubleshooting/backend.md:159
msgid ""
"The middleware prints out the top 25 memory allocations to the API logs. "
"You can use these to see what requests use the most memory."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:142
#: ../../administrator_documentation/troubleshooting/backend.md:161
msgid "To disable memory tracing:"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:144
#: ../../administrator_documentation/troubleshooting/backend.md:163
msgid "Remove the middleware from your `.env` file."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:150
#: ../../administrator_documentation/troubleshooting/backend.md:169
msgid "Disable memory tracing in your `.env` file."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:174
#: ../../administrator_documentation/troubleshooting/backend.md:198
msgid "Get help"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:176
#: ../../administrator_documentation/troubleshooting/backend.md:200
msgid ""
"If you can't solve the issue yourself, ask the community for help. Check "
"out the [get help](get_help.md) guide for information about where to ask "
"your question and what details to provide."
msgstr ""

Wyświetl plik

@ -7,19 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-02 21:07+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/administrator_documentation-uninstall_docs-debian/"
"en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/administrator_documentation-uninstall_docs-debian/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../administrator_documentation/uninstall_docs/debian.md:1
msgid "Uninstall Debian installation"
@ -77,13 +76,13 @@ msgstr ""
msgid "Nginx"
msgstr "Nginx"
#: ../../administrator_documentation/uninstall_docs/debian.md:54
#: ../../administrator_documentation/uninstall_docs/debian.md:72
#: ../../administrator_documentation/uninstall_docs/debian.md:58
#: ../../administrator_documentation/uninstall_docs/debian.md:77
msgid "Remove the configuration files from your web host."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:62
#: ../../administrator_documentation/uninstall_docs/debian.md:79
#: ../../administrator_documentation/uninstall_docs/debian.md:66
#: ../../administrator_documentation/uninstall_docs/debian.md:84
msgid "Reload the web server."
msgstr ""
@ -91,73 +90,77 @@ msgstr ""
msgid "Apache2"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:87
#: ../../administrator_documentation/uninstall_docs/debian.md:92
msgid "Remove the Funkwhale database"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:90
#: ../../administrator_documentation/uninstall_docs/debian.md:95
msgid ""
"This action is __irreversible__. Make sure you have [backed up your "
"data](../upgrade_docs/backup.md) before proceeding."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:93
#: ../../administrator_documentation/uninstall_docs/debian.md:98
msgid ""
"Once you have stopped the Funkwhale services, you can remove the "
"Funkwhale database."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:95
#: ../../administrator_documentation/uninstall_docs/debian.md:100
msgid "Navigate to your Funkwhale directory."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:101
#: ../../administrator_documentation/uninstall_docs/debian.md:106
msgid "Delete the Funkwhale database."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:107
#: ../../administrator_documentation/uninstall_docs/debian.md:112
msgid "Delete the Funkwhale user."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:113
#: ../../administrator_documentation/uninstall_docs/debian.md:118
msgid "Delete the Funkwhale account"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:116
#: ../../administrator_documentation/uninstall_docs/debian.md:121
msgid ""
"This action deletes the `/srv/funkwhale/` directory. Make sure you have "
"[backed up any data](../upgrade_docs/backup.md) you want to keep."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:119
#: ../../administrator_documentation/uninstall_docs/debian.md:124
msgid ""
"Once you have removed the database, you can delete the `funkwhale` user "
"and all associated data."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:125
#: ../../administrator_documentation/uninstall_docs/debian.md:130
msgid ""
"This deletes the `funkwhale` user and everything in their home directory "
"(`/srv/funkwhale/`). If your content is hosted in an S3-compatible store,"
" you need to delete this data separately."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:127
#: ../../administrator_documentation/uninstall_docs/debian.md:132
msgid "Uninstall dependencies"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:129
#: ../../administrator_documentation/uninstall_docs/debian.md:134
msgid "Funkwhale uses the following dependencies on your server:"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md
msgid "apt"
msgid "Apt"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md
msgid "Python"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:160
#: ../../administrator_documentation/uninstall_docs/debian.md:170
msgid "Uninstall any dependencies you don't need."
msgstr ""
#~ msgid "apt"
#~ msgstr ""

Wyświetl plik

@ -7,19 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-02 21:07+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/"
"administrator_documentation-uninstall_docs-quick_install/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/administrator_documentation-uninstall_docs-quick_install/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../administrator_documentation/uninstall_docs/quick_install.md:1
msgid "Uninstall using the quick install script"
@ -79,13 +78,13 @@ msgstr ""
msgid "Nginx"
msgstr "Nginx"
#: ../../administrator_documentation/uninstall_docs/quick_install.md:54
#: ../../administrator_documentation/uninstall_docs/quick_install.md:72
#: ../../administrator_documentation/uninstall_docs/quick_install.md:58
#: ../../administrator_documentation/uninstall_docs/quick_install.md:77
msgid "Remove the configuration files from your web host."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:62
#: ../../administrator_documentation/uninstall_docs/quick_install.md:79
#: ../../administrator_documentation/uninstall_docs/quick_install.md:66
#: ../../administrator_documentation/uninstall_docs/quick_install.md:84
msgid "Reload the web server."
msgstr ""
@ -93,75 +92,79 @@ msgstr ""
msgid "Apache2"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:87
#: ../../administrator_documentation/uninstall_docs/quick_install.md:92
msgid "Remove the Funkwhale database"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:90
#: ../../administrator_documentation/uninstall_docs/quick_install.md:95
msgid ""
"This action is __irreversible__. Make sure you have [backed up your "
"data](../upgrade_docs/backup.md) before proceeding."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:93
#: ../../administrator_documentation/uninstall_docs/quick_install.md:98
msgid ""
"Once you have stopped the Funkwhale services, you can remove the "
"Funkwhale database."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:95
#: ../../administrator_documentation/uninstall_docs/quick_install.md:100
msgid "Navigate to your Funkwhale directory."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:101
#: ../../administrator_documentation/uninstall_docs/quick_install.md:106
msgid "Delete the Funkwhale database."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:107
#: ../../administrator_documentation/uninstall_docs/quick_install.md:112
msgid "Delete the Funkwhale user."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:113
#: ../../administrator_documentation/uninstall_docs/quick_install.md:118
msgid "Delete the Funkwhale account"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:116
#: ../../administrator_documentation/uninstall_docs/quick_install.md:121
msgid ""
"This action deletes the `/srv/funkwhale/` directory. Make sure you have "
"[backed up any data](../upgrade_docs/backup.md) you want to keep."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:119
#: ../../administrator_documentation/uninstall_docs/quick_install.md:124
msgid ""
"Once you have removed the database, you can delete the `funkwhale` user "
"and all associated data."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:125
#: ../../administrator_documentation/uninstall_docs/quick_install.md:130
msgid ""
"This deletes the `funkwhale` user and everything in their home directory "
"(`/srv/funkwhale/`). If your content is hosted in an S3-compatible store,"
" you need to delete this data separately."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:127
#: ../../administrator_documentation/uninstall_docs/quick_install.md:132
msgid "Uninstall dependencies"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:129
#: ../../administrator_documentation/uninstall_docs/quick_install.md:134
msgid ""
"The quick install script installs the following dependencies on your "
"server:"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md
msgid "apt"
msgid "Apt"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md
msgid "Python"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:160
#: ../../administrator_documentation/uninstall_docs/quick_install.md:170
msgid "Uninstall any dependencies you don't need."
msgstr ""
#~ msgid "apt"
#~ msgstr ""

Wyświetl plik

@ -1,23 +1,23 @@
# 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.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
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"
"POT-Creation-Date: 2022-07-23 12:20+0200\n"
"PO-Revision-Date: 2022-07-03 21:06+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/index/en_GB/>\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation/index/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../index.md:7
msgid "User documentation"
@ -27,23 +27,23 @@ msgstr "User documentation"
msgid "Admin documentation"
msgstr "Admin documentation"
#: ../../index.md:41
#: ../../index.md:49
msgid "Moderator documentation"
msgstr "Moderator documentation"
#: ../../index.md:58
#: ../../index.md:66
msgid "Developer documentation"
msgstr "Developer documentation"
#: ../../index.md:70
#: ../../index.md:78
msgid "Contributor documentation"
msgstr "Contributor documentation"
#: ../../index.md:82
#: ../../index.md:90
msgid "Reference"
msgstr "Reference"
#: ../../index.md:93
#: ../../index.md:101
msgid "Changes"
msgstr "Changes"
@ -52,64 +52,96 @@ msgid "Welcome to Funkwhale's documentation"
msgstr "Welcome to Funkwhale's documentation"
#: ../../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."
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 ""
"Funkwhale is a self-hosted audio player and publication platform. It enables "
"users to build libraries of existing content and publish their own."
"Funkwhale is a self-hosted audio player and publication platform. It "
"enables users to build libraries of existing content and publish their "
"own."
#: ../../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."
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 ""
"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."
"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."
#: ../../index.md:109
msgid "{fa}`user` Users"
msgstr "{fa}`user` Users"
#: ../../index.md:118
#, fuzzy
msgid "{fa}`user` Users"
msgstr "{fa}`users` Contributors"
#: ../../index.md:112
msgid "Looking to use Funkwhale for your content? Read through our guides to master the app!"
#: ../../index.md:121
msgid ""
"Looking to use Funkwhale for your content? Read through our guides to "
"master the app!"
msgstr ""
"Looking to use Funkwhale for your content? Read through our guides to master "
"the app!"
"Looking to use Funkwhale for your content? Read through our guides to "
"master the app!"
#: ../../index.md:124
#: ../../index.md:125 ../../index.md:146 ../../index.md:167 ../../index.md:188
#: ../../index.md:213
msgid "Get started"
msgstr ""
#: ../../index.md:139
msgid "{fa}`wrench` Admins"
msgstr "{fa}`wrench` Admins"
#: ../../index.md:127
msgid "Want to host your own Funkwhale pod? Our admin documentation guides you through the process."
#: ../../index.md:142
msgid ""
"Want to host your own Funkwhale pod? Our admin documentation guides you "
"through the process."
msgstr ""
"Want to host your own Funkwhale pod? Our admin documentation guides you "
"through the process."
#: ../../index.md:138
#: ../../index.md:160
msgid "{fa}`shield` Moderators"
msgstr "{fa}`shield` Moderators"
#: ../../index.md:141
msgid "Keeping your users safe from harassment and spam or clearing illegal content? Check out our moderator docs."
#: ../../index.md:163
msgid ""
"Keeping your users safe from harassment and spam or clearing illegal "
"content? Check out our moderator docs."
msgstr ""
"Keeping your users safe from harassment and spam or clearing illegal "
"content? Check out our moderator docs."
#: ../../index.md:152
#: ../../index.md:181
msgid "{fa}`code` Developers"
msgstr "{fa}`code` Developers"
#: ../../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."
#: ../../index.md:184
msgid ""
"Want to use Funkwhale's API or help with the project? Our developer docs "
"give you what you need to get started."
msgstr ""
"Want to use Funkwhale's API or help with the project? Our developer docs "
"give you what you need to get started."
#: ../../index.md:167
#: ../../index.md:206
msgid "{fa}`users` Contributors"
msgstr "{fa}`users` Contributors"
#: ../../index.md:170
msgid "Want to help make Funkwhale even better? Check out these guides for some ideas."
#: ../../index.md:209
msgid ""
"Want to help make Funkwhale even better? Check out these guides for some "
"ideas."
msgstr ""
"Want to help make Funkwhale even better? Check out these guides for some "
"ideas."
#~ msgid "{fa}`user` Users"
#~ msgstr "{fa}`user` Users"
#~ msgid "{octicon}`person` Users"
#~ msgstr ""

Wyświetl plik

@ -7,19 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-allow_listing-add_domain/"
"en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-allow_listing-add_domain/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/allow_listing/add_domain.md:1
msgid "Add a domain to your allow-list"
@ -31,7 +30,11 @@ msgid ""
"allow-list to interact with it. You can add new domains in two ways:"
msgstr ""
#: ../../moderator_documentation/allow_listing/add_domain.md:10
#: ../../moderator_documentation/allow_listing/add_domain.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/allow_listing/add_domain.md:12
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
@ -39,11 +42,11 @@ msgstr ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
#: ../../moderator_documentation/allow_listing/add_domain.md:13
#: ../../moderator_documentation/allow_listing/add_domain.md:15
msgid "Add a new domain"
msgstr ""
#: ../../moderator_documentation/allow_listing/add_domain.md:15
#: ../../moderator_documentation/allow_listing/add_domain.md:17
msgid "To add a domain that is not currently in your domains list:"
msgstr ""
@ -51,55 +54,55 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../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
#: ../../moderator_documentation/allow_listing/add_domain.md:25
#: ../../moderator_documentation/allow_listing/add_domain.md:38
#: ../../moderator_documentation/allow_listing/add_domain.md:60
#: ../../moderator_documentation/allow_listing/add_domain.md:73
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../moderator_documentation/allow_listing/add_domain.md:20
#: ../../moderator_documentation/allow_listing/add_domain.md:50
#: ../../moderator_documentation/allow_listing/add_domain.md:26
#: ../../moderator_documentation/allow_listing/add_domain.md:61
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../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
#: ../../moderator_documentation/allow_listing/add_domain.md:27
#: ../../moderator_documentation/allow_listing/add_domain.md:40
#: ../../moderator_documentation/allow_listing/add_domain.md:62
#: ../../moderator_documentation/allow_listing/add_domain.md:75
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
#: ../../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
#: ../../moderator_documentation/allow_listing/add_domain.md:28
#: ../../moderator_documentation/allow_listing/add_domain.md:41
#: ../../moderator_documentation/allow_listing/add_domain.md:63
#: ../../moderator_documentation/allow_listing/add_domain.md:76
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
#: ../../moderator_documentation/allow_listing/add_domain.md:29
#: ../../moderator_documentation/allow_listing/add_domain.md:42
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
#: ../../moderator_documentation/allow_listing/add_domain.md:30
#: ../../moderator_documentation/allow_listing/add_domain.md:43
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
#: ../../moderator_documentation/allow_listing/add_domain.md:31
#: ../../moderator_documentation/allow_listing/add_domain.md:44
msgid "Select {guilabel}`Add`."
msgstr ""
@ -107,44 +110,45 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/allow_listing/add_domain.md:32
#: ../../moderator_documentation/allow_listing/add_domain.md:62
#: ../../moderator_documentation/allow_listing/add_domain.md:39
#: ../../moderator_documentation/allow_listing/add_domain.md:74
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
#: ../../moderator_documentation/allow_listing/add_domain.md:48
msgid "That's it! You've added the domain to your pod's allow-list."
msgstr ""
#: ../../moderator_documentation/allow_listing/add_domain.md:43
#: ../../moderator_documentation/allow_listing/add_domain.md:50
msgid "Add a known domain"
msgstr ""
#: ../../moderator_documentation/allow_listing/add_domain.md:45
#: ../../moderator_documentation/allow_listing/add_domain.md:52
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
#: ../../moderator_documentation/allow_listing/add_domain.md:64
#: ../../moderator_documentation/allow_listing/add_domain.md:77
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
#: ../../moderator_documentation/allow_listing/add_domain.md:65
#: ../../moderator_documentation/allow_listing/add_domain.md:78
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
#: ../../moderator_documentation/allow_listing/add_domain.md:66
#: ../../moderator_documentation/allow_listing/add_domain.md:79
msgid ""
"Select {guilabel}`Go`. A green tick ({fa}`check`) appears next to the "
"domain(s)"
msgstr ""
#: ../../moderator_documentation/allow_listing/add_domain.md:71
#: ../../moderator_documentation/allow_listing/add_domain.md:83
msgid "You're done! You've added the domain to your pod's allow-list."
msgstr ""

Wyświetl plik

@ -7,19 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-allow_listing-remove_domain/"
"en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-allow_listing-remove_domain/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/allow_listing/remove_domain.md:1
msgid "Remove a domain from your allow-list"
@ -31,7 +30,11 @@ msgid ""
"communicating with it."
msgstr ""
#: ../../moderator_documentation/allow_listing/remove_domain.md:6
#: ../../moderator_documentation/allow_listing/remove_domain.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/allow_listing/remove_domain.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
@ -39,7 +42,7 @@ msgstr ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
#: ../../moderator_documentation/allow_listing/remove_domain.md:9
#: ../../moderator_documentation/allow_listing/remove_domain.md:11
msgid "To remove a domain from your allow-list:"
msgstr ""
@ -47,48 +50,48 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../moderator_documentation/allow_listing/remove_domain.md:13
#: ../../moderator_documentation/allow_listing/remove_domain.md:25
#: ../../moderator_documentation/allow_listing/remove_domain.md:19
#: ../../moderator_documentation/allow_listing/remove_domain.md:32
msgid "Log in to your pod."
msgstr "Log in to your pod."
#: ../../moderator_documentation/allow_listing/remove_domain.md:14
#: ../../moderator_documentation/allow_listing/remove_domain.md:20
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../moderator_documentation/allow_listing/remove_domain.md:15
#: ../../moderator_documentation/allow_listing/remove_domain.md:27
#: ../../moderator_documentation/allow_listing/remove_domain.md:21
#: ../../moderator_documentation/allow_listing/remove_domain.md:34
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
#: ../../moderator_documentation/allow_listing/remove_domain.md:16
#: ../../moderator_documentation/allow_listing/remove_domain.md:28
#: ../../moderator_documentation/allow_listing/remove_domain.md:22
#: ../../moderator_documentation/allow_listing/remove_domain.md:35
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
#: ../../moderator_documentation/allow_listing/remove_domain.md:23
#: ../../moderator_documentation/allow_listing/remove_domain.md:36
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
#: ../../moderator_documentation/allow_listing/remove_domain.md:24
#: ../../moderator_documentation/allow_listing/remove_domain.md:37
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
#: ../../moderator_documentation/allow_listing/remove_domain.md:25
#: ../../moderator_documentation/allow_listing/remove_domain.md:38
msgid "Select {guilabel}`Go`."
msgstr ""
@ -96,12 +99,13 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/allow_listing/remove_domain.md:26
#: ../../moderator_documentation/allow_listing/remove_domain.md:33
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
#: ../../moderator_documentation/allow_listing/remove_domain.md:42
msgid "You're done! You've removed the domain from your pod's allow-list."
msgstr ""

Wyświetl plik

@ -7,19 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-content-delete_content/en_GB/>"
"\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-content-delete_content/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/content/delete_content.md:1
msgid "Delete content from your pod"
@ -38,23 +37,27 @@ msgid ""
"this feature to handle content that violates your pod's rules."
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:10
#: ../../moderator_documentation/content/delete_content.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:12
msgid "{guilabel}`Moderation` – provides access to the administration menu."
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:11
#: ../../moderator_documentation/content/delete_content.md:13
msgid "{guilabel}`Library` – provides access to the library menu."
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:14
#: ../../moderator_documentation/content/delete_content.md:16
msgid "There are two ways to delete content:"
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:20
#: ../../moderator_documentation/content/delete_content.md:22
msgid "Delete individual objects"
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:22
#: ../../moderator_documentation/content/delete_content.md:24
msgid "If you want to delete a specific object:"
msgstr ""
@ -62,106 +65,106 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../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
#: ../../moderator_documentation/content/delete_content.md:32
#: ../../moderator_documentation/content/delete_content.md:53
#: ../../moderator_documentation/content/delete_content.md:83
#: ../../moderator_documentation/content/delete_content.md:105
msgid "Log in to your pod."
msgstr "Log in to your pod."
#: ../../moderator_documentation/content/delete_content.md:27
#: ../../moderator_documentation/content/delete_content.md:73
#: ../../moderator_documentation/content/delete_content.md:33
#: ../../moderator_documentation/content/delete_content.md:84
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../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
#: ../../moderator_documentation/content/delete_content.md:34
#: ../../moderator_documentation/content/delete_content.md:55
#: ../../moderator_documentation/content/delete_content.md:85
#: ../../moderator_documentation/content/delete_content.md:107
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
#: ../../moderator_documentation/content/delete_content.md:35
#: ../../moderator_documentation/content/delete_content.md:56
#: ../../moderator_documentation/content/delete_content.md:86
#: ../../moderator_documentation/content/delete_content.md:108
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
#: ../../moderator_documentation/content/delete_content.md:36
#: ../../moderator_documentation/content/delete_content.md:57
#: ../../moderator_documentation/content/delete_content.md:87
#: ../../moderator_documentation/content/delete_content.md:109
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
#: ../../moderator_documentation/content/delete_content.md:37
#: ../../moderator_documentation/content/delete_content.md:58
#: ../../moderator_documentation/content/delete_content.md:88
#: ../../moderator_documentation/content/delete_content.md:110
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
#: ../../moderator_documentation/content/delete_content.md:38
#: ../../moderator_documentation/content/delete_content.md:59
#: ../../moderator_documentation/content/delete_content.md:89
#: ../../moderator_documentation/content/delete_content.md:111
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
#: ../../moderator_documentation/content/delete_content.md:39
#: ../../moderator_documentation/content/delete_content.md:60
#: ../../moderator_documentation/content/delete_content.md:90
#: ../../moderator_documentation/content/delete_content.md:112
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
#: ../../moderator_documentation/content/delete_content.md:40
#: ../../moderator_documentation/content/delete_content.md:61
#: ../../moderator_documentation/content/delete_content.md:91
#: ../../moderator_documentation/content/delete_content.md:113
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
#: ../../moderator_documentation/content/delete_content.md:41
#: ../../moderator_documentation/content/delete_content.md:62
#: ../../moderator_documentation/content/delete_content.md:92
#: ../../moderator_documentation/content/delete_content.md:114
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
#: ../../moderator_documentation/content/delete_content.md:42
#: ../../moderator_documentation/content/delete_content.md:63
#: ../../moderator_documentation/content/delete_content.md:93
#: ../../moderator_documentation/content/delete_content.md:115
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
#: ../../moderator_documentation/content/delete_content.md:43
#: ../../moderator_documentation/content/delete_content.md:64
#: ../../moderator_documentation/content/delete_content.md:94
#: ../../moderator_documentation/content/delete_content.md:116
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
#: ../../moderator_documentation/content/delete_content.md:44
#: ../../moderator_documentation/content/delete_content.md:65
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
#: ../../moderator_documentation/content/delete_content.md:45
#: ../../moderator_documentation/content/delete_content.md:66
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
#: ../../moderator_documentation/content/delete_content.md:46
#: ../../moderator_documentation/content/delete_content.md:67
msgid "Select {guilabel}`Delete`."
msgstr ""
@ -169,49 +172,50 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/content/delete_content.md:47
#: ../../moderator_documentation/content/delete_content.md:94
#: ../../moderator_documentation/content/delete_content.md:54
#: ../../moderator_documentation/content/delete_content.md:106
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
#: ../../moderator_documentation/content/delete_content.md:71
msgid "That's it! You've deleted the object."
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:66
#: ../../moderator_documentation/content/delete_content.md:73
msgid "Delete objects in bulk"
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:68
#: ../../moderator_documentation/content/delete_content.md:75
msgid "To delete several items at once:"
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:84
#: ../../moderator_documentation/content/delete_content.md:105
#: ../../moderator_documentation/content/delete_content.md:95
#: ../../moderator_documentation/content/delete_content.md:117
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
#: ../../moderator_documentation/content/delete_content.md:96
#: ../../moderator_documentation/content/delete_content.md:118
msgid "Select {guilabel}`Delete` in the {guilabel}`Actions` dropdown."
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:86
#: ../../moderator_documentation/content/delete_content.md:107
#: ../../moderator_documentation/content/delete_content.md:97
#: ../../moderator_documentation/content/delete_content.md:119
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
#: ../../moderator_documentation/content/delete_content.md:98
#: ../../moderator_documentation/content/delete_content.md:120
msgid "Select {guilabel}`Launch`."
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:112
#: ../../moderator_documentation/content/delete_content.md:124
msgid "You're done! You've deleted the selected objects from your pod."
msgstr ""

Wyświetl plik

@ -7,18 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-content-handle_edits/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-content-handle_edits/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/content/handle_edits.md:1
msgid "Handle edits"
@ -38,49 +38,53 @@ msgid ""
" and pod admins can accept or reject these edits."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:10
#: ../../moderator_documentation/content/handle_edits.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:12
msgid "{guilabel}`Moderation` – provides access to the administration menu."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:11
#: ../../moderator_documentation/content/handle_edits.md:13
msgid "{guilabel}`Library` – provides access to the library menu."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:14
#: ../../moderator_documentation/content/handle_edits.md:16
msgid "Each edit object contains the following information:"
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:16
#: ../../moderator_documentation/content/handle_edits.md:18
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
#: ../../moderator_documentation/content/handle_edits.md:19
msgid "A timestamp of when the user suggested the edit."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:18
#: ../../moderator_documentation/content/handle_edits.md:20
msgid "The status of the edit."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:19
#: ../../moderator_documentation/content/handle_edits.md:21
msgid "The {guilabel}`Field` that the user edited."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:20
#: ../../moderator_documentation/content/handle_edits.md:22
msgid "The {guilabel}`Old value` that the user edited."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:21
#: ../../moderator_documentation/content/handle_edits.md:23
msgid "The {guilabel}`New value` that the user entered."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:22
#: ../../moderator_documentation/content/handle_edits.md:24
msgid "The user who suggested the edit."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:24
#: ../../moderator_documentation/content/handle_edits.md:26
msgid "To review suggested edits:"
msgstr ""
@ -88,45 +92,45 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../moderator_documentation/content/handle_edits.md:28
#: ../../moderator_documentation/content/handle_edits.md:40
#: ../../moderator_documentation/content/handle_edits.md:34
#: ../../moderator_documentation/content/handle_edits.md:47
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../moderator_documentation/content/handle_edits.md:29
#: ../../moderator_documentation/content/handle_edits.md:35
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../moderator_documentation/content/handle_edits.md:30
#: ../../moderator_documentation/content/handle_edits.md:42
#: ../../moderator_documentation/content/handle_edits.md:36
#: ../../moderator_documentation/content/handle_edits.md:49
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
#: ../../moderator_documentation/content/handle_edits.md:37
#: ../../moderator_documentation/content/handle_edits.md:50
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
#: ../../moderator_documentation/content/handle_edits.md:38
#: ../../moderator_documentation/content/handle_edits.md:51
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
#: ../../moderator_documentation/content/handle_edits.md:39
#: ../../moderator_documentation/content/handle_edits.md:52
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
#: ../../moderator_documentation/content/handle_edits.md:40
#: ../../moderator_documentation/content/handle_edits.md:53
msgid ""
"{guilabel}`Delete` – delete the edit suggestion without taking further "
"action. The object remains in its current state."
@ -136,14 +140,15 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/content/handle_edits.md:41
#: ../../moderator_documentation/content/handle_edits.md:48
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
#: ../../moderator_documentation/content/handle_edits.md:57
msgid ""
"That's it! You've handled the edit request. You can use the filters on "
"this page to search for historical requests."
msgstr ""

Wyświetl plik

@ -7,19 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-content-library_visibility/"
"en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-content-library_visibility/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/content/library_visibility.md:1
msgid "Change the visibility of a library"
@ -38,15 +37,19 @@ msgid ""
" and protects your pod from legal issues."
msgstr ""
#: ../../moderator_documentation/content/library_visibility.md:10
#: ../../moderator_documentation/content/library_visibility.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/content/library_visibility.md:12
msgid "{guilabel}`Moderation` – provides access to the administration menu."
msgstr ""
#: ../../moderator_documentation/content/library_visibility.md:11
#: ../../moderator_documentation/content/library_visibility.md:13
msgid "{guilabel}`Library` – provides access to the library menu."
msgstr ""
#: ../../moderator_documentation/content/library_visibility.md:14
#: ../../moderator_documentation/content/library_visibility.md:16
msgid "To change the visibility of a library:"
msgstr ""
@ -54,61 +57,61 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../moderator_documentation/content/library_visibility.md:18
#: ../../moderator_documentation/content/library_visibility.md:32
#: ../../moderator_documentation/content/library_visibility.md:24
#: ../../moderator_documentation/content/library_visibility.md:39
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../moderator_documentation/content/library_visibility.md:19
#: ../../moderator_documentation/content/library_visibility.md:25
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../moderator_documentation/content/library_visibility.md:20
#: ../../moderator_documentation/content/library_visibility.md:34
#: ../../moderator_documentation/content/library_visibility.md:26
#: ../../moderator_documentation/content/library_visibility.md:41
msgid "Select {guilabel}`Library`. The {guilabel}`Edits` page opens."
msgstr ""
#: ../../moderator_documentation/content/library_visibility.md:21
#: ../../moderator_documentation/content/library_visibility.md:35
#: ../../moderator_documentation/content/library_visibility.md:27
#: ../../moderator_documentation/content/library_visibility.md:42
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
#: ../../moderator_documentation/content/library_visibility.md:28
#: ../../moderator_documentation/content/library_visibility.md:43
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
#: ../../moderator_documentation/content/library_visibility.md:29
#: ../../moderator_documentation/content/library_visibility.md:44
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
#: ../../moderator_documentation/content/library_visibility.md:30
#: ../../moderator_documentation/content/library_visibility.md:45
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
#: ../../moderator_documentation/content/library_visibility.md:31
#: ../../moderator_documentation/content/library_visibility.md:46
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
#: ../../moderator_documentation/content/library_visibility.md:32
#: ../../moderator_documentation/content/library_visibility.md:47
msgid "{guilabel}`Everyone` – makes the library visible to users across all pods."
msgstr ""
@ -116,14 +119,15 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/content/library_visibility.md:33
#: ../../moderator_documentation/content/library_visibility.md:40
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
#: ../../moderator_documentation/content/library_visibility.md:51
msgid ""
"That's it! You've updated the library's visibility. You should contact "
"the user informing them of the action."
msgstr ""

Wyświetl plik

@ -7,18 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-domains-add_domain/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-domains-add_domain/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/domains/add_domain.md:1
msgid "Add a domain to your pod's domain list"
@ -31,7 +31,11 @@ msgid ""
"[add moderation rules](add_rule.md) to it."
msgstr ""
#: ../../moderator_documentation/domains/add_domain.md:6
#: ../../moderator_documentation/domains/add_domain.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/domains/add_domain.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
@ -39,7 +43,7 @@ msgstr ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
#: ../../moderator_documentation/domains/add_domain.md:9
#: ../../moderator_documentation/domains/add_domain.md:11
msgid ""
"You can also add domains to this list at any time to create rules before "
"users interact with them. To do this:"
@ -49,41 +53,41 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../moderator_documentation/domains/add_domain.md:13
#: ../../moderator_documentation/domains/add_domain.md:24
#: ../../moderator_documentation/domains/add_domain.md:19
#: ../../moderator_documentation/domains/add_domain.md:31
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../moderator_documentation/domains/add_domain.md:14
#: ../../moderator_documentation/domains/add_domain.md:20
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../moderator_documentation/domains/add_domain.md:15
#: ../../moderator_documentation/domains/add_domain.md:26
#: ../../moderator_documentation/domains/add_domain.md:21
#: ../../moderator_documentation/domains/add_domain.md:33
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
#: ../../moderator_documentation/domains/add_domain.md:16
#: ../../moderator_documentation/domains/add_domain.md:27
#: ../../moderator_documentation/domains/add_domain.md:22
#: ../../moderator_documentation/domains/add_domain.md:34
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
#: ../../moderator_documentation/domains/add_domain.md:23
#: ../../moderator_documentation/domains/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/domains/add_domain.md:18
#: ../../moderator_documentation/domains/add_domain.md:29
#: ../../moderator_documentation/domains/add_domain.md:24
#: ../../moderator_documentation/domains/add_domain.md:36
msgid ""
"Select {guilabel}`Add` to add the domain. The domain moderation page "
"opens."
@ -93,7 +97,7 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/domains/add_domain.md:25
#: ../../moderator_documentation/domains/add_domain.md:32
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the page to open the "
"{guilabel}`Administration` menu."
@ -101,8 +105,9 @@ msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the page to open the "
"{guilabel}`Administration` menu."
#: ../../moderator_documentation/domains/add_domain.md:33
#: ../../moderator_documentation/domains/add_domain.md:40
msgid ""
"That's it! The domain is now in your domains list. You can now add "
"moderation rules to this domain."
msgstr ""

Wyświetl plik

@ -7,18 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-domains-add_rule/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-domains-add_rule/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/domains/add_rule.md:1
msgid "Add a moderation rule"
@ -38,7 +38,11 @@ msgid ""
"domain showing on your pod."
msgstr ""
#: ../../moderator_documentation/domains/add_rule.md:10
#: ../../moderator_documentation/domains/add_rule.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/domains/add_rule.md:12
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
@ -46,7 +50,7 @@ msgstr ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
#: ../../moderator_documentation/domains/add_rule.md:13
#: ../../moderator_documentation/domains/add_rule.md:15
msgid "To add a moderation rule to a domain:"
msgstr ""
@ -54,74 +58,74 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../moderator_documentation/domains/add_rule.md:17
#: ../../moderator_documentation/domains/add_rule.md:33
#: ../../moderator_documentation/domains/add_rule.md:23
#: ../../moderator_documentation/domains/add_rule.md:40
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../moderator_documentation/domains/add_rule.md:18
#: ../../moderator_documentation/domains/add_rule.md:24
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../moderator_documentation/domains/add_rule.md:19
#: ../../moderator_documentation/domains/add_rule.md:35
#: ../../moderator_documentation/domains/add_rule.md:25
#: ../../moderator_documentation/domains/add_rule.md:42
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
#: ../../moderator_documentation/domains/add_rule.md:20
#: ../../moderator_documentation/domains/add_rule.md:36
#: ../../moderator_documentation/domains/add_rule.md:26
#: ../../moderator_documentation/domains/add_rule.md:43
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
#: ../../moderator_documentation/domains/add_rule.md:27
#: ../../moderator_documentation/domains/add_rule.md:44
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
#: ../../moderator_documentation/domains/add_rule.md:28
#: ../../moderator_documentation/domains/add_rule.md:45
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
#: ../../moderator_documentation/domains/add_rule.md:29
#: ../../moderator_documentation/domains/add_rule.md:46
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
#: ../../moderator_documentation/domains/add_rule.md:30
#: ../../moderator_documentation/domains/add_rule.md:47
msgid "Choose your moderation rule:"
msgstr ""
#: ../../moderator_documentation/domains/add_rule.md:25
#: ../../moderator_documentation/domains/add_rule.md:41
#: ../../moderator_documentation/domains/add_rule.md:31
#: ../../moderator_documentation/domains/add_rule.md:48
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
#: ../../moderator_documentation/domains/add_rule.md:32
#: ../../moderator_documentation/domains/add_rule.md:49
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
#: ../../moderator_documentation/domains/add_rule.md:33
#: ../../moderator_documentation/domains/add_rule.md:50
msgid "Select {guilabel}`Create` to save your rule."
msgstr ""
@ -129,14 +133,15 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/domains/add_rule.md:34
#: ../../moderator_documentation/domains/add_rule.md:41
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
#: ../../moderator_documentation/domains/add_rule.md:54
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 ""

Wyświetl plik

@ -7,18 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-domains-delete_rule/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-domains-delete_rule/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/domains/delete_rule.md:1
msgid "Delete a moderation rule"
@ -30,7 +30,11 @@ msgid ""
"This allows the other server to interact with your pod normally."
msgstr ""
#: ../../moderator_documentation/domains/delete_rule.md:6
#: ../../moderator_documentation/domains/delete_rule.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/domains/delete_rule.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
@ -38,7 +42,7 @@ msgstr ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
#: ../../moderator_documentation/domains/delete_rule.md:9
#: ../../moderator_documentation/domains/delete_rule.md:11
msgid "To delete an existing moderation rule:"
msgstr ""
@ -46,55 +50,55 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../moderator_documentation/domains/delete_rule.md:13
#: ../../moderator_documentation/domains/delete_rule.md:26
#: ../../moderator_documentation/domains/delete_rule.md:19
#: ../../moderator_documentation/domains/delete_rule.md:33
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../moderator_documentation/domains/delete_rule.md:14
#: ../../moderator_documentation/domains/delete_rule.md:20
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../moderator_documentation/domains/delete_rule.md:15
#: ../../moderator_documentation/domains/delete_rule.md:28
#: ../../moderator_documentation/domains/delete_rule.md:21
#: ../../moderator_documentation/domains/delete_rule.md:35
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
#: ../../moderator_documentation/domains/delete_rule.md:16
#: ../../moderator_documentation/domains/delete_rule.md:29
#: ../../moderator_documentation/domains/delete_rule.md:22
#: ../../moderator_documentation/domains/delete_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/delete_rule.md:17
#: ../../moderator_documentation/domains/delete_rule.md:30
#: ../../moderator_documentation/domains/delete_rule.md:23
#: ../../moderator_documentation/domains/delete_rule.md:37
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
#: ../../moderator_documentation/domains/delete_rule.md:24
#: ../../moderator_documentation/domains/delete_rule.md:38
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
#: ../../moderator_documentation/domains/delete_rule.md:25
#: ../../moderator_documentation/domains/delete_rule.md:39
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
#: ../../moderator_documentation/domains/delete_rule.md:26
#: ../../moderator_documentation/domains/delete_rule.md:40
msgid "Select {guilabel}`Delete moderation rule`."
msgstr ""
@ -102,14 +106,15 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/domains/delete_rule.md:27
#: ../../moderator_documentation/domains/delete_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/delete_rule.md:37
#: ../../moderator_documentation/domains/delete_rule.md:44
msgid ""
"That's it! You've deleted your moderation rule. Content from the domain "
"will no longer get blocked."
msgstr ""

Wyświetl plik

@ -7,18 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-domains-edit_rule/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-domains-edit_rule/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/domains/edit_rule.md:1
msgid "Edit a moderation rule"
@ -35,7 +35,11 @@ msgstr ""
msgid "You can change a moderation rule on a domain at any time."
msgstr ""
#: ../../moderator_documentation/domains/edit_rule.md:10
#: ../../moderator_documentation/domains/edit_rule.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/domains/edit_rule.md:12
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
@ -43,7 +47,7 @@ msgstr ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
#: ../../moderator_documentation/domains/edit_rule.md:13
#: ../../moderator_documentation/domains/edit_rule.md:15
msgid "To update an existing moderation rule:"
msgstr ""
@ -51,84 +55,84 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../moderator_documentation/domains/edit_rule.md:17
#: ../../moderator_documentation/domains/edit_rule.md:35
#: ../../moderator_documentation/domains/edit_rule.md:23
#: ../../moderator_documentation/domains/edit_rule.md:42
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../moderator_documentation/domains/edit_rule.md:18
#: ../../moderator_documentation/domains/edit_rule.md:24
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../moderator_documentation/domains/edit_rule.md:19
#: ../../moderator_documentation/domains/edit_rule.md:37
#: ../../moderator_documentation/domains/edit_rule.md:25
#: ../../moderator_documentation/domains/edit_rule.md:44
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
#: ../../moderator_documentation/domains/edit_rule.md:20
#: ../../moderator_documentation/domains/edit_rule.md:38
#: ../../moderator_documentation/domains/edit_rule.md:26
#: ../../moderator_documentation/domains/edit_rule.md:45
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
#: ../../moderator_documentation/domains/edit_rule.md:27
#: ../../moderator_documentation/domains/edit_rule.md:46
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
#: ../../moderator_documentation/domains/edit_rule.md:28
#: ../../moderator_documentation/domains/edit_rule.md:47
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
#: ../../moderator_documentation/domains/edit_rule.md:29
#: ../../moderator_documentation/domains/edit_rule.md:48
msgid "__Optional__ – Edit the following settings:"
msgstr ""
#: ../../moderator_documentation/domains/edit_rule.md:24
#: ../../moderator_documentation/domains/edit_rule.md:42
#: ../../moderator_documentation/domains/edit_rule.md:30
#: ../../moderator_documentation/domains/edit_rule.md:49
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
#: ../../moderator_documentation/domains/edit_rule.md:31
#: ../../moderator_documentation/domains/edit_rule.md:50
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
#: ../../moderator_documentation/domains/edit_rule.md:32
#: ../../moderator_documentation/domains/edit_rule.md:51
msgid "__Optional__ – Update your moderation rule:"
msgstr ""
#: ../../moderator_documentation/domains/edit_rule.md:27
#: ../../moderator_documentation/domains/edit_rule.md:45
#: ../../moderator_documentation/domains/edit_rule.md:33
#: ../../moderator_documentation/domains/edit_rule.md:52
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
#: ../../moderator_documentation/domains/edit_rule.md:34
#: ../../moderator_documentation/domains/edit_rule.md:53
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
#: ../../moderator_documentation/domains/edit_rule.md:35
#: ../../moderator_documentation/domains/edit_rule.md:54
msgid "Select {guilabel}`Update` to save your rule."
msgstr ""
@ -136,12 +140,13 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/domains/edit_rule.md:36
#: ../../moderator_documentation/domains/edit_rule.md:43
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
#: ../../moderator_documentation/domains/edit_rule.md:58
msgid "You're done! The changes to the rule take effect as soon as you update it."
msgstr ""

Wyświetl plik

@ -7,18 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-domains-purge_domain/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-domains-purge_domain/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/domains/purge_domain.md:1
msgid "Purge domain data"
@ -38,7 +38,11 @@ msgid ""
"purge the content associated with it."
msgstr ""
#: ../../moderator_documentation/domains/purge_domain.md:10
#: ../../moderator_documentation/domains/purge_domain.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/domains/purge_domain.md:12
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
@ -46,7 +50,7 @@ msgstr ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
#: ../../moderator_documentation/domains/purge_domain.md:13
#: ../../moderator_documentation/domains/purge_domain.md:15
msgid "To purge content from a domain:"
msgstr ""
@ -54,53 +58,53 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../moderator_documentation/domains/purge_domain.md:17
#: ../../moderator_documentation/domains/purge_domain.md:30
#: ../../moderator_documentation/domains/purge_domain.md:23
#: ../../moderator_documentation/domains/purge_domain.md:37
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../moderator_documentation/domains/purge_domain.md:18
#: ../../moderator_documentation/domains/purge_domain.md:24
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../moderator_documentation/domains/purge_domain.md:19
#: ../../moderator_documentation/domains/purge_domain.md:32
#: ../../moderator_documentation/domains/purge_domain.md:25
#: ../../moderator_documentation/domains/purge_domain.md:39
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
#: ../../moderator_documentation/domains/purge_domain.md:20
#: ../../moderator_documentation/domains/purge_domain.md:33
#: ../../moderator_documentation/domains/purge_domain.md:26
#: ../../moderator_documentation/domains/purge_domain.md:40
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
#: ../../moderator_documentation/domains/purge_domain.md:27
#: ../../moderator_documentation/domains/purge_domain.md:41
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
#: ../../moderator_documentation/domains/purge_domain.md:28
#: ../../moderator_documentation/domains/purge_domain.md:42
msgid "Select {guilabel}`Purge` in the {guilabel}`Actions` dropdown."
msgstr ""
#: ../../moderator_documentation/domains/purge_domain.md:23
#: ../../moderator_documentation/domains/purge_domain.md:36
#: ../../moderator_documentation/domains/purge_domain.md:29
#: ../../moderator_documentation/domains/purge_domain.md:43
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
#: ../../moderator_documentation/domains/purge_domain.md:30
#: ../../moderator_documentation/domains/purge_domain.md:44
msgid "Select {guilabel}`Launch`."
msgstr ""
@ -108,14 +112,15 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/domains/purge_domain.md:31
#: ../../moderator_documentation/domains/purge_domain.md:38
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
#: ../../moderator_documentation/domains/purge_domain.md:48
msgid ""
"You're done! Your pod clears all the content associated with the selected"
" domains."
msgstr ""

Wyświetl plik

@ -7,19 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-external_users-add_rule/en_GB/"
">\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-external_users-add_rule/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/external_users/add_rule.md:1
msgid "Add a moderation rule"
@ -39,7 +38,11 @@ msgid ""
"showing on your pod."
msgstr ""
#: ../../moderator_documentation/external_users/add_rule.md:10
#: ../../moderator_documentation/external_users/add_rule.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/external_users/add_rule.md:12
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
@ -47,7 +50,7 @@ msgstr ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
#: ../../moderator_documentation/external_users/add_rule.md:13
#: ../../moderator_documentation/external_users/add_rule.md:15
msgid "To add a moderation rule to a user:"
msgstr ""
@ -55,74 +58,74 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../moderator_documentation/external_users/add_rule.md:17
#: ../../moderator_documentation/external_users/add_rule.md:33
#: ../../moderator_documentation/external_users/add_rule.md:23
#: ../../moderator_documentation/external_users/add_rule.md:40
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../moderator_documentation/external_users/add_rule.md:18
#: ../../moderator_documentation/external_users/add_rule.md:24
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../moderator_documentation/external_users/add_rule.md:19
#: ../../moderator_documentation/external_users/add_rule.md:35
#: ../../moderator_documentation/external_users/add_rule.md:25
#: ../../moderator_documentation/external_users/add_rule.md:42
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
#: ../../moderator_documentation/external_users/add_rule.md:20
#: ../../moderator_documentation/external_users/add_rule.md:36
#: ../../moderator_documentation/external_users/add_rule.md:26
#: ../../moderator_documentation/external_users/add_rule.md:43
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
#: ../../moderator_documentation/external_users/add_rule.md:27
#: ../../moderator_documentation/external_users/add_rule.md:44
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
#: ../../moderator_documentation/external_users/add_rule.md:28
#: ../../moderator_documentation/external_users/add_rule.md:45
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
#: ../../moderator_documentation/external_users/add_rule.md:29
#: ../../moderator_documentation/external_users/add_rule.md:46
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
#: ../../moderator_documentation/external_users/add_rule.md:30
#: ../../moderator_documentation/external_users/add_rule.md:47
msgid "Choose your moderation rule:"
msgstr ""
#: ../../moderator_documentation/external_users/add_rule.md:25
#: ../../moderator_documentation/external_users/add_rule.md:41
#: ../../moderator_documentation/external_users/add_rule.md:31
#: ../../moderator_documentation/external_users/add_rule.md:48
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
#: ../../moderator_documentation/external_users/add_rule.md:32
#: ../../moderator_documentation/external_users/add_rule.md:49
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
#: ../../moderator_documentation/external_users/add_rule.md:33
#: ../../moderator_documentation/external_users/add_rule.md:50
msgid "Select {guilabel}`Create` to save your rule."
msgstr ""
@ -130,14 +133,15 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/external_users/add_rule.md:34
#: ../../moderator_documentation/external_users/add_rule.md:41
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
#: ../../moderator_documentation/external_users/add_rule.md:54
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 ""

Wyświetl plik

@ -7,19 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-external_users-delete_rule/"
"en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-external_users-delete_rule/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/external_users/delete_rule.md:1
msgid "Delete a moderation rule"
@ -31,7 +30,11 @@ msgid ""
"This allows the user to interact with your pod normally."
msgstr ""
#: ../../moderator_documentation/external_users/delete_rule.md:6
#: ../../moderator_documentation/external_users/delete_rule.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/external_users/delete_rule.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
@ -39,7 +42,7 @@ msgstr ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
#: ../../moderator_documentation/external_users/delete_rule.md:9
#: ../../moderator_documentation/external_users/delete_rule.md:11
msgid "To delete an existing moderation rule:"
msgstr ""
@ -47,54 +50,54 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../moderator_documentation/external_users/delete_rule.md:13
#: ../../moderator_documentation/external_users/delete_rule.md:26
#: ../../moderator_documentation/external_users/delete_rule.md:19
#: ../../moderator_documentation/external_users/delete_rule.md:33
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../moderator_documentation/external_users/delete_rule.md:14
#: ../../moderator_documentation/external_users/delete_rule.md:20
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../moderator_documentation/external_users/delete_rule.md:15
#: ../../moderator_documentation/external_users/delete_rule.md:28
#: ../../moderator_documentation/external_users/delete_rule.md:21
#: ../../moderator_documentation/external_users/delete_rule.md:35
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
#: ../../moderator_documentation/external_users/delete_rule.md:16
#: ../../moderator_documentation/external_users/delete_rule.md:29
#: ../../moderator_documentation/external_users/delete_rule.md:22
#: ../../moderator_documentation/external_users/delete_rule.md:36
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
#: ../../moderator_documentation/external_users/delete_rule.md:23
#: ../../moderator_documentation/external_users/delete_rule.md:37
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
#: ../../moderator_documentation/external_users/delete_rule.md:24
#: ../../moderator_documentation/external_users/delete_rule.md:38
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
#: ../../moderator_documentation/external_users/delete_rule.md:25
#: ../../moderator_documentation/external_users/delete_rule.md:39
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
#: ../../moderator_documentation/external_users/delete_rule.md:26
#: ../../moderator_documentation/external_users/delete_rule.md:40
msgid "Select {guilabel}`Delete moderation rule`."
msgstr ""
@ -102,14 +105,15 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/external_users/delete_rule.md:27
#: ../../moderator_documentation/external_users/delete_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/delete_rule.md:37
#: ../../moderator_documentation/external_users/delete_rule.md:44
msgid ""
"That's it! You've deleted your moderation rule. Content from the user "
"will no longer get blocked."
msgstr ""

Wyświetl plik

@ -7,19 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-external_users-edit_rule/"
"en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-external_users-edit_rule/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/external_users/edit_rule.md:1
msgid "Edit a moderation rule"
@ -36,7 +35,11 @@ msgstr ""
msgid "You can change a moderation rule on a user at any time."
msgstr ""
#: ../../moderator_documentation/external_users/edit_rule.md:10
#: ../../moderator_documentation/external_users/edit_rule.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/external_users/edit_rule.md:12
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
@ -44,7 +47,7 @@ msgstr ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
#: ../../moderator_documentation/external_users/edit_rule.md:13
#: ../../moderator_documentation/external_users/edit_rule.md:15
msgid "To update an existing moderation rule:"
msgstr ""
@ -52,83 +55,83 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../moderator_documentation/external_users/edit_rule.md:17
#: ../../moderator_documentation/external_users/edit_rule.md:35
#: ../../moderator_documentation/external_users/edit_rule.md:23
#: ../../moderator_documentation/external_users/edit_rule.md:42
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../moderator_documentation/external_users/edit_rule.md:18
#: ../../moderator_documentation/external_users/edit_rule.md:24
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../moderator_documentation/external_users/edit_rule.md:19
#: ../../moderator_documentation/external_users/edit_rule.md:37
#: ../../moderator_documentation/external_users/edit_rule.md:25
#: ../../moderator_documentation/external_users/edit_rule.md:44
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
#: ../../moderator_documentation/external_users/edit_rule.md:20
#: ../../moderator_documentation/external_users/edit_rule.md:38
#: ../../moderator_documentation/external_users/edit_rule.md:26
#: ../../moderator_documentation/external_users/edit_rule.md:45
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
#: ../../moderator_documentation/external_users/edit_rule.md:27
#: ../../moderator_documentation/external_users/edit_rule.md:46
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
#: ../../moderator_documentation/external_users/edit_rule.md:28
#: ../../moderator_documentation/external_users/edit_rule.md:47
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
#: ../../moderator_documentation/external_users/edit_rule.md:29
#: ../../moderator_documentation/external_users/edit_rule.md:48
msgid "__Optional__ – Edit the following settings:"
msgstr ""
#: ../../moderator_documentation/external_users/edit_rule.md:24
#: ../../moderator_documentation/external_users/edit_rule.md:42
#: ../../moderator_documentation/external_users/edit_rule.md:30
#: ../../moderator_documentation/external_users/edit_rule.md:49
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
#: ../../moderator_documentation/external_users/edit_rule.md:31
#: ../../moderator_documentation/external_users/edit_rule.md:50
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
#: ../../moderator_documentation/external_users/edit_rule.md:32
#: ../../moderator_documentation/external_users/edit_rule.md:51
msgid "__Optional__ – Update your moderation rule:"
msgstr ""
#: ../../moderator_documentation/external_users/edit_rule.md:27
#: ../../moderator_documentation/external_users/edit_rule.md:45
#: ../../moderator_documentation/external_users/edit_rule.md:33
#: ../../moderator_documentation/external_users/edit_rule.md:52
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
#: ../../moderator_documentation/external_users/edit_rule.md:34
#: ../../moderator_documentation/external_users/edit_rule.md:53
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
#: ../../moderator_documentation/external_users/edit_rule.md:35
#: ../../moderator_documentation/external_users/edit_rule.md:54
msgid "Select {guilabel}`Update` to save your rule."
msgstr ""
@ -136,12 +139,13 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/external_users/edit_rule.md:36
#: ../../moderator_documentation/external_users/edit_rule.md:43
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
#: ../../moderator_documentation/external_users/edit_rule.md:58
msgid "You're done! The changes to the rule take effect as soon as you update it."
msgstr ""

Wyświetl plik

@ -7,19 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-external_users-purge_users/"
"en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-external_users-purge_users/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/external_users/purge_users.md:1
msgid "Purge user data"
@ -39,7 +38,11 @@ msgid ""
"purge the content associated with them."
msgstr ""
#: ../../moderator_documentation/external_users/purge_users.md:10
#: ../../moderator_documentation/external_users/purge_users.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/external_users/purge_users.md:12
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
@ -47,7 +50,7 @@ msgstr ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
#: ../../moderator_documentation/external_users/purge_users.md:13
#: ../../moderator_documentation/external_users/purge_users.md:15
msgid "To purge a user's content:"
msgstr ""
@ -55,53 +58,53 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../moderator_documentation/external_users/purge_users.md:17
#: ../../moderator_documentation/external_users/purge_users.md:30
#: ../../moderator_documentation/external_users/purge_users.md:23
#: ../../moderator_documentation/external_users/purge_users.md:37
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../moderator_documentation/external_users/purge_users.md:18
#: ../../moderator_documentation/external_users/purge_users.md:24
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../moderator_documentation/external_users/purge_users.md:19
#: ../../moderator_documentation/external_users/purge_users.md:32
#: ../../moderator_documentation/external_users/purge_users.md:25
#: ../../moderator_documentation/external_users/purge_users.md:39
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
#: ../../moderator_documentation/external_users/purge_users.md:20
#: ../../moderator_documentation/external_users/purge_users.md:33
#: ../../moderator_documentation/external_users/purge_users.md:26
#: ../../moderator_documentation/external_users/purge_users.md:40
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
#: ../../moderator_documentation/external_users/purge_users.md:27
#: ../../moderator_documentation/external_users/purge_users.md:41
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
#: ../../moderator_documentation/external_users/purge_users.md:28
#: ../../moderator_documentation/external_users/purge_users.md:42
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
#: ../../moderator_documentation/external_users/purge_users.md:29
#: ../../moderator_documentation/external_users/purge_users.md:43
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
#: ../../moderator_documentation/external_users/purge_users.md:30
#: ../../moderator_documentation/external_users/purge_users.md:44
msgid "Select {guilabel}`Launch`."
msgstr ""
@ -109,14 +112,15 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/external_users/purge_users.md:31
#: ../../moderator_documentation/external_users/purge_users.md:38
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
#: ../../moderator_documentation/external_users/purge_users.md:48
msgid ""
"You're done! Your pod clears all the content associated with the selected"
" users."
msgstr ""

Wyświetl plik

@ -1,164 +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.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
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"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 21:19+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/"
"moderator_documentation-internal_users-handle_registration/en_GB/>\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-internal_users-handle_registration/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/internal_users/handle_registration.md:1
msgid "Handle user registrations"
msgstr "Handle user registrations"
#: ../../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."
msgid ""
"{term}`Pod` admins can enable manual sign-up validation. This setting "
"requires moderators to approve or refuse account creations."
msgstr ""
"{term}`Pod` admins can enable manual sign-up validation. This setting "
"requires moderators to approve or refuse account creations."
#: ../../moderator_documentation/internal_users/handle_registration.md:6
msgid "{guilabel}`Moderation` – provides access to the administration and moderation menus."
#: ../../moderator_documentation/internal_users/handle_registration.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
msgstr ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
#: ../../moderator_documentation/internal_users/handle_registration.md:9
msgid "Requests appear in the {guilabel}`User Requests` list. Each request contains the following information:"
msgstr ""
"Requests appear in the {guilabel}`User Requests` list. Each request contains "
"the following information:"
#: ../../moderator_documentation/internal_users/handle_registration.md:11
msgid ""
"Requests appear in the {guilabel}`User Requests` list. Each request "
"contains the following information:"
msgstr ""
"Requests appear in the {guilabel}`User Requests` list. Each request "
"contains the following information:"
#: ../../moderator_documentation/internal_users/handle_registration.md:13
msgid "The user the request was {guilabel}`Submitted by`"
msgstr "The user the request was {guilabel}`Submitted by`"
#: ../../moderator_documentation/internal_users/handle_registration.md:12
#: ../../moderator_documentation/internal_users/handle_registration.md:14
msgid "The {guilabel}`Creation date` of the request."
msgstr "The {guilabel}`Creation date` of the request."
#: ../../moderator_documentation/internal_users/handle_registration.md:13
#: ../../moderator_documentation/internal_users/handle_registration.md:15
msgid "__Optional__ – any responses the user left to fields in the sign-up form."
msgstr ""
"__Optional__ – any responses the user left to fields in the sign-up form."
msgstr "__Optional__ – any responses the user left to fields in the sign-up form."
#: ../../moderator_documentation/internal_users/handle_registration.md:14
#: ../../moderator_documentation/internal_users/handle_registration.md:16
msgid "The {guilabel}`Status` of the request."
msgstr "The {guilabel}`Status` of the request."
#: ../../moderator_documentation/internal_users/handle_registration.md:15
#: ../../moderator_documentation/internal_users/handle_registration.md:17
msgid "Which moderator the request is {guilabel}`Assigned to`."
msgstr "Which moderator the request is {guilabel}`Assigned to`."
#: ../../moderator_documentation/internal_users/handle_registration.md:16
#: ../../moderator_documentation/internal_users/handle_registration.md:18
msgid "The {guilabel}`Resolution date` of the request."
msgstr "The {guilabel}`Resolution date` of the request."
#: ../../moderator_documentation/internal_users/handle_registration.md:17
#: ../../moderator_documentation/internal_users/handle_registration.md:19
msgid "Any {guilabel}`Internal notes` left by the moderators."
msgstr "Any {guilabel}`Internal notes` left by the moderators."
#: ../../moderator_documentation/internal_users/handle_registration.md:23
#: ../../moderator_documentation/internal_users/handle_registration.md:25
msgid "Approve a sign-up request"
msgstr "Approve a sign-up request"
#: ../../moderator_documentation/internal_users/handle_registration.md:25
#: ../../moderator_documentation/internal_users/handle_registration.md:27
msgid "To approve a sign-up request:"
msgstr "To approve a sign-up request:"
#: ../../moderator_documentation/internal_users/handle_registration.md:0
#: ../../moderator_documentation/internal_users/handle_registration.md:0
#: ../../moderator_documentation/internal_users/handle_registration.md
msgid "Desktop"
msgstr "Desktop"
#: ../../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:35
#: ../../moderator_documentation/internal_users/handle_registration.md:47
#: ../../moderator_documentation/internal_users/handle_registration.md:68
#: ../../moderator_documentation/internal_users/handle_registration.md:80
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../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."
#: ../../moderator_documentation/internal_users/handle_registration.md:36
#: ../../moderator_documentation/internal_users/handle_registration.md:69
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../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:37
#: ../../moderator_documentation/internal_users/handle_registration.md:49
#: ../../moderator_documentation/internal_users/handle_registration.md:70
#: ../../moderator_documentation/internal_users/handle_registration.md:82
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
#: ../../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:38
#: ../../moderator_documentation/internal_users/handle_registration.md:50
#: ../../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."
#: ../../moderator_documentation/internal_users/handle_registration.md:83
msgid ""
"Select {guilabel}`User Requests` at the top of the screen. A list of "
"pending requests appears."
msgstr ""
"Select {guilabel}`User Requests` at the top of the screen. A list of pending "
"requests appears."
"Select {guilabel}`User Requests` at the top of the screen. A list of "
"pending requests appears."
#: ../../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:39
#: ../../moderator_documentation/internal_users/handle_registration.md:51
#: ../../moderator_documentation/internal_users/handle_registration.md:72
#: ../../moderator_documentation/internal_users/handle_registration.md:84
msgid "Read through the details of the request."
msgstr "Read through the details of the request."
#: ../../moderator_documentation/internal_users/handle_registration.md:34
#: ../../moderator_documentation/internal_users/handle_registration.md:45
#: ../../moderator_documentation/internal_users/handle_registration.md:40
#: ../../moderator_documentation/internal_users/handle_registration.md:52
msgid "Select {guilabel}`Approve` in the {guilabel}`Actions` section."
msgstr "Select {guilabel}`Approve` in the {guilabel}`Actions` section."
#: ../../moderator_documentation/internal_users/handle_registration.md:0
#: ../../moderator_documentation/internal_users/handle_registration.md:0
#: ../../moderator_documentation/internal_users/handle_registration.md
msgid "Mobile"
msgstr "Mobile"
#: ../../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."
#: ../../moderator_documentation/internal_users/handle_registration.md:48
#: ../../moderator_documentation/internal_users/handle_registration.md:81
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the screen to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the screen to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the screen to open "
"the {guilabel}`Administration` menu."
#: ../../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."
#: ../../moderator_documentation/internal_users/handle_registration.md:56
msgid ""
"That's it! You've approved the user's sign-up request. The user can now "
"log in."
msgstr ""
"That's it! You've approved the user's sign-up request. The user can now log "
"in."
"That's it! You've approved the user's sign-up request. The user can now "
"log in."
#: ../../moderator_documentation/internal_users/handle_registration.md:51
#: ../../moderator_documentation/internal_users/handle_registration.md:58
msgid "Refuse a sign-up request"
msgstr "Refuse a sign-up request"
#: ../../moderator_documentation/internal_users/handle_registration.md:53
#: ../../moderator_documentation/internal_users/handle_registration.md:60
msgid "To refuse a sign-up request:"
msgstr "To refuse a sign-up request:"
#: ../../moderator_documentation/internal_users/handle_registration.md:62
#: ../../moderator_documentation/internal_users/handle_registration.md:73
#: ../../moderator_documentation/internal_users/handle_registration.md:85
msgid "Select {guilabel}`Refuse` in the {guilabel}`Actions` section."
msgstr "Select {guilabel}`Refuse` in the {guilabel}`Actions` section."
#: ../../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."
#: ../../moderator_documentation/internal_users/handle_registration.md:89
msgid ""
"That's it! You've refused the user's sign-up request. The user can't log "
"in to your pod."
msgstr ""
"That's it! You've refused the user's sign-up request. The user can't log in "
"to your pod."
"That's it! You've refused the user's sign-up request. The user can't log "
"in to your pod."

Wyświetl plik

@ -7,19 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-reports-handle_content/en_GB/>"
"\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-reports-handle_content/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/reports/handle_content.md:1
msgid "Handle reported content"
@ -38,7 +37,11 @@ msgid ""
"moderation page to edit objects."
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:10
#: ../../moderator_documentation/reports/handle_content.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:12
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
@ -46,15 +49,15 @@ msgstr ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
#: ../../moderator_documentation/reports/handle_content.md:11
#: ../../moderator_documentation/reports/handle_content.md:13
msgid "{guilabel}`Library` – enables the moderator to delete objects."
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:18
#: ../../moderator_documentation/reports/handle_content.md:20
msgid "Handle reports from the Reports page"
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:20
#: ../../moderator_documentation/reports/handle_content.md:22
msgid "To handle a content report from the {guilabel}`Reports` page:"
msgstr ""
@ -62,48 +65,48 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../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
#: ../../moderator_documentation/reports/handle_content.md:30
#: ../../moderator_documentation/reports/handle_content.md:43
#: ../../moderator_documentation/reports/handle_content.md:65
#: ../../moderator_documentation/reports/handle_content.md:82
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../moderator_documentation/reports/handle_content.md:25
#: ../../moderator_documentation/reports/handle_content.md:55
#: ../../moderator_documentation/reports/handle_content.md:31
#: ../../moderator_documentation/reports/handle_content.md:66
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../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
#: ../../moderator_documentation/reports/handle_content.md:32
#: ../../moderator_documentation/reports/handle_content.md:45
#: ../../moderator_documentation/reports/handle_content.md:67
#: ../../moderator_documentation/reports/handle_content.md:84
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
#: ../../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
#: ../../moderator_documentation/reports/handle_content.md:33
#: ../../moderator_documentation/reports/handle_content.md:46
#: ../../moderator_documentation/reports/handle_content.md:68
#: ../../moderator_documentation/reports/handle_content.md:85
msgid "[Search for the report](search_reports.md)."
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:28
#: ../../moderator_documentation/reports/handle_content.md:40
#: ../../moderator_documentation/reports/handle_content.md:34
#: ../../moderator_documentation/reports/handle_content.md:47
msgid "Select an action from the {guilabel}`Actions` section:"
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:29
#: ../../moderator_documentation/reports/handle_content.md:41
#: ../../moderator_documentation/reports/handle_content.md:35
#: ../../moderator_documentation/reports/handle_content.md:48
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
#: ../../moderator_documentation/reports/handle_content.md:36
#: ../../moderator_documentation/reports/handle_content.md:49
msgid ""
"{guilabel}`Delete reported object` – delete the object associated with "
"the report. If you delete an artist or album, this deletes all files "
@ -114,64 +117,65 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/reports/handle_content.md:37
#: ../../moderator_documentation/reports/handle_content.md:71
#: ../../moderator_documentation/reports/handle_content.md:44
#: ../../moderator_documentation/reports/handle_content.md:83
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
#: ../../moderator_documentation/reports/handle_content.md:53
#: ../../moderator_documentation/reports/handle_content.md:96
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
#: ../../moderator_documentation/reports/handle_content.md:55
msgid "Edit content in the moderation page"
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:50
#: ../../moderator_documentation/reports/handle_content.md:57
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
#: ../../moderator_documentation/reports/handle_content.md:69
#: ../../moderator_documentation/reports/handle_content.md:86
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
#: ../../moderator_documentation/reports/handle_content.md:70
#: ../../moderator_documentation/reports/handle_content.md:87
msgid "Select {guilabel}`Edit`. The {guilabel}`Edit` page opens."
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:60
#: ../../moderator_documentation/reports/handle_content.md:76
#: ../../moderator_documentation/reports/handle_content.md:71
#: ../../moderator_documentation/reports/handle_content.md:88
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
#: ../../moderator_documentation/reports/handle_content.md:72
#: ../../moderator_documentation/reports/handle_content.md:89
msgid "Select {guilabel}`Submit and apply edit`."
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:62
#: ../../moderator_documentation/reports/handle_content.md:78
#: ../../moderator_documentation/reports/handle_content.md:73
#: ../../moderator_documentation/reports/handle_content.md:90
msgid "Return to the {guilabel}`Reports` page."
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:63
#: ../../moderator_documentation/reports/handle_content.md:79
#: ../../moderator_documentation/reports/handle_content.md:74
#: ../../moderator_documentation/reports/handle_content.md:91
msgid "Search for the report."
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:64
#: ../../moderator_documentation/reports/handle_content.md:80
#: ../../moderator_documentation/reports/handle_content.md:75
#: ../../moderator_documentation/reports/handle_content.md:92
msgid "Select {guilabel}`Resolve` in the {guilabel}`Actions` section."
msgstr ""

Wyświetl plik

@ -7,18 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-reports-handle_users/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-reports-handle_users/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/reports/handle_users.md:1
msgid "Handle reported users"
@ -31,7 +31,11 @@ msgid ""
"appropriate steps to handle the report."
msgstr ""
#: ../../moderator_documentation/reports/handle_users.md:6
#: ../../moderator_documentation/reports/handle_users.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/reports/handle_users.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
@ -39,7 +43,7 @@ msgstr ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
#: ../../moderator_documentation/reports/handle_users.md:9
#: ../../moderator_documentation/reports/handle_users.md:11
msgid "To open a user's moderation page:"
msgstr ""
@ -47,26 +51,26 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../moderator_documentation/reports/handle_users.md:13
#: ../../moderator_documentation/reports/handle_users.md:22
#: ../../moderator_documentation/reports/handle_users.md:19
#: ../../moderator_documentation/reports/handle_users.md:29
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../moderator_documentation/reports/handle_users.md:14
#: ../../moderator_documentation/reports/handle_users.md:20
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../moderator_documentation/reports/handle_users.md:15
#: ../../moderator_documentation/reports/handle_users.md:24
#: ../../moderator_documentation/reports/handle_users.md:21
#: ../../moderator_documentation/reports/handle_users.md:31
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
#: ../../moderator_documentation/reports/handle_users.md:16
#: ../../moderator_documentation/reports/handle_users.md:25
#: ../../moderator_documentation/reports/handle_users.md:22
#: ../../moderator_documentation/reports/handle_users.md:32
msgid ""
"[Search for the report](search_reports.md) and select {guilabel}`Open in "
"moderation interface` under {guilabel}`Reported object`. The user's "
@ -77,7 +81,7 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/reports/handle_users.md:23
#: ../../moderator_documentation/reports/handle_users.md:30
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the page to open the "
"{guilabel}`Administration` menu."
@ -85,32 +89,33 @@ msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the page to open the "
"{guilabel}`Administration` menu."
#: ../../moderator_documentation/reports/handle_users.md:29
#: ../../moderator_documentation/reports/handle_users.md:36
msgid "You can change the following settings in the moderation interface:"
msgstr ""
#: ../../moderator_documentation/reports/handle_users.md:31
#: ../../moderator_documentation/reports/handle_users.md:38
msgid ""
"{guilabel}`Login status` – disable this switch to prevent the user being "
"able to log in."
msgstr ""
#: ../../moderator_documentation/reports/handle_users.md:32
#: ../../moderator_documentation/reports/handle_users.md:39
msgid ""
"{guilabel}`Permissions` – add or remove permissions associated with the "
"user."
msgstr ""
#: ../../moderator_documentation/reports/handle_users.md:33
#: ../../moderator_documentation/reports/handle_users.md:40
msgid ""
"{guilabel}`Upload quota` – change the amount of data (in megabytes) that "
"the user can upload."
msgstr ""
#: ../../moderator_documentation/reports/handle_users.md:35
#: ../../moderator_documentation/reports/handle_users.md:42
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 ""

Wyświetl plik

@ -7,19 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-reports-internal_notes/en_GB/>"
"\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-reports-internal_notes/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/reports/internal_notes.md:1
msgid "Use internal notes"
@ -32,7 +31,11 @@ msgid ""
"only visible to pod admins and moderators."
msgstr ""
#: ../../moderator_documentation/reports/internal_notes.md:6
#: ../../moderator_documentation/reports/internal_notes.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/reports/internal_notes.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
@ -40,11 +43,11 @@ msgstr ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
#: ../../moderator_documentation/reports/internal_notes.md:9
#: ../../moderator_documentation/reports/internal_notes.md:11
msgid "Add notes to a report"
msgstr ""
#: ../../moderator_documentation/reports/internal_notes.md:11
#: ../../moderator_documentation/reports/internal_notes.md:13
msgid ""
"You can add notes to __Unresolved__ and __Resolved__ reports. To add an "
"internal note:"
@ -54,46 +57,46 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../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:21
#: ../../moderator_documentation/reports/internal_notes.md:33
#: ../../moderator_documentation/reports/internal_notes.md:56
#: ../../moderator_documentation/reports/internal_notes.md:68
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../moderator_documentation/reports/internal_notes.md:16
#: ../../moderator_documentation/reports/internal_notes.md:46
#: ../../moderator_documentation/reports/internal_notes.md:22
#: ../../moderator_documentation/reports/internal_notes.md:57
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../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:23
#: ../../moderator_documentation/reports/internal_notes.md:35
#: ../../moderator_documentation/reports/internal_notes.md:58
#: ../../moderator_documentation/reports/internal_notes.md:70
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
#: ../../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:24
#: ../../moderator_documentation/reports/internal_notes.md:36
#: ../../moderator_documentation/reports/internal_notes.md:59
#: ../../moderator_documentation/reports/internal_notes.md:71
msgid "[Search for the report](search_reports.md)."
msgstr ""
#: ../../moderator_documentation/reports/internal_notes.md:19
#: ../../moderator_documentation/reports/internal_notes.md:30
#: ../../moderator_documentation/reports/internal_notes.md:25
#: ../../moderator_documentation/reports/internal_notes.md:37
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
#: ../../moderator_documentation/reports/internal_notes.md:26
#: ../../moderator_documentation/reports/internal_notes.md:38
msgid "Select {guilabel}`Add note` to save your note."
msgstr ""
@ -101,38 +104,39 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/reports/internal_notes.md:27
#: ../../moderator_documentation/reports/internal_notes.md:57
#: ../../moderator_documentation/reports/internal_notes.md:34
#: ../../moderator_documentation/reports/internal_notes.md:69
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
#: ../../moderator_documentation/reports/internal_notes.md:42
msgid "Delete notes from a report"
msgstr ""
#: ../../moderator_documentation/reports/internal_notes.md:38
#: ../../moderator_documentation/reports/internal_notes.md:45
msgid ""
"Deleting an internal note is irreversible. Make sure you are not deleting"
" anything important."
msgstr ""
#: ../../moderator_documentation/reports/internal_notes.md:41
#: ../../moderator_documentation/reports/internal_notes.md:48
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
#: ../../moderator_documentation/reports/internal_notes.md:72
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
#: ../../moderator_documentation/reports/internal_notes.md:73
msgid "Select {guilabel}`Delete`"
msgstr ""

Wyświetl plik

@ -7,19 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-reports-search_reports/en_GB/>"
"\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-reports-search_reports/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/reports/search_reports.md:1
msgid "Search for reports"
@ -32,7 +31,11 @@ msgid ""
"key words."
msgstr ""
#: ../../moderator_documentation/reports/search_reports.md:6
#: ../../moderator_documentation/reports/search_reports.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/reports/search_reports.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
@ -44,54 +47,54 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../moderator_documentation/reports/search_reports.md:11
#: ../../moderator_documentation/reports/search_reports.md:25
#: ../../moderator_documentation/reports/search_reports.md:17
#: ../../moderator_documentation/reports/search_reports.md:32
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../moderator_documentation/reports/search_reports.md:12
#: ../../moderator_documentation/reports/search_reports.md:18
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../moderator_documentation/reports/search_reports.md:13
#: ../../moderator_documentation/reports/search_reports.md:27
#: ../../moderator_documentation/reports/search_reports.md:19
#: ../../moderator_documentation/reports/search_reports.md:34
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
#: ../../moderator_documentation/reports/search_reports.md:14
#: ../../moderator_documentation/reports/search_reports.md:28
#: ../../moderator_documentation/reports/search_reports.md:20
#: ../../moderator_documentation/reports/search_reports.md:35
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
#: ../../moderator_documentation/reports/search_reports.md:21
#: ../../moderator_documentation/reports/search_reports.md:36
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
#: ../../moderator_documentation/reports/search_reports.md:22
#: ../../moderator_documentation/reports/search_reports.md:37
msgid "Filter reports by {guilabel}`Status`."
msgstr ""
#: ../../moderator_documentation/reports/search_reports.md:17
#: ../../moderator_documentation/reports/search_reports.md:31
#: ../../moderator_documentation/reports/search_reports.md:23
#: ../../moderator_documentation/reports/search_reports.md:38
msgid "Filter reports by {guilabel}`Category`."
msgstr ""
#: ../../moderator_documentation/reports/search_reports.md:18
#: ../../moderator_documentation/reports/search_reports.md:32
#: ../../moderator_documentation/reports/search_reports.md:24
#: ../../moderator_documentation/reports/search_reports.md:39
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
#: ../../moderator_documentation/reports/search_reports.md:25
#: ../../moderator_documentation/reports/search_reports.md:40
msgid "Select which {guilabel}`Order` you want to see your search results in."
msgstr ""
@ -99,15 +102,16 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/reports/search_reports.md:26
#: ../../moderator_documentation/reports/search_reports.md:33
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
#: ../../moderator_documentation/reports/search_reports.md:44
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 ""

Wyświetl plik

@ -7,18 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/moderator_documentation-reports-view_reports/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/moderator_documentation-reports-view_reports/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/reports/view_reports.md:1
msgid "View unresolved reports"
@ -31,7 +31,11 @@ msgid ""
"reports that users have submitted."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:6
#: ../../moderator_documentation/reports/view_reports.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
@ -39,11 +43,11 @@ msgstr ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
#: ../../moderator_documentation/reports/view_reports.md:9
#: ../../moderator_documentation/reports/view_reports.md:11
msgid "Check the Reports page"
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:11
#: ../../moderator_documentation/reports/view_reports.md:13
msgid ""
"You can see a list of unresolved reports by going to the "
"{guilabel}`Reports` page. To do this:"
@ -53,21 +57,21 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../moderator_documentation/reports/view_reports.md:15
#: ../../moderator_documentation/reports/view_reports.md:23
#: ../../moderator_documentation/reports/view_reports.md:21
#: ../../moderator_documentation/reports/view_reports.md:30
msgid "Log in to your {term}`pod`."
msgstr "Log in to your {term}`pod`."
#: ../../moderator_documentation/reports/view_reports.md:16
#: ../../moderator_documentation/reports/view_reports.md:22
msgid ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
msgstr ""
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open the "
"{guilabel}`Administration` menu."
"Select the wrench icon ({fa}`wrench`) at the top of the sidebar to open "
"the {guilabel}`Administration` menu."
#: ../../moderator_documentation/reports/view_reports.md:17
#: ../../moderator_documentation/reports/view_reports.md:25
#: ../../moderator_documentation/reports/view_reports.md:23
#: ../../moderator_documentation/reports/view_reports.md:32
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
@ -75,88 +79,89 @@ msgstr "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgid "Mobile"
msgstr "Mobile"
#: ../../moderator_documentation/reports/view_reports.md:24
#: ../../moderator_documentation/reports/view_reports.md:31
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
#: ../../moderator_documentation/reports/view_reports.md:36
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
#: ../../moderator_documentation/reports/view_reports.md:38
#: ../../moderator_documentation/reports/view_reports.md:53
msgid "The user who submitted the report."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:32
#: ../../moderator_documentation/reports/view_reports.md:39
msgid "The report {guilabel}`Category`."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:33
#: ../../moderator_documentation/reports/view_reports.md:40
msgid "The date the user submitted the report."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:34
#: ../../moderator_documentation/reports/view_reports.md:50
#: ../../moderator_documentation/reports/view_reports.md:41
#: ../../moderator_documentation/reports/view_reports.md:57
msgid "The message the user posted with the report (if applicable)."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:35
#: ../../moderator_documentation/reports/view_reports.md:42
msgid "The {guilabel}`Status` of the report."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:36
#: ../../moderator_documentation/reports/view_reports.md:43
msgid "Any {guilabel}`Internal notes` left by moderators."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:37
#: ../../moderator_documentation/reports/view_reports.md:44
msgid "A summary of the {guilabel}`Reported object`."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:38
#: ../../moderator_documentation/reports/view_reports.md:45
msgid "A list of available {guilabel}`Actions`."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:40
#: ../../moderator_documentation/reports/view_reports.md:47
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
#: ../../moderator_documentation/reports/view_reports.md:49
msgid "Email notifications"
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:44
#: ../../moderator_documentation/reports/view_reports.md:51
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
#: ../../moderator_documentation/reports/view_reports.md:54
msgid "The object that the user reported."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:48
#: ../../moderator_documentation/reports/view_reports.md:55
msgid "A link to the object on your pod."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:49
#: ../../moderator_documentation/reports/view_reports.md:56
msgid "A link to the object's moderation page."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:51
#: ../../moderator_documentation/reports/view_reports.md:58
msgid "A link to the report."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:52
#: ../../moderator_documentation/reports/view_reports.md:59
msgid "A link to the {guilabel}`Reports` page."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:54
#: ../../moderator_documentation/reports/view_reports.md:61
msgid "Follow the links in the email to view the report."
msgstr ""

Wyświetl plik

@ -7,18 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 22:14+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 21:04+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/user_documentation-libraries-tag_music/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/user_documentation-libraries-tag_music/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../user_documentation/libraries/tag_music.md:1
msgid "Tag your content with Picard"
@ -43,308 +43,313 @@ msgstr ""
msgid "This guide shows you how to tag your content with MusicBrainz Picard."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:19
#: ../../user_documentation/libraries/tag_music.md
msgid "Supported tags"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:21
msgid "Name"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:20
#: ../../user_documentation/libraries/tag_music.md:22
msgid "Description"
msgstr "Description"
#: ../../user_documentation/libraries/tag_music.md:21
#: ../../user_documentation/libraries/tag_music.md:23
msgid "Example value"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:22
#: ../../user_documentation/libraries/tag_music.md:24
msgid "`Title`*"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:23
#: ../../user_documentation/libraries/tag_music.md:25
msgid "The track title."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:24
#: ../../user_documentation/libraries/tag_music.md:26
msgid "`Letting you`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:25
#: ../../user_documentation/libraries/tag_music.md:27
msgid "`Artist`*"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:26
#: ../../user_documentation/libraries/tag_music.md:28
msgid "The artist name."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:27
#: ../../user_documentation/libraries/tag_music.md:29
msgid "`Nine Inch Nails`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:28
#: ../../user_documentation/libraries/tag_music.md:30
msgid "`Album`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:29
#: ../../user_documentation/libraries/tag_music.md:31
msgid ""
"The album title. If none is provided, an `[Unknown Album]` entry is "
"created."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:30
#: ../../user_documentation/libraries/tag_music.md:32
msgid "`The Slip`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:31
#: ../../user_documentation/libraries/tag_music.md:33
msgid "`Album artist`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:32
#: ../../user_documentation/libraries/tag_music.md:34
msgid "The album artist name (can be different than the track artist)."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:33
#: ../../user_documentation/libraries/tag_music.md:35
msgid "`Trent Reznor`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:34
#: ../../user_documentation/libraries/tag_music.md:36
msgid "`Genre`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:35
#: ../../user_documentation/libraries/tag_music.md:37
msgid ""
"A comma separated list of tags to associate with the track. Other "
"supported separators: `;` and `/`."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:37
#: ../../user_documentation/libraries/tag_music.md:39
msgid "`Industrial, Metal`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:38
#: ../../user_documentation/libraries/tag_music.md:40
msgid "`Track number`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:39
#: ../../user_documentation/libraries/tag_music.md:41
msgid "The position of the track in the album/release."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:40
#: ../../user_documentation/libraries/tag_music.md:42
msgid "`4`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:41
#: ../../user_documentation/libraries/tag_music.md:43
msgid "`Disc number`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:42
#: ../../user_documentation/libraries/tag_music.md:44
msgid "The disc number (in case of multi-disc albums)."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:43
#: ../../user_documentation/libraries/tag_music.md:45
msgid "`1`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:44
#: ../../user_documentation/libraries/tag_music.md:46
msgid "`Date`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:45
#: ../../user_documentation/libraries/tag_music.md:47
msgid "The release date of the track or album."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:46
#: ../../user_documentation/libraries/tag_music.md:48
msgid "`2019`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:47
#: ../../user_documentation/libraries/tag_music.md:49
msgid "`License`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:48
#: ../../user_documentation/libraries/tag_music.md:50
msgid ""
"The license associated with this work. The first URL found is checked "
"against our list of supported licenses."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:50
#: ../../user_documentation/libraries/tag_music.md:54
#: ../../user_documentation/libraries/tag_music.md:52
#: ../../user_documentation/libraries/tag_music.md:56
msgid "`CC-BY 3.0: http://creativecommons.org/licenses/cc-by/3.0/`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:51
#: ../../user_documentation/libraries/tag_music.md:53
msgid "`Copyright`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:52
#: ../../user_documentation/libraries/tag_music.md:54
msgid ""
"The license associated with this work. The first URL found is checked "
"against our list of supported licenses. Used if no license found in the"
" `License` tag."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:55
#: ../../user_documentation/libraries/tag_music.md:57
msgid "`Pictures`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:56
#: ../../user_documentation/libraries/tag_music.md:58
msgid "The first embeded picture found is used as the album cover."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:58
#: ../../user_documentation/libraries/tag_music.md:60
msgid "`MusicBrainz Recording ID`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:59
#: ../../user_documentation/libraries/tag_music.md:61
msgid "The MusicBrainz ID for the recording."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:60
#: ../../user_documentation/libraries/tag_music.md:62
msgid "`99244237-850b-4a93-904d-57305bcadb4e`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:61
#: ../../user_documentation/libraries/tag_music.md:63
msgid "`MusicBrainz Album ID`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:62
#: ../../user_documentation/libraries/tag_music.md:64
msgid "The MusicBrainz ID for the album."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:63
#: ../../user_documentation/libraries/tag_music.md:65
msgid "`bca982fd-ab73-3c9f-ad07-9104a4f53a32`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:64
#: ../../user_documentation/libraries/tag_music.md:66
msgid "`MusicBrainz Artist ID`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:65
#: ../../user_documentation/libraries/tag_music.md:67
msgid "The MusicBrainz ID for the artist."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:66
#: ../../user_documentation/libraries/tag_music.md:69
#: ../../user_documentation/libraries/tag_music.md:68
#: ../../user_documentation/libraries/tag_music.md:71
msgid "`b7ffd2af-418f-4be2-bdd1-22f8b48613da`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:67
#: ../../user_documentation/libraries/tag_music.md:69
msgid "`MusicBrainz Album Artist ID`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:68
#: ../../user_documentation/libraries/tag_music.md:70
msgid "The MusicBrainz ID for the album artist."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:74
#: ../../user_documentation/libraries/tag_music.md:75
msgid "Tag content"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:76
#: ../../user_documentation/libraries/tag_music.md:77
msgid "To tag content using MusicBrainz Picard:"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:78
#: ../../user_documentation/libraries/tag_music.md:79
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:79
#: ../../user_documentation/libraries/tag_music.md:80
msgid "Select the files or directory you want to tag."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:80
#: ../../user_documentation/libraries/tag_music.md:81
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:81
#: ../../user_documentation/libraries/tag_music.md:82
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:82
#: ../../user_documentation/libraries/tag_music.md:96
#: ../../user_documentation/libraries/tag_music.md:105
#: ../../user_documentation/libraries/tag_music.md:83
#: ../../user_documentation/libraries/tag_music.md:97
#: ../../user_documentation/libraries/tag_music.md:106
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:84
#: ../../user_documentation/libraries/tag_music.md:85
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:86
#: ../../user_documentation/libraries/tag_music.md:87
msgid "Alternative versions"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:88
#: ../../user_documentation/libraries/tag_music.md:89
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:90
#: ../../user_documentation/libraries/tag_music.md:91
msgid "Alternative albums"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:92
#: ../../user_documentation/libraries/tag_music.md:93
msgid "If Picard has selected a different version of the album you are tagging:"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:94
#: ../../user_documentation/libraries/tag_music.md:95
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:95
#: ../../user_documentation/libraries/tag_music.md:96
msgid "Select the correct release from the list."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:98
#: ../../user_documentation/libraries/tag_music.md:99
msgid "Alternative tracks"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:100
#: ../../user_documentation/libraries/tag_music.md:101
msgid "If Picard can't find a release for a track:"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:102
#: ../../user_documentation/libraries/tag_music.md:103
msgid ""
"Right-click on the track and select {guilabel}`Search for Similar "
"Tracks…`. A search screen appears."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:103
#: ../../user_documentation/libraries/tag_music.md:104
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:104
#: ../../user_documentation/libraries/tag_music.md:105
msgid "Select the correct track and click on {guilabel}`Load into Picard`."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:107
#: ../../user_documentation/libraries/tag_music.md:108
msgid "Add items to MusicBrainz"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:109
#: ../../user_documentation/libraries/tag_music.md:110
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:111
#: ../../user_documentation/libraries/tag_music.md:112
msgid "Once you have added the content to MusicBrainz, Picard can tag your files."
msgstr ""

Wyświetl plik

@ -7,18 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/user_documentation-libraries-upload_content/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/user_documentation-libraries-upload_content/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../user_documentation/libraries/upload_content.md:1
msgid "Upload content to a library"
@ -46,67 +46,67 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../user_documentation/libraries/upload_content.md:13
#: ../../user_documentation/libraries/upload_content.md:26
#: ../../user_documentation/libraries/upload_content.md:17
#: ../../user_documentation/libraries/upload_content.md:31
msgid "Log in to your pod."
msgstr "Log in to your pod."
#: ../../user_documentation/libraries/upload_content.md:14
#: ../../user_documentation/libraries/upload_content.md:18
msgid "Select the upload icon ({fa}`upload`) in the top of the sidebar."
msgstr "Select the upload icon ({fa}`upload`) in the top of the sidebar."
#: ../../user_documentation/libraries/upload_content.md:15
#: ../../user_documentation/libraries/upload_content.md:28
#: ../../user_documentation/libraries/upload_content.md:19
#: ../../user_documentation/libraries/upload_content.md:33
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
#: ../../user_documentation/libraries/upload_content.md:20
#: ../../user_documentation/libraries/upload_content.md:34
msgid "A screen appears showing your upload quota and your libraries."
msgstr "A screen appears showing your upload quota and your libraries."
#: ../../user_documentation/libraries/upload_content.md:17
#: ../../user_documentation/libraries/upload_content.md:30
#: ../../user_documentation/libraries/upload_content.md:21
#: ../../user_documentation/libraries/upload_content.md:35
msgid "Select {guilabel}`Upload` under the library you want to add content to."
msgstr ""
#: ../../user_documentation/libraries/upload_content.md:18
#: ../../user_documentation/libraries/upload_content.md:22
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
#: ../../user_documentation/libraries/upload_content.md:23
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
#: ../../user_documentation/libraries/upload_content.md:24
#: ../../user_documentation/libraries/upload_content.md:37
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
msgid "Mobile"
msgstr "Mobile"
#: ../../user_documentation/libraries/upload_content.md:27
#: ../../user_documentation/libraries/upload_content.md:32
msgid "Select the upload icon ({fa}`upload`) at the top of the screen."
msgstr "Select the upload icon ({fa}`upload`) at the top of the screen."
#: ../../user_documentation/libraries/upload_content.md:31
#: ../../user_documentation/libraries/upload_content.md:36
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
#: ../../user_documentation/libraries/upload_content.md:41
msgid ""
"Congratulations! You added some content to your library. You can now "
"listen to your tracks on your {term}`Funkwhale pod <Pod>`."
msgstr ""
#~ msgid "Mobile"
#~ msgstr "Mobile"

Wyświetl plik

@ -7,18 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/user_documentation-playlists-create_playlist/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/user_documentation-playlists-create_playlist/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../user_documentation/playlists/create_playlist.md:1
msgid "Create a playlist"
@ -36,63 +36,64 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../user_documentation/playlists/create_playlist.md:9
#: ../../user_documentation/playlists/create_playlist.md:23
#: ../../user_documentation/playlists/create_playlist.md:13
#: ../../user_documentation/playlists/create_playlist.md:28
msgid "Log in to your account."
msgstr "Log in to your account."
#: ../../user_documentation/playlists/create_playlist.md:10
#: ../../user_documentation/playlists/create_playlist.md:14
msgid ""
"Select {guilabel}`Playlists` under the {guilabel}`My Library` section of "
"the sidebar. The {guilabel}`Browsing playlists` screen opens."
msgstr ""
"Select {guilabel}`Playlists` under the {guilabel}`My Library` section of the "
"sidebar. The {guilabel}`Browsing playlists` screen opens."
"Select {guilabel}`Playlists` under the {guilabel}`My Library` section of "
"the sidebar. The {guilabel}`Browsing playlists` screen opens."
#: ../../user_documentation/playlists/create_playlist.md:11
#: ../../user_documentation/playlists/create_playlist.md:26
#: ../../user_documentation/playlists/create_playlist.md:15
#: ../../user_documentation/playlists/create_playlist.md:31
msgid ""
"Select {guilabel}`Manage your playlists`. The {guilabel}`Manage "
"playlists` screen appears."
msgstr ""
"Select {guilabel}`Manage your playlists`. The {guilabel}`Manage playlists` "
"screen appears."
"Select {guilabel}`Manage your playlists`. The {guilabel}`Manage "
"playlists` screen appears."
#: ../../user_documentation/playlists/create_playlist.md:12
#: ../../user_documentation/playlists/create_playlist.md:27
#: ../../user_documentation/playlists/create_playlist.md:16
#: ../../user_documentation/playlists/create_playlist.md:32
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
#: ../../user_documentation/playlists/create_playlist.md:17
#: ../../user_documentation/playlists/create_playlist.md:33
msgid ""
"Select the {guilabel}`Playlist visibility` for your playlist. Choose from"
" the following options:"
msgstr ""
#: ../../user_documentation/playlists/create_playlist.md:14
#: ../../user_documentation/playlists/create_playlist.md:18
#: ../../user_documentation/playlists/create_playlist.md:34
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
#: ../../user_documentation/playlists/create_playlist.md:19
#: ../../user_documentation/playlists/create_playlist.md:35
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
#: ../../user_documentation/playlists/create_playlist.md:20
#: ../../user_documentation/playlists/create_playlist.md:36
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
#: ../../user_documentation/playlists/create_playlist.md:21
#: ../../user_documentation/playlists/create_playlist.md:37
msgid ""
"Select {guilabel}`Create playlist`. A {guilabel}`Playlist created` "
"message appears."
@ -102,25 +103,26 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../user_documentation/playlists/create_playlist.md:24
#: ../../user_documentation/playlists/create_playlist.md:29
msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar."
msgstr "Select the hamburger menu ({fa}`bars`) to open the menu bar."
#: ../../user_documentation/playlists/create_playlist.md:25
#: ../../user_documentation/playlists/create_playlist.md:30
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
#: ../../user_documentation/playlists/create_playlist.md:41
msgid ""
"Congratulations! You've created your playlist. Now you can [add some "
"content to it](add_content.md)."
msgstr ""
#~ msgid ""
#~ "{guilabel}`Everyone, across all instances` –"
#~ " the playlist is available to "
#~ "everybody who interacts with your pod."
#~ " This includes users of other pods."
#~ msgstr ""

Wyświetl plik

@ -1,30 +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.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
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"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 21:33+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/user_documentation-playlists-remove_content/en_GB/>\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/user_documentation-playlists-remove_content/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../user_documentation/playlists/remove_content.md:1
msgid "Remove content from a playlist"
msgstr "Remove content from a playlist"
#: ../../user_documentation/playlists/remove_content.md:4
msgid "Removing content from a playlist removes it for anybody who follows the playlist."
msgid ""
"Removing content from a playlist removes it for anybody who follows the "
"playlist."
msgstr ""
"Removing content from a playlist removes it for anybody who follows the "
"playlist."
@ -33,61 +36,71 @@ msgstr ""
msgid "You can remove content from a playlist at any time. To do this:"
msgstr "You can remove content from a playlist at any time. To do this:"
#: ../../user_documentation/playlists/remove_content.md:0
#: ../../user_documentation/playlists/remove_content.md
msgid "Desktop"
msgstr "Desktop"
#: ../../user_documentation/playlists/remove_content.md:11
#: ../../user_documentation/playlists/remove_content.md:22
#: ../../user_documentation/playlists/remove_content.md:15
#: ../../user_documentation/playlists/remove_content.md:27
msgid "Log in to your account."
msgstr "Log in to your account."
#: ../../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 ""
"Select {guilabel}`Playlists` under the {guilabel}`My Library` section of the "
"sidebar. The {guilabel}`Browsing playlists` screen opens."
#: ../../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 ""
"Select {guilabel}`Manage your playlists`. The {guilabel}`Manage playlists` "
"screen appears."
#: ../../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 ""
"Select the edit icon ({fa}`edit`) next to the playlist you want to edit. The "
"playlist edit screen appears."
#: ../../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 ""
"Select the delete icon ({fa}`trash`) next to the content you want to remove. "
"Select {guilabel}`Clear playlist` to remove all content at once."
#: ../../user_documentation/playlists/remove_content.md:16
#: ../../user_documentation/playlists/remove_content.md:28
msgid ""
"Select {guilabel}`Playlists` under the {guilabel}`My Library` section of "
"the sidebar. The {guilabel}`Browsing playlists` screen opens."
msgstr ""
"Select {guilabel}`Playlists` under the {guilabel}`My Library` section of "
"the sidebar. The {guilabel}`Browsing playlists` screen opens."
#: ../../user_documentation/playlists/remove_content.md:17
#: ../../user_documentation/playlists/remove_content.md:30
msgid ""
"Select {guilabel}`Manage your playlists`. The {guilabel}`Manage "
"playlists` screen appears."
msgstr ""
"Select {guilabel}`Manage your playlists`. The {guilabel}`Manage "
"playlists` screen appears."
#: ../../user_documentation/playlists/remove_content.md:18
#: ../../user_documentation/playlists/remove_content.md:31
msgid ""
"Select the edit icon ({fa}`edit`) next to the playlist you want to edit. "
"The playlist edit screen appears."
msgstr ""
"Select the edit icon ({fa}`edit`) next to the playlist you want to edit. "
"The playlist edit screen appears."
#: ../../user_documentation/playlists/remove_content.md:19
#: ../../user_documentation/playlists/remove_content.md:32
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 ""
"Select the delete icon ({fa}`trash`) next to the content you want to "
"remove. Select {guilabel}`Clear playlist` to remove all content at once."
#: ../../user_documentation/playlists/remove_content.md:20
#: ../../user_documentation/playlists/remove_content.md:33
msgid "Select {guilabel}`Stop Editing` to finish editing."
msgstr "Select {guilabel}`Stop Editing` to finish editing."
#: ../../user_documentation/playlists/remove_content.md:0
msgid "Mobile"
msgstr "Mobile"
#: ../../user_documentation/playlists/remove_content.md:23
#: ../../user_documentation/playlists/remove_content.md:28
msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar."
msgstr "Select the hamburger menu ({fa}`bars`) to open the menu bar."
#: ../../user_documentation/playlists/remove_content.md:24
msgid "Select {menuselection}`My Library --> Playlists`. The {guilabel}`Browsing playlists` screen opens."
#: ../../user_documentation/playlists/remove_content.md:29
msgid ""
"Select {menuselection}`My Library --> Playlists`. The {guilabel}`Browsing"
" playlists` screen opens."
msgstr ""
"Select {menuselection}`My Library --> Playlists`. The {guilabel}`Browsing "
"playlists` screen opens."
"Select {menuselection}`My Library --> Playlists`. The {guilabel}`Browsing"
" playlists` screen opens."
#: ../../user_documentation/playlists/remove_content.md:32
#: ../../user_documentation/playlists/remove_content.md:37
msgid "That's it! You've removed the content from your playlist."
msgstr "That's it! You've removed the content from your playlist."
#~ msgid "Mobile"
#~ msgstr "Mobile"

Wyświetl plik

@ -7,18 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/user_documentation-playlists-reorder_content/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/user_documentation-playlists-reorder_content/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../user_documentation/playlists/reorder_content.md:1
msgid "Reorder content in a playlist"
@ -32,63 +32,63 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../user_documentation/playlists/reorder_content.md:7
#: ../../user_documentation/playlists/reorder_content.md:18
#: ../../user_documentation/playlists/reorder_content.md:11
#: ../../user_documentation/playlists/reorder_content.md:23
msgid "Log in to your account."
msgstr "Log in to your account."
#: ../../user_documentation/playlists/reorder_content.md:8
#: ../../user_documentation/playlists/reorder_content.md:12
msgid ""
"Select {guilabel}`Playlists` under the {guilabel}`My Library` section of "
"the sidebar. The {guilabel}`Browsing playlists` screen opens."
msgstr ""
"Select {guilabel}`Playlists` under the {guilabel}`My Library` section of the "
"sidebar. The {guilabel}`Browsing playlists` screen opens."
"Select {guilabel}`Playlists` under the {guilabel}`My Library` section of "
"the sidebar. The {guilabel}`Browsing playlists` screen opens."
#: ../../user_documentation/playlists/reorder_content.md:9
#: ../../user_documentation/playlists/reorder_content.md:21
#: ../../user_documentation/playlists/reorder_content.md:13
#: ../../user_documentation/playlists/reorder_content.md:26
msgid ""
"Select {guilabel}`Manage your playlists`. The {guilabel}`Manage "
"playlists` screen appears."
msgstr ""
"Select {guilabel}`Manage your playlists`. The {guilabel}`Manage playlists` "
"screen appears."
"Select {guilabel}`Manage your playlists`. The {guilabel}`Manage "
"playlists` screen appears."
#: ../../user_documentation/playlists/reorder_content.md:10
#: ../../user_documentation/playlists/reorder_content.md:22
#: ../../user_documentation/playlists/reorder_content.md:14
#: ../../user_documentation/playlists/reorder_content.md:27
msgid ""
"Select the edit icon ({fa}`edit`) next to the playlist you want to edit. "
"The playlist edit screen appears."
msgstr ""
"Select the edit icon ({fa}`edit`) next to the playlist you want to edit. The "
"playlist edit screen appears."
"Select the edit icon ({fa}`edit`) next to the playlist you want to edit. "
"The playlist edit screen appears."
#: ../../user_documentation/playlists/reorder_content.md:11
#: ../../user_documentation/playlists/reorder_content.md:23
#: ../../user_documentation/playlists/reorder_content.md:15
#: ../../user_documentation/playlists/reorder_content.md:28
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
#: ../../user_documentation/playlists/reorder_content.md:16
#: ../../user_documentation/playlists/reorder_content.md:29
msgid "Select {guilabel}`Stop Editing` to finish editing."
msgstr "Select {guilabel}`Stop Editing` to finish editing."
#: ../../user_documentation/playlists/reorder_content.md
msgid "Mobile"
msgstr "Mobile"
#: ../../user_documentation/playlists/reorder_content.md:19
#: ../../user_documentation/playlists/reorder_content.md:24
msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar."
msgstr "Select the hamburger menu ({fa}`bars`) to open the menu bar."
#: ../../user_documentation/playlists/reorder_content.md:20
#: ../../user_documentation/playlists/reorder_content.md:25
msgid ""
"Select {menuselection}`My Library --> Playlists`. The {guilabel}`Browsing"
" playlists` screen opens."
msgstr ""
#: ../../user_documentation/playlists/reorder_content.md:29
#: ../../user_documentation/playlists/reorder_content.md:33
msgid "You're done! You've updated the order of the tracks in your playlist."
msgstr ""
#~ msgid "Mobile"
#~ msgstr "Mobile"

Wyświetl plik

@ -1,100 +1,111 @@
# 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.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
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"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 21:32+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/user_documentation-plugins-listenbrainz_plugin/en_GB/>"
"\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/user_documentation-plugins-listenbrainz_plugin/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../user_documentation/plugins/listenbrainz_plugin.md:1
msgid "ListenBrainz plugin"
msgstr "ListenBrainz plugin"
#: ../../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__:"
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 ""
"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__:"
"[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__:"
#: ../../user_documentation/plugins/listenbrainz_plugin.md:0
#: ../../user_documentation/plugins/listenbrainz_plugin.md
msgid "Desktop"
msgstr "Desktop"
#: ../../user_documentation/plugins/listenbrainz_plugin.md:7
#: ../../user_documentation/plugins/listenbrainz_plugin.md:21
#: ../../user_documentation/plugins/listenbrainz_plugin.md:11
#: ../../user_documentation/plugins/listenbrainz_plugin.md:26
msgid "Log in to your account."
msgstr "Log in to your account."
#: ../../user_documentation/plugins/listenbrainz_plugin.md:8
#: ../../user_documentation/plugins/listenbrainz_plugin.md:12
msgid "Select the cog icon ({fa}`cog`) or your avatar to expand the user menu."
msgstr "Select the cog icon ({fa}`cog`) or your avatar to expand the user menu."
#: ../../user_documentation/plugins/listenbrainz_plugin.md:9
#: ../../user_documentation/plugins/listenbrainz_plugin.md:23
#: ../../user_documentation/plugins/listenbrainz_plugin.md:13
#: ../../user_documentation/plugins/listenbrainz_plugin.md:28
msgid "Select {guilabel}`Settings`."
msgstr "Select {guilabel}`Settings`."
#: ../../user_documentation/plugins/listenbrainz_plugin.md:10
#: ../../user_documentation/plugins/listenbrainz_plugin.md:24
#: ../../user_documentation/plugins/listenbrainz_plugin.md:14
#: ../../user_documentation/plugins/listenbrainz_plugin.md:29
msgid "Scroll down to the {guilabel}`Plugins` section."
msgstr "Scroll down to the {guilabel}`Plugins` section."
#: ../../user_documentation/plugins/listenbrainz_plugin.md:11
#: ../../user_documentation/plugins/listenbrainz_plugin.md:25
#: ../../user_documentation/plugins/listenbrainz_plugin.md:15
#: ../../user_documentation/plugins/listenbrainz_plugin.md:30
msgid "Select {guilabel}`Manage plugins`."
msgstr "Select {guilabel}`Manage plugins`."
#: ../../user_documentation/plugins/listenbrainz_plugin.md:12
#: ../../user_documentation/plugins/listenbrainz_plugin.md:26
#: ../../user_documentation/plugins/listenbrainz_plugin.md:16
#: ../../user_documentation/plugins/listenbrainz_plugin.md:31
msgid "Find the {guilabel}`ListenBrainz` plugin."
msgstr "Find the {guilabel}`ListenBrainz` plugin."
#: ../../user_documentation/plugins/listenbrainz_plugin.md:13
#: ../../user_documentation/plugins/listenbrainz_plugin.md:27
#: ../../user_documentation/plugins/listenbrainz_plugin.md:17
#: ../../user_documentation/plugins/listenbrainz_plugin.md:32
msgid "Toggle the {guilabel}`Enabled` switch."
msgstr "Toggle the {guilabel}`Enabled` switch."
#: ../../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."
#: ../../user_documentation/plugins/listenbrainz_plugin.md:18
#: ../../user_documentation/plugins/listenbrainz_plugin.md:33
msgid ""
"Enter {guilabel}`Your ListenBrainz user token`. You can find this on your"
" ListenBrainz profile."
msgstr ""
"Enter {guilabel}`Your ListenBrainz user token`. You can find this on your "
"ListenBrainz profile."
"Enter {guilabel}`Your ListenBrainz user token`. You can find this on your"
" ListenBrainz profile."
#: ../../user_documentation/plugins/listenbrainz_plugin.md:15
#: ../../user_documentation/plugins/listenbrainz_plugin.md:29
#: ../../user_documentation/plugins/listenbrainz_plugin.md:19
#: ../../user_documentation/plugins/listenbrainz_plugin.md:34
msgid "Select {guilabel}`Save`."
msgstr "Select {guilabel}`Save`."
#: ../../user_documentation/plugins/listenbrainz_plugin.md:0
msgid "Mobile"
msgstr "Mobile"
#: ../../user_documentation/plugins/listenbrainz_plugin.md:22
msgid "Select the cog icon ({fa}`cog`) or your avatar to open the {guilabel}`Options` menu."
#: ../../user_documentation/plugins/listenbrainz_plugin.md:27
msgid ""
"Select the cog icon ({fa}`cog`) or your avatar to open the "
"{guilabel}`Options` menu."
msgstr ""
"Select the cog icon ({fa}`cog`) or your avatar to open the "
"{guilabel}`Options` menu."
#: ../../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."
#: ../../user_documentation/plugins/listenbrainz_plugin.md:38
msgid ""
"That's it! You've set up the __ListenBrainz__ plugin. When you listen to "
"tracks, the plugin sends the information to ListenBrainz."
msgstr ""
"That's it! You've set up the __ListenBrainz__ plugin. When you listen to "
"tracks, the plugin sends the information to ListenBrainz."
#~ msgid "Mobile"
#~ msgstr "Mobile"

Wyświetl plik

@ -7,18 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/user_documentation-plugins-maloja_plugin/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/user_documentation-plugins-maloja_plugin/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../user_documentation/plugins/maloja_plugin.md:1
msgid "Maloja plugin"
@ -46,65 +46,61 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../user_documentation/plugins/maloja_plugin.md:9
#: ../../user_documentation/plugins/maloja_plugin.md:24
#: ../../user_documentation/plugins/maloja_plugin.md:13
#: ../../user_documentation/plugins/maloja_plugin.md:29
msgid "Log in to your account."
msgstr "Log in to your account."
#: ../../user_documentation/plugins/maloja_plugin.md:10
#: ../../user_documentation/plugins/maloja_plugin.md:14
msgid "Select the cog icon ({fa}`cog`) or your avatar to expand the user menu."
msgstr "Select the cog icon ({fa}`cog`) or your avatar to expand the user menu."
#: ../../user_documentation/plugins/maloja_plugin.md:11
#: ../../user_documentation/plugins/maloja_plugin.md:26
#: ../../user_documentation/plugins/maloja_plugin.md:15
#: ../../user_documentation/plugins/maloja_plugin.md:31
msgid "Select {guilabel}`Settings`."
msgstr "Select {guilabel}`Settings`."
#: ../../user_documentation/plugins/maloja_plugin.md:12
#: ../../user_documentation/plugins/maloja_plugin.md:27
#: ../../user_documentation/plugins/maloja_plugin.md:16
#: ../../user_documentation/plugins/maloja_plugin.md:32
msgid "Scroll down to the {guilabel}`Plugins` section."
msgstr "Scroll down to the {guilabel}`Plugins` section."
#: ../../user_documentation/plugins/maloja_plugin.md:13
#: ../../user_documentation/plugins/maloja_plugin.md:28
#: ../../user_documentation/plugins/maloja_plugin.md:17
#: ../../user_documentation/plugins/maloja_plugin.md:33
msgid "Select {guilabel}`Manage plugins`."
msgstr "Select {guilabel}`Manage plugins`."
#: ../../user_documentation/plugins/maloja_plugin.md:14
#: ../../user_documentation/plugins/maloja_plugin.md:29
#: ../../user_documentation/plugins/maloja_plugin.md:18
#: ../../user_documentation/plugins/maloja_plugin.md:34
msgid "Find the {guilabel}`Maloja` plugin."
msgstr ""
#: ../../user_documentation/plugins/maloja_plugin.md:15
#: ../../user_documentation/plugins/maloja_plugin.md:30
#: ../../user_documentation/plugins/maloja_plugin.md:19
#: ../../user_documentation/plugins/maloja_plugin.md:35
msgid "Toggle the {guilabel}`Enabled` switch."
msgstr ""
#: ../../user_documentation/plugins/maloja_plugin.md:16
#: ../../user_documentation/plugins/maloja_plugin.md:31
#: ../../user_documentation/plugins/maloja_plugin.md:20
#: ../../user_documentation/plugins/maloja_plugin.md:36
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
#: ../../user_documentation/plugins/maloja_plugin.md:21
#: ../../user_documentation/plugins/maloja_plugin.md:37
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
#: ../../user_documentation/plugins/maloja_plugin.md:22
#: ../../user_documentation/plugins/maloja_plugin.md:38
msgid "Select {guilabel}`Save`."
msgstr "Select {guilabel}`Save`."
#: ../../user_documentation/plugins/maloja_plugin.md
msgid "Mobile"
msgstr "Mobile"
#: ../../user_documentation/plugins/maloja_plugin.md:25
#: ../../user_documentation/plugins/maloja_plugin.md:30
msgid ""
"Select the cog icon ({fa}`cog`) or your avatar to open the "
"{guilabel}`Options` menu."
@ -112,8 +108,12 @@ msgstr ""
"Select the cog icon ({fa}`cog`) or your avatar to open the "
"{guilabel}`Options` menu."
#: ../../user_documentation/plugins/maloja_plugin.md:37
#: ../../user_documentation/plugins/maloja_plugin.md:42
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 ""
#~ msgid "Mobile"
#~ msgstr "Mobile"

Wyświetl plik

@ -7,18 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:09+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/user_documentation-plugins-scrobbler_plugin/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/user_documentation-plugins-scrobbler_plugin/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../user_documentation/plugins/scrobbler_plugin.md:1
msgid "Scrobbler plugin"
@ -55,71 +55,67 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../user_documentation/plugins/scrobbler_plugin.md:17
#: ../../user_documentation/plugins/scrobbler_plugin.md:33
#: ../../user_documentation/plugins/scrobbler_plugin.md:21
#: ../../user_documentation/plugins/scrobbler_plugin.md:38
msgid "Log in to your account."
msgstr "Log in to your account."
#: ../../user_documentation/plugins/scrobbler_plugin.md:18
#: ../../user_documentation/plugins/scrobbler_plugin.md:22
msgid "Select the cog icon ({fa}`cog`) or your avatar to expand the user menu."
msgstr "Select the cog icon ({fa}`cog`) or your avatar to expand the user menu."
#: ../../user_documentation/plugins/scrobbler_plugin.md:19
#: ../../user_documentation/plugins/scrobbler_plugin.md:35
#: ../../user_documentation/plugins/scrobbler_plugin.md:23
#: ../../user_documentation/plugins/scrobbler_plugin.md:40
msgid "Select {guilabel}`Settings`."
msgstr "Select {guilabel}`Settings`."
#: ../../user_documentation/plugins/scrobbler_plugin.md:20
#: ../../user_documentation/plugins/scrobbler_plugin.md:36
#: ../../user_documentation/plugins/scrobbler_plugin.md:24
#: ../../user_documentation/plugins/scrobbler_plugin.md:41
msgid "Scroll down to the {guilabel}`Plugins` section."
msgstr "Scroll down to the {guilabel}`Plugins` section."
#: ../../user_documentation/plugins/scrobbler_plugin.md:21
#: ../../user_documentation/plugins/scrobbler_plugin.md:37
#: ../../user_documentation/plugins/scrobbler_plugin.md:25
#: ../../user_documentation/plugins/scrobbler_plugin.md:42
msgid "Select {guilabel}`Manage plugins`."
msgstr "Select {guilabel}`Manage plugins`."
#: ../../user_documentation/plugins/scrobbler_plugin.md:22
#: ../../user_documentation/plugins/scrobbler_plugin.md:38
#: ../../user_documentation/plugins/scrobbler_plugin.md:26
#: ../../user_documentation/plugins/scrobbler_plugin.md:43
msgid "Find the {guilabel}`Scrobbler` plugin."
msgstr ""
#: ../../user_documentation/plugins/scrobbler_plugin.md:23
#: ../../user_documentation/plugins/scrobbler_plugin.md:39
#: ../../user_documentation/plugins/scrobbler_plugin.md:27
#: ../../user_documentation/plugins/scrobbler_plugin.md:44
msgid "Toggle the {guilabel}`Enabled` switch."
msgstr ""
#: ../../user_documentation/plugins/scrobbler_plugin.md:24
#: ../../user_documentation/plugins/scrobbler_plugin.md:40
#: ../../user_documentation/plugins/scrobbler_plugin.md:28
#: ../../user_documentation/plugins/scrobbler_plugin.md:45
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
#: ../../user_documentation/plugins/scrobbler_plugin.md:29
#: ../../user_documentation/plugins/scrobbler_plugin.md:46
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
#: ../../user_documentation/plugins/scrobbler_plugin.md:30
#: ../../user_documentation/plugins/scrobbler_plugin.md:47
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
#: ../../user_documentation/plugins/scrobbler_plugin.md:31
#: ../../user_documentation/plugins/scrobbler_plugin.md:48
msgid "Select {guilabel}`Save`."
msgstr "Select {guilabel}`Save`."
#: ../../user_documentation/plugins/scrobbler_plugin.md
msgid "Mobile"
msgstr "Mobile"
#: ../../user_documentation/plugins/scrobbler_plugin.md:34
#: ../../user_documentation/plugins/scrobbler_plugin.md:39
msgid ""
"Select the cog icon ({fa}`cog`) or your avatar to open the "
"{guilabel}`Options` menu."
@ -127,8 +123,12 @@ msgstr ""
"Select the cog icon ({fa}`cog`) or your avatar to open the "
"{guilabel}`Options` menu."
#: ../../user_documentation/plugins/scrobbler_plugin.md:47
#: ../../user_documentation/plugins/scrobbler_plugin.md:52
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 ""
#~ msgid "Mobile"
#~ msgstr "Mobile"

Wyświetl plik

@ -7,18 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+0200\n"
"PO-Revision-Date: 2022-07-03 23:29+0000\n"
"Last-Translator: Ciarán Ainsworth <sporiff@funkwhale.audio>\n"
"Language-Team: English (United Kingdom) <https://translate.funkwhale.audio/"
"projects/documentation/user_documentation-radios-create_radio/en_GB/>\n"
"Language: en_GB\n"
"Language-Team: English (United Kingdom) "
"<https://translate.funkwhale.audio/projects/documentation"
"/user_documentation-radios-create_radio/en_GB/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13\n"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../user_documentation/radios/create_radio.md:1
msgid "Create a radio"
@ -44,88 +44,91 @@ msgstr ""
msgid "Desktop"
msgstr "Desktop"
#: ../../user_documentation/radios/create_radio.md:13
#: ../../user_documentation/radios/create_radio.md:17
msgid ""
"Select {guilabel}`Radios` in the sidebar. The {guilabel}`Browsing radios`"
" screen opens."
msgstr ""
"Select {guilabel}`Radios` in the sidebar. The {guilabel}`Browsing radios` "
"screen opens."
"Select {guilabel}`Radios` in the sidebar. The {guilabel}`Browsing radios`"
" screen opens."
#: ../../user_documentation/radios/create_radio.md:14
#: ../../user_documentation/radios/create_radio.md:33
#: ../../user_documentation/radios/create_radio.md:18
#: ../../user_documentation/radios/create_radio.md:38
#, fuzzy
msgid ""
"Select {guilabel}` Create your own radio` under the {guilabel}`User "
"Select {guilabel}`Create your own radio` under the {guilabel}`User "
"radios` section. The {guilabel}`Builder` screen opens."
msgstr ""
"Select {guilabel}`Radios` in the sidebar. The {guilabel}`Browsing radios`"
" screen opens."
#: ../../user_documentation/radios/create_radio.md:15
#: ../../user_documentation/radios/create_radio.md:34
#: ../../user_documentation/radios/create_radio.md:19
#: ../../user_documentation/radios/create_radio.md:39
msgid "Enter a {guilabel}`Radio name`."
msgstr ""
#: ../../user_documentation/radios/create_radio.md:16
#: ../../user_documentation/radios/create_radio.md:35
#: ../../user_documentation/radios/create_radio.md:20
#: ../../user_documentation/radios/create_radio.md:40
msgid "__Optional__ – enter a {guilabel}`Description` for your radio."
msgstr ""
#: ../../user_documentation/radios/create_radio.md:17
#: ../../user_documentation/radios/create_radio.md:36
#: ../../user_documentation/radios/create_radio.md:21
#: ../../user_documentation/radios/create_radio.md:41
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
#: ../../user_documentation/radios/create_radio.md:22
#: ../../user_documentation/radios/create_radio.md:42
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
#: ../../user_documentation/radios/create_radio.md:23
#: ../../user_documentation/radios/create_radio.md:43
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
#: ../../user_documentation/radios/create_radio.md:24
#: ../../user_documentation/radios/create_radio.md:44
msgid "Configure your filter:"
msgstr ""
#: ../../user_documentation/radios/create_radio.md:21
#: ../../user_documentation/radios/create_radio.md:40
#: ../../user_documentation/radios/create_radio.md:25
#: ../../user_documentation/radios/create_radio.md:45
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
#: ../../user_documentation/radios/create_radio.md:26
#: ../../user_documentation/radios/create_radio.md:46
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
#: ../../user_documentation/radios/create_radio.md:27
#: ../../user_documentation/radios/create_radio.md:47
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
#: ../../user_documentation/radios/create_radio.md:28
#: ../../user_documentation/radios/create_radio.md:48
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
#: ../../user_documentation/radios/create_radio.md:29
#: ../../user_documentation/radios/create_radio.md:49
msgid "Select {guilabel}`Save` to save your radio."
msgstr ""
@ -133,18 +136,25 @@ msgstr ""
msgid "Mobile"
msgstr "Mobile"
#: ../../user_documentation/radios/create_radio.md:31
#: ../../user_documentation/radios/create_radio.md:36
msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar."
msgstr "Select the hamburger menu ({fa}`bars`) to open the menu bar."
#: ../../user_documentation/radios/create_radio.md:32
#: ../../user_documentation/radios/create_radio.md:37
msgid ""
"Select {menuselection}`Explore --> Radios` or {menuselection}`My Library "
"--> Radios`. The {guilabel}`Browsing radios` screen opens."
msgstr ""
"Select {menuselection}`Explore --> Radios` or {menuselection}`My Library --> "
"Radios`. The {guilabel}`Browsing radios` screen opens."
"Select {menuselection}`Explore --> Radios` or {menuselection}`My Library "
"--> Radios`. The {guilabel}`Browsing radios` screen opens."
#: ../../user_documentation/radios/create_radio.md:48
#: ../../user_documentation/radios/create_radio.md:53
msgid "You're done! You can now play your radio."
msgstr ""
#~ msgid ""
#~ "Select {guilabel}` Create your own "
#~ "radio` under the {guilabel}`User radios` "
#~ "section. The {guilabel}`Builder` screen opens."
#~ msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 22:14+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../administrator_documentation/configuration_docs/frontend.md:1
msgid "Customize the Funkwhale frontend"
@ -59,6 +59,10 @@ msgstr ""
msgid "Create a new config file and populate it with placeholder settings."
msgstr ""
#: ../../administrator_documentation/configuration_docs/frontend.md
msgid "Supported parameters"
msgstr ""
#: ../../administrator_documentation/configuration_docs/frontend.md:41
msgid "Parameter"
msgstr ""
@ -123,7 +127,7 @@ msgstr ""
msgid "Nginx"
msgstr ""
#: ../../administrator_documentation/configuration_docs/frontend.md:65
#: ../../administrator_documentation/configuration_docs/frontend.md:69
msgid ""
"Add the following snippet to your {file}`/etc/nginx/sites-"
"available/funkwhale.conf` config file:"
@ -133,57 +137,57 @@ msgstr ""
msgid "Apache"
msgstr ""
#: ../../administrator_documentation/configuration_docs/frontend.md:77
#: ../../administrator_documentation/configuration_docs/frontend.md:82
msgid "Add the following snippet to your webserver configuration:"
msgstr ""
#: ../../administrator_documentation/configuration_docs/frontend.md:85
#: ../../administrator_documentation/configuration_docs/frontend.md:90
msgid ""
"Reload your webserver. You should be able to see the contents of your "
"configuration file at `https://yourinstanceurl/settings.json`."
msgstr ""
#: ../../administrator_documentation/configuration_docs/frontend.md:87
#: ../../administrator_documentation/configuration_docs/frontend.md:92
msgid "Add a custom theme"
msgstr ""
#: ../../administrator_documentation/configuration_docs/frontend.md:89
#: ../../administrator_documentation/configuration_docs/frontend.md:94
msgid "You can use a custom stylesheet to theme your Funkwhale pod. To do this:"
msgstr ""
#: ../../administrator_documentation/configuration_docs/frontend.md:91
#: ../../administrator_documentation/configuration_docs/frontend.md:96
msgid "Navigate to your {file}`/srv/funkwhale/custom` directory."
msgstr ""
#: ../../administrator_documentation/configuration_docs/frontend.md:97
#: ../../administrator_documentation/configuration_docs/frontend.md:102
msgid "Copy your CSS file to this directory, or create a new one."
msgstr ""
#: ../../administrator_documentation/configuration_docs/frontend.md:109
#: ../../administrator_documentation/configuration_docs/frontend.md:114
msgid ""
"Add the location of your CSS file to the `additionalStylesheets` "
"parameter in your {file}`settings.json` file."
msgstr ""
#: ../../administrator_documentation/configuration_docs/frontend.md:122
#: ../../administrator_documentation/configuration_docs/frontend.md:127
msgid "Add the whole {file}`custom` dir to your webserver configuration."
msgstr ""
#: ../../administrator_documentation/configuration_docs/frontend.md:126
#: ../../administrator_documentation/configuration_docs/frontend.md:135
msgid ""
"Add the following to your {file}`/etc/nginx/sites-"
"available/funkwhale.conf` file:"
msgstr ""
#: ../../administrator_documentation/configuration_docs/frontend.md:137
#: ../../administrator_documentation/configuration_docs/frontend.md:148
msgid "Add the following to your webserver configuration file."
msgstr ""
#: ../../administrator_documentation/configuration_docs/frontend.md:150
#: ../../administrator_documentation/configuration_docs/frontend.md:162
msgid "Restart your webserver."
msgstr ""
#: ../../administrator_documentation/configuration_docs/frontend.md:152
#: ../../administrator_documentation/configuration_docs/frontend.md:164
msgid "Refresh your Funkwhale app. The background should now be red."
msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 00:32+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../administrator_documentation/configuration_docs/ldap.md:1
msgid "Configure LDAP"
@ -44,6 +44,10 @@ msgid ""
" you can safely remove these."
msgstr ""
#: ../../administrator_documentation/configuration_docs/ldap.md
msgid "OS dependencies"
msgstr ""
#: ../../administrator_documentation/configuration_docs/ldap.md:15
msgid "`libldap2-dev`"
msgstr ""
@ -52,6 +56,10 @@ msgstr ""
msgid "`libsasl2-dev`"
msgstr ""
#: ../../administrator_documentation/configuration_docs/ldap.md
msgid "Python dependencies"
msgstr ""
#: ../../administrator_documentation/configuration_docs/ldap.md:22
msgid "`python-ldap`"
msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../administrator_documentation/configuration_docs/object_storage.md:1
msgid "Store media in an object store"
@ -63,6 +63,10 @@ msgid ""
"`PROXY_MEDIA` to `false`."
msgstr ""
#: ../../administrator_documentation/configuration_docs/object_storage.md
msgid "Environment variables"
msgstr ""
#: ../../docstring config.settings.common.AWS_QUERYSTRING_AUTH:1 of
msgid ""
"Whether to include signatures in S3 URLs. Signatures are used to enforce "
@ -145,23 +149,23 @@ msgid ""
"it's safe to disable this setting."
msgstr ""
#: ../../administrator_documentation/configuration_docs/object_storage.md:71
#: ../../administrator_documentation/configuration_docs/object_storage.md:81
msgid "Set up your reverse proxy"
msgstr ""
#: ../../administrator_documentation/configuration_docs/object_storage.md:74
#: ../../administrator_documentation/configuration_docs/object_storage.md:84
msgid ""
"Serving files from object storage is not currently supported on Apache "
"deployments."
msgstr ""
#: ../../administrator_documentation/configuration_docs/object_storage.md:77
#: ../../administrator_documentation/configuration_docs/object_storage.md:87
msgid ""
"Serving files from an object store requires some changes to the reverse "
"proxy."
msgstr ""
#: ../../administrator_documentation/configuration_docs/object_storage.md:79
#: ../../administrator_documentation/configuration_docs/object_storage.md:89
msgid "Open your Nginx configuration file in an editor."
msgstr ""
@ -173,45 +177,49 @@ msgstr ""
msgid "Docker"
msgstr ""
#: ../../administrator_documentation/configuration_docs/object_storage.md:97
#: ../../administrator_documentation/configuration_docs/object_storage.md:112
msgid ""
"Comment out the `location /_protected/media/` block by adding a `#` to "
"the start of each line."
msgstr ""
#: ../../administrator_documentation/configuration_docs/object_storage.md:106
#: ../../administrator_documentation/configuration_docs/object_storage.md:121
msgid ""
"Uncomment the `location ~ /_protected/media/(.+)` block by removing the "
"`#` from the start of each line."
msgstr ""
#: ../../administrator_documentation/configuration_docs/object_storage.md:116
#: ../../administrator_documentation/configuration_docs/object_storage.md:131
msgid "Add your S3 store URL to the `img-src` and `media-src` headers."
msgstr ""
#: ../../administrator_documentation/configuration_docs/object_storage.md:122
#: ../../administrator_documentation/configuration_docs/object_storage.md:137
msgid "Test your Nginx configuration."
msgstr ""
#: ../../administrator_documentation/configuration_docs/object_storage.md:128
#: ../../administrator_documentation/configuration_docs/object_storage.md:143
msgid "Restart Funkwhale and Nginx to pick up the changes."
msgstr ""
#: ../../administrator_documentation/configuration_docs/object_storage.md:148
#: ../../administrator_documentation/configuration_docs/object_storage.md:168
msgid "That's it! Files are now uploaded to and stored from your S3 bucket."
msgstr ""
#: ../../administrator_documentation/configuration_docs/object_storage.md:150
#: ../../administrator_documentation/configuration_docs/object_storage.md:170
msgid "Troubleshooting"
msgstr ""
#: ../../administrator_documentation/configuration_docs/object_storage.md:154
#: ../../administrator_documentation/configuration_docs/object_storage.md
msgid "No Resolver Found"
msgstr ""
#: ../../administrator_documentation/configuration_docs/object_storage.md:174
msgid ""
"You may see the following error when streaming music from your "
"S3-compatible store:"
msgstr ""
#: ../../administrator_documentation/configuration_docs/object_storage.md:160
#: ../../administrator_documentation/configuration_docs/object_storage.md:180
msgid ""
"This happens when the Nginx config is unable to use your servers DNS "
"resolver. We're still looking into this issue. You can work around this "

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 12:52+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../administrator_documentation/import_docs/index.md:1
msgid "Import music from your server"
@ -58,41 +58,41 @@ msgstr ""
msgid "Docker"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:32
#: ../../administrator_documentation/import_docs/index.md:37
msgid "Get demo music"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:34
#: ../../administrator_documentation/import_docs/index.md:39
msgid ""
"If you don't have music on your server, you can download creative commons"
" music to test imports with. The Funkwhale project provides a collection "
"courtesy of [Jamendo](https://jamendo.com). To download these tracks:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:36
#: ../../administrator_documentation/import_docs/index.md:41
msgid "Download the shell script."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:42
#: ../../administrator_documentation/import_docs/index.md:47
msgid "Download the music list."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:48
#: ../../administrator_documentation/import_docs/index.md:53
msgid "Run the shell script against the music list to download the tracks."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:54
#: ../../administrator_documentation/import_docs/index.md:59
msgid ""
"This downloads a set compressed albums to your `data/music` directory and"
" unzips them. You can then import these tracks using the methods in this "
"article."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:56
#: ../../administrator_documentation/import_docs/index.md:61
msgid "Find your library ID"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:58
#: ../../administrator_documentation/import_docs/index.md:63
msgid ""
"You need to create a library before you can import music. Follow the "
"instructions in [Create a "
@ -100,88 +100,88 @@ msgid ""
"started."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:60
#: ../../administrator_documentation/import_docs/index.md:65
msgid ""
"Once you've created your library, you can find its ID by following these "
"steps:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:62
#: ../../administrator_documentation/import_docs/index.md:67
msgid ""
"Visit `https://<yourdomain>/content/libraries/` in your browser. This "
"page contains a list of your libraries."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:63
#: ../../administrator_documentation/import_docs/index.md:68
msgid ""
"Find the library you want to upload content into. Select "
"{guilabel}`Library details` to open the library details page."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:64
#: ../../administrator_documentation/import_docs/index.md:69
msgid ""
"Your library's ID is the long string of letters and numbers shown in the "
"URL bar. Copy the content before the first hyphen (`-`)."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:66
#: ../../administrator_documentation/import_docs/index.md:71
msgid ""
"For example, if your library ID is `769a2bc3-eb1d-4aff-"
"9f84-2c4d80d5c2d1`, copy the `769a2bc3`. You can use this as a shorthand "
"reference for your library."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:68
#: ../../administrator_documentation/import_docs/index.md:73
msgid "Import your music"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:70
#: ../../administrator_documentation/import_docs/index.md:75
msgid "Copy files from your server"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:72
#: ../../administrator_documentation/import_docs/index.md:77
msgid ""
"Once you have your library ID, you can copy content from your server and "
"import it into the library. To do this:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:74
#: ../../administrator_documentation/import_docs/index.md:148
#: ../../administrator_documentation/import_docs/index.md:79
#: ../../administrator_documentation/import_docs/index.md:162
msgid "Log in to your server and navigate to your Funkwhale directory."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:80
#: ../../administrator_documentation/import_docs/index.md:155
#: ../../administrator_documentation/import_docs/index.md:85
#: ../../administrator_documentation/import_docs/index.md:169
msgid ""
"Export your library ID to reference it later. In this example, the "
"library ID is \"769a2bc3\". Replace this with your library ID."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:86
#: ../../administrator_documentation/import_docs/index.md:91
msgid ""
"Run the `import_files` command to copy your files. In this example, the "
"music is stored in `data/music`. Replace this with your music directory."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:92
#: ../../administrator_documentation/import_docs/index.md:97
msgid "Funkwhale copies your files to your media store."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:94
#: ../../administrator_documentation/import_docs/index.md:99
msgid "Access your files in-place"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:96
#: ../../administrator_documentation/import_docs/index.md:101
msgid ""
"The in-place import method references your files in their current "
"directory. This is useful if you have limited storage space."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:98
#: ../../administrator_documentation/import_docs/index.md:103
msgid "Link your file directory"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:100
#: ../../administrator_documentation/import_docs/index.md:105
msgid ""
"We recommend you symbolically link your music directories to "
"`/srv/funkwhale/data/music`. You can then run the `import_files` command "
@ -189,21 +189,21 @@ msgid ""
"needing to add to them to your webserver."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:104
#: ../../administrator_documentation/import_docs/index.md:113
msgid ""
"To link your storage directory to the Funkwhale store, use the `ln -s` "
"command. For example, if you have an NFS share at `/media/nfsshare`, you "
"can link it to a folder like this:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:110
#: ../../administrator_documentation/import_docs/index.md:138
#: ../../administrator_documentation/import_docs/index.md:119
#: ../../administrator_documentation/import_docs/index.md:148
msgid ""
"You can then run the `import_files` command against "
"`/srv/funkwhale/data/music/nfsshare`."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:116
#: ../../administrator_documentation/import_docs/index.md:126
msgid ""
"On a Docker install you can use bind mounts to reference your storage "
"directory. To do this, you need to add the directory to the `api` and "
@ -212,15 +212,15 @@ msgid ""
"your `docker-compose.yml` file:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:142
#: ../../administrator_documentation/import_docs/index.md:152
msgid "Import your files"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:144
#: ../../administrator_documentation/import_docs/index.md:154
msgid "To use the in-place import method, follow these steps:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:154
#: ../../administrator_documentation/import_docs/index.md:168
msgid ""
"Add your storage location to your `.env` file if you don't want to link "
"it to the Funkwhale store. See the [in-place import configuration "
@ -228,21 +228,21 @@ msgid ""
"configuration) for more information."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:161
#: ../../administrator_documentation/import_docs/index.md:175
msgid ""
"Run your import command against your music storage directory. In this "
"example, the storage directory is `/srv/funkwhale/data/music/nfsshare`. "
"Replace this with your storage directory."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:167
#: ../../administrator_documentation/import_docs/index.md:180
#: ../../administrator_documentation/import_docs/index.md:181
#: ../../administrator_documentation/import_docs/index.md:195
msgid ""
"Funkwhale imports the music in your storage directory into the specified "
"library."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:173
#: ../../administrator_documentation/import_docs/index.md:188
msgid ""
"Add your storage location to your `.env` file if you don't want to bind "
"it to the Funkwhale store. See the [in-place import configuration "
@ -250,39 +250,39 @@ msgid ""
"configuration) for more information."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:174
#: ../../administrator_documentation/import_docs/index.md:189
msgid "Run your import command against your music storage directory:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:184
#: ../../administrator_documentation/import_docs/index.md:199
msgid "Album art"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:186
#: ../../administrator_documentation/import_docs/index.md:201
msgid ""
"Funkwhale attempts to import album art for your music library. The import"
" process checks for the following."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:188
#: ../../administrator_documentation/import_docs/index.md:203
msgid "The cover embedded in the audio files (works with FLAC and MP3 files)."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:189
#: ../../administrator_documentation/import_docs/index.md:204
msgid "A `cover.jpg` or `cover.png` in the the track's directory."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:190
#: ../../administrator_documentation/import_docs/index.md:205
msgid ""
"An `mbid` in the file's tags. If there is an `mbid`, the import process "
"tries to fetch cover art from Musicbrainz."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:192
#: ../../administrator_documentation/import_docs/index.md:207
msgid "Watch for filesystem changes"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:194
#: ../../administrator_documentation/import_docs/index.md:209
msgid ""
"You can run the `import_files` command any time you add new files or "
"update files. For larger collections, this may not be practical. To watch"
@ -291,108 +291,95 @@ msgid ""
"and update your database when something changes."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:196
#: ../../administrator_documentation/import_docs/index.md:211
msgid ""
"The `--watch` flag performs the following actions when it detects a "
"change:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:198
#: ../../administrator_documentation/import_docs/index.md:213
msgid "File created – imports the track."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:199
#: ../../administrator_documentation/import_docs/index.md:214
msgid "File moved – updates the location of the track in the database."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:200
#: ../../administrator_documentation/import_docs/index.md:215
msgid "File metadata updated – updates the track metadata in the database."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:201
#: ../../administrator_documentation/import_docs/index.md:216
msgid "File deleted – removes the file from the database."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:205
msgid ""
"The `import_files --watch` command watches for changes to the following "
"metadata fields:"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:207
msgid "Track mbid"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:208
msgid "Track title"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:209
msgid "Track position and disc number"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:210
msgid "Track license and copyright"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:211
msgid "Track genre"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:212
msgid "Album cover"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:213
msgid "Album title"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:214
msgid "Album mbid"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:215
msgid "Album release date"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:216
msgid "Artist name"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:217
msgid "Artist mbid"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:218
msgid "Album artist name"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:219
msgid "Album artist mbid"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:239
#: ../../administrator_documentation/import_docs/index.md:259
msgid "Prune dangling metadata"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:241
#: ../../administrator_documentation/import_docs/index.md:261
msgid ""
"Funkwhale doesn't delete track metadata when you delete a track. This is "
"useful if you want to delete a file but keep a record of a track for "
"created playlists or favorites."
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:243
#: ../../administrator_documentation/import_docs/index.md:263
msgid ""
"If you want to remove the file's metadata when you delete the file, run "
"`import_files` with the `--prune` flag. This flag removes the metadata of"
" any"
msgstr ""
#: ../../administrator_documentation/import_docs/index.md:246
#: ../../administrator_documentation/import_docs/index.md:266
msgid ""
"You can use the `--prune` flag with the `--watch` flag. This means "
"Funkwhale removes the metadata of referenced files you delete from your "
"storage."
msgstr ""
#~ msgid ""
#~ "The `import_files --watch` command watches "
#~ "for changes to the following metadata"
#~ " fields:"
#~ msgstr ""
#~ msgid "Track mbid"
#~ msgstr ""
#~ msgid "Track title"
#~ msgstr ""
#~ msgid "Track position and disc number"
#~ msgstr ""
#~ msgid "Track license and copyright"
#~ msgstr ""
#~ msgid "Track genre"
#~ msgstr ""
#~ msgid "Album cover"
#~ msgstr ""
#~ msgid "Album title"
#~ msgstr ""
#~ msgid "Album mbid"
#~ msgstr ""
#~ msgid "Album release date"
#~ msgstr ""
#~ msgid "Artist name"
#~ msgstr ""
#~ msgid "Artist mbid"
#~ msgstr ""
#~ msgid "Album artist name"
#~ msgstr ""
#~ msgid "Album artist mbid"
#~ msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../administrator_documentation/troubleshooting/backend.md:1
msgid "Troubleshoot backend issues"
@ -47,10 +47,10 @@ msgid "Nginx"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md
msgid "Apache"
msgid "Apache2"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:29
#: ../../administrator_documentation/troubleshooting/backend.md:33
msgid ""
"__API logs__ – check these if you are having issues with the Funkwhale "
"app, federation, or imports."
@ -64,37 +64,37 @@ msgstr ""
msgid "Docker"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:47
#: ../../administrator_documentation/troubleshooting/backend.md:56
msgid ""
"__Celery logs__ – check these if a federation or import task isn't "
"working."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:65
#: ../../administrator_documentation/troubleshooting/backend.md:79
msgid "Troubleshoot issues"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:67
#: ../../administrator_documentation/troubleshooting/backend.md:81
msgid "API issues"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:69
#: ../../administrator_documentation/troubleshooting/backend.md:83
msgid "If the API isn't serving audio files, try the following:"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:71
#: ../../administrator_documentation/troubleshooting/backend.md:85
msgid ""
"If youre using Docker, check you have commented out the `MEDIA_ROOT` "
"variable in your `.env` file."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:72
#: ../../administrator_documentation/troubleshooting/backend.md:86
msgid ""
"Check the `_protected/media` block in your webserver points to your media"
" path. This is `/srv/funkwhale/data/media` by default."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:73
#: ../../administrator_documentation/troubleshooting/backend.md:87
msgid ""
"If youre using the in-place import, check you have configured your media"
" paths. Check the `MUSIC_DIRECTORY_PATH`, `MUSIC_DIRECTORY_SERVE_PATH` "
@ -102,136 +102,143 @@ msgid ""
"webserver can read these directories."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:75
#: ../../administrator_documentation/troubleshooting/backend.md:89
msgid "Import issues"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:77
#: ../../administrator_documentation/troubleshooting/backend.md:91
msgid "If you're having issues importing files, try the following:"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:79
#: ../../administrator_documentation/troubleshooting/backend.md:93
msgid "Check that the file is encoded in a supported format"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:83
#: ../../administrator_documentation/troubleshooting/backend.md
msgid "Supported formats"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:97
msgid "flac"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:84
#: ../../administrator_documentation/troubleshooting/backend.md:98
msgid "ogg"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:85
#: ../../administrator_documentation/troubleshooting/backend.md:99
msgid "mp3"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:86
#: ../../administrator_documentation/troubleshooting/backend.md:100
msgid "opus"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:87
#: ../../administrator_documentation/troubleshooting/backend.md:101
msgid "aac"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:88
#: ../../administrator_documentation/troubleshooting/backend.md:102
msgid "m4a"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:89
#: ../../administrator_documentation/troubleshooting/backend.md:103
msgid "aiff"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:90
#: ../../administrator_documentation/troubleshooting/backend.md:104
msgid "aif"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:94
#: ../../administrator_documentation/troubleshooting/backend.md:108
msgid "Make sure your files play in another media player."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:95
#: ../../administrator_documentation/troubleshooting/backend.md:109
msgid ""
"Make sure your files are [tagged "
"correctly](../../user_documentation/libraries/tag_music.md)."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:96
#: ../../administrator_documentation/troubleshooting/backend.md:110
msgid "Check the Celery logs for errors during the import."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:98
#: ../../administrator_documentation/troubleshooting/backend.md:112
msgid "Federation issues"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:100
#: ../../administrator_documentation/troubleshooting/backend.md:114
msgid "If you are having issues accessing federated content, try the following:"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:102
#: ../../administrator_documentation/troubleshooting/backend.md:116
msgid ""
"Check that the remote library received your follow request and approved "
"it."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:103
#: ../../administrator_documentation/troubleshooting/backend.md:117
msgid "Trigger a library scan in the Funkwhale frontend."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:104
#: ../../administrator_documentation/troubleshooting/backend.md:118
msgid "Check the Celery logs for errors during the scan."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:106
#: ../../administrator_documentation/troubleshooting/backend.md:120
msgid "Memory tracing"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:108
#: ../../administrator_documentation/troubleshooting/backend.md:122
msgid ""
"If your Funkwhale server uses more memory than expected, you can check "
"the footprint of requests. This requires a middleware to check memory "
"allocation. To set up this middleware:"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:110
#: ../../administrator_documentation/troubleshooting/backend.md:124
msgid "Add the middleware to your `.env` file."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:116
#: ../../administrator_documentation/troubleshooting/backend.md:130
msgid "Enable memory tracing in your `.env` file."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:122
#: ../../administrator_documentation/troubleshooting/backend.md:156
#: ../../administrator_documentation/troubleshooting/backend.md:136
#: ../../administrator_documentation/troubleshooting/backend.md:175
msgid "Restart your Funkwhale server."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:140
#: ../../administrator_documentation/troubleshooting/backend.md:159
msgid ""
"The middleware prints out the top 25 memory allocations to the API logs. "
"You can use these to see what requests use the most memory."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:142
#: ../../administrator_documentation/troubleshooting/backend.md:161
msgid "To disable memory tracing:"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:144
#: ../../administrator_documentation/troubleshooting/backend.md:163
msgid "Remove the middleware from your `.env` file."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:150
#: ../../administrator_documentation/troubleshooting/backend.md:169
msgid "Disable memory tracing in your `.env` file."
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:174
#: ../../administrator_documentation/troubleshooting/backend.md:198
msgid "Get help"
msgstr ""
#: ../../administrator_documentation/troubleshooting/backend.md:176
#: ../../administrator_documentation/troubleshooting/backend.md:200
msgid ""
"If you can't solve the issue yourself, ask the community for help. Check "
"out the [get help](get_help.md) guide for information about where to ask "
"your question and what details to provide."
msgstr ""
#~ msgid "Apache"
#~ msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../administrator_documentation/uninstall_docs/debian.md:1
msgid "Uninstall Debian installation"
@ -73,13 +73,13 @@ msgstr ""
msgid "Nginx"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:54
#: ../../administrator_documentation/uninstall_docs/debian.md:72
#: ../../administrator_documentation/uninstall_docs/debian.md:58
#: ../../administrator_documentation/uninstall_docs/debian.md:77
msgid "Remove the configuration files from your web host."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:62
#: ../../administrator_documentation/uninstall_docs/debian.md:79
#: ../../administrator_documentation/uninstall_docs/debian.md:66
#: ../../administrator_documentation/uninstall_docs/debian.md:84
msgid "Reload the web server."
msgstr ""
@ -87,74 +87,77 @@ msgstr ""
msgid "Apache2"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:87
#: ../../administrator_documentation/uninstall_docs/debian.md:92
msgid "Remove the Funkwhale database"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:90
#: ../../administrator_documentation/uninstall_docs/debian.md:95
msgid ""
"This action is __irreversible__. Make sure you have [backed up your "
"data](../upgrade_docs/backup.md) before proceeding."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:93
#: ../../administrator_documentation/uninstall_docs/debian.md:98
msgid ""
"Once you have stopped the Funkwhale services, you can remove the "
"Funkwhale database."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:95
#: ../../administrator_documentation/uninstall_docs/debian.md:100
msgid "Navigate to your Funkwhale directory."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:101
#: ../../administrator_documentation/uninstall_docs/debian.md:106
msgid "Delete the Funkwhale database."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:107
#: ../../administrator_documentation/uninstall_docs/debian.md:112
msgid "Delete the Funkwhale user."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:113
#: ../../administrator_documentation/uninstall_docs/debian.md:118
msgid "Delete the Funkwhale account"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:116
#: ../../administrator_documentation/uninstall_docs/debian.md:121
msgid ""
"This action deletes the `/srv/funkwhale/` directory. Make sure you have "
"[backed up any data](../upgrade_docs/backup.md) you want to keep."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:119
#: ../../administrator_documentation/uninstall_docs/debian.md:124
msgid ""
"Once you have removed the database, you can delete the `funkwhale` user "
"and all associated data."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:125
#: ../../administrator_documentation/uninstall_docs/debian.md:130
msgid ""
"This deletes the `funkwhale` user and everything in their home directory "
"(`/srv/funkwhale/`). If your content is hosted in an S3-compatible store,"
" you need to delete this data separately."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:127
#: ../../administrator_documentation/uninstall_docs/debian.md:132
msgid "Uninstall dependencies"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:129
#: ../../administrator_documentation/uninstall_docs/debian.md:134
msgid "Funkwhale uses the following dependencies on your server:"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md
msgid "apt"
msgid "Apt"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md
msgid "Python"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/debian.md:160
#: ../../administrator_documentation/uninstall_docs/debian.md:170
msgid "Uninstall any dependencies you don't need."
msgstr ""
#~ msgid "apt"
#~ msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../administrator_documentation/uninstall_docs/quick_install.md:1
msgid "Uninstall using the quick install script"
@ -75,13 +75,13 @@ msgstr ""
msgid "Nginx"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:54
#: ../../administrator_documentation/uninstall_docs/quick_install.md:72
#: ../../administrator_documentation/uninstall_docs/quick_install.md:58
#: ../../administrator_documentation/uninstall_docs/quick_install.md:77
msgid "Remove the configuration files from your web host."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:62
#: ../../administrator_documentation/uninstall_docs/quick_install.md:79
#: ../../administrator_documentation/uninstall_docs/quick_install.md:66
#: ../../administrator_documentation/uninstall_docs/quick_install.md:84
msgid "Reload the web server."
msgstr ""
@ -89,76 +89,79 @@ msgstr ""
msgid "Apache2"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:87
#: ../../administrator_documentation/uninstall_docs/quick_install.md:92
msgid "Remove the Funkwhale database"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:90
#: ../../administrator_documentation/uninstall_docs/quick_install.md:95
msgid ""
"This action is __irreversible__. Make sure you have [backed up your "
"data](../upgrade_docs/backup.md) before proceeding."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:93
#: ../../administrator_documentation/uninstall_docs/quick_install.md:98
msgid ""
"Once you have stopped the Funkwhale services, you can remove the "
"Funkwhale database."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:95
#: ../../administrator_documentation/uninstall_docs/quick_install.md:100
msgid "Navigate to your Funkwhale directory."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:101
#: ../../administrator_documentation/uninstall_docs/quick_install.md:106
msgid "Delete the Funkwhale database."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:107
#: ../../administrator_documentation/uninstall_docs/quick_install.md:112
msgid "Delete the Funkwhale user."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:113
#: ../../administrator_documentation/uninstall_docs/quick_install.md:118
msgid "Delete the Funkwhale account"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:116
#: ../../administrator_documentation/uninstall_docs/quick_install.md:121
msgid ""
"This action deletes the `/srv/funkwhale/` directory. Make sure you have "
"[backed up any data](../upgrade_docs/backup.md) you want to keep."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:119
#: ../../administrator_documentation/uninstall_docs/quick_install.md:124
msgid ""
"Once you have removed the database, you can delete the `funkwhale` user "
"and all associated data."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:125
#: ../../administrator_documentation/uninstall_docs/quick_install.md:130
msgid ""
"This deletes the `funkwhale` user and everything in their home directory "
"(`/srv/funkwhale/`). If your content is hosted in an S3-compatible store,"
" you need to delete this data separately."
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:127
#: ../../administrator_documentation/uninstall_docs/quick_install.md:132
msgid "Uninstall dependencies"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:129
#: ../../administrator_documentation/uninstall_docs/quick_install.md:134
msgid ""
"The quick install script installs the following dependencies on your "
"server:"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md
msgid "apt"
msgid "Apt"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md
msgid "Python"
msgstr ""
#: ../../administrator_documentation/uninstall_docs/quick_install.md:160
#: ../../administrator_documentation/uninstall_docs/quick_install.md:170
msgid "Uninstall any dependencies you don't need."
msgstr ""
#~ msgid "apt"
#~ msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:20+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../index.md:7
msgid "User documentation"
@ -64,53 +64,67 @@ msgid ""
"{term}`Funkwhale pods <Pod>` or with other Fediverse software."
msgstr ""
#: ../../index.md:117
msgid "{fa}`user` Users"
#: ../../index.md:118
msgid "{fa}`user` Users"
msgstr ""
#: ../../index.md:120
#: ../../index.md:121
msgid ""
"Looking to use Funkwhale for your content? Read through our guides to "
"master the app!"
msgstr ""
#: ../../index.md:132
#: ../../index.md:125 ../../index.md:146 ../../index.md:167 ../../index.md:188
#: ../../index.md:213
msgid "Get started"
msgstr ""
#: ../../index.md:139
msgid "{fa}`wrench` Admins"
msgstr ""
#: ../../index.md:135
#: ../../index.md:142
msgid ""
"Want to host your own Funkwhale pod? Our admin documentation guides you "
"through the process."
msgstr ""
#: ../../index.md:146
#: ../../index.md:160
msgid "{fa}`shield` Moderators"
msgstr ""
#: ../../index.md:149
#: ../../index.md:163
msgid ""
"Keeping your users safe from harassment and spam or clearing illegal "
"content? Check out our moderator docs."
msgstr ""
#: ../../index.md:160
#: ../../index.md:181
msgid "{fa}`code` Developers"
msgstr ""
#: ../../index.md:163
#: ../../index.md:184
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:175
#: ../../index.md:206
msgid "{fa}`users` Contributors"
msgstr ""
#: ../../index.md:178
#: ../../index.md:209
msgid ""
"Want to help make Funkwhale even better? Check out these guides for some "
"ideas."
msgstr ""
#~ msgid "{fa}`user` Users"
#~ msgstr ""
#~ msgid "{fa}`user` Users"
#~ msgstr ""
#~ msgid "{octicon}`person` Users"
#~ msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/allow_listing/add_domain.md:1
msgid "Add a domain to your allow-list"
@ -27,17 +27,21 @@ msgid ""
"allow-list to interact with it. You can add new domains in two ways:"
msgstr ""
#: ../../moderator_documentation/allow_listing/add_domain.md:10
#: ../../moderator_documentation/allow_listing/add_domain.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/allow_listing/add_domain.md:12
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
msgstr ""
#: ../../moderator_documentation/allow_listing/add_domain.md:13
#: ../../moderator_documentation/allow_listing/add_domain.md:15
msgid "Add a new domain"
msgstr ""
#: ../../moderator_documentation/allow_listing/add_domain.md:15
#: ../../moderator_documentation/allow_listing/add_domain.md:17
msgid "To add a domain that is not currently in your domains list:"
msgstr ""
@ -45,53 +49,53 @@ msgstr ""
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
#: ../../moderator_documentation/allow_listing/add_domain.md:25
#: ../../moderator_documentation/allow_listing/add_domain.md:38
#: ../../moderator_documentation/allow_listing/add_domain.md:60
#: ../../moderator_documentation/allow_listing/add_domain.md:73
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/allow_listing/add_domain.md:20
#: ../../moderator_documentation/allow_listing/add_domain.md:50
#: ../../moderator_documentation/allow_listing/add_domain.md:26
#: ../../moderator_documentation/allow_listing/add_domain.md:61
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
#: ../../moderator_documentation/allow_listing/add_domain.md:27
#: ../../moderator_documentation/allow_listing/add_domain.md:40
#: ../../moderator_documentation/allow_listing/add_domain.md:62
#: ../../moderator_documentation/allow_listing/add_domain.md:75
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
#: ../../moderator_documentation/allow_listing/add_domain.md:28
#: ../../moderator_documentation/allow_listing/add_domain.md:41
#: ../../moderator_documentation/allow_listing/add_domain.md:63
#: ../../moderator_documentation/allow_listing/add_domain.md:76
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
#: ../../moderator_documentation/allow_listing/add_domain.md:29
#: ../../moderator_documentation/allow_listing/add_domain.md:42
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
#: ../../moderator_documentation/allow_listing/add_domain.md:30
#: ../../moderator_documentation/allow_listing/add_domain.md:43
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
#: ../../moderator_documentation/allow_listing/add_domain.md:31
#: ../../moderator_documentation/allow_listing/add_domain.md:44
msgid "Select {guilabel}`Add`."
msgstr ""
@ -99,45 +103,45 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/allow_listing/add_domain.md:32
#: ../../moderator_documentation/allow_listing/add_domain.md:62
#: ../../moderator_documentation/allow_listing/add_domain.md:39
#: ../../moderator_documentation/allow_listing/add_domain.md:74
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
#: ../../moderator_documentation/allow_listing/add_domain.md:48
msgid "That's it! You've added the domain to your pod's allow-list."
msgstr ""
#: ../../moderator_documentation/allow_listing/add_domain.md:43
#: ../../moderator_documentation/allow_listing/add_domain.md:50
msgid "Add a known domain"
msgstr ""
#: ../../moderator_documentation/allow_listing/add_domain.md:45
#: ../../moderator_documentation/allow_listing/add_domain.md:52
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
#: ../../moderator_documentation/allow_listing/add_domain.md:64
#: ../../moderator_documentation/allow_listing/add_domain.md:77
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
#: ../../moderator_documentation/allow_listing/add_domain.md:65
#: ../../moderator_documentation/allow_listing/add_domain.md:78
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
#: ../../moderator_documentation/allow_listing/add_domain.md:66
#: ../../moderator_documentation/allow_listing/add_domain.md:79
msgid ""
"Select {guilabel}`Go`. A green tick ({fa}`check`) appears next to the "
"domain(s)"
msgstr ""
#: ../../moderator_documentation/allow_listing/add_domain.md:71
#: ../../moderator_documentation/allow_listing/add_domain.md:83
msgid "You're done! You've added the domain to your pod's allow-list."
msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/allow_listing/remove_domain.md:1
msgid "Remove a domain from your allow-list"
@ -27,13 +27,17 @@ msgid ""
"communicating with it."
msgstr ""
#: ../../moderator_documentation/allow_listing/remove_domain.md:6
#: ../../moderator_documentation/allow_listing/remove_domain.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/allow_listing/remove_domain.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
msgstr ""
#: ../../moderator_documentation/allow_listing/remove_domain.md:9
#: ../../moderator_documentation/allow_listing/remove_domain.md:11
msgid "To remove a domain from your allow-list:"
msgstr ""
@ -41,46 +45,46 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../moderator_documentation/allow_listing/remove_domain.md:13
#: ../../moderator_documentation/allow_listing/remove_domain.md:25
#: ../../moderator_documentation/allow_listing/remove_domain.md:19
#: ../../moderator_documentation/allow_listing/remove_domain.md:32
msgid "Log in to your pod."
msgstr ""
#: ../../moderator_documentation/allow_listing/remove_domain.md:14
#: ../../moderator_documentation/allow_listing/remove_domain.md:20
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
#: ../../moderator_documentation/allow_listing/remove_domain.md:21
#: ../../moderator_documentation/allow_listing/remove_domain.md:34
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
#: ../../moderator_documentation/allow_listing/remove_domain.md:22
#: ../../moderator_documentation/allow_listing/remove_domain.md:35
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
#: ../../moderator_documentation/allow_listing/remove_domain.md:23
#: ../../moderator_documentation/allow_listing/remove_domain.md:36
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
#: ../../moderator_documentation/allow_listing/remove_domain.md:24
#: ../../moderator_documentation/allow_listing/remove_domain.md:37
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
#: ../../moderator_documentation/allow_listing/remove_domain.md:25
#: ../../moderator_documentation/allow_listing/remove_domain.md:38
msgid "Select {guilabel}`Go`."
msgstr ""
@ -88,13 +92,13 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/allow_listing/remove_domain.md:26
#: ../../moderator_documentation/allow_listing/remove_domain.md:33
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
#: ../../moderator_documentation/allow_listing/remove_domain.md:42
msgid "You're done! You've removed the domain from your pod's allow-list."
msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/content/delete_content.md:1
msgid "Delete content from your pod"
@ -34,23 +34,27 @@ msgid ""
"this feature to handle content that violates your pod's rules."
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:10
#: ../../moderator_documentation/content/delete_content.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:12
msgid "{guilabel}`Moderation` – provides access to the administration menu."
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:11
#: ../../moderator_documentation/content/delete_content.md:13
msgid "{guilabel}`Library` – provides access to the library menu."
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:14
#: ../../moderator_documentation/content/delete_content.md:16
msgid "There are two ways to delete content:"
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:20
#: ../../moderator_documentation/content/delete_content.md:22
msgid "Delete individual objects"
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:22
#: ../../moderator_documentation/content/delete_content.md:24
msgid "If you want to delete a specific object:"
msgstr ""
@ -58,104 +62,104 @@ msgstr ""
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
#: ../../moderator_documentation/content/delete_content.md:32
#: ../../moderator_documentation/content/delete_content.md:53
#: ../../moderator_documentation/content/delete_content.md:83
#: ../../moderator_documentation/content/delete_content.md:105
msgid "Log in to your pod."
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:27
#: ../../moderator_documentation/content/delete_content.md:73
#: ../../moderator_documentation/content/delete_content.md:33
#: ../../moderator_documentation/content/delete_content.md:84
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
#: ../../moderator_documentation/content/delete_content.md:34
#: ../../moderator_documentation/content/delete_content.md:55
#: ../../moderator_documentation/content/delete_content.md:85
#: ../../moderator_documentation/content/delete_content.md:107
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
#: ../../moderator_documentation/content/delete_content.md:35
#: ../../moderator_documentation/content/delete_content.md:56
#: ../../moderator_documentation/content/delete_content.md:86
#: ../../moderator_documentation/content/delete_content.md:108
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
#: ../../moderator_documentation/content/delete_content.md:36
#: ../../moderator_documentation/content/delete_content.md:57
#: ../../moderator_documentation/content/delete_content.md:87
#: ../../moderator_documentation/content/delete_content.md:109
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
#: ../../moderator_documentation/content/delete_content.md:37
#: ../../moderator_documentation/content/delete_content.md:58
#: ../../moderator_documentation/content/delete_content.md:88
#: ../../moderator_documentation/content/delete_content.md:110
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
#: ../../moderator_documentation/content/delete_content.md:38
#: ../../moderator_documentation/content/delete_content.md:59
#: ../../moderator_documentation/content/delete_content.md:89
#: ../../moderator_documentation/content/delete_content.md:111
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
#: ../../moderator_documentation/content/delete_content.md:39
#: ../../moderator_documentation/content/delete_content.md:60
#: ../../moderator_documentation/content/delete_content.md:90
#: ../../moderator_documentation/content/delete_content.md:112
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
#: ../../moderator_documentation/content/delete_content.md:40
#: ../../moderator_documentation/content/delete_content.md:61
#: ../../moderator_documentation/content/delete_content.md:91
#: ../../moderator_documentation/content/delete_content.md:113
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
#: ../../moderator_documentation/content/delete_content.md:41
#: ../../moderator_documentation/content/delete_content.md:62
#: ../../moderator_documentation/content/delete_content.md:92
#: ../../moderator_documentation/content/delete_content.md:114
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
#: ../../moderator_documentation/content/delete_content.md:42
#: ../../moderator_documentation/content/delete_content.md:63
#: ../../moderator_documentation/content/delete_content.md:93
#: ../../moderator_documentation/content/delete_content.md:115
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
#: ../../moderator_documentation/content/delete_content.md:43
#: ../../moderator_documentation/content/delete_content.md:64
#: ../../moderator_documentation/content/delete_content.md:94
#: ../../moderator_documentation/content/delete_content.md:116
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
#: ../../moderator_documentation/content/delete_content.md:44
#: ../../moderator_documentation/content/delete_content.md:65
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
#: ../../moderator_documentation/content/delete_content.md:45
#: ../../moderator_documentation/content/delete_content.md:66
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
#: ../../moderator_documentation/content/delete_content.md:46
#: ../../moderator_documentation/content/delete_content.md:67
msgid "Select {guilabel}`Delete`."
msgstr ""
@ -163,50 +167,50 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:47
#: ../../moderator_documentation/content/delete_content.md:94
#: ../../moderator_documentation/content/delete_content.md:54
#: ../../moderator_documentation/content/delete_content.md:106
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
#: ../../moderator_documentation/content/delete_content.md:71
msgid "That's it! You've deleted the object."
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:66
#: ../../moderator_documentation/content/delete_content.md:73
msgid "Delete objects in bulk"
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:68
#: ../../moderator_documentation/content/delete_content.md:75
msgid "To delete several items at once:"
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:84
#: ../../moderator_documentation/content/delete_content.md:105
#: ../../moderator_documentation/content/delete_content.md:95
#: ../../moderator_documentation/content/delete_content.md:117
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
#: ../../moderator_documentation/content/delete_content.md:96
#: ../../moderator_documentation/content/delete_content.md:118
msgid "Select {guilabel}`Delete` in the {guilabel}`Actions` dropdown."
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:86
#: ../../moderator_documentation/content/delete_content.md:107
#: ../../moderator_documentation/content/delete_content.md:97
#: ../../moderator_documentation/content/delete_content.md:119
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
#: ../../moderator_documentation/content/delete_content.md:98
#: ../../moderator_documentation/content/delete_content.md:120
msgid "Select {guilabel}`Launch`."
msgstr ""
#: ../../moderator_documentation/content/delete_content.md:112
#: ../../moderator_documentation/content/delete_content.md:124
msgid "You're done! You've deleted the selected objects from your pod."
msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/content/handle_edits.md:1
msgid "Handle edits"
@ -35,49 +35,53 @@ msgid ""
" and pod admins can accept or reject these edits."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:10
#: ../../moderator_documentation/content/handle_edits.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:12
msgid "{guilabel}`Moderation` – provides access to the administration menu."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:11
#: ../../moderator_documentation/content/handle_edits.md:13
msgid "{guilabel}`Library` – provides access to the library menu."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:14
#: ../../moderator_documentation/content/handle_edits.md:16
msgid "Each edit object contains the following information:"
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:16
#: ../../moderator_documentation/content/handle_edits.md:18
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
#: ../../moderator_documentation/content/handle_edits.md:19
msgid "A timestamp of when the user suggested the edit."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:18
#: ../../moderator_documentation/content/handle_edits.md:20
msgid "The status of the edit."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:19
#: ../../moderator_documentation/content/handle_edits.md:21
msgid "The {guilabel}`Field` that the user edited."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:20
#: ../../moderator_documentation/content/handle_edits.md:22
msgid "The {guilabel}`Old value` that the user edited."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:21
#: ../../moderator_documentation/content/handle_edits.md:23
msgid "The {guilabel}`New value` that the user entered."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:22
#: ../../moderator_documentation/content/handle_edits.md:24
msgid "The user who suggested the edit."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:24
#: ../../moderator_documentation/content/handle_edits.md:26
msgid "To review suggested edits:"
msgstr ""
@ -85,43 +89,43 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:28
#: ../../moderator_documentation/content/handle_edits.md:40
#: ../../moderator_documentation/content/handle_edits.md:34
#: ../../moderator_documentation/content/handle_edits.md:47
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:29
#: ../../moderator_documentation/content/handle_edits.md:35
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
#: ../../moderator_documentation/content/handle_edits.md:36
#: ../../moderator_documentation/content/handle_edits.md:49
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
#: ../../moderator_documentation/content/handle_edits.md:37
#: ../../moderator_documentation/content/handle_edits.md:50
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
#: ../../moderator_documentation/content/handle_edits.md:38
#: ../../moderator_documentation/content/handle_edits.md:51
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
#: ../../moderator_documentation/content/handle_edits.md:39
#: ../../moderator_documentation/content/handle_edits.md:52
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
#: ../../moderator_documentation/content/handle_edits.md:40
#: ../../moderator_documentation/content/handle_edits.md:53
msgid ""
"{guilabel}`Delete` – delete the edit suggestion without taking further "
"action. The object remains in its current state."
@ -131,13 +135,13 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/content/handle_edits.md:41
#: ../../moderator_documentation/content/handle_edits.md:48
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
#: ../../moderator_documentation/content/handle_edits.md:57
msgid ""
"That's it! You've handled the edit request. You can use the filters on "
"this page to search for historical requests."

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/content/library_visibility.md:1
msgid "Change the visibility of a library"
@ -34,15 +34,19 @@ msgid ""
" and protects your pod from legal issues."
msgstr ""
#: ../../moderator_documentation/content/library_visibility.md:10
#: ../../moderator_documentation/content/library_visibility.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/content/library_visibility.md:12
msgid "{guilabel}`Moderation` – provides access to the administration menu."
msgstr ""
#: ../../moderator_documentation/content/library_visibility.md:11
#: ../../moderator_documentation/content/library_visibility.md:13
msgid "{guilabel}`Library` – provides access to the library menu."
msgstr ""
#: ../../moderator_documentation/content/library_visibility.md:14
#: ../../moderator_documentation/content/library_visibility.md:16
msgid "To change the visibility of a library:"
msgstr ""
@ -50,59 +54,59 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../moderator_documentation/content/library_visibility.md:18
#: ../../moderator_documentation/content/library_visibility.md:32
#: ../../moderator_documentation/content/library_visibility.md:24
#: ../../moderator_documentation/content/library_visibility.md:39
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/content/library_visibility.md:19
#: ../../moderator_documentation/content/library_visibility.md:25
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
#: ../../moderator_documentation/content/library_visibility.md:26
#: ../../moderator_documentation/content/library_visibility.md:41
msgid "Select {guilabel}`Library`. The {guilabel}`Edits` page opens."
msgstr ""
#: ../../moderator_documentation/content/library_visibility.md:21
#: ../../moderator_documentation/content/library_visibility.md:35
#: ../../moderator_documentation/content/library_visibility.md:27
#: ../../moderator_documentation/content/library_visibility.md:42
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
#: ../../moderator_documentation/content/library_visibility.md:28
#: ../../moderator_documentation/content/library_visibility.md:43
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
#: ../../moderator_documentation/content/library_visibility.md:29
#: ../../moderator_documentation/content/library_visibility.md:44
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
#: ../../moderator_documentation/content/library_visibility.md:30
#: ../../moderator_documentation/content/library_visibility.md:45
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
#: ../../moderator_documentation/content/library_visibility.md:31
#: ../../moderator_documentation/content/library_visibility.md:46
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
#: ../../moderator_documentation/content/library_visibility.md:32
#: ../../moderator_documentation/content/library_visibility.md:47
msgid "{guilabel}`Everyone` – makes the library visible to users across all pods."
msgstr ""
@ -110,13 +114,13 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/content/library_visibility.md:33
#: ../../moderator_documentation/content/library_visibility.md:40
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
#: ../../moderator_documentation/content/library_visibility.md:51
msgid ""
"That's it! You've updated the library's visibility. You should contact "
"the user informing them of the action."

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/domains/add_domain.md:1
msgid "Add a domain to your pod's domain list"
@ -28,13 +28,17 @@ msgid ""
"[add moderation rules](add_rule.md) to it."
msgstr ""
#: ../../moderator_documentation/domains/add_domain.md:6
#: ../../moderator_documentation/domains/add_domain.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/domains/add_domain.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
msgstr ""
#: ../../moderator_documentation/domains/add_domain.md:9
#: ../../moderator_documentation/domains/add_domain.md:11
msgid ""
"You can also add domains to this list at any time to create rules before "
"users interact with them. To do this:"
@ -44,39 +48,39 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../moderator_documentation/domains/add_domain.md:13
#: ../../moderator_documentation/domains/add_domain.md:24
#: ../../moderator_documentation/domains/add_domain.md:19
#: ../../moderator_documentation/domains/add_domain.md:31
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/domains/add_domain.md:14
#: ../../moderator_documentation/domains/add_domain.md:20
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
#: ../../moderator_documentation/domains/add_domain.md:21
#: ../../moderator_documentation/domains/add_domain.md:33
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr ""
#: ../../moderator_documentation/domains/add_domain.md:16
#: ../../moderator_documentation/domains/add_domain.md:27
#: ../../moderator_documentation/domains/add_domain.md:22
#: ../../moderator_documentation/domains/add_domain.md:34
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
#: ../../moderator_documentation/domains/add_domain.md:23
#: ../../moderator_documentation/domains/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/domains/add_domain.md:18
#: ../../moderator_documentation/domains/add_domain.md:29
#: ../../moderator_documentation/domains/add_domain.md:24
#: ../../moderator_documentation/domains/add_domain.md:36
msgid ""
"Select {guilabel}`Add` to add the domain. The domain moderation page "
"opens."
@ -86,13 +90,13 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/domains/add_domain.md:25
#: ../../moderator_documentation/domains/add_domain.md:32
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
#: ../../moderator_documentation/domains/add_domain.md:40
msgid ""
"That's it! The domain is now in your domains list. You can now add "
"moderation rules to this domain."

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/domains/add_rule.md:1
msgid "Add a moderation rule"
@ -35,13 +35,17 @@ msgid ""
"domain showing on your pod."
msgstr ""
#: ../../moderator_documentation/domains/add_rule.md:10
#: ../../moderator_documentation/domains/add_rule.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/domains/add_rule.md:12
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
msgstr ""
#: ../../moderator_documentation/domains/add_rule.md:13
#: ../../moderator_documentation/domains/add_rule.md:15
msgid "To add a moderation rule to a domain:"
msgstr ""
@ -49,72 +53,72 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../moderator_documentation/domains/add_rule.md:17
#: ../../moderator_documentation/domains/add_rule.md:33
#: ../../moderator_documentation/domains/add_rule.md:23
#: ../../moderator_documentation/domains/add_rule.md:40
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/domains/add_rule.md:18
#: ../../moderator_documentation/domains/add_rule.md:24
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
#: ../../moderator_documentation/domains/add_rule.md:25
#: ../../moderator_documentation/domains/add_rule.md:42
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr ""
#: ../../moderator_documentation/domains/add_rule.md:20
#: ../../moderator_documentation/domains/add_rule.md:36
#: ../../moderator_documentation/domains/add_rule.md:26
#: ../../moderator_documentation/domains/add_rule.md:43
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
#: ../../moderator_documentation/domains/add_rule.md:27
#: ../../moderator_documentation/domains/add_rule.md:44
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
#: ../../moderator_documentation/domains/add_rule.md:28
#: ../../moderator_documentation/domains/add_rule.md:45
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
#: ../../moderator_documentation/domains/add_rule.md:29
#: ../../moderator_documentation/domains/add_rule.md:46
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
#: ../../moderator_documentation/domains/add_rule.md:30
#: ../../moderator_documentation/domains/add_rule.md:47
msgid "Choose your moderation rule:"
msgstr ""
#: ../../moderator_documentation/domains/add_rule.md:25
#: ../../moderator_documentation/domains/add_rule.md:41
#: ../../moderator_documentation/domains/add_rule.md:31
#: ../../moderator_documentation/domains/add_rule.md:48
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
#: ../../moderator_documentation/domains/add_rule.md:32
#: ../../moderator_documentation/domains/add_rule.md:49
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
#: ../../moderator_documentation/domains/add_rule.md:33
#: ../../moderator_documentation/domains/add_rule.md:50
msgid "Select {guilabel}`Create` to save your rule."
msgstr ""
@ -122,13 +126,13 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/domains/add_rule.md:34
#: ../../moderator_documentation/domains/add_rule.md:41
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
#: ../../moderator_documentation/domains/add_rule.md:54
msgid ""
"That's all there is to it! You've applied your moderation rule. The rule "
"takes effect as soon as you create it."

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/domains/delete_rule.md:1
msgid "Delete a moderation rule"
@ -27,13 +27,17 @@ msgid ""
"This allows the other server to interact with your pod normally."
msgstr ""
#: ../../moderator_documentation/domains/delete_rule.md:6
#: ../../moderator_documentation/domains/delete_rule.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/domains/delete_rule.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
msgstr ""
#: ../../moderator_documentation/domains/delete_rule.md:9
#: ../../moderator_documentation/domains/delete_rule.md:11
msgid "To delete an existing moderation rule:"
msgstr ""
@ -41,53 +45,53 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../moderator_documentation/domains/delete_rule.md:13
#: ../../moderator_documentation/domains/delete_rule.md:26
#: ../../moderator_documentation/domains/delete_rule.md:19
#: ../../moderator_documentation/domains/delete_rule.md:33
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/domains/delete_rule.md:14
#: ../../moderator_documentation/domains/delete_rule.md:20
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
#: ../../moderator_documentation/domains/delete_rule.md:21
#: ../../moderator_documentation/domains/delete_rule.md:35
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr ""
#: ../../moderator_documentation/domains/delete_rule.md:16
#: ../../moderator_documentation/domains/delete_rule.md:29
#: ../../moderator_documentation/domains/delete_rule.md:22
#: ../../moderator_documentation/domains/delete_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/delete_rule.md:17
#: ../../moderator_documentation/domains/delete_rule.md:30
#: ../../moderator_documentation/domains/delete_rule.md:23
#: ../../moderator_documentation/domains/delete_rule.md:37
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
#: ../../moderator_documentation/domains/delete_rule.md:24
#: ../../moderator_documentation/domains/delete_rule.md:38
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
#: ../../moderator_documentation/domains/delete_rule.md:25
#: ../../moderator_documentation/domains/delete_rule.md:39
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
#: ../../moderator_documentation/domains/delete_rule.md:26
#: ../../moderator_documentation/domains/delete_rule.md:40
msgid "Select {guilabel}`Delete moderation rule`."
msgstr ""
@ -95,13 +99,13 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/domains/delete_rule.md:27
#: ../../moderator_documentation/domains/delete_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/delete_rule.md:37
#: ../../moderator_documentation/domains/delete_rule.md:44
msgid ""
"That's it! You've deleted your moderation rule. Content from the domain "
"will no longer get blocked."

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/domains/edit_rule.md:1
msgid "Edit a moderation rule"
@ -32,13 +32,17 @@ msgstr ""
msgid "You can change a moderation rule on a domain at any time."
msgstr ""
#: ../../moderator_documentation/domains/edit_rule.md:10
#: ../../moderator_documentation/domains/edit_rule.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/domains/edit_rule.md:12
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
msgstr ""
#: ../../moderator_documentation/domains/edit_rule.md:13
#: ../../moderator_documentation/domains/edit_rule.md:15
msgid "To update an existing moderation rule:"
msgstr ""
@ -46,82 +50,82 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../moderator_documentation/domains/edit_rule.md:17
#: ../../moderator_documentation/domains/edit_rule.md:35
#: ../../moderator_documentation/domains/edit_rule.md:23
#: ../../moderator_documentation/domains/edit_rule.md:42
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/domains/edit_rule.md:18
#: ../../moderator_documentation/domains/edit_rule.md:24
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
#: ../../moderator_documentation/domains/edit_rule.md:25
#: ../../moderator_documentation/domains/edit_rule.md:44
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr ""
#: ../../moderator_documentation/domains/edit_rule.md:20
#: ../../moderator_documentation/domains/edit_rule.md:38
#: ../../moderator_documentation/domains/edit_rule.md:26
#: ../../moderator_documentation/domains/edit_rule.md:45
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
#: ../../moderator_documentation/domains/edit_rule.md:27
#: ../../moderator_documentation/domains/edit_rule.md:46
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
#: ../../moderator_documentation/domains/edit_rule.md:28
#: ../../moderator_documentation/domains/edit_rule.md:47
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
#: ../../moderator_documentation/domains/edit_rule.md:29
#: ../../moderator_documentation/domains/edit_rule.md:48
msgid "__Optional__ – Edit the following settings:"
msgstr ""
#: ../../moderator_documentation/domains/edit_rule.md:24
#: ../../moderator_documentation/domains/edit_rule.md:42
#: ../../moderator_documentation/domains/edit_rule.md:30
#: ../../moderator_documentation/domains/edit_rule.md:49
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
#: ../../moderator_documentation/domains/edit_rule.md:31
#: ../../moderator_documentation/domains/edit_rule.md:50
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
#: ../../moderator_documentation/domains/edit_rule.md:32
#: ../../moderator_documentation/domains/edit_rule.md:51
msgid "__Optional__ – Update your moderation rule:"
msgstr ""
#: ../../moderator_documentation/domains/edit_rule.md:27
#: ../../moderator_documentation/domains/edit_rule.md:45
#: ../../moderator_documentation/domains/edit_rule.md:33
#: ../../moderator_documentation/domains/edit_rule.md:52
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
#: ../../moderator_documentation/domains/edit_rule.md:34
#: ../../moderator_documentation/domains/edit_rule.md:53
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
#: ../../moderator_documentation/domains/edit_rule.md:35
#: ../../moderator_documentation/domains/edit_rule.md:54
msgid "Select {guilabel}`Update` to save your rule."
msgstr ""
@ -129,13 +133,13 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/domains/edit_rule.md:36
#: ../../moderator_documentation/domains/edit_rule.md:43
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
#: ../../moderator_documentation/domains/edit_rule.md:58
msgid "You're done! The changes to the rule take effect as soon as you update it."
msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/domains/purge_domain.md:1
msgid "Purge domain data"
@ -35,13 +35,17 @@ msgid ""
"purge the content associated with it."
msgstr ""
#: ../../moderator_documentation/domains/purge_domain.md:10
#: ../../moderator_documentation/domains/purge_domain.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/domains/purge_domain.md:12
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
msgstr ""
#: ../../moderator_documentation/domains/purge_domain.md:13
#: ../../moderator_documentation/domains/purge_domain.md:15
msgid "To purge content from a domain:"
msgstr ""
@ -49,51 +53,51 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../moderator_documentation/domains/purge_domain.md:17
#: ../../moderator_documentation/domains/purge_domain.md:30
#: ../../moderator_documentation/domains/purge_domain.md:23
#: ../../moderator_documentation/domains/purge_domain.md:37
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/domains/purge_domain.md:18
#: ../../moderator_documentation/domains/purge_domain.md:24
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
#: ../../moderator_documentation/domains/purge_domain.md:25
#: ../../moderator_documentation/domains/purge_domain.md:39
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr ""
#: ../../moderator_documentation/domains/purge_domain.md:20
#: ../../moderator_documentation/domains/purge_domain.md:33
#: ../../moderator_documentation/domains/purge_domain.md:26
#: ../../moderator_documentation/domains/purge_domain.md:40
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
#: ../../moderator_documentation/domains/purge_domain.md:27
#: ../../moderator_documentation/domains/purge_domain.md:41
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
#: ../../moderator_documentation/domains/purge_domain.md:28
#: ../../moderator_documentation/domains/purge_domain.md:42
msgid "Select {guilabel}`Purge` in the {guilabel}`Actions` dropdown."
msgstr ""
#: ../../moderator_documentation/domains/purge_domain.md:23
#: ../../moderator_documentation/domains/purge_domain.md:36
#: ../../moderator_documentation/domains/purge_domain.md:29
#: ../../moderator_documentation/domains/purge_domain.md:43
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
#: ../../moderator_documentation/domains/purge_domain.md:30
#: ../../moderator_documentation/domains/purge_domain.md:44
msgid "Select {guilabel}`Launch`."
msgstr ""
@ -101,13 +105,13 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/domains/purge_domain.md:31
#: ../../moderator_documentation/domains/purge_domain.md:38
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
#: ../../moderator_documentation/domains/purge_domain.md:48
msgid ""
"You're done! Your pod clears all the content associated with the selected"
" domains."

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/external_users/add_rule.md:1
msgid "Add a moderation rule"
@ -35,13 +35,17 @@ msgid ""
"showing on your pod."
msgstr ""
#: ../../moderator_documentation/external_users/add_rule.md:10
#: ../../moderator_documentation/external_users/add_rule.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/external_users/add_rule.md:12
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
msgstr ""
#: ../../moderator_documentation/external_users/add_rule.md:13
#: ../../moderator_documentation/external_users/add_rule.md:15
msgid "To add a moderation rule to a user:"
msgstr ""
@ -49,72 +53,72 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../moderator_documentation/external_users/add_rule.md:17
#: ../../moderator_documentation/external_users/add_rule.md:33
#: ../../moderator_documentation/external_users/add_rule.md:23
#: ../../moderator_documentation/external_users/add_rule.md:40
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/external_users/add_rule.md:18
#: ../../moderator_documentation/external_users/add_rule.md:24
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
#: ../../moderator_documentation/external_users/add_rule.md:25
#: ../../moderator_documentation/external_users/add_rule.md:42
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
#: ../../moderator_documentation/external_users/add_rule.md:26
#: ../../moderator_documentation/external_users/add_rule.md:43
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
#: ../../moderator_documentation/external_users/add_rule.md:27
#: ../../moderator_documentation/external_users/add_rule.md:44
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
#: ../../moderator_documentation/external_users/add_rule.md:28
#: ../../moderator_documentation/external_users/add_rule.md:45
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
#: ../../moderator_documentation/external_users/add_rule.md:29
#: ../../moderator_documentation/external_users/add_rule.md:46
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
#: ../../moderator_documentation/external_users/add_rule.md:30
#: ../../moderator_documentation/external_users/add_rule.md:47
msgid "Choose your moderation rule:"
msgstr ""
#: ../../moderator_documentation/external_users/add_rule.md:25
#: ../../moderator_documentation/external_users/add_rule.md:41
#: ../../moderator_documentation/external_users/add_rule.md:31
#: ../../moderator_documentation/external_users/add_rule.md:48
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
#: ../../moderator_documentation/external_users/add_rule.md:32
#: ../../moderator_documentation/external_users/add_rule.md:49
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
#: ../../moderator_documentation/external_users/add_rule.md:33
#: ../../moderator_documentation/external_users/add_rule.md:50
msgid "Select {guilabel}`Create` to save your rule."
msgstr ""
@ -122,13 +126,13 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/external_users/add_rule.md:34
#: ../../moderator_documentation/external_users/add_rule.md:41
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
#: ../../moderator_documentation/external_users/add_rule.md:54
msgid ""
"That's all there is to it! You've applied your moderation rule. The rule "
"takes effect as soon as you create it."

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/external_users/delete_rule.md:1
msgid "Delete a moderation rule"
@ -27,13 +27,17 @@ msgid ""
"This allows the user to interact with your pod normally."
msgstr ""
#: ../../moderator_documentation/external_users/delete_rule.md:6
#: ../../moderator_documentation/external_users/delete_rule.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/external_users/delete_rule.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
msgstr ""
#: ../../moderator_documentation/external_users/delete_rule.md:9
#: ../../moderator_documentation/external_users/delete_rule.md:11
msgid "To delete an existing moderation rule:"
msgstr ""
@ -41,52 +45,52 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../moderator_documentation/external_users/delete_rule.md:13
#: ../../moderator_documentation/external_users/delete_rule.md:26
#: ../../moderator_documentation/external_users/delete_rule.md:19
#: ../../moderator_documentation/external_users/delete_rule.md:33
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/external_users/delete_rule.md:14
#: ../../moderator_documentation/external_users/delete_rule.md:20
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
#: ../../moderator_documentation/external_users/delete_rule.md:21
#: ../../moderator_documentation/external_users/delete_rule.md:35
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
#: ../../moderator_documentation/external_users/delete_rule.md:22
#: ../../moderator_documentation/external_users/delete_rule.md:36
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
#: ../../moderator_documentation/external_users/delete_rule.md:23
#: ../../moderator_documentation/external_users/delete_rule.md:37
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
#: ../../moderator_documentation/external_users/delete_rule.md:24
#: ../../moderator_documentation/external_users/delete_rule.md:38
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
#: ../../moderator_documentation/external_users/delete_rule.md:25
#: ../../moderator_documentation/external_users/delete_rule.md:39
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
#: ../../moderator_documentation/external_users/delete_rule.md:26
#: ../../moderator_documentation/external_users/delete_rule.md:40
msgid "Select {guilabel}`Delete moderation rule`."
msgstr ""
@ -94,13 +98,13 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/external_users/delete_rule.md:27
#: ../../moderator_documentation/external_users/delete_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/delete_rule.md:37
#: ../../moderator_documentation/external_users/delete_rule.md:44
msgid ""
"That's it! You've deleted your moderation rule. Content from the user "
"will no longer get blocked."

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/external_users/edit_rule.md:1
msgid "Edit a moderation rule"
@ -32,13 +32,17 @@ msgstr ""
msgid "You can change a moderation rule on a user at any time."
msgstr ""
#: ../../moderator_documentation/external_users/edit_rule.md:10
#: ../../moderator_documentation/external_users/edit_rule.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/external_users/edit_rule.md:12
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
msgstr ""
#: ../../moderator_documentation/external_users/edit_rule.md:13
#: ../../moderator_documentation/external_users/edit_rule.md:15
msgid "To update an existing moderation rule:"
msgstr ""
@ -46,81 +50,81 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../moderator_documentation/external_users/edit_rule.md:17
#: ../../moderator_documentation/external_users/edit_rule.md:35
#: ../../moderator_documentation/external_users/edit_rule.md:23
#: ../../moderator_documentation/external_users/edit_rule.md:42
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/external_users/edit_rule.md:18
#: ../../moderator_documentation/external_users/edit_rule.md:24
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
#: ../../moderator_documentation/external_users/edit_rule.md:25
#: ../../moderator_documentation/external_users/edit_rule.md:44
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
#: ../../moderator_documentation/external_users/edit_rule.md:26
#: ../../moderator_documentation/external_users/edit_rule.md:45
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
#: ../../moderator_documentation/external_users/edit_rule.md:27
#: ../../moderator_documentation/external_users/edit_rule.md:46
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
#: ../../moderator_documentation/external_users/edit_rule.md:28
#: ../../moderator_documentation/external_users/edit_rule.md:47
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
#: ../../moderator_documentation/external_users/edit_rule.md:29
#: ../../moderator_documentation/external_users/edit_rule.md:48
msgid "__Optional__ – Edit the following settings:"
msgstr ""
#: ../../moderator_documentation/external_users/edit_rule.md:24
#: ../../moderator_documentation/external_users/edit_rule.md:42
#: ../../moderator_documentation/external_users/edit_rule.md:30
#: ../../moderator_documentation/external_users/edit_rule.md:49
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
#: ../../moderator_documentation/external_users/edit_rule.md:31
#: ../../moderator_documentation/external_users/edit_rule.md:50
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
#: ../../moderator_documentation/external_users/edit_rule.md:32
#: ../../moderator_documentation/external_users/edit_rule.md:51
msgid "__Optional__ – Update your moderation rule:"
msgstr ""
#: ../../moderator_documentation/external_users/edit_rule.md:27
#: ../../moderator_documentation/external_users/edit_rule.md:45
#: ../../moderator_documentation/external_users/edit_rule.md:33
#: ../../moderator_documentation/external_users/edit_rule.md:52
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
#: ../../moderator_documentation/external_users/edit_rule.md:34
#: ../../moderator_documentation/external_users/edit_rule.md:53
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
#: ../../moderator_documentation/external_users/edit_rule.md:35
#: ../../moderator_documentation/external_users/edit_rule.md:54
msgid "Select {guilabel}`Update` to save your rule."
msgstr ""
@ -128,13 +132,13 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/external_users/edit_rule.md:36
#: ../../moderator_documentation/external_users/edit_rule.md:43
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
#: ../../moderator_documentation/external_users/edit_rule.md:58
msgid "You're done! The changes to the rule take effect as soon as you update it."
msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/external_users/purge_users.md:1
msgid "Purge user data"
@ -35,13 +35,17 @@ msgid ""
"purge the content associated with them."
msgstr ""
#: ../../moderator_documentation/external_users/purge_users.md:10
#: ../../moderator_documentation/external_users/purge_users.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/external_users/purge_users.md:12
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
msgstr ""
#: ../../moderator_documentation/external_users/purge_users.md:13
#: ../../moderator_documentation/external_users/purge_users.md:15
msgid "To purge a user's content:"
msgstr ""
@ -49,51 +53,51 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../moderator_documentation/external_users/purge_users.md:17
#: ../../moderator_documentation/external_users/purge_users.md:30
#: ../../moderator_documentation/external_users/purge_users.md:23
#: ../../moderator_documentation/external_users/purge_users.md:37
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/external_users/purge_users.md:18
#: ../../moderator_documentation/external_users/purge_users.md:24
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
#: ../../moderator_documentation/external_users/purge_users.md:25
#: ../../moderator_documentation/external_users/purge_users.md:39
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
#: ../../moderator_documentation/external_users/purge_users.md:26
#: ../../moderator_documentation/external_users/purge_users.md:40
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
#: ../../moderator_documentation/external_users/purge_users.md:27
#: ../../moderator_documentation/external_users/purge_users.md:41
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
#: ../../moderator_documentation/external_users/purge_users.md:28
#: ../../moderator_documentation/external_users/purge_users.md:42
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
#: ../../moderator_documentation/external_users/purge_users.md:29
#: ../../moderator_documentation/external_users/purge_users.md:43
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
#: ../../moderator_documentation/external_users/purge_users.md:30
#: ../../moderator_documentation/external_users/purge_users.md:44
msgid "Select {guilabel}`Launch`."
msgstr ""
@ -101,13 +105,13 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/external_users/purge_users.md:31
#: ../../moderator_documentation/external_users/purge_users.md:38
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
#: ../../moderator_documentation/external_users/purge_users.md:48
msgid ""
"You're done! Your pod clears all the content associated with the selected"
" users."

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/internal_users/handle_registration.md:1
msgid "Handle user registrations"
@ -27,51 +27,55 @@ msgid ""
"requires moderators to approve or refuse account creations."
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:6
#: ../../moderator_documentation/internal_users/handle_registration.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:9
#: ../../moderator_documentation/internal_users/handle_registration.md:11
msgid ""
"Requests appear in the {guilabel}`User Requests` list. Each request "
"contains the following information:"
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:11
#: ../../moderator_documentation/internal_users/handle_registration.md:13
msgid "The user the request was {guilabel}`Submitted by`"
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:12
#: ../../moderator_documentation/internal_users/handle_registration.md:14
msgid "The {guilabel}`Creation date` of the request."
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:13
#: ../../moderator_documentation/internal_users/handle_registration.md:15
msgid "__Optional__ – any responses the user left to fields in the sign-up form."
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:14
#: ../../moderator_documentation/internal_users/handle_registration.md:16
msgid "The {guilabel}`Status` of the request."
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:15
#: ../../moderator_documentation/internal_users/handle_registration.md:17
msgid "Which moderator the request is {guilabel}`Assigned to`."
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:16
#: ../../moderator_documentation/internal_users/handle_registration.md:18
msgid "The {guilabel}`Resolution date` of the request."
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:17
#: ../../moderator_documentation/internal_users/handle_registration.md:19
msgid "Any {guilabel}`Internal notes` left by the moderators."
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:23
#: ../../moderator_documentation/internal_users/handle_registration.md:25
msgid "Approve a sign-up request"
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:25
#: ../../moderator_documentation/internal_users/handle_registration.md:27
msgid "To approve a sign-up request:"
msgstr ""
@ -79,45 +83,45 @@ msgstr ""
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:35
#: ../../moderator_documentation/internal_users/handle_registration.md:47
#: ../../moderator_documentation/internal_users/handle_registration.md:68
#: ../../moderator_documentation/internal_users/handle_registration.md:80
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:30
#: ../../moderator_documentation/internal_users/handle_registration.md:58
#: ../../moderator_documentation/internal_users/handle_registration.md:36
#: ../../moderator_documentation/internal_users/handle_registration.md:69
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:37
#: ../../moderator_documentation/internal_users/handle_registration.md:49
#: ../../moderator_documentation/internal_users/handle_registration.md:70
#: ../../moderator_documentation/internal_users/handle_registration.md:82
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:38
#: ../../moderator_documentation/internal_users/handle_registration.md:50
#: ../../moderator_documentation/internal_users/handle_registration.md:71
#: ../../moderator_documentation/internal_users/handle_registration.md:83
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:39
#: ../../moderator_documentation/internal_users/handle_registration.md:51
#: ../../moderator_documentation/internal_users/handle_registration.md:72
#: ../../moderator_documentation/internal_users/handle_registration.md:84
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
#: ../../moderator_documentation/internal_users/handle_registration.md:40
#: ../../moderator_documentation/internal_users/handle_registration.md:52
msgid "Select {guilabel}`Approve` in the {guilabel}`Actions` section."
msgstr ""
@ -125,33 +129,33 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:41
#: ../../moderator_documentation/internal_users/handle_registration.md:69
#: ../../moderator_documentation/internal_users/handle_registration.md:48
#: ../../moderator_documentation/internal_users/handle_registration.md:81
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
#: ../../moderator_documentation/internal_users/handle_registration.md:56
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
#: ../../moderator_documentation/internal_users/handle_registration.md:58
msgid "Refuse a sign-up request"
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:53
#: ../../moderator_documentation/internal_users/handle_registration.md:60
msgid "To refuse a sign-up request:"
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:62
#: ../../moderator_documentation/internal_users/handle_registration.md:73
#: ../../moderator_documentation/internal_users/handle_registration.md:85
msgid "Select {guilabel}`Refuse` in the {guilabel}`Actions` section."
msgstr ""
#: ../../moderator_documentation/internal_users/handle_registration.md:77
#: ../../moderator_documentation/internal_users/handle_registration.md:89
msgid ""
"That's it! You've refused the user's sign-up request. The user can't log "
"in to your pod."

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/reports/handle_content.md:1
msgid "Handle reported content"
@ -34,21 +34,25 @@ msgid ""
"moderation page to edit objects."
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:10
#: ../../moderator_documentation/reports/handle_content.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:12
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:11
#: ../../moderator_documentation/reports/handle_content.md:13
msgid "{guilabel}`Library` – enables the moderator to delete objects."
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:18
#: ../../moderator_documentation/reports/handle_content.md:20
msgid "Handle reports from the Reports page"
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:20
#: ../../moderator_documentation/reports/handle_content.md:22
msgid "To handle a content report from the {guilabel}`Reports` page:"
msgstr ""
@ -56,46 +60,46 @@ msgstr ""
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
#: ../../moderator_documentation/reports/handle_content.md:30
#: ../../moderator_documentation/reports/handle_content.md:43
#: ../../moderator_documentation/reports/handle_content.md:65
#: ../../moderator_documentation/reports/handle_content.md:82
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:25
#: ../../moderator_documentation/reports/handle_content.md:55
#: ../../moderator_documentation/reports/handle_content.md:31
#: ../../moderator_documentation/reports/handle_content.md:66
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
#: ../../moderator_documentation/reports/handle_content.md:32
#: ../../moderator_documentation/reports/handle_content.md:45
#: ../../moderator_documentation/reports/handle_content.md:67
#: ../../moderator_documentation/reports/handle_content.md:84
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
#: ../../moderator_documentation/reports/handle_content.md:33
#: ../../moderator_documentation/reports/handle_content.md:46
#: ../../moderator_documentation/reports/handle_content.md:68
#: ../../moderator_documentation/reports/handle_content.md:85
msgid "[Search for the report](search_reports.md)."
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:28
#: ../../moderator_documentation/reports/handle_content.md:40
#: ../../moderator_documentation/reports/handle_content.md:34
#: ../../moderator_documentation/reports/handle_content.md:47
msgid "Select an action from the {guilabel}`Actions` section:"
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:29
#: ../../moderator_documentation/reports/handle_content.md:41
#: ../../moderator_documentation/reports/handle_content.md:35
#: ../../moderator_documentation/reports/handle_content.md:48
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
#: ../../moderator_documentation/reports/handle_content.md:36
#: ../../moderator_documentation/reports/handle_content.md:49
msgid ""
"{guilabel}`Delete reported object` – delete the object associated with "
"the report. If you delete an artist or album, this deletes all files "
@ -106,65 +110,65 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:37
#: ../../moderator_documentation/reports/handle_content.md:71
#: ../../moderator_documentation/reports/handle_content.md:44
#: ../../moderator_documentation/reports/handle_content.md:83
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
#: ../../moderator_documentation/reports/handle_content.md:53
#: ../../moderator_documentation/reports/handle_content.md:96
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
#: ../../moderator_documentation/reports/handle_content.md:55
msgid "Edit content in the moderation page"
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:50
#: ../../moderator_documentation/reports/handle_content.md:57
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
#: ../../moderator_documentation/reports/handle_content.md:69
#: ../../moderator_documentation/reports/handle_content.md:86
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
#: ../../moderator_documentation/reports/handle_content.md:70
#: ../../moderator_documentation/reports/handle_content.md:87
msgid "Select {guilabel}`Edit`. The {guilabel}`Edit` page opens."
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:60
#: ../../moderator_documentation/reports/handle_content.md:76
#: ../../moderator_documentation/reports/handle_content.md:71
#: ../../moderator_documentation/reports/handle_content.md:88
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
#: ../../moderator_documentation/reports/handle_content.md:72
#: ../../moderator_documentation/reports/handle_content.md:89
msgid "Select {guilabel}`Submit and apply edit`."
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:62
#: ../../moderator_documentation/reports/handle_content.md:78
#: ../../moderator_documentation/reports/handle_content.md:73
#: ../../moderator_documentation/reports/handle_content.md:90
msgid "Return to the {guilabel}`Reports` page."
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:63
#: ../../moderator_documentation/reports/handle_content.md:79
#: ../../moderator_documentation/reports/handle_content.md:74
#: ../../moderator_documentation/reports/handle_content.md:91
msgid "Search for the report."
msgstr ""
#: ../../moderator_documentation/reports/handle_content.md:64
#: ../../moderator_documentation/reports/handle_content.md:80
#: ../../moderator_documentation/reports/handle_content.md:75
#: ../../moderator_documentation/reports/handle_content.md:92
msgid "Select {guilabel}`Resolve` in the {guilabel}`Actions` section."
msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/reports/handle_users.md:1
msgid "Handle reported users"
@ -28,13 +28,17 @@ msgid ""
"appropriate steps to handle the report."
msgstr ""
#: ../../moderator_documentation/reports/handle_users.md:6
#: ../../moderator_documentation/reports/handle_users.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/reports/handle_users.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
msgstr ""
#: ../../moderator_documentation/reports/handle_users.md:9
#: ../../moderator_documentation/reports/handle_users.md:11
msgid "To open a user's moderation page:"
msgstr ""
@ -42,24 +46,24 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../moderator_documentation/reports/handle_users.md:13
#: ../../moderator_documentation/reports/handle_users.md:22
#: ../../moderator_documentation/reports/handle_users.md:19
#: ../../moderator_documentation/reports/handle_users.md:29
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/reports/handle_users.md:14
#: ../../moderator_documentation/reports/handle_users.md:20
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
#: ../../moderator_documentation/reports/handle_users.md:21
#: ../../moderator_documentation/reports/handle_users.md:31
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr ""
#: ../../moderator_documentation/reports/handle_users.md:16
#: ../../moderator_documentation/reports/handle_users.md:25
#: ../../moderator_documentation/reports/handle_users.md:22
#: ../../moderator_documentation/reports/handle_users.md:32
msgid ""
"[Search for the report](search_reports.md) and select {guilabel}`Open in "
"moderation interface` under {guilabel}`Reported object`. The user's "
@ -70,35 +74,35 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/reports/handle_users.md:23
#: ../../moderator_documentation/reports/handle_users.md:30
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
#: ../../moderator_documentation/reports/handle_users.md:36
msgid "You can change the following settings in the moderation interface:"
msgstr ""
#: ../../moderator_documentation/reports/handle_users.md:31
#: ../../moderator_documentation/reports/handle_users.md:38
msgid ""
"{guilabel}`Login status` – disable this switch to prevent the user being "
"able to log in."
msgstr ""
#: ../../moderator_documentation/reports/handle_users.md:32
#: ../../moderator_documentation/reports/handle_users.md:39
msgid ""
"{guilabel}`Permissions` – add or remove permissions associated with the "
"user."
msgstr ""
#: ../../moderator_documentation/reports/handle_users.md:33
#: ../../moderator_documentation/reports/handle_users.md:40
msgid ""
"{guilabel}`Upload quota` – change the amount of data (in megabytes) that "
"the user can upload."
msgstr ""
#: ../../moderator_documentation/reports/handle_users.md:35
#: ../../moderator_documentation/reports/handle_users.md:42
msgid ""
"Once you have made your changes, return to the {guilabel}`Reports` page "
"and {guilabel}`Resolve` the report. Resolving the report assigns it to "

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/reports/internal_notes.md:1
msgid "Use internal notes"
@ -28,17 +28,21 @@ msgid ""
"only visible to pod admins and moderators."
msgstr ""
#: ../../moderator_documentation/reports/internal_notes.md:6
#: ../../moderator_documentation/reports/internal_notes.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/reports/internal_notes.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
msgstr ""
#: ../../moderator_documentation/reports/internal_notes.md:9
#: ../../moderator_documentation/reports/internal_notes.md:11
msgid "Add notes to a report"
msgstr ""
#: ../../moderator_documentation/reports/internal_notes.md:11
#: ../../moderator_documentation/reports/internal_notes.md:13
msgid ""
"You can add notes to __Unresolved__ and __Resolved__ reports. To add an "
"internal note:"
@ -48,44 +52,44 @@ msgstr ""
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:21
#: ../../moderator_documentation/reports/internal_notes.md:33
#: ../../moderator_documentation/reports/internal_notes.md:56
#: ../../moderator_documentation/reports/internal_notes.md:68
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/reports/internal_notes.md:16
#: ../../moderator_documentation/reports/internal_notes.md:46
#: ../../moderator_documentation/reports/internal_notes.md:22
#: ../../moderator_documentation/reports/internal_notes.md:57
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:23
#: ../../moderator_documentation/reports/internal_notes.md:35
#: ../../moderator_documentation/reports/internal_notes.md:58
#: ../../moderator_documentation/reports/internal_notes.md:70
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:24
#: ../../moderator_documentation/reports/internal_notes.md:36
#: ../../moderator_documentation/reports/internal_notes.md:59
#: ../../moderator_documentation/reports/internal_notes.md:71
msgid "[Search for the report](search_reports.md)."
msgstr ""
#: ../../moderator_documentation/reports/internal_notes.md:19
#: ../../moderator_documentation/reports/internal_notes.md:30
#: ../../moderator_documentation/reports/internal_notes.md:25
#: ../../moderator_documentation/reports/internal_notes.md:37
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
#: ../../moderator_documentation/reports/internal_notes.md:26
#: ../../moderator_documentation/reports/internal_notes.md:38
msgid "Select {guilabel}`Add note` to save your note."
msgstr ""
@ -93,39 +97,39 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/reports/internal_notes.md:27
#: ../../moderator_documentation/reports/internal_notes.md:57
#: ../../moderator_documentation/reports/internal_notes.md:34
#: ../../moderator_documentation/reports/internal_notes.md:69
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
#: ../../moderator_documentation/reports/internal_notes.md:42
msgid "Delete notes from a report"
msgstr ""
#: ../../moderator_documentation/reports/internal_notes.md:38
#: ../../moderator_documentation/reports/internal_notes.md:45
msgid ""
"Deleting an internal note is irreversible. Make sure you are not deleting"
" anything important."
msgstr ""
#: ../../moderator_documentation/reports/internal_notes.md:41
#: ../../moderator_documentation/reports/internal_notes.md:48
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
#: ../../moderator_documentation/reports/internal_notes.md:72
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
#: ../../moderator_documentation/reports/internal_notes.md:73
msgid "Select {guilabel}`Delete`"
msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/reports/search_reports.md:1
msgid "Search for reports"
@ -28,7 +28,11 @@ msgid ""
"key words."
msgstr ""
#: ../../moderator_documentation/reports/search_reports.md:6
#: ../../moderator_documentation/reports/search_reports.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/reports/search_reports.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
@ -38,52 +42,52 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../moderator_documentation/reports/search_reports.md:11
#: ../../moderator_documentation/reports/search_reports.md:25
#: ../../moderator_documentation/reports/search_reports.md:17
#: ../../moderator_documentation/reports/search_reports.md:32
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/reports/search_reports.md:12
#: ../../moderator_documentation/reports/search_reports.md:18
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
#: ../../moderator_documentation/reports/search_reports.md:19
#: ../../moderator_documentation/reports/search_reports.md:34
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr ""
#: ../../moderator_documentation/reports/search_reports.md:14
#: ../../moderator_documentation/reports/search_reports.md:28
#: ../../moderator_documentation/reports/search_reports.md:20
#: ../../moderator_documentation/reports/search_reports.md:35
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
#: ../../moderator_documentation/reports/search_reports.md:21
#: ../../moderator_documentation/reports/search_reports.md:36
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
#: ../../moderator_documentation/reports/search_reports.md:22
#: ../../moderator_documentation/reports/search_reports.md:37
msgid "Filter reports by {guilabel}`Status`."
msgstr ""
#: ../../moderator_documentation/reports/search_reports.md:17
#: ../../moderator_documentation/reports/search_reports.md:31
#: ../../moderator_documentation/reports/search_reports.md:23
#: ../../moderator_documentation/reports/search_reports.md:38
msgid "Filter reports by {guilabel}`Category`."
msgstr ""
#: ../../moderator_documentation/reports/search_reports.md:18
#: ../../moderator_documentation/reports/search_reports.md:32
#: ../../moderator_documentation/reports/search_reports.md:24
#: ../../moderator_documentation/reports/search_reports.md:39
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
#: ../../moderator_documentation/reports/search_reports.md:25
#: ../../moderator_documentation/reports/search_reports.md:40
msgid "Select which {guilabel}`Order` you want to see your search results in."
msgstr ""
@ -91,13 +95,13 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/reports/search_reports.md:26
#: ../../moderator_documentation/reports/search_reports.md:33
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
#: ../../moderator_documentation/reports/search_reports.md:44
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 "

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../moderator_documentation/reports/view_reports.md:1
msgid "View unresolved reports"
@ -28,17 +28,21 @@ msgid ""
"reports that users have submitted."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:6
#: ../../moderator_documentation/reports/view_reports.md
msgid "Required permissions"
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:8
msgid ""
"{guilabel}`Moderation` – provides access to the administration and "
"moderation menus."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:9
#: ../../moderator_documentation/reports/view_reports.md:11
msgid "Check the Reports page"
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:11
#: ../../moderator_documentation/reports/view_reports.md:13
msgid ""
"You can see a list of unresolved reports by going to the "
"{guilabel}`Reports` page. To do this:"
@ -48,19 +52,19 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:15
#: ../../moderator_documentation/reports/view_reports.md:23
#: ../../moderator_documentation/reports/view_reports.md:21
#: ../../moderator_documentation/reports/view_reports.md:30
msgid "Log in to your {term}`pod`."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:16
#: ../../moderator_documentation/reports/view_reports.md:22
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
#: ../../moderator_documentation/reports/view_reports.md:23
#: ../../moderator_documentation/reports/view_reports.md:32
msgid "Select {guilabel}`Moderation`. The {guilabel}`Reports` page opens."
msgstr ""
@ -68,89 +72,89 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:24
#: ../../moderator_documentation/reports/view_reports.md:31
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
#: ../../moderator_documentation/reports/view_reports.md:36
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
#: ../../moderator_documentation/reports/view_reports.md:38
#: ../../moderator_documentation/reports/view_reports.md:53
msgid "The user who submitted the report."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:32
#: ../../moderator_documentation/reports/view_reports.md:39
msgid "The report {guilabel}`Category`."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:33
#: ../../moderator_documentation/reports/view_reports.md:40
msgid "The date the user submitted the report."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:34
#: ../../moderator_documentation/reports/view_reports.md:50
#: ../../moderator_documentation/reports/view_reports.md:41
#: ../../moderator_documentation/reports/view_reports.md:57
msgid "The message the user posted with the report (if applicable)."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:35
#: ../../moderator_documentation/reports/view_reports.md:42
msgid "The {guilabel}`Status` of the report."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:36
#: ../../moderator_documentation/reports/view_reports.md:43
msgid "Any {guilabel}`Internal notes` left by moderators."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:37
#: ../../moderator_documentation/reports/view_reports.md:44
msgid "A summary of the {guilabel}`Reported object`."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:38
#: ../../moderator_documentation/reports/view_reports.md:45
msgid "A list of available {guilabel}`Actions`."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:40
#: ../../moderator_documentation/reports/view_reports.md:47
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
#: ../../moderator_documentation/reports/view_reports.md:49
msgid "Email notifications"
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:44
#: ../../moderator_documentation/reports/view_reports.md:51
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
#: ../../moderator_documentation/reports/view_reports.md:54
msgid "The object that the user reported."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:48
#: ../../moderator_documentation/reports/view_reports.md:55
msgid "A link to the object on your pod."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:49
#: ../../moderator_documentation/reports/view_reports.md:56
msgid "A link to the object's moderation page."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:51
#: ../../moderator_documentation/reports/view_reports.md:58
msgid "A link to the report."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:52
#: ../../moderator_documentation/reports/view_reports.md:59
msgid "A link to the {guilabel}`Reports` page."
msgstr ""
#: ../../moderator_documentation/reports/view_reports.md:54
#: ../../moderator_documentation/reports/view_reports.md:61
msgid "Follow the links in the email to view the report."
msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-03 22:14+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../user_documentation/libraries/tag_music.md:1
msgid "Tag your content with Picard"
@ -40,309 +40,313 @@ msgstr ""
msgid "This guide shows you how to tag your content with MusicBrainz Picard."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:19
msgid "Name"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:20
msgid "Description"
#: ../../user_documentation/libraries/tag_music.md
msgid "Supported tags"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:21
msgid "Example value"
msgid "Name"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:22
msgid "`Title`*"
msgid "Description"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:23
msgid "The track title."
msgid "Example value"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:24
msgid "`Letting you`"
msgid "`Title`*"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:25
msgid "`Artist`*"
msgid "The track title."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:26
msgid "The artist name."
msgid "`Letting you`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:27
msgid "`Nine Inch Nails`"
msgid "`Artist`*"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:28
msgid "`Album`"
msgid "The artist name."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:29
msgid "`Nine Inch Nails`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:30
msgid "`Album`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:31
msgid ""
"The album title. If none is provided, an `[Unknown Album]` entry is "
"created."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:30
#: ../../user_documentation/libraries/tag_music.md:32
msgid "`The Slip`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:31
#: ../../user_documentation/libraries/tag_music.md:33
msgid "`Album artist`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:32
#: ../../user_documentation/libraries/tag_music.md:34
msgid "The album artist name (can be different than the track artist)."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:33
#: ../../user_documentation/libraries/tag_music.md:35
msgid "`Trent Reznor`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:34
#: ../../user_documentation/libraries/tag_music.md:36
msgid "`Genre`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:35
#: ../../user_documentation/libraries/tag_music.md:37
msgid ""
"A comma separated list of tags to associate with the track. Other "
"supported separators: `;` and `/`."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:37
#: ../../user_documentation/libraries/tag_music.md:39
msgid "`Industrial, Metal`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:38
#: ../../user_documentation/libraries/tag_music.md:40
msgid "`Track number`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:39
#: ../../user_documentation/libraries/tag_music.md:41
msgid "The position of the track in the album/release."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:40
#: ../../user_documentation/libraries/tag_music.md:42
msgid "`4`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:41
#: ../../user_documentation/libraries/tag_music.md:43
msgid "`Disc number`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:42
#: ../../user_documentation/libraries/tag_music.md:44
msgid "The disc number (in case of multi-disc albums)."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:43
#: ../../user_documentation/libraries/tag_music.md:45
msgid "`1`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:44
#: ../../user_documentation/libraries/tag_music.md:46
msgid "`Date`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:45
#: ../../user_documentation/libraries/tag_music.md:47
msgid "The release date of the track or album."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:46
#: ../../user_documentation/libraries/tag_music.md:48
msgid "`2019`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:47
#: ../../user_documentation/libraries/tag_music.md:49
msgid "`License`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:48
#: ../../user_documentation/libraries/tag_music.md:50
msgid ""
"The license associated with this work. The first URL found is checked "
"against our list of supported licenses."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:50
#: ../../user_documentation/libraries/tag_music.md:54
#: ../../user_documentation/libraries/tag_music.md:52
#: ../../user_documentation/libraries/tag_music.md:56
msgid "`CC-BY 3.0: http://creativecommons.org/licenses/cc-by/3.0/`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:51
#: ../../user_documentation/libraries/tag_music.md:53
msgid "`Copyright`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:52
#: ../../user_documentation/libraries/tag_music.md:54
msgid ""
"The license associated with this work. The first URL found is checked "
"against our list of supported licenses. Used if no license found in the"
" `License` tag."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:55
#: ../../user_documentation/libraries/tag_music.md:57
msgid "`Pictures`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:56
#: ../../user_documentation/libraries/tag_music.md:58
msgid "The first embeded picture found is used as the album cover."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:58
#: ../../user_documentation/libraries/tag_music.md:60
msgid "`MusicBrainz Recording ID`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:59
#: ../../user_documentation/libraries/tag_music.md:61
msgid "The MusicBrainz ID for the recording."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:60
#: ../../user_documentation/libraries/tag_music.md:62
msgid "`99244237-850b-4a93-904d-57305bcadb4e`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:61
#: ../../user_documentation/libraries/tag_music.md:63
msgid "`MusicBrainz Album ID`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:62
#: ../../user_documentation/libraries/tag_music.md:64
msgid "The MusicBrainz ID for the album."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:63
#: ../../user_documentation/libraries/tag_music.md:65
msgid "`bca982fd-ab73-3c9f-ad07-9104a4f53a32`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:64
#: ../../user_documentation/libraries/tag_music.md:66
msgid "`MusicBrainz Artist ID`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:65
#: ../../user_documentation/libraries/tag_music.md:67
msgid "The MusicBrainz ID for the artist."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:66
#: ../../user_documentation/libraries/tag_music.md:69
#: ../../user_documentation/libraries/tag_music.md:68
#: ../../user_documentation/libraries/tag_music.md:71
msgid "`b7ffd2af-418f-4be2-bdd1-22f8b48613da`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:67
#: ../../user_documentation/libraries/tag_music.md:69
msgid "`MusicBrainz Album Artist ID`"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:68
#: ../../user_documentation/libraries/tag_music.md:70
msgid "The MusicBrainz ID for the album artist."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:74
#: ../../user_documentation/libraries/tag_music.md:75
msgid "Tag content"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:76
#: ../../user_documentation/libraries/tag_music.md:77
msgid "To tag content using MusicBrainz Picard:"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:78
#: ../../user_documentation/libraries/tag_music.md:79
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:79
#: ../../user_documentation/libraries/tag_music.md:80
msgid "Select the files or directory you want to tag."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:80
#: ../../user_documentation/libraries/tag_music.md:81
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:81
#: ../../user_documentation/libraries/tag_music.md:82
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:82
#: ../../user_documentation/libraries/tag_music.md:96
#: ../../user_documentation/libraries/tag_music.md:105
#: ../../user_documentation/libraries/tag_music.md:83
#: ../../user_documentation/libraries/tag_music.md:97
#: ../../user_documentation/libraries/tag_music.md:106
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:84
#: ../../user_documentation/libraries/tag_music.md:85
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:86
#: ../../user_documentation/libraries/tag_music.md:87
msgid "Alternative versions"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:88
#: ../../user_documentation/libraries/tag_music.md:89
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:90
#: ../../user_documentation/libraries/tag_music.md:91
msgid "Alternative albums"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:92
#: ../../user_documentation/libraries/tag_music.md:93
msgid "If Picard has selected a different version of the album you are tagging:"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:94
#: ../../user_documentation/libraries/tag_music.md:95
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:95
#: ../../user_documentation/libraries/tag_music.md:96
msgid "Select the correct release from the list."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:98
#: ../../user_documentation/libraries/tag_music.md:99
msgid "Alternative tracks"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:100
#: ../../user_documentation/libraries/tag_music.md:101
msgid "If Picard can't find a release for a track:"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:102
#: ../../user_documentation/libraries/tag_music.md:103
msgid ""
"Right-click on the track and select {guilabel}`Search for Similar "
"Tracks…`. A search screen appears."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:103
#: ../../user_documentation/libraries/tag_music.md:104
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:104
#: ../../user_documentation/libraries/tag_music.md:105
msgid "Select the correct track and click on {guilabel}`Load into Picard`."
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:107
#: ../../user_documentation/libraries/tag_music.md:108
msgid "Add items to MusicBrainz"
msgstr ""
#: ../../user_documentation/libraries/tag_music.md:109
#: ../../user_documentation/libraries/tag_music.md:110
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:111
#: ../../user_documentation/libraries/tag_music.md:112
msgid "Once you have added the content to MusicBrainz, Picard can tag your files."
msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../user_documentation/libraries/upload_content.md:1
msgid "Upload content to a library"
@ -43,68 +43,67 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../user_documentation/libraries/upload_content.md:13
#: ../../user_documentation/libraries/upload_content.md:26
#: ../../user_documentation/libraries/upload_content.md:17
#: ../../user_documentation/libraries/upload_content.md:31
msgid "Log in to your pod."
msgstr ""
#: ../../user_documentation/libraries/upload_content.md:14
#: ../../user_documentation/libraries/upload_content.md:18
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
#: ../../user_documentation/libraries/upload_content.md:19
#: ../../user_documentation/libraries/upload_content.md:33
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
#: ../../user_documentation/libraries/upload_content.md:20
#: ../../user_documentation/libraries/upload_content.md:34
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
#: ../../user_documentation/libraries/upload_content.md:21
#: ../../user_documentation/libraries/upload_content.md:35
msgid "Select {guilabel}`Upload` under the library you want to add content to."
msgstr ""
#: ../../user_documentation/libraries/upload_content.md:18
#: ../../user_documentation/libraries/upload_content.md:22
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
#: ../../user_documentation/libraries/upload_content.md:23
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
#: ../../user_documentation/libraries/upload_content.md:24
#: ../../user_documentation/libraries/upload_content.md:37
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
msgid "Mobile"
msgstr ""
#: ../../user_documentation/libraries/upload_content.md:27
#: ../../user_documentation/libraries/upload_content.md:32
msgid "Select the upload icon ({fa}`upload`) at the top of the screen."
msgstr ""
#: ../../user_documentation/libraries/upload_content.md:31
#: ../../user_documentation/libraries/upload_content.md:36
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
#: ../../user_documentation/libraries/upload_content.md:41
msgid ""
"Congratulations! You added some content to your library. You can now "
"listen to your tracks on your {term}`Funkwhale pod <Pod>`."
msgstr ""
#~ msgid "Mobile"
#~ msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../user_documentation/playlists/create_playlist.md:1
msgid "Create a playlist"
@ -33,59 +33,60 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../user_documentation/playlists/create_playlist.md:9
#: ../../user_documentation/playlists/create_playlist.md:23
#: ../../user_documentation/playlists/create_playlist.md:13
#: ../../user_documentation/playlists/create_playlist.md:28
msgid "Log in to your account."
msgstr ""
#: ../../user_documentation/playlists/create_playlist.md:10
#: ../../user_documentation/playlists/create_playlist.md:14
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
#: ../../user_documentation/playlists/create_playlist.md:15
#: ../../user_documentation/playlists/create_playlist.md:31
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
#: ../../user_documentation/playlists/create_playlist.md:16
#: ../../user_documentation/playlists/create_playlist.md:32
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
#: ../../user_documentation/playlists/create_playlist.md:17
#: ../../user_documentation/playlists/create_playlist.md:33
msgid ""
"Select the {guilabel}`Playlist visibility` for your playlist. Choose from"
" the following options:"
msgstr ""
#: ../../user_documentation/playlists/create_playlist.md:14
#: ../../user_documentation/playlists/create_playlist.md:18
#: ../../user_documentation/playlists/create_playlist.md:34
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
#: ../../user_documentation/playlists/create_playlist.md:19
#: ../../user_documentation/playlists/create_playlist.md:35
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
#: ../../user_documentation/playlists/create_playlist.md:20
#: ../../user_documentation/playlists/create_playlist.md:36
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
#: ../../user_documentation/playlists/create_playlist.md:21
#: ../../user_documentation/playlists/create_playlist.md:37
msgid ""
"Select {guilabel}`Create playlist`. A {guilabel}`Playlist created` "
"message appears."
@ -95,26 +96,26 @@ msgstr ""
msgid "Mobile"
msgstr ""
#: ../../user_documentation/playlists/create_playlist.md:24
#: ../../user_documentation/playlists/create_playlist.md:29
msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar."
msgstr ""
#: ../../user_documentation/playlists/create_playlist.md:25
#: ../../user_documentation/playlists/create_playlist.md:30
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
#: ../../user_documentation/playlists/create_playlist.md:41
msgid ""
"Congratulations! You've created your playlist. Now you can [add some "
"content to it](add_content.md)."
msgstr ""
#~ msgid ""
#~ "{guilabel}`Everyone, across all instances` –"
#~ " the playlist is available to "
#~ "everybody who interacts with your pod."
#~ " This includes users of other pods."
#~ msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../user_documentation/playlists/remove_content.md:1
msgid "Remove content from a playlist"
@ -35,58 +35,57 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../user_documentation/playlists/remove_content.md:11
#: ../../user_documentation/playlists/remove_content.md:22
#: ../../user_documentation/playlists/remove_content.md:15
#: ../../user_documentation/playlists/remove_content.md:27
msgid "Log in to your account."
msgstr ""
#: ../../user_documentation/playlists/remove_content.md:12
#: ../../user_documentation/playlists/remove_content.md:16
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
#: ../../user_documentation/playlists/remove_content.md:17
#: ../../user_documentation/playlists/remove_content.md:30
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
#: ../../user_documentation/playlists/remove_content.md:18
#: ../../user_documentation/playlists/remove_content.md:31
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
#: ../../user_documentation/playlists/remove_content.md:19
#: ../../user_documentation/playlists/remove_content.md:32
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
#: ../../user_documentation/playlists/remove_content.md:20
#: ../../user_documentation/playlists/remove_content.md:33
msgid "Select {guilabel}`Stop Editing` to finish editing."
msgstr ""
#: ../../user_documentation/playlists/remove_content.md
msgid "Mobile"
msgstr ""
#: ../../user_documentation/playlists/remove_content.md:23
#: ../../user_documentation/playlists/remove_content.md:28
msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar."
msgstr ""
#: ../../user_documentation/playlists/remove_content.md:24
#: ../../user_documentation/playlists/remove_content.md:29
msgid ""
"Select {menuselection}`My Library --> Playlists`. The {guilabel}`Browsing"
" playlists` screen opens."
msgstr ""
#: ../../user_documentation/playlists/remove_content.md:32
#: ../../user_documentation/playlists/remove_content.md:37
msgid "That's it! You've removed the content from your playlist."
msgstr ""
#~ msgid "Mobile"
#~ msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../user_documentation/playlists/reorder_content.md:1
msgid "Reorder content in a playlist"
@ -29,58 +29,57 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../user_documentation/playlists/reorder_content.md:7
#: ../../user_documentation/playlists/reorder_content.md:18
#: ../../user_documentation/playlists/reorder_content.md:11
#: ../../user_documentation/playlists/reorder_content.md:23
msgid "Log in to your account."
msgstr ""
#: ../../user_documentation/playlists/reorder_content.md:8
#: ../../user_documentation/playlists/reorder_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/reorder_content.md:9
#: ../../user_documentation/playlists/reorder_content.md:21
#: ../../user_documentation/playlists/reorder_content.md:13
#: ../../user_documentation/playlists/reorder_content.md:26
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
#: ../../user_documentation/playlists/reorder_content.md:14
#: ../../user_documentation/playlists/reorder_content.md:27
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
#: ../../user_documentation/playlists/reorder_content.md:15
#: ../../user_documentation/playlists/reorder_content.md:28
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
#: ../../user_documentation/playlists/reorder_content.md:16
#: ../../user_documentation/playlists/reorder_content.md:29
msgid "Select {guilabel}`Stop Editing` to finish editing."
msgstr ""
#: ../../user_documentation/playlists/reorder_content.md
msgid "Mobile"
msgstr ""
#: ../../user_documentation/playlists/reorder_content.md:19
#: ../../user_documentation/playlists/reorder_content.md:24
msgid "Select the hamburger menu ({fa}`bars`) to open the menu bar."
msgstr ""
#: ../../user_documentation/playlists/reorder_content.md:20
#: ../../user_documentation/playlists/reorder_content.md:25
msgid ""
"Select {menuselection}`My Library --> Playlists`. The {guilabel}`Browsing"
" playlists` screen opens."
msgstr ""
#: ../../user_documentation/playlists/reorder_content.md:29
#: ../../user_documentation/playlists/reorder_content.md:33
msgid "You're done! You've updated the order of the tracks in your playlist."
msgstr ""
#~ msgid "Mobile"
#~ msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../user_documentation/plugins/listenbrainz_plugin.md:1
msgid "ListenBrainz plugin"
@ -34,65 +34,64 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../user_documentation/plugins/listenbrainz_plugin.md:7
#: ../../user_documentation/plugins/listenbrainz_plugin.md:21
#: ../../user_documentation/plugins/listenbrainz_plugin.md:11
#: ../../user_documentation/plugins/listenbrainz_plugin.md:26
msgid "Log in to your account."
msgstr ""
#: ../../user_documentation/plugins/listenbrainz_plugin.md:8
#: ../../user_documentation/plugins/listenbrainz_plugin.md:12
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
#: ../../user_documentation/plugins/listenbrainz_plugin.md:13
#: ../../user_documentation/plugins/listenbrainz_plugin.md:28
msgid "Select {guilabel}`Settings`."
msgstr ""
#: ../../user_documentation/plugins/listenbrainz_plugin.md:10
#: ../../user_documentation/plugins/listenbrainz_plugin.md:24
#: ../../user_documentation/plugins/listenbrainz_plugin.md:14
#: ../../user_documentation/plugins/listenbrainz_plugin.md:29
msgid "Scroll down to the {guilabel}`Plugins` section."
msgstr ""
#: ../../user_documentation/plugins/listenbrainz_plugin.md:11
#: ../../user_documentation/plugins/listenbrainz_plugin.md:25
#: ../../user_documentation/plugins/listenbrainz_plugin.md:15
#: ../../user_documentation/plugins/listenbrainz_plugin.md:30
msgid "Select {guilabel}`Manage plugins`."
msgstr ""
#: ../../user_documentation/plugins/listenbrainz_plugin.md:12
#: ../../user_documentation/plugins/listenbrainz_plugin.md:26
#: ../../user_documentation/plugins/listenbrainz_plugin.md:16
#: ../../user_documentation/plugins/listenbrainz_plugin.md:31
msgid "Find the {guilabel}`ListenBrainz` plugin."
msgstr ""
#: ../../user_documentation/plugins/listenbrainz_plugin.md:13
#: ../../user_documentation/plugins/listenbrainz_plugin.md:27
#: ../../user_documentation/plugins/listenbrainz_plugin.md:17
#: ../../user_documentation/plugins/listenbrainz_plugin.md:32
msgid "Toggle the {guilabel}`Enabled` switch."
msgstr ""
#: ../../user_documentation/plugins/listenbrainz_plugin.md:14
#: ../../user_documentation/plugins/listenbrainz_plugin.md:28
#: ../../user_documentation/plugins/listenbrainz_plugin.md:18
#: ../../user_documentation/plugins/listenbrainz_plugin.md:33
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
#: ../../user_documentation/plugins/listenbrainz_plugin.md:19
#: ../../user_documentation/plugins/listenbrainz_plugin.md:34
msgid "Select {guilabel}`Save`."
msgstr ""
#: ../../user_documentation/plugins/listenbrainz_plugin.md
msgid "Mobile"
msgstr ""
#: ../../user_documentation/plugins/listenbrainz_plugin.md:22
#: ../../user_documentation/plugins/listenbrainz_plugin.md:27
msgid ""
"Select the cog icon ({fa}`cog`) or your avatar to open the "
"{guilabel}`Options` menu."
msgstr ""
#: ../../user_documentation/plugins/listenbrainz_plugin.md:33
#: ../../user_documentation/plugins/listenbrainz_plugin.md:38
msgid ""
"That's it! You've set up the __ListenBrainz__ plugin. When you listen to "
"tracks, the plugin sends the information to ListenBrainz."
msgstr ""
#~ msgid "Mobile"
#~ msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../user_documentation/plugins/maloja_plugin.md:1
msgid "Maloja plugin"
@ -43,73 +43,72 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../user_documentation/plugins/maloja_plugin.md:9
#: ../../user_documentation/plugins/maloja_plugin.md:24
#: ../../user_documentation/plugins/maloja_plugin.md:13
#: ../../user_documentation/plugins/maloja_plugin.md:29
msgid "Log in to your account."
msgstr ""
#: ../../user_documentation/plugins/maloja_plugin.md:10
#: ../../user_documentation/plugins/maloja_plugin.md:14
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
#: ../../user_documentation/plugins/maloja_plugin.md:15
#: ../../user_documentation/plugins/maloja_plugin.md:31
msgid "Select {guilabel}`Settings`."
msgstr ""
#: ../../user_documentation/plugins/maloja_plugin.md:12
#: ../../user_documentation/plugins/maloja_plugin.md:27
#: ../../user_documentation/plugins/maloja_plugin.md:16
#: ../../user_documentation/plugins/maloja_plugin.md:32
msgid "Scroll down to the {guilabel}`Plugins` section."
msgstr ""
#: ../../user_documentation/plugins/maloja_plugin.md:13
#: ../../user_documentation/plugins/maloja_plugin.md:28
#: ../../user_documentation/plugins/maloja_plugin.md:17
#: ../../user_documentation/plugins/maloja_plugin.md:33
msgid "Select {guilabel}`Manage plugins`."
msgstr ""
#: ../../user_documentation/plugins/maloja_plugin.md:14
#: ../../user_documentation/plugins/maloja_plugin.md:29
#: ../../user_documentation/plugins/maloja_plugin.md:18
#: ../../user_documentation/plugins/maloja_plugin.md:34
msgid "Find the {guilabel}`Maloja` plugin."
msgstr ""
#: ../../user_documentation/plugins/maloja_plugin.md:15
#: ../../user_documentation/plugins/maloja_plugin.md:30
#: ../../user_documentation/plugins/maloja_plugin.md:19
#: ../../user_documentation/plugins/maloja_plugin.md:35
msgid "Toggle the {guilabel}`Enabled` switch."
msgstr ""
#: ../../user_documentation/plugins/maloja_plugin.md:16
#: ../../user_documentation/plugins/maloja_plugin.md:31
#: ../../user_documentation/plugins/maloja_plugin.md:20
#: ../../user_documentation/plugins/maloja_plugin.md:36
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
#: ../../user_documentation/plugins/maloja_plugin.md:21
#: ../../user_documentation/plugins/maloja_plugin.md:37
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
#: ../../user_documentation/plugins/maloja_plugin.md:22
#: ../../user_documentation/plugins/maloja_plugin.md:38
msgid "Select {guilabel}`Save`."
msgstr ""
#: ../../user_documentation/plugins/maloja_plugin.md
msgid "Mobile"
msgstr ""
#: ../../user_documentation/plugins/maloja_plugin.md:25
#: ../../user_documentation/plugins/maloja_plugin.md:30
msgid ""
"Select the cog icon ({fa}`cog`) or your avatar to open the "
"{guilabel}`Options` menu."
msgstr ""
#: ../../user_documentation/plugins/maloja_plugin.md:37
#: ../../user_documentation/plugins/maloja_plugin.md:42
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 ""
#~ msgid "Mobile"
#~ msgstr ""

Wyświetl plik

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: funkwhale 1.2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-01 10:35+0200\n"
"POT-Creation-Date: 2022-07-23 12:18+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"
"Generated-By: Babel 2.10.1\n"
"Generated-By: Babel 2.10.3\n"
#: ../../user_documentation/plugins/scrobbler_plugin.md:1
msgid "Scrobbler plugin"
@ -52,79 +52,78 @@ msgstr ""
msgid "Desktop"
msgstr ""
#: ../../user_documentation/plugins/scrobbler_plugin.md:17
#: ../../user_documentation/plugins/scrobbler_plugin.md:33
#: ../../user_documentation/plugins/scrobbler_plugin.md:21
#: ../../user_documentation/plugins/scrobbler_plugin.md:38
msgid "Log in to your account."
msgstr ""
#: ../../user_documentation/plugins/scrobbler_plugin.md:18
#: ../../user_documentation/plugins/scrobbler_plugin.md:22
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
#: ../../user_documentation/plugins/scrobbler_plugin.md:23
#: ../../user_documentation/plugins/scrobbler_plugin.md:40
msgid "Select {guilabel}`Settings`."
msgstr ""
#: ../../user_documentation/plugins/scrobbler_plugin.md:20
#: ../../user_documentation/plugins/scrobbler_plugin.md:36
#: ../../user_documentation/plugins/scrobbler_plugin.md:24
#: ../../user_documentation/plugins/scrobbler_plugin.md:41
msgid "Scroll down to the {guilabel}`Plugins` section."
msgstr ""
#: ../../user_documentation/plugins/scrobbler_plugin.md:21
#: ../../user_documentation/plugins/scrobbler_plugin.md:37
#: ../../user_documentation/plugins/scrobbler_plugin.md:25
#: ../../user_documentation/plugins/scrobbler_plugin.md:42
msgid "Select {guilabel}`Manage plugins`."
msgstr ""
#: ../../user_documentation/plugins/scrobbler_plugin.md:22
#: ../../user_documentation/plugins/scrobbler_plugin.md:38
#: ../../user_documentation/plugins/scrobbler_plugin.md:26
#: ../../user_documentation/plugins/scrobbler_plugin.md:43
msgid "Find the {guilabel}`Scrobbler` plugin."
msgstr ""
#: ../../user_documentation/plugins/scrobbler_plugin.md:23
#: ../../user_documentation/plugins/scrobbler_plugin.md:39
#: ../../user_documentation/plugins/scrobbler_plugin.md:27
#: ../../user_documentation/plugins/scrobbler_plugin.md:44
msgid "Toggle the {guilabel}`Enabled` switch."
msgstr ""
#: ../../user_documentation/plugins/scrobbler_plugin.md:24
#: ../../user_documentation/plugins/scrobbler_plugin.md:40
#: ../../user_documentation/plugins/scrobbler_plugin.md:28
#: ../../user_documentation/plugins/scrobbler_plugin.md:45
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
#: ../../user_documentation/plugins/scrobbler_plugin.md:29
#: ../../user_documentation/plugins/scrobbler_plugin.md:46
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
#: ../../user_documentation/plugins/scrobbler_plugin.md:30
#: ../../user_documentation/plugins/scrobbler_plugin.md:47
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
#: ../../user_documentation/plugins/scrobbler_plugin.md:31
#: ../../user_documentation/plugins/scrobbler_plugin.md:48
msgid "Select {guilabel}`Save`."
msgstr ""
#: ../../user_documentation/plugins/scrobbler_plugin.md
msgid "Mobile"
msgstr ""
#: ../../user_documentation/plugins/scrobbler_plugin.md:34
#: ../../user_documentation/plugins/scrobbler_plugin.md:39
msgid ""
"Select the cog icon ({fa}`cog`) or your avatar to open the "
"{guilabel}`Options` menu."
msgstr ""
#: ../../user_documentation/plugins/scrobbler_plugin.md:47
#: ../../user_documentation/plugins/scrobbler_plugin.md:52
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 ""
#~ msgid "Mobile"
#~ msgstr ""

Some files were not shown because too many files have changed in this diff Show More