Show 0 if afterboil volume is invalid instead of the chiller volume. Added product tab 13. Here the images (beerlabels, brew pictures) for a product will be shown. Resized all product tabs. Added STA1 tickmark in the yeasts table.

Mon, 16 Jan 2023 16:55:41 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 16 Jan 2023 16:55:41 +0100
changeset 464
1fed3ff9a64e
parent 463
98df69885455
child 465
8fc909360552

Show 0 if afterboil volume is invalid instead of the chiller volume. Added product tab 13. Here the images (beerlabels, brew pictures) for a product will be shown. Resized all product tabs. Added STA1 tickmark in the yeasts table.

src/EditProduct.cpp file | annotate | diff | comparison | revisions
src/EditProductTab13.cpp file | annotate | diff | comparison | revisions
src/EditProductTab3.cpp file | annotate | diff | comparison | revisions
src/EditProductTab4.cpp file | annotate | diff | comparison | revisions
src/EditProductTab6.cpp file | annotate | diff | comparison | revisions
src/EditProductTab7.cpp file | annotate | diff | comparison | revisions
src/global.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
ui/EditProduct.ui file | annotate | diff | comparison | revisions
--- a/src/EditProduct.cpp	Sun Jan 15 14:33:53 2023 +0100
+++ b/src/EditProduct.cpp	Mon Jan 16 16:55:41 2023 +0100
@@ -492,7 +492,10 @@
     ui->brew_preboileffShow->setValue(product->brew_preboil_efficiency);
     ui->brew_aboilphEdit->setValue(product->brew_aboil_ph);
     ui->brew_aboilsgEdit->setValue(product->brew_aboil_sg);
-    ui->brew_aboilvolEdit->setValue(product->brew_aboil_volume + product->eq_chiller_volume);
+    if (product->brew_aboil_volume > 0)
+	ui->brew_aboilvolEdit->setValue(product->brew_aboil_volume + product->eq_chiller_volume);
+    else
+	ui->brew_aboilvolEdit->setValue(0);
     ui->brew_aboilvolShow->setValue(product->batch_size * 1.04 + product->eq_chiller_volume);
     ui->brew_aboileffShow->setValue(product->brew_aboil_efficiency);
     ui->brew_whirlpool9Edit->setValue(product->brew_whirlpool9);
@@ -863,6 +866,7 @@
 #include "EditProductTab10.cpp"
 #include "EditProductTab11.cpp"
 #include "EditProductTab12.cpp"
+#include "EditProductTab13.cpp"
 #include "EditProductExport.cpp"
 
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/EditProductTab13.cpp	Mon Jan 16 16:55:41 2023 +0100
@@ -0,0 +1,27 @@
+/**
+ * EditProduct.cpp is part of bmsapp.
+ *
+ * Tab 13, images and pictures.
+ *
+ * bmsapp is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * bmsapp is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+//void EditProduct::taste_date_changed(QDate val)
+//{
+//    product->taste_date = ui->taste_dateEdit->nullDate();
+//    is_changed();
+//    setStage();
+//}
+
+
--- a/src/EditProductTab3.cpp	Sun Jan 15 14:33:53 2023 +0100
+++ b/src/EditProductTab3.cpp	Mon Jan 16 16:55:41 2023 +0100
@@ -73,16 +73,16 @@
     const QStringList labels({tr("Supplier"), tr("Fermentable"), tr("EBC"), tr("Type"), tr("Graintype"), tr("When"), tr("Yield"),
 		    	      tr("Amount"), tr("Stock"), tr("Procent"), tr("100%"), tr("Delete"), tr("Edit") });
     ui->fermentablesTable->setColumnCount(13);
-    ui->fermentablesTable->setColumnWidth(0, 130);     /* Supplier	*/
-    ui->fermentablesTable->setColumnWidth(1, 210);     /* Fermentable	*/
+    ui->fermentablesTable->setColumnWidth(0, 140);     /* Supplier	*/
+    ui->fermentablesTable->setColumnWidth(1, 220);     /* Fermentable	*/
     ui->fermentablesTable->setColumnWidth(2,  45);     /* Color		*/
     ui->fermentablesTable->setColumnWidth(3,  75);     /* Type		*/
     ui->fermentablesTable->setColumnWidth(4,  75);     /* Graintype	*/
     ui->fermentablesTable->setColumnWidth(5,  77);     /* Added		*/
-    ui->fermentablesTable->setColumnWidth(6,  55);     /* Yield		*/
+    ui->fermentablesTable->setColumnWidth(6,  60);     /* Yield		*/
     ui->fermentablesTable->setColumnWidth(7,  80);     /* Amount	*/
     ui->fermentablesTable->setColumnWidth(8,  80);     /* Stock		*/
-    ui->fermentablesTable->setColumnWidth(9,  55);     /* Procent	*/
+    ui->fermentablesTable->setColumnWidth(9,  60);     /* Procent	*/
     ui->fermentablesTable->setColumnWidth(10, 50);     /* 100%		*/
     ui->fermentablesTable->setColumnWidth(11, 80);     /* Delete	*/
     ui->fermentablesTable->setColumnWidth(12, 80);     /* Edit		*/
--- a/src/EditProductTab4.cpp	Sun Jan 15 14:33:53 2023 +0100
+++ b/src/EditProductTab4.cpp	Mon Jan 16 16:55:41 2023 +0100
@@ -56,8 +56,8 @@
                               tr("IBU"), tr("Amount"), tr("Stock"), tr("Delete"), tr("Edit") });
 
     ui->hopsTable->setColumnCount(12);
-    ui->hopsTable->setColumnWidth(0, 140);     /* Origin	*/
-    ui->hopsTable->setColumnWidth(1, 225);     /* Hop		*/
+    ui->hopsTable->setColumnWidth(0, 150);     /* Origin	*/
+    ui->hopsTable->setColumnWidth(1, 245);     /* Hop		*/
     ui->hopsTable->setColumnWidth(2,  74);     /* Type		*/
     ui->hopsTable->setColumnWidth(3,  84);     /* Form          */
     ui->hopsTable->setColumnWidth(4,  55);     /* Alpha%	*/
--- a/src/EditProductTab6.cpp	Sun Jan 15 14:33:53 2023 +0100
+++ b/src/EditProductTab6.cpp	Mon Jan 16 16:55:41 2023 +0100
@@ -52,22 +52,23 @@
     std::sort(product->yeasts.begin(), product->yeasts.end(), yeast_sort_test);
 
     const QStringList labels({tr("Yeast"), tr("Laboratory"), tr("Code"), tr("Type"), tr("Use for"), tr("Min."), tr("Max."),
-		              tr("Tol."), tr("Attn."), tr("Amount"), tr("Stock"), tr("Delete"), tr("Edit") });
+		              tr("Tol."), tr("Attn."), tr("STA"), tr("Amount"), tr("Stock"), tr("Delete"), tr("Edit") });
 
-    ui->yeastsTable->setColumnCount(13);
+    ui->yeastsTable->setColumnCount(14);
     ui->yeastsTable->setColumnWidth(0, 200);	/* Yeast	*/
     ui->yeastsTable->setColumnWidth(1, 115);	/* Laboratory	*/
     ui->yeastsTable->setColumnWidth(2,  80);	/* Code		*/
-    ui->yeastsTable->setColumnWidth(3,  80);	/* Type		*/
-    ui->yeastsTable->setColumnWidth(4,  80);	/* Usage	*/
+    ui->yeastsTable->setColumnWidth(3,  75);	/* Type		*/
+    ui->yeastsTable->setColumnWidth(4,  75);	/* Usage	*/
     ui->yeastsTable->setColumnWidth(5,  50);	/* Min. 	*/
     ui->yeastsTable->setColumnWidth(6,  50);	/* Max.		*/
     ui->yeastsTable->setColumnWidth(7,  50);	/* Tolerance	*/
     ui->yeastsTable->setColumnWidth(8,  50);	/* Attenuation	*/
-    ui->yeastsTable->setColumnWidth(9,  80);	/* Amount	*/
-    ui->yeastsTable->setColumnWidth(10, 80);	/* Stock	*/
-    ui->yeastsTable->setColumnWidth(11, 80);	/* Delete	*/
-    ui->yeastsTable->setColumnWidth(12, 80);	/* Edit		*/
+    ui->yeastsTable->setColumnWidth(9,  40);	/* STA1 gen	*/
+    ui->yeastsTable->setColumnWidth(10, 80);	/* Amount	*/
+    ui->yeastsTable->setColumnWidth(11, 80);	/* Stock	*/
+    ui->yeastsTable->setColumnWidth(12, 80);	/* Delete	*/
+    ui->yeastsTable->setColumnWidth(13, 80);	/* Edit		*/
     ui->yeastsTable->setHorizontalHeaderLabels(labels);
     ui->yeastsTable->verticalHeader()->hide();
     ui->yeastsTable->setRowCount(product->yeasts.size());
@@ -102,6 +103,21 @@
         item->setTextAlignment(Qt::AlignRight|Qt::AlignVCenter);
         ui->yeastsTable->setItem(i, 8, item);
 
+	if (product->yeasts.at(i).use != YEAST_USE_BOTTLE && product->yeasts.at(i).sta1) {
+	    QWidget *pWidget = new QWidget();
+            QLabel *label = new QLabel;
+            label->setPixmap(QPixmap(":icons/silk/tick.png"));
+            QHBoxLayout *pLayout = new QHBoxLayout(pWidget);
+            pLayout->addWidget(label);
+            pLayout->setAlignment(Qt::AlignCenter);
+            pLayout->setContentsMargins(0, 0, 0, 0);
+            pWidget->setLayout(pLayout);
+            ui->yeastsTable->setCellWidget(i, 9, pWidget);
+	} else {
+	    ui->yeastsTable->removeCellWidget(i, 9);
+	}
+
+
 	if (product->yeasts.at(i).form == YEAST_FORMS_LIQUID)
             item = new QTableWidgetItem(QString("%1 pack").arg(product->yeasts.at(i).amount, 1, 'f', 0, '0'));
 	else if (product->yeasts.at(i).form == YEAST_FORMS_DRY || product->yeasts.at(i).form == YEAST_FORMS_DRIED)
@@ -109,7 +125,7 @@
 	else
 	    item = new QTableWidgetItem(QString("%1 ml").arg(product->yeasts.at(i).amount * 1000.0, 3, 'f', 2, '0'));
         item->setTextAlignment(Qt::AlignRight|Qt::AlignVCenter);
-        ui->yeastsTable->setItem(i, 9, item);
+        ui->yeastsTable->setItem(i, 10, item);
 
 	if (block_yeast(product->stage, product->yeasts.at(i).use)) {
 	    item = new QTableWidgetItem(QString(""));
@@ -124,17 +140,17 @@
 	    if (product->yeasts.at(i).inventory < product->yeasts.at(i).amount)
 	    	item->setForeground(QBrush(QColor(Qt::red)));
 	}
-        ui->yeastsTable->setItem(i, 10, item);
+        ui->yeastsTable->setItem(i, 11, item);
 
 	if (block_yeast(product->stage, product->yeasts.at(i).use)) {
-	    ui->yeastsTable->removeCellWidget(i, 11);     /* to remove the unneeded button */
-            item = new QTableWidgetItem("");
-            item->setToolTip(tr("Yeast already used"));
-            ui->yeastsTable->setItem(i, 11, item);
-            ui->yeastsTable->removeCellWidget(i, 12);
+	    ui->yeastsTable->removeCellWidget(i, 12);     /* to remove the unneeded button */
             item = new QTableWidgetItem("");
             item->setToolTip(tr("Yeast already used"));
             ui->yeastsTable->setItem(i, 12, item);
+            ui->yeastsTable->removeCellWidget(i, 13);
+            item = new QTableWidgetItem("");
+            item->setToolTip(tr("Yeast already used"));
+            ui->yeastsTable->setItem(i, 13, item);
 	} else {
 	    pWidget = new QWidget();
             QPushButton* btn_dele = new QPushButton();
@@ -145,7 +161,7 @@
             pLayout->addWidget(btn_dele);
             pLayout->setContentsMargins(5, 0, 5, 0);
             pWidget->setLayout(pLayout);
-            ui->yeastsTable->setCellWidget(i, 11, pWidget);
+            ui->yeastsTable->setCellWidget(i, 12, pWidget);
 
             pWidget = new QWidget();
             QPushButton* btn_edit = new QPushButton();
@@ -156,7 +172,7 @@
             pLayout->addWidget(btn_edit);
             pLayout->setContentsMargins(5, 0, 5, 0);
             pWidget->setLayout(pLayout);
-            ui->yeastsTable->setCellWidget(i, 12, pWidget);
+            ui->yeastsTable->setCellWidget(i, 13, pWidget);
 	}
     }
 }
--- a/src/EditProductTab7.cpp	Sun Jan 15 14:33:53 2023 +0100
+++ b/src/EditProductTab7.cpp	Mon Jan 16 16:55:41 2023 +0100
@@ -36,7 +36,7 @@
 
     ui->mashsTable->setColumnCount(16);
     ui->mashsTable->setColumnWidth(0, 189);	/* Step name	*/
-    ui->mashsTable->setColumnWidth(1, 100);	/* Type		*/
+    ui->mashsTable->setColumnWidth(1, 110);	/* Type		*/
     ui->mashsTable->setColumnWidth(2,  70);	/* Start temp	*/
     ui->mashsTable->setColumnWidth(3,  70);	/* End temp	*/
     ui->mashsTable->setColumnWidth(4,  70);	/* Rest time	*/
@@ -45,8 +45,8 @@
     ui->mashsTable->setColumnWidth(7,  70);     /* Infusion tmp	*/
     ui->mashsTable->setColumnWidth(8,  70);	/* Volume	*/
     ui->mashsTable->setColumnWidth(9,  80);	/* W/G ratio	*/
-    ui->mashsTable->setColumnWidth(10, 50);	/* SG		*/
-    ui->mashsTable->setColumnWidth(11, 50);	/* pH		*/
+    ui->mashsTable->setColumnWidth(10, 60);	/* SG		*/
+    ui->mashsTable->setColumnWidth(11, 60);	/* pH		*/
     ui->mashsTable->setColumnWidth(12, 30);	/* Up button	*/
     ui->mashsTable->setColumnWidth(13, 30);	/* Down button	*/
     ui->mashsTable->setColumnWidth(14, 30);	/* Delete	*/
--- a/src/global.cpp	Sun Jan 15 14:33:53 2023 +0100
+++ b/src/global.cpp	Mon Jan 16 16:55:41 2023 +0100
@@ -57,6 +57,16 @@
     QT_TRANSLATE_NOOP("Splitter", "After tertiary")
 };
 
