Clean debug log settings after last changes.

Sat, 04 Feb 2023 10:23:26 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 04 Feb 2023 10:23:26 +0100
changeset 487
04c67c9f903c
parent 486
f1cc6a30623d
child 488
dc3091338f9b

Clean debug log settings after last changes.

src/EditProductTab6.cpp file | annotate | diff | comparison | revisions
src/database/db_product.cpp file | annotate | diff | comparison | revisions
src/global.h file | annotate | diff | comparison | revisions
translations/bmsapp_en.ts file | annotate | diff | comparison | revisions
translations/bmsapp_nl.ts file | annotate | diff | comparison | revisions
--- a/src/EditProductTab6.cpp	Fri Feb 03 11:59:17 2023 +0100
+++ b/src/EditProductTab6.cpp	Sat Feb 04 10:23:26 2023 +0100
@@ -598,21 +598,14 @@
 
     for (int i = 0; i < product->yeasts.size(); i++) {
 	if (product->yeasts.at(i).use == YEAST_USE_PRIMARY) {
-	    qDebug() << "calcViability()" << i << product->yeasts.at(i).yp_uuid << product->yeasts.at(i).yp_package;
 	    if (! product->yeasts.at(i).yp_uuid.isNull() && (product->yeasts.at(i).yp_uuid.length() == 36)) {
-		qDebug() << "  valid package vpm:" << product->yeasts.at(i).yp_viability << product->yeasts.at(i).yp_max;
 		vpm = product->yeasts.at(i).yp_viability;
 		max = product->yeasts.at(i).yp_max;
 	    } else if (product->yeasts.at(i).form == YEAST_FORMS_LIQUID) {	// Fallback to hardcoded values.
 		vpm = 0.80;
 		max = 97;
 		if (product->yeasts.at(i).laboratory == "White Labs") {	// PurePitch
-		    /*
-		     * Purepitch 6th month viability point 80,8%.
-		     * Purepitch Next Generation 6th month viability point 94,9%.
-		     */
 		    vpm = 0.9648;	// Purepitch
-		    //vpm = 0.9914;	// Purepitch Next Generation
 		    max = 100;
 		}
 	    } else if (product->yeasts.at(i).form == YEAST_FORMS_DRY) {
@@ -650,7 +643,7 @@
     product->starter_viability = round(base * 10) / 10;
     ui->conditionShow->setValue(product->starter_viability);
 #ifdef DEBUG_YEAST
-    qDebug() << "age" << timeDiff << "degrade" << degrade << "viability" << product->starter_viability;
+    qDebug() << "  Age" << timeDiff << "degrade" << degrade << "viability" << product->starter_viability;
 #endif
 }
 
@@ -980,11 +973,11 @@
     query.prepare("SELECT * FROM inventory_yeastpack WHERE laboratory=:laboratory AND form=:form AND valid='1' ORDER BY laboratory,package");
     query.bindValue(":laboratory", laboratory);
     query.bindValue(":form", form);
-    qDebug() << "  search" << laboratory << form;
+//    qDebug() << "  search" << laboratory << form;
     query.exec();
     while (query.next()) {
         this->ypackageEdit->addItem(query.value("laboratory").toString()+" - "+query.value("package").toString());
-        qDebug() << "  add package" << query.value("laboratory").toString() << query.value("package").toString();
+//        qDebug() << "  add package" << query.value("laboratory").toString() << query.value("package").toString();
     }
 }
 
@@ -1004,12 +997,12 @@
     query.prepare("SELECT * FROM inventory_yeastpack WHERE laboratory=:laboratory AND form=:form AND valid='1' ORDER BY laboratory,package");
     query.bindValue(":laboratory", product->yeasts.at(product->yeasts_row).laboratory);
     query.bindValue(":form", product->yeasts.at(product->yeasts_row).form);
-    qDebug() << "  search" << product->yeasts.at(product->yeasts_row).laboratory << product->yeasts.at(product->yeasts_row).form;
+//    qDebug() << "  search" << product->yeasts.at(product->yeasts_row).laboratory << product->yeasts.at(product->yeasts_row).form;
     query.exec();
     while (query.next()) {
 	index++;
 	if (index == val) {
-	    qDebug() << "  result" << index << query.value("package").toString();
+//	    qDebug() << "  result" << index << query.value("package").toString();
 	    product->yeasts[product->yeasts_row].yp_uuid = query.value("uuid").toString();
 	    product->yeasts[product->yeasts_row].yp_package = query.value("package").toString();
 	    product->yeasts[product->yeasts_row].yp_cells = query.value("cells").toDouble();
@@ -1031,9 +1024,9 @@
 	product->yeasts[product->yeasts_row].yp_max = 100;
 	product->yeasts[product->yeasts_row].yp_size = 0.01;
 	is_changed();
-	qDebug() << "  cleared old yp_xxx data";
+//	qDebug() << "  cleared old yp_xxx data";
     }
-    qDebug() << "  result not found";
+//    qDebug() << "  result not found";
 }
 
 
--- a/src/database/db_product.cpp	Fri Feb 03 11:59:17 2023 +0100
+++ b/src/database/db_product.cpp	Sat Feb 04 10:23:26 2023 +0100
@@ -514,7 +514,7 @@
 		    if (obj.contains("y_package") && obj["y_package"].isObject()) {
 //			qDebug() << "y_package object present";
 			QJsonObject package = obj.value("y_package").toObject();
-			qDebug() << "yeasts_Json package" << i << package;
+//			qDebug() << "yeasts_Json package" << i << package;
 			y.yp_uuid = package["uuid"].toString();
 			y.yp_package = package["package"].toString();
                     	y.yp_cells = package["cells"].toDouble();
@@ -1003,7 +1003,7 @@
 		    package.insert("size", round(prod->yeasts.at(i).yp_size * 100000) / 100000);
 		    obj.insert("y_package", package);
 		}
-                qDebug() << "yeasts_Json" << i << obj;
+//                qDebug() << "yeasts_Json" << i << obj;
                 array.append(obj);      /* Append this object */
         }
 	QJsonDocument doc;
