diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ce19906f45..018686c804 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -103,6 +103,8 @@ Some examples of valid locale tags: - Chinese (Singapore): `zh_SG`. - Portuguese (Brazil): `pt_BR`. +A list of translated templates for alias pages can be found in [here](contributing-guides/alias-pages.md). + ### Default language for newly added pages The default language used for pages is English (US). Pages written in English are stored in the default `pages` directory (notice the absence of a specific language tag). Although not strictly required, if you'd like to add a new page in a different language, please consider creating the English page too. diff --git a/contributing-guides/alias-pages.md b/contributing-guides/alias-pages.md new file mode 100644 index 0000000000..444fb18154 --- /dev/null +++ b/contributing-guides/alias-pages.md @@ -0,0 +1,308 @@ +# Alias pages + +In order to document a command which is an alias of another command, you can +write an alias page. This file contains a list of all translations of the alias +page template decided upon in +[#5368](https://github.com/tldr-pages/tldr/pull/5368). +The templates can be changed when necessary. + +[en](#en) • +[bs](#bs) • +[da](#da) • +[de](#de) • +[es](#es) • +[fa](#fa) • +[fr](#fr) • +[hi](#hi) • +[id](#id) • +[it](#it) • +[ja](#ja) • +[ko](#ko) • +[ml](#ml) • +[nl](#nl) • +[no](#no) • +[pl](#pl) • +[pt_BR](#pt_br) • +[pt_PT](#pt_pt) • +[ru](#ru) • +[sh](#sh) • +[sv](#sv) • +[ta](#ta) • +[th](#th) • +[tr](#tr) • +[zh](#zh) • +[zh_TW](#zh_tw) + +--- +### en + +```markdown +# example + +> This command is an alias of `example`. + +- View documentation for the original command: + +`tldr example` +``` + +--- +### bs + +```markdown +# example + +> Ova komanda je alijas za `example`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr example` +``` + +--- +### da + +Not translated yet. + +--- +### de + +```markdown +# example + +> Dieser Befehl ist ein Alias von `example`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr example` +``` + +--- +### es + +```markdown +# example + +> Este comando es un alias de `example`. + +- Ver documentación para el comando original: + +`tldr example` +``` + +--- +### fa + +Not translated yet. + +--- +### fr + +```markdown +# example + +> Cette commande est un alias de `example`. + +- Voir la documentation de la commande originale : + +`tldr example` +``` + +--- +### hi + +```markdown +# example + +> यह आदेश `example` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr example` +``` + +--- +### id + +```markdown +# example + +> Perintah ini merupakan alias dari `example`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr example` +``` + +--- +### it + +```markdown +# example + +> Questo comando è un alias per `example`. + +- Consulta la documentazione del comando originale: + +`tldr example` +``` + +--- +### ja + +```markdown +# example + +> このコマンドは `example` のエイリアスです. + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr example` +``` + +--- +### ko + +Not translated yet. + +--- +### ml + +```markdown +# example + +> ഈ കമാൻഡ് `example` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr example` +``` + +--- +### nl + +```markdown +# example + +> Dit commando is een alias van `example`. + +- Bekijk de documentatie van het originele commando: + +`tldr example` +``` + +--- +### no + +```markdown +# example + +> Denne kommandoen er et alias for `example`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr example` +``` + +--- +### pl + +```markdown +# example + +> Te polecenie jest aliasem `example`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr example` +``` + +--- +### pt_BR + +Not translated yet. + +--- +### pt_PT + +Not translated yet. + +--- +### ru + +```markdown +# example + +> Эта команда — псевдоним для `example`. + +- Смотри документацию для оригинальной команды: + +`tldr example` +``` + +--- +### sh + +Not translated yet. + +--- +### sv + +Not translated yet. + +--- +### ta + +```markdown +# example + +> இக்கட்டளை `example` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr example` +``` + +--- +### th + +```markdown +# example + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `example`. + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr example` +``` + +--- +### tr + +Not translated yet. + +--- +### zh + +```markdown +# example + +> 这是 `example` 命令的一个别名。 + +- 原命令的文档在: + +`tldr example` +``` + +--- +### zh_TW + +```markdown +# example + +> 這是 `example` 命令的一個別名。 + +- 原命令的文檔在: + +`tldr example` +```