Browse Source

Added Dutch

master
Maximilian Stiefel 5 years ago
parent
commit
b37e2d8b9e
  1. 9
      harbour-wordbook.pro
  2. 2
      harbour-wordbook.pro.user
  3. 5
      qml/pages/Settings.qml
  4. 2
      src/dict_model.cpp

9
harbour-wordbook.pro

@ -38,7 +38,8 @@ SOURCES += src/harbour-wordbook.cpp \
src/dict_model.cpp \ src/dict_model.cpp \
dictcc/dict/dict_imp.cc \ dictcc/dict/dict_imp.cc \
dictcc/dict/desv.cc \ dictcc/dict/desv.cc \
dictcc/dict/deen.cc dictcc/dict/deen.cc \
dictcc/dict/denl.cc
DISTFILES += qml/harbour-wordbook.qml \ DISTFILES += qml/harbour-wordbook.qml \
qml/cover/CoverPage.qml \ qml/cover/CoverPage.qml \
@ -49,7 +50,8 @@ DISTFILES += qml/harbour-wordbook.qml \
translations/*.ts \ translations/*.ts \
harbour-wordbook.desktop \ harbour-wordbook.desktop \
qml/pages/About.qml \ qml/pages/About.qml \
qml/pages/FirstPage.qml qml/pages/FirstPage.qml \
qml/pages/Settings.qml
SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172 SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172
@ -71,4 +73,5 @@ HEADERS += \
dictcc/dict/dict_int.h \ dictcc/dict/dict_int.h \
dictcc/dict/desv.h \ dictcc/dict/desv.h \
dictcc/dict/deen.h \ dictcc/dict/deen.h \
dictcc/dict/creator.h dictcc/dict/creator.h \
dictcc/dict/denl.h

2
harbour-wordbook.pro.user

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject> <!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.7.2, 2019-02-26T00:20:23. --> <!-- Written by QtCreator 4.7.2, 2019-07-29T00:02:16. -->
<qtcreator> <qtcreator>
<data> <data>
<variable>EnvironmentId</variable> <variable>EnvironmentId</variable>

5
qml/pages/Settings.qml

@ -0,0 +1,5 @@
import QtQuick 2.0
Item {
}

2
src/dict_model.cpp

@ -35,7 +35,7 @@ DictModel::DictModel(QObject *parent) :
{ {
d_msg = ""; d_msg = "";
// Create dictionary. // Create dictionary.
d_wordbook = dictcc::creator::create("DESV"); d_wordbook = dictcc::creator::create("DENL");
// Initialise with shared pointer to empty lists, so it actually holds data. // Initialise with shared pointer to empty lists, so it actually holds data.
d_result = d_wordbook->get_translations(); d_result = d_wordbook->get_translations();
} }

Loading…
Cancel
Save