--- a/src/global.h	Fri Feb 03 11:59:17 2023 +0100
+++ b/src/global.h	Sat Feb 04 10:23:26 2023 +0100
@@ -12,9 +12,9 @@
  * Debug log switches for building
  */
 // #define DEBUG_IBU		1
-// #define	DEBUG_FERMENTABLES	1
-#define	DEBUG_YEAST		1
-// #define	DEBUG_WATER		1
+// #define DEBUG_FERMENTABLES	1
+#define DEBUG_YEAST		1
+// #define DEBUG_WATER		1
 
 #define Ka1			0.0000004445
 #define Ka2			0.0000000000468
--- a/translations/bmsapp_en.ts	Fri Feb 03 11:59:17 2023 +0100
+++ b/translations/bmsapp_en.ts	Sat Feb 04 10:23:26 2023 +0100
@@ -3424,7 +3424,7 @@
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="7287"/>
-        <location filename="../src/EditProductTab6.cpp" line="338"/>
+        <location filename="../src/EditProductTab6.cpp" line="342"/>
         <location filename="../src/EditProductTab7.cpp" line="35"/>
         <source>Volume</source>
         <translation type="unfinished"></translation>
@@ -4330,7 +4330,7 @@
         <location filename="../src/EditProductTab3.cpp" line="730"/>
         <location filename="../src/EditProductTab4.cpp" line="361"/>
         <location filename="../src/EditProductTab5.cpp" line="399"/>
-        <location filename="../src/EditProductTab6.cpp" line="912"/>
+        <location filename="../src/EditProductTab6.cpp" line="913"/>
         <location filename="../src/EditProductTab7.cpp" line="306"/>
         <location filename="../src/EditProductTab13.cpp" line="279"/>
         <location filename="../src/EditProduct.cpp" line="910"/>
