1.1 --- a/Editor/datadealer.cpp Tue Apr 21 12:26:55 2009 +0200
1.2 +++ b/Editor/datadealer.cpp Tue Apr 21 13:29:47 2009 +0200
1.3 @@ -348,6 +348,7 @@
1.4 if(!dbStruct.open(QIODevice::ReadOnly)) qDebug() << "cant open sql-file";
1.5 QTextStream queryStream;
1.6 queryStream.setDevice(&dbStruct);
1.7 + queryStream.setCodec("UTF-8");
1.8 QString queryStr;
1.9 queryStr = queryStream.readAll();
1.10 queryStr = queryStr.replace("END;", "");
2.1 --- a/Editor/jallaeditor.cpp Tue Apr 21 12:26:55 2009 +0200
2.2 +++ b/Editor/jallaeditor.cpp Tue Apr 21 13:29:47 2009 +0200
2.3 @@ -192,24 +192,28 @@
2.4 {
2.5 nType="1";
2.6 ui->lineEditArticleHeader->setText(ui->radioButton_1->text());
2.7 + ui->plainTextEditArticleText->clear();
2.8 }
2.9
2.10 void jallaEditor::on_radioButton_2_clicked(bool checked)
2.11 {
2.12 nType="2";
2.13 ui->lineEditArticleHeader->setText(ui->radioButton_2->text());
2.14 + ui->plainTextEditArticleText->clear();
2.15 }
2.16
2.17 void jallaEditor::on_radioButton_3_clicked(bool checked)
2.18 {
2.19 nType="3";
2.20 ui->lineEditArticleHeader->setText(ui->radioButton_3->text());
2.21 + ui->plainTextEditArticleText->clear();
2.22 }
2.23
2.24 void jallaEditor::on_radioButton_4_clicked(bool checked)
2.25 {
2.26 nType="4";
2.27 ui->lineEditArticleHeader->setText(ui->radioButton_4->text());
2.28 + ui->plainTextEditArticleText->clear();
2.29 }
2.30
2.31 void jallaEditor::on_pushButtonDeleteNewspaper_clicked()
2.32 @@ -264,10 +268,17 @@
2.33
2.34 void jallaEditor::on_pushButtonSaveHint_clicked()
2.35 {
2.36 - Hint *hint = new Hint;
2.37 - hint->saveHint(ui->plainTextEditHint->toPlainText());
2.38 - selectTableHint();
2.39 - selectTableOverview();
2.40 + QString hintText = ui->plainTextEditHint->toPlainText();
2.41 + if(hintText.isEmpty()){
2.42 + QString err = tr("Please insert hint !");
2.43 + ui->plainTextEditHint->insertPlainText(err);
2.44 + }
2.45 + else{
2.46 + Hint *hint = new Hint;
2.47 + hint->saveHint(ui->plainTextEditHint->toPlainText());
2.48 + selectTableHint();
2.49 + selectTableOverview();
2.50 + }
2.51 }
2.52
2.53 void jallaEditor::on_pushButtonAddToAddress_clicked()
2.54 @@ -299,9 +310,17 @@
2.55
2.56 void jallaEditor::on_pushButtonCreateCcase_clicked()
2.57 {
2.58 - Ccase *cc = new Ccase;
2.59 - ccaseID = cc->createCcase(ui->lineEditCaseDesc->text(), ui->plainTextEditCcaseFirstHint->toPlainText());
2.60 - selectTableCcase();
2.61 + QString cd(ui->lineEditCaseDesc->text());
2.62 + if(cd.isEmpty()){
2.63 + QString error = tr("ATTENTION !!! Can't create case without name !!!");
2.64 + ui->labelErrText->setText(error);
2.65 + }
2.66 + else{
2.67 + Ccase *cc = new Ccase;
2.68 + ccaseID = cc->createCcase(ui->lineEditCaseDesc->text(), ui->plainTextEditCcaseFirstHint->toPlainText());
2.69 + selectTableCcase();
2.70 + ui->labelErrText->clear();
2.71 +}
2.72 }
2.73
2.74
2.75 @@ -315,6 +334,7 @@
2.76 ui->plainTextEditCcaseFirstHint->insertPlainText(query.value(rec.indexOf("firsthint")).toString());
2.77 ccaseID = query.value(rec.indexOf("id")).toString();
2.78 ui->labelHintCcase->setText(query.value(rec.indexOf("casedescription")).toString());
2.79 + ui->labelNpCcase->setText(query.value(rec.indexOf("casedescription")).toString());
2.80 ui->labelSolCase->setText(query.value(rec.indexOf("casedescription")).toString());
2.81 }
2.82
2.83 @@ -359,6 +379,8 @@
2.84 Ccase *cc = new Ccase;
2.85 cc->changeCcase(ui->lineEditCaseDesc->text(), ui->plainTextEditCcaseFirstHint->toPlainText());
2.86 selectTableCcase();
2.87 + QString info = tr("Case changed !");
2.88 + ui->labelErrText->setText(info);
2.89 }
2.90
2.91 void jallaEditor::on_pushButtonAddNpToCase_clicked()
3.1 --- a/Editor/jallaeditor.ui Tue Apr 21 12:26:55 2009 +0200
3.2 +++ b/Editor/jallaeditor.ui Tue Apr 21 13:29:47 2009 +0200
3.3 @@ -44,7 +44,7 @@
3.4 <string/>
3.5 </property>
3.6 <property name="currentIndex">
3.7 - <number>3</number>
3.8 + <number>2</number>
3.9 </property>
3.10 <property name="elideMode">
3.11 <enum>Qt::ElideNone</enum>
3.12 @@ -59,6 +59,41 @@
3.13 <string>Start</string>
3.14 </attribute>
3.15 <layout class="QFormLayout" name="formLayout_3">
3.16 + <property name="fieldGrowthPolicy">
3.17 + <enum>QFormLayout::ExpandingFieldsGrow</enum>
3.18 + </property>
3.19 + <item row="0" column="1">
3.20 + <widget class="QLabel" name="labelLogo">
3.21 + <property name="sizePolicy">
3.22 + <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
3.23 + <horstretch>0</horstretch>
3.24 + <verstretch>0</verstretch>
3.25 + </sizepolicy>
3.26 + </property>
3.27 + <property name="text">
3.28 + <string/>
3.29 + </property>
3.30 + <property name="pixmap">
3.31 + <pixmap>images/Jallalogo.gif</pixmap>
3.32 + </property>
3.33 + <property name="alignment">
3.34 + <set>Qt::AlignCenter</set>
3.35 + </property>
3.36 + </widget>
3.37 + </item>
3.38 + <item row="1" column="1">
3.39 + <spacer name="horizontalSpacer_2">
3.40 + <property name="orientation">
3.41 + <enum>Qt::Horizontal</enum>
3.42 + </property>
3.43 + <property name="sizeHint" stdset="0">
3.44 + <size>
3.45 + <width>40</width>
3.46 + <height>20</height>
3.47 + </size>
3.48 + </property>
3.49 + </spacer>
3.50 + </item>
3.51 <item row="2" column="1">
3.52 <widget class="QLabel" name="label_16">
3.53 <property name="sizePolicy">
3.54 @@ -94,6 +129,9 @@
3.55 </property>
3.56 </spacer>
3.57 </item>
3.58 + <item row="5" column="1">
3.59 + <widget class="QLineEdit" name="lineEditCaseDesc"/>
3.60 + </item>
3.61 <item row="6" column="1">
3.62 <widget class="QPlainTextEdit" name="plainTextEditCcaseFirstHint">
3.63 <property name="font">
3.64 @@ -103,41 +141,6 @@
3.65 </property>
3.66 </widget>
3.67 </item>
3.68 - <item row="5" column="1">
3.69 - <widget class="QLineEdit" name="lineEditCaseDesc"/>
3.70 - </item>
3.71 - <item row="0" column="1">
3.72 - <widget class="QLabel" name="labelLogo">
3.73 - <property name="sizePolicy">
3.74 - <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
3.75 - <horstretch>0</horstretch>
3.76 - <verstretch>0</verstretch>
3.77 - </sizepolicy>
3.78 - </property>
3.79 - <property name="text">
3.80 - <string/>
3.81 - </property>
3.82 - <property name="pixmap">
3.83 - <pixmap>../images/Jallalogo.gif</pixmap>
3.84 - </property>
3.85 - <property name="alignment">
3.86 - <set>Qt::AlignCenter</set>
3.87 - </property>
3.88 - </widget>
3.89 - </item>
3.90 - <item row="1" column="1">
3.91 - <spacer name="horizontalSpacer_2">
3.92 - <property name="orientation">
3.93 - <enum>Qt::Horizontal</enum>
3.94 - </property>
3.95 - <property name="sizeHint" stdset="0">
3.96 - <size>
3.97 - <width>40</width>
3.98 - <height>20</height>
3.99 - </size>
3.100 - </property>
3.101 - </spacer>
3.102 - </item>
3.103 <item row="7" column="1">
3.104 <widget class="QPushButton" name="pushButtonCreateCcase">
3.105 <property name="text">
3.106 @@ -145,13 +148,10 @@
3.107 </property>
3.108 </widget>
3.109 </item>
3.110 - <item row="11" column="1">
3.111 - <widget class="QComboBox" name="comboBoxCcase"/>
3.112 - </item>
3.113 - <item row="10" column="1">
3.114 - <widget class="QLabel" name="label_13">
3.115 + <item row="8" column="1">
3.116 + <widget class="QPushButton" name="pushButtonChangeCase">
3.117 <property name="text">
3.118 - <string>Select criminal case</string>
3.119 + <string>Change criminal case</string>
3.120 </property>
3.121 </widget>
3.122 </item>
3.123 @@ -168,13 +168,16 @@
3.124 </property>
3.125 </spacer>
3.126 </item>
3.127 - <item row="8" column="1">
3.128 - <widget class="QPushButton" name="pushButtonChangeCase">
3.129 + <item row="10" column="1">
3.130 + <widget class="QLabel" name="label_13">
3.131 <property name="text">
3.132 - <string>Change criminal case</string>
3.133 + <string>Select criminal case</string>
3.134 </property>
3.135 </widget>
3.136 </item>
3.137 + <item row="11" column="1">
3.138 + <widget class="QComboBox" name="comboBoxCcase"/>
3.139 + </item>
3.140 <item row="12" column="1">
3.141 <spacer name="horizontalSpacer_5">
3.142 <property name="orientation">
3.143 @@ -195,6 +198,18 @@
3.144 </property>
3.145 </widget>
3.146 </item>
3.147 + <item row="14" column="1">
3.148 + <widget class="QLabel" name="labelErrText">
3.149 + <property name="font">
3.150 + <font>
3.151 + <pointsize>18</pointsize>
3.152 + </font>
3.153 + </property>
3.154 + <property name="text">
3.155 + <string/>
3.156 + </property>
3.157 + </widget>
3.158 + </item>
3.159 </layout>
3.160 </widget>
3.161 <widget class="QWidget" name="tabAdressbook">
3.162 @@ -309,9 +324,29 @@
3.163 <item>
3.164 <widget class="QLineEdit" name="lineEditPicture"/>
3.165 </item>
3.166 + <item>
3.167 + <widget class="QPushButton" name="pushButtonAddPic">
3.168 + <property name="sizePolicy">
3.169 + <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
3.170 + <horstretch>0</horstretch>
3.171 + <verstretch>0</verstretch>
3.172 + </sizepolicy>
3.173 + </property>
3.174 + <property name="text">
3.175 + <string>Add picture</string>
3.176 + </property>
3.177 + </widget>
3.178 + </item>
3.179 </layout>
3.180 </item>
3.181 <item>
3.182 + <widget class="QPushButton" name="pushButtonAddSubmit">
3.183 + <property name="text">
3.184 + <string>Submit</string>
3.185 + </property>
3.186 + </widget>
3.187 + </item>
3.188 + <item>
3.189 <layout class="QHBoxLayout" name="horizontalLayout_7">
3.190 <property name="topMargin">
3.191 <number>19</number>
3.192 @@ -361,19 +396,6 @@
3.193 </property>
3.194 </widget>
3.195 </item>
3.196 - <item>
3.197 - <widget class="QPushButton" name="pushButtonAddPic">
3.198 - <property name="sizePolicy">
3.199 - <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
3.200 - <horstretch>0</horstretch>
3.201 - <verstretch>0</verstretch>
3.202 - </sizepolicy>
3.203 - </property>
3.204 - <property name="text">
3.205 - <string>Add picture</string>
3.206 - </property>
3.207 - </widget>
3.208 - </item>
3.209 </layout>
3.210 </item>
3.211 <item>
3.212 @@ -391,13 +413,6 @@
3.213 </item>
3.214 </layout>
3.215 </item>
3.216 - <item>
3.217 - <widget class="QPushButton" name="pushButtonAddSubmit">
3.218 - <property name="text">
3.219 - <string>Submit</string>
3.220 - </property>
3.221 - </widget>
3.222 - </item>
3.223 </layout>
3.224 </widget>
3.225 <widget class="QWidget" name="tabNp">
3.226 @@ -663,6 +678,16 @@
3.227 </property>
3.228 </widget>
3.229 </item>
3.230 + <item row="4" column="0">
3.231 + <widget class="QLabel" name="labelNpCcase">
3.232 + <property name="text">
3.233 + <string>Please select case</string>
3.234 + </property>
3.235 + <property name="alignment">
3.236 + <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
3.237 + </property>
3.238 + </widget>
3.239 + </item>
3.240 </layout>
3.241 </item>
3.242 </layout>
4.1 Binary file Editor/transDE.qm has changed
5.1 --- a/Editor/transDE.ts Tue Apr 21 12:26:55 2009 +0200
5.2 +++ b/Editor/transDE.ts Tue Apr 21 13:29:47 2009 +0200
5.3 @@ -25,228 +25,6 @@
5.4 </message>
5.5 </context>
5.6 <context>
5.7 - <name>Form</name>
5.8 - <message>
5.9 - <location filename="../Notizbuch2.ui" line="17"/>
5.10 - <source>Jalla </source>
5.11 - <translation type="unfinished"></translation>
5.12 - </message>
5.13 - <message>
5.14 - <location filename="../Notizbuch2.ui" line="20"/>
5.15 - <source>background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 rgba(140, 75, 10, 255), stop:1 rgba(255, 255, 255, 255));</source>
5.16 - <translation type="unfinished"></translation>
5.17 - </message>
5.18 - <message>
5.19 - <location filename="../Notizbuch2.ui" line="43"/>
5.20 - <source>background-color: rgb(230, 213, 143);
5.21 -</source>
5.22 - <translation type="unfinished"></translation>
5.23 - </message>
5.24 - <message>
5.25 - <location filename="../Notizbuch2.ui" line="60"/>
5.26 - <source>Der Fall</source>
5.27 - <translation type="unfinished"></translation>
5.28 - </message>
5.29 - <message>
5.30 - <location filename="../Notizbuch2.ui" line="75"/>
5.31 - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
5.32 -<html><head><meta name="qrichtext" content="1" /><style type="text/css">
5.33 -p, li { white-space: pre-wrap; }
5.34 -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
5.35 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600; font-style:italic; color:#2c0902;">Wir haben es uns auf einer Bank im Hydepark gemütlich gemacht um die letzte Abendsonne zu genießen und schnell unsere E-Mails zu checken. Ein kleiner Hund schnüffelt über den Rasen und im Gebüsch als er mit plötzlichen quitschendem Gebell unsere Aufmerksamkeit erlangt ....</span></p></body></html></source>
5.36 - <translation type="unfinished"></translation>
5.37 - </message>
5.38 - <message>
5.39 - <location filename="../Notizbuch2.ui" line="99"/>
5.40 - <source>Fall Fünf</source>
5.41 - <translation type="unfinished"></translation>
5.42 - </message>
5.43 - <message>
5.44 - <location filename="../Notizbuch2.ui" line="121"/>
5.45 - <source>Des Pudels Kern</source>
5.46 - <translation type="unfinished"></translation>
5.47 - </message>
5.48 - <message>
5.49 - <location filename="../Notizbuch2.ui" line="143"/>
5.50 - <location filename="../Notizbuch2.ui" line="244"/>
5.51 - <source>Zeitungsartikel</source>
5.52 - <translation type="unfinished"></translation>
5.53 - </message>
5.54 - <message>
5.55 - <location filename="../Notizbuch2.ui" line="155"/>
5.56 - <location filename="../Notizbuch2.ui" line="624"/>
5.57 - <source>background-color: qlineargradient(spread:pad, x1:0.454545, y1:0.506, x2:0.949, y2:0.971591, stop:0 rgba(185, 183, 174, 255), stop:1 rgba(255, 255, 255, 255));</source>
5.58 - <translation type="unfinished"></translation>
5.59 - </message>
5.60 - <message>
5.61 - <location filename="../Notizbuch2.ui" line="170"/>
5.62 - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
5.63 -<html><head><meta name="qrichtext" content="1" /><style type="text/css">
5.64 -p, li { white-space: pre-wrap; }
5.65 -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
5.66 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt; font-weight:600; font-style:italic; color:#2c0902;">Dortmunder Schmierblatt 12.03.2008</span></p>
5.67 -<p align="justify" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt; font-weight:600; font-style:italic; color:#2c0902;"></p>
5.68 -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:11pt; font-weight:600; font-style:italic; color:#2c0902;">Hundesalon in der Gassigasse eröffnet</span></p>
5.69 -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt; font-weight:600; font-style:italic; color:#2c0902;"></p>
5.70 -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; color:#2c0902;">Heute eröffnet der Hundesalon in der Gassigasse. Angeboten wird alles für den Hund. Etwa die neuesten Accessiores für den modernen Hund und auch diverse Düfte. Ein besonderes Angebot sind die Medikamente speziell für ihren kleinen Liebling, so gibt es das neue Ritadog, ein Ritalinpräparat für den aufgedrehten Hund oder, Baldriwauz für die gelassene Coolness ihres Vierbeiners. Schauen sie zur Eröffnung vorbei und lassen sie sich von besonderen Attraktionen und Sonderangeboten begeistern. Die Inhaberin Jelly Button erwartet sie ab 7:30 Uhr.</span></p></body></html></source>
5.71 - <translation type="unfinished"></translation>
5.72 - </message>
5.73 - <message>
5.74 - <location filename="../Notizbuch2.ui" line="191"/>
5.75 - <source>background-color: qlineargradient(spread:pad, x1:0.107955, y1:0.137, x2:0.949, y2:0.971591, stop:0 rgba(185, 183, 174, 255), stop:1 rgba(255, 255, 255, 255));
5.76 -background-color: rgb(202, 202, 202);</source>
5.77 - <translation type="unfinished"></translation>
5.78 - </message>
5.79 - <message>
5.80 - <location filename="../Notizbuch2.ui" line="198"/>
5.81 - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
5.82 -<html><head><meta name="qrichtext" content="1" /><style type="text/css">
5.83 -p, li { white-space: pre-wrap; }
5.84 -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
5.85 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">15.01.2008 Eine Ausstellung mit Niveau "Leitern in der Neuzeit"</span></p>
5.86 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600; color:#aa0000;">12.03.2008 Hundesalon in der Gassigasse eröffnet</span></p>
5.87 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">12.12.2007 Socken verschwindet spurlos in Waschmaschine</span></p>
5.88 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">24.12.2007 Heiratsanzeigen: Witwe sucht neue Herausforderung</span></p></body></html></source>
5.89 - <translation type="unfinished"></translation>
5.90 - </message>
5.91 - <message>
5.92 - <location filename="../Notizbuch2.ui" line="231"/>
5.93 - <source>Artikel löschen</source>
5.94 - <translation type="unfinished"></translation>
5.95 - </message>
5.96 - <message>
5.97 - <location filename="../Notizbuch2.ui" line="250"/>
5.98 - <source>Indizien</source>
5.99 - <translation type="unfinished"></translation>
5.100 - </message>
5.101 - <message>
5.102 - <location filename="../Notizbuch2.ui" line="262"/>
5.103 - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
5.104 -<html><head><meta name="qrichtext" content="1" /><style type="text/css">
5.105 -p, li { white-space: pre-wrap; }
5.106 -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
5.107 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600; color:#2c0902;">Indizien die schon gefunden wurden können hier nocheinmal eingesehen werden. Damit</span><span style=" font-family:'MS Shell Dlg 2'; font-size:11pt; font-weight:600; color:#2c0902;"> </span><span style=" font-family:'MS Shell Dlg 2'; font-weight:600; color:#2c0902;">das nicht zuviel Text wird stehen hier am besten nur die Links zu den schon besuchten Indizien.</span></p>
5.108 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600; color:#2c0902;">Damit der Wahrheitswert eines Indizes nicht sofort erkennbar ist müssen entweder alle besuchten Events hier erscheinen und dann indivudell gelöscht werden, oder der User kann selbst bei jedem Indiz entscheiden ob es in das Notizbuch soll.</span></p>
5.109 -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-weight:600; color:#2c0902;"></p></body></html></source>
5.110 - <translation type="unfinished"></translation>
5.111 - </message>
5.112 - <message>
5.113 - <location filename="../Notizbuch2.ui" line="381"/>
5.114 - <source>markierte Elemente löschen</source>
5.115 - <translation type="unfinished"></translation>
5.116 - </message>
5.117 - <message>
5.118 - <location filename="../Notizbuch2.ui" line="394"/>
5.119 - <source>Indizien anzeigen mit Doppelklick</source>
5.120 - <translation type="unfinished"></translation>
5.121 - </message>
5.122 - <message>
5.123 - <location filename="../Notizbuch2.ui" line="400"/>
5.124 - <source>Adressen</source>
5.125 - <translation type="unfinished"></translation>
5.126 - </message>
5.127 - <message>
5.128 - <location filename="../Notizbuch2.ui" line="412"/>
5.129 - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
5.130 -<html><head><meta name="qrichtext" content="1" /><style type="text/css">
5.131 -p, li { white-space: pre-wrap; }
5.132 -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
5.133 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600; color:#2c0902;">Adressen die dem User wichtig erscheinen können direkt vom Adressbuch aus hierhin kopiert werden. </span></p>
5.134 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600; color:#2c0902;">Vielleicht sind die Adressen auch direkt über einen Klick von hier erreichbar?</span></p></body></html></source>
5.135 - <translation type="unfinished"></translation>
5.136 - </message>
5.137 - <message>
5.138 - <location filename="../Notizbuch2.ui" line="430"/>
5.139 - <source>background-color: qlineargradient(spread:pad, x1:0.107955, y1:0.137, x2:0.949, y2:0.971591, stop:0 rgba(185, 183, 174, 255), stop:1 rgba(255, 255, 255, 255));</source>
5.140 - <translation type="unfinished"></translation>
5.141 - </message>
5.142 - <message>
5.143 - <location filename="../Notizbuch2.ui" line="433"/>
5.144 - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
5.145 -<html><head><meta name="qrichtext" content="1" /><style type="text/css">
5.146 -p, li { white-space: pre-wrap; }
5.147 -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
5.148 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Willy Bones </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Butcherstreet 12 NW 34 </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-style:italic;">Metzgemeister</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> </span></p>
5.149 -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p>
5.150 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Gerti Pude</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">l Am Senkel 78 SW 12 </span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-style:italic;">Hundesalon</span></p>
5.151 -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p>
5.152 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Polizeidienststelle</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Am Hydepark NE 112</span></p>
5.153 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">...</span></p>
5.154 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">...</span></p></body></html></source>
5.155 - <translation type="unfinished"></translation>
5.156 - </message>
5.157 - <message>
5.158 - <location filename="../Notizbuch2.ui" line="464"/>
5.159 - <source>background-color: rgb(184, 72, 49);</source>
5.160 - <translation type="unfinished"></translation>
5.161 - </message>
5.162 - <message>
5.163 - <location filename="../Notizbuch2.ui" line="467"/>
5.164 - <source>Wichtige Adressen</source>
5.165 - <translation type="unfinished"></translation>
5.166 - </message>
5.167 - <message>
5.168 - <location filename="../Notizbuch2.ui" line="480"/>
5.169 - <source>Adresse löschen</source>
5.170 - <translation type="unfinished"></translation>
5.171 - </message>
5.172 - <message>
5.173 - <location filename="../Notizbuch2.ui" line="486"/>
5.174 - <source>Notizen</source>
5.175 - <translation type="unfinished"></translation>
5.176 - </message>
5.177 - <message>
5.178 - <location filename="../Notizbuch2.ui" line="498"/>
5.179 - <source>background-color: rgb(221, 255, 146);
5.180 -background-color: rgb(223, 255, 146);</source>
5.181 - <translation type="unfinished"></translation>
5.182 - </message>
5.183 - <message>
5.184 - <location filename="../Notizbuch2.ui" line="502"/>
5.185 - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
5.186 -<html><head><meta name="qrichtext" content="1" /><style type="text/css">
5.187 -p, li { white-space: pre-wrap; }
5.188 -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
5.189 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-style:italic;">Wer ist der unbekannte an der Bar?</span></p>
5.190 -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-style:italic;"></p>
5.191 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-style:italic;">Warum ist Mr X am Abend noch im Park gewesen?</span></p>
5.192 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-style:italic;">...</span></p>
5.193 -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-style:italic;">...</span></p></body></html></source>
5.194 - <translation type="unfinished"></translation>
5.195 - </message>
5.196 - <message>
5.197 - <location filename="../Notizbuch2.ui" line="532"/>
5.198 - <source>Eigene Notizen</source>
5.199 - <translation type="unfinished"></translation>
5.200 - </message>
5.201 - <message>
5.202 - <location filename="../Notizbuch2.ui" line="545"/>
5.203 - <source>Notiz hinzufügen</source>
5.204 - <translation type="unfinished"></translation>
5.205 - </message>
5.206 - <message>
5.207 - <location filename="../Notizbuch2.ui" line="558"/>
5.208 - <source>Notiz löschen</source>
5.209 - <translation type="unfinished"></translation>
5.210 - </message>
5.211 - <message>
5.212 - <location filename="../Notizbuch2.ui" line="595"/>
5.213 - <source>background-color: qlineargradient(spread:pad, x1:0.357955, y1:0.318, x2:0.949, y2:0.971591, stop:0 rgba(140, 75, 10, 255), stop:1 rgba(255, 255, 255, 255));
5.214 -border-color: qconicalgradient(cx:0, cy:0, angle:135, stop:0 rgba(255, 255, 0, 69), stop:0.375 rgba(255, 255, 0, 69), stop:0.423533 rgba(251, 255, 0, 145), stop:0.45 rgba(247, 255, 0, 208), stop:0.477581 rgba(255, 244, 71, 130), stop:0.518717 rgba(255, 218, 71, 130), stop:0.55 rgba(255, 255, 0, 255), stop:0.57754 rgba(255, 203, 0, 130), stop:0.625 rgba(255, 255, 0, 69), stop:1 rgba(255, 255, 0, 69));</source>
5.215 - <translation type="unfinished"></translation>
5.216 - </message>
5.217 - <message>
5.218 - <location filename="../Notizbuch2.ui" line="611"/>
5.219 - <source>Das Buch der Notizen</source>
5.220 - <translation type="unfinished"></translation>
5.221 - </message>
5.222 - <message>
5.223 - <location filename="../Notizbuch2.ui" line="627"/>
5.224 - <source>minimieren</source>
5.225 - <translation type="unfinished"></translation>
5.226 - </message>
5.227 -</context>
5.228 -<context>
5.229 <name>Nprev</name>
5.230 <message>
5.231 <location filename="nprev.ui" line="14"/>
5.232 @@ -305,17 +83,22 @@
5.233 <context>
5.234 <name>jallaEditor</name>
5.235 <message>
5.236 - <location filename="jallaeditor.cpp" line="249"/>
5.237 + <location filename="jallaeditor.cpp" line="253"/>
5.238 <source>Open Image</source>
5.239 <translation>Bild öffnen</translation>
5.240 </message>
5.241 <message>
5.242 - <location filename="jallaeditor.cpp" line="283"/>
5.243 - <location filename="jallaeditor.cpp" line="338"/>
5.244 - <location filename="jallaeditor.cpp" line="384"/>
5.245 + <location filename="jallaeditor.cpp" line="287"/>
5.246 + <location filename="jallaeditor.cpp" line="349"/>
5.247 + <location filename="jallaeditor.cpp" line="395"/>
5.248 <source>Open xml</source>
5.249 <translation type="unfinished"></translation>
5.250 </message>
5.251 + <message>
5.252 + <location filename="jallaeditor.cpp" line="307"/>
5.253 + <source>ATTENTION !!! Can't create case without name !!!</source>
5.254 + <translation type="unfinished">ACHTUNG !!! Ein Fall ohne Namen wird nicht erstellt !!!</translation>
5.255 + </message>
5.256 </context>
5.257 <context>
5.258 <name>jallaEditorClass</name>