From e7a06bac28057862cb80128905031eab5173ff0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?O=C4=9Fuz=20Ersen?= Date: Thu, 17 Mar 2022 05:08:52 +0000 Subject: [PATCH] atool, dnf, wl-copy, wl-paste: add Turkish translation (#7837) * wl-copy, wl-paste: fix invalid command options --paste-once is valid for wl-copy, not valid for wl-paste --clear is not valid for wl-paste * wl-copy, wl-paste: add Turkish translation * atool: add Turkish translation * dnf: add Turkish translation --- pages.tr/linux/atool.md | 20 ++++++++++++++++++++ pages.tr/linux/dnf.md | 36 ++++++++++++++++++++++++++++++++++++ pages.tr/linux/wl-copy.md | 21 +++++++++++++++++++++ pages.tr/linux/wl-paste.md | 17 +++++++++++++++++ pages/linux/wl-copy.md | 4 ++++ pages/linux/wl-paste.md | 8 -------- 6 files changed, 98 insertions(+), 8 deletions(-) create mode 100644 pages.tr/linux/atool.md create mode 100644 pages.tr/linux/dnf.md create mode 100644 pages.tr/linux/wl-copy.md create mode 100644 pages.tr/linux/wl-paste.md diff --git a/pages.tr/linux/atool.md b/pages.tr/linux/atool.md new file mode 100644 index 000000000..15d9d89d3 --- /dev/null +++ b/pages.tr/linux/atool.md @@ -0,0 +1,20 @@ +# atool + +> Çeşitli biçimlerdeki arşivleri yönetin. +> Daha fazla bilgi: . + +- Bir zip arşivindeki dosyaları listele: + +`atool --list {{arşiv.zip/dosyasının/yolu}}` + +- Bir tar.gz arşivini yeni bir alt dizine (veya yalnızca bir dosya içeriyorsa geçerli dizine) çıkart: + +`atool --extract {{arşiv.tar.gz/dosyasının/yolu}}` + +- İki dosyaya sahip yeni bir 7zip arşivi oluştur: + +`atool --add {{arşiv.7z/dosyasının/yolu}} {{dosya1/yolu}} {{dosya2/yolu}}` + +- Geçerli dizindeki tüm zip ve rar arşivlerini çıkart: + +`atool --each --extract {{*.zip}} {{*.rar}}` diff --git a/pages.tr/linux/dnf.md b/pages.tr/linux/dnf.md new file mode 100644 index 000000000..92670004a --- /dev/null +++ b/pages.tr/linux/dnf.md @@ -0,0 +1,36 @@ +# dnf + +> RHEL, Fedora ve CentOS için paket yönetim aracı (yum'un yerini alır). +> Daha fazla bilgi: . + +- Kurulu paketleri kullanılabilir en yeni sürümlere yükselt: + +`sudo dnf upgrade` + +- Anahtar kelimeler kullanarak paket ara: + +`dnf search {{anahtar_kelimeler}}` + +- Bir paketin ayrıntılarını göster: + +`dnf info {{paket}}` + +- Yeni bir paket kur: + +`sudo dnf install {{paket}}` + +- Yeni bir paket kur ve tüm soruları otomatik evet olarak yanıtla: + +`sudo dnf -y install {{paket}}` + +- Bir paketi kaldır: + +`sudo dnf remove {{paket}}` + +- Kurulu paketleri listele: + +`dnf list --installed` + +- Verilen dosyayı hangi paketlerin sağladığını bul: + +`dnf provides {{dosya}}` diff --git a/pages.tr/linux/wl-copy.md b/pages.tr/linux/wl-copy.md new file mode 100644 index 000000000..299edccb9 --- /dev/null +++ b/pages.tr/linux/wl-copy.md @@ -0,0 +1,21 @@ +# wl-copy + +> Wayland için pano değiştirme aracı. +> Ayrıca bakın: `wl-paste`. +> Daha fazla bilgi: . + +- Metni panoya kopyala: + +`wl-copy {{metin}}` + +- Komutun çıktısını panoya kopyala: + +`{{komut}} | wl-copy` + +- Yalnızca bir yapıştırma için kopyala ve ardından temizle: + +`wl-copy --paste-once` + +- Panoyu temizle: + +`wl-copy --clear` diff --git a/pages.tr/linux/wl-paste.md b/pages.tr/linux/wl-paste.md new file mode 100644 index 000000000..a3c830aa3 --- /dev/null +++ b/pages.tr/linux/wl-paste.md @@ -0,0 +1,17 @@ +# wl-paste + +> Wayland için panoda saklanan verilere erişim aracı. +> Ayrıca bakın: `wl-copy`. +> Daha fazla bilgi: . + +- Panonun içeriğini yapıştır: + +`wl-paste` + +- Panonun içeriğini bir dosyaya yaz: + +`wl-paste > {{dosya/yolu}}` + +- Panonun içeriğini bir komuta aktar: + +`wl-paste | {{komut}}` diff --git a/pages/linux/wl-copy.md b/pages/linux/wl-copy.md index ba6233151..96a0d62ac 100644 --- a/pages/linux/wl-copy.md +++ b/pages/linux/wl-copy.md @@ -12,6 +12,10 @@ `{{command}} | wl-copy` +- Copy for only one paste and then clear it: + +`wl-copy --paste-once` + - Clear the clipboard: `wl-copy --clear` diff --git a/pages/linux/wl-paste.md b/pages/linux/wl-paste.md index 30d958c04..ff589dd5b 100644 --- a/pages/linux/wl-paste.md +++ b/pages/linux/wl-paste.md @@ -8,10 +8,6 @@ `wl-paste` -- Paste the contents of the clipboard and then clear it: - -`wl-paste --paste-once` - - Write the contents of the clipboard to a file: `wl-paste > {{path/to/file}}` @@ -19,7 +15,3 @@ - Pipe the contents of the clipboard to a command: `wl-paste | {{command}}` - -- Clear the clipboard: - -`wl-paste --clear`