@@ -4366,7 +4366,7 @@
     <message>
         <location filename="../src/EditProductTab3.cpp" line="1073"/>
         <location filename="../src/EditProductTab4.cpp" line="633"/>
-        <location filename="../src/EditProductTab6.cpp" line="1306"/>
+        <location filename="../src/EditProductTab6.cpp" line="1307"/>
         <source>Use at:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4380,7 +4380,7 @@
         <location filename="../src/EditProductTab3.cpp" line="1083"/>
         <location filename="../src/EditProductTab4.cpp" line="643"/>
         <location filename="../src/EditProductTab5.cpp" line="674"/>
-        <location filename="../src/EditProductTab6.cpp" line="1286"/>
+        <location filename="../src/EditProductTab6.cpp" line="1287"/>
         <source>In stock:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4522,8 +4522,8 @@
         <location filename="../src/EditProductTab4.cpp" line="619"/>
         <location filename="../src/EditProductTab5.cpp" line="525"/>
         <location filename="../src/EditProductTab5.cpp" line="650"/>
-        <location filename="../src/EditProductTab6.cpp" line="1116"/>
-        <location filename="../src/EditProductTab6.cpp" line="1299"/>
+        <location filename="../src/EditProductTab6.cpp" line="1117"/>
+        <location filename="../src/EditProductTab6.cpp" line="1300"/>
         <source>Amount in gr:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4562,8 +4562,8 @@
     <message>
         <location filename="../src/EditProductTab5.cpp" line="528"/>
         <location filename="../src/EditProductTab5.cpp" line="652"/>
-        <location filename="../src/EditProductTab6.cpp" line="1123"/>
-        <location filename="../src/EditProductTab6.cpp" line="1301"/>
+        <location filename="../src/EditProductTab6.cpp" line="1124"/>
+        <location filename="../src/EditProductTab6.cpp" line="1302"/>
         <source>Amount in ml:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4574,13 +4574,13 @@
     </message>
     <message>
         <location filename="../src/EditProductTab5.cpp" line="720"/>
-        <location filename="../src/EditProductTab6.cpp" line="1358"/>
+        <location filename="../src/EditProductTab6.cpp" line="1359"/>
         <source>Primary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../src/EditProductTab5.cpp" line="721"/>
-        <location filename="../src/EditProductTab6.cpp" line="1359"/>
+        <location filename="../src/EditProductTab6.cpp" line="1360"/>
         <source>Secondary</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4641,139 +4641,139 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="338"/>
+        <location filename="../src/EditProductTab6.cpp" line="342"/>
         <source>Method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="338"/>
+        <location filename="../src/EditProductTab6.cpp" line="342"/>
         <source>Inj. factor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="338"/>
+        <location filename="../src/EditProductTab6.cpp" line="342"/>
         <source>New cells</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="338"/>
+        <location filename="../src/EditProductTab6.cpp" line="342"/>
         <source>Total cells</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="338"/>
+        <location filename="../src/EditProductTab6.cpp" line="342"/>
         <source>Grow factor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="724"/>
+        <location filename="../src/EditProductTab6.cpp" line="725"/>
         <source>BMSapp - Pitchrate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="736"/>
+        <location filename="../src/EditProductTab6.cpp" line="737"/>
         <source>Beer pitch type:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="744"/>
-        <source>0.075 Real Kveik</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../src/EditProductTab6.cpp" line="745"/>
-        <source>0.75  Ale, upto 1.060</source>
+        <source>0.075 Real Kveik</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../src/EditProductTab6.cpp" line="746"/>
-        <source>1.0   Ale, above 1.060</source>
+        <source>0.75  Ale, upto 1.060</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../src/EditProductTab6.cpp" line="747"/>
-        <source>1.5   Lager, upto 1.060</source>
+        <source>1.0   Ale, above 1.060</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../src/EditProductTab6.cpp" line="748"/>
+        <source>1.5   Lager, upto 1.060</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../src/EditProductTab6.cpp" line="749"/>
         <source>2.0   Lager, above 1.060</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="779"/>
