Explorar o código

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
Oğuz Ersen %!s(int64=3) %!d(string=hai) anos
pai
achega
e7a06bac28

+ 20 - 0
pages.tr/linux/atool.md

@@ -0,0 +1,20 @@
+# atool
+
+> Çeşitli biçimlerdeki arşivleri yönetin.
+> Daha fazla bilgi: <https://www.nongnu.org/atool/>.
+
+- 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}}`

+ 36 - 0
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: <https://dnf.readthedocs.io>.
+
+- 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}}`

+ 21 - 0
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: <https://github.com/bugaevc/wl-clipboard>.
+
+- 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`

+ 17 - 0
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: <https://github.com/bugaevc/wl-clipboard>.
+
+- 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}}`

+ 4 - 0
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`

+ 0 - 8
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`