mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-22 06:13:36 -07:00
- Added option entry to select new danish translation
This commit is contained in:
parent
188e3956d8
commit
4d6aad8cab
7 changed files with 7 additions and 1 deletions
|
@ -26,6 +26,7 @@
|
|||
- BUGFIX: Create Options object only when necessary (to save memory)
|
||||
- BUGFIX: Let libtorrent store the torrent handles (save memory)
|
||||
- BUGFIX: Set DHT Port only when DHT is enabled
|
||||
- I18N: Added Danish translation
|
||||
- I18N: Better internationalization thanks to dynamic text support
|
||||
- COSMETIC: Replaced OSD messages by Qt4.2 systray messages
|
||||
|
||||
|
|
2
TODO
2
TODO
|
@ -37,6 +37,6 @@
|
|||
- UPnP support?
|
||||
|
||||
// In v0.9.0
|
||||
- Update translations (FR, SV, NB, PL, RU, DE, SK, KO, ZH_CN, EL, BG, ES done)
|
||||
- Update translations (FR, SV, NB, PL, RU, DE, SK, KO, ZH_CN, EL, BG, ES, DA done)
|
||||
- Bug squashing
|
||||
- Wait for libtorrent v0.12 official release
|
||||
|
|
BIN
src/Icons/flags/denmark.png
Normal file
BIN
src/Icons/flags/denmark.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 270 B |
|
@ -47,6 +47,7 @@ class about : public QDialog, private Ui::AboutDlg{
|
|||
- <u>Catalan:</u> Gekko Dam Beer (gekko04@users.sourceforge.net)<br>\
|
||||
- <u>Chinese (Simplified):</u> Guo Yue (guoyue0418@hotmail.com)<br>\
|
||||
- <u>Chinese (Traditional):</u> Jeff Chen (jeff.cn.chen@gmail.com)<br>\
|
||||
- <u>Danish:</u> Mathias Nielsen (comoneo@gmail.com)<br>\
|
||||
- <u>Dutch:</u> Luke Niesink (luke@lukeniesink.net)<br>\
|
||||
- <u>Finnish:</u> Niklas Laxström (nikerabbit@users.sourceforge.net)<br>\
|
||||
- <u>German:</u> Niels Hoffmann (zentralmaschine@users.sourceforge.net)<br>\
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
<file>Icons/flags/norway.png</file>
|
||||
<file>Icons/flags/italy.png</file>
|
||||
<file>Icons/flags/china.png</file>
|
||||
<file>Icons/flags/denmark.png</file>
|
||||
<file>Icons/flags/turkey.png</file>
|
||||
<file>Icons/flags/sweden.png</file>
|
||||
<file>Icons/flags/romania.png</file>
|
||||
|
|
|
@ -22,5 +22,6 @@
|
|||
<file>lang/qbittorrent_sv.qm</file>
|
||||
<file>lang/qbittorrent_fi.qm</file>
|
||||
<file>lang/qbittorrent_zh_HK.qm</file>
|
||||
<file>lang/qbittorrent_da.qm</file>
|
||||
</qresource>
|
||||
</RCC>
|
|
@ -78,6 +78,8 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){
|
|||
locales << "fi_FI";
|
||||
combo_i18n->addItem((QIcon(QString::fromUtf8(":/Icons/flags/norway.png"))), QString::fromUtf8("Norsk"));
|
||||
locales << "nb_NO";
|
||||
combo_i18n->addItem((QIcon(QString::fromUtf8(":/Icons/flags/denmark.png"))), QString::fromUtf8("Danish"));
|
||||
locales << "da_DK";
|
||||
combo_i18n->addItem((QIcon(QString::fromUtf8(":/Icons/flags/bulgaria.png"))), QString::fromUtf8("Български"));
|
||||
locales << "bg_BG";
|
||||
combo_i18n->addItem((QIcon(QString::fromUtf8(":/Icons/flags/ukraine.png"))), QString::fromUtf8("Українська"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue