-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ability to change download directory, set speed limit, and add username/password for authentication, also button for opening the download folder.
- Loading branch information
1 parent
0f1bbc7
commit 9bf5488
Showing
6 changed files
with
473 additions
and
196 deletions.
There are no files selected for viewing
This file contains 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,3 @@ | ||
.flatpak | ||
.vscode | ||
_build |
This file contains 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 |
---|---|---|
|
@@ -3,4 +3,4 @@ nl | |
oc | ||
pt_BR | ||
ru | ||
tr | ||
tr |
This file contains 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
This file contains 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 |
---|---|---|
|
@@ -60,8 +60,8 @@ msgid "Download" | |
msgstr "İndir" | ||
|
||
#: src/variamain.py:184 | ||
msgid "Open Downloads Folder" | ||
msgstr "İndirilenler Klasörünü Aç" | ||
msgid "Open Download Folder" | ||
msgstr "İndirme Klasörünü Aç" | ||
|
||
#: src/variamain.py:196 | ||
msgid "Speed Limit" | ||
|
@@ -83,11 +83,23 @@ msgstr "Hız Sınırı Koy" | |
msgid "Cancel All" | ||
msgstr "Tümünü İptal Et" | ||
|
||
#: src/variamain.py:235 | ||
msgid "/s" | ||
msgstr "/s" | ||
|
||
#: src/variamain.py:238 | ||
msgid "No limit" | ||
msgstr "Limit yok" | ||
|
||
#: src/variamain.py:274 | ||
msgid "Download complete." | ||
msgstr "İndirme tamamlandı." | ||
|
||
#: src/variamain.py:276 | ||
msgid "Download speed is limited." | ||
msgstr "İndirme hızı sınırlandı." | ||
|
||
#: src/variamain.py:277 | ||
msgid "An error occurred:" | ||
msgstr "Hata oluştu:" | ||
|
||
|
@@ -150,6 +162,34 @@ msgstr "" | |
msgid "translator-credits" | ||
msgstr "Sabri Ünal <[email protected]>\nGiant Pink Robots! <[email protected]>" | ||
|
||
#: src/variamain.py:457 | ||
msgid "Download Directory" | ||
msgstr "İndirme Klasörü" | ||
|
||
#: src/variamain.py:460 | ||
msgid "Change" | ||
msgstr "Değiştir" | ||
|
||
#: src/variamain.py:463 | ||
msgid "Speed limited" | ||
msgstr "Hız sınırlı" | ||
|
||
#: src/variamain.py:519 | ||
msgid "Authentication" | ||
msgstr "Kimlik Doğrulama" | ||
|
||
#: src/variamain.py:532 | ||
msgid "Username" | ||
msgstr "Kullanıcı Adı" | ||
|
||
#: src/variamain.py:534 | ||
msgid "Password" | ||
msgstr "Şifre" | ||
|
||
#: src/variamain.py:554 | ||
msgid "Authorization failed." | ||
msgstr "Yetkilendirme başarısız oldu." | ||
|
||
#: src/gtk/help-overlay.ui:11 | ||
msgctxt "shortcut window" | ||
msgid "General" | ||
|
This file contains 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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#!/bin/bash | ||
download_dir=$(xdg-user-dir DOWNLOAD) | ||
pythonexec='@PYTHON@' | ||
pkgdatadir='@pkgdatadir@' | ||
$pkgdatadir/../../aria2/aria2c -d $download_dir --enable-rpc --rpc-listen-port=6801 & | ||
$pkgdatadir/../../aria2/aria2c --enable-rpc --rpc-listen-port=6801 & | ||
$pythonexec $pkgdatadir/../../bin/varia-py.py |
Oops, something went wrong.