- Added Japanese translation

This commit is contained in:
Christophe Dumez 2007-04-07 07:43:57 +00:00
commit 8b3c4f8143
8 changed files with 2267 additions and 1 deletions

View file

@ -2,6 +2,7 @@
- BUGFIX: Window can now stay maximized on exit
- BUGFIX: Use PKGCONFIG again for configuring libtorrent
- BUGFIX: Allow to compile with libtorrent v0.11
- I18N: Added Japanese translation
* Wed Apr 04 2007 - Christophe Dumez <chris@qbittorrent.org> - v0.9.1
- BUGFIX: A lot of fixes in configure file

BIN
src/Icons/flags/japan.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 B

View file

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

View file

@ -23,5 +23,6 @@
<file>lang/qbittorrent_fi.qm</file>
<file>lang/qbittorrent_zh_HK.qm</file>
<file>lang/qbittorrent_da.qm</file>
<file>lang/qbittorrent_ja.qm</file>
</qresource>
</RCC>

BIN
src/lang/qbittorrent_ja.qm Normal file

Binary file not shown.

2260
src/lang/qbittorrent_ja.ts Normal file

File diff suppressed because it is too large Load diff

View file

@ -86,6 +86,8 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){
locales << "uk_UA";
combo_i18n->addItem((QIcon(QString::fromUtf8(":/Icons/flags/russia.png"))), QString::fromUtf8("Русский"));
locales << "ru_RU";
combo_i18n->addItem((QIcon(QString::fromUtf8(":/Icons/flags/japan.png"))), QString::fromUtf8("Japanese"));
locales << "ja_JP";
combo_i18n->addItem((QIcon(QString::fromUtf8(":/Icons/flags/china.png"))), QString::fromUtf8("中文 (简体)"));
locales << "zh_CN";
combo_i18n->addItem((QIcon(QString::fromUtf8(":/Icons/flags/china_hong_kong.png"))), QString::fromUtf8("中文 (繁體)"));

View file

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