From 41d9dd636a51846bbef74a2431375d74da45f5cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alois=20Se=C4=8Dk=C3=A1r?= Date: Sun, 8 Oct 2023 13:31:17 +0200 Subject: [PATCH] cd, translation-templates/*: add Czech translation (#10791) * cd, translation-templates/*: add Czech translation --------- Co-authored-by: K.B.Dharun Krishna --- .../translation-templates/alias-pages.md | 15 ++++++++++ .../translation-templates/common-arguments.md | 1 + .../subcommand-mention.md | 9 ++++++ pages.cs/common/cd.md | 28 +++++++++++++++++++ pages.cs/windows/cd.md | 24 ++++++++++++++++ 5 files changed, 77 insertions(+) create mode 100644 pages.cs/common/cd.md create mode 100644 pages.cs/windows/cd.md diff --git a/contributing-guides/translation-templates/alias-pages.md b/contributing-guides/translation-templates/alias-pages.md index 677a041f5..188a65963 100644 --- a/contributing-guides/translation-templates/alias-pages.md +++ b/contributing-guides/translation-templates/alias-pages.md @@ -11,6 +11,7 @@ The templates can be changed when necessary. [bn](#bn) • [bs](#bs) • [ca](#ca) • +[cs](#cs) • [da](#da) • [de](#de) • [es](#es) • @@ -106,6 +107,20 @@ Not translated yet. --- +### cs + +```markdown +# example + +> Tento příkaz je aliasem pro `example`. + +- Podívejte se na dokumentaci původního příkazu: + +`tldr example` +``` + +--- + ### da ```markdown diff --git a/contributing-guides/translation-templates/common-arguments.md b/contributing-guides/translation-templates/common-arguments.md index 10d2c0e0c..ad6781577 100644 --- a/contributing-guides/translation-templates/common-arguments.md +++ b/contributing-guides/translation-templates/common-arguments.md @@ -11,6 +11,7 @@ Only the left-alignment of the header gets lost and has to be re-added again (`| | bn | | | | | | | bs | | | | | | | ca | camí/al/fitxer | camí/al/directori | camí/al/fitxer_o_directori | paquet | nom_usuari | +| cs | cesta/k/souboru | cesta/k/adresari | cesta/k/souboru_ci_adresari | balíček | jmeno_uzivatele | | da | sti/til/fil | sti/til/mappe | sti/til/fil_eller_mappe | pakke | brugernavn | | de | pfad/zu/datei | pfad/zu/verzeichnis | pfad/zu/datei_oder_verzeichnis | paket | benutzername | | es | ruta/al/archivo | ruta/al/directorio | ruta/al/archivo_o_directorio | paquete | nombre_de_usuario | diff --git a/contributing-guides/translation-templates/subcommand-mention.md b/contributing-guides/translation-templates/subcommand-mention.md index adf7f357e..df7c020a9 100644 --- a/contributing-guides/translation-templates/subcommand-mention.md +++ b/contributing-guides/translation-templates/subcommand-mention.md @@ -10,6 +10,7 @@ This file contains the translation templates of this notice. [bn](#bn) • [bs](#bs) • [ca](#ca) • +[cs](#cs) • [da](#da) • [de](#de) • [es](#es) • @@ -79,6 +80,14 @@ Alguns subcomandaments com `example command` tenen la seva pròpia documentació --- +### cs + +```markdown +Některé dílčí příkazy jako je `example command` mají svou vlastní dokumentaci. +``` + +--- + ### da ```markdown diff --git a/pages.cs/common/cd.md b/pages.cs/common/cd.md new file mode 100644 index 000000000..4371cab28 --- /dev/null +++ b/pages.cs/common/cd.md @@ -0,0 +1,28 @@ +# cd + +> Změnit aktuální pracovní adresář. +> Více informací: . + +- Přesun do zadaného adresáře: + +`cd {{cesta/k/adresari}}` + +- Přesun o úroveň výš do nadřazeného adresáře: + +`cd ..` + +- Přesun do domovského adresáře aktuálního uživatele: + +`cd` + +- Přesun do domovského adresáře zadaného uživatele: + +`cd ~{{jmeno_uzivatele}}` + +- Přesun do předchozího vybraného adresáře: + +`cd -` + +- Přesun do kořenového adresáře: + +`cd /` diff --git a/pages.cs/windows/cd.md b/pages.cs/windows/cd.md new file mode 100644 index 000000000..e15794e7f --- /dev/null +++ b/pages.cs/windows/cd.md @@ -0,0 +1,24 @@ +# cd + +> Zobrazit aktuální adresář nebo přesun do jiného adresáře. +> Více informací: . + +- Zobrazit cestu k aktuálnímu adresáři: + +`cd` + +- Přesun do kořenového adresáře aktuálního disku: + +`cd \` + +- Přesun do nadřazené složky aktuálního adresáře: + +`cd ..` + +- Přesun do zadaného adresáře na stejném disku: + +`cd {{cesta\k\adresari}}` + +- Přesun do zadaného adresáře na jiném disku: + +`cd /d {{C}}:{{cesta\k\adresari}}`