Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

translate(id): lxc pages #720

Merged
merged 6 commits into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions content/STRUCTURE.id.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,32 +82,32 @@
"meta": {"target": "/lxc/introduction/"}},

{"path": "/lxc/introduction/",
"title": "LXC - Introduction",
"menu": ["LXC", "Introduction"],
"title": "LXC - Pengenalan",
"menu": ["LXC", "Pengenalan"],
"generator": "markdown",
"meta": {"input": "lxc/introduction.md"}},
"meta": {"input": "lxc/introduction.id.md"}},

{"path": "/lxc/news/",
"title": "LXC - News",
"menu": ["LXC", "News"],
"title": "LXC - Berita",
"menu": ["LXC", "Berita"],
"generator": "news",
"meta": {"dir": "/content/lxc/news/",
"input": "lxc/news.md",
"input": "lxc/news.id.md",
"toc_depth": "2-2",
"str_older": "Older news",
"str_back": "Back to the news overview"}},

{"path": "/lxc/getting-started/",
"title": "LXC - Getting started",
"menu": ["LXC", "Getting started"],
"title": "LXC - Memulai",
"menu": ["LXC", "Memulai"],
"generator": "markdown",
"meta": {"input": "lxc/getting-started.md"}},

{"path": "/lxc/documentation/",
"title": "LXC - Documentation",
"menu": ["LXC", "Documentation"],
"title": "LXC - Dokumentasi",
"menu": ["LXC", "Dokumentasi"],
"generator": "markdown",
"meta": {"input": "lxc/documentation.md"}},
"meta": {"input": "lxc/documentation.id.md"}},

{"path": "/lxc/apidoc/",
"generator": "directory",
Expand All @@ -120,30 +120,30 @@
"meta": {"dir": "/manpages/lxc"}},

{"path": "/lxc/contribute/",
"title": "LXC - Contribute",
"menu": ["LXC", "Contribute"],
"title": "LXC - Kontribusi",
"menu": ["LXC", "Kontribusi"],
"generator": "markdown",
"meta": {"input": "lxc/contribute.md"}},
"meta": {"input": "lxc/contribute.id.md"}},

{"path": "/lxc/security/",
"title": "LXC - Security",
"menu": ["LXC", "Security"],
"title": "LXC - Keamanan",
"menu": ["LXC", "Keamanan"],
"generator": "markdown",
"meta": {"input": "lxc/security.md"}},

{"path": "/lxc/downloads/",
"title": "LXC - Downloads",
"menu": ["LXC", "Downloads"],
"title": "LXC - Unduh",
"menu": ["LXC", "Unduh"],
"generator": "downloads",
"meta": {"dir": "/downloads/lxc",
"input": "lxc/downloads.md"}},
"input": "lxc/downloads.id.md"}},

{"path": "/lxc/external-resources/",
"menu": ["LXC", "External resources"]},

{"path": "/lxc/articles/",
"title": "LXC - Articles",
"menu": ["LXC", "Articles"],
"title": "LXC - Artikel",
"menu": ["LXC", "Artikel"],
"generator": "markdown",
"meta": {"input": "lxc/articles.md"}},

Expand Down
76 changes: 76 additions & 0 deletions content/lxc/contribute.id.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
<!--
# Source code
-->
# Sumber Kode

<!--
The current development version of LXC can be cloned from GitHub with:
-->
Versi development LXC saat ini dapat diclone dari Github dengan:

git clone git://github.com/lxc/lxc

<!--
Source tarballs from the various stable releases are also available in the [downloads](/lxc/downloads/) section.
-->
Sumber kode tarball dari berbagai rilis stabil juga tersedia di bagian [unduhan](/lxc/downloads/).

<!--
Patches sent upstream for review must be based on the current git tree and not on stable releases, unless the bug only affects a stable release.
-->
Patch yang dikirim ke hulu untuk ditinjau harus didasarkan pada git tree saat ini dan bukan pada rilis stabil, kecuali bug hanya memengaruhi rilis stabil.

<!--
# Patch submission process
-->
# Proses Pengajuan Patch

<!--
Every submitted patch **must** be signed off by its author.
-->
Setiap pengajuan patch **harus** ditandatangani oleh author.

<!--
The easy way is to use : `git commit -s`
-->
Cara yang mudah adalah dengan menggunakkan : `git commit -s`

<!--
and if you forgot "-s" on a previous commit : `git commit --amend -s`
-->
dan jika Anda lupa "-s" pada commit sebelumnya : `git commit --amend -s`

<!--
## The mailing-list way
-->
## Cara mailing-list

<!--
You may contribute to LXC either by sending a patch or patchset directly on the [lxc-devel mailing-list](https://lists.linuxcontainers.org/).
-->
Anda dapat berkontribusi ke LXC dengan mengirimkan patch atau patchset langsung ke [milis lxc-devel](https://lists.linuxcontainers.org/).

<!--
You can use `git format-patch` to generate mailable patch.
-->
Anda dapat menggunakan `git format-patch` untuk membuat patch yang dapat dikirimkan.

<!--
Beware of "copy/paste" on mail clients as they can break tabs and lines (see `git send-email` or `git imap-send`).
-->
Hati-hati terhadap "copy-paste" pada klien email karena dapat merusak tab dan baris (lihat `git send-email` atau `git imap-send`).

<!--
## The pull-request way
-->
## Cara pull-request

<!--
Fork the repository, create a branch, commit you work (with -s !), and push it.
-->
Fork repositori, buat sebuah branch, commit pekerjaanmu (dengan -s !), dan push.

<!--
Then follow the [GitHub's doc](https://help.github.com/articles/creating-a-pull-request/).
-->
Lalu ikuti [dokumentasi GitHub](https://help.github.com/articles/creating-a-pull-request/).
Loading
Loading