+        <location filename="../src/EditProductTab6.cpp" line="780"/>
         <source>Retry starter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="779"/>
+        <location filename="../src/EditProductTab6.cpp" line="780"/>
         <source>Retry to automatic create starter steps</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="813"/>
+        <location filename="../src/EditProductTab6.cpp" line="814"/>
         <source>Start step type:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="818"/>
+        <location filename="../src/EditProductTab6.cpp" line="819"/>
         <source>Starter step volume:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="825"/>
-        <source>Stirred</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../src/EditProductTab6.cpp" line="826"/>
-        <source>Shaken</source>
+        <source>Stirred</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../src/EditProductTab6.cpp" line="827"/>
+        <source>Shaken</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../src/EditProductTab6.cpp" line="828"/>
         <source>Simple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="912"/>
+        <location filename="../src/EditProductTab6.cpp" line="913"/>
         <source>Delete yeast</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1108"/>
-        <location filename="../src/EditProductTab6.cpp" line="1297"/>
+        <location filename="../src/EditProductTab6.cpp" line="1109"/>
+        <location filename="../src/EditProductTab6.cpp" line="1298"/>
         <source>Total packs:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1266"/>
+        <location filename="../src/EditProductTab6.cpp" line="1267"/>
         <source>Yeast name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1271"/>
-        <location filename="../src/EditProductTab6.cpp" line="1276"/>
+        <location filename="../src/EditProductTab6.cpp" line="1272"/>
+        <location filename="../src/EditProductTab6.cpp" line="1277"/>
         <source>Laboratory:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1281"/>
+        <location filename="../src/EditProductTab6.cpp" line="1282"/>
         <source>Select yeast:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1291"/>
+        <location filename="../src/EditProductTab6.cpp" line="1292"/>
         <source>Select package:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1360"/>
-        <source>Tertiary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../src/EditProductTab6.cpp" line="1361"/>
+        <source>Tertiary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../src/EditProductTab6.cpp" line="1362"/>
         <source>Bottle</source>
         <translation type="unfinished"></translation>
     </message>
--- a/translations/bmsapp_nl.ts	Fri Feb 03 11:59:17 2023 +0100
+++ b/translations/bmsapp_nl.ts	Sat Feb 04 10:23:26 2023 +0100
@@ -3314,7 +3314,7 @@
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="7287"/>
-        <location filename="../src/EditProductTab6.cpp" line="338"/>
+        <location filename="../src/EditProductTab6.cpp" line="342"/>
         <location filename="../src/EditProductTab7.cpp" line="35"/>
         <source>Volume</source>
         <translation>Volume</translation>
@@ -4846,7 +4846,7 @@
         <location filename="../src/EditProductTab3.cpp" line="730"/>
         <location filename="../src/EditProductTab4.cpp" line="361"/>
         <location filename="../src/EditProductTab5.cpp" line="399"/>
-        <location filename="../src/EditProductTab6.cpp" line="912"/>
+        <location filename="../src/EditProductTab6.cpp" line="913"/>
         <location filename="../src/EditProductTab7.cpp" line="306"/>
         <location filename="../src/EditProductTab13.cpp" line="279"/>
         <location filename="../src/EditProduct.cpp" line="910"/>
@@ -4882,7 +4882,7 @@
     <message>
         <location filename="../src/EditProductTab3.cpp" line="1073"/>
         <location filename="../src/EditProductTab4.cpp" line="633"/>
-        <location filename="../src/EditProductTab6.cpp" line="1306"/>
+        <location filename="../src/EditProductTab6.cpp" line="1307"/>
         <source>Use at:</source>
         <translation>Toevoegen bij:</translation>
     </message>
@@ -4896,7 +4896,7 @@
         <location filename="../src/EditProductTab3.cpp" line="1083"/>
         <location filename="../src/EditProductTab4.cpp" line="643"/>
         <location filename="../src/EditProductTab5.cpp" line="674"/>
