diff --git a/Writerside/topics/metadata-provider-configuration.md b/Writerside/topics/metadata-provider-configuration.md
index c5d5cdd..198a877 100644
--- a/Writerside/topics/metadata-provider-configuration.md
+++ b/Writerside/topics/metadata-provider-configuration.md
@@ -17,6 +17,26 @@ If you want to use your own TMDB relay service, set this to the URL of your own
- **Default:** `https://metadata-relay.dorninger.co/tmdb`
- **Example:** `https://your-own-relay.example.com/tmdb`
+### `primary_languages`
+
+If a TV show/movie's original language is in this list, metadata will be displayed and fetched in that language. Torrent searches done in Standard Mode uses the same fetched metadata, so if you use any language-specific tracker, you may enter the language here to get the desired search results.
+Otherwise, `default_language` will be used.
+
+**Format: ISO 639-1 codes (2 letters). Full list: https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes**
+
+- **Default:** `[]`
+- **Example:** `["no", "de", "es"]`
+
+### `default_language`
+
+
+ `default_language` sets the TMDB `language` paramater when searching and adding TV shows and movies. If TMDB does not find a matching translation, metadata in the original language will be fetched with no option for a fallback language. It is therefore highly advised to only use "broad" languages. For most use cases, the default setting is safest.
+
+
+**Format: ISO 639-1 codes (2 letters).**
+
+- **Default:** `en`
+
## TVDB Settings (`[metadata.tvdb]`)
diff --git a/config.example.toml b/config.example.toml
index 87a3fd8..fe8db5d 100644
--- a/config.example.toml
+++ b/config.example.toml
@@ -172,12 +172,6 @@ rule_names = ["prefer_h265", "avoid_cam", "reject_non_freeleech"]
[metadata]
[metadata.tmdb]
tmdb_relay_url = "https://metadata-relay.dorninger.co/tmdb"
-
-# If a show/movie original language is in this list, metadata will be fetched in that language
-# Otherwise, the default_language will be used as fallback
-# Format: ISO 639-1 codes (2 letters)
-# Examples: "en" (English), "no" (Norwegian), "ru" (Russian), "es" (Spanish), "fr" (French), "de" (German)
-# Full list: https://www.w3schools.com/tags/ref_language_codes.asp#:~:text=ISO%20639%2D1%20Language%20Codes
primary_languages = [""]
default_language = "en"