-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
abbr, abroot, abrt-{action-analyze-backtrace, action-analyze-c, cli}: add Indonesian translation #21171
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
Merged
Merged
abbr, abroot, abrt-{action-analyze-backtrace, action-analyze-c, cli}: add Indonesian translation #21171
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| # abbr | ||
|
|
||
| > Kelola singkatan untuk fish shell. | ||
| > Kata yang didefinisikan pengguna diganti dengan frasa yang lebih panjang setelah dimasukkan. | ||
| > Informasi lebih lanjut: <https://fishshell.com/docs/current/cmds/abbr.html>. | ||
|
|
||
| - Tambahkan singkatan baru: | ||
|
|
||
| `abbr {{[-a|--add]}} {{abbreviation_name}} {{command}} {{command_arguments}}` | ||
|
|
||
| - Ganti nama singkatan yang sudah ada: | ||
|
|
||
| `abbr --rename {{old_name}} {{new_name}}` | ||
|
|
||
| - Hapus singkatan yang sudah ada: | ||
|
|
||
| `abbr {{[-e|--erase]}} {{abbreviation_name}}` | ||
|
|
||
| - Impor singkatan yang didefinisikan pada host lain melalui SSH: | ||
|
|
||
| `ssh {{host_name}} abbr {{[-s|--show]}} | source` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| # abroot | ||
|
|
||
| > Utilitas yang menyediakan imutabilitas dan atomisitas penuh melalui transaksi antara 2 status partisi root (A⟺B). | ||
| > Pembaruan dilakukan menggunakan image OCI, untuk memastikan sistem selalu dalam keadaan konsisten. | ||
| > Informasi lebih lanjut: <https://docs.vanillaos.org/docs/en/abroot-manpage>. | ||
|
|
||
| - Tambahkan paket ke image lokal (Catatan: Setelah menjalankan perintah ini, Anda perlu menerapkan perubahan tersebut): | ||
|
|
||
| `sudo abroot pkg add {{package}}` | ||
|
|
||
| - Hapus paket dari image lokal (Catatan: Setelah menjalankan perintah ini, Anda perlu menerapkan perubahan tersebut): | ||
|
|
||
| `sudo abroot pkg remove {{package}}` | ||
|
|
||
| - Tampilkan daftar paket dalam image lokal: | ||
|
|
||
| `sudo abroot pkg list` | ||
|
|
||
| - Terapkan perubahan dalam image lokal (Catatan: Anda perlu me-reboot sistem agar perubahan ini diterapkan): | ||
|
|
||
| `sudo abroot pkg apply` | ||
|
|
||
| - Rollback sistem ke keadaan sebelumnya: | ||
|
|
||
| `sudo abroot rollback` | ||
|
|
||
| - Edit/Lihat parameter kernel: | ||
|
|
||
| `sudo abroot kargs {{edit|show}}` | ||
|
|
||
| - Tampilkan status: | ||
|
|
||
| `sudo abroot status` | ||
|
|
||
| - Tampilkan bantuan: | ||
|
|
||
| `abroot {{[-h|--help]}}` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # abrt-action-analyze-backtrace | ||
|
|
||
| > Analisis backtrace C/C++. | ||
| > Hasilkan hash duplikasi, peringkat backtrace (backtrace rating), dan identifikasi fungsi crash. | ||
| > Simpan data sebagai elemen baru `duphash`, `rating`, `crash_function` di dalam direktori masalah. | ||
| > Informasi lebih lanjut: <https://manned.org/abrt-action-analyze-backtrace>. | ||
|
|
||
| - Meng-analisis backtrace untuk direktori kerja (working directory) saat ini: | ||
|
|
||
| `abrt-action-analyze-backtrace` | ||
|
|
||
| - Meng-analisis backtrace untuk direktori tertentu: | ||
|
|
||
| `abrt-action-analyze-backtrace -d {{path/ke/direktori}}` | ||
|
|
||
| - Meng-analisis backtrace secara verbose: | ||
|
|
||
| `abrt-action-analyze-backtrace -v` | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| # abrt-action-analyze-c | ||
|
|
||
| > Hitung UUID untuk direktori data masalah dengan `coredump`. | ||
| > Informasi lebih lanjut: <https://manned.org/abrt-action-analyze-c>. | ||
|
|
||
| - Hitung dan simpan UUID untuk direktori kerja (working directory) saat ini: | ||
|
|
||
| `abrt-action-analyze-c` | ||
|
|
||
| - Hitung dan simpan UUID untuk direktori tertentu: | ||
|
|
||
| `abrt-action-analyze-c -d {{path/ke/direktori}}` | ||
|
|
||
| - Hitung dan simpan UUID secara verbose: | ||
|
|
||
| `abrt-action-analyze-c -v` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| # abrt-cli | ||
|
|
||
| > Automatic Bug Reporting Tool untuk sistem berbasis Fedora. | ||
| > Digunakan untuk mendeteksi, menganalisis, dan melaporkan crash aplikasi. | ||
| > Informasi lebih lanjut: <https://abrt.readthedocs.io/en/latest/usage.html>. | ||
|
|
||
| - Tampilkan daftar masalah yang terdeteksi: | ||
|
|
||
| `abrt-cli list` | ||
|
|
||
| - Tampilkan detail dari masalah tertentu: | ||
|
|
||
| `abrt-cli info {{problem_id}}` | ||
|
|
||
| - Hapus laporan crash: | ||
|
|
||
| `abrt-cli remove {{problem_id}}` | ||
|
|
||
| - Laporkan masalah ke bug tracker yang terkonfigurasi (misalnya Bugzilla): | ||
|
|
||
| `abrt-cli report {{problem_id}}` | ||
|
|
||
| - Pantau file log dan picu program saat kecocokan ditemukan: | ||
|
|
||
| `abrt-watch-log -F {{error_string}} {{/var/log/myapp.log}} {{notify-send "Crash detected"}}` | ||
|
|
||
| - Buat laporan untuk debugging secara manual: | ||
|
|
||
| `abrt-cli report {{[-a|--analyze]}} {{problem_id}}` |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.