+const char * const g_prod_pic_types[7] = {
+    QT_TRANSLATE_NOOP("PicType", "Generic"),
+    QT_TRANSLATE_NOOP("PicType", "Label Vichy"),
+    QT_TRANSLATE_NOOP("PicType", "Label Steinie"),
+    QT_TRANSLATE_NOOP("PicType", "Label 75cl"),
+    QT_TRANSLATE_NOOP("PicType", "Label Magnum"),
+    QT_TRANSLATE_NOOP("PicType", "Label Cap"),
+    QT_TRANSLATE_NOOP("PicType", "Label Box")
+};
+
 const char * const g_recipe_types[3] = {
     QT_TRANSLATE_NOOP("RecipeType", "Extract"),
     QT_TRANSLATE_NOOP("RecipeType", "Partial Mash"),
--- a/src/global.h	Sun Jan 15 14:33:53 2023 +0100
+++ b/src/global.h	Mon Jan 16 16:55:41 2023 +0100
@@ -734,6 +734,7 @@
 
 extern const char * const g_prod_stages[];
 extern const char * const g_prod_split[];
+extern const char * const g_prod_pic_types[];
 extern const char * const g_recipe_types[];
 extern const char * const g_style_types[];
 extern const char * const g_chiller_types[];
--- a/translations/bmsapp_en.ts	Sun Jan 15 14:33:53 2023 +0100
+++ b/translations/bmsapp_en.ts	Mon Jan 16 16:55:41 2023 +0100
@@ -17,32 +17,32 @@
 <context>
     <name>BeerType</name>
     <message>
-        <location filename="../src/global.cpp" line="67"/>
+        <location filename="../src/global.cpp" line="77"/>
         <source>Lager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="68"/>
+        <location filename="../src/global.cpp" line="78"/>
         <source>Ale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="69"/>
+        <location filename="../src/global.cpp" line="79"/>
         <source>Mead</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="70"/>
+        <location filename="../src/global.cpp" line="80"/>
         <source>Wheat</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="71"/>
+        <location filename="../src/global.cpp" line="81"/>
         <source>Mixed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="72"/>
+        <location filename="../src/global.cpp" line="82"/>
         <source>Cider</source>
         <translation type="unfinished"></translation>
     </message>
@@ -244,27 +244,27 @@
 <context>
     <name>ChillerType</name>
     <message>
-        <location filename="../src/global.cpp" line="82"/>
+        <location filename="../src/global.cpp" line="92"/>
         <source>-</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="83"/>
+        <location filename="../src/global.cpp" line="93"/>
         <source>Immersion</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="84"/>
+        <location filename="../src/global.cpp" line="94"/>
         <source>Counterflow</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="85"/>
+        <location filename="../src/global.cpp" line="95"/>
         <source>Au bain marie</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="86"/>
+        <location filename="../src/global.cpp" line="96"/>
         <source>No-chill</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2349,7 +2349,7 @@
         <location filename="../src/EditProductTab5.cpp" line="75"/>
         <location filename="../src/EditProductTab5.cpp" line="165"/>
         <location filename="../src/EditProductTab6.cpp" line="55"/>
-        <location filename="../src/EditProductTab6.cpp" line="142"/>
+        <location filename="../src/EditProductTab6.cpp" line="158"/>
         <location filename="../src/EditProductExport.cpp" line="874"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
@@ -2386,8 +2386,8 @@
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="240"/>
-        <location filename="../ui/EditProduct.ui" line="7942"/>
-        <location filename="../ui/EditProduct.ui" line="8937"/>
+        <location filename="../ui/EditProduct.ui" line="7969"/>
+        <location filename="../ui/EditProduct.ui" line="8964"/>
         <source>Efficiency:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2417,23 +2417,23 @@
         <location filename="../ui/EditProduct.ui" line="1802"/>
         <location filename="../ui/EditProduct.ui" line="3370"/>
         <location filename="../ui/EditProduct.ui" line="3423"/>
-        <location filename="../ui/EditProduct.ui" line="4130"/>
-        <location filename="../ui/EditProduct.ui" line="7635"/>
-        <location filename="../ui/EditProduct.ui" line="8036"/>
-        <location filename="../ui/EditProduct.ui" line="9053"/>
-        <location filename="../ui/EditProduct.ui" line="9654"/>
-        <location filename="../ui/EditProduct.ui" line="9888"/>
-        <location filename="../ui/EditProduct.ui" line="10106"/>
-        <location filename="../ui/EditProduct.ui" line="10208"/>
-        <location filename="../ui/EditProduct.ui" line="10353"/>
-        <location filename="../ui/EditProduct.ui" line="10406"/>
-        <location filename="../ui/EditProduct.ui" line="10610"/>
-        <location filename="../ui/EditProduct.ui" line="10644"/>
-        <location filename="../ui/EditProduct.ui" line="10732"/>
-        <location filename="../ui/EditProduct.ui" line="11010"/>
-        <location filename="../ui/EditProduct.ui" line="11195"/>
-        <location filename="../ui/EditProduct.ui" line="11423"/>
-        <location filename="../ui/EditProduct.ui" line="11586"/>
+        <location filename="../ui/EditProduct.ui" line="4153"/>
+        <location filename="../ui/EditProduct.ui" line="7662"/>
+        <location filename="../ui/EditProduct.ui" line="8063"/>
+        <location filename="../ui/EditProduct.ui" line="9080"/>
+        <location filename="../ui/EditProduct.ui" line="9681"/>
+        <location filename="../ui/EditProduct.ui" line="9915"/>
+        <location filename="../ui/EditProduct.ui" line="10133"/>
+        <location filename="../ui/EditProduct.ui" line="10235"/>
+        <location filename="../ui/EditProduct.ui" line="10384"/>
+        <location filename="../ui/EditProduct.ui" line="10437"/>
+        <location filename="../ui/EditProduct.ui" line="10641"/>
+        <location filename="../ui/EditProduct.ui" line="10675"/>
+        <location filename="../ui/EditProduct.ui" line="10763"/>
+        <location filename="../ui/EditProduct.ui" line="11041"/>
+        <location filename="../ui/EditProduct.ui" line="11226"/>
+        <location filename="../ui/EditProduct.ui" line="11454"/>
+        <location filename="../ui/EditProduct.ui" line="11617"/>
         <source> %</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2441,12 +2441,12 @@
         <location filename="../ui/EditProduct.ui" line="335"/>
         <location filename="../ui/EditProduct.ui" line="1922"/>
         <location filename="../ui/EditProduct.ui" line="2302"/>
-        <location filename="../ui/EditProduct.ui" line="8253"/>
-        <location filename="../ui/EditProduct.ui" line="8281"/>
-        <location filename="../ui/EditProduct.ui" line="8309"/>
-        <location filename="../ui/EditProduct.ui" line="8337"/>
-        <location filename="../ui/EditProduct.ui" line="8724"/>
-        <location filename="../ui/EditProduct.ui" line="8845"/>
+        <location filename="../ui/EditProduct.ui" line="8280"/>
+        <location filename="../ui/EditProduct.ui" line="8308"/>
+        <location filename="../ui/EditProduct.ui" line="8336"/>
+        <location filename="../ui/EditProduct.ui" line="8364"/>
+        <location filename="../ui/EditProduct.ui" line="8751"/>
+        <location filename="../ui/EditProduct.ui" line="8872"/>
         <source> min</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2469,26 +2469,26 @@
         <location filename="../ui/EditProduct.ui" line="2549"/>
         <location filename="../ui/EditProduct.ui" line="3122"/>
         <location filename="../ui/EditProduct.ui" line="3178"/>
-        <location filename="../ui/EditProduct.ui" line="4333"/>
-        <location filename="../ui/EditProduct.ui" line="5669"/>
-        <location filename="../ui/EditProduct.ui" line="6405"/>
-        <location filename="../ui/EditProduct.ui" line="6742"/>
-        <location filename="../ui/EditProduct.ui" line="7068"/>
-        <location filename="../ui/EditProduct.ui" line="7743"/>
-        <location filename="../ui/EditProduct.ui" line="7809"/>
-        <location filename="../ui/EditProduct.ui" line="8061"/>
-        <location filename="../ui/EditProduct.ui" line="8092"/>
-        <location filename="../ui/EditProduct.ui" line="8426"/>
-        <location filename="../ui/EditProduct.ui" line="8454"/>
-        <location filename="../ui/EditProduct.ui" line="8488"/>
-        <location filename="../ui/EditProduct.ui" line="8918"/>
-        <location filename="../ui/EditProduct.ui" line="9003"/>
-        <location filename="../ui/EditProduct.ui" line="10545"/>
+        <location filename="../ui/EditProduct.ui" line="4356"/>
+        <location filename="../ui/EditProduct.ui" line="5692"/>
+        <location filename="../ui/EditProduct.ui" line="6428"/>
+        <location filename="../ui/EditProduct.ui" line="6765"/>
+        <location filename="../ui/EditProduct.ui" line="7091"/>
+        <location filename="../ui/EditProduct.ui" line="7770"/>
+        <location filename="../ui/EditProduct.ui" line="7836"/>
+        <location filename="../ui/EditProduct.ui" line="8088"/>
+        <location filename="../ui/EditProduct.ui" line="8119"/>
+        <location filename="../ui/EditProduct.ui" line="8453"/>
+        <location filename="../ui/EditProduct.ui" line="8481"/>
+        <location filename="../ui/EditProduct.ui" line="8515"/>
+        <location filename="../ui/EditProduct.ui" line="8945"/>
+        <location filename="../ui/EditProduct.ui" line="9030"/>
         <location filename="../ui/EditProduct.ui" line="10576"/>
-        <location filename="../ui/EditProduct.ui" line="10982"/>
-        <location filename="../ui/EditProduct.ui" line="11104"/>
-        <location filename="../ui/EditProduct.ui" line="11464"/>
-        <location filename="../ui/EditProduct.ui" line="11545"/>
+        <location filename="../ui/EditProduct.ui" line="10607"/>
+        <location filename="../ui/EditProduct.ui" line="11013"/>
+        <location filename="../ui/EditProduct.ui" line="11135"/>
+        <location filename="../ui/EditProduct.ui" line="11495"/>
+        <location filename="../ui/EditProduct.ui" line="11576"/>
         <location filename="../src/EditProductExport.cpp" line="838"/>
         <location filename="../src/EditProductExport.cpp" line="846"/>
         <source> L</source>
@@ -2725,12 +2725,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3732"/>
+        <location filename="../ui/EditProduct.ui" line="3755"/>
         <source>Dry yeast calculation.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8404"/>
+        <location filename="../ui/EditProduct.ui" line="8431"/>
         <source>Top up water:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2798,7 +2798,7 @@
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="2424"/>
-        <location filename="../ui/EditProduct.ui" line="8388"/>
+        <location filename="../ui/EditProduct.ui" line="8415"/>
         <source>Kettle trub loss:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2855,8 +2855,8 @@
         <location filename="../ui/EditProduct.ui" line="2859"/>
         <location filename="../ui/EditProduct.ui" line="3074"/>
         <location filename="../ui/EditProduct.ui" line="3222"/>
-        <location filename="../ui/EditProduct.ui" line="4049"/>
-        <location filename="../ui/EditProduct.ui" line="4204"/>
+        <location filename="../ui/EditProduct.ui" line="4072"/>
+        <location filename="../ui/EditProduct.ui" line="4227"/>
         <location filename="../src/EditProductExport.cpp" line="866"/>
         <source>Add</source>
         <translation type="unfinished"></translation>
@@ -2939,41 +2939,41 @@
     <message>
         <location filename="../ui/EditProduct.ui" line="3598"/>
         <location filename="../ui/EditProduct.ui" line="3687"/>
-        <location filename="../ui/EditProduct.ui" line="10321"/>
-        <location filename="../ui/EditProduct.ui" line="11682"/>
-        <location filename="../ui/EditProduct.ui" line="11759"/>
-        <location filename="../ui/EditProduct.ui" line="12068"/>
+        <location filename="../ui/EditProduct.ui" line="10352"/>
+        <location filename="../ui/EditProduct.ui" line="11713"/>
+        <location filename="../ui/EditProduct.ui" line="11794"/>
+        <location filename="../ui/EditProduct.ui" line="12103"/>
         <source>Set or clear date</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="3601"/>
         <location filename="../ui/EditProduct.ui" line="3690"/>
-        <location filename="../ui/EditProduct.ui" line="4101"/>
-        <location filename="../ui/EditProduct.ui" line="4168"/>
-        <location filename="../ui/EditProduct.ui" line="8114"/>
-        <location filename="../ui/EditProduct.ui" line="8153"/>
-        <location filename="../ui/EditProduct.ui" line="8750"/>
-        <location filename="../ui/EditProduct.ui" line="9075"/>
-        <location filename="../ui/EditProduct.ui" line="9149"/>
-        <location filename="../ui/EditProduct.ui" line="9170"/>
-        <location filename="../ui/EditProduct.ui" line="9209"/>
-        <location filename="../ui/EditProduct.ui" line="9280"/>
-        <location filename="../ui/EditProduct.ui" line="9367"/>
-        <location filename="../ui/EditProduct.ui" line="9676"/>
-        <location filename="../ui/EditProduct.ui" line="9696"/>
-        <location filename="../ui/EditProduct.ui" line="9735"/>
-        <location filename="../ui/EditProduct.ui" line="9910"/>
-        <location filename="../ui/EditProduct.ui" line="9930"/>
-        <location filename="../ui/EditProduct.ui" line="9969"/>
-        <location filename="../ui/EditProduct.ui" line="10128"/>
-        <location filename="../ui/EditProduct.ui" line="10263"/>
-        <location filename="../ui/EditProduct.ui" line="10283"/>
-        <location filename="../ui/EditProduct.ui" line="10324"/>
-        <location filename="../ui/EditProduct.ui" line="11685"/>
-        <location filename="../ui/EditProduct.ui" line="11705"/>
-        <location filename="../ui/EditProduct.ui" line="11762"/>
-        <location filename="../ui/EditProduct.ui" line="12071"/>
+        <location filename="../ui/EditProduct.ui" line="4124"/>
+        <location filename="../ui/EditProduct.ui" line="4191"/>
+        <location filename="../ui/EditProduct.ui" line="8141"/>
+        <location filename="../ui/EditProduct.ui" line="8180"/>
+        <location filename="../ui/EditProduct.ui" line="8777"/>
+        <location filename="../ui/EditProduct.ui" line="9102"/>
+        <location filename="../ui/EditProduct.ui" line="9176"/>
+        <location filename="../ui/EditProduct.ui" line="9197"/>
+        <location filename="../ui/EditProduct.ui" line="9236"/>
+        <location filename="../ui/EditProduct.ui" line="9307"/>
+        <location filename="../ui/EditProduct.ui" line="9394"/>
+        <location filename="../ui/EditProduct.ui" line="9703"/>
+        <location filename="../ui/EditProduct.ui" line="9723"/>
+        <location filename="../ui/EditProduct.ui" line="9762"/>
+        <location filename="../ui/EditProduct.ui" line="9937"/>
+        <location filename="../ui/EditProduct.ui" line="9957"/>
+        <location filename="../ui/EditProduct.ui" line="9996"/>
+        <location filename="../ui/EditProduct.ui" line="10155"/>
+        <location filename="../ui/EditProduct.ui" line="10290"/>
+        <location filename="../ui/EditProduct.ui" line="10310"/>
+        <location filename="../ui/EditProduct.ui" line="10355"/>
+        <location filename="../ui/EditProduct.ui" line="11716"/>
+        <location filename="../ui/EditProduct.ui" line="11736"/>
+        <location filename="../ui/EditProduct.ui" line="11797"/>
+        <location filename="../ui/EditProduct.ui" line="12106"/>
         <source>...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2983,1116 +2983,1126 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3745"/>
+        <location filename="../ui/EditProduct.ui" line="3730"/>
+        <source>Yeast starter calculation.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="3768"/>
         <source>Low grams/hl:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3761"/>
+        <location filename="../ui/EditProduct.ui" line="3784"/>
         <source>High grams/hl:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3821"/>
-        <location filename="../ui/EditProduct.ui" line="3837"/>
+        <location filename="../ui/EditProduct.ui" line="3844"/>
+        <location filename="../ui/EditProduct.ui" line="3860"/>
         <source>at</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3912"/>
+        <location filename="../ui/EditProduct.ui" line="3935"/>
         <source>This recipe pitch grams/hl:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3956"/>
+        <location filename="../ui/EditProduct.ui" line="3979"/>
         <source>Pitchrate grams/hectoliter:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3972"/>
+        <location filename="../ui/EditProduct.ui" line="3995"/>
         <source>Yeast grams needed:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4066"/>
+        <location filename="../ui/EditProduct.ui" line="4089"/>
         <source>Production date:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4082"/>
+        <location filename="../ui/EditProduct.ui" line="4105"/>
         <source>Yeast condition:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4098"/>
-        <location filename="../ui/EditProduct.ui" line="9167"/>
+        <location filename="../ui/EditProduct.ui" line="4121"/>
+        <location filename="../ui/EditProduct.ui" line="9194"/>
         <source>Set the date to today.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4146"/>
+        <location filename="../ui/EditProduct.ui" line="4169"/>
         <source>Edit the production date.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4149"/>
-        <location filename="../ui/EditProduct.ui" line="9190"/>
-        <location filename="../ui/EditProduct.ui" line="9245"/>
-        <location filename="../ui/EditProduct.ui" line="9716"/>
-        <location filename="../ui/EditProduct.ui" line="9950"/>
-        <location filename="../ui/EditProduct.ui" line="11666"/>
-        <location filename="../ui/EditProduct.ui" line="12052"/>
+        <location filename="../ui/EditProduct.ui" line="4172"/>
+        <location filename="../ui/EditProduct.ui" line="9217"/>
+        <location filename="../ui/EditProduct.ui" line="9272"/>
+        <location filename="../ui/EditProduct.ui" line="9743"/>
+        <location filename="../ui/EditProduct.ui" line="9977"/>
+        <location filename="../ui/EditProduct.ui" line="11697"/>
+        <location filename="../ui/EditProduct.ui" line="12087"/>
         <source>dd-MM-yyyy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4165"/>
+        <location filename="../ui/EditProduct.ui" line="4188"/>
         <source>Clear the date</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4182"/>
+        <location filename="../ui/EditProduct.ui" line="4205"/>
         <location filename="../src/EditProductTab3.cpp" line="1138"/>
         <location filename="../src/EditProductTab5.cpp" line="718"/>
         <source>Mash</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4221"/>
+        <location filename="../ui/EditProduct.ui" line="4244"/>
         <source>Mash name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4237"/>
+        <location filename="../ui/EditProduct.ui" line="4260"/>
         <source>Mash schedule:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4276"/>
+        <location filename="../ui/EditProduct.ui" line="4299"/>
         <source>Mash time:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4305"/>
+        <location filename="../ui/EditProduct.ui" line="4328"/>
         <source>Mash total volume:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4349"/>
+        <location filename="../ui/EditProduct.ui" line="4372"/>
         <source>Water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4361"/>
+        <location filename="../ui/EditProduct.ui" line="4384"/>
         <source>Water agents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4373"/>
+        <location filename="../ui/EditProduct.ui" line="4396"/>
         <source>Calcium Chloride</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4376"/>
+        <location filename="../ui/EditProduct.ui" line="4399"/>
         <source>CaCl2:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4392"/>
+        <location filename="../ui/EditProduct.ui" line="4415"/>
         <source>Gypsym</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4395"/>
+        <location filename="../ui/EditProduct.ui" line="4418"/>
         <source>CaSO4:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4411"/>
+        <location filename="../ui/EditProduct.ui" line="4434"/>
         <source>Epsom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4414"/>
+        <location filename="../ui/EditProduct.ui" line="4437"/>
         <source>MgSO4:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4430"/>
+        <location filename="../ui/EditProduct.ui" line="4453"/>
         <source>Table salt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4433"/>
+        <location filename="../ui/EditProduct.ui" line="4456"/>
         <source>NaCl:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4449"/>
-        <location filename="../ui/EditProduct.ui" line="4633"/>
-        <location filename="../ui/EditProduct.ui" line="4853"/>
+        <location filename="../ui/EditProduct.ui" line="4472"/>
+        <location filename="../ui/EditProduct.ui" line="4656"/>
+        <location filename="../ui/EditProduct.ui" line="4876"/>
         <source>Magnesium Chloride</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4452"/>
+        <location filename="../ui/EditProduct.ui" line="4475"/>
         <source>MgCl2:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4468"/>
-        <location filename="../ui/EditProduct.ui" line="4664"/>
+        <location filename="../ui/EditProduct.ui" line="4491"/>
+        <location filename="../ui/EditProduct.ui" line="4687"/>
         <source>Baking soda</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4471"/>
+        <location filename="../ui/EditProduct.ui" line="4494"/>
         <source>NaHCO3:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4487"/>
-        <location filename="../ui/EditProduct.ui" line="4695"/>
+        <location filename="../ui/EditProduct.ui" line="4510"/>
+        <location filename="../ui/EditProduct.ui" line="4718"/>
         <source>Chalk undissolved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4490"/>
+        <location filename="../ui/EditProduct.ui" line="4513"/>
         <source>CaCO3:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4506"/>
-        <location filename="../ui/EditProduct.ui" line="4821"/>
+        <location filename="../ui/EditProduct.ui" line="4529"/>
+        <location filename="../ui/EditProduct.ui" line="4844"/>
         <source>To change the water profile. This adds Calcium and Chloride.
 To improve sweet style beers.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4516"/>
-        <location filename="../ui/EditProduct.ui" line="4548"/>
-        <location filename="../ui/EditProduct.ui" line="4579"/>
-        <location filename="../ui/EditProduct.ui" line="4611"/>
-        <location filename="../ui/EditProduct.ui" line="4642"/>
-        <location filename="../ui/EditProduct.ui" line="4673"/>
-        <location filename="../ui/EditProduct.ui" line="4704"/>
-        <location filename="../ui/EditProduct.ui" line="4736"/>
-        <location filename="../ui/EditProduct.ui" line="4767"/>
-        <location filename="../ui/EditProduct.ui" line="4799"/>
-        <location filename="../ui/EditProduct.ui" line="4831"/>
-        <location filename="../ui/EditProduct.ui" line="4862"/>
-        <location filename="../ui/EditProduct.ui" line="11051"/>
-        <location filename="../ui/EditProduct.ui" line="11395"/>
+        <location filename="../ui/EditProduct.ui" line="4539"/>
+        <location filename="../ui/EditProduct.ui" line="4571"/>
+        <location filename="../ui/EditProduct.ui" line="4602"/>
+        <location filename="../ui/EditProduct.ui" line="4634"/>
+        <location filename="../ui/EditProduct.ui" line="4665"/>
+        <location filename="../ui/EditProduct.ui" line="4696"/>
+        <location filename="../ui/EditProduct.ui" line="4727"/>
+        <location filename="../ui/EditProduct.ui" line="4759"/>
+        <location filename="../ui/EditProduct.ui" line="4790"/>
+        <location filename="../ui/EditProduct.ui" line="4822"/>
+        <location filename="../ui/EditProduct.ui" line="4854"/>
+        <location filename="../ui/EditProduct.ui" line="4885"/>
+        <location filename="../ui/EditProduct.ui" line="11082"/>
+        <location filename="../ui/EditProduct.ui" line="11426"/>
         <source> gr</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4538"/>
-        <location filename="../ui/EditProduct.ui" line="4726"/>
+        <location filename="../ui/EditProduct.ui" line="4561"/>
+        <location filename="../ui/EditProduct.ui" line="4749"/>
         <source>Gypsum to change the water profile. This adds Calcium and Sulfate.
 To improve bitter beers.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4570"/>
-        <location filename="../ui/EditProduct.ui" line="4758"/>
+        <location filename="../ui/EditProduct.ui" line="4593"/>
+        <location filename="../ui/EditProduct.ui" line="4781"/>
         <source>Epsom salt to change the water profile. Use with caution!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4601"/>
-        <location filename="../ui/EditProduct.ui" line="4789"/>
+        <location filename="../ui/EditProduct.ui" line="4624"/>
+        <location filename="../ui/EditProduct.ui" line="4812"/>
         <source>Table salt to change the water profile. This adds Sodium and Chloride.
 Improves the sweetness of the beer. The beer will become salty at high doses.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4885"/>
+        <location filename="../ui/EditProduct.ui" line="4908"/>
         <source>Acid Additions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4897"/>
+        <location filename="../ui/EditProduct.ui" line="4920"/>
         <source>Desired mash pH:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4913"/>
+        <location filename="../ui/EditProduct.ui" line="4936"/>
         <source>Auto calculate:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4929"/>
+        <location filename="../ui/EditProduct.ui" line="4952"/>
         <source>Acid to use:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4955"/>
-        <location filename="../ui/EditProduct.ui" line="6054"/>
+        <location filename="../ui/EditProduct.ui" line="4978"/>
+        <location filename="../ui/EditProduct.ui" line="6077"/>
         <source>Mash pH should be between 5.2 and 5.6. Use 5.2 for light and 5.5 for dark beers.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4995"/>
-        <location filename="../ui/EditProduct.ui" line="5134"/>
+        <location filename="../ui/EditProduct.ui" line="5018"/>
+        <location filename="../ui/EditProduct.ui" line="5157"/>
         <source>%</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5023"/>
-        <location filename="../ui/EditProduct.ui" line="5168"/>
+        <location filename="../ui/EditProduct.ui" line="5046"/>
+        <location filename="../ui/EditProduct.ui" line="5191"/>
         <source> ml</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5055"/>
+        <location filename="../ui/EditProduct.ui" line="5078"/>
         <source>Desired sparge pH:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5096"/>
+        <location filename="../ui/EditProduct.ui" line="5119"/>
         <source>Acid type:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5190"/>
-        <location filename="../ui/EditProduct.ui" line="5206"/>
+        <location filename="../ui/EditProduct.ui" line="5213"/>
+        <location filename="../ui/EditProduct.ui" line="5229"/>
         <source>Acid amount:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5223"/>
+        <location filename="../ui/EditProduct.ui" line="5246"/>
         <source>Bitterness index:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5275"/>
-        <location filename="../ui/EditProduct.ui" line="5343"/>
+        <location filename="../ui/EditProduct.ui" line="5298"/>
+        <location filename="../ui/EditProduct.ui" line="5366"/>
         <source>N/A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5291"/>
+        <location filename="../ui/EditProduct.ui" line="5314"/>
         <source>Preffered SO4:Cl ratio:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5359"/>
+        <location filename="../ui/EditProduct.ui" line="5382"/>
         <source>Current SO4:Cl ratio:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5416"/>
+        <location filename="../ui/EditProduct.ui" line="5439"/>
         <source>Estimate pre boil pH:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5660"/>
+        <location filename="../ui/EditProduct.ui" line="5683"/>
         <source>The total prepared amount of sparge water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5741"/>
+        <location filename="../ui/EditProduct.ui" line="5764"/>
         <source>If needed, choose a target water profile.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5744"/>
+        <location filename="../ui/EditProduct.ui" line="5767"/>
         <source>Choose example water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5985"/>
+        <location filename="../ui/EditProduct.ui" line="6008"/>
         <source>0 to 50 for light beers, 50 to 150 for amber beers, 150 to 250 for dark beers.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6038"/>
+        <location filename="../ui/EditProduct.ui" line="6061"/>
         <source>Treated mash water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6082"/>
+        <location filename="../ui/EditProduct.ui" line="6105"/>
         <source>The ideal amount of Natrium should be below 150.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6135"/>
+        <location filename="../ui/EditProduct.ui" line="6158"/>
         <source>The ideal Chloride amount is between 50 and 150.
 Together with Sulfate it must be below 500.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6164"/>
+        <location filename="../ui/EditProduct.ui" line="6187"/>
         <source>The ideal amount of Calcium is between 40 and 150.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6220"/>
+        <location filename="../ui/EditProduct.ui" line="6243"/>
         <source>The ideal amount of Magnesium is between 5 and 40.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6248"/>
+        <location filename="../ui/EditProduct.ui" line="6271"/>
         <source>The ideal Sulfate amount should be between 50 and 400.
 Together with Chloride it must be below 500.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6330"/>
+        <location filename="../ui/EditProduct.ui" line="6353"/>
         <source>Mixed water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6727"/>
+        <location filename="../ui/EditProduct.ui" line="6750"/>
         <source>The division between the main and dilution water. The total volume does not change.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6814"/>
+        <location filename="../ui/EditProduct.ui" line="6837"/>
         <source>Optional dilution water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6817"/>
+        <location filename="../ui/EditProduct.ui" line="6840"/>
         <source>Choose dilution</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6930"/>
+        <location filename="../ui/EditProduct.ui" line="6953"/>
         <source>Hardness</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6971"/>
+        <location filename="../ui/EditProduct.ui" line="6994"/>
         <source>Mg</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6987"/>
+        <location filename="../ui/EditProduct.ui" line="7010"/>
         <location filename="../src/EditProductTab7.cpp" line="35"/>
         <source>pH</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7015"/>
+        <location filename="../ui/EditProduct.ui" line="7038"/>
         <source>RA</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7112"/>
+        <location filename="../ui/EditProduct.ui" line="7135"/>
         <source>CaCO3</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7181"/>
+        <location filename="../ui/EditProduct.ui" line="7204"/>
         <source>The main brewing water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7187"/>
+        <location filename="../ui/EditProduct.ui" line="7210"/>
         <source>Choose water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7200"/>
+        <location filename="../ui/EditProduct.ui" line="7223"/>
         <source>Cl</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7216"/>
+        <location filename="../ui/EditProduct.ui" line="7239"/>
         <source>Na</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7232"/>
+        <location filename="../ui/EditProduct.ui" line="7255"/>
         <source>Ca</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7248"/>
+        <location filename="../ui/EditProduct.ui" line="7271"/>
         <source>SO4</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7264"/>
-        <location filename="../src/EditProductTab6.cpp" line="313"/>
+        <location filename="../ui/EditProduct.ui" line="7287"/>
+        <location filename="../src/EditProductTab6.cpp" line="329"/>
         <location filename="../src/EditProductTab7.cpp" line="35"/>
         <source>Volume</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7280"/>
+        <location filename="../ui/EditProduct.ui" line="7303"/>
         <source>HCO3</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7296"/>
+        <location filename="../ui/EditProduct.ui" line="7319"/>
         <source>Water profile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7387"/>
+        <location filename="../ui/EditProduct.ui" line="7410"/>
         <source>Sparge water source 1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7409"/>
+        <location filename="../ui/EditProduct.ui" line="7432"/>
         <source>Sparge water source 2</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7428"/>
+        <location filename="../ui/EditProduct.ui" line="7451"/>
         <source>Sparge water mixed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7444"/>
+        <location filename="../ui/EditProduct.ui" line="7467"/>
         <location filename="../src/EditProductTab5.cpp" line="723"/>
         <source>Sparge</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7460"/>
+        <location filename="../ui/EditProduct.ui" line="7483"/>
         <source>Treated sparge water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7469"/>
+        <location filename="../ui/EditProduct.ui" line="7496"/>
         <source>Brewday</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7481"/>
+        <location filename="../ui/EditProduct.ui" line="7508"/>
         <source>Brewday plan:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7497"/>
+        <location filename="../ui/EditProduct.ui" line="7524"/>
         <source>Brewday end:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7513"/>
+        <location filename="../ui/EditProduct.ui" line="7540"/>
         <source>Mashing and Sparge</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7525"/>
+        <location filename="../ui/EditProduct.ui" line="7552"/>
         <source>Mash pH:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7654"/>
+        <location filename="../ui/EditProduct.ui" line="7681"/>
         <source>Mash SG:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7670"/>
+        <location filename="../ui/EditProduct.ui" line="7697"/>
         <source>Mash efficiency:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7686"/>
+        <location filename="../ui/EditProduct.ui" line="7713"/>
         <source>Sparge water pH:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7702"/>
+        <location filename="../ui/EditProduct.ui" line="7729"/>
         <source>Sparge supply:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7718"/>
+        <location filename="../ui/EditProduct.ui" line="7745"/>
         <source>Sparge estimate:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7762"/>
+        <location filename="../ui/EditProduct.ui" line="7789"/>
         <source>Sparge temp:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7840"/>
-        <location filename="../ui/EditProduct.ui" line="8817"/>
-        <location filename="../ui/EditProduct.ui" line="9529"/>
-        <location filename="../ui/EditProduct.ui" line="9557"/>
-        <location filename="../ui/EditProduct.ui" line="9585"/>
-        <location filename="../ui/EditProduct.ui" line="9819"/>
-        <location filename="../ui/EditProduct.ui" line="10037"/>
-        <location filename="../ui/EditProduct.ui" line="11164"/>
-        <location filename="../ui/EditProduct.ui" line="11614"/>
+        <location filename="../ui/EditProduct.ui" line="7867"/>
+        <location filename="../ui/EditProduct.ui" line="8844"/>
+        <location filename="../ui/EditProduct.ui" line="9556"/>
+        <location filename="../ui/EditProduct.ui" line="9584"/>
+        <location filename="../ui/EditProduct.ui" line="9612"/>
+        <location filename="../ui/EditProduct.ui" line="9846"/>
+        <location filename="../ui/EditProduct.ui" line="10064"/>
+        <location filename="../ui/EditProduct.ui" line="11195"/>
+        <location filename="../ui/EditProduct.ui" line="11645"/>
         <source> °C</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7882"/>
+        <location filename="../ui/EditProduct.ui" line="7909"/>
         <source>Pre boil</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7894"/>
-        <location filename="../ui/EditProduct.ui" line="9025"/>
+        <location filename="../ui/EditProduct.ui" line="7921"/>
+        <location filename="../ui/EditProduct.ui" line="9052"/>
         <location filename="../src/EditProductTab7.cpp" line="635"/>
         <source>Measured pH:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7910"/>
-        <location filename="../ui/EditProduct.ui" line="9092"/>
+        <location filename="../ui/EditProduct.ui" line="7937"/>
+        <location filename="../ui/EditProduct.ui" line="9119"/>
         <location filename="../src/EditProductTab7.cpp" line="667"/>
         <source>Measured SG:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7926"/>
-        <location filename="../ui/EditProduct.ui" line="9108"/>
+        <location filename="../ui/EditProduct.ui" line="7953"/>
+        <location filename="../ui/EditProduct.ui" line="9135"/>
         <source>Volume @100°C:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8024"/>
+        <location filename="../ui/EditProduct.ui" line="8051"/>
         <source>Mash, sparge and lauter efficiency.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8111"/>
-        <location filename="../ui/EditProduct.ui" line="8150"/>
-        <location filename="../ui/EditProduct.ui" line="9072"/>
-        <location filename="../ui/EditProduct.ui" line="9146"/>
+        <location filename="../ui/EditProduct.ui" line="8138"/>
+        <location filename="../ui/EditProduct.ui" line="8177"/>
+        <location filename="../ui/EditProduct.ui" line="9099"/>
+        <location filename="../ui/EditProduct.ui" line="9173"/>
         <source>Edit volume</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8171"/>
+        <location filename="../ui/EditProduct.ui" line="8198"/>
         <source>Whirlpools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8183"/>
+        <location filename="../ui/EditProduct.ui" line="8210"/>
         <source>Whirlpool 72..79°C:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8199"/>
+        <location filename="../ui/EditProduct.ui" line="8226"/>
         <source>Whirlpool 60..66°C:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8215"/>
+        <location filename="../ui/EditProduct.ui" line="8242"/>
         <source>Whirlpool cold:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8231"/>
+        <location filename="../ui/EditProduct.ui" line="8258"/>
         <source>Whirlpool 85..100°C:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8360"/>
+        <location filename="../ui/EditProduct.ui" line="8387"/>
         <source>Transfer to fermenter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8372"/>
+        <location filename="../ui/EditProduct.ui" line="8399"/>
         <source>Volume to fermenter:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8510"/>
+        <location filename="../ui/EditProduct.ui" line="8537"/>
         <source>SG in fermenter:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8526"/>
+        <location filename="../ui/EditProduct.ui" line="8553"/>
         <source>EBC color in fermenter:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8542"/>
+        <location filename="../ui/EditProduct.ui" line="8569"/>
         <source>IBU in fermenter:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8648"/>
+        <location filename="../ui/EditProduct.ui" line="8675"/>
         <source>Aeration time &amp; speed:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8670"/>
+        <location filename="../ui/EditProduct.ui" line="8697"/>
         <source> L/m</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8702"/>
+        <location filename="../ui/EditProduct.ui" line="8729"/>
         <source>Aeration with:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8747"/>
-        <location filename="../ui/EditProduct.ui" line="10260"/>
-        <location filename="../ui/EditProduct.ui" line="10280"/>
-        <location filename="../ui/EditProduct.ui" line="11702"/>
+        <location filename="../ui/EditProduct.ui" line="8774"/>
+        <location filename="../ui/EditProduct.ui" line="10287"/>
+        <location filename="../ui/EditProduct.ui" line="10307"/>
+        <location filename="../ui/EditProduct.ui" line="11733"/>
         <source>Brew log chart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8767"/>
+        <location filename="../ui/EditProduct.ui" line="8794"/>
         <source>Cooling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8779"/>
+        <location filename="../ui/EditProduct.ui" line="8806"/>
         <source>Cooling method:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8795"/>
+        <location filename="../ui/EditProduct.ui" line="8822"/>
         <source>Cooling to:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8867"/>
+        <location filename="../ui/EditProduct.ui" line="8894"/>
         <source>Cooling time:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8897"/>
+        <location filename="../ui/EditProduct.ui" line="8924"/>
         <location filename="../src/EditProductExport.cpp" line="805"/>
         <source>After boil</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9041"/>
+        <location filename="../ui/EditProduct.ui" line="9068"/>
         <source>The overall efficiency.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9187"/>
+        <location filename="../ui/EditProduct.ui" line="9214"/>
         <source>Edit the brewdate plan or start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9206"/>
+        <location filename="../ui/EditProduct.ui" line="9233"/>
         <source>Clear planned brewdate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9226"/>
+        <location filename="../ui/EditProduct.ui" line="9253"/>
         <source>Edit the brewdate start time.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9229"/>
-        <location filename="../ui/EditProduct.ui" line="9264"/>
+        <location filename="../ui/EditProduct.ui" line="9256"/>
+        <location filename="../ui/EditProduct.ui" line="9291"/>
         <source>hh:mm</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9242"/>
+        <location filename="../ui/EditProduct.ui" line="9269"/>
         <source>Edit the brewdate end.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9261"/>
+        <location filename="../ui/EditProduct.ui" line="9288"/>
         <source>Edit the brewdate end time.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9277"/>
+        <location filename="../ui/EditProduct.ui" line="9304"/>
         <source>Set the brewdate end date.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9297"/>
+        <location filename="../ui/EditProduct.ui" line="9324"/>
         <source>End time:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9313"/>
+        <location filename="../ui/EditProduct.ui" line="9340"/>
         <source>Start time:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9329"/>
+        <location filename="../ui/EditProduct.ui" line="9356"/>
         <source>Show brewlog:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9348"/>
+        <location filename="../ui/EditProduct.ui" line="9375"/>
         <source>Confirm brew done:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9364"/>
-        <location filename="../ui/EditProduct.ui" line="9732"/>
-        <location filename="../ui/EditProduct.ui" line="9966"/>
+        <location filename="../ui/EditProduct.ui" line="9391"/>
+        <location filename="../ui/EditProduct.ui" line="9759"/>
+        <location filename="../ui/EditProduct.ui" line="9993"/>
         <source>Confirm the brew dates and times.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9381"/>
+        <location filename="../ui/EditProduct.ui" line="9408"/>
         <source>Fermenting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9393"/>
+        <location filename="../ui/EditProduct.ui" line="9420"/>
         <source>Primary fermentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9405"/>
+        <location filename="../ui/EditProduct.ui" line="9432"/>
         <source>Start density:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9421"/>
+        <location filename="../ui/EditProduct.ui" line="9448"/>
         <source>Start temperature:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9437"/>
+        <location filename="../ui/EditProduct.ui" line="9464"/>
         <source>Peak temperature:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9453"/>
-        <location filename="../ui/EditProduct.ui" line="9765"/>
+        <location filename="../ui/EditProduct.ui" line="9480"/>
+        <location filename="../ui/EditProduct.ui" line="9792"/>
         <source>End temperature:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9469"/>
-        <location filename="../ui/EditProduct.ui" line="9781"/>
+        <location filename="../ui/EditProduct.ui" line="9496"/>
+        <location filename="../ui/EditProduct.ui" line="9808"/>
         <source>End density:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9485"/>
-        <location filename="../ui/EditProduct.ui" line="9797"/>
+        <location filename="../ui/EditProduct.ui" line="9512"/>
+        <location filename="../ui/EditProduct.ui" line="9824"/>
         <source>End date:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9629"/>
-        <location filename="../ui/EditProduct.ui" line="9863"/>
-        <location filename="../ui/EditProduct.ui" line="10081"/>
+        <location filename="../ui/EditProduct.ui" line="9656"/>
+        <location filename="../ui/EditProduct.ui" line="9890"/>
+        <location filename="../ui/EditProduct.ui" line="10108"/>
         <source>Apparent attenuation:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9673"/>
-        <location filename="../ui/EditProduct.ui" line="9907"/>
-        <location filename="../ui/EditProduct.ui" line="10125"/>
+        <location filename="../ui/EditProduct.ui" line="9700"/>
+        <location filename="../ui/EditProduct.ui" line="9934"/>
+        <location filename="../ui/EditProduct.ui" line="10152"/>
         <source>Edit SG in Plato, Brix or SG</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9693"/>
-        <location filename="../ui/EditProduct.ui" line="9927"/>
+        <location filename="../ui/EditProduct.ui" line="9720"/>
+        <location filename="../ui/EditProduct.ui" line="9954"/>
         <source>Set the date to today</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9713"/>
+        <location filename="../ui/EditProduct.ui" line="9740"/>
         <source>Edit the date the primary fermentation was done.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9753"/>
+        <location filename="../ui/EditProduct.ui" line="9780"/>
         <source>Secondary fermentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9947"/>
+        <location filename="../ui/EditProduct.ui" line="9974"/>
         <source>Edit the date the secondary fermentation was done.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9987"/>
+        <location filename="../ui/EditProduct.ui" line="10014"/>
         <source>Tertiary fermentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9999"/>
+        <location filename="../ui/EditProduct.ui" line="10026"/>
         <source>Average temperature:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10015"/>
+        <location filename="../ui/EditProduct.ui" line="10042"/>
         <source>Final density:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10145"/>
+        <location filename="../ui/EditProduct.ui" line="10172"/>
         <source>Expected end density:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10183"/>
+        <location filename="../ui/EditProduct.ui" line="10210"/>
         <source>Alcohol volume:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10228"/>
+        <location filename="../ui/EditProduct.ui" line="10255"/>
         <source>Show fermenter unit log:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10244"/>
+        <location filename="../ui/EditProduct.ui" line="10271"/>
         <source>Show fermentation log:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10293"/>
+        <location filename="../ui/EditProduct.ui" line="10324"/>
         <source>Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10305"/>
+        <location filename="../ui/EditProduct.ui" line="10336"/>
         <source>Package date:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10378"/>
+        <location filename="../ui/EditProduct.ui" line="10409"/>
         <source>Carbonation range:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10431"/>
+        <location filename="../ui/EditProduct.ui" line="10462"/>
         <source>Infusion or Dilution</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10443"/>
+        <location filename="../ui/EditProduct.ui" line="10474"/>
         <source>Package volume:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10459"/>
+        <location filename="../ui/EditProduct.ui" line="10490"/>
         <source>Extra added volume:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10475"/>
+        <location filename="../ui/EditProduct.ui" line="10506"/>
         <source>Extra remarks:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10491"/>
+        <location filename="../ui/EditProduct.ui" line="10522"/>
         <source>Estimated final ABV %:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10785"/>
+        <location filename="../ui/EditProduct.ui" line="10816"/>
         <source>Estimated final IBU:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10801"/>
+        <location filename="../ui/EditProduct.ui" line="10832"/>
         <source>Estimated final EBC:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10507"/>
+        <location filename="../ui/EditProduct.ui" line="10538"/>
         <source>Extra added ABV %:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10523"/>
+        <location filename="../ui/EditProduct.ui" line="10554"/>
         <source>pH from fermenter:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10567"/>
-        <source>Extra dilution or infusion added to this batch.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ui/EditProduct.ui" line="10598"/>
-        <location filename="../ui/EditProduct.ui" line="10720"/>
-        <source>The ABV including the infusion.</source>
+        <source>Extra dilution or infusion added to this batch.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="10629"/>
+        <location filename="../ui/EditProduct.ui" line="10751"/>
+        <source>The ABV including the infusion.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="10660"/>
         <source>If there is alcohol in the infusion, give the percentage.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10688"/>
+        <location filename="../ui/EditProduct.ui" line="10719"/>
         <source>Could be the description of the infusion.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10704"/>
+        <location filename="../ui/EditProduct.ui" line="10735"/>
         <source>Estimated package ABV %:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10852"/>
+        <location filename="../ui/EditProduct.ui" line="10883"/>
         <source>Bottles</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10864"/>
-        <location filename="../ui/EditProduct.ui" line="11442"/>
+        <location filename="../ui/EditProduct.ui" line="10895"/>
+        <location filename="../ui/EditProduct.ui" line="11473"/>
         <source>Volume:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10880"/>
-        <location filename="../ui/EditProduct.ui" line="11300"/>
+        <location filename="../ui/EditProduct.ui" line="10911"/>
+        <location filename="../ui/EditProduct.ui" line="11331"/>
         <source>Desired volume CO2:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10896"/>
-        <location filename="../ui/EditProduct.ui" line="11367"/>
+        <location filename="../ui/EditProduct.ui" line="10927"/>
+        <location filename="../ui/EditProduct.ui" line="11398"/>
         <source>Priming sugar:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10912"/>
-        <location filename="../ui/EditProduct.ui" line="11284"/>
+        <location filename="../ui/EditProduct.ui" line="10943"/>
+        <location filename="../ui/EditProduct.ui" line="11315"/>
         <source>Sugar amount:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10928"/>
-        <location filename="../ui/EditProduct.ui" line="11332"/>
+        <location filename="../ui/EditProduct.ui" line="10959"/>
+        <location filename="../ui/EditProduct.ui" line="11363"/>
         <source>Priming:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10944"/>
-        <location filename="../ui/EditProduct.ui" line="11316"/>
+        <location filename="../ui/EditProduct.ui" line="10975"/>
+        <location filename="../ui/EditProduct.ui" line="11347"/>
         <source>Water amount:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10960"/>
+        <location filename="../ui/EditProduct.ui" line="10991"/>
         <source>Bottle fermentation:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11079"/>
-        <location filename="../ui/EditProduct.ui" line="11495"/>
+        <location filename="../ui/EditProduct.ui" line="11110"/>
+        <location filename="../ui/EditProduct.ui" line="11526"/>
         <source> gr/L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11126"/>
+        <location filename="../ui/EditProduct.ui" line="11157"/>
         <source>Expected pressure in bar:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11142"/>
+        <location filename="../ui/EditProduct.ui" line="11173"/>
         <source>Bottles ABV %:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11240"/>
+        <location filename="../ui/EditProduct.ui" line="11271"/>
         <source>Kegs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11252"/>
+        <location filename="../ui/EditProduct.ui" line="11283"/>
         <source>Kegs ABV %:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11268"/>
+        <location filename="../ui/EditProduct.ui" line="11299"/>
         <source>Kegs pressure in bar:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11348"/>
+        <location filename="../ui/EditProduct.ui" line="11379"/>
         <source>Kegs temperature:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11636"/>
+        <location filename="../ui/EditProduct.ui" line="11667"/>
         <source>Forced carbonation:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11663"/>
+        <location filename="../ui/EditProduct.ui" line="11694"/>
         <source>Edit the package date.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11722"/>
+        <location filename="../ui/EditProduct.ui" line="11753"/>
         <source>Show carbonation log:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11731"/>
+        <location filename="../ui/EditProduct.ui" line="11766"/>
         <source>Tasting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11743"/>
+        <location filename="../ui/EditProduct.ui" line="11778"/>
         <source>Taste date:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11779"/>
+        <location filename="../ui/EditProduct.ui" line="11814"/>
         <source>Taste rate:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11820"/>
+        <location filename="../ui/EditProduct.ui" line="11855"/>
         <source>Color:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11836"/>
+        <location filename="../ui/EditProduct.ui" line="11871"/>
         <source>Transparency:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11852"/>
+        <location filename="../ui/EditProduct.ui" line="11887"/>
         <source>Head:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11907"/>
+        <location filename="../ui/EditProduct.ui" line="11942"/>
         <source>Aroma:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11936"/>
+        <location filename="../ui/EditProduct.ui" line="11971"/>
         <source>Taste:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11965"/>
+        <location filename="../ui/EditProduct.ui" line="12000"/>
         <source>Aftertaste:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11994"/>
+        <location filename="../ui/EditProduct.ui" line="12029"/>
         <source>Mouthfeel:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="12023"/>
+        <location filename="../ui/EditProduct.ui" line="12058"/>
         <source>Notes:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="12049"/>
+        <location filename="../ui/EditProduct.ui" line="12084"/>
         <source>Edit the tasting date.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="12090"/>
+        <location filename="../ui/EditProduct.ui" line="12120"/>
+        <source>Images</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="12144"/>
         <source>Export</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="12107"/>
+        <location filename="../ui/EditProduct.ui" line="12161"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4132,43 +4142,43 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="811"/>
+        <location filename="../src/EditProduct.cpp" line="814"/>
         <source>BMSapp - Add new product</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="813"/>
+        <location filename="../src/EditProduct.cpp" line="816"/>
         <source>BMSapp - Edit %1 - %2</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="829"/>
-        <location filename="../src/EditProduct.cpp" line="833"/>
+        <location filename="../src/EditProduct.cpp" line="832"/>
+        <location filename="../src/EditProduct.cpp" line="836"/>
         <source>Edit Product</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="829"/>
+        <location filename="../src/EditProduct.cpp" line="832"/>
         <source>Name empty or too short.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="833"/>
+        <location filename="../src/EditProduct.cpp" line="836"/>
         <source>No beerstyle selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="871"/>
+        <location filename="../src/EditProduct.cpp" line="875"/>
         <source>Delete product</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="895"/>
+        <location filename="../src/EditProduct.cpp" line="899"/>
         <source>Product changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="895"/>
+        <location filename="../src/EditProduct.cpp" line="899"/>
         <source>The product has been modified. Save changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4245,7 +4255,7 @@
         <location filename="../src/EditProductTab5.cpp" line="75"/>
         <location filename="../src/EditProductTab5.cpp" line="176"/>
         <location filename="../src/EditProductTab6.cpp" line="55"/>
-        <location filename="../src/EditProductTab6.cpp" line="153"/>
+        <location filename="../src/EditProductTab6.cpp" line="169"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4291,9 +4301,9 @@
         <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="880"/>
+        <location filename="../src/EditProductTab6.cpp" line="896"/>
         <location filename="../src/EditProductTab7.cpp" line="306"/>
-        <location filename="../src/EditProduct.cpp" line="871"/>
+        <location filename="../src/EditProduct.cpp" line="875"/>
         <source>Delete %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4326,7 +4336,7 @@
     <message>
         <location filename="../src/EditProductTab3.cpp" line="1073"/>
         <location filename="../src/EditProductTab4.cpp" line="633"/>
-        <location filename="../src/EditProductTab6.cpp" line="1179"/>
+        <location filename="../src/EditProductTab6.cpp" line="1195"/>
         <source>Use at:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4340,7 +4350,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="1164"/>
+        <location filename="../src/EditProductTab6.cpp" line="1180"/>
         <source>In stock:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4482,8 +4492,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="1012"/>
-        <location filename="../src/EditProductTab6.cpp" line="1172"/>
+        <location filename="../src/EditProductTab6.cpp" line="1028"/>
+        <location filename="../src/EditProductTab6.cpp" line="1188"/>
         <source>Amount in gr:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4522,8 +4532,8 @@
     <message>
         <location filename="../src/EditProductTab5.cpp" line="528"/>
         <location filename="../src/EditProductTab5.cpp" line="652"/>
-        <location filename="../src/EditProductTab6.cpp" line="1019"/>
-        <location filename="../src/EditProductTab6.cpp" line="1174"/>
+        <location filename="../src/EditProductTab6.cpp" line="1035"/>
+        <location filename="../src/EditProductTab6.cpp" line="1190"/>
         <source>Amount in ml:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4534,13 +4544,13 @@
     </message>
     <message>
         <location filename="../src/EditProductTab5.cpp" line="720"/>
-        <location filename="../src/EditProductTab6.cpp" line="1228"/>
+        <location filename="../src/EditProductTab6.cpp" line="1244"/>
         <source>Primary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../src/EditProductTab5.cpp" line="721"/>
-        <location filename="../src/EditProductTab6.cpp" line="1229"/>
+        <location filename="../src/EditProductTab6.cpp" line="1245"/>
         <source>Secondary</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4590,140 +4600,145 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="132"/>
-        <location filename="../src/EditProductTab6.cpp" line="136"/>
+        <location filename="../src/EditProductTab6.cpp" line="55"/>
+        <source>STA</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../src/EditProductTab6.cpp" line="148"/>
+        <location filename="../src/EditProductTab6.cpp" line="152"/>
         <source>Yeast already used</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="313"/>
+        <location filename="../src/EditProductTab6.cpp" line="329"/>
         <source>Method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="313"/>
+        <location filename="../src/EditProductTab6.cpp" line="329"/>
         <source>Inj. factor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="313"/>
+        <location filename="../src/EditProductTab6.cpp" line="329"/>
         <source>New cells</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="313"/>
+        <location filename="../src/EditProductTab6.cpp" line="329"/>
         <source>Total cells</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="313"/>
+        <location filename="../src/EditProductTab6.cpp" line="329"/>
         <source>Grow factor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="692"/>
+        <location filename="../src/EditProductTab6.cpp" line="708"/>
         <source>BMSapp - Pitchrate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="704"/>
+        <location filename="../src/EditProductTab6.cpp" line="720"/>
         <source>Beer pitch type:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="712"/>
+        <location filename="../src/EditProductTab6.cpp" line="728"/>
         <source>0.075 Real Kveik</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="713"/>
+        <location filename="../src/EditProductTab6.cpp" line="729"/>
         <source>0.75  Ale, upto 1.060</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="714"/>
+        <location filename="../src/EditProductTab6.cpp" line="730"/>
         <source>1.0   Ale, above 1.060</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="715"/>
+        <location filename="../src/EditProductTab6.cpp" line="731"/>
         <source>1.5   Lager, upto 1.060</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="716"/>
+        <location filename="../src/EditProductTab6.cpp" line="732"/>
         <source>2.0   Lager, above 1.060</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="747"/>
+        <location filename="../src/EditProductTab6.cpp" line="763"/>
         <source>Retry starter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="747"/>
+        <location filename="../src/EditProductTab6.cpp" line="763"/>
         <source>Retry to automatic create starter steps</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="781"/>
+        <location filename="../src/EditProductTab6.cpp" line="797"/>
         <source>Start step type:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="786"/>
+        <location filename="../src/EditProductTab6.cpp" line="802"/>
         <source>Starter step volume:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="793"/>
+        <location filename="../src/EditProductTab6.cpp" line="809"/>
         <source>Stirred</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="794"/>
+        <location filename="../src/EditProductTab6.cpp" line="810"/>
         <source>Shaken</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="795"/>
+        <location filename="../src/EditProductTab6.cpp" line="811"/>
         <source>Simple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="880"/>
+        <location filename="../src/EditProductTab6.cpp" line="896"/>
         <source>Delete yeast</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1005"/>
-        <location filename="../src/EditProductTab6.cpp" line="1170"/>
+        <location filename="../src/EditProductTab6.cpp" line="1021"/>
+        <location filename="../src/EditProductTab6.cpp" line="1186"/>
         <source>Total packs:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1144"/>
+        <location filename="../src/EditProductTab6.cpp" line="1160"/>
         <source>Yeast name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1149"/>
-        <location filename="../src/EditProductTab6.cpp" line="1154"/>
+        <location filename="../src/EditProductTab6.cpp" line="1165"/>
+        <location filename="../src/EditProductTab6.cpp" line="1170"/>
         <source>Laboratory:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1159"/>
+        <location filename="../src/EditProductTab6.cpp" line="1175"/>
         <source>Select yeast:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1230"/>
+        <location filename="../src/EditProductTab6.cpp" line="1246"/>
         <source>Tertiary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1231"/>
+        <location filename="../src/EditProductTab6.cpp" line="1247"/>
         <source>Bottle</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8286,32 +8301,32 @@
 <context>
     <name>FermentableAdded</name>
     <message>
-        <location filename="../src/global.cpp" line="108"/>
+        <location filename="../src/global.cpp" line="118"/>
         <source>Mash</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="109"/>
+        <location filename="../src/global.cpp" line="119"/>
         <source>Boil</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="110"/>
+        <location filename="../src/global.cpp" line="120"/>
         <source>Fermentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="111"/>
+        <location filename="../src/global.cpp" line="121"/>
         <source>Lagering</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="112"/>
+        <location filename="../src/global.cpp" line="122"/>
         <source>Bottle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="113"/>
+        <location filename="../src/global.cpp" line="123"/>
         <source>Kegs</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8319,37 +8334,37 @@
 <context>
     <name>FermentableGraintype</name>
     <message>
-        <location filename="../src/global.cpp" line="98"/>
+        <location filename="../src/global.cpp" line="108"/>
         <source>Base</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="99"/>
+        <location filename="../src/global.cpp" line="109"/>
         <source>Roast</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="100"/>
+        <location filename="../src/global.cpp" line="110"/>
         <source>Crystal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="101"/>
+        <location filename="../src/global.cpp" line="111"/>
         <source>Kilned</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="102"/>
+        <location filename="../src/global.cpp" line="112"/>
         <source>Sour Malt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="103"/>
+        <location filename="../src/global.cpp" line="113"/>
         <source>Special</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="104"/>
+        <location filename="../src/global.cpp" line="114"/>
         <source>No malt</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8357,27 +8372,27 @@
 <context>
     <name>FermentableType</name>
     <message>
-        <location filename="../src/global.cpp" line="90"/>
+        <location filename="../src/global.cpp" line="100"/>
         <source>Grain</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="91"/>
+        <location filename="../src/global.cpp" line="101"/>
         <source>Sugar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="92"/>
+        <location filename="../src/global.cpp" line="102"/>
         <source>Extract</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="93"/>
+        <location filename="../src/global.cpp" line="103"/>
         <source>Dry extract</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="94"/>
+        <location filename="../src/global.cpp" line="104"/>
         <source>Adjunct</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8385,37 +8400,37 @@
 <context>
     <name>HopForm</name>
     <message>
-        <location filename="../src/global.cpp" line="123"/>
+        <location filename="../src/global.cpp" line="133"/>
         <source>Pellet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="124"/>
+        <location filename="../src/global.cpp" line="134"/>
         <source>Plug</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="125"/>
+        <location filename="../src/global.cpp" line="135"/>
         <source>Leaf</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="126"/>
+        <location filename="../src/global.cpp" line="136"/>
         <source>Leaf wet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="127"/>
+        <location filename="../src/global.cpp" line="137"/>
         <source>Cryo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="128"/>
+        <location filename="../src/global.cpp" line="138"/>
         <source>CO2 extract</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="129"/>
+        <location filename="../src/global.cpp" line="139"/>
         <source>Iso extract</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8423,17 +8438,17 @@
 <context>
     <name>HopTypes</name>
     <message>
-        <location filename="../src/global.cpp" line="117"/>
+        <location filename="../src/global.cpp" line="127"/>
         <source>Bittering</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="118"/>
+        <location filename="../src/global.cpp" line="128"/>
         <source>Aroma</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="119"/>
+        <location filename="../src/global.cpp" line="129"/>
         <source>Both</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8441,37 +8456,37 @@
 <context>
     <name>HopUse</name>
     <message>
-        <location filename="../src/global.cpp" line="133"/>
+        <location filename="../src/global.cpp" line="143"/>
         <source>Mash</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="134"/>
+        <location filename="../src/global.cpp" line="144"/>
         <source>First wort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="135"/>
+        <location filename="../src/global.cpp" line="145"/>
         <source>Boil</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="136"/>
+        <location filename="../src/global.cpp" line="146"/>
         <source>Aroma</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="137"/>
+        <location filename="../src/global.cpp" line="147"/>
         <source>Whirlpool</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="138"/>
+        <location filename="../src/global.cpp" line="148"/>
         <source>Dry hop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="139"/>
+        <location filename="../src/global.cpp" line="149"/>
         <source>Bottling</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9435,37 +9450,37 @@
 <context>
     <name>MiscType</name>
     <message>
-        <location filename="../src/global.cpp" line="143"/>
+        <location filename="../src/global.cpp" line="153"/>
         <source>Spice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="144"/>
+        <location filename="../src/global.cpp" line="154"/>
         <source>Herb</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="145"/>
+        <location filename="../src/global.cpp" line="155"/>
         <source>Flavor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="146"/>
+        <location filename="../src/global.cpp" line="156"/>
         <source>Fining</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="147"/>
+        <location filename="../src/global.cpp" line="157"/>
         <source>Water agent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="148"/>
+        <location filename="../src/global.cpp" line="158"/>
         <source>Yeast nutrient</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="149"/>
+        <location filename="../src/global.cpp" line="159"/>
         <source>Other</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9473,37 +9488,37 @@
 <context>
     <name>MiscUse</name>
     <message>
-        <location filename="../src/global.cpp" line="153"/>
+        <location filename="../src/global.cpp" line="163"/>
         <source>Starter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="154"/>
+        <location filename="../src/global.cpp" line="164"/>
         <source>Mash</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="155"/>
+        <location filename="../src/global.cpp" line="165"/>
         <source>Boil</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="156"/>
+        <location filename="../src/global.cpp" line="166"/>
         <source>Primary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="157"/>
+        <location filename="../src/global.cpp" line="167"/>
         <source>Secondary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="158"/>
+        <location filename="../src/global.cpp" line="168"/>
         <source>Bottling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="159"/>
+        <location filename="../src/global.cpp" line="169"/>
         <source>Sparge</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9710,6 +9725,44 @@
     </message>
 </context>
 <context>
+    <name>PicType</name>
+    <message>
+        <location filename="../src/global.cpp" line="61"/>
+        <source>Generic</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../src/global.cpp" line="62"/>
+        <source>Label Vichy</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../src/global.cpp" line="63"/>
+        <source>Label Steinie</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../src/global.cpp" line="64"/>
+        <source>Label 75cl</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../src/global.cpp" line="65"/>
+        <source>Label Magnum</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../src/global.cpp" line="66"/>
+        <source>Label Cap</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../src/global.cpp" line="67"/>
+        <source>Label Box</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
     <name>PrinterDialog</name>
     <message>
         <location filename="../src/PrinterDialog.cpp" line="69"/>
@@ -11930,17 +11983,17 @@
 <context>
     <name>RecipeType</name>
     <message>
-        <location filename="../src/global.cpp" line="61"/>
+        <location filename="../src/global.cpp" line="71"/>
         <source>Extract</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="62"/>
+        <location filename="../src/global.cpp" line="72"/>
         <source>Partial Mash</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="63"/>
+        <location filename="../src/global.cpp" line="73"/>
         <source>All Grain</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12412,17 +12465,17 @@
 <context>
     <name>StepType</name>
     <message>
-        <location filename="../src/global.cpp" line="197"/>
+        <location filename="../src/global.cpp" line="207"/>
         <source>Infusion</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="198"/>
+        <location filename="../src/global.cpp" line="208"/>
         <source>Temperature</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="199"/>
+        <location filename="../src/global.cpp" line="209"/>
         <source>Decoction</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12438,22 +12491,22 @@
 <context>
     <name>TunMaterial</name>
     <message>
-        <location filename="../src/global.cpp" line="203"/>
+        <location filename="../src/global.cpp" line="213"/>
         <source>Stainless Steel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="204"/>
+        <location filename="../src/global.cpp" line="214"/>
         <source>Aluminium</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="205"/>
+        <location filename="../src/global.cpp" line="215"/>
         <source>Plastics</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="206"/>
+        <location filename="../src/global.cpp" line="216"/>
         <source>Copper</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12477,37 +12530,37 @@
 <context>
     <name>YeastForm</name>
     <message>
-        <location filename="../src/global.cpp" line="174"/>
+        <location filename="../src/global.cpp" line="184"/>
         <source>Liquid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="175"/>
+        <location filename="../src/global.cpp" line="185"/>
         <source>Dry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="176"/>
+        <location filename="../src/global.cpp" line="186"/>
         <source>Slant</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="177"/>
+        <location filename="../src/global.cpp" line="187"/>
         <source>Culture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="178"/>
+        <location filename="../src/global.cpp" line="188"/>
         <source>Frozen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="179"/>
+        <location filename="../src/global.cpp" line="189"/>
         <source>Bottle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="180"/>
+        <location filename="../src/global.cpp" line="190"/>
         <source>Dried</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12515,17 +12568,17 @@
 <context>
     <name>YeastStarter</name>
     <message>
-        <location filename="../src/global.cpp" line="191"/>
+        <location filename="../src/global.cpp" line="201"/>
         <source>Stirred</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="192"/>
+        <location filename="../src/global.cpp" line="202"/>
         <source>Shaken</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="193"/>
+        <location filename="../src/global.cpp" line="203"/>
         <source>Simple</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12533,42 +12586,42 @@
 <context>
     <name>YeastType</name>
     <message>
-        <location filename="../src/global.cpp" line="163"/>
+        <location filename="../src/global.cpp" line="173"/>
         <source>Lager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="164"/>
+        <location filename="../src/global.cpp" line="174"/>
         <source>Ale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="165"/>
+        <location filename="../src/global.cpp" line="175"/>
         <source>Wheat</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="166"/>
+        <location filename="../src/global.cpp" line="176"/>
         <source>Wine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="167"/>
+        <location filename="../src/global.cpp" line="177"/>
         <source>Champagne</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="168"/>
+        <location filename="../src/global.cpp" line="178"/>
         <source>Brett</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="169"/>
+        <location filename="../src/global.cpp" line="179"/>
         <source>Kveik</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="170"/>
+        <location filename="../src/global.cpp" line="180"/>
         <source>Hybrid</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12576,22 +12629,22 @@
 <context>
     <name>YeastUse</name>
     <message>
-        <location filename="../src/global.cpp" line="184"/>
+        <location filename="../src/global.cpp" line="194"/>
         <source>Primary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="185"/>
+        <location filename="../src/global.cpp" line="195"/>
         <source>Secondary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="186"/>
+        <location filename="../src/global.cpp" line="196"/>
         <source>Tertiary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="187"/>
+        <location filename="../src/global.cpp" line="197"/>
         <source>Bottle</source>
         <translation type="unfinished"></translation>
     </message>
--- a/translations/bmsapp_nl.ts	Sun Jan 15 14:33:53 2023 +0100
+++ b/translations/bmsapp_nl.ts	Mon Jan 16 16:55:41 2023 +0100
@@ -47,32 +47,32 @@
 <context>
     <name>BeerType</name>
     <message>
-        <location filename="../src/global.cpp" line="67"/>
+        <location filename="../src/global.cpp" line="77"/>
         <source>Lager</source>
         <translation>Ondergist</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="68"/>
+        <location filename="../src/global.cpp" line="78"/>
         <source>Ale</source>
         <translation>Bovengist</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="69"/>
+        <location filename="../src/global.cpp" line="79"/>
         <source>Mead</source>
         <translation>Mede</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="70"/>
+        <location filename="../src/global.cpp" line="80"/>
         <source>Wheat</source>
         <translation>Tarwebier</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="71"/>
+        <location filename="../src/global.cpp" line="81"/>
         <source>Mixed</source>
         <translation>Gemengd</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="72"/>
+        <location filename="../src/global.cpp" line="82"/>
         <source>Cider</source>
         <translation>Cider</translation>
     </message>
@@ -281,22 +281,22 @@
 <context>
     <name>ChillerType</name>
     <message>
-        <location filename="../src/global.cpp" line="82"/>
+        <location filename="../src/global.cpp" line="92"/>
         <source>-</source>
         <translation>-</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="83"/>
+        <location filename="../src/global.cpp" line="93"/>
         <source>Immersion</source>
         <translation>Dompel</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="84"/>
+        <location filename="../src/global.cpp" line="94"/>
         <source>Counterflow</source>
         <translation>Tegenstroom</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="86"/>
+        <location filename="../src/global.cpp" line="96"/>
         <source>No-chill</source>
         <translation>Niet-koelen</translation>
     </message>
@@ -309,7 +309,7 @@
         <translation type="vanished">Tegenstroom koeler</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="85"/>
+        <location filename="../src/global.cpp" line="95"/>
         <source>Au bain marie</source>
         <translation>Au bain marie</translation>
     </message>
@@ -2649,7 +2649,7 @@
         <location filename="../src/EditProductTab5.cpp" line="75"/>
         <location filename="../src/EditProductTab5.cpp" line="165"/>
         <location filename="../src/EditProductTab6.cpp" line="55"/>
-        <location filename="../src/EditProductTab6.cpp" line="142"/>
+        <location filename="../src/EditProductTab6.cpp" line="158"/>
         <location filename="../src/EditProductExport.cpp" line="874"/>
         <source>Delete</source>
         <translation>Verwijder</translation>
@@ -2686,8 +2686,8 @@
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="240"/>
-        <location filename="../ui/EditProduct.ui" line="7942"/>
-        <location filename="../ui/EditProduct.ui" line="8937"/>
+        <location filename="../ui/EditProduct.ui" line="7969"/>
+        <location filename="../ui/EditProduct.ui" line="8964"/>
         <source>Efficiency:</source>
         <translation>Rendement:</translation>
     </message>
@@ -2717,23 +2717,23 @@
         <location filename="../ui/EditProduct.ui" line="1802"/>
         <location filename="../ui/EditProduct.ui" line="3370"/>
         <location filename="../ui/EditProduct.ui" line="3423"/>
-        <location filename="../ui/EditProduct.ui" line="4130"/>
-        <location filename="../ui/EditProduct.ui" line="7635"/>
-        <location filename="../ui/EditProduct.ui" line="8036"/>
-        <location filename="../ui/EditProduct.ui" line="9053"/>
-        <location filename="../ui/EditProduct.ui" line="9654"/>
-        <location filename="../ui/EditProduct.ui" line="9888"/>
-        <location filename="../ui/EditProduct.ui" line="10106"/>
-        <location filename="../ui/EditProduct.ui" line="10208"/>
-        <location filename="../ui/EditProduct.ui" line="10353"/>
-        <location filename="../ui/EditProduct.ui" line="10406"/>
-        <location filename="../ui/EditProduct.ui" line="10610"/>
-        <location filename="../ui/EditProduct.ui" line="10644"/>
-        <location filename="../ui/EditProduct.ui" line="10732"/>
-        <location filename="../ui/EditProduct.ui" line="11010"/>
-        <location filename="../ui/EditProduct.ui" line="11195"/>
-        <location filename="../ui/EditProduct.ui" line="11423"/>
-        <location filename="../ui/EditProduct.ui" line="11586"/>
+        <location filename="../ui/EditProduct.ui" line="4153"/>
+        <location filename="../ui/EditProduct.ui" line="7662"/>
+        <location filename="../ui/EditProduct.ui" line="8063"/>
+        <location filename="../ui/EditProduct.ui" line="9080"/>
+        <location filename="../ui/EditProduct.ui" line="9681"/>
+        <location filename="../ui/EditProduct.ui" line="9915"/>
+        <location filename="../ui/EditProduct.ui" line="10133"/>
+        <location filename="../ui/EditProduct.ui" line="10235"/>
+        <location filename="../ui/EditProduct.ui" line="10384"/>
+        <location filename="../ui/EditProduct.ui" line="10437"/>
+        <location filename="../ui/EditProduct.ui" line="10641"/>
+        <location filename="../ui/EditProduct.ui" line="10675"/>
+        <location filename="../ui/EditProduct.ui" line="10763"/>
+        <location filename="../ui/EditProduct.ui" line="11041"/>
+        <location filename="../ui/EditProduct.ui" line="11226"/>
+        <location filename="../ui/EditProduct.ui" line="11454"/>
+        <location filename="../ui/EditProduct.ui" line="11617"/>
         <source> %</source>
         <translation> %</translation>
     </message>
@@ -2741,12 +2741,12 @@
         <location filename="../ui/EditProduct.ui" line="335"/>
         <location filename="../ui/EditProduct.ui" line="1922"/>
         <location filename="../ui/EditProduct.ui" line="2302"/>
-        <location filename="../ui/EditProduct.ui" line="8253"/>
-        <location filename="../ui/EditProduct.ui" line="8281"/>
-        <location filename="../ui/EditProduct.ui" line="8309"/>
-        <location filename="../ui/EditProduct.ui" line="8337"/>
-        <location filename="../ui/EditProduct.ui" line="8724"/>
-        <location filename="../ui/EditProduct.ui" line="8845"/>
+        <location filename="../ui/EditProduct.ui" line="8280"/>
+        <location filename="../ui/EditProduct.ui" line="8308"/>
+        <location filename="../ui/EditProduct.ui" line="8336"/>
+        <location filename="../ui/EditProduct.ui" line="8364"/>
+        <location filename="../ui/EditProduct.ui" line="8751"/>
+        <location filename="../ui/EditProduct.ui" line="8872"/>
         <source> min</source>
         <translation> min</translation>
     </message>
@@ -2769,26 +2769,26 @@
         <location filename="../ui/EditProduct.ui" line="2549"/>
         <location filename="../ui/EditProduct.ui" line="3122"/>
         <location filename="../ui/EditProduct.ui" line="3178"/>
-        <location filename="../ui/EditProduct.ui" line="4333"/>
-        <location filename="../ui/EditProduct.ui" line="5669"/>
-        <location filename="../ui/EditProduct.ui" line="6405"/>
-        <location filename="../ui/EditProduct.ui" line="6742"/>
-        <location filename="../ui/EditProduct.ui" line="7068"/>
-        <location filename="../ui/EditProduct.ui" line="7743"/>
-        <location filename="../ui/EditProduct.ui" line="7809"/>
-        <location filename="../ui/EditProduct.ui" line="8061"/>
-        <location filename="../ui/EditProduct.ui" line="8092"/>
-        <location filename="../ui/EditProduct.ui" line="8426"/>
-        <location filename="../ui/EditProduct.ui" line="8454"/>
-        <location filename="../ui/EditProduct.ui" line="8488"/>
-        <location filename="../ui/EditProduct.ui" line="8918"/>
-        <location filename="../ui/EditProduct.ui" line="9003"/>
-        <location filename="../ui/EditProduct.ui" line="10545"/>
+        <location filename="../ui/EditProduct.ui" line="4356"/>
+        <location filename="../ui/EditProduct.ui" line="5692"/>
+        <location filename="../ui/EditProduct.ui" line="6428"/>
+        <location filename="../ui/EditProduct.ui" line="6765"/>
+        <location filename="../ui/EditProduct.ui" line="7091"/>
+        <location filename="../ui/EditProduct.ui" line="7770"/>
+        <location filename="../ui/EditProduct.ui" line="7836"/>
+        <location filename="../ui/EditProduct.ui" line="8088"/>
+        <location filename="../ui/EditProduct.ui" line="8119"/>
+        <location filename="../ui/EditProduct.ui" line="8453"/>
+        <location filename="../ui/EditProduct.ui" line="8481"/>
+        <location filename="../ui/EditProduct.ui" line="8515"/>
+        <location filename="../ui/EditProduct.ui" line="8945"/>
+        <location filename="../ui/EditProduct.ui" line="9030"/>
         <location filename="../ui/EditProduct.ui" line="10576"/>
-        <location filename="../ui/EditProduct.ui" line="10982"/>
-        <location filename="../ui/EditProduct.ui" line="11104"/>
-        <location filename="../ui/EditProduct.ui" line="11464"/>
-        <location filename="../ui/EditProduct.ui" line="11545"/>
+        <location filename="../ui/EditProduct.ui" line="10607"/>
+        <location filename="../ui/EditProduct.ui" line="11013"/>
+        <location filename="../ui/EditProduct.ui" line="11135"/>
+        <location filename="../ui/EditProduct.ui" line="11495"/>
+        <location filename="../ui/EditProduct.ui" line="11576"/>
         <location filename="../src/EditProductExport.cpp" line="838"/>
         <location filename="../src/EditProductExport.cpp" line="846"/>
         <source> L</source>
@@ -2983,7 +2983,7 @@
         <translation type="vanished">Trub koeler verlies:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8404"/>
+        <location filename="../ui/EditProduct.ui" line="8431"/>
         <source>Top up water:</source>
         <translation>Extra water in gistvat:</translation>
     </message>
@@ -3054,8 +3054,8 @@
         <location filename="../ui/EditProduct.ui" line="2859"/>
         <location filename="../ui/EditProduct.ui" line="3074"/>
         <location filename="../ui/EditProduct.ui" line="3222"/>
-        <location filename="../ui/EditProduct.ui" line="4049"/>
-        <location filename="../ui/EditProduct.ui" line="4204"/>
+        <location filename="../ui/EditProduct.ui" line="4072"/>
+        <location filename="../ui/EditProduct.ui" line="4227"/>
         <location filename="../src/EditProductExport.cpp" line="866"/>
         <source>Add</source>
         <translation>Nieuw</translation>
@@ -3117,41 +3117,41 @@
     <message>
         <location filename="../ui/EditProduct.ui" line="3598"/>
         <location filename="../ui/EditProduct.ui" line="3687"/>
-        <location filename="../ui/EditProduct.ui" line="10321"/>
-        <location filename="../ui/EditProduct.ui" line="11682"/>
-        <location filename="../ui/EditProduct.ui" line="11759"/>
-        <location filename="../ui/EditProduct.ui" line="12068"/>
+        <location filename="../ui/EditProduct.ui" line="10352"/>
+        <location filename="../ui/EditProduct.ui" line="11713"/>
+        <location filename="../ui/EditProduct.ui" line="11794"/>
+        <location filename="../ui/EditProduct.ui" line="12103"/>
         <source>Set or clear date</source>
         <translation>Zet of wis datum</translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="3601"/>
         <location filename="../ui/EditProduct.ui" line="3690"/>
-        <location filename="../ui/EditProduct.ui" line="4101"/>
-        <location filename="../ui/EditProduct.ui" line="4168"/>
-        <location filename="../ui/EditProduct.ui" line="8114"/>
-        <location filename="../ui/EditProduct.ui" line="8153"/>
-        <location filename="../ui/EditProduct.ui" line="8750"/>
-        <location filename="../ui/EditProduct.ui" line="9075"/>
-        <location filename="../ui/EditProduct.ui" line="9149"/>
-        <location filename="../ui/EditProduct.ui" line="9170"/>
-        <location filename="../ui/EditProduct.ui" line="9209"/>
-        <location filename="../ui/EditProduct.ui" line="9280"/>
-        <location filename="../ui/EditProduct.ui" line="9367"/>
-        <location filename="../ui/EditProduct.ui" line="9676"/>
-        <location filename="../ui/EditProduct.ui" line="9696"/>
-        <location filename="../ui/EditProduct.ui" line="9735"/>
-        <location filename="../ui/EditProduct.ui" line="9910"/>
-        <location filename="../ui/EditProduct.ui" line="9930"/>
-        <location filename="../ui/EditProduct.ui" line="9969"/>
-        <location filename="../ui/EditProduct.ui" line="10128"/>
-        <location filename="../ui/EditProduct.ui" line="10263"/>
-        <location filename="../ui/EditProduct.ui" line="10283"/>
-        <location filename="../ui/EditProduct.ui" line="10324"/>
-        <location filename="../ui/EditProduct.ui" line="11685"/>
-        <location filename="../ui/EditProduct.ui" line="11705"/>
-        <location filename="../ui/EditProduct.ui" line="11762"/>
-        <location filename="../ui/EditProduct.ui" line="12071"/>
+        <location filename="../ui/EditProduct.ui" line="4124"/>
+        <location filename="../ui/EditProduct.ui" line="4191"/>
+        <location filename="../ui/EditProduct.ui" line="8141"/>
+        <location filename="../ui/EditProduct.ui" line="8180"/>
+        <location filename="../ui/EditProduct.ui" line="8777"/>
+        <location filename="../ui/EditProduct.ui" line="9102"/>
+        <location filename="../ui/EditProduct.ui" line="9176"/>
+        <location filename="../ui/EditProduct.ui" line="9197"/>
+        <location filename="../ui/EditProduct.ui" line="9236"/>
+        <location filename="../ui/EditProduct.ui" line="9307"/>
+        <location filename="../ui/EditProduct.ui" line="9394"/>
+        <location filename="../ui/EditProduct.ui" line="9703"/>
+        <location filename="../ui/EditProduct.ui" line="9723"/>
+        <location filename="../ui/EditProduct.ui" line="9762"/>
+        <location filename="../ui/EditProduct.ui" line="9937"/>
+        <location filename="../ui/EditProduct.ui" line="9957"/>
+        <location filename="../ui/EditProduct.ui" line="9996"/>
+        <location filename="../ui/EditProduct.ui" line="10155"/>
+        <location filename="../ui/EditProduct.ui" line="10290"/>
+        <location filename="../ui/EditProduct.ui" line="10310"/>
+        <location filename="../ui/EditProduct.ui" line="10355"/>
+        <location filename="../ui/EditProduct.ui" line="11716"/>
+        <location filename="../ui/EditProduct.ui" line="11736"/>
+        <location filename="../ui/EditProduct.ui" line="11797"/>
+        <location filename="../ui/EditProduct.ui" line="12106"/>
         <source>...</source>
         <translation>...</translation>
     </message>
@@ -3165,102 +3165,102 @@
         <translation type="vanished">Droge gist berekening.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3745"/>
+        <location filename="../ui/EditProduct.ui" line="3768"/>
         <source>Low grams/hl:</source>
         <translation>Laag grammen/hl:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3761"/>
+        <location filename="../ui/EditProduct.ui" line="3784"/>
         <source>High grams/hl:</source>
         <translation>Hoog grammen/hl:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3821"/>
-        <location filename="../ui/EditProduct.ui" line="3837"/>
+        <location filename="../ui/EditProduct.ui" line="3844"/>
+        <location filename="../ui/EditProduct.ui" line="3860"/>
         <source>at</source>
         <translation>bij</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3912"/>
+        <location filename="../ui/EditProduct.ui" line="3935"/>
         <source>This recipe pitch grams/hl:</source>
         <translation>Dit recept ent gram/hl:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3956"/>
+        <location filename="../ui/EditProduct.ui" line="3979"/>
         <source>Pitchrate grams/hectoliter:</source>
         <translation>Ent gram/hectoliter:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3972"/>
+        <location filename="../ui/EditProduct.ui" line="3995"/>
         <source>Yeast grams needed:</source>
         <translation>Gist grammen nodig:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4066"/>
+        <location filename="../ui/EditProduct.ui" line="4089"/>
         <source>Production date:</source>
         <translation>Productie datum:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4082"/>
+        <location filename="../ui/EditProduct.ui" line="4105"/>
         <source>Yeast condition:</source>
         <translation>Gist conditie:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4098"/>
-        <location filename="../ui/EditProduct.ui" line="9167"/>
+        <location filename="../ui/EditProduct.ui" line="4121"/>
+        <location filename="../ui/EditProduct.ui" line="9194"/>
         <source>Set the date to today.</source>
         <translation>Zet de datum op vandaag.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4146"/>
+        <location filename="../ui/EditProduct.ui" line="4169"/>
         <source>Edit the production date.</source>
         <translation>Wijzig de productie datum.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4149"/>
-        <location filename="../ui/EditProduct.ui" line="9190"/>
-        <location filename="../ui/EditProduct.ui" line="9245"/>
-        <location filename="../ui/EditProduct.ui" line="9716"/>
-        <location filename="../ui/EditProduct.ui" line="9950"/>
-        <location filename="../ui/EditProduct.ui" line="11666"/>
-        <location filename="../ui/EditProduct.ui" line="12052"/>
+        <location filename="../ui/EditProduct.ui" line="4172"/>
+        <location filename="../ui/EditProduct.ui" line="9217"/>
+        <location filename="../ui/EditProduct.ui" line="9272"/>
+        <location filename="../ui/EditProduct.ui" line="9743"/>
+        <location filename="../ui/EditProduct.ui" line="9977"/>
+        <location filename="../ui/EditProduct.ui" line="11697"/>
+        <location filename="../ui/EditProduct.ui" line="12087"/>
         <source>dd-MM-yyyy</source>
         <translation>dd-MM-yyyy</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4165"/>
+        <location filename="../ui/EditProduct.ui" line="4188"/>
         <source>Clear the date</source>
         <translation>Verwijder de datum</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4182"/>
+        <location filename="../ui/EditProduct.ui" line="4205"/>
         <location filename="../src/EditProductTab3.cpp" line="1138"/>
         <location filename="../src/EditProductTab5.cpp" line="718"/>
         <source>Mash</source>
         <translation>Maischen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4221"/>
+        <location filename="../ui/EditProduct.ui" line="4244"/>
         <source>Mash name:</source>
         <translation>Maisch schema:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4237"/>
+        <location filename="../ui/EditProduct.ui" line="4260"/>
         <source>Mash schedule:</source>
         <translation>Kies maisch schema:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4276"/>
+        <location filename="../ui/EditProduct.ui" line="4299"/>
         <source>Mash time:</source>
         <translation>Maisch tijd:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4305"/>
+        <location filename="../ui/EditProduct.ui" line="4328"/>
         <source>Mash total volume:</source>
         <translation>Maisch totaal volume:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4349"/>
+        <location filename="../ui/EditProduct.ui" line="4372"/>
         <source>Water</source>
         <translation>Water</translation>
     </message>
@@ -3269,130 +3269,130 @@
         <translation type="vanished">Water overzicht</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7232"/>
+        <location filename="../ui/EditProduct.ui" line="7255"/>
         <source>Ca</source>
         <translation>Ca</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6971"/>
+        <location filename="../ui/EditProduct.ui" line="6994"/>
         <source>Mg</source>
         <translation>Mg</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7280"/>
+        <location filename="../ui/EditProduct.ui" line="7303"/>
         <source>HCO3</source>
         <translation>HCO3</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7112"/>
+        <location filename="../ui/EditProduct.ui" line="7135"/>
         <source>CaCO3</source>
         <translation>CaCO3</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7216"/>
+        <location filename="../ui/EditProduct.ui" line="7239"/>
         <source>Na</source>
         <translation>Na</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7200"/>
+        <location filename="../ui/EditProduct.ui" line="7223"/>
         <source>Cl</source>
         <translation>Cl</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7248"/>
+        <location filename="../ui/EditProduct.ui" line="7271"/>
         <source>SO4</source>
         <translation>SO4</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6987"/>
+        <location filename="../ui/EditProduct.ui" line="7010"/>
         <location filename="../src/EditProductTab7.cpp" line="35"/>
         <source>pH</source>
         <translation>pH</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7264"/>
-        <location filename="../src/EditProductTab6.cpp" line="313"/>
+        <location filename="../ui/EditProduct.ui" line="7287"/>
+        <location filename="../src/EditProductTab6.cpp" line="329"/>
         <location filename="../src/EditProductTab7.cpp" line="35"/>
         <source>Volume</source>
         <translation>Volume</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6727"/>
+        <location filename="../ui/EditProduct.ui" line="6750"/>
         <source>The division between the main and dilution water. The total volume does not change.</source>
         <translation>De verdeling tussen het hoofd en verdunnings water. Het totale volume blijft gelijk.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4955"/>
-        <location filename="../ui/EditProduct.ui" line="6054"/>
+        <location filename="../ui/EditProduct.ui" line="4978"/>
+        <location filename="../ui/EditProduct.ui" line="6077"/>
         <source>Mash pH should be between 5.2 and 5.6. Use 5.2 for light and 5.5 for dark beers.</source>
         <translation>De maisch pH moet tussen 5.2 en 5.6 zijn. Gebruik 5.2 voor lichte en 5.5 voor donkere bieren.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6220"/>
+        <location filename="../ui/EditProduct.ui" line="6243"/>
         <source>The ideal amount of Magnesium is between 5 and 40.</source>
         <translation>De ideale hoeveelheid magnesium is tussen 5 en 40.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5985"/>
+        <location filename="../ui/EditProduct.ui" line="6008"/>
         <source>0 to 50 for light beers, 50 to 150 for amber beers, 150 to 250 for dark beers.</source>
         <translation>0 tot 50 voor licht bier, 50 tot 150 voor amber bier, 150 tot 250 voor donker bier.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6248"/>
+        <location filename="../ui/EditProduct.ui" line="6271"/>
         <source>The ideal Sulfate amount should be between 50 and 400.
 Together with Chloride it must be below 500.</source>
         <translation>De ideale sulfaat hoeveelheid is tussen 50 en 400.
 Samen met Chloride moet het minder dan 500 zijn.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6164"/>
+        <location filename="../ui/EditProduct.ui" line="6187"/>
         <source>The ideal amount of Calcium is between 40 and 150.</source>
         <translation>De ideale hoeveelheid Calcium is tussen 40 en 150.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6135"/>
+        <location filename="../ui/EditProduct.ui" line="6158"/>
         <source>The ideal Chloride amount is between 50 and 150.
 Together with Sulfate it must be below 500.</source>
         <translation>De ideale hoeveelheid Chloride is tussen 50 en 150.
 Samen met Sulfaat moet dit minder dan 500 zijn.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6082"/>
+        <location filename="../ui/EditProduct.ui" line="6105"/>
         <source>The ideal amount of Natrium should be below 150.</source>
         <translation>De ideale hoeveelheid Zout moet minder dan 150 zijn.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7296"/>
+        <location filename="../ui/EditProduct.ui" line="7319"/>
         <source>Water profile</source>
         <translation>Water profiel</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7181"/>
+        <location filename="../ui/EditProduct.ui" line="7204"/>
         <source>The main brewing water</source>
         <translation>Het hoofd brouwwater</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7187"/>
+        <location filename="../ui/EditProduct.ui" line="7210"/>
         <source>Choose water</source>
         <translation>Kies water</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6814"/>
+        <location filename="../ui/EditProduct.ui" line="6837"/>
         <source>Optional dilution water</source>
         <translation>Optioneel meng water</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6817"/>
+        <location filename="../ui/EditProduct.ui" line="6840"/>
         <source>Choose dilution</source>
         <translation>Kies mengwater</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5741"/>
+        <location filename="../ui/EditProduct.ui" line="5764"/>
         <source>If needed, choose a target water profile.</source>
         <translation>Indien nodig, kies een doel water profiel.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6330"/>
+        <location filename="../ui/EditProduct.ui" line="6353"/>
         <source>Mixed water</source>
         <translation>Gemengd water</translation>
     </message>
@@ -3401,12 +3401,12 @@
         <translation type="vanished">Behandeld water</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7015"/>
+        <location filename="../ui/EditProduct.ui" line="7038"/>
         <source>RA</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6930"/>
+        <location filename="../ui/EditProduct.ui" line="6953"/>
         <source>Hardness</source>
         <translation>Hardheid</translation>
     </message>
@@ -3436,127 +3436,127 @@
         <translation>Ververs starter stappen:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4361"/>
+        <location filename="../ui/EditProduct.ui" line="4384"/>
         <source>Water agents</source>
         <translation>Brouwzouten</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4373"/>
+        <location filename="../ui/EditProduct.ui" line="4396"/>
         <source>Calcium Chloride</source>
         <translation>Calcium Chloride</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4376"/>
+        <location filename="../ui/EditProduct.ui" line="4399"/>
         <source>CaCl2:</source>
         <translation>CaCl2:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4392"/>
+        <location filename="../ui/EditProduct.ui" line="4415"/>
         <source>Gypsym</source>
         <translation>Gips</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4395"/>
+        <location filename="../ui/EditProduct.ui" line="4418"/>
         <source>CaSO4:</source>
         <translation>CaSO4:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4411"/>
+        <location filename="../ui/EditProduct.ui" line="4434"/>
         <source>Epsom</source>
         <translation>Magmesium sulfaat</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4414"/>
+        <location filename="../ui/EditProduct.ui" line="4437"/>
         <source>MgSO4:</source>
         <translation>MgSO4:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4430"/>
+        <location filename="../ui/EditProduct.ui" line="4453"/>
         <source>Table salt</source>
         <translation>Keukenzout</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4433"/>
+        <location filename="../ui/EditProduct.ui" line="4456"/>
         <source>NaCl:</source>
         <translation>NaCl:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4449"/>
-        <location filename="../ui/EditProduct.ui" line="4633"/>
-        <location filename="../ui/EditProduct.ui" line="4853"/>
+        <location filename="../ui/EditProduct.ui" line="4472"/>
+        <location filename="../ui/EditProduct.ui" line="4656"/>
+        <location filename="../ui/EditProduct.ui" line="4876"/>
         <source>Magnesium Chloride</source>
         <translation>Magnesium Chloride</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4452"/>
+        <location filename="../ui/EditProduct.ui" line="4475"/>
         <source>MgCl2:</source>
         <translation>MgCl2:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4468"/>
-        <location filename="../ui/EditProduct.ui" line="4664"/>
+        <location filename="../ui/EditProduct.ui" line="4491"/>
+        <location filename="../ui/EditProduct.ui" line="4687"/>
         <source>Baking soda</source>
         <translation>Baksoda</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4471"/>
+        <location filename="../ui/EditProduct.ui" line="4494"/>
         <source>NaHCO3:</source>
         <translation>NaHCO3:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4487"/>
-        <location filename="../ui/EditProduct.ui" line="4695"/>
+        <location filename="../ui/EditProduct.ui" line="4510"/>
+        <location filename="../ui/EditProduct.ui" line="4718"/>
         <source>Chalk undissolved</source>
         <translation>Ongebluste kalk</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4490"/>
+        <location filename="../ui/EditProduct.ui" line="4513"/>
         <source>CaCO3:</source>
         <translation>CaCO3:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4506"/>
-        <location filename="../ui/EditProduct.ui" line="4821"/>
+        <location filename="../ui/EditProduct.ui" line="4529"/>
+        <location filename="../ui/EditProduct.ui" line="4844"/>
         <source>To change the water profile. This adds Calcium and Chloride.
 To improve sweet style beers.</source>
         <translation>Verbeterd het water profiel. Voegt Calcium en Chloride toe.
 Om de zoetheid van bier te verbeteren.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4516"/>
-        <location filename="../ui/EditProduct.ui" line="4548"/>
-        <location filename="../ui/EditProduct.ui" line="4579"/>
-        <location filename="../ui/EditProduct.ui" line="4611"/>
-        <location filename="../ui/EditProduct.ui" line="4642"/>
-        <location filename="../ui/EditProduct.ui" line="4673"/>
-        <location filename="../ui/EditProduct.ui" line="4704"/>
-        <location filename="../ui/EditProduct.ui" line="4736"/>
-        <location filename="../ui/EditProduct.ui" line="4767"/>
-        <location filename="../ui/EditProduct.ui" line="4799"/>
-        <location filename="../ui/EditProduct.ui" line="4831"/>
-        <location filename="../ui/EditProduct.ui" line="4862"/>
-        <location filename="../ui/EditProduct.ui" line="11051"/>
-        <location filename="../ui/EditProduct.ui" line="11395"/>
+        <location filename="../ui/EditProduct.ui" line="4539"/>
+        <location filename="../ui/EditProduct.ui" line="4571"/>
+        <location filename="../ui/EditProduct.ui" line="4602"/>
+        <location filename="../ui/EditProduct.ui" line="4634"/>
+        <location filename="../ui/EditProduct.ui" line="4665"/>
+        <location filename="../ui/EditProduct.ui" line="4696"/>
+        <location filename="../ui/EditProduct.ui" line="4727"/>
+        <location filename="../ui/EditProduct.ui" line="4759"/>
+        <location filename="../ui/EditProduct.ui" line="4790"/>
+        <location filename="../ui/EditProduct.ui" line="4822"/>
+        <location filename="../ui/EditProduct.ui" line="4854"/>
+        <location filename="../ui/EditProduct.ui" line="4885"/>
+        <location filename="../ui/EditProduct.ui" line="11082"/>
+        <location filename="../ui/EditProduct.ui" line="11426"/>
         <source> gr</source>
         <translation> gr</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4538"/>
-        <location filename="../ui/EditProduct.ui" line="4726"/>
+        <location filename="../ui/EditProduct.ui" line="4561"/>
+        <location filename="../ui/EditProduct.ui" line="4749"/>
         <source>Gypsum to change the water profile. This adds Calcium and Sulfate.
 To improve bitter beers.</source>
         <translation>Gips om het waterprofiel te veranderen. Dit voegt Calcium en Sulfaat toe.
 Verbeterd de beleving van bittere bieren.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4570"/>
-        <location filename="../ui/EditProduct.ui" line="4758"/>
+        <location filename="../ui/EditProduct.ui" line="4593"/>
+        <location filename="../ui/EditProduct.ui" line="4781"/>
         <source>Epsom salt to change the water profile. Use with caution!</source>
         <translation>Epsom zout om water aan te passen. Gebruik spaarzaam!</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4601"/>
-        <location filename="../ui/EditProduct.ui" line="4789"/>
+        <location filename="../ui/EditProduct.ui" line="4624"/>
+        <location filename="../ui/EditProduct.ui" line="4812"/>
         <source>Table salt to change the water profile. This adds Sodium and Chloride.
 Improves the sweetness of the beer. The beer will become salty at high doses.</source>
         <translation>Keukenzout om water aan te passen. Voegt Zout en Chloride toe.
@@ -3571,24 +3571,24 @@
         <translation type="vanished">Gewenste pH:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4913"/>
+        <location filename="../ui/EditProduct.ui" line="4936"/>
         <source>Auto calculate:</source>
         <translation>Auto bereken:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4929"/>
+        <location filename="../ui/EditProduct.ui" line="4952"/>
         <source>Acid to use:</source>
         <translation>Aanzuren met:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4995"/>
-        <location filename="../ui/EditProduct.ui" line="5134"/>
+        <location filename="../ui/EditProduct.ui" line="5018"/>
+        <location filename="../ui/EditProduct.ui" line="5157"/>
         <source>%</source>
         <translation>%</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5023"/>
-        <location filename="../ui/EditProduct.ui" line="5168"/>
+        <location filename="../ui/EditProduct.ui" line="5046"/>
+        <location filename="../ui/EditProduct.ui" line="5191"/>
         <source> ml</source>
         <translation> ml</translation>
     </message>
@@ -3609,7 +3609,7 @@
         <translation type="vanished">Water bron:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5096"/>
+        <location filename="../ui/EditProduct.ui" line="5119"/>
         <source>Acid type:</source>
         <translation>Aanzuren met:</translation>
     </message>
@@ -3622,118 +3622,118 @@
         <translation type="vanished">Benodigd:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5223"/>
+        <location filename="../ui/EditProduct.ui" line="5246"/>
         <source>Bitterness index:</source>
         <translation>Bitterheidsindex:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5275"/>
-        <location filename="../ui/EditProduct.ui" line="5343"/>
+        <location filename="../ui/EditProduct.ui" line="5298"/>
+        <location filename="../ui/EditProduct.ui" line="5366"/>
         <source>N/A</source>
         <translation>N.v.t</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5291"/>
+        <location filename="../ui/EditProduct.ui" line="5314"/>
         <source>Preffered SO4:Cl ratio:</source>
         <translation>Gewenste SO4:Cl verh:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5359"/>
+        <location filename="../ui/EditProduct.ui" line="5382"/>
         <source>Current SO4:Cl ratio:</source>
         <translation>Huidige SO4:Cl verhouding:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5416"/>
+        <location filename="../ui/EditProduct.ui" line="5439"/>
         <source>Estimate pre boil pH:</source>
         <translation>Geschat voor kook pH:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7469"/>
+        <location filename="../ui/EditProduct.ui" line="7496"/>
         <source>Brewday</source>
         <translation>Brouwdag</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7702"/>
+        <location filename="../ui/EditProduct.ui" line="7729"/>
         <source>Sparge supply:</source>
         <translation>Spoelwater voorraad:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7718"/>
+        <location filename="../ui/EditProduct.ui" line="7745"/>
         <source>Sparge estimate:</source>
         <translation>Spoelwater geschat:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7762"/>
+        <location filename="../ui/EditProduct.ui" line="7789"/>
         <source>Sparge temp:</source>
         <translation>Spoelwater temp:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9405"/>
+        <location filename="../ui/EditProduct.ui" line="9432"/>
         <source>Start density:</source>
         <translation>Begin densiteit:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9421"/>
+        <location filename="../ui/EditProduct.ui" line="9448"/>
         <source>Start temperature:</source>
         <translation>Start temperatuur:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9437"/>
+        <location filename="../ui/EditProduct.ui" line="9464"/>
         <source>Peak temperature:</source>
         <translation>Piek temperatuur:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9453"/>
-        <location filename="../ui/EditProduct.ui" line="9765"/>
+        <location filename="../ui/EditProduct.ui" line="9480"/>
+        <location filename="../ui/EditProduct.ui" line="9792"/>
         <source>End temperature:</source>
         <translation>Eind temperatuur:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9469"/>
-        <location filename="../ui/EditProduct.ui" line="9781"/>
+        <location filename="../ui/EditProduct.ui" line="9496"/>
+        <location filename="../ui/EditProduct.ui" line="9808"/>
         <source>End density:</source>
         <translation>Eind densiteit:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9485"/>
-        <location filename="../ui/EditProduct.ui" line="9797"/>
+        <location filename="../ui/EditProduct.ui" line="9512"/>
+        <location filename="../ui/EditProduct.ui" line="9824"/>
         <source>End date:</source>
         <translation>Eind datum:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9629"/>
-        <location filename="../ui/EditProduct.ui" line="9863"/>
-        <location filename="../ui/EditProduct.ui" line="10081"/>
+        <location filename="../ui/EditProduct.ui" line="9656"/>
+        <location filename="../ui/EditProduct.ui" line="9890"/>
+        <location filename="../ui/EditProduct.ui" line="10108"/>
         <source>Apparent attenuation:</source>
         <translation>Schijnbare vergisting:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9947"/>
+        <location filename="../ui/EditProduct.ui" line="9974"/>
         <source>Edit the date the secondary fermentation was done.</source>
         <translation>Wijzig de datum dat de nagisting gereed was.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9999"/>
+        <location filename="../ui/EditProduct.ui" line="10026"/>
         <source>Average temperature:</source>
         <translation>Gemiddelde temperatuur:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10015"/>
+        <location filename="../ui/EditProduct.ui" line="10042"/>
         <source>Final density:</source>
         <translation>Finale densiteit:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10145"/>
+        <location filename="../ui/EditProduct.ui" line="10172"/>
         <source>Expected end density:</source>
         <translation>Verwachte eind densiteit:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10459"/>
+        <location filename="../ui/EditProduct.ui" line="10490"/>
         <source>Extra added volume:</source>
         <translation>Toevoeging volume:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10475"/>
+        <location filename="../ui/EditProduct.ui" line="10506"/>
         <source>Extra remarks:</source>
         <translation>Toevoeging opmerking:</translation>
     </message>
@@ -3743,45 +3743,45 @@
         <translation>Finale ABV %:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10507"/>
+        <location filename="../ui/EditProduct.ui" line="10538"/>
         <source>Extra added ABV %:</source>
         <translation>Toevoeging extra ABV %:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10785"/>
+        <location filename="../ui/EditProduct.ui" line="10816"/>
         <source>Estimated final IBU:</source>
         <translation>Verwacht finale IBU:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10801"/>
+        <location filename="../ui/EditProduct.ui" line="10832"/>
         <source>Estimated final EBC:</source>
         <translation>Verwacht finale EBC:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10864"/>
-        <location filename="../ui/EditProduct.ui" line="11442"/>
+        <location filename="../ui/EditProduct.ui" line="10895"/>
+        <location filename="../ui/EditProduct.ui" line="11473"/>
         <source>Volume:</source>
         <translation>Volume:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10928"/>
-        <location filename="../ui/EditProduct.ui" line="11332"/>
+        <location filename="../ui/EditProduct.ui" line="10959"/>
+        <location filename="../ui/EditProduct.ui" line="11363"/>
         <source>Priming:</source>
         <translation>Carbonatie:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10960"/>
+        <location filename="../ui/EditProduct.ui" line="10991"/>
         <source>Bottle fermentation:</source>
         <translation>Flessen hergisting:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11079"/>
-        <location filename="../ui/EditProduct.ui" line="11495"/>
+        <location filename="../ui/EditProduct.ui" line="11110"/>
+        <location filename="../ui/EditProduct.ui" line="11526"/>
         <source> gr/L</source>
         <translation> gr/L</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11348"/>
+        <location filename="../ui/EditProduct.ui" line="11379"/>
         <source>Kegs temperature:</source>
         <translation>Fusten temperatuur:</translation>
     </message>
@@ -3790,32 +3790,32 @@
         <translation type="vanished">Brouwdag start:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7497"/>
+        <location filename="../ui/EditProduct.ui" line="7524"/>
         <source>Brewday end:</source>
         <translation>Brouwdag eind:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7513"/>
+        <location filename="../ui/EditProduct.ui" line="7540"/>
         <source>Mashing and Sparge</source>
         <translation>Maischen en Spoelen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7525"/>
+        <location filename="../ui/EditProduct.ui" line="7552"/>
         <source>Mash pH:</source>
         <translation>Maisch pH:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7654"/>
+        <location filename="../ui/EditProduct.ui" line="7681"/>
         <source>Mash SG:</source>
         <translation>Maisch SG:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7670"/>
+        <location filename="../ui/EditProduct.ui" line="7697"/>
         <source>Mash efficiency:</source>
         <translation>Maisch rendement:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7686"/>
+        <location filename="../ui/EditProduct.ui" line="7713"/>
         <source>Sparge water pH:</source>
         <translation>Spoelwater pH:</translation>
     </message>
@@ -3848,94 +3848,94 @@
         <translation type="vanished">Voor koken rendement:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8111"/>
-        <location filename="../ui/EditProduct.ui" line="8150"/>
-        <location filename="../ui/EditProduct.ui" line="9072"/>
-        <location filename="../ui/EditProduct.ui" line="9146"/>
+        <location filename="../ui/EditProduct.ui" line="8138"/>
+        <location filename="../ui/EditProduct.ui" line="8177"/>
+        <location filename="../ui/EditProduct.ui" line="9099"/>
+        <location filename="../ui/EditProduct.ui" line="9173"/>
         <source>Edit volume</source>
         <translation>Wijzig volume</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8215"/>
+        <location filename="../ui/EditProduct.ui" line="8242"/>
         <source>Whirlpool cold:</source>
         <translation>Whirlpool koud:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8648"/>
+        <location filename="../ui/EditProduct.ui" line="8675"/>
         <source>Aeration time &amp; speed:</source>
         <translation>Beluchten tijd snelheid:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8779"/>
+        <location filename="../ui/EditProduct.ui" line="8806"/>
         <source>Cooling method:</source>
         <translation>Koelen methode:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8867"/>
+        <location filename="../ui/EditProduct.ui" line="8894"/>
         <source>Cooling time:</source>
         <translation>Koelen tijd:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8360"/>
+        <location filename="../ui/EditProduct.ui" line="8387"/>
         <source>Transfer to fermenter</source>
         <translation>Naar gistvat</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7481"/>
+        <location filename="../ui/EditProduct.ui" line="7508"/>
         <source>Brewday plan:</source>
         <translation>Brouwdag plan:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7840"/>
-        <location filename="../ui/EditProduct.ui" line="8817"/>
-        <location filename="../ui/EditProduct.ui" line="9529"/>
-        <location filename="../ui/EditProduct.ui" line="9557"/>
-        <location filename="../ui/EditProduct.ui" line="9585"/>
-        <location filename="../ui/EditProduct.ui" line="9819"/>
-        <location filename="../ui/EditProduct.ui" line="10037"/>
-        <location filename="../ui/EditProduct.ui" line="11164"/>
-        <location filename="../ui/EditProduct.ui" line="11614"/>
+        <location filename="../ui/EditProduct.ui" line="7867"/>
+        <location filename="../ui/EditProduct.ui" line="8844"/>
+        <location filename="../ui/EditProduct.ui" line="9556"/>
+        <location filename="../ui/EditProduct.ui" line="9584"/>
+        <location filename="../ui/EditProduct.ui" line="9612"/>
+        <location filename="../ui/EditProduct.ui" line="9846"/>
+        <location filename="../ui/EditProduct.ui" line="10064"/>
+        <location filename="../ui/EditProduct.ui" line="11195"/>
+        <location filename="../ui/EditProduct.ui" line="11645"/>
         <source> °C</source>
         <translation> °C</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7882"/>
+        <location filename="../ui/EditProduct.ui" line="7909"/>
         <source>Pre boil</source>
         <translation>Begin koken</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7926"/>
-        <location filename="../ui/EditProduct.ui" line="9108"/>
+        <location filename="../ui/EditProduct.ui" line="7953"/>
+        <location filename="../ui/EditProduct.ui" line="9135"/>
         <source>Volume @100°C:</source>
         <translation>Volume @100°C:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8024"/>
+        <location filename="../ui/EditProduct.ui" line="8051"/>
         <source>Mash, sparge and lauter efficiency.</source>
         <translation>Maischen, spoelen en filteren rendement.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8171"/>
+        <location filename="../ui/EditProduct.ui" line="8198"/>
         <source>Whirlpools</source>
         <translation>Whirlpoolen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8183"/>
+        <location filename="../ui/EditProduct.ui" line="8210"/>
         <source>Whirlpool 72..79°C:</source>
         <translation>Whirlpool 72..79°C:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8199"/>
+        <location filename="../ui/EditProduct.ui" line="8226"/>
         <source>Whirlpool 60..66°C:</source>
         <translation>Whirlpool 60..66°C:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8231"/>
+        <location filename="../ui/EditProduct.ui" line="8258"/>
         <source>Whirlpool 85..100°C:</source>
         <translation>Whirlpool 85..100°C:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8372"/>
+        <location filename="../ui/EditProduct.ui" line="8399"/>
         <source>Volume to fermenter:</source>
         <translation>Volume naar gistvat:</translation>
     </message>
@@ -3944,17 +3944,17 @@
         <translation type="vanished">Trub en koeler verlies:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8510"/>
+        <location filename="../ui/EditProduct.ui" line="8537"/>
         <source>SG in fermenter:</source>
         <translation>SG in gistvat:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8526"/>
+        <location filename="../ui/EditProduct.ui" line="8553"/>
         <source>EBC color in fermenter:</source>
         <translation>EBC kleur in gistvat:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8542"/>
+        <location filename="../ui/EditProduct.ui" line="8569"/>
         <source>IBU in fermenter:</source>
         <translation>IBU in het gistvat:</translation>
     </message>
@@ -3963,7 +3963,7 @@
         <translation type="vanished">Beluchten</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8702"/>
+        <location filename="../ui/EditProduct.ui" line="8729"/>
         <source>Aeration with:</source>
         <translation>Beluchten met:</translation>
     </message>
@@ -3976,177 +3976,177 @@
         <translation type="vanished">Beluchten snelheid:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8670"/>
+        <location filename="../ui/EditProduct.ui" line="8697"/>
         <source> L/m</source>
         <translation> L/m</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8747"/>
-        <location filename="../ui/EditProduct.ui" line="10260"/>
-        <location filename="../ui/EditProduct.ui" line="10280"/>
-        <location filename="../ui/EditProduct.ui" line="11702"/>
+        <location filename="../ui/EditProduct.ui" line="8774"/>
+        <location filename="../ui/EditProduct.ui" line="10287"/>
+        <location filename="../ui/EditProduct.ui" line="10307"/>
+        <location filename="../ui/EditProduct.ui" line="11733"/>
         <source>Brew log chart</source>
         <translation>Brouw log grafiek</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8767"/>
+        <location filename="../ui/EditProduct.ui" line="8794"/>
         <source>Cooling</source>
         <translation>Koelen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8795"/>
+        <location filename="../ui/EditProduct.ui" line="8822"/>
         <source>Cooling to:</source>
         <translation>Koelen tot:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8897"/>
+        <location filename="../ui/EditProduct.ui" line="8924"/>
         <location filename="../src/EditProductExport.cpp" line="805"/>
         <source>After boil</source>
         <translation>Einde koken</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9041"/>
+        <location filename="../ui/EditProduct.ui" line="9068"/>
         <source>The overall efficiency.</source>
         <translation>Het totale brouwzaal rendement.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9187"/>
+        <location filename="../ui/EditProduct.ui" line="9214"/>
         <source>Edit the brewdate plan or start.</source>
         <translation>Wijzig de brouwdag plan of start datum.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9206"/>
+        <location filename="../ui/EditProduct.ui" line="9233"/>
         <source>Clear planned brewdate</source>
         <translation>Wis geplande brouwdag</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9226"/>
+        <location filename="../ui/EditProduct.ui" line="9253"/>
         <source>Edit the brewdate start time.</source>
         <translation>Wijzig de brouwdag start tijd.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9229"/>
-        <location filename="../ui/EditProduct.ui" line="9264"/>
+        <location filename="../ui/EditProduct.ui" line="9256"/>
+        <location filename="../ui/EditProduct.ui" line="9291"/>
         <source>hh:mm</source>
         <translation>hh:mm</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9242"/>
+        <location filename="../ui/EditProduct.ui" line="9269"/>
         <source>Edit the brewdate end.</source>
         <translation>Wijzig de brouwdag eind datum.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9261"/>
+        <location filename="../ui/EditProduct.ui" line="9288"/>
         <source>Edit the brewdate end time.</source>
         <translation>Wijzig de brouwdag eind tijd.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9277"/>
+        <location filename="../ui/EditProduct.ui" line="9304"/>
         <source>Set the brewdate end date.</source>
         <translation>Zet de brouwdag eind datum.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9297"/>
+        <location filename="../ui/EditProduct.ui" line="9324"/>
         <source>End time:</source>
         <translation>Eind tijd:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9313"/>
+        <location filename="../ui/EditProduct.ui" line="9340"/>
         <source>Start time:</source>
         <translation>Start tijd:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9329"/>
+        <location filename="../ui/EditProduct.ui" line="9356"/>
         <source>Show brewlog:</source>
         <translation>Toon brouwlog:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9348"/>
+        <location filename="../ui/EditProduct.ui" line="9375"/>
         <source>Confirm brew done:</source>
         <translation>Bevestig brouwdag:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9364"/>
-        <location filename="../ui/EditProduct.ui" line="9732"/>
-        <location filename="../ui/EditProduct.ui" line="9966"/>
+        <location filename="../ui/EditProduct.ui" line="9391"/>
+        <location filename="../ui/EditProduct.ui" line="9759"/>
+        <location filename="../ui/EditProduct.ui" line="9993"/>
         <source>Confirm the brew dates and times.</source>
         <translation>Bevestig de brouw datums en tijden.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9381"/>
+        <location filename="../ui/EditProduct.ui" line="9408"/>
         <source>Fermenting</source>
         <translation>Vergisten</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9393"/>
+        <location filename="../ui/EditProduct.ui" line="9420"/>
         <source>Primary fermentation</source>
         <translation>Hoofdvergisting</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9673"/>
-        <location filename="../ui/EditProduct.ui" line="9907"/>
-        <location filename="../ui/EditProduct.ui" line="10125"/>
+        <location filename="../ui/EditProduct.ui" line="9700"/>
+        <location filename="../ui/EditProduct.ui" line="9934"/>
+        <location filename="../ui/EditProduct.ui" line="10152"/>
         <source>Edit SG in Plato, Brix or SG</source>
         <translation>Wijzig SG in Plato, Brix of SG</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9693"/>
-        <location filename="../ui/EditProduct.ui" line="9927"/>
+        <location filename="../ui/EditProduct.ui" line="9720"/>
+        <location filename="../ui/EditProduct.ui" line="9954"/>
         <source>Set the date to today</source>
         <translation>Zet de datum op vandaag</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9713"/>
+        <location filename="../ui/EditProduct.ui" line="9740"/>
         <source>Edit the date the primary fermentation was done.</source>
         <translation>Wijzig de datum dat de hoofdgisting gereed was.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9753"/>
+        <location filename="../ui/EditProduct.ui" line="9780"/>
         <source>Secondary fermentation</source>
         <translation>Nagisting</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9987"/>
+        <location filename="../ui/EditProduct.ui" line="10014"/>
         <source>Tertiary fermentation</source>
         <translation>Lageren</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10183"/>
+        <location filename="../ui/EditProduct.ui" line="10210"/>
         <source>Alcohol volume:</source>
         <translation>Alcohol vol%:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10228"/>
+        <location filename="../ui/EditProduct.ui" line="10255"/>
         <source>Show fermenter unit log:</source>
         <translation>Toon gistkast log:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10244"/>
+        <location filename="../ui/EditProduct.ui" line="10271"/>
         <source>Show fermentation log:</source>
         <translation>Toon vergisting log:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10293"/>
+        <location filename="../ui/EditProduct.ui" line="10324"/>
         <source>Package</source>
         <translation>Verpakken</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10305"/>
+        <location filename="../ui/EditProduct.ui" line="10336"/>
         <source>Package date:</source>
         <translation>Verpakken datum:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10378"/>
+        <location filename="../ui/EditProduct.ui" line="10409"/>
         <source>Carbonation range:</source>
         <translation>Koolzuur volumes:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10431"/>
+        <location filename="../ui/EditProduct.ui" line="10462"/>
         <source>Infusion or Dilution</source>
         <translation>Infusie of verdunnen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10443"/>
+        <location filename="../ui/EditProduct.ui" line="10474"/>
         <source>Package volume:</source>
         <translation>Verpakken volume:</translation>
     </message>
@@ -4156,7 +4156,7 @@
         <translation>Verpakken ABV %:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10523"/>
+        <location filename="../ui/EditProduct.ui" line="10554"/>
         <source>pH from fermenter:</source>
         <translation>pH vanuit gistvat:</translation>
     </message>
@@ -4261,7 +4261,7 @@
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="2424"/>
-        <location filename="../ui/EditProduct.ui" line="8388"/>
+        <location filename="../ui/EditProduct.ui" line="8415"/>
         <source>Kettle trub loss:</source>
         <translation>Kookketel trub verlies:</translation>
     </message>
@@ -4300,239 +4300,249 @@
         <translation>Schijnbare vergisting:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3732"/>
+        <location filename="../ui/EditProduct.ui" line="3730"/>
+        <source>Yeast starter calculation.</source>
+        <translation>Giststarter berekening.</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="3755"/>
         <source>Dry yeast calculation.</source>
         <translation>Droge gist berekening.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4885"/>
+        <location filename="../ui/EditProduct.ui" line="4908"/>
         <source>Acid Additions</source>
         <translation>Zuur toevoegingen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4897"/>
+        <location filename="../ui/EditProduct.ui" line="4920"/>
         <source>Desired mash pH:</source>
         <translation>Gewenst maisch pH:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5055"/>
+        <location filename="../ui/EditProduct.ui" line="5078"/>
         <source>Desired sparge pH:</source>
         <translation>Gewenst spoel pH:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5190"/>
-        <location filename="../ui/EditProduct.ui" line="5206"/>
+        <location filename="../ui/EditProduct.ui" line="5213"/>
+        <location filename="../ui/EditProduct.ui" line="5229"/>
         <source>Acid amount:</source>
         <translation>Zuur hoeveelheid:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5660"/>
+        <location filename="../ui/EditProduct.ui" line="5683"/>
         <source>The total prepared amount of sparge water</source>
         <translation>De totale voorraad spoelwater</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5744"/>
+        <location filename="../ui/EditProduct.ui" line="5767"/>
         <source>Choose example water</source>
         <translation>Kies voorbeeld water</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6038"/>
+        <location filename="../ui/EditProduct.ui" line="6061"/>
         <source>Treated mash water</source>
         <translation>Behandeld maisch water</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7387"/>
+        <location filename="../ui/EditProduct.ui" line="7410"/>
         <source>Sparge water source 1</source>
         <translation>Spoelwater bron 1</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7409"/>
+        <location filename="../ui/EditProduct.ui" line="7432"/>
         <source>Sparge water source 2</source>
         <translation>Spoelwater bron 2</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7428"/>
+        <location filename="../ui/EditProduct.ui" line="7451"/>
         <source>Sparge water mixed</source>
         <translation>Gemengd spoelwater</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7444"/>
+        <location filename="../ui/EditProduct.ui" line="7467"/>
         <location filename="../src/EditProductTab5.cpp" line="723"/>
         <source>Sparge</source>
         <translation>Spoel</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7460"/>
+        <location filename="../ui/EditProduct.ui" line="7483"/>
         <source>Treated sparge water</source>
         <translation>Behandeld spoelwater</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10491"/>
+        <location filename="../ui/EditProduct.ui" line="10522"/>
         <source>Estimated final ABV %:</source>
         <translation>Verwacht finale ABV %:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10567"/>
-        <source>Extra dilution or infusion added to this batch.</source>
-        <translation>Toegevoegde verdunning of infusie aan deze batch.</translation>
-    </message>
-    <message>
         <location filename="../ui/EditProduct.ui" line="10598"/>
-        <location filename="../ui/EditProduct.ui" line="10720"/>
-        <source>The ABV including the infusion.</source>
-        <translation>Het ABV inclusief infusie.</translation>
+        <source>Extra dilution or infusion added to this batch.</source>
+        <translation>Toegevoegde verdunning of infusie aan deze batch.</translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="10629"/>
+        <location filename="../ui/EditProduct.ui" line="10751"/>
+        <source>The ABV including the infusion.</source>
+        <translation>Het ABV inclusief infusie.</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="10660"/>
         <source>If there is alcohol in the infusion, give the percentage.</source>
         <translation>Als er alcohol in de infusie zit, geef hier het percentage.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10688"/>
+        <location filename="../ui/EditProduct.ui" line="10719"/>
         <source>Could be the description of the infusion.</source>
         <translation>Hier kun je de toevoeging beschrijven.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10704"/>
+        <location filename="../ui/EditProduct.ui" line="10735"/>
         <source>Estimated package ABV %:</source>
         <translation>Verwacht verpakken ABV %:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10852"/>
+        <location filename="../ui/EditProduct.ui" line="10883"/>
         <source>Bottles</source>
         <translation>Flessen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10880"/>
-        <location filename="../ui/EditProduct.ui" line="11300"/>
+        <location filename="../ui/EditProduct.ui" line="10911"/>
+        <location filename="../ui/EditProduct.ui" line="11331"/>
         <source>Desired volume CO2:</source>
         <translation>Gewenst volume CO2:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10896"/>
-        <location filename="../ui/EditProduct.ui" line="11367"/>
+        <location filename="../ui/EditProduct.ui" line="10927"/>
+        <location filename="../ui/EditProduct.ui" line="11398"/>
         <source>Priming sugar:</source>
         <translation>Carbonatie suiker:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10912"/>
-        <location filename="../ui/EditProduct.ui" line="11284"/>
+        <location filename="../ui/EditProduct.ui" line="10943"/>
+        <location filename="../ui/EditProduct.ui" line="11315"/>
         <source>Sugar amount:</source>
         <translation>Suiker gewicht:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10944"/>
-        <location filename="../ui/EditProduct.ui" line="11316"/>
+        <location filename="../ui/EditProduct.ui" line="10975"/>
+        <location filename="../ui/EditProduct.ui" line="11347"/>
         <source>Water amount:</source>
         <translation>Water volume:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11126"/>
+        <location filename="../ui/EditProduct.ui" line="11157"/>
         <source>Expected pressure in bar:</source>
         <translation>Verwachte druk in bar:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11142"/>
+        <location filename="../ui/EditProduct.ui" line="11173"/>
         <source>Bottles ABV %:</source>
         <translation>Flessen ABV %:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11240"/>
+        <location filename="../ui/EditProduct.ui" line="11271"/>
         <source>Kegs</source>
         <translation>Fusten</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11252"/>
+        <location filename="../ui/EditProduct.ui" line="11283"/>
         <source>Kegs ABV %:</source>
         <translation>Fusten ABV %:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11268"/>
+        <location filename="../ui/EditProduct.ui" line="11299"/>
         <source>Kegs pressure in bar:</source>
         <translation>Fusten druk in bar:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11636"/>
+        <location filename="../ui/EditProduct.ui" line="11667"/>
         <source>Forced carbonation:</source>
         <translation>Geforceerde carbonatie:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11663"/>
+        <location filename="../ui/EditProduct.ui" line="11694"/>
         <source>Edit the package date.</source>
         <translation>Wijzig de verpakkings datum.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11722"/>
+        <location filename="../ui/EditProduct.ui" line="11753"/>
         <source>Show carbonation log:</source>
         <translation>Toon carbonatie log:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11731"/>
+        <location filename="../ui/EditProduct.ui" line="11766"/>
         <source>Tasting</source>
         <translation>Proeven</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11743"/>
+        <location filename="../ui/EditProduct.ui" line="11778"/>
         <source>Taste date:</source>
         <translation>Proeven datum:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11779"/>
+        <location filename="../ui/EditProduct.ui" line="11814"/>
         <source>Taste rate:</source>
         <translation>Beoordeling cijfer:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11820"/>
+        <location filename="../ui/EditProduct.ui" line="11855"/>
         <source>Color:</source>
         <translation>Kleur:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11836"/>
+        <location filename="../ui/EditProduct.ui" line="11871"/>
         <source>Transparency:</source>
         <translation>Helderheid:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11852"/>
+        <location filename="../ui/EditProduct.ui" line="11887"/>
         <source>Head:</source>
         <translation>Schuim:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11907"/>
+        <location filename="../ui/EditProduct.ui" line="11942"/>
         <source>Aroma:</source>
         <translation>Geur:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11936"/>
+        <location filename="../ui/EditProduct.ui" line="11971"/>
         <source>Taste:</source>
         <translation>Smaak:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11965"/>
+        <location filename="../ui/EditProduct.ui" line="12000"/>
         <source>Aftertaste:</source>
         <translation>Nasmaak:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11994"/>
+        <location filename="../ui/EditProduct.ui" line="12029"/>
         <source>Mouthfeel:</source>
         <translation>Mondgevoel:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="12023"/>
+        <location filename="../ui/EditProduct.ui" line="12058"/>
         <source>Notes:</source>
         <translation>Opmerkingen:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="12049"/>
+        <location filename="../ui/EditProduct.ui" line="12084"/>
         <source>Edit the tasting date.</source>
         <translation>Wijzig de datum van proeven.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="12090"/>
+        <location filename="../ui/EditProduct.ui" line="12120"/>
+        <source>Images</source>
+        <translation>Plaatjes</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="12144"/>
         <source>Export</source>
         <translation>Exporteer</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="12107"/>
+        <location filename="../ui/EditProduct.ui" line="12161"/>
         <source>Print</source>
         <translation>Print</translation>
     </message>
@@ -4552,7 +4562,7 @@
         <translation>Mout</translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="813"/>
+        <location filename="../src/EditProduct.cpp" line="816"/>
         <source>BMSapp - Edit %1 - %2</source>
         <translation>BMSapp - Wijzig %1 - %2</translation>
     </message>
@@ -4617,7 +4627,7 @@
         <translation type="vanished">Koken %1 minuten</translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="811"/>
+        <location filename="../src/EditProduct.cpp" line="814"/>
         <source>BMSapp - Add new product</source>
         <translation>BMSapp - Nieuw product</translation>
     </message>
@@ -4626,18 +4636,18 @@
         <translation type="vanished">BMSapp - Wijzig product %1</translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="829"/>
-        <location filename="../src/EditProduct.cpp" line="833"/>
+        <location filename="../src/EditProduct.cpp" line="832"/>
+        <location filename="../src/EditProduct.cpp" line="836"/>
         <source>Edit Product</source>
         <translation>Wijzig Product</translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="829"/>
+        <location filename="../src/EditProduct.cpp" line="832"/>
         <source>Name empty or too short.</source>
         <translation>De naam is leeg of te kort.</translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="833"/>
+        <location filename="../src/EditProduct.cpp" line="836"/>
         <source>No beerstyle selected.</source>
         <translation>Geen bierstijl gekozen.</translation>
     </message>
@@ -4650,17 +4660,17 @@
 %3</translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="871"/>
+        <location filename="../src/EditProduct.cpp" line="875"/>
         <source>Delete product</source>
         <translation>Verwijder product</translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="895"/>
+        <location filename="../src/EditProduct.cpp" line="899"/>
         <source>Product changed</source>
         <translation>Product gewijzigd</translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="895"/>
+        <location filename="../src/EditProduct.cpp" line="899"/>
         <source>The product has been modified. Save changes?</source>
         <translation>Het product is gewijzigd. Wijzigingen opslaan?</translation>
     </message>
@@ -4737,7 +4747,7 @@
         <location filename="../src/EditProductTab5.cpp" line="75"/>
         <location filename="../src/EditProductTab5.cpp" line="176"/>
         <location filename="../src/EditProductTab6.cpp" line="55"/>
-        <location filename="../src/EditProductTab6.cpp" line="153"/>
+        <location filename="../src/EditProductTab6.cpp" line="169"/>
         <source>Edit</source>
         <translation>Wijzig</translation>
     </message>
@@ -4795,9 +4805,9 @@
         <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="880"/>
+        <location filename="../src/EditProductTab6.cpp" line="896"/>
         <location filename="../src/EditProductTab7.cpp" line="306"/>
-        <location filename="../src/EditProduct.cpp" line="871"/>
+        <location filename="../src/EditProduct.cpp" line="875"/>
         <source>Delete %1</source>
         <translation>Verwijder %1</translation>
     </message>
@@ -4830,7 +4840,7 @@
     <message>
         <location filename="../src/EditProductTab3.cpp" line="1073"/>
         <location filename="../src/EditProductTab4.cpp" line="633"/>
-        <location filename="../src/EditProductTab6.cpp" line="1179"/>
+        <location filename="../src/EditProductTab6.cpp" line="1195"/>
         <source>Use at:</source>
         <translation>Toevoegen bij:</translation>
     </message>
@@ -4844,7 +4854,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="1164"/>
+        <location filename="../src/EditProductTab6.cpp" line="1180"/>
         <source>In stock:</source>
         <translation>In voorraad:</translation>
     </message>
@@ -4986,8 +4996,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="1012"/>
-        <location filename="../src/EditProductTab6.cpp" line="1172"/>
+        <location filename="../src/EditProductTab6.cpp" line="1028"/>
+        <location filename="../src/EditProductTab6.cpp" line="1188"/>
         <source>Amount in gr:</source>
         <translation>Gewicht in gr:</translation>
     </message>
@@ -5045,8 +5055,8 @@
     <message>
         <location filename="../src/EditProductTab5.cpp" line="528"/>
         <location filename="../src/EditProductTab5.cpp" line="652"/>
-        <location filename="../src/EditProductTab6.cpp" line="1019"/>
-        <location filename="../src/EditProductTab6.cpp" line="1174"/>
+        <location filename="../src/EditProductTab6.cpp" line="1035"/>
+        <location filename="../src/EditProductTab6.cpp" line="1190"/>
         <source>Amount in ml:</source>
         <translation>Hoeveelheid in ml:</translation>
     </message>
@@ -5057,13 +5067,13 @@
     </message>
     <message>
         <location filename="../src/EditProductTab5.cpp" line="720"/>
-        <location filename="../src/EditProductTab6.cpp" line="1228"/>
+        <location filename="../src/EditProductTab6.cpp" line="1244"/>
         <source>Primary</source>
         <translation>Hoofdgisting</translation>
     </message>
     <message>
         <location filename="../src/EditProductTab5.cpp" line="721"/>
-        <location filename="../src/EditProductTab6.cpp" line="1229"/>
+        <location filename="../src/EditProductTab6.cpp" line="1245"/>
         <source>Secondary</source>
         <translation>Nagisting/lagering</translation>
     </message>
@@ -5113,140 +5123,145 @@
         <translation></translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="132"/>
-        <location filename="../src/EditProductTab6.cpp" line="136"/>
+        <location filename="../src/EditProductTab6.cpp" line="55"/>
+        <source>STA</source>
+        <translation>STA</translation>
+    </message>
+    <message>
+        <location filename="../src/EditProductTab6.cpp" line="148"/>
+        <location filename="../src/EditProductTab6.cpp" line="152"/>
         <source>Yeast already used</source>
         <translation>Gist is al verwerkt</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="313"/>
+        <location filename="../src/EditProductTab6.cpp" line="329"/>
         <source>Method</source>
         <translation>Methode</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="313"/>
+        <location filename="../src/EditProductTab6.cpp" line="329"/>
         <source>Inj. factor</source>
         <translation>Injectie</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="313"/>
+        <location filename="../src/EditProductTab6.cpp" line="329"/>
         <source>New cells</source>
         <translation>Celgroei</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="313"/>
+        <location filename="../src/EditProductTab6.cpp" line="329"/>
         <source>Total cells</source>
         <translation>Totaal</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="313"/>
+        <location filename="../src/EditProductTab6.cpp" line="329"/>
         <source>Grow factor</source>
         <translation>Groeifactor</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="692"/>
+        <location filename="../src/EditProductTab6.cpp" line="708"/>
         <source>BMSapp - Pitchrate</source>
         <translation>BMSapp - Gist enten</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="704"/>
+        <location filename="../src/EditProductTab6.cpp" line="720"/>
         <source>Beer pitch type:</source>
         <translation>Biergist nodig:</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="712"/>
+        <location filename="../src/EditProductTab6.cpp" line="728"/>
         <source>0.075 Real Kveik</source>
         <translation>0,075 Echte Kveik</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="713"/>
+        <location filename="../src/EditProductTab6.cpp" line="729"/>
         <source>0.75  Ale, upto 1.060</source>
         <translation>0,75  Bovengist tot 1.060</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="714"/>
+        <location filename="../src/EditProductTab6.cpp" line="730"/>
         <source>1.0   Ale, above 1.060</source>
         <translation>1,0   Bovengist hoger 1.060</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="715"/>
+        <location filename="../src/EditProductTab6.cpp" line="731"/>
         <source>1.5   Lager, upto 1.060</source>
         <translation>1,5   Ondergist tot 1.060</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="716"/>
+        <location filename="../src/EditProductTab6.cpp" line="732"/>
         <source>2.0   Lager, above 1.060</source>
         <translation>2,0   Ondergist hoger 1.060</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="747"/>
+        <location filename="../src/EditProductTab6.cpp" line="763"/>
         <source>Retry starter</source>
         <translation>Ververs starter</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="747"/>
+        <location filename="../src/EditProductTab6.cpp" line="763"/>
         <source>Retry to automatic create starter steps</source>
         <translation>Ververs de starter stappen automatisch</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="781"/>
+        <location filename="../src/EditProductTab6.cpp" line="797"/>
         <source>Start step type:</source>
         <translation>Starter stap type:</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="786"/>
+        <location filename="../src/EditProductTab6.cpp" line="802"/>
         <source>Starter step volume:</source>
         <translation>Starter stap volume:</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="793"/>
+        <location filename="../src/EditProductTab6.cpp" line="809"/>
         <source>Stirred</source>
         <translation>Geroerd</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="794"/>
+        <location filename="../src/EditProductTab6.cpp" line="810"/>
         <source>Shaken</source>
         <translation>Geschud</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="795"/>
+        <location filename="../src/EditProductTab6.cpp" line="811"/>
         <source>Simple</source>
         <translation>Simpel</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="880"/>
+        <location filename="../src/EditProductTab6.cpp" line="896"/>
         <source>Delete yeast</source>
         <translation>Verwijder gist</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1005"/>
-        <location filename="../src/EditProductTab6.cpp" line="1170"/>
+        <location filename="../src/EditProductTab6.cpp" line="1021"/>
+        <location filename="../src/EditProductTab6.cpp" line="1186"/>
         <source>Total packs:</source>
         <translation>Aantal pakken:</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1144"/>
+        <location filename="../src/EditProductTab6.cpp" line="1160"/>
         <source>Yeast name:</source>
         <translation>Gist naam:</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1149"/>
-        <location filename="../src/EditProductTab6.cpp" line="1154"/>
+        <location filename="../src/EditProductTab6.cpp" line="1165"/>
+        <location filename="../src/EditProductTab6.cpp" line="1170"/>
         <source>Laboratory:</source>
         <translation>Laboratorium:</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1159"/>
+        <location filename="../src/EditProductTab6.cpp" line="1175"/>
         <source>Select yeast:</source>
         <translation>Kies gist:</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1230"/>
+        <location filename="../src/EditProductTab6.cpp" line="1246"/>
         <source>Tertiary</source>
         <translation>Lageren</translation>
     </message>
     <message>
-        <location filename="../src/EditProductTab6.cpp" line="1231"/>
+        <location filename="../src/EditProductTab6.cpp" line="1247"/>
         <source>Bottle</source>
         <translation>Bottelen</translation>
     </message>
@@ -5341,8 +5356,8 @@
         <translation>Verwarm tijd:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7894"/>
-        <location filename="../ui/EditProduct.ui" line="9025"/>
+        <location filename="../ui/EditProduct.ui" line="7921"/>
+        <location filename="../ui/EditProduct.ui" line="9052"/>
         <location filename="../src/EditProductTab7.cpp" line="635"/>
         <source>Measured pH:</source>
         <translation>Gemeten pH:</translation>
@@ -5353,8 +5368,8 @@
         <translation>Gemeten Brix:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7910"/>
-        <location filename="../ui/EditProduct.ui" line="9092"/>
+        <location filename="../ui/EditProduct.ui" line="7937"/>
+        <location filename="../ui/EditProduct.ui" line="9119"/>
         <location filename="../src/EditProductTab7.cpp" line="667"/>
         <source>Measured SG:</source>
         <translation>Gemeten SG:</translation>
@@ -9054,32 +9069,32 @@
 <context>
     <name>FermentableAdded</name>
     <message>
-        <location filename="../src/global.cpp" line="108"/>
+        <location filename="../src/global.cpp" line="118"/>
         <source>Mash</source>
         <translation>Maischen</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="109"/>
+        <location filename="../src/global.cpp" line="119"/>
         <source>Boil</source>
         <translation>Koken</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="110"/>
+        <location filename="../src/global.cpp" line="120"/>
         <source>Fermentation</source>
         <translation>Hoofdvergisting</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="111"/>
+        <location filename="../src/global.cpp" line="121"/>
         <source>Lagering</source>
         <translation>Nagisting/lagering</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="112"/>
+        <location filename="../src/global.cpp" line="122"/>
         <source>Bottle</source>
         <translation>Bottelen</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="113"/>
+        <location filename="../src/global.cpp" line="123"/>
         <source>Kegs</source>
         <translation>Fusten</translation>
     </message>
@@ -9087,37 +9102,37 @@
 <context>
     <name>FermentableGraintype</name>
     <message>
-        <location filename="../src/global.cpp" line="98"/>
+        <location filename="../src/global.cpp" line="108"/>
         <source>Base</source>
         <translation>Basismout</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="99"/>
+        <location filename="../src/global.cpp" line="109"/>
         <source>Roast</source>
         <translation>Geroosterde mout</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="100"/>
+        <location filename="../src/global.cpp" line="110"/>
         <source>Crystal</source>
         <translation>Cara/crystal mout</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="101"/>
+        <location filename="../src/global.cpp" line="111"/>
         <source>Kilned</source>
         <translation>Geëeste mout</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="102"/>
+        <location filename="../src/global.cpp" line="112"/>
         <source>Sour Malt</source>
         <translation>Zuurmout</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="103"/>
+        <location filename="../src/global.cpp" line="113"/>
         <source>Special</source>
         <translation>Speciale mout</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="104"/>
+        <location filename="../src/global.cpp" line="114"/>
         <source>No malt</source>
         <translation>Geen mout</translation>
     </message>
@@ -9125,27 +9140,27 @@
 <context>
     <name>FermentableType</name>
     <message>
-        <location filename="../src/global.cpp" line="90"/>
+        <location filename="../src/global.cpp" line="100"/>
         <source>Grain</source>
         <translation>Mout</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="91"/>
+        <location filename="../src/global.cpp" line="101"/>
         <source>Sugar</source>
         <translation>Suiker</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="92"/>
+        <location filename="../src/global.cpp" line="102"/>
         <source>Extract</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="93"/>
+        <location filename="../src/global.cpp" line="103"/>
         <source>Dry extract</source>
         <translation>Droog extract</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="94"/>
+        <location filename="../src/global.cpp" line="104"/>
         <source>Adjunct</source>
         <translation>Ongemout graan</translation>
     </message>
@@ -9153,37 +9168,37 @@
 <context>
     <name>HopForm</name>
     <message>
-        <location filename="../src/global.cpp" line="123"/>
+        <location filename="../src/global.cpp" line="133"/>
         <source>Pellet</source>
         <translation>Pellets</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="124"/>
+        <location filename="../src/global.cpp" line="134"/>
         <source>Plug</source>
         <translation>Plugs</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="125"/>
+        <location filename="../src/global.cpp" line="135"/>
         <source>Leaf</source>
         <translation>Bloemen</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="126"/>
+        <location filename="../src/global.cpp" line="136"/>
         <source>Leaf wet</source>
         <translation>Nat, vers</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="127"/>
+        <location filename="../src/global.cpp" line="137"/>
         <source>Cryo</source>
         <translation>Cryo hop</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="128"/>
+        <location filename="../src/global.cpp" line="138"/>
         <source>CO2 extract</source>
         <translation>CO2 extract</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="129"/>
+        <location filename="../src/global.cpp" line="139"/>
         <source>Iso extract</source>
         <translation>Iso extract</translation>
     </message>
@@ -9218,17 +9233,17 @@
 <context>
     <name>HopTypes</name>
     <message>
-        <location filename="../src/global.cpp" line="117"/>
+        <location filename="../src/global.cpp" line="127"/>
         <source>Bittering</source>
         <translation>Bitterhop</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="118"/>
+        <location filename="../src/global.cpp" line="128"/>
         <source>Aroma</source>
         <translation>Aromahop</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="119"/>
+        <location filename="../src/global.cpp" line="129"/>
         <source>Both</source>
         <translation>Beide</translation>
     </message>
@@ -9236,37 +9251,37 @@
 <context>
     <name>HopUse</name>
     <message>
-        <location filename="../src/global.cpp" line="133"/>
+        <location filename="../src/global.cpp" line="143"/>
         <source>Mash</source>
         <translation>Maischen</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="134"/>
+        <location filename="../src/global.cpp" line="144"/>
         <source>First wort</source>
         <translation>Eerste wort</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="135"/>
+        <location filename="../src/global.cpp" line="145"/>
         <source>Boil</source>
         <translation>Koken</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="136"/>
+        <location filename="../src/global.cpp" line="146"/>
         <source>Aroma</source>
         <translation>Vlamuit</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="137"/>
+        <location filename="../src/global.cpp" line="147"/>
         <source>Whirlpool</source>
         <translation>Hopstand</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="138"/>
+        <location filename="../src/global.cpp" line="148"/>
         <source>Dry hop</source>
         <translation>Koudhop</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="139"/>
+        <location filename="../src/global.cpp" line="149"/>
         <source>Bottling</source>
         <translation>Bottelen</translation>
     </message>
@@ -10454,37 +10469,37 @@
 <context>
     <name>MiscType</name>
     <message>
-        <location filename="../src/global.cpp" line="143"/>
+        <location filename="../src/global.cpp" line="153"/>
         <source>Spice</source>
         <translation>Specerij</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="144"/>
+        <location filename="../src/global.cpp" line="154"/>
         <source>Herb</source>
         <translation>Kruid</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="145"/>
+        <location filename="../src/global.cpp" line="155"/>
         <source>Flavor</source>
         <translation>Smaakstof</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="146"/>
+        <location filename="../src/global.cpp" line="156"/>
         <source>Fining</source>
         <translation>Klaringsmiddel</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="147"/>
+        <location filename="../src/global.cpp" line="157"/>
         <source>Water agent</source>
         <translation>Brouwzout</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="148"/>
+        <location filename="../src/global.cpp" line="158"/>
         <source>Yeast nutrient</source>
         <translation>Gistvoeding</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="149"/>
+        <location filename="../src/global.cpp" line="159"/>
         <source>Other</source>
         <translation>Anders</translation>
     </message>
@@ -10492,37 +10507,37 @@
 <context>
     <name>MiscUse</name>
     <message>
-        <location filename="../src/global.cpp" line="153"/>
+        <location filename="../src/global.cpp" line="163"/>
         <source>Starter</source>
         <translation>Starter</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="154"/>
+        <location filename="../src/global.cpp" line="164"/>
         <source>Mash</source>
         <translation>Maischen</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="155"/>
+        <location filename="../src/global.cpp" line="165"/>
         <source>Boil</source>
         <translation>Koken</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="156"/>
+        <location filename="../src/global.cpp" line="166"/>
         <source>Primary</source>
         <translation>Hoofdgisting</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="157"/>
+        <location filename="../src/global.cpp" line="167"/>
         <source>Secondary</source>
         <translation>Nagisting/lagering</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="158"/>
+        <location filename="../src/global.cpp" line="168"/>
         <source>Bottling</source>
         <translation>Bottelen</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="159"/>
+        <location filename="../src/global.cpp" line="169"/>
         <source>Sparge</source>
         <translation>Spoelen</translation>
     </message>
@@ -10729,6 +10744,44 @@
     </message>
 </context>
 <context>
+    <name>PicType</name>
+    <message>
+        <location filename="../src/global.cpp" line="61"/>
+        <source>Generic</source>
+        <translation>Algemeen</translation>
+    </message>
+    <message>
+        <location filename="../src/global.cpp" line="62"/>
+        <source>Label Vichy</source>
+        <translation>Etiket Vichy</translation>
+    </message>
+    <message>
+        <location filename="../src/global.cpp" line="63"/>
+        <source>Label Steinie</source>
+        <translation>Etiket Steinie</translation>
+    </message>
+    <message>
+        <location filename="../src/global.cpp" line="64"/>
+        <source>Label 75cl</source>
+        <translation>Etiket 75cl</translation>
+    </message>
+    <message>
+        <location filename="../src/global.cpp" line="65"/>
+        <source>Label Magnum</source>
+        <translation>Etiket Magnum</translation>
+    </message>
+    <message>
+        <location filename="../src/global.cpp" line="66"/>
+        <source>Label Cap</source>
+        <translation>Etiket dop</translation>
+    </message>
+    <message>
+        <location filename="../src/global.cpp" line="67"/>
+        <source>Label Box</source>
+        <translation>Etiket doos</translation>
+    </message>
+</context>
+<context>
     <name>PrinterDialog</name>
     <message>
         <source>Grain</source>
@@ -13457,17 +13510,17 @@
 <context>
     <name>RecipeType</name>
     <message>
-        <location filename="../src/global.cpp" line="61"/>
+        <location filename="../src/global.cpp" line="71"/>
         <source>Extract</source>
         <translation>Vloeibaar extract</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="62"/>
+        <location filename="../src/global.cpp" line="72"/>
         <source>Partial Mash</source>
         <translation>Deelmaisch</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="63"/>
+        <location filename="../src/global.cpp" line="73"/>
         <source>All Grain</source>
         <translation>Mout</translation>
     </message>
@@ -13995,17 +14048,17 @@
 <context>
     <name>StepType</name>
     <message>
-        <location filename="../src/global.cpp" line="197"/>
+        <location filename="../src/global.cpp" line="207"/>
         <source>Infusion</source>
         <translation>Infusie</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="198"/>
+        <location filename="../src/global.cpp" line="208"/>
         <source>Temperature</source>
         <translation>Verwarmen</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="199"/>
+        <location filename="../src/global.cpp" line="209"/>
         <source>Decoction</source>
         <translation>Decoctie</translation>
     </message>
@@ -14021,22 +14074,22 @@
 <context>
     <name>TunMaterial</name>
     <message>
-        <location filename="../src/global.cpp" line="203"/>
+        <location filename="../src/global.cpp" line="213"/>
         <source>Stainless Steel</source>
         <translation>RVS</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="204"/>
+        <location filename="../src/global.cpp" line="214"/>
         <source>Aluminium</source>
         <translation>Aluminium</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="205"/>
+        <location filename="../src/global.cpp" line="215"/>
         <source>Plastics</source>
         <translation>Kunststof</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="206"/>
+        <location filename="../src/global.cpp" line="216"/>
         <source>Copper</source>
         <translation>Koper</translation>
     </message>
@@ -14060,37 +14113,37 @@
 <context>
     <name>YeastForm</name>
     <message>
-        <location filename="../src/global.cpp" line="174"/>
+        <location filename="../src/global.cpp" line="184"/>
         <source>Liquid</source>
         <translation>Vloeibaar</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="175"/>
+        <location filename="../src/global.cpp" line="185"/>
         <source>Dry</source>
         <translation>Droog</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="176"/>
+        <location filename="../src/global.cpp" line="186"/>
         <source>Slant</source>
         <translation>Schuine buis</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="177"/>
+        <location filename="../src/global.cpp" line="187"/>
         <source>Culture</source>
         <translation>Slurry</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="178"/>
+        <location filename="../src/global.cpp" line="188"/>
         <source>Frozen</source>
         <translation>Ingevroren</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="179"/>
+        <location filename="../src/global.cpp" line="189"/>
         <source>Bottle</source>
         <translation>Flesdepot</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="180"/>
+        <location filename="../src/global.cpp" line="190"/>
         <source>Dried</source>
         <translation>Gedroogd</translation>
     </message>
@@ -14098,17 +14151,17 @@
 <context>
     <name>YeastStarter</name>
     <message>
-        <location filename="../src/global.cpp" line="191"/>
+        <location filename="../src/global.cpp" line="201"/>
         <source>Stirred</source>
         <translation>Geroerd</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="192"/>
+        <location filename="../src/global.cpp" line="202"/>
         <source>Shaken</source>
         <translation>Geschud</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="193"/>
+        <location filename="../src/global.cpp" line="203"/>
         <source>Simple</source>
         <translation>Simpel</translation>
     </message>
@@ -14116,42 +14169,42 @@
 <context>
     <name>YeastType</name>
     <message>
-        <location filename="../src/global.cpp" line="163"/>
+        <location filename="../src/global.cpp" line="173"/>
         <source>Lager</source>
         <translation>Ondergist</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="164"/>
+        <location filename="../src/global.cpp" line="174"/>
         <source>Ale</source>
         <translation>Bovengist</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="165"/>
+        <location filename="../src/global.cpp" line="175"/>
         <source>Wheat</source>
         <translation>Tarwegist</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="166"/>
+        <location filename="../src/global.cpp" line="176"/>
         <source>Wine</source>
         <translation>Wijngist</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="167"/>
+        <location filename="../src/global.cpp" line="177"/>
         <source>Champagne</source>
         <translation>Champagnegist</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="168"/>
+        <location filename="../src/global.cpp" line="178"/>
         <source>Brett</source>
         <translation>Brett</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="169"/>
+        <location filename="../src/global.cpp" line="179"/>
         <source>Kveik</source>
         <translation>Kveik</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="170"/>
+        <location filename="../src/global.cpp" line="180"/>
         <source>Hybrid</source>
         <translation>Hybride</translation>
     </message>
@@ -14159,22 +14212,22 @@
 <context>
     <name>YeastUse</name>
     <message>
-        <location filename="../src/global.cpp" line="184"/>
+        <location filename="../src/global.cpp" line="194"/>
         <source>Primary</source>
         <translation>Hoofdgisting</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="185"/>
+        <location filename="../src/global.cpp" line="195"/>
         <source>Secondary</source>
         <translation>Nagisting</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="186"/>
+        <location filename="../src/global.cpp" line="196"/>
         <source>Tertiary</source>
         <translation>Lageren</translation>
     </message>
     <message>
-        <location filename="../src/global.cpp" line="187"/>
+        <location filename="../src/global.cpp" line="197"/>
         <source>Bottle</source>
         <translation>Bottelgist</translation>
     </message>
--- a/ui/EditProduct.ui	Sun Jan 15 14:33:53 2023 +0100
+++ b/ui/EditProduct.ui	Mon Jan 16 16:55:41 2023 +0100
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>1152</width>
-    <height>560</height>
+    <width>1200</width>
+    <height>600</height>
    </rect>
   </property>
   <property name="windowTitle">
@@ -20,7 +20,7 @@
       <property name="geometry">
        <rect>
         <x>90</x>
-        <y>510</y>
+        <y>550</y>
         <width>80</width>
         <height>23</height>
        </rect>
@@ -45,8 +45,8 @@
       </property>
       <property name="geometry">
        <rect>
-        <x>940</x>
-        <y>510</y>
+        <x>1010</x>
+        <y>550</y>
         <width>80</width>
         <height>23</height>
        </rect>
@@ -65,8 +65,8 @@
       </property>
       <property name="geometry">
        <rect>
-        <x>520</x>
-        <y>510</y>
+        <x>550</x>
+        <y>550</y>
         <width>80</width>
         <height>23</height>
        </rect>
@@ -84,8 +84,8 @@
        <rect>
         <x>10</x>
         <y>0</y>
-        <width>1128</width>
-        <height>501</height>
+        <width>1160</width>
+        <height>540</height>
        </rect>
       </property>
       <property name="tabPosition">
@@ -120,7 +120,7 @@
        <widget class="QLabel" name="nameLabel">
         <property name="geometry">
          <rect>
-          <x>380</x>
+          <x>390</x>
           <y>10</y>
           <width>131</width>
           <height>20</height>
@@ -136,7 +136,7 @@
        <widget class="QLabel" name="notesLabel">
         <property name="geometry">
          <rect>
-          <x>0</x>
+          <x>10</x>
           <y>70</y>
           <width>131</width>
           <height>20</height>
@@ -152,9 +152,9 @@
        <widget class="QLineEdit" name="nameEdit">
         <property name="geometry">
          <rect>
-          <x>520</x>
+          <x>530</x>
           <y>10</y>
-          <width>541</width>
+          <width>551</width>
           <height>23</height>
          </rect>
         </property>
@@ -165,9 +165,9 @@
        <widget class="QPlainTextEdit" name="notesEdit">
         <property name="geometry">
          <rect>
-          <x>140</x>
+          <x>150</x>
           <y>70</y>
-          <width>921</width>
+          <width>931</width>
           <height>71</height>
          </rect>
         </property>
@@ -176,8 +176,8 @@
         <property name="geometry">
          <rect>
           <x>750</x>
-          <y>180</y>
-          <width>131</width>
+          <y>190</y>
+          <width>151</width>
           <height>20</height>
          </rect>
         </property>
@@ -191,8 +191,8 @@
        <widget class="QCheckBox" name="lockedEdit">
         <property name="geometry">
          <rect>
-          <x>890</x>
-          <y>180</y>
+          <x>910</x>
+          <y>190</y>
           <width>61</width>
           <height>21</height>
          </rect>
@@ -204,7 +204,7 @@
        <widget class="QLabel" name="typeLabel">
         <property name="geometry">
          <rect>
-          <x>750</x>
+          <x>770</x>
           <y>40</y>
           <width>131</width>
           <height>20</height>
@@ -220,7 +220,7 @@
        <widget class="QComboBox" name="typeEdit">
         <property name="geometry">
          <rect>
-          <x>890</x>
+          <x>910</x>
           <y>40</y>
           <width>171</width>
           <height>23</height>
@@ -230,8 +230,8 @@
        <widget class="QLabel" name="efficiencyLabel">
         <property name="geometry">
          <rect>
-          <x>370</x>
-          <y>180</y>
+          <x>380</x>
+          <y>190</y>
           <width>141</width>
           <height>20</height>
          </rect>
@@ -247,8 +247,8 @@
         <property name="geometry">
          <rect>
           <x>380</x>
-          <y>150</y>
-          <width>131</width>
+          <y>160</y>
+          <width>141</width>
           <height>20</height>
          </rect>
         </property>
@@ -262,8 +262,8 @@
        <widget class="QLabel" name="batch_sizeLabel">
         <property name="geometry">
          <rect>
-          <x>0</x>
-          <y>150</y>
+          <x>10</x>
+          <y>160</y>
           <width>131</width>
           <height>20</height>
          </rect>
@@ -278,8 +278,8 @@
        <widget class="QLabel" name="boil_sizeLabel">
         <property name="geometry">
          <rect>
-          <x>730</x>
-          <y>150</y>
+          <x>750</x>
+          <y>160</y>
           <width>151</width>
           <height>20</height>
          </rect>
@@ -294,8 +294,8 @@
        <widget class="QDoubleSpinBox" name="efficiencyEdit">
         <property name="geometry">
          <rect>
-          <x>520</x>
-          <y>180</y>
+          <x>530</x>
+          <y>190</y>
           <width>101</width>
           <height>24</height>
          </rect>
@@ -319,8 +319,8 @@
        <widget class="QSpinBox" name="boil_timeEdit">
         <property name="geometry">
          <rect>
-          <x>520</x>
-          <y>150</y>
+          <x>530</x>
+          <y>160</y>
           <width>101</width>
           <height>24</height>
          </rect>
@@ -344,8 +344,8 @@
        <widget class="QDoubleSpinBox" name="batch_sizeEdit">
         <property name="geometry">
          <rect>
-          <x>140</x>
-          <y>150</y>
+          <x>150</x>
+          <y>160</y>
           <width>101</width>
           <height>24</height>
          </rect>
@@ -372,8 +372,8 @@
        <widget class="QDoubleSpinBox" name="boil_sizeEdit">
         <property name="geometry">
          <rect>
-          <x>890</x>
-          <y>150</y>
+          <x>910</x>
+          <y>160</y>
           <width>86</width>
           <height>24</height>
          </rect>
@@ -407,8 +407,8 @@
         <property name="geometry">
          <rect>
           <x>10</x>
-          <y>310</y>
-          <width>1101</width>
+          <y>350</y>
+          <width>1131</width>
           <height>151</height>
          </rect>
         </property>
@@ -449,7 +449,7 @@
         <widget class="QDoubleSpinBox" name="est_abvEdit">
          <property name="geometry">
           <rect>
-           <x>880</x>
+           <x>900</x>
            <y>20</y>
            <width>71</width>
            <height>24</height>
@@ -486,7 +486,7 @@
         <widget class="QDoubleSpinBox" name="est_fgEdit">
          <property name="geometry">
           <rect>
-           <x>510</x>
+           <x>520</x>
            <y>20</y>
            <width>71</width>
            <height>24</height>
@@ -520,7 +520,7 @@
         <widget class="QLabel" name="est_abvLabel">
          <property name="geometry">
           <rect>
-           <x>740</x>
+           <x>760</x>
            <y>20</y>
            <width>131</width>
            <height>20</height>
@@ -536,7 +536,7 @@
         <widget class="QLabel" name="est_fgLabel">
          <property name="geometry">
           <rect>
-           <x>370</x>
+           <x>380</x>
            <y>20</y>
            <width>131</width>
            <height>20</height>
@@ -552,7 +552,7 @@
         <widget class="RangedSlider" name="est_fgShow">
          <property name="geometry">
           <rect>
-           <x>590</x>
+           <x>600</x>
            <y>20</y>
            <width>138</width>
            <height>24</height>
@@ -588,7 +588,7 @@
         <widget class="RangedSlider" name="est_abvShow">
          <property name="geometry">
           <rect>
-           <x>960</x>
+           <x>980</x>
            <y>20</y>
            <width>138</width>
            <height>24</height>
@@ -598,7 +598,7 @@
         <widget class="QComboBox" name="color_methodEdit">
          <property name="geometry">
           <rect>
-           <x>510</x>
+           <x>520</x>
            <y>50</y>
            <width>141</width>
            <height>23</height>
@@ -618,7 +618,7 @@
         <widget class="QDoubleSpinBox" name="est_bottle_co2Edit">
          <property name="geometry">
           <rect>
-           <x>880</x>
+           <x>900</x>
            <y>50</y>
            <width>71</width>
            <height>24</height>
@@ -689,7 +689,7 @@
         <widget class="QLabel" name="color_methodLabel">
          <property name="geometry">
           <rect>
-           <x>370</x>
+           <x>380</x>
            <y>50</y>
            <width>131</width>
            <height>20</height>
@@ -705,7 +705,7 @@
         <widget class="QLabel" name="est_bottle_co2Label">
          <property name="geometry">
           <rect>
-           <x>740</x>
+           <x>760</x>
            <y>50</y>
            <width>131</width>
            <height>20</height>
@@ -721,7 +721,7 @@
         <widget class="RangedSlider" name="est_bottle_co2Show">
          <property name="geometry">
           <rect>
-           <x>960</x>
+           <x>980</x>
            <y>50</y>
            <width>138</width>
            <height>24</height>
@@ -757,7 +757,7 @@
         <widget class="QComboBox" name="ibu_methodEdit">
          <property name="geometry">
           <rect>
-           <x>510</x>
+           <x>520</x>
            <y>80</y>
            <width>141</width>
            <height>23</height>
@@ -801,7 +801,7 @@
         <widget class="QLabel" name="ibu_methodLabel">
          <property name="geometry">
           <rect>
-           <x>370</x>
+           <x>380</x>
            <y>80</y>
            <width>131</width>
            <height>20</height>
@@ -817,7 +817,7 @@
         <widget class="QLabel" name="calLabel">
          <property name="geometry">
           <rect>
-           <x>740</x>
+           <x>760</x>
            <y>110</y>
            <width>131</width>
            <height>20</height>
@@ -849,7 +849,7 @@
         <widget class="QDoubleSpinBox" name="calEdit">
          <property name="geometry">
           <rect>
-           <x>880</x>
+           <x>900</x>
            <y>110</y>
            <width>71</width>
            <height>24</height>
@@ -899,7 +899,7 @@
         <widget class="QLabel" name="est_bufguLabel">
          <property name="geometry">
           <rect>
-           <x>370</x>
+           <x>380</x>
            <y>110</y>
            <width>131</width>
            <height>20</height>
@@ -952,7 +952,7 @@
         <widget class="QDoubleSpinBox" name="est_bufguEdit">
          <property name="geometry">
           <rect>
-           <x>510</x>
+           <x>520</x>
            <y>110</y>
            <width>71</width>
            <height>24</height>
@@ -999,7 +999,7 @@
         <widget class="RangedSlider" name="est_bufguShow">
          <property name="geometry">
           <rect>
-           <x>590</x>
+           <x>600</x>
            <y>110</y>
            <width>138</width>
            <height>24</height>
@@ -1009,7 +1009,7 @@
         <widget class="QDoubleSpinBox" name="est_kegs_co2Edit">
          <property name="geometry">
           <rect>
-           <x>880</x>
+           <x>900</x>
            <y>80</y>
            <width>71</width>
            <height>24</height>
@@ -1046,7 +1046,7 @@
         <widget class="RangedSlider" name="est_kegs_co2Show">
          <property name="geometry">
           <rect>
-           <x>960</x>
+           <x>980</x>
            <y>80</y>
            <width>138</width>
            <height>24</height>
@@ -1056,7 +1056,7 @@
         <widget class="QLabel" name="est_kegs_co2Label">
          <property name="geometry">
           <rect>
-           <x>740</x>
+           <x>760</x>
            <y>80</y>
            <width>131</width>
            <height>20</height>
@@ -1074,8 +1074,8 @@
         <property name="geometry">
          <rect>
           <x>10</x>
-          <y>210</y>
-          <width>1101</width>
+          <y>240</y>
+          <width>1131</width>
           <height>91</height>
          </rect>
         </property>
@@ -1085,7 +1085,7 @@
         <widget class="QComboBox" name="beerstyleEdit">
          <property name="geometry">
           <rect>
-           <x>730</x>
+           <x>740</x>
            <y>20</y>
            <width>16</width>
            <height>23</height>
@@ -1095,7 +1095,7 @@
         <widget class="QLineEdit" name="st_groupEdit">
          <property name="geometry">
           <rect>
-           <x>880</x>
+           <x>900</x>
            <y>20</y>
            <width>101</width>
            <height>23</height>
@@ -1111,7 +1111,7 @@
         <widget class="QLineEdit" name="st_guideEdit">
          <property name="geometry">
           <rect>
-           <x>130</x>
+           <x>140</x>
            <y>20</y>
            <width>211</width>
            <height>23</height>
@@ -1129,7 +1129,7 @@
           <rect>
            <x>10</x>
            <y>20</y>
-           <width>111</width>
+           <width>121</width>
            <height>20</height>
           </rect>
          </property>
@@ -1143,7 +1143,7 @@
         <widget class="QLabel" name="st_groupLabel">
          <property name="geometry">
           <rect>
-           <x>750</x>
+           <x>770</x>
            <y>20</y>
            <width>121</width>
            <height>20</height>
@@ -1161,7 +1161,7 @@
           <rect>
            <x>10</x>
            <y>50</y>
-           <width>111</width>
+           <width>121</width>
            <height>20</height>
           </rect>
          </property>
@@ -1175,7 +1175,7 @@
         <widget class="QLineEdit" name="st_typeEdit">
          <property name="geometry">
           <rect>
-           <x>130</x>
+           <x>140</x>
            <y>50</y>
            <width>211</width>
            <height>23</height>
@@ -1191,7 +1191,7 @@
         <widget class="QLabel" name="st_catLabel">
          <property name="geometry">
           <rect>
-           <x>370</x>
+           <x>380</x>
            <y>50</y>
            <width>131</width>
            <height>20</height>
@@ -1207,7 +1207,7 @@
         <widget class="QLineEdit" name="st_catnrEdit">
          <property name="geometry">
           <rect>
-           <x>880</x>
+           <x>900</x>
            <y>50</y>
            <width>71</width>
            <height>23</height>
@@ -1223,7 +1223,7 @@
         <widget class="QLabel" name="st_catnrLabel">
          <property name="geometry">
           <rect>
-           <x>730</x>
+           <x>750</x>
            <y>50</y>
            <width>141</width>
            <height>20</height>
@@ -1239,7 +1239,7 @@
         <widget class="QLineEdit" name="st_catEdit">
          <property name="geometry">
           <rect>
-           <x>510</x>
+           <x>520</x>
            <y>50</y>
            <width>211</width>
            <height>23</height>
@@ -1255,7 +1255,7 @@
         <widget class="QLineEdit" name="st_nameEdit">
          <property name="geometry">
           <rect>
-           <x>510</x>
+           <x>520</x>
            <y>20</y>
            <width>211</width>
            <height>23</height>
@@ -1271,9 +1271,9 @@
         <widget class="QLabel" name="st_nameLabel">
          <property name="geometry">
           <rect>
-           <x>390</x>
+           <x>380</x>
            <y>20</y>
-           <width>111</width>
+           <width>131</width>
            <height>20</height>
           </rect>
          </property>
@@ -1288,7 +1288,7 @@
        <widget class="QLabel" name="codeLabel">
         <property name="geometry">
          <rect>
-          <x>0</x>
+          <x>10</x>
           <y>10</y>
           <width>131</width>
           <height>20</height>
@@ -1304,8 +1304,8 @@
        <widget class="QLabel" name="splitatLabel">
         <property name="geometry">
          <rect>
-          <x>0</x>
-          <y>180</y>
+          <x>10</x>
+          <y>190</y>
           <width>131</width>
           <height>20</height>
          </rect>
@@ -1320,7 +1320,7 @@
        <widget class="QLineEdit" name="codeEdit">
         <property name="geometry">
          <rect>
-          <x>140</x>
+          <x>150</x>
           <y>10</y>
           <width>181</width>
           <height>23</height>
@@ -1333,9 +1333,9 @@
        <widget class="QLineEdit" name="splitatEdit">
         <property name="geometry">
          <rect>
-          <x>140</x>
-          <y>180</y>
-          <width>211</width>
+          <x>150</x>
+          <y>190</y>
+          <width>221</width>
           <height>23</height>
          </rect>
         </property>
@@ -1346,7 +1346,7 @@
        <widget class="QLabel" name="birthLabel">
         <property name="geometry">
          <rect>
-          <x>380</x>
+          <x>390</x>
           <y>40</y>
           <width>131</width>
           <height>20</height>
@@ -1362,7 +1362,7 @@
        <widget class="QLineEdit" name="birthEdit">
         <property name="geometry">
          <rect>
-          <x>520</x>
+          <x>530</x>
           <y>40</y>
           <width>101</width>
           <height>23</height>
@@ -1375,7 +1375,7 @@
        <widget class="QLabel" name="stageLabel">
         <property name="geometry">
          <rect>
-          <x>0</x>
+          <x>10</x>
           <y>40</y>
           <width>131</width>
           <height>20</height>
@@ -1391,7 +1391,7 @@
        <widget class="QLineEdit" name="stageEdit">
         <property name="geometry">
          <rect>
-          <x>140</x>
+          <x>150</x>
           <y>40</y>
           <width>101</width>
           <height>23</height>
@@ -1404,8 +1404,8 @@
        <widget class="QLabel" name="ok_pmptLabel">
         <property name="geometry">
          <rect>
-          <x>730</x>
-          <y>180</y>
+          <x>750</x>
+          <y>190</y>
           <width>151</width>
           <height>20</height>
          </rect>
@@ -1420,8 +1420,8 @@
        <widget class="QLabel" name="ok_pmptIcon">
         <property name="geometry">
          <rect>
-          <x>890</x>
-          <y>180</y>
+          <x>910</x>
+          <y>190</y>
           <width>20</width>
           <height>20</height>
          </rect>
@@ -1831,7 +1831,7 @@
        <widget class="QGroupBox" name="chilleqBox">
         <property name="geometry">
          <rect>
-          <x>790</x>
+          <x>820</x>
           <y>160</y>
           <width>321</width>
           <height>181</height>
@@ -2102,7 +2102,7 @@
        <widget class="QGroupBox" name="boilBox">
         <property name="geometry">
          <rect>
-          <x>400</x>
+          <x>420</x>
           <y>160</y>
           <width>321</width>
           <height>241</height>
@@ -2465,7 +2465,7 @@
        <widget class="QGroupBox" name="transferBox">
         <property name="geometry">
          <rect>
-          <x>790</x>
+          <x>820</x>
           <y>350</y>
           <width>321</width>
           <height>91</height>
@@ -2687,7 +2687,7 @@
        <widget class="QLabel" name="perc_mashLabel">
         <property name="geometry">
          <rect>
-          <x>420</x>
+          <x>450</x>
           <y>10</y>
           <width>151</width>
           <height>20</height>
@@ -2703,7 +2703,7 @@
        <widget class="QLabel" name="perc_sugarLabel">
         <property name="geometry">
          <rect>
-          <x>420</x>
+          <x>450</x>
           <y>40</y>
           <width>151</width>
           <height>20</height>
@@ -2719,7 +2719,7 @@
        <widget class="QLabel" name="perc_caraLabel">
         <property name="geometry">
          <rect>
-          <x>420</x>
+          <x>450</x>
           <y>70</y>
           <width>151</width>
           <height>20</height>
@@ -2735,7 +2735,7 @@
        <widget class="QLabel" name="lintnerLabel">
         <property name="geometry">
          <rect>
-          <x>420</x>
+          <x>450</x>
           <y>100</y>
           <width>151</width>
           <height>20</height>
@@ -2753,15 +2753,15 @@
          <rect>
           <x>5</x>
           <y>130</y>
-          <width>1111</width>
-          <height>331</height>
+          <width>1141</width>
+          <height>371</height>
          </rect>
         </property>
        </widget>
        <widget class="QProgressBar" name="lintnerShow">
         <property name="geometry">
          <rect>
-          <x>580</x>
+          <x>610</x>
           <y>100</y>
           <width>381</width>
           <height>20</height>
@@ -2783,7 +2783,7 @@
        <widget class="QProgressBar" name="perc_mashShow">
         <property name="geometry">
          <rect>
-          <x>580</x>
+          <x>610</x>
           <y>10</y>
           <width>381</width>
           <height>20</height>
@@ -2805,7 +2805,7 @@
        <widget class="QProgressBar" name="perc_sugarsShow">
         <property name="geometry">
          <rect>
-          <x>580</x>
+          <x>610</x>
           <y>40</y>
           <width>381</width>
           <height>20</height>
@@ -2827,7 +2827,7 @@
        <widget class="QProgressBar" name="perc_caraShow">
         <property name="geometry">
          <rect>
-          <x>580</x>
+          <x>610</x>
           <y>70</y>
           <width>381</width>
           <height>20</height>
@@ -2978,9 +2978,9 @@
        <widget class="QLabel" name="hop_tasteLabel">
         <property name="geometry">
          <rect>
-          <x>225</x>
+          <x>230</x>
           <y>10</y>
-          <width>126</width>
+          <width>141</width>
           <height>20</height>
          </rect>
         </property>
@@ -2994,7 +2994,7 @@
        <widget class="QLabel" name="hop_aromaLabel">
         <property name="geometry">
          <rect>
-          <x>670</x>
+          <x>700</x>
           <y>10</y>
           <width>131</width>
           <height>20</height>
@@ -3010,7 +3010,7 @@
        <widget class="QProgressBar" name="hop_tasteShow">
         <property name="geometry">
          <rect>
-          <x>360</x>
+          <x>380</x>
           <y>10</y>
           <width>301</width>
           <height>20</height>
@@ -3032,7 +3032,7 @@
        <widget class="QProgressBar" name="hop_aromaShow">
         <property name="geometry">
          <rect>
-          <x>810</x>
+          <x>840</x>
           <y>10</y>
           <width>301</width>
           <height>20</height>
@@ -3056,8 +3056,8 @@
          <rect>
           <x>5</x>
           <y>100</y>
-          <width>1111</width>
-          <height>361</height>
+          <width>1141</width>
+          <height>401</height>
          </rect>
         </property>
        </widget>
@@ -3137,9 +3137,9 @@
        <widget class="QLabel" name="ferment_absorpLabel">
         <property name="geometry">
          <rect>
-          <x>225</x>
+          <x>235</x>
           <y>40</y>
-          <width>121</width>
+          <width>131</width>
           <height>20</height>
          </rect>
         </property>
@@ -3153,7 +3153,7 @@
        <widget class="QDoubleSpinBox" name="ferment_absorpShow">
         <property name="geometry">
          <rect>
-          <x>360</x>
+          <x>380</x>
           <y>40</y>
           <width>81</width>
           <height>24</height>
@@ -3202,17 +3202,17 @@
        <widget class="QTableWidget" name="miscsTable">
         <property name="geometry">
          <rect>
-          <x>140</x>
+          <x>155</x>
           <y>10</y>
           <width>849</width>
-          <height>451</height>
+          <height>491</height>
          </rect>
         </property>
        </widget>
        <widget class="QPushButton" name="addMisc">
         <property name="geometry">
          <rect>
-          <x>30</x>
+          <x>40</x>
           <y>40</y>
           <width>80</width>
           <height>23</height>
@@ -3439,8 +3439,8 @@
         <property name="geometry">
          <rect>
           <x>10</x>
-          <y>280</y>
-          <width>1101</width>
+          <y>320</y>
+          <width>1131</width>
           <height>181</height>
          </rect>
         </property>
@@ -3450,8 +3450,8 @@
          <rect>
           <x>370</x>
           <y>10</y>
-          <width>741</width>
-          <height>261</height>
+          <width>771</width>
+          <height>301</height>
          </rect>
         </property>
         <property name="currentIndex">
@@ -3463,7 +3463,7 @@
           <property name="geometry">
            <rect>
             <x>550</x>
-            <y>10</y>
+            <y>30</y>
             <width>95</width>
             <height>24</height>
            </rect>
@@ -3500,7 +3500,7 @@
           <property name="geometry">
            <rect>
             <x>360</x>
-            <y>10</y>
+            <y>30</y>
             <width>181</width>
             <height>20</height>
            </rect>
@@ -3516,7 +3516,7 @@
           <property name="geometry">
            <rect>
             <x>200</x>
-            <y>10</y>
+            <y>30</y>
             <width>101</width>
             <height>23</height>
            </rect>
@@ -3526,7 +3526,7 @@
           <property name="geometry">
            <rect>
             <x>10</x>
-            <y>10</y>
+            <y>30</y>
             <width>181</width>
             <height>20</height>
            </rect>
@@ -3542,7 +3542,7 @@
           <property name="geometry">
            <rect>
             <x>10</x>
-            <y>40</y>
+            <y>60</y>
             <width>181</width>
             <height>20</height>
            </rect>
@@ -3558,7 +3558,7 @@
           <property name="geometry">
            <rect>
             <x>200</x>
-            <y>40</y>
+            <y>60</y>
             <width>71</width>
             <height>24</height>
            </rect>
@@ -3589,7 +3589,7 @@
           <property name="geometry">
            <rect>
             <x>655</x>
-            <y>10</y>
+            <y>30</y>
             <width>28</width>
             <height>22</height>
            </rect>
@@ -3608,8 +3608,8 @@
          <widget class="QTableWidget" name="starterTable">
           <property name="geometry">
            <rect>
-            <x>50</x>
-            <y>100</y>
+            <x>70</x>
+            <y>140</y>
             <width>636</width>
             <height>146</height>
            </rect>
@@ -3631,7 +3631,7 @@
           <property name="geometry">
            <rect>
             <x>360</x>
-            <y>40</y>
+            <y>60</y>
             <width>181</width>
             <height>20</height>
            </rect>
@@ -3647,7 +3647,7 @@
           <property name="geometry">
            <rect>
             <x>550</x>
-            <y>40</y>
+            <y>60</y>
             <width>81</width>
             <height>24</height>
            </rect>
@@ -3678,7 +3678,7 @@
           <property name="geometry">
            <rect>
             <x>550</x>
-            <y>70</y>
+            <y>90</y>
             <width>28</width>
             <height>22</height>
            </rect>
@@ -3698,7 +3698,7 @@
           <property name="geometry">
            <rect>
             <x>360</x>
-            <y>70</y>
+            <y>90</y>
             <width>181</width>
             <height>20</height>
            </rect>
@@ -3710,6 +3710,29 @@
            <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
           </property>
          </widget>
+         <widget class="QLabel" name="label_starter">
+          <property name="geometry">
+           <rect>
+            <x>70</x>
+            <y>0</y>
+            <width>631</width>
+            <height>20</height>
+           </rect>
+          </property>
+          <property name="font">
+           <font>
+            <pointsize>11</pointsize>
+            <weight>75</weight>
+            <bold>true</bold>
+           </font>
+          </property>
+          <property name="text">
+           <string>Yeast starter calculation.</string>
+          </property>
+          <property name="alignment">
+           <set>Qt::AlignCenter</set>
+          </property>
+         </widget>
         </widget>
         <widget class="QWidget" name="yeastDry">
          <widget class="QLabel" name="label_2">
@@ -4040,7 +4063,7 @@
         <property name="geometry">
          <rect>
           <x>90</x>
-          <y>240</y>
+          <y>280</y>
           <width>80</width>
           <height>23</height>
          </rect>
@@ -4186,8 +4209,8 @@
          <rect>
           <x>10</x>
           <y>120</y>
-          <width>1101</width>
-          <height>341</height>
+          <width>1131</width>
+          <height>381</height>
          </rect>
         </property>
        </widget>
@@ -4352,7 +4375,7 @@
         <property name="geometry">
          <rect>
           <x>10</x>
-          <y>220</y>
+          <y>260</y>
           <width>291</width>
           <height>241</height>
          </rect>
@@ -4875,8 +4898,8 @@
        <widget class="QGroupBox" name="mashBox">
         <property name="geometry">
          <rect>
-          <x>780</x>
-          <y>220</y>
+          <x>810</x>
+          <y>260</y>
           <width>331</width>
           <height>241</height>
          </rect>
@@ -5213,8 +5236,8 @@
        <widget class="QLabel" name="buguLabel">
         <property name="geometry">
          <rect>
-          <x>310</x>
-          <y>240</y>
+          <x>329</x>
+          <y>280</y>
           <width>181</width>
           <height>20</height>
          </rect>
@@ -5229,8 +5252,8 @@
        <widget class="QDoubleSpinBox" name="buguEdit">
         <property name="geometry">
          <rect>
-          <x>500</x>
-          <y>240</y>
+          <x>519</x>
+          <y>280</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5260,8 +5283,8 @@
        <widget class="QLabel" name="buguResult">
         <property name="geometry">
          <rect>
-          <x>580</x>
-          <y>240</y>
+          <x>599</x>
+          <y>280</y>
           <width>191</width>
           <height>20</height>
          </rect>
@@ -5281,8 +5304,8 @@
        <widget class="QLabel" name="so4clLabel">
         <property name="geometry">
          <rect>
-          <x>310</x>
-          <y>270</y>
+          <x>329</x>
+          <y>310</y>
           <width>181</width>
           <height>20</height>
          </rect>
@@ -5297,8 +5320,8 @@
        <widget class="QDoubleSpinBox" name="so4clEdit">
         <property name="geometry">
          <rect>
-          <x>500</x>
-          <y>270</y>
+          <x>519</x>
+          <y>310</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5328,8 +5351,8 @@
        <widget class="QLabel" name="so4clResult">
         <property name="geometry">
          <rect>
-          <x>580</x>
-          <y>270</y>
+          <x>599</x>
+          <y>310</y>
           <width>191</width>
           <height>20</height>
          </rect>
@@ -5349,8 +5372,8 @@
        <widget class="QLabel" name="cur_so4clLabel">
         <property name="geometry">
          <rect>
-          <x>311</x>
-          <y>300</y>
+          <x>330</x>
+          <y>340</y>
           <width>181</width>
           <height>20</height>
          </rect>
@@ -5365,8 +5388,8 @@
        <widget class="QDoubleSpinBox" name="cur_so4clEdit">
         <property name="geometry">
          <rect>
-          <x>501</x>
-          <y>300</y>
+          <x>520</x>
+          <y>340</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5396,8 +5419,8 @@
        <widget class="RangedSlider" name="cur_so4clResult">
         <property name="geometry">
          <rect>
-          <x>580</x>
-          <y>300</y>
+          <x>599</x>
+          <y>340</y>
           <width>191</width>
           <height>20</height>
          </rect>
@@ -5406,8 +5429,8 @@
        <widget class="QLabel" name="preboil_phLabel">
         <property name="geometry">
          <rect>
-          <x>311</x>
-          <y>330</y>
+          <x>330</x>
+          <y>370</y>
           <width>181</width>
           <height>20</height>
          </rect>
@@ -5422,8 +5445,8 @@
        <widget class="QDoubleSpinBox" name="preboil_phEdit">
         <property name="geometry">
          <rect>
-          <x>501</x>
-          <y>330</y>
+          <x>520</x>
+          <y>370</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5447,8 +5470,8 @@
        <widget class="QDoubleSpinBox" name="sp_clEdit">
         <property name="geometry">
          <rect>
-          <x>720</x>
-          <y>180</y>
+          <x>750</x>
+          <y>160</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5472,8 +5495,8 @@
        <widget class="QDoubleSpinBox" name="sp_naEdit">
         <property name="geometry">
          <rect>
-          <x>640</x>
-          <y>180</y>
+          <x>670</x>
+          <y>160</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5497,8 +5520,8 @@
        <widget class="QDoubleSpinBox" name="sp_caco3Edit">
         <property name="geometry">
          <rect>
-          <x>560</x>
-          <y>180</y>
+          <x>590</x>
+          <y>160</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5522,8 +5545,8 @@
        <widget class="QDoubleSpinBox" name="sp_raEdit">
         <property name="geometry">
          <rect>
-          <x>1040</x>
-          <y>180</y>
+          <x>1070</x>
+          <y>160</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5550,8 +5573,8 @@
        <widget class="QDoubleSpinBox" name="sp_phShow">
         <property name="geometry">
          <rect>
-          <x>880</x>
-          <y>180</y>
+          <x>910</x>
+          <y>160</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5575,8 +5598,8 @@
        <widget class="QDoubleSpinBox" name="sp_so4Edit">
         <property name="geometry">
          <rect>
-          <x>800</x>
-          <y>180</y>
+          <x>830</x>
+          <y>160</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5600,8 +5623,8 @@
        <widget class="QDoubleSpinBox" name="sp_mgEdit">
         <property name="geometry">
          <rect>
-          <x>400</x>
-          <y>180</y>
+          <x>430</x>
+          <y>160</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5625,8 +5648,8 @@
        <widget class="QDoubleSpinBox" name="sp_hco3Edit">
         <property name="geometry">
          <rect>
-          <x>480</x>
-          <y>180</y>
+          <x>510</x>
+          <y>160</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5650,8 +5673,8 @@
        <widget class="QDoubleSpinBox" name="sp_volEdit">
         <property name="geometry">
          <rect>
-          <x>230</x>
-          <y>180</y>
+          <x>250</x>
+          <y>160</y>
           <width>81</width>
           <height>24</height>
          </rect>
@@ -5681,8 +5704,8 @@
        <widget class="QDoubleSpinBox" name="sp_hardnessEdit">
         <property name="geometry">
          <rect>
-          <x>960</x>
-          <y>180</y>
+          <x>990</x>
+          <y>160</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5706,8 +5729,8 @@
        <widget class="QDoubleSpinBox" name="sp_caEdit">
         <property name="geometry">
          <rect>
-          <x>320</x>
-          <y>180</y>
+          <x>350</x>
+          <y>160</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5732,7 +5755,7 @@
         <property name="geometry">
          <rect>
           <x>10</x>
-          <y>150</y>
+          <y>210</y>
           <width>181</width>
           <height>23</height>
          </rect>
@@ -5747,8 +5770,8 @@
        <widget class="QDoubleSpinBox" name="wt_hardnessEdit">
         <property name="geometry">
          <rect>
-          <x>960</x>
-          <y>150</y>
+          <x>990</x>
+          <y>210</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5772,8 +5795,8 @@
        <widget class="QDoubleSpinBox" name="wt_so4Edit">
         <property name="geometry">
          <rect>
-          <x>800</x>
-          <y>150</y>
+          <x>830</x>
+          <y>210</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5797,8 +5820,8 @@
        <widget class="QDoubleSpinBox" name="wt_naEdit">
         <property name="geometry">
          <rect>
-          <x>640</x>
-          <y>150</y>
+          <x>670</x>
+          <y>210</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5822,8 +5845,8 @@
        <widget class="QDoubleSpinBox" name="wt_raEdit">
         <property name="geometry">
          <rect>
-          <x>1040</x>
-          <y>150</y>
+          <x>1070</x>
+          <y>210</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5850,8 +5873,8 @@
        <widget class="QDoubleSpinBox" name="wt_caco3Edit">
         <property name="geometry">
          <rect>
-          <x>560</x>
-          <y>150</y>
+          <x>590</x>
+          <y>210</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5875,8 +5898,8 @@
        <widget class="QDoubleSpinBox" name="wt_caEdit">
         <property name="geometry">
          <rect>
-          <x>320</x>
-          <y>150</y>
+          <x>350</x>
+          <y>210</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5900,8 +5923,8 @@
        <widget class="QDoubleSpinBox" name="wt_clEdit">
         <property name="geometry">
          <rect>
-          <x>720</x>
-          <y>150</y>
+          <x>750</x>
+          <y>210</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5925,8 +5948,8 @@
        <widget class="QDoubleSpinBox" name="wt_mgEdit">
         <property name="geometry">
          <rect>
-          <x>400</x>
-          <y>150</y>
+          <x>430</x>
+          <y>210</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5950,8 +5973,8 @@
        <widget class="QDoubleSpinBox" name="wt_hco3Edit">
         <property name="geometry">
          <rect>
-          <x>480</x>
-          <y>150</y>
+          <x>510</x>
+          <y>210</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -5975,8 +5998,8 @@
        <widget class="QDoubleSpinBox" name="wb_hco3Edit">
         <property name="geometry">
          <rect>
-          <x>480</x>
-          <y>120</y>
+          <x>510</x>
+          <y>130</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6003,8 +6026,8 @@
        <widget class="QDoubleSpinBox" name="wb_hardnessEdit">
         <property name="geometry">
          <rect>
-          <x>960</x>
-          <y>120</y>
+          <x>990</x>
+          <y>130</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6029,7 +6052,7 @@
         <property name="geometry">
          <rect>
           <x>10</x>
-          <y>120</y>
+          <y>130</y>
           <width>171</width>
           <height>21</height>
          </rect>
@@ -6044,8 +6067,8 @@
        <widget class="QDoubleSpinBox" name="wb_phEdit">
         <property name="geometry">
          <rect>
-          <x>880</x>
-          <y>120</y>
+          <x>910</x>
+          <y>130</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6072,8 +6095,8 @@
        <widget class="QDoubleSpinBox" name="wb_naEdit">
         <property name="geometry">
          <rect>
-          <x>640</x>
-          <y>120</y>
+          <x>670</x>
+          <y>130</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6100,8 +6123,8 @@
        <widget class="QDoubleSpinBox" name="wb_caco3Edit">
         <property name="geometry">
          <rect>
-          <x>560</x>
-          <y>120</y>
+          <x>590</x>
+          <y>130</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6125,8 +6148,8 @@
        <widget class="QDoubleSpinBox" name="wb_clEdit">
         <property name="geometry">
          <rect>
-          <x>720</x>
-          <y>120</y>
+          <x>750</x>
+          <y>130</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6154,8 +6177,8 @@
        <widget class="QDoubleSpinBox" name="wb_caEdit">
         <property name="geometry">
          <rect>
-          <x>320</x>
-          <y>120</y>
+          <x>350</x>
+          <y>130</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6182,8 +6205,8 @@
        <widget class="QDoubleSpinBox" name="wb_raEdit">
         <property name="geometry">
          <rect>
-          <x>1040</x>
-          <y>120</y>
+          <x>1070</x>
+          <y>130</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6210,8 +6233,8 @@
        <widget class="QDoubleSpinBox" name="wb_mgEdit">
         <property name="geometry">
          <rect>
-          <x>400</x>
-          <y>120</y>
+          <x>430</x>
+          <y>130</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6238,8 +6261,8 @@
        <widget class="QDoubleSpinBox" name="wb_so4Edit">
         <property name="geometry">
          <rect>
-          <x>800</x>
-          <y>120</y>
+          <x>830</x>
+          <y>130</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6267,8 +6290,8 @@
        <widget class="QDoubleSpinBox" name="wg_hco3Edit">
         <property name="geometry">
          <rect>
-          <x>480</x>
-          <y>90</y>
+          <x>510</x>
+          <y>100</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6292,8 +6315,8 @@
        <widget class="QDoubleSpinBox" name="wg_raEdit">
         <property name="geometry">
          <rect>
-          <x>1040</x>
-          <y>90</y>
+          <x>1070</x>
+          <y>100</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6321,7 +6344,7 @@
         <property name="geometry">
          <rect>
           <x>10</x>
-          <y>90</y>
+          <y>100</y>
           <width>171</width>
           <height>21</height>
          </rect>
@@ -6336,8 +6359,8 @@
        <widget class="QDoubleSpinBox" name="wg_caEdit">
         <property name="geometry">
          <rect>
-          <x>320</x>
-          <y>90</y>
+          <x>350</x>
+          <y>100</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6361,8 +6384,8 @@
        <widget class="QDoubleSpinBox" name="wg_hardnessEdit">
         <property name="geometry">
          <rect>
-          <x>960</x>
-          <y>90</y>
+          <x>990</x>
+          <y>100</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6386,8 +6409,8 @@
        <widget class="QDoubleSpinBox" name="wg_volEdit">
         <property name="geometry">
          <rect>
-          <x>230</x>
-          <y>90</y>
+          <x>250</x>
+          <y>100</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6414,8 +6437,8 @@
        <widget class="QDoubleSpinBox" name="wg_naEdit">
         <property name="geometry">
          <rect>
-          <x>640</x>
-          <y>90</y>
+          <x>670</x>
+          <y>100</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6439,8 +6462,8 @@
        <widget class="QDoubleSpinBox" name="wg_clEdit">
         <property name="geometry">
          <rect>
-          <x>720</x>
-          <y>90</y>
+          <x>750</x>
+          <y>100</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6464,8 +6487,8 @@
        <widget class="QDoubleSpinBox" name="wg_mgEdit">
         <property name="geometry">
          <rect>
-          <x>400</x>
-          <y>90</y>
+          <x>430</x>
+          <y>100</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6489,8 +6512,8 @@
        <widget class="QDoubleSpinBox" name="wg_so4Edit">
         <property name="geometry">
          <rect>
-          <x>800</x>
-          <y>90</y>
+          <x>830</x>
+          <y>100</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6514,8 +6537,8 @@
        <widget class="QDoubleSpinBox" name="wg_caco3Edit">
         <property name="geometry">
          <rect>
-          <x>560</x>
-          <y>90</y>
+          <x>590</x>
+          <y>100</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6539,8 +6562,8 @@
        <widget class="QDoubleSpinBox" name="wg_phEdit">
         <property name="geometry">
          <rect>
-          <x>880</x>
-          <y>90</y>
+          <x>910</x>
+          <y>100</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6564,8 +6587,8 @@
        <widget class="QDoubleSpinBox" name="w2_raEdit">
         <property name="geometry">
          <rect>
-          <x>1040</x>
-          <y>60</y>
+          <x>1070</x>
+          <y>70</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6592,8 +6615,8 @@
        <widget class="QDoubleSpinBox" name="w2_caEdit">
         <property name="geometry">
          <rect>
-          <x>320</x>
-          <y>60</y>
+          <x>350</x>
+          <y>70</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6617,8 +6640,8 @@
        <widget class="QDoubleSpinBox" name="w2_so4Edit">
         <property name="geometry">
          <rect>
-          <x>800</x>
-          <y>60</y>
+          <x>830</x>
+          <y>70</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6642,8 +6665,8 @@
        <widget class="QDoubleSpinBox" name="w2_mgEdit">
         <property name="geometry">
          <rect>
-          <x>400</x>
-          <y>60</y>
+          <x>430</x>
+          <y>70</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6667,8 +6690,8 @@
        <widget class="QDoubleSpinBox" name="w2_phEdit">
         <property name="geometry">
          <rect>
-          <x>880</x>
-          <y>60</y>
+          <x>910</x>
+          <y>70</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6692,8 +6715,8 @@
        <widget class="QDoubleSpinBox" name="w2_hardnessEdit">
         <property name="geometry">
          <rect>
-          <x>960</x>
-          <y>60</y>
+          <x>990</x>
+          <y>70</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6717,8 +6740,8 @@
        <widget class="QDoubleSpinBox" name="w2_volEdit">
         <property name="geometry">
          <rect>
-          <x>230</x>
-          <y>60</y>
+          <x>250</x>
+          <y>70</y>
           <width>85</width>
           <height>24</height>
          </rect>
@@ -6754,8 +6777,8 @@
        <widget class="QDoubleSpinBox" name="w2_naEdit">
         <property name="geometry">
          <rect>
-          <x>640</x>
-          <y>60</y>
+          <x>670</x>
+          <y>70</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6779,8 +6802,8 @@
        <widget class="QDoubleSpinBox" name="w2_clEdit">
         <property name="geometry">
          <rect>
-          <x>720</x>
-          <y>60</y>
+          <x>750</x>
+          <y>70</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6805,7 +6828,7 @@
         <property name="geometry">
          <rect>
           <x>10</x>
-          <y>60</y>
+          <y>70</y>
           <width>181</width>
           <height>23</height>
          </rect>
@@ -6820,8 +6843,8 @@
        <widget class="QDoubleSpinBox" name="w2_caco3Edit">
         <property name="geometry">
          <rect>
-          <x>560</x>
-          <y>60</y>
+          <x>590</x>
+          <y>70</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6845,8 +6868,8 @@
        <widget class="QDoubleSpinBox" name="w2_hco3Edit">
         <property name="geometry">
          <rect>
-          <x>480</x>
-          <y>60</y>
+          <x>510</x>
+          <y>70</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6870,8 +6893,8 @@
        <widget class="QDoubleSpinBox" name="w1_mgEdit">
         <property name="geometry">
          <rect>
-          <x>400</x>
-          <y>30</y>
+          <x>430</x>
+          <y>40</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6895,8 +6918,8 @@
        <widget class="QDoubleSpinBox" name="w1_hco3Edit">
         <property name="geometry">
          <rect>
-          <x>480</x>
-          <y>30</y>
+          <x>510</x>
+          <y>40</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6920,7 +6943,7 @@
        <widget class="QLabel" name="hardnessLabel">
         <property name="geometry">
          <rect>
-          <x>960</x>
+          <x>990</x>
           <y>10</y>
           <width>71</width>
           <height>20</height>
@@ -6936,8 +6959,8 @@
        <widget class="QDoubleSpinBox" name="w1_phEdit">
         <property name="geometry">
          <rect>
-          <x>880</x>
-          <y>30</y>
+          <x>910</x>
+          <y>40</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -6961,7 +6984,7 @@
        <widget class="QLabel" name="mgLabel">
         <property name="geometry">
          <rect>
-          <x>400</x>
+          <x>430</x>
           <y>10</y>
           <width>71</width>
           <height>20</height>
@@ -6977,7 +7000,7 @@
        <widget class="QLabel" name="phLabel">
         <property name="geometry">
          <rect>
-          <x>880</x>
+          <x>910</x>
           <y>10</y>
           <width>71</width>
           <height>20</height>
@@ -6993,7 +7016,7 @@
        <widget class="QLabel" name="raLabel">
         <property name="geometry">
          <rect>
-          <x>1040</x>
+          <x>1070</x>
           <y>10</y>
           <width>71</width>
           <height>20</height>
@@ -7021,8 +7044,8 @@
        <widget class="QDoubleSpinBox" name="w1_hardnessEdit">
         <property name="geometry">
          <rect>
-          <x>960</x>
-          <y>30</y>
+          <x>990</x>
+          <y>40</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -7046,8 +7069,8 @@
        <widget class="QDoubleSpinBox" name="w1_volEdit">
         <property name="geometry">
          <rect>
-          <x>230</x>
-          <y>30</y>
+          <x>250</x>
+          <y>40</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -7077,8 +7100,8 @@
        <widget class="QDoubleSpinBox" name="w1_so4Edit">
         <property name="geometry">
          <rect>
-          <x>800</x>
-          <y>30</y>
+          <x>830</x>
+          <y>40</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -7102,7 +7125,7 @@
        <widget class="QLabel" name="caco3Label">
         <property name="geometry">
          <rect>
-          <x>560</x>
+          <x>590</x>
           <y>10</y>
           <width>71</width>
           <height>20</height>
@@ -7118,8 +7141,8 @@
        <widget class="QDoubleSpinBox" name="w1_caco3Edit">
         <property name="geometry">
          <rect>
-          <x>560</x>
-          <y>30</y>
+          <x>590</x>
+          <y>40</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -7143,8 +7166,8 @@
        <widget class="QDoubleSpinBox" name="w1_raEdit">
         <property name="geometry">
          <rect>
-          <x>1040</x>
-          <y>30</y>
+          <x>1070</x>
+          <y>40</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -7172,7 +7195,7 @@
         <property name="geometry">
          <rect>
           <x>10</x>
-          <y>30</y>
+          <y>40</y>
           <width>181</width>
           <height>23</height>
          </rect>
@@ -7190,7 +7213,7 @@
        <widget class="QLabel" name="clLabel">
         <property name="geometry">
          <rect>
-          <x>720</x>
+          <x>750</x>
           <y>10</y>
           <width>71</width>
           <height>20</height>
@@ -7206,7 +7229,7 @@
        <widget class="QLabel" name="naLabel">
         <property name="geometry">
          <rect>
-          <x>640</x>
+          <x>670</x>
           <y>10</y>
           <width>71</width>
           <height>20</height>
@@ -7222,7 +7245,7 @@
        <widget class="QLabel" name="caLabel">
         <property name="geometry">
          <rect>
-          <x>320</x>
+          <x>350</x>
           <y>10</y>
           <width>71</width>
           <height>20</height>
@@ -7238,7 +7261,7 @@
        <widget class="QLabel" name="so4Label">
         <property name="geometry">
          <rect>
-          <x>800</x>
+          <x>830</x>
           <y>10</y>
           <width>71</width>
           <height>20</height>
@@ -7254,7 +7277,7 @@
        <widget class="QLabel" name="volLabel">
         <property name="geometry">
          <rect>
-          <x>240</x>
+          <x>260</x>
           <y>10</y>
           <width>61</width>
           <height>20</height>
@@ -7270,7 +7293,7 @@
        <widget class="QLabel" name="hco3Label">
         <property name="geometry">
          <rect>
-          <x>480</x>
+          <x>510</x>
           <y>10</y>
           <width>71</width>
           <height>20</height>
@@ -7302,8 +7325,8 @@
        <widget class="QDoubleSpinBox" name="w1_clEdit">
         <property name="geometry">
          <rect>
-          <x>720</x>
-          <y>30</y>
+          <x>750</x>
+          <y>40</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -7327,8 +7350,8 @@
        <widget class="QDoubleSpinBox" name="w1_caEdit">
         <property name="geometry">
          <rect>
-          <x>320</x>
-          <y>30</y>
+          <x>350</x>
+          <y>40</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -7352,8 +7375,8 @@
        <widget class="QDoubleSpinBox" name="w1_naEdit">
         <property name="geometry">
          <rect>
-          <x>640</x>
-          <y>30</y>
+          <x>670</x>
+          <y>40</y>
           <width>71</width>
           <height>24</height>
          </rect>
@@ -7377,8 +7400,8 @@
        <widget class="QRadioButton" name="w1_spButton">
         <property name="geometry">
          <rect>
-          <x>200</x>
-          <y>30</y>
+          <x>210</x>
+          <y>40</y>
           <width>21</width>
           <height>21</height>
          </rect>
@@ -7399,8 +7422,8 @@
         </property>
         <property name="geometry">
          <rect>
-          <x>200</x>
-          <y>60</y>
+          <x>210</x>
+          <y>70</y>
           <width>21</width>
           <height>21</height>
          </rect>
@@ -7418,8 +7441,8 @@
         </property>
         <property name="geometry">
          <rect>
-          <x>200</x>
-          <y>90</y>
+          <x>210</x>
+          <y>100</y>
           <width>21</width>
           <height>21</height>
          </rect>
@@ -7434,7 +7457,7 @@
        <widget class="QLabel" name="wspLabel">
         <property name="geometry">
          <rect>
-          <x>180</x>
+          <x>190</x>
           <y>10</y>
           <width>61</width>
           <height>20</height>
@@ -7451,7 +7474,7 @@
         <property name="geometry">
          <rect>
           <x>10</x>
-          <y>180</y>
+          <y>160</y>
           <width>171</width>
           <height>21</height>
          </rect>
@@ -7465,6 +7488,10 @@
        </widget>
       </widget>
       <widget class="QWidget" name="brewday">
+       <attribute name="icon">
+        <iconset resource="../../../../../../home/mbroek/MyProjects/bmsapp/resources/icons.qrc">
+         <normaloff>:/icons/silk/calendar_view_day.png</normaloff>:/icons/silk/calendar_view_day.png</iconset>
+       </attribute>
        <attribute name="title">
         <string>Brewday</string>
        </attribute>
@@ -7505,7 +7532,7 @@
          <rect>
           <x>10</x>
           <y>200</y>
-          <width>341</width>
+          <width>351</width>
           <height>241</height>
          </rect>
         </property>
@@ -7872,7 +7899,7 @@
        <widget class="QGroupBox" name="brew_boilBox">
         <property name="geometry">
          <rect>
-          <x>370</x>
+          <x>390</x>
           <y>10</y>
           <width>361</width>
           <height>151</height>
@@ -8161,7 +8188,7 @@
        <widget class="QGroupBox" name="whirlpoolBox">
         <property name="geometry">
          <rect>
-          <x>750</x>
+          <x>780</x>
           <y>10</y>
           <width>361</width>
           <height>151</height>
@@ -8350,7 +8377,7 @@
        <widget class="QGroupBox" name="brew_tofermentBox">
         <property name="geometry">
          <rect>
-          <x>750</x>
+          <x>780</x>
           <y>170</y>
           <width>361</width>
           <height>271</height>
@@ -8740,7 +8767,7 @@
           <x>150</x>
           <y>160</y>
           <width>28</width>
-          <height>22</height>
+          <height>24</height>
          </rect>
         </property>
         <property name="toolTip">
@@ -8757,7 +8784,7 @@
        <widget class="QGroupBox" name="coolingBox">
         <property name="geometry">
          <rect>
-          <x>370</x>
+          <x>390</x>
           <y>330</y>
           <width>361</width>
           <height>121</height>
@@ -8887,7 +8914,7 @@
        <widget class="QGroupBox" name="afterboilBox">
         <property name="geometry">
          <rect>
-          <x>370</x>
+          <x>390</x>
           <y>170</y>
           <width>361</width>
           <height>151</height>
@@ -9357,7 +9384,7 @@
           <x>150</x>
           <y>130</y>
           <width>28</width>
-          <height>22</height>
+          <height>24</height>
          </rect>
         </property>
         <property name="toolTip">
@@ -9743,7 +9770,7 @@
        <widget class="QGroupBox" name="secondaryBox">
         <property name="geometry">
          <rect>
-          <x>590</x>
+          <x>620</x>
           <y>30</y>
           <width>391</width>
           <height>151</height>
@@ -9977,7 +10004,7 @@
        <widget class="QGroupBox" name="tertiaryBox">
         <property name="geometry">
          <rect>
-          <x>590</x>
+          <x>620</x>
           <y>200</y>
           <width>391</width>
           <height>181</height>
@@ -10289,6 +10316,10 @@
        </widget>
       </widget>
       <widget class="QWidget" name="package">
+       <attribute name="icon">
+        <iconset resource="../../../../../../home/mbroek/MyProjects/bmsapp/resources/icons.qrc">
+         <normaloff>:/icons/silk/package.png</normaloff>:/icons/silk/package.png</iconset>
+       </attribute>
        <attribute name="title">
         <string>Package</string>
        </attribute>
@@ -10314,7 +10345,7 @@
           <x>300</x>
           <y>10</y>
           <width>28</width>
-          <height>22</height>
+          <height>24</height>
          </rect>
         </property>
         <property name="toolTip">
@@ -10331,7 +10362,7 @@
        <widget class="QDoubleSpinBox" name="pack_carbloShow">
         <property name="geometry">
          <rect>
-          <x>740</x>
+          <x>760</x>
           <y>10</y>
           <width>71</width>
           <height>24</height>
@@ -10368,7 +10399,7 @@
        <widget class="QLabel" name="pack_carbLabel">
         <property name="geometry">
          <rect>
-          <x>570</x>
+          <x>590</x>
           <y>10</y>
           <width>161</width>
           <height>20</height>
@@ -10384,7 +10415,7 @@
        <widget class="QDoubleSpinBox" name="pack_carbhiShow">
         <property name="geometry">
          <rect>
-          <x>820</x>
+          <x>840</x>
           <y>10</y>
           <width>71</width>
           <height>24</height>
@@ -10423,8 +10454,8 @@
          <rect>
           <x>10</x>
           <y>40</y>
-          <width>1101</width>
-          <height>151</height>
+          <width>1131</width>
+          <height>191</height>
          </rect>
         </property>
         <property name="title">
@@ -10451,7 +10482,7 @@
           <rect>
            <x>340</x>
            <y>80</y>
-           <width>171</width>
+           <width>191</width>
            <height>20</height>
           </rect>
          </property>
@@ -10481,7 +10512,7 @@
         <widget class="QLabel" name="pack_finalabvLabel">
          <property name="geometry">
           <rect>
-           <x>690</x>
+           <x>730</x>
            <y>20</y>
            <width>171</width>
            <height>20</height>
@@ -10499,7 +10530,7 @@
           <rect>
            <x>340</x>
            <y>50</y>
-           <width>171</width>
+           <width>191</width>
            <height>20</height>
           </rect>
          </property>
@@ -10557,7 +10588,7 @@
         <widget class="QDoubleSpinBox" name="pack_addvolEdit">
          <property name="geometry">
           <rect>
-           <x>520</x>
+           <x>540</x>
            <y>80</y>
            <width>91</width>
            <height>24</height>
@@ -10588,7 +10619,7 @@
         <widget class="QDoubleSpinBox" name="pack_finalabvShow">
          <property name="geometry">
           <rect>
-           <x>870</x>
+           <x>910</x>
            <y>20</y>
            <width>91</width>
            <height>24</height>
@@ -10619,7 +10650,7 @@
         <widget class="QDoubleSpinBox" name="pack_addabvEdit">
          <property name="geometry">
           <rect>
-           <x>520</x>
+           <x>540</x>
            <y>50</y>
            <width>91</width>
            <height>24</height>
@@ -10680,8 +10711,8 @@
           <rect>
            <x>170</x>
            <y>110</y>
-           <width>821</width>
-           <height>23</height>
+           <width>831</width>
+           <height>61</height>
           </rect>
          </property>
          <property name="toolTip">
@@ -10694,7 +10725,7 @@
         <widget class="QLabel" name="pack_abvLabel">
          <property name="geometry">
           <rect>
-           <x>320</x>
+           <x>340</x>
            <y>20</y>
            <width>191</width>
            <height>20</height>
@@ -10710,7 +10741,7 @@
         <widget class="QDoubleSpinBox" name="pack_abvShow">
          <property name="geometry">
           <rect>
-           <x>520</x>
+           <x>540</x>
            <y>20</y>
            <width>91</width>
            <height>24</height>
@@ -10741,7 +10772,7 @@
         <widget class="QDoubleSpinBox" name="pack_finalibuShow">
          <property name="geometry">
           <rect>
-           <x>870</x>
+           <x>910</x>
            <y>80</y>
            <width>91</width>
            <height>24</height>
@@ -10775,7 +10806,7 @@
         <widget class="QLabel" name="pack_finalibuLabel">
          <property name="geometry">
           <rect>
-           <x>690</x>
+           <x>730</x>
            <y>80</y>
            <width>171</width>
            <height>20</height>
@@ -10791,7 +10822,7 @@
         <widget class="QLabel" name="pack_finalcolorLabel">
          <property name="geometry">
           <rect>
-           <x>690</x>
+           <x>730</x>
            <y>50</y>
            <width>171</width>
            <height>20</height>
@@ -10807,7 +10838,7 @@
         <widget class="QDoubleSpinBox" name="pack_finalcolorShow">
          <property name="geometry">
           <rect>
-           <x>870</x>
+           <x>910</x>
            <y>50</y>
            <width>91</width>
            <height>24</height>
@@ -10843,8 +10874,8 @@
         <property name="geometry">
          <rect>
           <x>10</x>
-          <y>200</y>
-          <width>541</width>
+          <y>240</y>
+          <width>551</width>
           <height>211</height>
          </rect>
         </property>
@@ -10870,7 +10901,7 @@
         <widget class="QLabel" name="bottle_carbLabel">
          <property name="geometry">
           <rect>
-           <x>270</x>
+           <x>280</x>
            <y>20</y>
            <width>161</width>
            <height>20</height>
@@ -10918,7 +10949,7 @@
         <widget class="QLabel" name="bottle_sug_amountLabel">
          <property name="geometry">
           <rect>
-           <x>310</x>
+           <x>320</x>
            <y>50</y>
            <width>121</width>
            <height>20</height>
@@ -10934,7 +10965,7 @@
         <widget class="QLabel" name="bottle_sug_waterLabel">
          <property name="geometry">
           <rect>
-           <x>270</x>
+           <x>280</x>
            <y>80</y>
            <width>161</width>
            <height>20</height>
@@ -10994,7 +11025,7 @@
         <widget class="QDoubleSpinBox" name="bottle_carbEdit">
          <property name="geometry">
           <rect>
-           <x>440</x>
+           <x>450</x>
            <y>20</y>
            <width>91</width>
            <height>24</height>
@@ -11060,7 +11091,7 @@
         <widget class="QDoubleSpinBox" name="bottle_sug_amountShow">
          <property name="geometry">
           <rect>
-           <x>440</x>
+           <x>450</x>
            <y>50</y>
            <width>91</width>
            <height>24</height>
@@ -11088,7 +11119,7 @@
         <widget class="QDoubleSpinBox" name="bottle_sug_waterEdit">
          <property name="geometry">
           <rect>
-           <x>440</x>
+           <x>450</x>
            <y>80</y>
            <width>91</width>
            <height>24</height>
@@ -11116,7 +11147,7 @@
         <widget class="QLabel" name="bottle_barLabel">
          <property name="geometry">
           <rect>
-           <x>270</x>
+           <x>280</x>
            <y>140</y>
            <width>161</width>
            <height>20</height>
@@ -11204,7 +11235,7 @@
         <widget class="QDoubleSpinBox" name="bottle_barShow">
          <property name="geometry">
           <rect>
-           <x>440</x>
+           <x>450</x>
            <y>140</y>
            <width>91</width>
            <height>24</height>
@@ -11230,9 +11261,9 @@
        <widget class="QGroupBox" name="kegBox">
         <property name="geometry">
          <rect>
-          <x>570</x>
-          <y>200</y>
-          <width>541</width>
+          <x>590</x>
+          <y>240</y>
+          <width>551</width>
           <height>211</height>
          </rect>
         </property>
@@ -11258,7 +11289,7 @@
         <widget class="QLabel" name="keg_barLabel">
          <property name="geometry">
           <rect>
-           <x>270</x>
+           <x>280</x>
            <y>140</y>
            <width>161</width>
            <height>20</height>
@@ -11290,7 +11321,7 @@
         <widget class="QLabel" name="keg_carbLabel">
          <property name="geometry">
           <rect>
-           <x>270</x>
+           <x>280</x>
            <y>20</y>
            <width>161</width>
            <height>20</height>
@@ -11306,7 +11337,7 @@
         <widget class="QLabel" name="keg_sug_waterLabel">
          <property name="geometry">
           <rect>
-           <x>270</x>
+           <x>280</x>
            <y>80</y>
            <width>161</width>
            <height>20</height>
@@ -11322,7 +11353,7 @@
         <widget class="QLabel" name="keg_sug_amountLabel">
          <property name="geometry">
           <rect>
-           <x>310</x>
+           <x>320</x>
            <y>50</y>
            <width>121</width>
            <height>20</height>
@@ -11448,7 +11479,7 @@
         <widget class="QDoubleSpinBox" name="keg_sug_waterEdit">
          <property name="geometry">
           <rect>
-           <x>440</x>
+           <x>450</x>
            <y>80</y>
            <width>91</width>
            <height>24</height>
@@ -11476,7 +11507,7 @@
         <widget class="QDoubleSpinBox" name="keg_sug_amountShow">
          <property name="geometry">
           <rect>
-           <x>440</x>
+           <x>450</x>
            <y>50</y>
            <width>91</width>
            <height>24</height>
@@ -11504,7 +11535,7 @@
         <widget class="QDoubleSpinBox" name="keg_barShow">
          <property name="geometry">
           <rect>
-           <x>440</x>
+           <x>450</x>
            <y>140</y>
            <width>91</width>
            <height>24</height>
@@ -11570,7 +11601,7 @@
         <widget class="QDoubleSpinBox" name="keg_carbEdit">
          <property name="geometry">
           <rect>
-           <x>440</x>
+           <x>450</x>
            <y>20</y>
            <width>91</width>
            <height>24</height>
@@ -11675,7 +11706,7 @@
           <x>340</x>
           <y>10</y>
           <width>28</width>
-          <height>22</height>
+          <height>24</height>
          </rect>
         </property>
         <property name="toolTip">
@@ -11693,7 +11724,7 @@
         <property name="geometry">
          <rect>
           <x>180</x>
-          <y>430</y>
+          <y>470</y>
           <width>28</width>
           <height>22</height>
          </rect>
@@ -11713,7 +11744,7 @@
         <property name="geometry">
          <rect>
           <x>10</x>
-          <y>430</y>
+          <y>470</y>
           <width>161</width>
           <height>20</height>
          </rect>
@@ -11727,14 +11758,18 @@
        </widget>
       </widget>
       <widget class="QWidget" name="taste">
+       <attribute name="icon">
+        <iconset resource="../../../../../../home/mbroek/MyProjects/bmsapp/resources/icons.qrc">
+         <normaloff>:/icons/bms/beerstyles.png</normaloff>:/icons/bms/beerstyles.png</iconset>
+       </attribute>
        <attribute name="title">
         <string>Tasting</string>
        </attribute>
        <widget class="QLabel" name="taste_dateLabel">
         <property name="geometry">
          <rect>
-          <x>10</x>
-          <y>20</y>
+          <x>60</x>
+          <y>40</y>
           <width>161</width>
           <height>20</height>
          </rect>
@@ -11749,8 +11784,8 @@
        <widget class="QToolButton" name="taste_dateButton">
         <property name="geometry">
          <rect>
-          <x>310</x>
-          <y>20</y>
+          <x>360</x>
+          <y>40</y>
           <width>28</width>
           <height>22</height>
          </rect>
@@ -11769,8 +11804,8 @@
        <widget class="QLabel" name="taste_rateLabel">
         <property name="geometry">
          <rect>
-          <x>490</x>
-          <y>20</y>
+          <x>60</x>
+          <y>70</y>
           <width>161</width>
           <height>20</height>
          </rect>
@@ -11785,8 +11820,8 @@
        <widget class="QDoubleSpinBox" name="taste_rateEdit">
         <property name="geometry">
          <rect>
-          <x>660</x>
-          <y>20</y>
+          <x>230</x>
+          <y>70</y>
           <width>81</width>
           <height>24</height>
          </rect>
@@ -11810,8 +11845,8 @@
        <widget class="QLabel" name="taste_colorLabel">
         <property name="geometry">
          <rect>
-          <x>10</x>
-          <y>50</y>
+          <x>60</x>
+          <y>100</y>
           <width>161</width>
           <height>20</height>
          </rect>
@@ -11826,8 +11861,8 @@
        <widget class="QLabel" name="taste_transparencyLabel">
         <property name="geometry">
          <rect>
-          <x>10</x>
-          <y>80</y>
+          <x>60</x>
+          <y>130</y>
           <width>161</width>
           <height>20</height>
          </rect>
@@ -11842,8 +11877,8 @@
        <widget class="QLabel" name="taste_headLabel">
         <property name="geometry">
          <rect>
-          <x>10</x>
-          <y>110</y>
+          <x>60</x>
+          <y>160</y>
           <width>161</width>
           <height>20</height>
          </rect>
@@ -11858,8 +11893,8 @@
        <widget class="QLineEdit" name="taste_colorEdit">
         <property name="geometry">
          <rect>
-          <x>180</x>
-          <y>50</y>
+          <x>230</x>
+          <y>100</y>
           <width>481</width>
           <height>23</height>
          </rect>
@@ -11871,8 +11906,8 @@
        <widget class="QLineEdit" name="taste_headEdit">
         <property name="geometry">
          <rect>
-          <x>180</x>
-          <y>110</y>
+          <x>230</x>
+          <y>160</y>
           <width>791</width>
           <height>23</height>
          </rect>
@@ -11884,8 +11919,8 @@
        <widget class="QLineEdit" name="taste_transparencyEdit">
         <property name="geometry">
          <rect>
-          <x>180</x>
-          <y>80</y>
+          <x>230</x>
+          <y>130</y>
           <width>791</width>
           <height>23</height>
          </rect>
@@ -11897,8 +11932,8 @@
        <widget class="QLabel" name="taste_aromaLabel">
         <property name="geometry">
          <rect>
-          <x>10</x>
-          <y>140</y>
+          <x>60</x>
+          <y>190</y>
           <width>161</width>
           <height>20</height>
          </rect>
@@ -11913,8 +11948,8 @@
        <widget class="QLineEdit" name="taste_aromaEdit">
         <property name="geometry">
          <rect>
-          <x>180</x>
-          <y>140</y>
+          <x>230</x>
+          <y>190</y>
           <width>791</width>
           <height>23</height>
          </rect>
@@ -11926,8 +11961,8 @@
        <widget class="QLabel" name="taste_tasteLabel">
         <property name="geometry">
          <rect>
-          <x>10</x>
-          <y>170</y>
+          <x>60</x>
+          <y>220</y>
           <width>161</width>
           <height>20</height>
          </rect>
@@ -11942,8 +11977,8 @@
        <widget class="QLineEdit" name="taste_tasteEdit">
         <property name="geometry">
          <rect>
-          <x>180</x>
-          <y>170</y>
+          <x>230</x>
+          <y>220</y>
           <width>791</width>
           <height>23</height>
          </rect>
@@ -11955,8 +11990,8 @@
        <widget class="QLabel" name="taste_aftertasteLabel">
         <property name="geometry">
          <rect>
-          <x>10</x>
-          <y>200</y>
+          <x>60</x>
+          <y>250</y>
           <width>161</width>
           <height>20</height>
          </rect>
@@ -11971,8 +12006,8 @@
        <widget class="QLineEdit" name="taste_aftertasteEdit">
         <property name="geometry">
          <rect>
-          <x>180</x>
-          <y>200</y>
+          <x>230</x>
+          <y>250</y>
           <width>791</width>
           <height>23</height>
          </rect>
@@ -11984,8 +12019,8 @@
        <widget class="QLabel" name="taste_mouthfeelLabel">
         <property name="geometry">
          <rect>
-          <x>10</x>
-          <y>230</y>
+          <x>60</x>
+          <y>280</y>
           <width>161</width>
           <height>20</height>
          </rect>
@@ -12000,8 +12035,8 @@
        <widget class="QLineEdit" name="taste_mouthfeelEdit">
         <property name="geometry">
          <rect>
-          <x>180</x>
-          <y>230</y>
+          <x>230</x>
+          <y>280</y>
           <width>791</width>
           <height>23</height>
          </rect>
@@ -12013,8 +12048,8 @@
        <widget class="QLabel" name="taste_notesLabel">
         <property name="geometry">
          <rect>
-          <x>10</x>
-          <y>260</y>
+          <x>60</x>
+          <y>310</y>
           <width>161</width>
           <height>20</height>
          </rect>
@@ -12029,8 +12064,8 @@
        <widget class="QPlainTextEdit" name="taste_notesEdit">
         <property name="geometry">
          <rect>
-          <x>180</x>
-          <y>260</y>
+          <x>230</x>
+          <y>310</y>
           <width>791</width>
           <height>101</height>
          </rect>
@@ -12039,8 +12074,8 @@
        <widget class="NullDateEdit" name="taste_dateEdit">
         <property name="geometry">
          <rect>
-          <x>180</x>
-          <y>20</y>
+          <x>230</x>
+          <y>40</y>
           <width>111</width>
           <height>24</height>
          </rect>
@@ -12058,8 +12093,8 @@
        <widget class="QToolButton" name="taste_ackButton">
         <property name="geometry">
          <rect>
-          <x>350</x>
-          <y>20</y>
+          <x>400</x>
+          <y>40</y>
           <width>28</width>
           <height>22</height>
          </rect>
@@ -12076,12 +12111,31 @@
         </property>
        </widget>
       </widget>
+      <widget class="QWidget" name="images">
+       <attribute name="icon">
+        <iconset resource="../../../../../../home/mbroek/MyProjects/bmsapp/resources/icons.qrc">
+         <normaloff>:/icons/silk/image.png</normaloff>:/icons/silk/image.png</iconset>
+       </attribute>
+       <attribute name="title">
+        <string>Images</string>
+       </attribute>
+       <widget class="QListView" name="filmView">
+        <property name="geometry">
+         <rect>
+          <x>20</x>
+          <y>30</y>
+          <width>1111</width>
+          <height>141</height>
+         </rect>
+        </property>
+       </widget>
+      </widget>
      </widget>
      <widget class="QPushButton" name="exportButton">
       <property name="geometry">
        <rect>
-        <x>300</x>
-        <y>510</y>
+        <x>330</x>
+        <y>550</y>
         <width>80</width>
         <height>23</height>
        </rect>
@@ -12097,8 +12151,8 @@
      <widget class="QPushButton" name="printButton">
       <property name="geometry">
        <rect>
-        <x>730</x>
-        <y>510</y>
+        <x>780</x>
+        <y>550</y>
         <width>80</width>
         <height>23</height>
        </rect>

mercurial