-        <location filename="../src/EditProductTab6.cpp" line="1286"/>
+        <location filename="../src/EditProductTab6.cpp" line="1287"/>
         <source>In stock:</source>
         <translation>In voorraad:</translation>
     </message>
@@ -5038,8 +5038,8 @@
         <location filename="../src/EditProductTab4.cpp" line="619"/>
         <location filename="../src/EditProductTab5.cpp" line="525"/>
         <location filename="../src/EditProductTab5.cpp" line="650"/>
-        <location filename="../src/EditProductTab6.cpp" line="1116"/>
-        <location filename="../src/EditProductTab6.cpp" line="1299"/>
+        <location filename="../src/EditProductTab6.cpp" line="1117"/>
+        <location filename="../src/EditProductTab6.cpp" line="1300"/>
         <source>Amount in gr:</source>
         <translation>Gewicht in gr:</translation>
     </message>
@@ -5097,8 +5097,8 @@
     <message>
         <location filename="../src/EditProductTab5.cpp" line="528"/>
         <location filename="../src/EditProductTab5.cpp" line="652"/>
-        <location filename="../src/EditProductTab6.cpp" line="1123"/>
-        <location filename="../src/EditProductTab6.cpp" line="1301"/>
+        <location filename="../src/EditProductTab6.cpp" line="1124"/>
+        <location filename="../src/EditProductTab6.cpp" line="1302"/>
         <source>Amount in ml:</source>
         <translation>Hoeveelheid in ml:</translation>
     </message>
@@ -5109,13 +5109,13 @@
     </message>
     <message>
         <location filename="../src/EditProductTab5.cpp" line="720"/>
-        <location filename="../src/EditProductTab6.cpp" line="1358"/>
+        <location filename="../src/EditProductTab6.cpp" line="1359"/>
         <source>Primary</source>
         <translation>Hoofdgisting</translation>
     </message>
     <message>
         <location filename="../src/EditProductTab5.cpp" line="721"/>
-        <location filename="../src/EditProductTab6.cpp" line="1359"/>
+        <location filename="../src/EditProductTab6.cpp" line="1360"/>
         <source>Secondary</source>
         <translation>Nagisting/lagering</translation>
     </message>
@@ -5176,139 +5176,139 @@
         <translation>Gist is al verwerkt</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="338"/>
+        <location filename="../src/EditProductTab6.cpp" line="342"/>
         <source>Method</source>
         <translation>Methode</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="338"/>
+        <location filename="../src/EditProductTab6.cpp" line="342"/>
         <source>Inj. factor</source>
         <translation>Injectie</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="338"/>
+        <location filename="../src/EditProductTab6.cpp" line="342"/>
         <source>New cells</source>
         <translation>Celgroei</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="338"/>
+        <location filename="../src/EditProductTab6.cpp" line="342"/>
         <source>Total cells</source>
         <translation>Totaal</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="338"/>
+        <location filename="../src/EditProductTab6.cpp" line="342"/>
         <source>Grow factor</source>
         <translation>Groeifactor</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="724"/>
+        <location filename="../src/EditProductTab6.cpp" line="725"/>
         <source>BMSapp - Pitchrate</source>
         <translation>BMSapp - Gist enten</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="736"/>
+        <location filename="../src/EditProductTab6.cpp" line="737"/>
         <source>Beer pitch type:</source>
         <translation>Biergist nodig:</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="744"/>
-        <source>0.075 Real Kveik</source>
-        <translation>0,075 Echte Kveik</translation>
-    </message>
-    <message>
         <location filename="../src/EditProductTab6.cpp" line="745"/>
-        <source>0.75  Ale, upto 1.060</source>
-        <translation>0,75  Bovengist tot 1.060</translation>
+        <source>0.075 Real Kveik</source>
+        <translation>0,075 Echte Kveik</translation>
     </message>
     <message>
         <location filename="../src/EditProductTab6.cpp" line="746"/>
