aboutsummaryrefslogtreecommitdiff
path: root/locale/fr/LC_MESSAGES/_articles/2018-12-21-using-youtube-dl-to-manage-youtube-subscriptions.po
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2020-11-04 17:38:20 -0300
committernixpkgs-review <nixpkgs-review@example.com>2020-11-04 17:38:31 -0300
commit74e220677ac2cb1bef16d0f62092d56db6f62e1d (patch)
tree584206f01cc1b1a2dffedbffb943d4d7fb601ac2 /locale/fr/LC_MESSAGES/_articles/2018-12-21-using-youtube-dl-to-manage-youtube-subscriptions.po
parentUpdate mdpo version: 0.2.36 -> 0.2.37 (diff)
downloadeuandre.org-74e220677ac2cb1bef16d0f62092d56db6f62e1d.tar.gz
euandre.org-74e220677ac2cb1bef16d0f62092d56db6f62e1d.tar.xz
Add all code blocks to translation po files
Diffstat (limited to 'locale/fr/LC_MESSAGES/_articles/2018-12-21-using-youtube-dl-to-manage-youtube-subscriptions.po')
-rw-r--r--locale/fr/LC_MESSAGES/_articles/2018-12-21-using-youtube-dl-to-manage-youtube-subscriptions.po62
1 files changed, 62 insertions, 0 deletions
diff --git a/locale/fr/LC_MESSAGES/_articles/2018-12-21-using-youtube-dl-to-manage-youtube-subscriptions.po b/locale/fr/LC_MESSAGES/_articles/2018-12-21-using-youtube-dl-to-manage-youtube-subscriptions.po
index 86f62ae..52b5a40 100644
--- a/locale/fr/LC_MESSAGES/_articles/2018-12-21-using-youtube-dl-to-manage-youtube-subscriptions.po
+++ b/locale/fr/LC_MESSAGES/_articles/2018-12-21-using-youtube-dl-to-manage-youtube-subscriptions.po
@@ -316,3 +316,65 @@ msgid ""
"could be better, but also how much it has improved over the last years, I "
"say it's reasonable."
msgstr ""
+
+msgid ""
+"$ youtube-dl https://www.youtube.com/watch?v=rnMYZnY3uLA\n"
+"[youtube] rnMYZnY3uLA: Downloading webpage\n"
+"[youtube] rnMYZnY3uLA: Downloading video info webpage\n"
+"[download] Destination: A Origem da Vida _ Nerdologia-rnMYZnY3uLA.mp4\n"
+"[download] 100% of 32.11MiB in 00:12\n"
+msgstr ""
+
+msgid ""
+"$ youtube-dl \"https://www.youtube.com/channel/UClu474HMt895mVxZdlIHXEA\" \\\n"
+" --download-archive ~/Nextcloud/cache/youtube-dl-seen.conf \\\n"
+" --prefer-free-formats \\\n"
+" --playlist-end 20 \\\n"
+" --write-description \\\n"
+" --output \"~/Downloads/yt-dl/%(uploader)s/%(upload_date)s - %(title)s.%(ext)s\"\n"
+msgstr ""
+
+msgid ""
+"#!/bin/sh\n"
+"\n"
+"export DEFAULT_PLAYLIST_END=15\n"
+"\n"
+"download() {\n"
+" youtube-dl \"$1\" \\\n"
+" --download-archive ~/Nextcloud/cache/youtube-dl-seen.conf \\\n"
+" --prefer-free-formats \\\n"
+" --playlist-end $2 \\\n"
+" --write-description \\\n"
+" --output \"~/Downloads/yt-dl/%(uploader)s/%(upload_date)s - %(title)s.%(ext)s\"\n"
+"}\n"
+"export -f download\n"
+"\n"
+"\n"
+"download_user() {\n"
+" download \"https://www.youtube.com/user/$1\" ${2-$DEFAULT_PLAYLIST_END}\n"
+"}\n"
+"export -f download_user\n"
+"\n"
+"\n"
+"download_channel() {\n"
+" download \"https://www.youtube.com/channel/$1\" ${2-$DEFAULT_PLAYLIST_END}\n"
+"}\n"
+"export -f download_channel\n"
+"\n"
+"\n"
+"download_playlist() {\n"
+" download \"https://www.youtube.com/playlist?list=$1\" ${2-$DEFAULT_PLAYLIST_END}\n"
+"}\n"
+"export -f download_playlist\n"
+msgstr ""
+
+msgid ""
+"#!/bin/sh\n"
+"\n"
+"download_user ClojureTV 15\n"
+"download_channel \"UCmEClzCBDx-vrt0GuSKBd9g\" 100\n"
+"download_playlist \"PLqG7fA3EaMRPzL5jzd83tWcjCUH9ZUsbX\" 15\n"
+msgstr ""
+
+msgid "$ uniq youtube-dl-seen.conf > youtube-dl-seen.conf\n"
+msgstr ""