diff --git a/docs/en/linux/archivemount.md b/docs/en/linux/archivemount.md
new file mode 100644
index 0000000000..70c1f88efa
--- /dev/null
+++ b/docs/en/linux/archivemount.md
@@ -0,0 +1,17 @@
+---
+layout: page
+title: linux/archivemount (English)
+description: "Mount an archive for access as a filesystem."
+content_hash: b2384db335e1ea49d383e493416e49c6bceab1a6
+---
+
+This entry is very new in the [tldr-pages](https://github.com/tldr-pages/tldr) project, hence translation data is currently unavailable for a while.
+
+
# archivemount
+
+Mount an archive for access as a filesystem.
+More information: .
+
+- Mount an archive to a specific mountpoint:
+
+`archivemount `path/to/archive` `path/to/mount_point
diff --git a/docs/en/linux/qm-migrate.md b/docs/en/linux/qm-migrate.md
new file mode 100644
index 0000000000..dd6e8b621b
--- /dev/null
+++ b/docs/en/linux/qm-migrate.md
@@ -0,0 +1,34 @@
+---
+layout: page
+title: linux/qm-migrate (English)
+description: "Migrate a virtual machine."
+content_hash: e1e7cd8fe71591cb5e0cb33abc2daa045dfcb225
+---
+
+This entry is very new in the [tldr-pages](https://github.com/tldr-pages/tldr) project, hence translation data is currently unavailable for a while.
+
+
# qm migrate
+
+Migrate a virtual machine.
+Used to create a new migration task.
+More information: .
+
+- Migrate a specific virtual machine:
+
+`qm migrate `vm_id` `target
+
+- Override the current I/O bandwidth limit with 10 KiB/s:
+
+`qm migrate `vm_id` `target` --bwlimit 10`
+
+- Allow migration of virtual machines using local devices (root only):
+
+`qm migrate `vm_id` `target` --force true`
+
+- Use online/live migration if a virtual machine is running:
+
+`qm migrate `vm_id` `target` --online true`
+
+- Enable live storage migration for local disks:
+
+`qm migrate `vm_id` `target` --with-local-disks true`
diff --git a/docs/en/osx/open.md b/docs/en/osx/open.md
index ce2f09c607..53d23c0086 100644
--- a/docs/en/osx/open.md
+++ b/docs/en/osx/open.md
@@ -2,7 +2,7 @@
layout: page
title: osx/open (English)
description: "Opens files, directories and applications."
-content_hash: 1d34985989a620bdb4042955a3358f0458e220c5
+content_hash: efa649ddbc99af56eef5b1b8c12c27041f317138
related_topics:
- title: Deutsch version
url: /de/osx/open.html
@@ -45,4 +45,4 @@ More information: .
- Open a [n]ew instance of an application specified via [b]undle identifier:
-`open -n -b `com.domiain.application
+`open -n -b `com.domain.application
diff --git a/docs/ne/common/ffmpeg.md b/docs/ne/common/ffmpeg.md
new file mode 100644
index 0000000000..14fce92c3e
--- /dev/null
+++ b/docs/ne/common/ffmpeg.md
@@ -0,0 +1,58 @@
+---
+layout: page
+title: common/ffmpeg (नेपाली)
+description: "भिडियो रूपान्तरण उपकरण।"
+content_hash: 0dd7b82f92f2ec4418573194da74b8dbdb0aad4f
+related_topics:
+ - title: Deutsch version
+ url: /de/common/ffmpeg.html
+ icon: bi bi-globe
+ - title: English version
+ url: /en/common/ffmpeg.html
+ icon: bi bi-globe
+ - title: italiano version
+ url: /it/common/ffmpeg.html
+ icon: bi bi-globe
+ - title: português (Brasil) version
+ url: /pt_BR/common/ffmpeg.html
+ icon: bi bi-globe
+---
+
+This entry is very new in the [tldr-pages](https://github.com/tldr-pages/tldr) project, hence translation data is currently unavailable for a while.
+
+
# ffmpeg
+
+भिडियो रूपान्तरण उपकरण।
+थप जानकारी: .
+
+- भिडियोबाट ध्वनि निकाल्नुहोस् र MP3 को रूपमा सेभ गर्नुहोस:
+
+`ffmpeg -i `भिडियो.mp4` -vn `ध्वनि`.mp3`
+
+- भिडियोको उचाइ 1000px मा स्केल गर्दै र फ्रेमरेटलाई 15 राखेर GIF को रूपमा सेभ गर्नुहोस:
+
+`ffmpeg -i `भिडियो.mp4` -vf 'scale=-1:`1000`' -r `15` `आउटपुट.gif
+
+- अंकित छविहरूलाइ(`फ्रेम_1.jpg`, `फ्रेम_2.jpg`, आदि) भिडियो वा GIF मा जोड्नुहोस:
+
+`ffmpeg -i `फ्रेम_%d.jpg` -f image2 `भिडियो.mpg|भिडियो.gif
+
+- भिडियोको mm:ss बाट एकल फ्रेम निकाल्नुहोस् र यसलाई 128x128 रिजोल्युसनको छविको रूपमा सेभ गर्नुहोस्:
+
+`ffmpeg -ss `mm:ss` -i `भिडियो.mp4` -frames 1 -s `128x128` -f image2 `छवि.png
+
+- दिइएको सुरु समय mm:ss देखि अन्त्यसमय mm2:ss2 सम्म भिडियोलाइ काट्नुहोस (अन्त्य सम्म नै काट्नलाई -to फ्ल्याग हटाउनुहोस्):
+
+`ffmpeg -ss `mm:ss` -to `mm2:ss2` -i `भिडियो.mp4` -codec copy `आउटपुट.mp4
+
+- AVI भिडियोलाई MP4 मा रूपान्तरण गर्नुहोस्। अडियोको 128kbit बिटरेट राखेर AAC मा, भिडियोको CRF 23 राखेर h264 मा:
+
+`ffmpeg -i `इनपुट_भिडियो`.avi -codec:audio aac -b:audio 128k -codec:video libx264 -crf 23 `आउटपुट_भिडियो`.mp4`
+
+- MKV भिडियोको अडियो वा भिडियो स्ट्रिमहरू पुन: एन्कोडिङ नगरी हानिरहित ढाँचामा MP4 मा बदल्नुहोस:
+
+`ffmpeg -i `इनपुट_भिडियो`.mkv -codec copy `आउटपुट_भिडियो`.mp4`
+
+- MP4 भिडियोलाई VP9 कोडेकमा रूपान्तरण गर्नुहोस्। उत्कृष्ट गुणस्तरको लागि, CRF फ्ल्यागको प्रयोग गर्नुहोस् (सिफारिस गरिएको दायरा 15-35) र -b:video 0 पनि प्रयोग गर्नुहोस्:
+
+`ffmpeg -i `इनपुट_भिडियो`.mp4 -codec:video libvpx-vp9 -crf `30` -b:video 0 -codec:audio libopus -vbr on -threads `थ्रेड_संख्या` `आउटपुट_भिडियो`.webm`
diff --git a/docs/tr/common/cat.md b/docs/tr/common/cat.md
new file mode 100644
index 0000000000..bc22a3637b
--- /dev/null
+++ b/docs/tr/common/cat.md
@@ -0,0 +1,76 @@
+---
+layout: page
+title: common/cat (Türkçe)
+description: "Dosyaları yazdırın ve birleştirin."
+content_hash: 5e8580f457bdb17799cd5f3bb656812e8f1000e7
+related_topics:
+ - title: Deutsch version
+ url: /de/common/cat.html
+ icon: bi bi-globe
+ - title: English version
+ url: /en/common/cat.html
+ icon: bi bi-globe
+ - title: español version
+ url: /es/common/cat.html
+ icon: bi bi-globe
+ - title: فارسی version
+ url: /fa/common/cat.html
+ icon: bi bi-globe
+ - title: français version
+ url: /fr/common/cat.html
+ icon: bi bi-globe
+ - title: हिन्दी version
+ url: /hi/common/cat.html
+ icon: bi bi-globe
+ - title: Indonesia version
+ url: /id/common/cat.html
+ icon: bi bi-globe
+ - title: italiano version
+ url: /it/common/cat.html
+ icon: bi bi-globe
+ - title: 한국어 version
+ url: /ko/common/cat.html
+ icon: bi bi-globe
+ - title: norsk bokmål (Norge) version
+ url: /no/common/cat.html
+ icon: bi bi-globe
+ - title: português (Brasil) version
+ url: /pt_BR/common/cat.html
+ icon: bi bi-globe
+ - title: русский version
+ url: /ru/common/cat.html
+ icon: bi bi-globe
+ - title: 中文 version
+ url: /zh/common/cat.html
+ icon: bi bi-globe
+ - title: 中文 (繁體, 台灣) version
+ url: /zh_TW/common/cat.html
+ icon: bi bi-globe
+---
+
+This entry is very new in the [tldr-pages](https://github.com/tldr-pages/tldr) project, hence translation data is currently unavailable for a while.
+
+
# cat
+
+Dosyaları yazdırın ve birleştirin.
+Daha fazla bilgi: .
+
+- Bir dosyanın içeriğini standart çıktıya yazdırın:
+
+`cat `dosya/yolu
+
+- Birkaç dosyayı bir çıktı dosyasında birleştirin:
+
+`cat `dosya/yolu1` `dosya/yolu2` > `cikti/dosyasi/yolu
+
+- Birkaç dosyayı bir çıktı dosyasına ekler:
+
+`cat `dosya/yolu1` `dosya/yolu2` >> `cikti/dosyasi/yolu
+
+- Tüm çıkış satırlarını numaralandırın:
+
+`cat -n `dosya/yolu
+
+- Yazdırılamayan ve boşluk karakterleri görüntüleyin (ASCII değilse `M-` önekiyle):
+
+`cat -v -t -e `dosya/yolu
diff --git a/source b/source
index 96e0324c04..0fb6668370 160000
--- a/source
+++ b/source
@@ -1 +1 @@
-Subproject commit 96e0324c04a5541e8974ad13cfab204b28fecf6b
+Subproject commit 0fb6668370b32f4bf750d7c4d3af29b5726a322f