-        <source>1.0   Ale, above 1.060</source>
-        <translation>1,0   Bovengist hoger 1.060</translation>
+        <source>0.75  Ale, upto 1.060</source>
+        <translation>0,75  Bovengist tot 1.060</translation>
     </message>
     <message>
         <location filename="../src/EditProductTab6.cpp" line="747"/>
-        <source>1.5   Lager, upto 1.060</source>
-        <translation>1,5   Ondergist tot 1.060</translation>
+        <source>1.0   Ale, above 1.060</source>
+        <translation>1,0   Bovengist hoger 1.060</translation>
     </message>
     <message>
         <location filename="../src/EditProductTab6.cpp" line="748"/>
+        <source>1.5   Lager, upto 1.060</source>
+        <translation>1,5   Ondergist tot 1.060</translation>
+    </message>
+    <message>
+        <location filename="../src/EditProductTab6.cpp" line="749"/>
         <source>2.0   Lager, above 1.060</source>
         <translation>2,0   Ondergist hoger 1.060</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="779"/>
+        <location filename="../src/EditProductTab6.cpp" line="780"/>
         <source>Retry starter</source>
         <translation>Ververs starter</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="779"/>
+        <location filename="../src/EditProductTab6.cpp" line="780"/>
         <source>Retry to automatic create starter steps</source>
         <translation>Ververs de starter stappen automatisch</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="813"/>
+        <location filename="../src/EditProductTab6.cpp" line="814"/>
         <source>Start step type:</source>
         <translation>Starter stap type:</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="818"/>
+        <location filename="../src/EditProductTab6.cpp" line="819"/>
         <source>Starter step volume:</source>
         <translation>Starter stap volume:</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="825"/>
-        <source>Stirred</source>
-        <translation>Geroerd</translation>
-    </message>
-    <message>
         <location filename="../src/EditProductTab6.cpp" line="826"/>
-        <source>Shaken</source>
-        <translation>Geschud</translation>
+        <source>Stirred</source>
+        <translation>Geroerd</translation>
     </message>
     <message>
         <location filename="../src/EditProductTab6.cpp" line="827"/>
+        <source>Shaken</source>
+        <translation>Geschud</translation>
+    </message>
+    <message>
+        <location filename="../src/EditProductTab6.cpp" line="828"/>
         <source>Simple</source>
         <translation>Simpel</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="912"/>
+        <location filename="../src/EditProductTab6.cpp" line="913"/>
         <source>Delete yeast</source>
         <translation>Verwijder gist</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1108"/>
-        <location filename="../src/EditProductTab6.cpp" line="1297"/>
+        <location filename="../src/EditProductTab6.cpp" line="1109"/>
+        <location filename="../src/EditProductTab6.cpp" line="1298"/>
         <source>Total packs:</source>
         <translation>Aantal pakken:</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1266"/>
+        <location filename="../src/EditProductTab6.cpp" line="1267"/>
         <source>Yeast name:</source>
         <translation>Gist naam:</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1271"/>
-        <location filename="../src/EditProductTab6.cpp" line="1276"/>
+        <location filename="../src/EditProductTab6.cpp" line="1272"/>
+        <location filename="../src/EditProductTab6.cpp" line="1277"/>
         <source>Laboratory:</source>
         <translation>Laboratorium:</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1281"/>
+        <location filename="../src/EditProductTab6.cpp" line="1282"/>
         <source>Select yeast:</source>
         <translation>Kies gist:</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1291"/>
+        <location filename="../src/EditProductTab6.cpp" line="1292"/>
         <source>Select package:</source>
         <translation>Kies verpakking:</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1360"/>
-        <source>Tertiary</source>
-        <translation>Lageren</translation>
-    </message>
-    <message>
         <location filename="../src/EditProductTab6.cpp" line="1361"/>
+        <source>Tertiary</source>
+        <translation>Lageren</translation>
+    </message>
+    <message>
+        <location filename="../src/EditProductTab6.cpp" line="1362"/>
         <source>Bottle</source>
         <translation>Bottelen</translation>
     </message>

mercurial