Browse Source

- Added Finnish translation

adaptive-webui-19844
Christophe Dumez 18 years ago
parent
commit
76ffe565e8
  1. 1
      Changelog
  2. BIN
      src/Icons/flags/finland.png
  3. 1
      src/icons.qrc
  4. 1
      src/lang.qrc
  5. 2
      src/options_imp.cpp
  6. 3
      src/src.pro

1
Changelog

@ -1,6 +1,7 @@ @@ -1,6 +1,7 @@
* Unknown - Christophe Dumez <chris@qbittorrent.org> - v0.8.0
- FEATURE: Based on Qt 4.2
- FEATURE: Brand new trayicon from Qt 4.2
- I18N: Added Finnish translation
- COSMETIC: Replaced OSD messages by systray messages
* Mon Oct 16 2006 - Christophe Dumez <chris@qbittorrent.org> - v0.7.1

BIN
src/Icons/flags/finland.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 290 B

1
src/icons.qrc

@ -39,6 +39,7 @@ @@ -39,6 +39,7 @@
<file>Icons/flags/romania.png</file>
<file>Icons/flags/bulgaria.png</file>
<file>Icons/flags/greece.png</file>
<file>Icons/flags/finland.png</file>
<file>Icons/skin/properties.png</file>
<file>Icons/skin/play_all.png</file>
<file>Icons/skin/remove.png</file>

1
src/lang.qrc

@ -21,5 +21,6 @@ @@ -21,5 +21,6 @@
<file>lang/qbittorrent_de.qm</file>
<file>lang/qbittorrent_zh_HK.qm</file>
<file>lang/qbittorrent_nb.qm</file>
<file>lang/qbittorrent_fi.qm</file>
</qresource>
</RCC>

2
src/options_imp.cpp

@ -72,6 +72,8 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){ @@ -72,6 +72,8 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){
locales << "el_GR";
combo_i18n->addItem((QIcon(QString::fromUtf8(":/Icons/flags/sweden.png"))), QString::fromUtf8("Svenska"));
locales << "sv_SE";
combo_i18n->addItem((QIcon(QString::fromUtf8(":/Icons/flags/finland.png"))), QString::fromUtf8("Suomi"));
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/bulgaria.png"))), QString::fromUtf8("Български"));

3
src/src.pro

@ -90,7 +90,8 @@ TRANSLATIONS = $$LANG_PATH/qbittorrent_fr.ts \ @@ -90,7 +90,8 @@ TRANSLATIONS = $$LANG_PATH/qbittorrent_fr.ts \
$$LANG_PATH/qbittorrent_sk.ts \
$$LANG_PATH/qbittorrent_ro.ts \
$$LANG_PATH/qbittorrent_pt.ts \
$$LANG_PATH/qbittorrent_nb.ts
$$LANG_PATH/qbittorrent_nb.ts \
$$LANG_PATH/qbittorrent_fi.ts
# Source code
HEADERS += GUI.h misc.h options_imp.h about_imp.h \

Loading…
Cancel
Save