Adjusted chiller_loss default value to 0.4. Disabled product fields eq_calc_boil_volume, eq_hop_utilization, eq_lauter_volume and eq_lauter_height. Added eq_chiller_type, eq_chiller_to79, eq_chiller_volume, eq_chiller_lpm, eq_chiller_loss with default values for immersion chilling. Load these values from new selected equipment. Changed edit product tab 2 to show new the new fields and removed the obsolete fields.

Mon, 24 Oct 2022 19:59:08 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 24 Oct 2022 19:59:08 +0200
changeset 423
8cb46020796a
parent 422
d7907c91f746
child 424
f7e0efc8df02

Adjusted chiller_loss default value to 0.4. Disabled product fields eq_calc_boil_volume, eq_hop_utilization, eq_lauter_volume and eq_lauter_height. Added eq_chiller_type, eq_chiller_to79, eq_chiller_volume, eq_chiller_lpm, eq_chiller_loss with default values for immersion chilling. Load these values from new selected equipment. Changed edit product tab 2 to show new the new fields and removed the obsolete fields.

src/EditEquipment.cpp file | annotate | diff | comparison | revisions
src/EditProduct.cpp file | annotate | diff | comparison | revisions
src/EditProductTab2.cpp file | annotate | diff | comparison | revisions
src/EditRecipeExport.cpp file | annotate | diff | comparison | revisions
src/database/db_product.cpp file | annotate | diff | comparison | revisions
src/global.h file | annotate | diff | comparison | revisions
translations/bmsapp_en.ts file | annotate | diff | comparison | revisions
translations/bmsapp_nl.ts file | annotate | diff | comparison | revisions
ui/EditProduct.ui file | annotate | diff | comparison | revisions
--- a/src/EditEquipment.cpp	Mon Oct 24 16:06:14 2022 +0200
+++ b/src/EditEquipment.cpp	Mon Oct 24 19:59:08 2022 +0200
@@ -399,7 +399,7 @@
         ui->chiller_lossEdit->setButtonSymbols(QAbstractSpinBox::UpDownArrows);
         ui->chiller_lossEdit->setFixedSize(101, 24);
         if (ui->chiller_lossEdit->value() == 0)
-             ui->chiller_lossEdit->setValue(3);
+             ui->chiller_lossEdit->setValue(0.4);
 
     } else {
 	ui->chiller_to79Edit->setReadOnly(false);
--- a/src/EditProduct.cpp	Mon Oct 24 16:06:14 2022 +0200
+++ b/src/EditProduct.cpp	Mon Oct 24 19:59:08 2022 +0200
@@ -181,10 +181,11 @@
 	product->eq_top_up_water = 0;
 	product->eq_trub_chiller_loss = 0.5;
 	product->eq_evap_rate = 1.8;
-	product->eq_calc_boil_volume = true;
+//	product->eq_calc_boil_volume = true;
 	product->eq_top_up_kettle = 0;
-	product->eq_hop_utilization = 100;
-	product->eq_lauter_volume = product->eq_lauter_height = product->eq_kettle_volume = product->eq_kettle_height = product->eq_mash_volume = 20;
+//	product->eq_hop_utilization = 100;
+//	product->eq_lauter_volume = product->eq_lauter_height = 
+	product->eq_kettle_volume = product->eq_kettle_height = product->eq_mash_volume = 20;
 	product->eq_lauter_deadspace = 0.5;
 	product->eq_mash_max = 6;
 	product->eq_efficiency = 75;
--- a/src/EditProductTab2.cpp	Mon Oct 24 16:06:14 2022 +0200
+++ b/src/EditProductTab2.cpp	Mon Oct 24 19:59:08 2022 +0200
@@ -30,21 +30,26 @@
     ui->mash_maxEdit->setValue(product->eq_mash_max);
 
     /* Lautering */
-    ui->lauter_volumeEdit->setValue(product->eq_lauter_volume);
     ui->lauter_deadspaceEdit->setValue(product->eq_lauter_deadspace);
+    ui->eq_efficiencyEdit->setValue(product->eq_efficiency);
 
     /* Boiling */
     ui->kettle_volumeEdit->setValue(product->eq_kettle_volume);
+    ui->kettle_lossEdit->setValue(product->eq_trub_chiller_loss);
     ui->eqboil_sizeEdit->setValue(product->eq_boil_size);
     ui->evap_rateEdit->setValue(product->eq_evap_rate);
     ui->eqboil_timeEdit->setValue(product->eq_boil_time);
     ui->topup_kettleEdit->setValue(product->eq_top_up_kettle);
-    ui->hop_utilizationEdit->setValue(product->eq_hop_utilization);
     ui->eqbatch_sizeEdit->setValue(product->eq_batch_size);
-    ui->eq_efficiencyEdit->setValue(product->eq_efficiency);
 
     /* Chilling */
-    ui->trub_chillerlossEdit->setValue(product->eq_trub_chiller_loss);
+    ui->chiller_typeEdit->setText(QCoreApplication::translate("ChillerType", g_chiller_types[product->eq_chiller_type]));
+    ui->chiller_to79Edit->setValue(product->eq_chiller_to79);
+    ui->chiller_volumeEdit->setValue(product->eq_chiller_volume);
+    ui->chiller_lpmEdit->setValue(product->eq_chiller_lpm);
+    ui->chiller_lossEdit->setValue(product->eq_chiller_loss);
+
+    /* Transfer */
     ui->topup_waterEdit->setValue(product->eq_top_up_water);
 }
 
@@ -95,17 +100,22 @@
     product->eq_trub_chiller_loss = query.value("trub_chiller_loss").toDouble();
     product->eq_evap_rate = query.value("evap_rate").toDouble();
     product->eq_boil_time = query.value("boil_time").toDouble();
-    product->eq_calc_boil_volume = query.value("calc_boil_volume").toInt() ? true:false;
+    //product->eq_calc_boil_volume = query.value("calc_boil_volume").toInt() ? true:false;
     product->eq_top_up_kettle = query.value("top_up_kettle").toDouble();
-    product->eq_hop_utilization = query.value("hop_utilization").toDouble();
-    product->eq_lauter_volume = query.value("lauter_volume").toDouble();
-    product->eq_lauter_height = query.value("lauter_height").toDouble();
+    //product->eq_hop_utilization = query.value("hop_utilization").toDouble();
+    //product->eq_lauter_volume = query.value("lauter_volume").toDouble();
+    //product->eq_lauter_height = query.value("lauter_height").toDouble();
     product->eq_lauter_deadspace = query.value("lauter_deadspace").toDouble();
     product->eq_kettle_volume = query.value("kettle_volume").toDouble();
     product->eq_kettle_height = query.value("kettle_height").toDouble();
     product->eq_mash_volume = query.value("mash_volume").toDouble();
     product->eq_mash_max = query.value("mash_max").toDouble();
     product->eq_efficiency = query.value("efficiency").toDouble();
+    product->eq_chiller_type = query.value("chiller_type").toInt();
+    product->eq_chiller_to79 = query.value("chiller_to79").toDouble();
+    product->eq_chiller_volume = query.value("chiller_volume").toDouble();
+    product->eq_chiller_lpm = query.value("chiller_lpm").toDouble();
+    product->eq_chiller_loss = query.value("chiller_loss").toDouble();
     showEquipment();
 
     /*
--- a/src/EditRecipeExport.cpp	Mon Oct 24 16:06:14 2022 +0200
+++ b/src/EditRecipeExport.cpp	Mon Oct 24 19:59:08 2022 +0200
@@ -315,16 +315,21 @@
 //    p->eq_top_up_water = 0;
     p->eq_trub_chiller_loss = 0.5;
     p->eq_evap_rate = 1.8;
-    p->eq_calc_boil_volume = true;
+//    p->eq_calc_boil_volume = true;
 //    p->eq_top_up_kettle = 0;
-    p->eq_hop_utilization = 100;
-    p->eq_lauter_volume = p->eq_lauter_height = p->eq_kettle_volume = p->eq_kettle_height = p->eq_mash_volume = 20;
+//    p->eq_hop_utilization = 100;
+//    p->eq_lauter_volume = p->eq_lauter_height
+    p->eq_kettle_volume = p->eq_kettle_height = p->eq_mash_volume = 20;
     p->eq_lauter_deadspace = 0.5;
     p->eq_mash_max = 6;
     p->eq_efficiency = p->efficiency = recipe->efficiency;
     p->eq_batch_size = p->batch_size = recipe->batch_size;
     p->eq_boil_time = p->boil_time = recipe->boil_time;
     p->eq_boil_size = p->boil_size = p->batch_size + (round(p->batch_size * p->boil_time / 60.0) / 10.0);
+    p->eq_chiller_type = CHILLER_TYPE_IMMERSION;
+    p->eq_chiller_volume = 0.5;
+    p->eq_chiller_to79 = 5;
+    p->eq_chiller_lpm = p->eq_chiller_loss = 0;
     p->type = 2;
     p->color_method = recipe->color_method;
     p->ibu_method = recipe->ibu_method;
--- a/src/database/db_product.cpp	Mon Oct 24 16:06:14 2022 +0200
+++ b/src/database/db_product.cpp	Mon Oct 24 19:59:08 2022 +0200
@@ -64,17 +64,22 @@
     prod->eq_trub_chiller_loss = query.value("eq_trub_chiller_loss").toDouble();
     prod->eq_evap_rate = query.value("eq_evap_rate").toDouble();
     prod->eq_boil_time = query.value("eq_boil_time").toDouble();
-    prod->eq_calc_boil_volume = query.value("eq_calc_boil_volume").toInt() ? true:false;
+//    prod->eq_calc_boil_volume = query.value("eq_calc_boil_volume").toInt() ? true:false;
     prod->eq_top_up_kettle = query.value("eq_top_up_kettle").toDouble();
-    prod->eq_hop_utilization = query.value("eq_hop_utilization").toDouble();
-    prod->eq_lauter_volume = query.value("eq_lauter_volume").toDouble();
-    prod->eq_lauter_height = query.value("eq_lauter_height").toDouble();
+//    prod->eq_hop_utilization = query.value("eq_hop_utilization").toDouble();
+//    prod->eq_lauter_volume = query.value("eq_lauter_volume").toDouble();
+//    prod->eq_lauter_height = query.value("eq_lauter_height").toDouble();
     prod->eq_lauter_deadspace = query.value("eq_lauter_deadspace").toDouble();
     prod->eq_kettle_volume = query.value("eq_kettle_volume").toDouble();
     prod->eq_kettle_height = query.value("eq_kettle_height").toDouble();
     prod->eq_mash_volume = query.value("eq_mash_volume").toDouble();
     prod->eq_mash_max = query.value("eq_mash_max").toDouble();
     prod->eq_efficiency = query.value("eq_efficiency").toDouble();
+    prod->eq_chiller_type = query.value("eq_chiller_type").toInt();
+    prod->eq_chiller_to79 = query.value("eq_chiller_to79").toDouble();
+    prod->eq_chiller_volume = query.value("eq_chiller_volume").toDouble();
+    prod->eq_chiller_lpm = query.value("eq_chiller_lpm").toDouble();
+    prod->eq_chiller_loss = query.value("eq_chiller_loss").toDouble();
 
     prod->brew_date_start = query.value("brew_date_start").toDateTime();
     prod->brew_mash_ph = query.value("brew_mash_ph").toDouble();
@@ -561,10 +566,11 @@
         "eq_batch_size=:eq_batch_size, eq_tun_volume=:eq_tun_volume, eq_tun_weight=:eq_tun_weight, "
         "eq_tun_specific_heat=:eq_tun_specific_heat, eq_tun_material=:eq_tun_material, eq_tun_height=:eq_tun_height, "
         "eq_top_up_water=:eq_top_up_water, eq_trub_chiller_loss=:eq_chiller_loss, eq_evap_rate=:eq_evap_rate, "
-        "eq_boil_time=:eq_boil_time, eq_calc_boil_volume=:eq_calcboil, eq_top_up_kettle=:eq_top_up_kettle, "
-        "eq_hop_utilization=:eq_hopfactor, eq_notes=:eq_notes, eq_lauter_volume=:eq_lauter_volume, "
-        "eq_lauter_height=:eq_lauter_height, eq_lauter_deadspace=:eq_lauter_deadspace, eq_kettle_volume=:eq_kettle_volume, "
+        "eq_boil_time=:eq_boil_time, eq_top_up_kettle=:eq_top_up_kettle, eq_notes=:eq_notes, "
+        "eq_lauter_deadspace=:eq_lauter_deadspace, eq_kettle_volume=:eq_kettle_volume, "
         "eq_kettle_height=:eq_kettle_height, eq_mash_volume=:eq_mash_volume, eq_mash_max=:eq_mash_max, "
+	"eq_chiller_type=:eq_chiller_type, eq_chiller_to79=:eq_chiller_to79, eq_chiller_volume=:eq_chiller_volume, "
+	"eq_chiller_lpm=:eq_chiller_lpm, eq_chiller_loss=:eq_chiller_loss, "
 	"brew_date_start=:brew_date_start, brew_mash_ph=:brew_mash_ph, brew_mash_sg=:brew_mash_sg, "
 	"brew_mash_efficiency=:brew_mash_efficiency, brew_sparge_temperature=:brew_sparge_temperature, "
 	"brew_sparge_volume=:brew_sparge_volume, brew_sparge_est=:brew_sparge_est, brew_sparge_ph=:brew_sparge_ph, "
@@ -655,12 +661,12 @@
     query.bindValue(":eq_chiller_loss", round(prod->eq_trub_chiller_loss * 10) / 10);
     query.bindValue(":eq_evap_rate", round(prod->eq_evap_rate * 100) / 100);
     query.bindValue(":eq_boil_time", round(prod->eq_boil_time));
-    query.bindValue(":eq_calcboil", prod->eq_calc_boil_volume ? 1:0);
+    //query.bindValue(":eq_calcboil", prod->eq_calc_boil_volume ? 1:0);
     query.bindValue(":eq_top_up_kettle", round(prod->eq_top_up_kettle * 10) / 10);
-    query.bindValue(":eq_hopfactor", round(prod->eq_hop_utilization));
+    //query.bindValue(":eq_hopfactor", round(prod->eq_hop_utilization));
     query.bindValue(":eq_notes", prod->eq_notes);
-    query.bindValue(":eq_lauter_volume", round(prod->eq_lauter_volume * 10) / 10);
-    query.bindValue(":eq_lauter_height", round(prod->eq_lauter_height * 1000) / 1000);
+    //query.bindValue(":eq_lauter_volume", round(prod->eq_lauter_volume * 10) / 10);
+    //query.bindValue(":eq_lauter_height", round(prod->eq_lauter_height * 1000) / 1000);
     query.bindValue(":eq_lauter_deadspace", round(prod->eq_lauter_deadspace * 10) / 10);
     query.bindValue(":eq_kettle_volume", round(prod->eq_kettle_volume * 10) / 10);
     query.bindValue(":eq_kettle_height", round(prod->eq_kettle_height * 1000) / 1000);
--- a/src/global.h	Mon Oct 24 16:06:14 2022 +0200
+++ b/src/global.h	Mon Oct 24 19:59:08 2022 +0200
@@ -442,17 +442,22 @@
     double	eq_trub_chiller_loss;
     double	eq_evap_rate;
     double	eq_boil_time;
-    bool	eq_calc_boil_volume;
+    bool	xeq_calc_boil_volume;
     double	eq_top_up_kettle;
-    double	eq_hop_utilization;
-    double	eq_lauter_volume;
-    double	eq_lauter_height;
+    double	xeq_hop_utilization;
+    double	xeq_lauter_volume;
+    double	xeq_lauter_height;
     double	eq_lauter_deadspace;
     double	eq_kettle_volume;
     double	eq_kettle_height;
     double	eq_mash_volume;
     double	eq_mash_max;
     double	eq_efficiency;
+    int		eq_chiller_type;
+    double	eq_chiller_to79;
+    double	eq_chiller_volume;
+    double	eq_chiller_lpm;
+    double	eq_chiller_loss;
 
     QDateTime	brew_date_start;
     double	brew_mash_ph;
--- a/translations/bmsapp_en.ts	Mon Oct 24 16:06:14 2022 +0200
+++ b/translations/bmsapp_en.ts	Mon Oct 24 19:59:08 2022 +0200
@@ -2257,27 +2257,26 @@
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="240"/>
-        <location filename="../ui/EditProduct.ui" line="2316"/>
-        <location filename="../ui/EditProduct.ui" line="7673"/>
-        <location filename="../ui/EditProduct.ui" line="8645"/>
+        <location filename="../ui/EditProduct.ui" line="7882"/>
+        <location filename="../ui/EditProduct.ui" line="8854"/>
         <source>Efficiency:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="256"/>
-        <location filename="../ui/EditProduct.ui" line="2116"/>
+        <location filename="../ui/EditProduct.ui" line="2262"/>
         <source>Boil time:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="272"/>
-        <location filename="../ui/EditProduct.ui" line="2266"/>
+        <location filename="../ui/EditProduct.ui" line="2362"/>
         <source>Batch size:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="288"/>
-        <location filename="../ui/EditProduct.ui" line="2016"/>
+        <location filename="../ui/EditProduct.ui" line="2162"/>
         <source>Boil size:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2286,39 +2285,38 @@
         <location filename="../ui/EditProduct.ui" line="471"/>
         <location filename="../ui/EditProduct.ui" line="640"/>
         <location filename="../ui/EditProduct.ui" line="1031"/>
-        <location filename="../ui/EditProduct.ui" line="2244"/>
-        <location filename="../ui/EditProduct.ui" line="2344"/>
-        <location filename="../ui/EditProduct.ui" line="3146"/>
-        <location filename="../ui/EditProduct.ui" line="3199"/>
-        <location filename="../ui/EditProduct.ui" line="3861"/>
-        <location filename="../ui/EditProduct.ui" line="7366"/>
-        <location filename="../ui/EditProduct.ui" line="7767"/>
-        <location filename="../ui/EditProduct.ui" line="8761"/>
-        <location filename="../ui/EditProduct.ui" line="9342"/>
-        <location filename="../ui/EditProduct.ui" line="9576"/>
-        <location filename="../ui/EditProduct.ui" line="9794"/>
-        <location filename="../ui/EditProduct.ui" line="9896"/>
-        <location filename="../ui/EditProduct.ui" line="10041"/>
-        <location filename="../ui/EditProduct.ui" line="10094"/>
-        <location filename="../ui/EditProduct.ui" line="10298"/>
-        <location filename="../ui/EditProduct.ui" line="10332"/>
-        <location filename="../ui/EditProduct.ui" line="10420"/>
-        <location filename="../ui/EditProduct.ui" line="10598"/>
-        <location filename="../ui/EditProduct.ui" line="10783"/>
-        <location filename="../ui/EditProduct.ui" line="11011"/>
-        <location filename="../ui/EditProduct.ui" line="11174"/>
+        <location filename="../ui/EditProduct.ui" line="1802"/>
+        <location filename="../ui/EditProduct.ui" line="3355"/>
+        <location filename="../ui/EditProduct.ui" line="3408"/>
+        <location filename="../ui/EditProduct.ui" line="4070"/>
+        <location filename="../ui/EditProduct.ui" line="7575"/>
+        <location filename="../ui/EditProduct.ui" line="7976"/>
+        <location filename="../ui/EditProduct.ui" line="8970"/>
+        <location filename="../ui/EditProduct.ui" line="9551"/>
+        <location filename="../ui/EditProduct.ui" line="9785"/>
+        <location filename="../ui/EditProduct.ui" line="10003"/>
+        <location filename="../ui/EditProduct.ui" line="10105"/>
+        <location filename="../ui/EditProduct.ui" line="10250"/>
+        <location filename="../ui/EditProduct.ui" line="10303"/>
+        <location filename="../ui/EditProduct.ui" line="10507"/>
+        <location filename="../ui/EditProduct.ui" line="10541"/>
+        <location filename="../ui/EditProduct.ui" line="10629"/>
+        <location filename="../ui/EditProduct.ui" line="10807"/>
+        <location filename="../ui/EditProduct.ui" line="10992"/>
+        <location filename="../ui/EditProduct.ui" line="11220"/>
+        <location filename="../ui/EditProduct.ui" line="11383"/>
         <source> %</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="335"/>
-        <location filename="../ui/EditProduct.ui" line="2144"/>
-        <location filename="../ui/EditProduct.ui" line="7964"/>
-        <location filename="../ui/EditProduct.ui" line="7992"/>
-        <location filename="../ui/EditProduct.ui" line="8020"/>
-        <location filename="../ui/EditProduct.ui" line="8048"/>
-        <location filename="../ui/EditProduct.ui" line="8435"/>
-        <location filename="../ui/EditProduct.ui" line="8556"/>
+        <location filename="../ui/EditProduct.ui" line="2290"/>
+        <location filename="../ui/EditProduct.ui" line="8173"/>
+        <location filename="../ui/EditProduct.ui" line="8201"/>
+        <location filename="../ui/EditProduct.ui" line="8229"/>
+        <location filename="../ui/EditProduct.ui" line="8257"/>
+        <location filename="../ui/EditProduct.ui" line="8644"/>
+        <location filename="../ui/EditProduct.ui" line="8765"/>
         <source> min</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2328,36 +2326,35 @@
         <location filename="../ui/EditProduct.ui" line="1576"/>
         <location filename="../ui/EditProduct.ui" line="1660"/>
         <location filename="../ui/EditProduct.ui" line="1752"/>
-        <location filename="../ui/EditProduct.ui" line="1818"/>
-        <location filename="../ui/EditProduct.ui" line="1881"/>
-        <location filename="../ui/EditProduct.ui" line="1931"/>
-        <location filename="../ui/EditProduct.ui" line="1994"/>
-        <location filename="../ui/EditProduct.ui" line="2044"/>
-        <location filename="../ui/EditProduct.ui" line="2094"/>
-        <location filename="../ui/EditProduct.ui" line="2194"/>
-        <location filename="../ui/EditProduct.ui" line="2294"/>
-        <location filename="../ui/EditProduct.ui" line="2898"/>
-        <location filename="../ui/EditProduct.ui" line="2954"/>
-        <location filename="../ui/EditProduct.ui" line="4064"/>
-        <location filename="../ui/EditProduct.ui" line="5400"/>
-        <location filename="../ui/EditProduct.ui" line="6136"/>
-        <location filename="../ui/EditProduct.ui" line="6473"/>
-        <location filename="../ui/EditProduct.ui" line="6799"/>
-        <location filename="../ui/EditProduct.ui" line="7474"/>
-        <location filename="../ui/EditProduct.ui" line="7540"/>
-        <location filename="../ui/EditProduct.ui" line="7792"/>
-        <location filename="../ui/EditProduct.ui" line="7823"/>
-        <location filename="../ui/EditProduct.ui" line="8137"/>
-        <location filename="../ui/EditProduct.ui" line="8165"/>
-        <location filename="../ui/EditProduct.ui" line="8199"/>
-        <location filename="../ui/EditProduct.ui" line="8626"/>
-        <location filename="../ui/EditProduct.ui" line="8711"/>
-        <location filename="../ui/EditProduct.ui" line="10233"/>
-        <location filename="../ui/EditProduct.ui" line="10264"/>
-        <location filename="../ui/EditProduct.ui" line="10570"/>
-        <location filename="../ui/EditProduct.ui" line="10692"/>
-        <location filename="../ui/EditProduct.ui" line="11052"/>
-        <location filename="../ui/EditProduct.ui" line="11133"/>
+        <location filename="../ui/EditProduct.ui" line="2140"/>
+        <location filename="../ui/EditProduct.ui" line="2190"/>
+        <location filename="../ui/EditProduct.ui" line="2240"/>
+        <location filename="../ui/EditProduct.ui" line="2340"/>
+        <location filename="../ui/EditProduct.ui" line="2390"/>
+        <location filename="../ui/EditProduct.ui" line="2440"/>
+        <location filename="../ui/EditProduct.ui" line="2487"/>
+        <location filename="../ui/EditProduct.ui" line="3107"/>
+        <location filename="../ui/EditProduct.ui" line="3163"/>
+        <location filename="../ui/EditProduct.ui" line="4273"/>
+        <location filename="../ui/EditProduct.ui" line="5609"/>
+        <location filename="../ui/EditProduct.ui" line="6345"/>
+        <location filename="../ui/EditProduct.ui" line="6682"/>
+        <location filename="../ui/EditProduct.ui" line="7008"/>
+        <location filename="../ui/EditProduct.ui" line="7683"/>
+        <location filename="../ui/EditProduct.ui" line="7749"/>
+        <location filename="../ui/EditProduct.ui" line="8001"/>
+        <location filename="../ui/EditProduct.ui" line="8032"/>
+        <location filename="../ui/EditProduct.ui" line="8346"/>
+        <location filename="../ui/EditProduct.ui" line="8374"/>
+        <location filename="../ui/EditProduct.ui" line="8408"/>
+        <location filename="../ui/EditProduct.ui" line="8835"/>
+        <location filename="../ui/EditProduct.ui" line="8920"/>
+        <location filename="../ui/EditProduct.ui" line="10442"/>
+        <location filename="../ui/EditProduct.ui" line="10473"/>
+        <location filename="../ui/EditProduct.ui" line="10779"/>
+        <location filename="../ui/EditProduct.ui" line="10901"/>
+        <location filename="../ui/EditProduct.ui" line="11261"/>
+        <location filename="../ui/EditProduct.ui" line="11342"/>
         <location filename="../src/EditProductExport.cpp" line="837"/>
         <location filename="../src/EditProductExport.cpp" line="845"/>
         <source> L</source>
@@ -2370,20 +2367,20 @@
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="530"/>
-        <location filename="../ui/EditProduct.ui" line="3118"/>
+        <location filename="../ui/EditProduct.ui" line="3327"/>
         <source>Estimated ABV:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="546"/>
-        <location filename="../ui/EditProduct.ui" line="3071"/>
+        <location filename="../ui/EditProduct.ui" line="3280"/>
         <source>Estimated FG:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="582"/>
-        <location filename="../ui/EditProduct.ui" line="2426"/>
-        <location filename="../ui/EditProduct.ui" line="3024"/>
+        <location filename="../ui/EditProduct.ui" line="2635"/>
+        <location filename="../ui/EditProduct.ui" line="3233"/>
         <source>Estimated OG:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2414,7 +2411,7 @@
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="843"/>
-        <location filename="../ui/EditProduct.ui" line="2714"/>
+        <location filename="../ui/EditProduct.ui" line="2923"/>
         <source>Estimated IBU:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2564,1331 +2561,1387 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="1790"/>
-        <source>Lauter volume:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ui/EditProduct.ui" line="1841"/>
         <source>Chilling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ui/EditProduct.ui" line="2463"/>
+        <source>Transfer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="8324"/>
+        <source>Top up water:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="2100"/>
+        <source>Boiling</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="1824"/>
+        <source>Brewhouse efficiency:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ui/EditProduct.ui" line="1853"/>
-        <source>Trub chiller loss:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="1903"/>
-        <location filename="../ui/EditProduct.ui" line="8115"/>
-        <source>Top up water:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="1954"/>
-        <source>Boiling</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="1966"/>
+        <source>Liters per minute to pump trough the chiller. 
+Used to calculate the time needed to transfer the wort.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="1888"/>
+        <source>Transfer liters/minute:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="1904"/>
+        <source>Minutes elapsed to cool to 79 °C</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="1941"/>
+        <source>Volume lost in hoses, pump ...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="1984"/>
+        <source>Transfer loss L:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="2000"/>
+        <source>Immersion chiller L:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="2016"/>
+        <source>Wort chiller type:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="2032"/>
+        <source>Minutes to cool to 79 °C:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="2048"/>
+        <source>Temporary extra volume of the immersion chiller in the kettle.
+Used to correct the after boil volume.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="2112"/>
         <source>Kettle volume:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2066"/>
+        <location filename="../ui/EditProduct.ui" line="2212"/>
         <source>Evaporation / hour:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2166"/>
+        <location filename="../ui/EditProduct.ui" line="2312"/>
         <source>Top up kettle:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2216"/>
-        <source>Hop utilization:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="2364"/>
+        <location filename="../ui/EditProduct.ui" line="2412"/>
+        <source>Kettle trub loss:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="2509"/>
+        <source>Extra water in fermenter:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="2559"/>
+        <source>Volume in fermenter L:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="2573"/>
         <source>Fermentables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2376"/>
+        <location filename="../ui/EditProduct.ui" line="2585"/>
         <source>Color EBC:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2473"/>
+        <location filename="../ui/EditProduct.ui" line="2682"/>
         <source>Mash tun %:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2489"/>
+        <location filename="../ui/EditProduct.ui" line="2698"/>
         <source>Sugars %:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2505"/>
+        <location filename="../ui/EditProduct.ui" line="2714"/>
         <source>Cara/crystal %:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2521"/>
+        <location filename="../ui/EditProduct.ui" line="2730"/>
         <source>Lintner:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2556"/>
+        <location filename="../ui/EditProduct.ui" line="2765"/>
         <source>%v lintner</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2578"/>
-        <location filename="../ui/EditProduct.ui" line="2600"/>
-        <location filename="../ui/EditProduct.ui" line="2622"/>
-        <location filename="../ui/EditProduct.ui" line="2805"/>
-        <location filename="../ui/EditProduct.ui" line="2827"/>
+        <location filename="../ui/EditProduct.ui" line="2787"/>
+        <location filename="../ui/EditProduct.ui" line="2809"/>
+        <location filename="../ui/EditProduct.ui" line="2831"/>
+        <location filename="../ui/EditProduct.ui" line="3014"/>
+        <location filename="../ui/EditProduct.ui" line="3036"/>
         <source>%v%</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2635"/>
-        <location filename="../ui/EditProduct.ui" line="2850"/>
-        <location filename="../ui/EditProduct.ui" line="2998"/>
-        <location filename="../ui/EditProduct.ui" line="3780"/>
-        <location filename="../ui/EditProduct.ui" line="3935"/>
+        <location filename="../ui/EditProduct.ui" line="2844"/>
+        <location filename="../ui/EditProduct.ui" line="3059"/>
+        <location filename="../ui/EditProduct.ui" line="3207"/>
+        <location filename="../ui/EditProduct.ui" line="3989"/>
+        <location filename="../ui/EditProduct.ui" line="4144"/>
         <location filename="../src/EditProductExport.cpp" line="865"/>
         <source>Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2664"/>
+        <location filename="../ui/EditProduct.ui" line="2873"/>
         <source> kg</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2689"/>
+        <location filename="../ui/EditProduct.ui" line="2898"/>
         <source>Mash weight:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2702"/>
+        <location filename="../ui/EditProduct.ui" line="2911"/>
         <source>Hops</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2764"/>
+        <location filename="../ui/EditProduct.ui" line="2973"/>
         <source>Hop taste:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2780"/>
+        <location filename="../ui/EditProduct.ui" line="2989"/>
         <source>Hop aroma:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2867"/>
+        <location filename="../ui/EditProduct.ui" line="3076"/>
         <source>Boil absorb:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2883"/>
+        <location filename="../ui/EditProduct.ui" line="3092"/>
         <source>Loss by hop absorption in the boil kettle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2923"/>
+        <location filename="../ui/EditProduct.ui" line="3132"/>
         <source>Fermenter absorb:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2939"/>
+        <location filename="../ui/EditProduct.ui" line="3148"/>
         <source>Loss in the fermenter caused by dry-hopping</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2976"/>
+        <location filename="../ui/EditProduct.ui" line="3185"/>
         <source>Miscs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3012"/>
+        <location filename="../ui/EditProduct.ui" line="3221"/>
         <source>Yeasts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3171"/>
+        <location filename="../ui/EditProduct.ui" line="3380"/>
         <source>Apparent Attenuation:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3276"/>
+        <location filename="../ui/EditProduct.ui" line="3485"/>
         <source>Pitchrate billion cells/ml/°P:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3302"/>
+        <location filename="../ui/EditProduct.ui" line="3511"/>
         <source>Starter method:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3318"/>
+        <location filename="../ui/EditProduct.ui" line="3527"/>
         <source>Starter SG:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3365"/>
-        <location filename="../ui/EditProduct.ui" line="10009"/>
-        <location filename="../ui/EditProduct.ui" line="11270"/>
-        <location filename="../ui/EditProduct.ui" line="11347"/>
-        <location filename="../ui/EditProduct.ui" line="11656"/>
+        <location filename="../ui/EditProduct.ui" line="3574"/>
+        <location filename="../ui/EditProduct.ui" line="10218"/>
+        <location filename="../ui/EditProduct.ui" line="11479"/>
+        <location filename="../ui/EditProduct.ui" line="11556"/>
+        <location filename="../ui/EditProduct.ui" line="11865"/>
         <source>Set or clear date</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3368"/>
-        <location filename="../ui/EditProduct.ui" line="3832"/>
-        <location filename="../ui/EditProduct.ui" line="3899"/>
-        <location filename="../ui/EditProduct.ui" line="7845"/>
-        <location filename="../ui/EditProduct.ui" line="8461"/>
-        <location filename="../ui/EditProduct.ui" line="8783"/>
-        <location filename="../ui/EditProduct.ui" line="8858"/>
-        <location filename="../ui/EditProduct.ui" line="8897"/>
-        <location filename="../ui/EditProduct.ui" line="8968"/>
-        <location filename="../ui/EditProduct.ui" line="9055"/>
-        <location filename="../ui/EditProduct.ui" line="9364"/>
-        <location filename="../ui/EditProduct.ui" line="9384"/>
-        <location filename="../ui/EditProduct.ui" line="9423"/>
-        <location filename="../ui/EditProduct.ui" line="9598"/>
-        <location filename="../ui/EditProduct.ui" line="9618"/>
-        <location filename="../ui/EditProduct.ui" line="9657"/>
-        <location filename="../ui/EditProduct.ui" line="9816"/>
-        <location filename="../ui/EditProduct.ui" line="9951"/>
-        <location filename="../ui/EditProduct.ui" line="9971"/>
-        <location filename="../ui/EditProduct.ui" line="10012"/>
-        <location filename="../ui/EditProduct.ui" line="11273"/>
-        <location filename="../ui/EditProduct.ui" line="11293"/>
-        <location filename="../ui/EditProduct.ui" line="11350"/>
-        <location filename="../ui/EditProduct.ui" line="11659"/>
+        <location filename="../ui/EditProduct.ui" line="3577"/>
+        <location filename="../ui/EditProduct.ui" line="4041"/>
+        <location filename="../ui/EditProduct.ui" line="4108"/>
+        <location filename="../ui/EditProduct.ui" line="8054"/>
+        <location filename="../ui/EditProduct.ui" line="8670"/>
+        <location filename="../ui/EditProduct.ui" line="8992"/>
+        <location filename="../ui/EditProduct.ui" line="9067"/>
+        <location filename="../ui/EditProduct.ui" line="9106"/>
+        <location filename="../ui/EditProduct.ui" line="9177"/>
+        <location filename="../ui/EditProduct.ui" line="9264"/>
+        <location filename="../ui/EditProduct.ui" line="9573"/>
+        <location filename="../ui/EditProduct.ui" line="9593"/>
+        <location filename="../ui/EditProduct.ui" line="9632"/>
+        <location filename="../ui/EditProduct.ui" line="9807"/>
+        <location filename="../ui/EditProduct.ui" line="9827"/>
+        <location filename="../ui/EditProduct.ui" line="9866"/>
+        <location filename="../ui/EditProduct.ui" line="10025"/>
+        <location filename="../ui/EditProduct.ui" line="10160"/>
+        <location filename="../ui/EditProduct.ui" line="10180"/>
+        <location filename="../ui/EditProduct.ui" line="10221"/>
+        <location filename="../ui/EditProduct.ui" line="11482"/>
+        <location filename="../ui/EditProduct.ui" line="11502"/>
+        <location filename="../ui/EditProduct.ui" line="11559"/>
+        <location filename="../ui/EditProduct.ui" line="11868"/>
         <source>...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3407"/>
+        <location filename="../ui/EditProduct.ui" line="3616"/>
         <source>Need billion cells:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3463"/>
+        <location filename="../ui/EditProduct.ui" line="3672"/>
         <source>Dry yeast claculation.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3476"/>
+        <location filename="../ui/EditProduct.ui" line="3685"/>
         <source>Low grams/hl:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3492"/>
+        <location filename="../ui/EditProduct.ui" line="3701"/>
         <source>High grams/hl:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3552"/>
-        <location filename="../ui/EditProduct.ui" line="3568"/>
+        <location filename="../ui/EditProduct.ui" line="3761"/>
+        <location filename="../ui/EditProduct.ui" line="3777"/>
         <source>at</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3643"/>
+        <location filename="../ui/EditProduct.ui" line="3852"/>
         <source>This recipe pitch grams/hl:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3687"/>
-        <source>Pitchrate grams/hectoliter:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="3703"/>
-        <source>Yeast grams needed:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="3797"/>
-        <source>Production date:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="3813"/>
-        <source>Yeast condition:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="3829"/>
-        <location filename="../ui/EditProduct.ui" line="8855"/>
-        <source>Set the date to today.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="3877"/>
-        <source>Edit the production date.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="3880"/>
-        <location filename="../ui/EditProduct.ui" line="8878"/>
-        <location filename="../ui/EditProduct.ui" line="8933"/>
-        <location filename="../ui/EditProduct.ui" line="9404"/>
-        <location filename="../ui/EditProduct.ui" line="9638"/>
-        <location filename="../ui/EditProduct.ui" line="11254"/>
-        <location filename="../ui/EditProduct.ui" line="11640"/>
-        <source>dd-MM-yyyy</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ui/EditProduct.ui" line="3896"/>
+        <source>Pitchrate grams/hectoliter:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="3912"/>
+        <source>Yeast grams needed:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4006"/>
+        <source>Production date:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4022"/>
+        <source>Yeast condition:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4038"/>
+        <location filename="../ui/EditProduct.ui" line="9064"/>
+        <source>Set the date to today.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4086"/>
+        <source>Edit the production date.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4089"/>
+        <location filename="../ui/EditProduct.ui" line="9087"/>
+        <location filename="../ui/EditProduct.ui" line="9142"/>
+        <location filename="../ui/EditProduct.ui" line="9613"/>
+        <location filename="../ui/EditProduct.ui" line="9847"/>
+        <location filename="../ui/EditProduct.ui" line="11463"/>
+        <location filename="../ui/EditProduct.ui" line="11849"/>
+        <source>dd-MM-yyyy</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4105"/>
         <source>Clear the date</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3913"/>
+        <location filename="../ui/EditProduct.ui" line="4122"/>
         <location filename="../src/EditProductTab3.cpp" line="1106"/>
         <location filename="../src/EditProductTab5.cpp" line="719"/>
         <source>Mash</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3952"/>
-        <source>Mash name:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="3968"/>
-        <source>Mash schedule:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4007"/>
-        <source>Mash time:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4036"/>
-        <source>Mash total volume:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4080"/>
-        <source>Water</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4092"/>
-        <source>Water agents</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4104"/>
-        <source>Calcium Chloride</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4107"/>
-        <source>CaCl2:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4123"/>
-        <source>Gypsym</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4126"/>
-        <source>CaSO4:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4142"/>
-        <source>Epsom</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4145"/>
-        <source>MgSO4:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ui/EditProduct.ui" line="4161"/>
-        <source>Table salt</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4164"/>
-        <source>NaCl:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4180"/>
-        <location filename="../ui/EditProduct.ui" line="4364"/>
-        <location filename="../ui/EditProduct.ui" line="4584"/>
-        <source>Magnesium Chloride</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4183"/>
-        <source>MgCl2:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4199"/>
-        <location filename="../ui/EditProduct.ui" line="4395"/>
-        <source>Baking soda</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4202"/>
-        <source>NaHCO3:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4218"/>
-        <location filename="../ui/EditProduct.ui" line="4426"/>
-        <source>Chalk undissolved</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4221"/>
-        <source>CaCO3:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4237"/>
-        <location filename="../ui/EditProduct.ui" line="4552"/>
-        <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="4247"/>
-        <location filename="../ui/EditProduct.ui" line="4279"/>
-        <location filename="../ui/EditProduct.ui" line="4310"/>
-        <location filename="../ui/EditProduct.ui" line="4342"/>
-        <location filename="../ui/EditProduct.ui" line="4373"/>
-        <location filename="../ui/EditProduct.ui" line="4404"/>
-        <location filename="../ui/EditProduct.ui" line="4435"/>
-        <location filename="../ui/EditProduct.ui" line="4467"/>
-        <location filename="../ui/EditProduct.ui" line="4498"/>
-        <location filename="../ui/EditProduct.ui" line="4530"/>
-        <location filename="../ui/EditProduct.ui" line="4562"/>
-        <location filename="../ui/EditProduct.ui" line="4593"/>
-        <location filename="../ui/EditProduct.ui" line="10639"/>
-        <location filename="../ui/EditProduct.ui" line="10983"/>
-        <source> gr</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="4269"/>
-        <location filename="../ui/EditProduct.ui" line="4457"/>
-        <source>Gypsum to change the water profile. This adds Calcium and Sulfate.
-To improve bitter beers.</source>
+        <source>Mash name:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4177"/>
+        <source>Mash schedule:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4216"/>
+        <source>Mash time:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4245"/>
+        <source>Mash total volume:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4289"/>
+        <source>Water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="4301"/>
-        <location filename="../ui/EditProduct.ui" line="4489"/>
-        <source>Epsom salt to change the water profile. Use with caution!</source>
+        <source>Water agents</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4313"/>
+        <source>Calcium Chloride</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4316"/>
+        <source>CaCl2:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="4332"/>
-        <location filename="../ui/EditProduct.ui" line="4520"/>
+        <source>Gypsym</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4335"/>
+        <source>CaSO4:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4351"/>
+        <source>Epsom</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4354"/>
+        <source>MgSO4:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4370"/>
+        <source>Table salt</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4373"/>
+        <source>NaCl:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4389"/>
+        <location filename="../ui/EditProduct.ui" line="4573"/>
+        <location filename="../ui/EditProduct.ui" line="4793"/>
+        <source>Magnesium Chloride</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4392"/>
+        <source>MgCl2:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4408"/>
+        <location filename="../ui/EditProduct.ui" line="4604"/>
+        <source>Baking soda</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4411"/>
+        <source>NaHCO3:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4427"/>
+        <location filename="../ui/EditProduct.ui" line="4635"/>
+        <source>Chalk undissolved</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4430"/>
+        <source>CaCO3:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4446"/>
+        <location filename="../ui/EditProduct.ui" line="4761"/>
+        <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="4456"/>
+        <location filename="../ui/EditProduct.ui" line="4488"/>
+        <location filename="../ui/EditProduct.ui" line="4519"/>
+        <location filename="../ui/EditProduct.ui" line="4551"/>
+        <location filename="../ui/EditProduct.ui" line="4582"/>
+        <location filename="../ui/EditProduct.ui" line="4613"/>
+        <location filename="../ui/EditProduct.ui" line="4644"/>
+        <location filename="../ui/EditProduct.ui" line="4676"/>
+        <location filename="../ui/EditProduct.ui" line="4707"/>
+        <location filename="../ui/EditProduct.ui" line="4739"/>
+        <location filename="../ui/EditProduct.ui" line="4771"/>
+        <location filename="../ui/EditProduct.ui" line="4802"/>
+        <location filename="../ui/EditProduct.ui" line="10848"/>
+        <location filename="../ui/EditProduct.ui" line="11192"/>
+        <source> gr</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4478"/>
+        <location filename="../ui/EditProduct.ui" line="4666"/>
+        <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="4510"/>
+        <location filename="../ui/EditProduct.ui" line="4698"/>
+        <source>Epsom salt to change the water profile. Use with caution!</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4541"/>
+        <location filename="../ui/EditProduct.ui" line="4729"/>
         <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="4616"/>
+        <location filename="../ui/EditProduct.ui" line="4825"/>
         <source>Acid Additions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4628"/>
+        <location filename="../ui/EditProduct.ui" line="4837"/>
         <source>Desired mash pH:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4644"/>
+        <location filename="../ui/EditProduct.ui" line="4853"/>
         <source>Auto calculate:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4660"/>
+        <location filename="../ui/EditProduct.ui" line="4869"/>
         <source>Acid to use:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4686"/>
-        <location filename="../ui/EditProduct.ui" line="5785"/>
+        <location filename="../ui/EditProduct.ui" line="4895"/>
+        <location filename="../ui/EditProduct.ui" line="5994"/>
         <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="4726"/>
-        <location filename="../ui/EditProduct.ui" line="4865"/>
+        <location filename="../ui/EditProduct.ui" line="4935"/>
+        <location filename="../ui/EditProduct.ui" line="5074"/>
         <source>%</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4754"/>
-        <location filename="../ui/EditProduct.ui" line="4899"/>
+        <location filename="../ui/EditProduct.ui" line="4963"/>
+        <location filename="../ui/EditProduct.ui" line="5108"/>
         <source> ml</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4786"/>
+        <location filename="../ui/EditProduct.ui" line="4995"/>
         <source>Desired sparge pH:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4827"/>
+        <location filename="../ui/EditProduct.ui" line="5036"/>
         <source>Acid type:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4921"/>
-        <location filename="../ui/EditProduct.ui" line="4937"/>
+        <location filename="../ui/EditProduct.ui" line="5130"/>
+        <location filename="../ui/EditProduct.ui" line="5146"/>
         <source>Acid amount:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4954"/>
+        <location filename="../ui/EditProduct.ui" line="5163"/>
         <source>Bitterness index:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5006"/>
-        <location filename="../ui/EditProduct.ui" line="5074"/>
+        <location filename="../ui/EditProduct.ui" line="5215"/>
+        <location filename="../ui/EditProduct.ui" line="5283"/>
         <source>N/A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5022"/>
+        <location filename="../ui/EditProduct.ui" line="5231"/>
         <source>Preffered SO4:Cl ratio:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5090"/>
+        <location filename="../ui/EditProduct.ui" line="5299"/>
         <source>Current SO4:Cl ratio:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5147"/>
+        <location filename="../ui/EditProduct.ui" line="5356"/>
         <source>Estimate pre boil pH:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5391"/>
+        <location filename="../ui/EditProduct.ui" line="5600"/>
         <source>The total prepared amount of sparge water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5472"/>
+        <location filename="../ui/EditProduct.ui" line="5681"/>
         <source>If needed, choose a target water profile.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5475"/>
+        <location filename="../ui/EditProduct.ui" line="5684"/>
         <source>Choose example water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5716"/>
+        <location filename="../ui/EditProduct.ui" line="5925"/>
         <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="5769"/>
+        <location filename="../ui/EditProduct.ui" line="5978"/>
         <source>Treated mash water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5813"/>
+        <location filename="../ui/EditProduct.ui" line="6022"/>
         <source>The ideal amount of Natrium should be below 150.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5866"/>
+        <location filename="../ui/EditProduct.ui" line="6075"/>
         <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="5895"/>
+        <location filename="../ui/EditProduct.ui" line="6104"/>
         <source>The ideal amount of Calcium is between 40 and 150.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5951"/>
+        <location filename="../ui/EditProduct.ui" line="6160"/>
         <source>The ideal amount of Magnesium is between 5 and 40.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5979"/>
+        <location filename="../ui/EditProduct.ui" line="6188"/>
         <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="6061"/>
+        <location filename="../ui/EditProduct.ui" line="6270"/>
         <source>Mixed water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6458"/>
+        <location filename="../ui/EditProduct.ui" line="6667"/>
         <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="6545"/>
+        <location filename="../ui/EditProduct.ui" line="6754"/>
         <source>Optional dilution water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6548"/>
+        <location filename="../ui/EditProduct.ui" line="6757"/>
         <source>Choose dilution</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6661"/>
+        <location filename="../ui/EditProduct.ui" line="6870"/>
         <source>Hardness</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6702"/>
+        <location filename="../ui/EditProduct.ui" line="6911"/>
         <source>Mg</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6718"/>
+        <location filename="../ui/EditProduct.ui" line="6927"/>
         <location filename="../src/EditProductTab7.cpp" line="37"/>
         <source>pH</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6746"/>
+        <location filename="../ui/EditProduct.ui" line="6955"/>
         <source>RA</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6843"/>
+        <location filename="../ui/EditProduct.ui" line="7052"/>
         <source>CaCO3</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6912"/>
+        <location filename="../ui/EditProduct.ui" line="7121"/>
         <source>The main brewing water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6918"/>
+        <location filename="../ui/EditProduct.ui" line="7127"/>
         <source>Choose water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6931"/>
-        <source>Cl</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="6947"/>
-        <source>Na</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="6963"/>
-        <source>Ca</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="6979"/>
-        <source>SO4</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="6995"/>
-        <location filename="../src/EditProductTab6.cpp" line="296"/>
-        <location filename="../src/EditProductTab7.cpp" line="37"/>
-        <source>Volume</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="7011"/>
-        <source>HCO3</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="7027"/>
-        <source>Water profile</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="7118"/>
-        <source>Sparge water source 1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ui/EditProduct.ui" line="7140"/>
+        <source>Cl</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="7156"/>
+        <source>Na</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="7172"/>
+        <source>Ca</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="7188"/>
+        <source>SO4</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="7204"/>
+        <location filename="../src/EditProductTab6.cpp" line="296"/>
+        <location filename="../src/EditProductTab7.cpp" line="37"/>
+        <source>Volume</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="7220"/>
+        <source>HCO3</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="7236"/>
+        <source>Water profile</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="7327"/>
+        <source>Sparge water source 1</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="7349"/>
         <source>Sparge water source 2</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7159"/>
+        <location filename="../ui/EditProduct.ui" line="7368"/>
         <source>Sparge water mixed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7175"/>
+        <location filename="../ui/EditProduct.ui" line="7384"/>
         <location filename="../src/EditProductTab5.cpp" line="724"/>
         <source>Sparge</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7191"/>
+        <location filename="../ui/EditProduct.ui" line="7400"/>
         <source>Treated sparge water</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7200"/>
+        <location filename="../ui/EditProduct.ui" line="7409"/>
         <source>Brewday</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7212"/>
+        <location filename="../ui/EditProduct.ui" line="7421"/>
         <source>Brewday plan:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7228"/>
+        <location filename="../ui/EditProduct.ui" line="7437"/>
         <source>Brewday end:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7244"/>
+        <location filename="../ui/EditProduct.ui" line="7453"/>
         <source>Mashing and Sparge</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7256"/>
+        <location filename="../ui/EditProduct.ui" line="7465"/>
         <source>Mash pH:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7385"/>
+        <location filename="../ui/EditProduct.ui" line="7594"/>
         <source>Mash SG:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7401"/>
+        <location filename="../ui/EditProduct.ui" line="7610"/>
         <source>Mash efficiency:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7417"/>
+        <location filename="../ui/EditProduct.ui" line="7626"/>
         <source>Sparge water pH:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7433"/>
+        <location filename="../ui/EditProduct.ui" line="7642"/>
         <source>Sparge supply:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7449"/>
+        <location filename="../ui/EditProduct.ui" line="7658"/>
         <source>Sparge estimate:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7493"/>
+        <location filename="../ui/EditProduct.ui" line="7702"/>
         <source>Sparge temp:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7571"/>
-        <location filename="../ui/EditProduct.ui" line="8528"/>
-        <location filename="../ui/EditProduct.ui" line="9217"/>
-        <location filename="../ui/EditProduct.ui" line="9245"/>
-        <location filename="../ui/EditProduct.ui" line="9273"/>
-        <location filename="../ui/EditProduct.ui" line="9507"/>
-        <location filename="../ui/EditProduct.ui" line="9725"/>
-        <location filename="../ui/EditProduct.ui" line="10752"/>
-        <location filename="../ui/EditProduct.ui" line="11202"/>
+        <location filename="../ui/EditProduct.ui" line="7780"/>
+        <location filename="../ui/EditProduct.ui" line="8737"/>
+        <location filename="../ui/EditProduct.ui" line="9426"/>
+        <location filename="../ui/EditProduct.ui" line="9454"/>
+        <location filename="../ui/EditProduct.ui" line="9482"/>
+        <location filename="../ui/EditProduct.ui" line="9716"/>
+        <location filename="../ui/EditProduct.ui" line="9934"/>
+        <location filename="../ui/EditProduct.ui" line="10961"/>
+        <location filename="../ui/EditProduct.ui" line="11411"/>
         <source> °C</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7613"/>
+        <location filename="../ui/EditProduct.ui" line="7822"/>
         <source>Pre boil</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7625"/>
-        <location filename="../ui/EditProduct.ui" line="8733"/>
+        <location filename="../ui/EditProduct.ui" line="7834"/>
+        <location filename="../ui/EditProduct.ui" line="8942"/>
         <location filename="../src/EditProductTab7.cpp" line="624"/>
         <source>Measured pH:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7641"/>
-        <location filename="../ui/EditProduct.ui" line="8800"/>
+        <location filename="../ui/EditProduct.ui" line="7850"/>
+        <location filename="../ui/EditProduct.ui" line="9009"/>
         <location filename="../src/EditProductTab7.cpp" line="656"/>
         <source>Measured SG:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7657"/>
-        <location filename="../ui/EditProduct.ui" line="8816"/>
+        <location filename="../ui/EditProduct.ui" line="7866"/>
+        <location filename="../ui/EditProduct.ui" line="9025"/>
         <source>Volume @100°C:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7755"/>
+        <location filename="../ui/EditProduct.ui" line="7964"/>
         <source>Mash, sparge and lauter efficiency.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7842"/>
-        <location filename="../ui/EditProduct.ui" line="8780"/>
+        <location filename="../ui/EditProduct.ui" line="8051"/>
+        <location filename="../ui/EditProduct.ui" line="8989"/>
         <source>Edit volume</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7882"/>
+        <location filename="../ui/EditProduct.ui" line="8091"/>
         <source>Whirlpools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7894"/>
+        <location filename="../ui/EditProduct.ui" line="8103"/>
         <source>Whirlpool 72..79°C:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7910"/>
+        <location filename="../ui/EditProduct.ui" line="8119"/>
         <source>Whirlpool 60..66°C:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7926"/>
+        <location filename="../ui/EditProduct.ui" line="8135"/>
         <source>Whirlpool cold:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7942"/>
+        <location filename="../ui/EditProduct.ui" line="8151"/>
         <source>Whirlpool 85..100°C:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8071"/>
+        <location filename="../ui/EditProduct.ui" line="8280"/>
         <source>Transfer to fermenter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8083"/>
+        <location filename="../ui/EditProduct.ui" line="8292"/>
         <source>Volume to fermenter:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8099"/>
+        <location filename="../ui/EditProduct.ui" line="8308"/>
         <source>Trub and chiller loss:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8221"/>
+        <location filename="../ui/EditProduct.ui" line="8430"/>
         <source>SG in fermenter:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8237"/>
+        <location filename="../ui/EditProduct.ui" line="8446"/>
         <source>EBC color in fermenter:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8253"/>
+        <location filename="../ui/EditProduct.ui" line="8462"/>
         <source>IBU in fermenter:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8359"/>
+        <location filename="../ui/EditProduct.ui" line="8568"/>
         <source>Aeration time &amp; speed:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8381"/>
+        <location filename="../ui/EditProduct.ui" line="8590"/>
         <source> L/m</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8413"/>
+        <location filename="../ui/EditProduct.ui" line="8622"/>
         <source>Aeration with:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8458"/>
-        <location filename="../ui/EditProduct.ui" line="9948"/>
-        <location filename="../ui/EditProduct.ui" line="9968"/>
-        <location filename="../ui/EditProduct.ui" line="11290"/>
+        <location filename="../ui/EditProduct.ui" line="8667"/>
+        <location filename="../ui/EditProduct.ui" line="10157"/>
+        <location filename="../ui/EditProduct.ui" line="10177"/>
+        <location filename="../ui/EditProduct.ui" line="11499"/>
         <source>Brew log chart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8478"/>
+        <location filename="../ui/EditProduct.ui" line="8687"/>
         <source>Cooling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8490"/>
+        <location filename="../ui/EditProduct.ui" line="8699"/>
         <source>Cooling method:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8506"/>
+        <location filename="../ui/EditProduct.ui" line="8715"/>
         <source>Cooling to:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8588"/>
+        <location filename="../ui/EditProduct.ui" line="8797"/>
         <source>Cooling time:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8605"/>
+        <location filename="../ui/EditProduct.ui" line="8814"/>
         <location filename="../src/EditProductExport.cpp" line="804"/>
         <source>After boil</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8749"/>
+        <location filename="../ui/EditProduct.ui" line="8958"/>
         <source>The overall efficiency.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8875"/>
+        <location filename="../ui/EditProduct.ui" line="9084"/>
         <source>Edit the brewdate plan or start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8894"/>
+        <location filename="../ui/EditProduct.ui" line="9103"/>
         <source>Clear planned brewdate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8914"/>
+        <location filename="../ui/EditProduct.ui" line="9123"/>
         <source>Edit the brewdate start time.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8917"/>
-        <location filename="../ui/EditProduct.ui" line="8952"/>
+        <location filename="../ui/EditProduct.ui" line="9126"/>
+        <location filename="../ui/EditProduct.ui" line="9161"/>
         <source>hh:mm</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8930"/>
+        <location filename="../ui/EditProduct.ui" line="9139"/>
         <source>Edit the brewdate end.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8949"/>
+        <location filename="../ui/EditProduct.ui" line="9158"/>
         <source>Edit the brewdate end time.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8965"/>
+        <location filename="../ui/EditProduct.ui" line="9174"/>
         <source>Set the brewdate end date.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8985"/>
+        <location filename="../ui/EditProduct.ui" line="9194"/>
         <source>End time:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9001"/>
+        <location filename="../ui/EditProduct.ui" line="9210"/>
         <source>Start time:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9017"/>
+        <location filename="../ui/EditProduct.ui" line="9226"/>
         <source>Show brewlog:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9036"/>
+        <location filename="../ui/EditProduct.ui" line="9245"/>
         <source>Confirm brew done:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9052"/>
-        <location filename="../ui/EditProduct.ui" line="9420"/>
-        <location filename="../ui/EditProduct.ui" line="9654"/>
+        <location filename="../ui/EditProduct.ui" line="9261"/>
+        <location filename="../ui/EditProduct.ui" line="9629"/>
+        <location filename="../ui/EditProduct.ui" line="9863"/>
         <source>Confirm the brew dates and times.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9069"/>
+        <location filename="../ui/EditProduct.ui" line="9278"/>
         <source>Fermenting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9081"/>
+        <location filename="../ui/EditProduct.ui" line="9290"/>
         <source>Primary fermentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9093"/>
+        <location filename="../ui/EditProduct.ui" line="9302"/>
         <source>Start density:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9109"/>
+        <location filename="../ui/EditProduct.ui" line="9318"/>
         <source>Start temperature:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9125"/>
+        <location filename="../ui/EditProduct.ui" line="9334"/>
         <source>Peak temperature:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9141"/>
-        <location filename="../ui/EditProduct.ui" line="9453"/>
+        <location filename="../ui/EditProduct.ui" line="9350"/>
+        <location filename="../ui/EditProduct.ui" line="9662"/>
         <source>End temperature:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9157"/>
-        <location filename="../ui/EditProduct.ui" line="9469"/>
+        <location filename="../ui/EditProduct.ui" line="9366"/>
+        <location filename="../ui/EditProduct.ui" line="9678"/>
         <source>End density:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9173"/>
-        <location filename="../ui/EditProduct.ui" line="9485"/>
+        <location filename="../ui/EditProduct.ui" line="9382"/>
+        <location filename="../ui/EditProduct.ui" line="9694"/>
         <source>End date:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9317"/>
-        <location filename="../ui/EditProduct.ui" line="9551"/>
-        <location filename="../ui/EditProduct.ui" line="9769"/>
+        <location filename="../ui/EditProduct.ui" line="9526"/>
+        <location filename="../ui/EditProduct.ui" line="9760"/>
+        <location filename="../ui/EditProduct.ui" line="9978"/>
         <source>Apparent attenuation:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9361"/>
-        <location filename="../ui/EditProduct.ui" line="9595"/>
-        <location filename="../ui/EditProduct.ui" line="9813"/>
+        <location filename="../ui/EditProduct.ui" line="9570"/>
+        <location filename="../ui/EditProduct.ui" line="9804"/>
+        <location filename="../ui/EditProduct.ui" line="10022"/>
         <source>Edit SG in Plato, Brix or SG</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9381"/>
-        <location filename="../ui/EditProduct.ui" line="9615"/>
+        <location filename="../ui/EditProduct.ui" line="9590"/>
+        <location filename="../ui/EditProduct.ui" line="9824"/>
         <source>Set the date to today</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9401"/>
+        <location filename="../ui/EditProduct.ui" line="9610"/>
         <source>Edit the date the primary fermentation was done.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9441"/>
+        <location filename="../ui/EditProduct.ui" line="9650"/>
         <source>Secondary fermentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9635"/>
+        <location filename="../ui/EditProduct.ui" line="9844"/>
         <source>Edit the date the secondary fermentation was done.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9675"/>
+        <location filename="../ui/EditProduct.ui" line="9884"/>
         <source>Tertiary fermentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9687"/>
+        <location filename="../ui/EditProduct.ui" line="9896"/>
         <source>Average temperature:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9703"/>
+        <location filename="../ui/EditProduct.ui" line="9912"/>
         <source>Final density:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9833"/>
+        <location filename="../ui/EditProduct.ui" line="10042"/>
         <source>Expected end density:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9871"/>
+        <location filename="../ui/EditProduct.ui" line="10080"/>
         <source>Alcohol volume:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9916"/>
+        <location filename="../ui/EditProduct.ui" line="10125"/>
         <source>Show fermenter unit log:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9932"/>
+        <location filename="../ui/EditProduct.ui" line="10141"/>
         <source>Show fermentation log:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9981"/>
+        <location filename="../ui/EditProduct.ui" line="10190"/>
         <source>Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9993"/>
+        <location filename="../ui/EditProduct.ui" line="10202"/>
         <source>Package date:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10066"/>
+        <location filename="../ui/EditProduct.ui" line="10275"/>
         <source>Carbonation range:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10119"/>
+        <location filename="../ui/EditProduct.ui" line="10328"/>
         <source>Infusion or Dilution</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10131"/>
+        <location filename="../ui/EditProduct.ui" line="10340"/>
         <source>Package volume:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10147"/>
+        <location filename="../ui/EditProduct.ui" line="10356"/>
         <source>Extra added volume:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10163"/>
+        <location filename="../ui/EditProduct.ui" line="10372"/>
         <source>Extra remarks:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10179"/>
+        <location filename="../ui/EditProduct.ui" line="10388"/>
         <source>Final ABV %:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10195"/>
+        <location filename="../ui/EditProduct.ui" line="10404"/>
         <source>Extra added ABV %:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10211"/>
+        <location filename="../ui/EditProduct.ui" line="10420"/>
         <source>pH from fermenter:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10255"/>
+        <location filename="../ui/EditProduct.ui" line="10464"/>
         <source>Extra dilution or infusion added to this batch.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10286"/>
-        <location filename="../ui/EditProduct.ui" line="10408"/>
+        <location filename="../ui/EditProduct.ui" line="10495"/>
+        <location filename="../ui/EditProduct.ui" line="10617"/>
         <source>The ABV including the infusion.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10317"/>
+        <location filename="../ui/EditProduct.ui" line="10526"/>
         <source>If there is alcohol in the infusion, give the percentage.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10376"/>
+        <location filename="../ui/EditProduct.ui" line="10585"/>
         <source>Could be the description of the infusion.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10392"/>
+        <location filename="../ui/EditProduct.ui" line="10601"/>
         <source>Package ABV %:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10440"/>
+        <location filename="../ui/EditProduct.ui" line="10649"/>
         <source>Bottles</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10452"/>
-        <location filename="../ui/EditProduct.ui" line="11030"/>
+        <location filename="../ui/EditProduct.ui" line="10661"/>
+        <location filename="../ui/EditProduct.ui" line="11239"/>
         <source>Volume:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10468"/>
-        <location filename="../ui/EditProduct.ui" line="10888"/>
+        <location filename="../ui/EditProduct.ui" line="10677"/>
+        <location filename="../ui/EditProduct.ui" line="11097"/>
         <source>Desired volume CO2:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10484"/>
-        <location filename="../ui/EditProduct.ui" line="10955"/>
+        <location filename="../ui/EditProduct.ui" line="10693"/>
+        <location filename="../ui/EditProduct.ui" line="11164"/>
         <source>Priming sugar:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10500"/>
-        <location filename="../ui/EditProduct.ui" line="10872"/>
+        <location filename="../ui/EditProduct.ui" line="10709"/>
+        <location filename="../ui/EditProduct.ui" line="11081"/>
         <source>Sugar amount:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10516"/>
-        <location filename="../ui/EditProduct.ui" line="10920"/>
+        <location filename="../ui/EditProduct.ui" line="10725"/>
+        <location filename="../ui/EditProduct.ui" line="11129"/>
         <source>Priming:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10532"/>
-        <location filename="../ui/EditProduct.ui" line="10904"/>
+        <location filename="../ui/EditProduct.ui" line="10741"/>
+        <location filename="../ui/EditProduct.ui" line="11113"/>
         <source>Water amount:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10548"/>
+        <location filename="../ui/EditProduct.ui" line="10757"/>
         <source>Bottle fermentation:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10667"/>
-        <location filename="../ui/EditProduct.ui" line="11083"/>
+        <location filename="../ui/EditProduct.ui" line="10876"/>
+        <location filename="../ui/EditProduct.ui" line="11292"/>
         <source> gr/L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10714"/>
+        <location filename="../ui/EditProduct.ui" line="10923"/>
         <source>Expected pressure in bar:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10730"/>
+        <location filename="../ui/EditProduct.ui" line="10939"/>
         <source>Bottles ABV %:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10828"/>
+        <location filename="../ui/EditProduct.ui" line="11037"/>
         <source>Kegs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10840"/>
+        <location filename="../ui/EditProduct.ui" line="11049"/>
         <source>Kegs ABV %:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10856"/>
+        <location filename="../ui/EditProduct.ui" line="11065"/>
         <source>Kegs pressure in bar:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10936"/>
+        <location filename="../ui/EditProduct.ui" line="11145"/>
         <source>Kegs temperature:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11224"/>
+        <location filename="../ui/EditProduct.ui" line="11433"/>
         <source>Forced carbonation:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11251"/>
+        <location filename="../ui/EditProduct.ui" line="11460"/>
         <source>Edit the package date.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11310"/>
+        <location filename="../ui/EditProduct.ui" line="11519"/>
         <source>Show carbonation log:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11319"/>
+        <location filename="../ui/EditProduct.ui" line="11528"/>
         <source>Tasting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11331"/>
+        <location filename="../ui/EditProduct.ui" line="11540"/>
         <source>Taste date:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11367"/>
+        <location filename="../ui/EditProduct.ui" line="11576"/>
         <source>Taste rate:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11408"/>
+        <location filename="../ui/EditProduct.ui" line="11617"/>
         <source>Color:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11424"/>
+        <location filename="../ui/EditProduct.ui" line="11633"/>
         <source>Transparency:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11440"/>
+        <location filename="../ui/EditProduct.ui" line="11649"/>
         <source>Head:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11495"/>
+        <location filename="../ui/EditProduct.ui" line="11704"/>
         <source>Aroma:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11524"/>
+        <location filename="../ui/EditProduct.ui" line="11733"/>
         <source>Taste:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11553"/>
+        <location filename="../ui/EditProduct.ui" line="11762"/>
         <source>Aftertaste:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11582"/>
+        <location filename="../ui/EditProduct.ui" line="11791"/>
         <source>Mouthfeel:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11611"/>
+        <location filename="../ui/EditProduct.ui" line="11820"/>
         <source>Notes:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11637"/>
+        <location filename="../ui/EditProduct.ui" line="11846"/>
         <source>Edit the tasting date.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11678"/>
+        <location filename="../ui/EditProduct.ui" line="11887"/>
         <source>Export</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11695"/>
+        <location filename="../ui/EditProduct.ui" line="11904"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3923,48 +3976,48 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="305"/>
+        <location filename="../src/EditProduct.cpp" line="306"/>
         <source>%1, part %2 of %3</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="809"/>
+        <location filename="../src/EditProduct.cpp" line="810"/>
         <source>BMSapp - Add new product</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="811"/>
+        <location filename="../src/EditProduct.cpp" line="812"/>
         <source>BMSapp - Edit product %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="827"/>
-        <location filename="../src/EditProduct.cpp" line="831"/>
+        <location filename="../src/EditProduct.cpp" line="828"/>
+        <location filename="../src/EditProduct.cpp" line="832"/>
         <source>Edit Product</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="827"/>
+        <location filename="../src/EditProduct.cpp" line="828"/>
         <source>Name empty or too short.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="831"/>
+        <location filename="../src/EditProduct.cpp" line="832"/>
         <source>No beerstyle selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="869"/>
+        <location filename="../src/EditProduct.cpp" line="870"/>
         <source>Delete product</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="893"/>
+        <location filename="../src/EditProduct.cpp" line="894"/>
         <source>Product changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="893"/>
+        <location filename="../src/EditProduct.cpp" line="894"/>
         <source>The product has been modified. Save changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4088,7 +4141,7 @@
         <location filename="../src/EditProductTab5.cpp" line="400"/>
         <location filename="../src/EditProductTab6.cpp" line="748"/>
         <location filename="../src/EditProductTab7.cpp" line="303"/>
-        <location filename="../src/EditProduct.cpp" line="869"/>
+        <location filename="../src/EditProduct.cpp" line="870"/>
         <source>Delete %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7145,8 +7198,8 @@
     <message>
         <location filename="../src/EditRecipeExport.cpp" line="270"/>
         <location filename="../src/EditRecipeExport.cpp" line="272"/>
-        <location filename="../src/EditRecipeExport.cpp" line="431"/>
-        <location filename="../src/EditRecipeExport.cpp" line="433"/>
+        <location filename="../src/EditRecipeExport.cpp" line="436"/>
+        <location filename="../src/EditRecipeExport.cpp" line="438"/>
         <source>Copy Recipe</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7161,44 +7214,44 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditRecipeExport.cpp" line="431"/>
+        <location filename="../src/EditRecipeExport.cpp" line="436"/>
         <source>Copy Recipe to Product ready.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditRecipeExport.cpp" line="433"/>
+        <location filename="../src/EditRecipeExport.cpp" line="438"/>
         <source>Copy Recipe to Product error.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditRecipeExport.cpp" line="570"/>
-        <location filename="../src/EditRecipeExport.cpp" line="604"/>
+        <location filename="../src/EditRecipeExport.cpp" line="575"/>
+        <location filename="../src/EditRecipeExport.cpp" line="609"/>
         <source>Export to forum</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditRecipeExport.cpp" line="570"/>
+        <location filename="../src/EditRecipeExport.cpp" line="575"/>
         <source>The recipe and all data are copied to the clipboard.
 You can &quot;paste&quot; this data in the forum screen in your web browser.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditRecipeExport.cpp" line="577"/>
+        <location filename="../src/EditRecipeExport.cpp" line="582"/>
         <source>Export choices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../src/EditRecipeExport.cpp" line="589"/>
-        <source>Export to beerXML</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../src/EditRecipeExport.cpp" line="594"/>
-        <source>Copy to recipe</source>
+        <source>Export to beerXML</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../src/EditRecipeExport.cpp" line="599"/>
+        <source>Copy to recipe</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../src/EditRecipeExport.cpp" line="604"/>
         <source>Copy to product</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11581,8 +11634,8 @@
         <location filename="../src/database/db_recipe.cpp" line="654"/>
         <location filename="../src/database/db_recipe.cpp" line="687"/>
         <location filename="../src/database/db_product.cpp" line="31"/>
-        <location filename="../src/database/db_product.cpp" line="1008"/>
-        <location filename="../src/database/db_product.cpp" line="1041"/>
+        <location filename="../src/database/db_product.cpp" line="1014"/>
+        <location filename="../src/database/db_product.cpp" line="1047"/>
         <source>Database error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11595,8 +11648,8 @@
     <message>
         <location filename="../src/database/db_recipe.cpp" line="655"/>
         <location filename="../src/database/db_recipe.cpp" line="688"/>
-        <location filename="../src/database/db_product.cpp" line="1009"/>
-        <location filename="../src/database/db_product.cpp" line="1042"/>
+        <location filename="../src/database/db_product.cpp" line="1015"/>
+        <location filename="../src/database/db_product.cpp" line="1048"/>
         <source>MySQL error: %1
 %2
 %3</source>
--- a/translations/bmsapp_nl.ts	Mon Oct 24 16:06:14 2022 +0200
+++ b/translations/bmsapp_nl.ts	Mon Oct 24 19:59:08 2022 +0200
@@ -1156,7 +1156,7 @@
     <message>
         <location filename="../ui/EditEquipment.ui" line="1323"/>
         <source>Transfer liters/minute:</source>
-        <translation>Overpompen liters/minuut:</translation>
+        <translation>Overbrengen liters/minuut:</translation>
     </message>
     <message>
         <source>Lauter volume L:</source>
@@ -2449,27 +2449,26 @@
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="240"/>
-        <location filename="../ui/EditProduct.ui" line="2316"/>
-        <location filename="../ui/EditProduct.ui" line="7673"/>
-        <location filename="../ui/EditProduct.ui" line="8645"/>
+        <location filename="../ui/EditProduct.ui" line="7882"/>
+        <location filename="../ui/EditProduct.ui" line="8854"/>
         <source>Efficiency:</source>
         <translation>Rendement:</translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="256"/>
-        <location filename="../ui/EditProduct.ui" line="2116"/>
+        <location filename="../ui/EditProduct.ui" line="2262"/>
         <source>Boil time:</source>
         <translation>Kooktijd:</translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="272"/>
-        <location filename="../ui/EditProduct.ui" line="2266"/>
+        <location filename="../ui/EditProduct.ui" line="2362"/>
         <source>Batch size:</source>
         <translation>Brouw volume:</translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="288"/>
-        <location filename="../ui/EditProduct.ui" line="2016"/>
+        <location filename="../ui/EditProduct.ui" line="2162"/>
         <source>Boil size:</source>
         <translation>Kook volume:</translation>
     </message>
@@ -2478,39 +2477,38 @@
         <location filename="../ui/EditProduct.ui" line="471"/>
         <location filename="../ui/EditProduct.ui" line="640"/>
         <location filename="../ui/EditProduct.ui" line="1031"/>
-        <location filename="../ui/EditProduct.ui" line="2244"/>
-        <location filename="../ui/EditProduct.ui" line="2344"/>
-        <location filename="../ui/EditProduct.ui" line="3146"/>
-        <location filename="../ui/EditProduct.ui" line="3199"/>
-        <location filename="../ui/EditProduct.ui" line="3861"/>
-        <location filename="../ui/EditProduct.ui" line="7366"/>
-        <location filename="../ui/EditProduct.ui" line="7767"/>
-        <location filename="../ui/EditProduct.ui" line="8761"/>
-        <location filename="../ui/EditProduct.ui" line="9342"/>
-        <location filename="../ui/EditProduct.ui" line="9576"/>
-        <location filename="../ui/EditProduct.ui" line="9794"/>
-        <location filename="../ui/EditProduct.ui" line="9896"/>
-        <location filename="../ui/EditProduct.ui" line="10041"/>
-        <location filename="../ui/EditProduct.ui" line="10094"/>
-        <location filename="../ui/EditProduct.ui" line="10298"/>
-        <location filename="../ui/EditProduct.ui" line="10332"/>
-        <location filename="../ui/EditProduct.ui" line="10420"/>
-        <location filename="../ui/EditProduct.ui" line="10598"/>
-        <location filename="../ui/EditProduct.ui" line="10783"/>
-        <location filename="../ui/EditProduct.ui" line="11011"/>
-        <location filename="../ui/EditProduct.ui" line="11174"/>
+        <location filename="../ui/EditProduct.ui" line="1802"/>
+        <location filename="../ui/EditProduct.ui" line="3355"/>
+        <location filename="../ui/EditProduct.ui" line="3408"/>
+        <location filename="../ui/EditProduct.ui" line="4070"/>
+        <location filename="../ui/EditProduct.ui" line="7575"/>
+        <location filename="../ui/EditProduct.ui" line="7976"/>
+        <location filename="../ui/EditProduct.ui" line="8970"/>
+        <location filename="../ui/EditProduct.ui" line="9551"/>
+        <location filename="../ui/EditProduct.ui" line="9785"/>
+        <location filename="../ui/EditProduct.ui" line="10003"/>
+        <location filename="../ui/EditProduct.ui" line="10105"/>
+        <location filename="../ui/EditProduct.ui" line="10250"/>
+        <location filename="../ui/EditProduct.ui" line="10303"/>
+        <location filename="../ui/EditProduct.ui" line="10507"/>
+        <location filename="../ui/EditProduct.ui" line="10541"/>
+        <location filename="../ui/EditProduct.ui" line="10629"/>
+        <location filename="../ui/EditProduct.ui" line="10807"/>
+        <location filename="../ui/EditProduct.ui" line="10992"/>
+        <location filename="../ui/EditProduct.ui" line="11220"/>
+        <location filename="../ui/EditProduct.ui" line="11383"/>
         <source> %</source>
         <translation> %</translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="335"/>
-        <location filename="../ui/EditProduct.ui" line="2144"/>
-        <location filename="../ui/EditProduct.ui" line="7964"/>
-        <location filename="../ui/EditProduct.ui" line="7992"/>
-        <location filename="../ui/EditProduct.ui" line="8020"/>
-        <location filename="../ui/EditProduct.ui" line="8048"/>
-        <location filename="../ui/EditProduct.ui" line="8435"/>
-        <location filename="../ui/EditProduct.ui" line="8556"/>
+        <location filename="../ui/EditProduct.ui" line="2290"/>
+        <location filename="../ui/EditProduct.ui" line="8173"/>
+        <location filename="../ui/EditProduct.ui" line="8201"/>
+        <location filename="../ui/EditProduct.ui" line="8229"/>
+        <location filename="../ui/EditProduct.ui" line="8257"/>
+        <location filename="../ui/EditProduct.ui" line="8644"/>
+        <location filename="../ui/EditProduct.ui" line="8765"/>
         <source> min</source>
         <translation> min</translation>
     </message>
@@ -2520,36 +2518,35 @@
         <location filename="../ui/EditProduct.ui" line="1576"/>
         <location filename="../ui/EditProduct.ui" line="1660"/>
         <location filename="../ui/EditProduct.ui" line="1752"/>
-        <location filename="../ui/EditProduct.ui" line="1818"/>
-        <location filename="../ui/EditProduct.ui" line="1881"/>
-        <location filename="../ui/EditProduct.ui" line="1931"/>
-        <location filename="../ui/EditProduct.ui" line="1994"/>
-        <location filename="../ui/EditProduct.ui" line="2044"/>
-        <location filename="../ui/EditProduct.ui" line="2094"/>
-        <location filename="../ui/EditProduct.ui" line="2194"/>
-        <location filename="../ui/EditProduct.ui" line="2294"/>
-        <location filename="../ui/EditProduct.ui" line="2898"/>
-        <location filename="../ui/EditProduct.ui" line="2954"/>
-        <location filename="../ui/EditProduct.ui" line="4064"/>
-        <location filename="../ui/EditProduct.ui" line="5400"/>
-        <location filename="../ui/EditProduct.ui" line="6136"/>
-        <location filename="../ui/EditProduct.ui" line="6473"/>
-        <location filename="../ui/EditProduct.ui" line="6799"/>
-        <location filename="../ui/EditProduct.ui" line="7474"/>
-        <location filename="../ui/EditProduct.ui" line="7540"/>
-        <location filename="../ui/EditProduct.ui" line="7792"/>
-        <location filename="../ui/EditProduct.ui" line="7823"/>
-        <location filename="../ui/EditProduct.ui" line="8137"/>
-        <location filename="../ui/EditProduct.ui" line="8165"/>
-        <location filename="../ui/EditProduct.ui" line="8199"/>
-        <location filename="../ui/EditProduct.ui" line="8626"/>
-        <location filename="../ui/EditProduct.ui" line="8711"/>
-        <location filename="../ui/EditProduct.ui" line="10233"/>
-        <location filename="../ui/EditProduct.ui" line="10264"/>
-        <location filename="../ui/EditProduct.ui" line="10570"/>
-        <location filename="../ui/EditProduct.ui" line="10692"/>
-        <location filename="../ui/EditProduct.ui" line="11052"/>
-        <location filename="../ui/EditProduct.ui" line="11133"/>
+        <location filename="../ui/EditProduct.ui" line="2140"/>
+        <location filename="../ui/EditProduct.ui" line="2190"/>
+        <location filename="../ui/EditProduct.ui" line="2240"/>
+        <location filename="../ui/EditProduct.ui" line="2340"/>
+        <location filename="../ui/EditProduct.ui" line="2390"/>
+        <location filename="../ui/EditProduct.ui" line="2440"/>
+        <location filename="../ui/EditProduct.ui" line="2487"/>
+        <location filename="../ui/EditProduct.ui" line="3107"/>
+        <location filename="../ui/EditProduct.ui" line="3163"/>
+        <location filename="../ui/EditProduct.ui" line="4273"/>
+        <location filename="../ui/EditProduct.ui" line="5609"/>
+        <location filename="../ui/EditProduct.ui" line="6345"/>
+        <location filename="../ui/EditProduct.ui" line="6682"/>
+        <location filename="../ui/EditProduct.ui" line="7008"/>
+        <location filename="../ui/EditProduct.ui" line="7683"/>
+        <location filename="../ui/EditProduct.ui" line="7749"/>
+        <location filename="../ui/EditProduct.ui" line="8001"/>
+        <location filename="../ui/EditProduct.ui" line="8032"/>
+        <location filename="../ui/EditProduct.ui" line="8346"/>
+        <location filename="../ui/EditProduct.ui" line="8374"/>
+        <location filename="../ui/EditProduct.ui" line="8408"/>
+        <location filename="../ui/EditProduct.ui" line="8835"/>
+        <location filename="../ui/EditProduct.ui" line="8920"/>
+        <location filename="../ui/EditProduct.ui" line="10442"/>
+        <location filename="../ui/EditProduct.ui" line="10473"/>
+        <location filename="../ui/EditProduct.ui" line="10779"/>
+        <location filename="../ui/EditProduct.ui" line="10901"/>
+        <location filename="../ui/EditProduct.ui" line="11261"/>
+        <location filename="../ui/EditProduct.ui" line="11342"/>
         <location filename="../src/EditProductExport.cpp" line="837"/>
         <location filename="../src/EditProductExport.cpp" line="845"/>
         <source> L</source>
@@ -2566,14 +2563,14 @@
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="546"/>
-        <location filename="../ui/EditProduct.ui" line="3071"/>
+        <location filename="../ui/EditProduct.ui" line="3280"/>
         <source>Estimated FG:</source>
         <translation>Verwacht eind SG:</translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="582"/>
-        <location filename="../ui/EditProduct.ui" line="2426"/>
-        <location filename="../ui/EditProduct.ui" line="3024"/>
+        <location filename="../ui/EditProduct.ui" line="2635"/>
+        <location filename="../ui/EditProduct.ui" line="3233"/>
         <source>Estimated OG:</source>
         <translation>Verwacht start SG:</translation>
     </message>
@@ -2587,7 +2584,7 @@
         <translation type="vanished">Koolzuur volumes:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2376"/>
+        <location filename="../ui/EditProduct.ui" line="2585"/>
         <source>Color EBC:</source>
         <translation>EBC kleur:</translation>
     </message>
@@ -2731,9 +2728,8 @@
         <translation>Filterkuip dode ruimte:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="1790"/>
         <source>Lauter volume:</source>
-        <translation>Filterkuip volume:</translation>
+        <translation type="vanished">Filterkuip volume:</translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="1841"/>
@@ -2741,122 +2737,119 @@
         <translation>Koelen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="1853"/>
         <source>Trub chiller loss:</source>
-        <translation>Trub koeler verlies:</translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="1903"/>
-        <location filename="../ui/EditProduct.ui" line="8115"/>
+        <translation type="vanished">Trub koeler verlies:</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="8324"/>
         <source>Top up water:</source>
         <translation>Extra water in gistvat:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="1954"/>
+        <location filename="../ui/EditProduct.ui" line="2100"/>
         <source>Boiling</source>
         <translation>Koken</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="1966"/>
+        <location filename="../ui/EditProduct.ui" line="2112"/>
         <source>Kettle volume:</source>
         <translation>Kookketel volume:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2066"/>
+        <location filename="../ui/EditProduct.ui" line="2212"/>
         <source>Evaporation / hour:</source>
         <translation>Verdamping per uur:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2166"/>
+        <location filename="../ui/EditProduct.ui" line="2312"/>
         <source>Top up kettle:</source>
         <translation>Extra water bij koken:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2216"/>
         <source>Hop utilization:</source>
-        <translation>Hop efficientie:</translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="2364"/>
+        <translation type="vanished">Hop efficientie:</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="2573"/>
         <source>Fermentables</source>
         <translation>Vergistbaar</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2473"/>
+        <location filename="../ui/EditProduct.ui" line="2682"/>
         <source>Mash tun %:</source>
         <translation>Percentage moutstort:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2489"/>
+        <location filename="../ui/EditProduct.ui" line="2698"/>
         <source>Sugars %:</source>
         <translation>Percentage suikers:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2505"/>
+        <location filename="../ui/EditProduct.ui" line="2714"/>
         <source>Cara/crystal %:</source>
         <translation>Percentage cara:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2521"/>
+        <location filename="../ui/EditProduct.ui" line="2730"/>
         <source>Lintner:</source>
         <translation>Lintner totaal:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2556"/>
+        <location filename="../ui/EditProduct.ui" line="2765"/>
         <source>%v lintner</source>
         <translation>%v lintner</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2578"/>
-        <location filename="../ui/EditProduct.ui" line="2600"/>
-        <location filename="../ui/EditProduct.ui" line="2622"/>
-        <location filename="../ui/EditProduct.ui" line="2805"/>
-        <location filename="../ui/EditProduct.ui" line="2827"/>
+        <location filename="../ui/EditProduct.ui" line="2787"/>
+        <location filename="../ui/EditProduct.ui" line="2809"/>
+        <location filename="../ui/EditProduct.ui" line="2831"/>
+        <location filename="../ui/EditProduct.ui" line="3014"/>
+        <location filename="../ui/EditProduct.ui" line="3036"/>
         <source>%v%</source>
         <translation>%v%</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2635"/>
-        <location filename="../ui/EditProduct.ui" line="2850"/>
-        <location filename="../ui/EditProduct.ui" line="2998"/>
-        <location filename="../ui/EditProduct.ui" line="3780"/>
-        <location filename="../ui/EditProduct.ui" line="3935"/>
+        <location filename="../ui/EditProduct.ui" line="2844"/>
+        <location filename="../ui/EditProduct.ui" line="3059"/>
+        <location filename="../ui/EditProduct.ui" line="3207"/>
+        <location filename="../ui/EditProduct.ui" line="3989"/>
+        <location filename="../ui/EditProduct.ui" line="4144"/>
         <location filename="../src/EditProductExport.cpp" line="865"/>
         <source>Add</source>
         <translation>Nieuw</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2664"/>
+        <location filename="../ui/EditProduct.ui" line="2873"/>
         <source> kg</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2689"/>
+        <location filename="../ui/EditProduct.ui" line="2898"/>
         <source>Mash weight:</source>
         <translation>Maisch gewicht:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2702"/>
+        <location filename="../ui/EditProduct.ui" line="2911"/>
         <source>Hops</source>
         <translation>Hoppen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2764"/>
+        <location filename="../ui/EditProduct.ui" line="2973"/>
         <source>Hop taste:</source>
         <translation>Hop smaak:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2780"/>
+        <location filename="../ui/EditProduct.ui" line="2989"/>
         <source>Hop aroma:</source>
         <translation>Hop aroma:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2976"/>
+        <location filename="../ui/EditProduct.ui" line="3185"/>
         <source>Miscs</source>
         <translation>Diversen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3012"/>
+        <location filename="../ui/EditProduct.ui" line="3221"/>
         <source>Yeasts</source>
         <translation>Gisten</translation>
     </message>
@@ -2865,164 +2858,164 @@
         <translation type="vanished">Schijnbare vergisting:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3276"/>
+        <location filename="../ui/EditProduct.ui" line="3485"/>
         <source>Pitchrate billion cells/ml/°P:</source>
         <translation>Ent miljard cellen/ml/°P:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3302"/>
+        <location filename="../ui/EditProduct.ui" line="3511"/>
         <source>Starter method:</source>
         <translation>Starter methode:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3318"/>
+        <location filename="../ui/EditProduct.ui" line="3527"/>
         <source>Starter SG:</source>
         <translation>Starter SG:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3365"/>
-        <location filename="../ui/EditProduct.ui" line="10009"/>
-        <location filename="../ui/EditProduct.ui" line="11270"/>
-        <location filename="../ui/EditProduct.ui" line="11347"/>
-        <location filename="../ui/EditProduct.ui" line="11656"/>
+        <location filename="../ui/EditProduct.ui" line="3574"/>
+        <location filename="../ui/EditProduct.ui" line="10218"/>
+        <location filename="../ui/EditProduct.ui" line="11479"/>
+        <location filename="../ui/EditProduct.ui" line="11556"/>
+        <location filename="../ui/EditProduct.ui" line="11865"/>
         <source>Set or clear date</source>
         <translation>Zet of wis datum</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3368"/>
-        <location filename="../ui/EditProduct.ui" line="3832"/>
-        <location filename="../ui/EditProduct.ui" line="3899"/>
-        <location filename="../ui/EditProduct.ui" line="7845"/>
-        <location filename="../ui/EditProduct.ui" line="8461"/>
-        <location filename="../ui/EditProduct.ui" line="8783"/>
-        <location filename="../ui/EditProduct.ui" line="8858"/>
-        <location filename="../ui/EditProduct.ui" line="8897"/>
-        <location filename="../ui/EditProduct.ui" line="8968"/>
-        <location filename="../ui/EditProduct.ui" line="9055"/>
-        <location filename="../ui/EditProduct.ui" line="9364"/>
-        <location filename="../ui/EditProduct.ui" line="9384"/>
-        <location filename="../ui/EditProduct.ui" line="9423"/>
-        <location filename="../ui/EditProduct.ui" line="9598"/>
-        <location filename="../ui/EditProduct.ui" line="9618"/>
-        <location filename="../ui/EditProduct.ui" line="9657"/>
-        <location filename="../ui/EditProduct.ui" line="9816"/>
-        <location filename="../ui/EditProduct.ui" line="9951"/>
-        <location filename="../ui/EditProduct.ui" line="9971"/>
-        <location filename="../ui/EditProduct.ui" line="10012"/>
-        <location filename="../ui/EditProduct.ui" line="11273"/>
-        <location filename="../ui/EditProduct.ui" line="11293"/>
-        <location filename="../ui/EditProduct.ui" line="11350"/>
-        <location filename="../ui/EditProduct.ui" line="11659"/>
+        <location filename="../ui/EditProduct.ui" line="3577"/>
+        <location filename="../ui/EditProduct.ui" line="4041"/>
+        <location filename="../ui/EditProduct.ui" line="4108"/>
+        <location filename="../ui/EditProduct.ui" line="8054"/>
+        <location filename="../ui/EditProduct.ui" line="8670"/>
+        <location filename="../ui/EditProduct.ui" line="8992"/>
+        <location filename="../ui/EditProduct.ui" line="9067"/>
+        <location filename="../ui/EditProduct.ui" line="9106"/>
+        <location filename="../ui/EditProduct.ui" line="9177"/>
+        <location filename="../ui/EditProduct.ui" line="9264"/>
+        <location filename="../ui/EditProduct.ui" line="9573"/>
+        <location filename="../ui/EditProduct.ui" line="9593"/>
+        <location filename="../ui/EditProduct.ui" line="9632"/>
+        <location filename="../ui/EditProduct.ui" line="9807"/>
+        <location filename="../ui/EditProduct.ui" line="9827"/>
+        <location filename="../ui/EditProduct.ui" line="9866"/>
+        <location filename="../ui/EditProduct.ui" line="10025"/>
+        <location filename="../ui/EditProduct.ui" line="10160"/>
+        <location filename="../ui/EditProduct.ui" line="10180"/>
+        <location filename="../ui/EditProduct.ui" line="10221"/>
+        <location filename="../ui/EditProduct.ui" line="11482"/>
+        <location filename="../ui/EditProduct.ui" line="11502"/>
+        <location filename="../ui/EditProduct.ui" line="11559"/>
+        <location filename="../ui/EditProduct.ui" line="11868"/>
         <source>...</source>
         <translation>...</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3407"/>
+        <location filename="../ui/EditProduct.ui" line="3616"/>
         <source>Need billion cells:</source>
         <translation>Nodig miljard cellen:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3463"/>
+        <location filename="../ui/EditProduct.ui" line="3672"/>
         <source>Dry yeast claculation.</source>
         <translation>Droge gist berekening.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3476"/>
+        <location filename="../ui/EditProduct.ui" line="3685"/>
         <source>Low grams/hl:</source>
         <translation>Laag grammen/hl:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3492"/>
+        <location filename="../ui/EditProduct.ui" line="3701"/>
         <source>High grams/hl:</source>
         <translation>Hoog grammen/hl:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3552"/>
-        <location filename="../ui/EditProduct.ui" line="3568"/>
+        <location filename="../ui/EditProduct.ui" line="3761"/>
+        <location filename="../ui/EditProduct.ui" line="3777"/>
         <source>at</source>
         <translation>bij</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3643"/>
+        <location filename="../ui/EditProduct.ui" line="3852"/>
         <source>This recipe pitch grams/hl:</source>
         <translation>Dit recept ent gram/hl:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3687"/>
-        <source>Pitchrate grams/hectoliter:</source>
-        <translation>Ent gram/hectoliter:</translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="3703"/>
-        <source>Yeast grams needed:</source>
-        <translation>Gist grammen nodig:</translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="3797"/>
-        <source>Production date:</source>
-        <translation>Productie datum:</translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="3813"/>
-        <source>Yeast condition:</source>
-        <translation>Gist conditie:</translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="3829"/>
-        <location filename="../ui/EditProduct.ui" line="8855"/>
-        <source>Set the date to today.</source>
-        <translation>Zet de datum op vandaag.</translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="3877"/>
-        <source>Edit the production date.</source>
-        <translation>Wijzig de productie datum.</translation>
-    </message>
-    <message>
-        <location filename="../ui/EditProduct.ui" line="3880"/>
-        <location filename="../ui/EditProduct.ui" line="8878"/>
-        <location filename="../ui/EditProduct.ui" line="8933"/>
-        <location filename="../ui/EditProduct.ui" line="9404"/>
-        <location filename="../ui/EditProduct.ui" line="9638"/>
-        <location filename="../ui/EditProduct.ui" line="11254"/>
-        <location filename="../ui/EditProduct.ui" line="11640"/>
-        <source>dd-MM-yyyy</source>
-        <translation>dd-MM-yyyy</translation>
-    </message>
-    <message>
         <location filename="../ui/EditProduct.ui" line="3896"/>
+        <source>Pitchrate grams/hectoliter:</source>
+        <translation>Ent gram/hectoliter:</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="3912"/>
+        <source>Yeast grams needed:</source>
+        <translation>Gist grammen nodig:</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4006"/>
+        <source>Production date:</source>
+        <translation>Productie datum:</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4022"/>
+        <source>Yeast condition:</source>
+        <translation>Gist conditie:</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4038"/>
+        <location filename="../ui/EditProduct.ui" line="9064"/>
+        <source>Set the date to today.</source>
+        <translation>Zet de datum op vandaag.</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4086"/>
+        <source>Edit the production date.</source>
+        <translation>Wijzig de productie datum.</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4089"/>
+        <location filename="../ui/EditProduct.ui" line="9087"/>
+        <location filename="../ui/EditProduct.ui" line="9142"/>
+        <location filename="../ui/EditProduct.ui" line="9613"/>
+        <location filename="../ui/EditProduct.ui" line="9847"/>
+        <location filename="../ui/EditProduct.ui" line="11463"/>
+        <location filename="../ui/EditProduct.ui" line="11849"/>
+        <source>dd-MM-yyyy</source>
+        <translation>dd-MM-yyyy</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4105"/>
         <source>Clear the date</source>
         <translation>Verwijder de datum</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3913"/>
+        <location filename="../ui/EditProduct.ui" line="4122"/>
         <location filename="../src/EditProductTab3.cpp" line="1106"/>
         <location filename="../src/EditProductTab5.cpp" line="719"/>
         <source>Mash</source>
         <translation>Maischen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3952"/>
+        <location filename="../ui/EditProduct.ui" line="4161"/>
         <source>Mash name:</source>
         <translation>Maisch schema:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3968"/>
+        <location filename="../ui/EditProduct.ui" line="4177"/>
         <source>Mash schedule:</source>
         <translation>Kies maisch schema:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4007"/>
+        <location filename="../ui/EditProduct.ui" line="4216"/>
         <source>Mash time:</source>
         <translation>Maisch tijd:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4036"/>
+        <location filename="../ui/EditProduct.ui" line="4245"/>
         <source>Mash total volume:</source>
         <translation>Maisch totaal volume:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4080"/>
+        <location filename="../ui/EditProduct.ui" line="4289"/>
         <source>Water</source>
         <translation>Water</translation>
     </message>
@@ -3031,130 +3024,130 @@
         <translation type="vanished">Water overzicht</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6963"/>
+        <location filename="../ui/EditProduct.ui" line="7172"/>
         <source>Ca</source>
         <translation>Ca</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6702"/>
+        <location filename="../ui/EditProduct.ui" line="6911"/>
         <source>Mg</source>
         <translation>Mg</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7011"/>
+        <location filename="../ui/EditProduct.ui" line="7220"/>
         <source>HCO3</source>
         <translation>HCO3</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6843"/>
+        <location filename="../ui/EditProduct.ui" line="7052"/>
         <source>CaCO3</source>
         <translation>CaCO3</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6947"/>
+        <location filename="../ui/EditProduct.ui" line="7156"/>
         <source>Na</source>
         <translation>Na</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6931"/>
+        <location filename="../ui/EditProduct.ui" line="7140"/>
         <source>Cl</source>
         <translation>Cl</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6979"/>
+        <location filename="../ui/EditProduct.ui" line="7188"/>
         <source>SO4</source>
         <translation>SO4</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6718"/>
+        <location filename="../ui/EditProduct.ui" line="6927"/>
         <location filename="../src/EditProductTab7.cpp" line="37"/>
         <source>pH</source>
         <translation>pH</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6995"/>
+        <location filename="../ui/EditProduct.ui" line="7204"/>
         <location filename="../src/EditProductTab6.cpp" line="296"/>
         <location filename="../src/EditProductTab7.cpp" line="37"/>
         <source>Volume</source>
         <translation>Volume</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6458"/>
+        <location filename="../ui/EditProduct.ui" line="6667"/>
         <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="4686"/>
-        <location filename="../ui/EditProduct.ui" line="5785"/>
+        <location filename="../ui/EditProduct.ui" line="4895"/>
+        <location filename="../ui/EditProduct.ui" line="5994"/>
         <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="5951"/>
+        <location filename="../ui/EditProduct.ui" line="6160"/>
         <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="5716"/>
+        <location filename="../ui/EditProduct.ui" line="5925"/>
         <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="5979"/>
+        <location filename="../ui/EditProduct.ui" line="6188"/>
         <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="5895"/>
+        <location filename="../ui/EditProduct.ui" line="6104"/>
         <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="5866"/>
+        <location filename="../ui/EditProduct.ui" line="6075"/>
         <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="5813"/>
+        <location filename="../ui/EditProduct.ui" line="6022"/>
         <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="7027"/>
+        <location filename="../ui/EditProduct.ui" line="7236"/>
         <source>Water profile</source>
         <translation>Water profiel</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6912"/>
+        <location filename="../ui/EditProduct.ui" line="7121"/>
         <source>The main brewing water</source>
         <translation>Het hoofd brouwwater</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6918"/>
+        <location filename="../ui/EditProduct.ui" line="7127"/>
         <source>Choose water</source>
         <translation>Kies water</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6545"/>
+        <location filename="../ui/EditProduct.ui" line="6754"/>
         <source>Optional dilution water</source>
         <translation>Optioneel meng water</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6548"/>
+        <location filename="../ui/EditProduct.ui" line="6757"/>
         <source>Choose dilution</source>
         <translation>Kies mengwater</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5472"/>
+        <location filename="../ui/EditProduct.ui" line="5681"/>
         <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="6061"/>
+        <location filename="../ui/EditProduct.ui" line="6270"/>
         <source>Mixed water</source>
         <translation>Gemengd water</translation>
     </message>
@@ -3163,137 +3156,142 @@
         <translation type="vanished">Behandeld water</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6746"/>
+        <location filename="../ui/EditProduct.ui" line="6955"/>
         <source>RA</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="6661"/>
+        <location filename="../ui/EditProduct.ui" line="6870"/>
         <source>Hardness</source>
         <translation>Hardheid</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4092"/>
+        <location filename="../ui/EditProduct.ui" line="2463"/>
+        <source>Transfer</source>
+        <translation type="unfinished">Overbrengen</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="4301"/>
         <source>Water agents</source>
         <translation>Brouwzouten</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4104"/>
+        <location filename="../ui/EditProduct.ui" line="4313"/>
         <source>Calcium Chloride</source>
         <translation>Calcium Chloride</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4107"/>
+        <location filename="../ui/EditProduct.ui" line="4316"/>
         <source>CaCl2:</source>
         <translation>CaCl2:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4123"/>
+        <location filename="../ui/EditProduct.ui" line="4332"/>
         <source>Gypsym</source>
         <translation>Gips</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4126"/>
+        <location filename="../ui/EditProduct.ui" line="4335"/>
         <source>CaSO4:</source>
         <translation>CaSO4:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4142"/>
+        <location filename="../ui/EditProduct.ui" line="4351"/>
         <source>Epsom</source>
         <translation>Magmesium sulfaat</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4145"/>
+        <location filename="../ui/EditProduct.ui" line="4354"/>
         <source>MgSO4:</source>
         <translation>MgSO4:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4161"/>
+        <location filename="../ui/EditProduct.ui" line="4370"/>
         <source>Table salt</source>
         <translation>Keukenzout</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4164"/>
+        <location filename="../ui/EditProduct.ui" line="4373"/>
         <source>NaCl:</source>
         <translation>NaCl:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4180"/>
-        <location filename="../ui/EditProduct.ui" line="4364"/>
-        <location filename="../ui/EditProduct.ui" line="4584"/>
+        <location filename="../ui/EditProduct.ui" line="4389"/>
+        <location filename="../ui/EditProduct.ui" line="4573"/>
+        <location filename="../ui/EditProduct.ui" line="4793"/>
         <source>Magnesium Chloride</source>
         <translation>Magnesium Chloride</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4183"/>
+        <location filename="../ui/EditProduct.ui" line="4392"/>
         <source>MgCl2:</source>
         <translation>MgCl2:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4199"/>
-        <location filename="../ui/EditProduct.ui" line="4395"/>
+        <location filename="../ui/EditProduct.ui" line="4408"/>
+        <location filename="../ui/EditProduct.ui" line="4604"/>
         <source>Baking soda</source>
         <translation>Baksoda</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4202"/>
+        <location filename="../ui/EditProduct.ui" line="4411"/>
         <source>NaHCO3:</source>
         <translation>NaHCO3:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4218"/>
-        <location filename="../ui/EditProduct.ui" line="4426"/>
+        <location filename="../ui/EditProduct.ui" line="4427"/>
+        <location filename="../ui/EditProduct.ui" line="4635"/>
         <source>Chalk undissolved</source>
         <translation>Ongebluste kalk</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4221"/>
+        <location filename="../ui/EditProduct.ui" line="4430"/>
         <source>CaCO3:</source>
         <translation>CaCO3:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4237"/>
-        <location filename="../ui/EditProduct.ui" line="4552"/>
+        <location filename="../ui/EditProduct.ui" line="4446"/>
+        <location filename="../ui/EditProduct.ui" line="4761"/>
         <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="4247"/>
-        <location filename="../ui/EditProduct.ui" line="4279"/>
-        <location filename="../ui/EditProduct.ui" line="4310"/>
-        <location filename="../ui/EditProduct.ui" line="4342"/>
-        <location filename="../ui/EditProduct.ui" line="4373"/>
-        <location filename="../ui/EditProduct.ui" line="4404"/>
-        <location filename="../ui/EditProduct.ui" line="4435"/>
-        <location filename="../ui/EditProduct.ui" line="4467"/>
-        <location filename="../ui/EditProduct.ui" line="4498"/>
-        <location filename="../ui/EditProduct.ui" line="4530"/>
-        <location filename="../ui/EditProduct.ui" line="4562"/>
-        <location filename="../ui/EditProduct.ui" line="4593"/>
-        <location filename="../ui/EditProduct.ui" line="10639"/>
-        <location filename="../ui/EditProduct.ui" line="10983"/>
+        <location filename="../ui/EditProduct.ui" line="4456"/>
+        <location filename="../ui/EditProduct.ui" line="4488"/>
+        <location filename="../ui/EditProduct.ui" line="4519"/>
+        <location filename="../ui/EditProduct.ui" line="4551"/>
+        <location filename="../ui/EditProduct.ui" line="4582"/>
+        <location filename="../ui/EditProduct.ui" line="4613"/>
+        <location filename="../ui/EditProduct.ui" line="4644"/>
+        <location filename="../ui/EditProduct.ui" line="4676"/>
+        <location filename="../ui/EditProduct.ui" line="4707"/>
+        <location filename="../ui/EditProduct.ui" line="4739"/>
+        <location filename="../ui/EditProduct.ui" line="4771"/>
+        <location filename="../ui/EditProduct.ui" line="4802"/>
+        <location filename="../ui/EditProduct.ui" line="10848"/>
+        <location filename="../ui/EditProduct.ui" line="11192"/>
         <source> gr</source>
         <translation> gr</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4269"/>
-        <location filename="../ui/EditProduct.ui" line="4457"/>
+        <location filename="../ui/EditProduct.ui" line="4478"/>
+        <location filename="../ui/EditProduct.ui" line="4666"/>
         <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="4301"/>
-        <location filename="../ui/EditProduct.ui" line="4489"/>
+        <location filename="../ui/EditProduct.ui" line="4510"/>
+        <location filename="../ui/EditProduct.ui" line="4698"/>
         <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="4332"/>
-        <location filename="../ui/EditProduct.ui" line="4520"/>
+        <location filename="../ui/EditProduct.ui" line="4541"/>
+        <location filename="../ui/EditProduct.ui" line="4729"/>
         <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.
@@ -3308,24 +3306,24 @@
         <translation type="vanished">Gewenste pH:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4644"/>
+        <location filename="../ui/EditProduct.ui" line="4853"/>
         <source>Auto calculate:</source>
         <translation>Auto bereken:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4660"/>
+        <location filename="../ui/EditProduct.ui" line="4869"/>
         <source>Acid to use:</source>
         <translation>Aanzuren met:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4726"/>
-        <location filename="../ui/EditProduct.ui" line="4865"/>
+        <location filename="../ui/EditProduct.ui" line="4935"/>
+        <location filename="../ui/EditProduct.ui" line="5074"/>
         <source>%</source>
         <translation>%</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4754"/>
-        <location filename="../ui/EditProduct.ui" line="4899"/>
+        <location filename="../ui/EditProduct.ui" line="4963"/>
+        <location filename="../ui/EditProduct.ui" line="5108"/>
         <source> ml</source>
         <translation> ml</translation>
     </message>
@@ -3346,7 +3344,7 @@
         <translation type="vanished">Water bron:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4827"/>
+        <location filename="../ui/EditProduct.ui" line="5036"/>
         <source>Acid type:</source>
         <translation>Aanzuren met:</translation>
     </message>
@@ -3359,156 +3357,156 @@
         <translation type="vanished">Benodigd:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4954"/>
+        <location filename="../ui/EditProduct.ui" line="5163"/>
         <source>Bitterness index:</source>
         <translation>Bitterheidsindex:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5006"/>
-        <location filename="../ui/EditProduct.ui" line="5074"/>
+        <location filename="../ui/EditProduct.ui" line="5215"/>
+        <location filename="../ui/EditProduct.ui" line="5283"/>
         <source>N/A</source>
         <translation>N.v.t</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5022"/>
+        <location filename="../ui/EditProduct.ui" line="5231"/>
         <source>Preffered SO4:Cl ratio:</source>
         <translation>Gewenste SO4:Cl verh:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5090"/>
+        <location filename="../ui/EditProduct.ui" line="5299"/>
         <source>Current SO4:Cl ratio:</source>
         <translation>Huidige SO4:Cl verhouding:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5147"/>
+        <location filename="../ui/EditProduct.ui" line="5356"/>
         <source>Estimate pre boil pH:</source>
         <translation>Geschat voor kook pH:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7200"/>
+        <location filename="../ui/EditProduct.ui" line="7409"/>
         <source>Brewday</source>
         <translation>Brouwdag</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7433"/>
+        <location filename="../ui/EditProduct.ui" line="7642"/>
         <source>Sparge supply:</source>
         <translation>Spoelwater voorraad:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7449"/>
+        <location filename="../ui/EditProduct.ui" line="7658"/>
         <source>Sparge estimate:</source>
         <translation>Spoelwater geschat:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7493"/>
+        <location filename="../ui/EditProduct.ui" line="7702"/>
         <source>Sparge temp:</source>
         <translation>Spoelwater temp:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9093"/>
+        <location filename="../ui/EditProduct.ui" line="9302"/>
         <source>Start density:</source>
         <translation>Begin densiteit:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9109"/>
+        <location filename="../ui/EditProduct.ui" line="9318"/>
         <source>Start temperature:</source>
         <translation>Start temperatuur:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9125"/>
+        <location filename="../ui/EditProduct.ui" line="9334"/>
         <source>Peak temperature:</source>
         <translation>Piek temperatuur:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9141"/>
-        <location filename="../ui/EditProduct.ui" line="9453"/>
+        <location filename="../ui/EditProduct.ui" line="9350"/>
+        <location filename="../ui/EditProduct.ui" line="9662"/>
         <source>End temperature:</source>
         <translation>Eind temperatuur:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9157"/>
-        <location filename="../ui/EditProduct.ui" line="9469"/>
+        <location filename="../ui/EditProduct.ui" line="9366"/>
+        <location filename="../ui/EditProduct.ui" line="9678"/>
         <source>End density:</source>
         <translation>Eind densiteit:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9173"/>
-        <location filename="../ui/EditProduct.ui" line="9485"/>
+        <location filename="../ui/EditProduct.ui" line="9382"/>
+        <location filename="../ui/EditProduct.ui" line="9694"/>
         <source>End date:</source>
         <translation>Eind datum:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9317"/>
-        <location filename="../ui/EditProduct.ui" line="9551"/>
-        <location filename="../ui/EditProduct.ui" line="9769"/>
+        <location filename="../ui/EditProduct.ui" line="9526"/>
+        <location filename="../ui/EditProduct.ui" line="9760"/>
+        <location filename="../ui/EditProduct.ui" line="9978"/>
         <source>Apparent attenuation:</source>
         <translation>Schijnbare vergisting:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9635"/>
+        <location filename="../ui/EditProduct.ui" line="9844"/>
         <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="9687"/>
+        <location filename="../ui/EditProduct.ui" line="9896"/>
         <source>Average temperature:</source>
         <translation>Gemiddelde temperatuur:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9703"/>
+        <location filename="../ui/EditProduct.ui" line="9912"/>
         <source>Final density:</source>
         <translation>Finale densiteit:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9833"/>
+        <location filename="../ui/EditProduct.ui" line="10042"/>
         <source>Expected end density:</source>
         <translation>Verwachte eind densiteit:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10147"/>
+        <location filename="../ui/EditProduct.ui" line="10356"/>
         <source>Extra added volume:</source>
         <translation>Toevoeging volume:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10163"/>
+        <location filename="../ui/EditProduct.ui" line="10372"/>
         <source>Extra remarks:</source>
         <translation>Toevoeging opmerking:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10179"/>
+        <location filename="../ui/EditProduct.ui" line="10388"/>
         <source>Final ABV %:</source>
         <translation>Finale ABV %:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10195"/>
+        <location filename="../ui/EditProduct.ui" line="10404"/>
         <source>Extra added ABV %:</source>
         <translation>Toevoeging extra ABV %:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10452"/>
-        <location filename="../ui/EditProduct.ui" line="11030"/>
+        <location filename="../ui/EditProduct.ui" line="10661"/>
+        <location filename="../ui/EditProduct.ui" line="11239"/>
         <source>Volume:</source>
         <translation>Volume:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10516"/>
-        <location filename="../ui/EditProduct.ui" line="10920"/>
+        <location filename="../ui/EditProduct.ui" line="10725"/>
+        <location filename="../ui/EditProduct.ui" line="11129"/>
         <source>Priming:</source>
         <translation>Carbonatie:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10548"/>
+        <location filename="../ui/EditProduct.ui" line="10757"/>
         <source>Bottle fermentation:</source>
         <translation>Flessen hergisting:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10667"/>
-        <location filename="../ui/EditProduct.ui" line="11083"/>
+        <location filename="../ui/EditProduct.ui" line="10876"/>
+        <location filename="../ui/EditProduct.ui" line="11292"/>
         <source> gr/L</source>
         <translation> gr/L</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10936"/>
+        <location filename="../ui/EditProduct.ui" line="11145"/>
         <source>Kegs temperature:</source>
         <translation>Fusten temperatuur:</translation>
     </message>
@@ -3517,32 +3515,32 @@
         <translation type="vanished">Brouwdag start:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7228"/>
+        <location filename="../ui/EditProduct.ui" line="7437"/>
         <source>Brewday end:</source>
         <translation>Brouwdag eind:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7244"/>
+        <location filename="../ui/EditProduct.ui" line="7453"/>
         <source>Mashing and Sparge</source>
         <translation>Maischen en Spoelen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7256"/>
+        <location filename="../ui/EditProduct.ui" line="7465"/>
         <source>Mash pH:</source>
         <translation>Maisch pH:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7385"/>
+        <location filename="../ui/EditProduct.ui" line="7594"/>
         <source>Mash SG:</source>
         <translation>Maisch SG:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7401"/>
+        <location filename="../ui/EditProduct.ui" line="7610"/>
         <source>Mash efficiency:</source>
         <translation>Maisch rendement:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7417"/>
+        <location filename="../ui/EditProduct.ui" line="7626"/>
         <source>Sparge water pH:</source>
         <translation>Spoelwater pH:</translation>
     </message>
@@ -3575,112 +3573,112 @@
         <translation type="vanished">Voor koken rendement:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7842"/>
-        <location filename="../ui/EditProduct.ui" line="8780"/>
+        <location filename="../ui/EditProduct.ui" line="8051"/>
+        <location filename="../ui/EditProduct.ui" line="8989"/>
         <source>Edit volume</source>
         <translation>Wijzig volume</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7926"/>
+        <location filename="../ui/EditProduct.ui" line="8135"/>
         <source>Whirlpool cold:</source>
         <translation>Whirlpool koud:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8359"/>
+        <location filename="../ui/EditProduct.ui" line="8568"/>
         <source>Aeration time &amp; speed:</source>
         <translation>Beluchten tijd snelheid:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8490"/>
+        <location filename="../ui/EditProduct.ui" line="8699"/>
         <source>Cooling method:</source>
         <translation>Koelen methode:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8588"/>
+        <location filename="../ui/EditProduct.ui" line="8797"/>
         <source>Cooling time:</source>
         <translation>Koelen tijd:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8071"/>
+        <location filename="../ui/EditProduct.ui" line="8280"/>
         <source>Transfer to fermenter</source>
         <translation>Naar gistvat</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7212"/>
+        <location filename="../ui/EditProduct.ui" line="7421"/>
         <source>Brewday plan:</source>
         <translation>Brouwdag plan:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7571"/>
-        <location filename="../ui/EditProduct.ui" line="8528"/>
-        <location filename="../ui/EditProduct.ui" line="9217"/>
-        <location filename="../ui/EditProduct.ui" line="9245"/>
-        <location filename="../ui/EditProduct.ui" line="9273"/>
-        <location filename="../ui/EditProduct.ui" line="9507"/>
-        <location filename="../ui/EditProduct.ui" line="9725"/>
-        <location filename="../ui/EditProduct.ui" line="10752"/>
-        <location filename="../ui/EditProduct.ui" line="11202"/>
+        <location filename="../ui/EditProduct.ui" line="7780"/>
+        <location filename="../ui/EditProduct.ui" line="8737"/>
+        <location filename="../ui/EditProduct.ui" line="9426"/>
+        <location filename="../ui/EditProduct.ui" line="9454"/>
+        <location filename="../ui/EditProduct.ui" line="9482"/>
+        <location filename="../ui/EditProduct.ui" line="9716"/>
+        <location filename="../ui/EditProduct.ui" line="9934"/>
+        <location filename="../ui/EditProduct.ui" line="10961"/>
+        <location filename="../ui/EditProduct.ui" line="11411"/>
         <source> °C</source>
         <translation> °C</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7613"/>
+        <location filename="../ui/EditProduct.ui" line="7822"/>
         <source>Pre boil</source>
         <translation>Begin koken</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7657"/>
-        <location filename="../ui/EditProduct.ui" line="8816"/>
+        <location filename="../ui/EditProduct.ui" line="7866"/>
+        <location filename="../ui/EditProduct.ui" line="9025"/>
         <source>Volume @100°C:</source>
         <translation>Volume @100°C:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7755"/>
+        <location filename="../ui/EditProduct.ui" line="7964"/>
         <source>Mash, sparge and lauter efficiency.</source>
         <translation>Maischen, spoelen en filteren rendement.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7882"/>
+        <location filename="../ui/EditProduct.ui" line="8091"/>
         <source>Whirlpools</source>
         <translation>Whirlpoolen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7894"/>
+        <location filename="../ui/EditProduct.ui" line="8103"/>
         <source>Whirlpool 72..79°C:</source>
         <translation>Whirlpool 72..79°C:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7910"/>
+        <location filename="../ui/EditProduct.ui" line="8119"/>
         <source>Whirlpool 60..66°C:</source>
         <translation>Whirlpool 60..66°C:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7942"/>
+        <location filename="../ui/EditProduct.ui" line="8151"/>
         <source>Whirlpool 85..100°C:</source>
         <translation>Whirlpool 85..100°C:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8083"/>
+        <location filename="../ui/EditProduct.ui" line="8292"/>
         <source>Volume to fermenter:</source>
         <translation>Volume naar gistvat:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8099"/>
+        <location filename="../ui/EditProduct.ui" line="8308"/>
         <source>Trub and chiller loss:</source>
         <translation>Trub en koeler verlies:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8221"/>
+        <location filename="../ui/EditProduct.ui" line="8430"/>
         <source>SG in fermenter:</source>
         <translation>SG in gistvat:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8237"/>
+        <location filename="../ui/EditProduct.ui" line="8446"/>
         <source>EBC color in fermenter:</source>
         <translation>EBC kleur in gistvat:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8253"/>
+        <location filename="../ui/EditProduct.ui" line="8462"/>
         <source>IBU in fermenter:</source>
         <translation>IBU in het gistvat:</translation>
     </message>
@@ -3689,7 +3687,7 @@
         <translation type="vanished">Beluchten</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8413"/>
+        <location filename="../ui/EditProduct.ui" line="8622"/>
         <source>Aeration with:</source>
         <translation>Beluchten met:</translation>
     </message>
@@ -3702,193 +3700,193 @@
         <translation type="vanished">Beluchten snelheid:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8381"/>
+        <location filename="../ui/EditProduct.ui" line="8590"/>
         <source> L/m</source>
         <translation> L/m</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8458"/>
-        <location filename="../ui/EditProduct.ui" line="9948"/>
-        <location filename="../ui/EditProduct.ui" line="9968"/>
-        <location filename="../ui/EditProduct.ui" line="11290"/>
+        <location filename="../ui/EditProduct.ui" line="8667"/>
+        <location filename="../ui/EditProduct.ui" line="10157"/>
+        <location filename="../ui/EditProduct.ui" line="10177"/>
+        <location filename="../ui/EditProduct.ui" line="11499"/>
         <source>Brew log chart</source>
         <translation>Brouw log grafiek</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8478"/>
+        <location filename="../ui/EditProduct.ui" line="8687"/>
         <source>Cooling</source>
         <translation>Koelen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8506"/>
+        <location filename="../ui/EditProduct.ui" line="8715"/>
         <source>Cooling to:</source>
         <translation>Koelen tot:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8605"/>
+        <location filename="../ui/EditProduct.ui" line="8814"/>
         <location filename="../src/EditProductExport.cpp" line="804"/>
         <source>After boil</source>
         <translation>Einde koken</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8749"/>
+        <location filename="../ui/EditProduct.ui" line="8958"/>
         <source>The overall efficiency.</source>
         <translation>Het totale brouwzaal rendement.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8875"/>
+        <location filename="../ui/EditProduct.ui" line="9084"/>
         <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="8894"/>
+        <location filename="../ui/EditProduct.ui" line="9103"/>
         <source>Clear planned brewdate</source>
         <translation>Wis geplande brouwdag</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8914"/>
+        <location filename="../ui/EditProduct.ui" line="9123"/>
         <source>Edit the brewdate start time.</source>
         <translation>Wijzig de brouwdag start tijd.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8917"/>
-        <location filename="../ui/EditProduct.ui" line="8952"/>
+        <location filename="../ui/EditProduct.ui" line="9126"/>
+        <location filename="../ui/EditProduct.ui" line="9161"/>
         <source>hh:mm</source>
         <translation>hh:mm</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8930"/>
+        <location filename="../ui/EditProduct.ui" line="9139"/>
         <source>Edit the brewdate end.</source>
         <translation>Wijzig de brouwdag eind datum.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8949"/>
+        <location filename="../ui/EditProduct.ui" line="9158"/>
         <source>Edit the brewdate end time.</source>
         <translation>Wijzig de brouwdag eind tijd.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8965"/>
+        <location filename="../ui/EditProduct.ui" line="9174"/>
         <source>Set the brewdate end date.</source>
         <translation>Zet de brouwdag eind datum.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="8985"/>
+        <location filename="../ui/EditProduct.ui" line="9194"/>
         <source>End time:</source>
         <translation>Eind tijd:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9001"/>
+        <location filename="../ui/EditProduct.ui" line="9210"/>
         <source>Start time:</source>
         <translation>Start tijd:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9017"/>
+        <location filename="../ui/EditProduct.ui" line="9226"/>
         <source>Show brewlog:</source>
         <translation>Toon brouwlog:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9036"/>
+        <location filename="../ui/EditProduct.ui" line="9245"/>
         <source>Confirm brew done:</source>
         <translation>Bevestig brouwdag:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9052"/>
-        <location filename="../ui/EditProduct.ui" line="9420"/>
-        <location filename="../ui/EditProduct.ui" line="9654"/>
+        <location filename="../ui/EditProduct.ui" line="9261"/>
+        <location filename="../ui/EditProduct.ui" line="9629"/>
+        <location filename="../ui/EditProduct.ui" line="9863"/>
         <source>Confirm the brew dates and times.</source>
         <translation>Bevestig de brouw datums en tijden.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9069"/>
+        <location filename="../ui/EditProduct.ui" line="9278"/>
         <source>Fermenting</source>
         <translation>Vergisten</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9081"/>
+        <location filename="../ui/EditProduct.ui" line="9290"/>
         <source>Primary fermentation</source>
         <translation>Hoofdvergisting</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9361"/>
-        <location filename="../ui/EditProduct.ui" line="9595"/>
-        <location filename="../ui/EditProduct.ui" line="9813"/>
+        <location filename="../ui/EditProduct.ui" line="9570"/>
+        <location filename="../ui/EditProduct.ui" line="9804"/>
+        <location filename="../ui/EditProduct.ui" line="10022"/>
         <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="9381"/>
-        <location filename="../ui/EditProduct.ui" line="9615"/>
+        <location filename="../ui/EditProduct.ui" line="9590"/>
+        <location filename="../ui/EditProduct.ui" line="9824"/>
         <source>Set the date to today</source>
         <translation>Zet de datum op vandaag</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9401"/>
+        <location filename="../ui/EditProduct.ui" line="9610"/>
         <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="9441"/>
+        <location filename="../ui/EditProduct.ui" line="9650"/>
         <source>Secondary fermentation</source>
         <translation>Nagisting</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9675"/>
+        <location filename="../ui/EditProduct.ui" line="9884"/>
         <source>Tertiary fermentation</source>
         <translation>Lageren</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9871"/>
+        <location filename="../ui/EditProduct.ui" line="10080"/>
         <source>Alcohol volume:</source>
         <translation>Alcohol vol%:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9916"/>
+        <location filename="../ui/EditProduct.ui" line="10125"/>
         <source>Show fermenter unit log:</source>
         <translation>Toon gistkast log:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9932"/>
+        <location filename="../ui/EditProduct.ui" line="10141"/>
         <source>Show fermentation log:</source>
         <translation>Toon vergisting log:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9981"/>
+        <location filename="../ui/EditProduct.ui" line="10190"/>
         <source>Package</source>
         <translation>Verpakken</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="9993"/>
+        <location filename="../ui/EditProduct.ui" line="10202"/>
         <source>Package date:</source>
         <translation>Verpakken datum:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10066"/>
+        <location filename="../ui/EditProduct.ui" line="10275"/>
         <source>Carbonation range:</source>
         <translation>Koolzuur volumes:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10119"/>
+        <location filename="../ui/EditProduct.ui" line="10328"/>
         <source>Infusion or Dilution</source>
         <translation>Infusie of verdunnen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10131"/>
+        <location filename="../ui/EditProduct.ui" line="10340"/>
         <source>Package volume:</source>
         <translation>Verpakken volume:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10392"/>
+        <location filename="../ui/EditProduct.ui" line="10601"/>
         <source>Package ABV %:</source>
         <translation>Verpakken ABV %:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10211"/>
+        <location filename="../ui/EditProduct.ui" line="10420"/>
         <source>pH from fermenter:</source>
         <translation>pH vanuit gistvat:</translation>
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="530"/>
-        <location filename="../ui/EditProduct.ui" line="3118"/>
+        <location filename="../ui/EditProduct.ui" line="3327"/>
         <source>Estimated ABV:</source>
         <translation>Verwacht ABV:</translation>
     </message>
@@ -3904,7 +3902,7 @@
     </message>
     <message>
         <location filename="../ui/EditProduct.ui" line="843"/>
-        <location filename="../ui/EditProduct.ui" line="2714"/>
+        <location filename="../ui/EditProduct.ui" line="2923"/>
         <source>Estimated IBU:</source>
         <translation>Verwacht IBU:</translation>
     </message>
@@ -3934,249 +3932,318 @@
         <translation>Fusten CO2:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2867"/>
+        <location filename="../ui/EditProduct.ui" line="1824"/>
+        <source>Brewhouse efficiency:</source>
+        <translation type="unfinished">Brouwzaal rendement:</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="1853"/>
+        <source>Liters per minute to pump trough the chiller. 
+Used to calculate the time needed to transfer the wort.</source>
+        <translation type="unfinished">Liters per minuut pompen door de koeler.
+Gebruikt om de tijd te berekenen om het wort weg te pompen.</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="1888"/>
+        <source>Transfer liters/minute:</source>
+        <translation type="unfinished">Overbrengen liters/minuut:</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="1904"/>
+        <source>Minutes elapsed to cool to 79 °C</source>
+        <translation type="unfinished">Nodige minuten om tot 79 °C te koelen</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="1941"/>
+        <source>Volume lost in hoses, pump ...</source>
+        <translation type="unfinished">Verlies in slangen, pomp ...</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="1984"/>
+        <source>Transfer loss L:</source>
+        <translation type="unfinished">Overbrengen verlies L:</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="2000"/>
+        <source>Immersion chiller L:</source>
+        <translation type="unfinished">Dompelkoeler L:</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="2016"/>
+        <source>Wort chiller type:</source>
+        <translation type="unfinished">Wort koeler type:</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="2032"/>
+        <source>Minutes to cool to 79 °C:</source>
+        <translation type="unfinished">Minuten koelen tot 79 °C:</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="2048"/>
+        <source>Temporary extra volume of the immersion chiller in the kettle.
+Used to correct the after boil volume.</source>
+        <translation type="unfinished">Tijdelijk extra volume in de kookketel.
+Wordt gebruikt als correctie voor na koken volume.</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="2412"/>
+        <source>Kettle trub loss:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="2509"/>
+        <source>Extra water in fermenter:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="2559"/>
+        <source>Volume in fermenter L:</source>
+        <translation type="unfinished">Volume naar het gistvat L:</translation>
+    </message>
+    <message>
+        <location filename="../ui/EditProduct.ui" line="3076"/>
         <source>Boil absorb:</source>
         <translation>Kook absorptie:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2883"/>
+        <location filename="../ui/EditProduct.ui" line="3092"/>
         <source>Loss by hop absorption in the boil kettle</source>
         <translation>Verlies door hop absorptie in de kook ketel</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2923"/>
+        <location filename="../ui/EditProduct.ui" line="3132"/>
         <source>Fermenter absorb:</source>
         <translation>Gistvat absorptie:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="2939"/>
+        <location filename="../ui/EditProduct.ui" line="3148"/>
         <source>Loss in the fermenter caused by dry-hopping</source>
         <translation>Verlies in het gistvat door het drooghoppen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="3171"/>
+        <location filename="../ui/EditProduct.ui" line="3380"/>
         <source>Apparent Attenuation:</source>
         <translation>Schijnbare vergisting:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4616"/>
+        <location filename="../ui/EditProduct.ui" line="4825"/>
         <source>Acid Additions</source>
         <translation>Zuur toevoegingen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4628"/>
+        <location filename="../ui/EditProduct.ui" line="4837"/>
         <source>Desired mash pH:</source>
         <translation>Gewenst maisch pH:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4786"/>
+        <location filename="../ui/EditProduct.ui" line="4995"/>
         <source>Desired sparge pH:</source>
         <translation>Gewenst spoel pH:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="4921"/>
-        <location filename="../ui/EditProduct.ui" line="4937"/>
+        <location filename="../ui/EditProduct.ui" line="5130"/>
+        <location filename="../ui/EditProduct.ui" line="5146"/>
         <source>Acid amount:</source>
         <translation>Zuur hoeveelheid:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5391"/>
+        <location filename="../ui/EditProduct.ui" line="5600"/>
         <source>The total prepared amount of sparge water</source>
         <translation>De totale voorraad spoelwater</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5475"/>
+        <location filename="../ui/EditProduct.ui" line="5684"/>
         <source>Choose example water</source>
         <translation>Kies voorbeeld water</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="5769"/>
+        <location filename="../ui/EditProduct.ui" line="5978"/>
         <source>Treated mash water</source>
         <translation>Behandeld maisch water</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7118"/>
+        <location filename="../ui/EditProduct.ui" line="7327"/>
         <source>Sparge water source 1</source>
         <translation>Spoelwater bron 1</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7140"/>
+        <location filename="../ui/EditProduct.ui" line="7349"/>
         <source>Sparge water source 2</source>
         <translation>Spoelwater bron 2</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7159"/>
+        <location filename="../ui/EditProduct.ui" line="7368"/>
         <source>Sparge water mixed</source>
         <translation>Gemengd spoelwater</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7175"/>
+        <location filename="../ui/EditProduct.ui" line="7384"/>
         <location filename="../src/EditProductTab5.cpp" line="724"/>
         <source>Sparge</source>
         <translation>Spoel</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7191"/>
+        <location filename="../ui/EditProduct.ui" line="7400"/>
         <source>Treated sparge water</source>
         <translation>Behandeld spoelwater</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10255"/>
+        <location filename="../ui/EditProduct.ui" line="10464"/>
         <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="10286"/>
-        <location filename="../ui/EditProduct.ui" line="10408"/>
+        <location filename="../ui/EditProduct.ui" line="10495"/>
+        <location filename="../ui/EditProduct.ui" line="10617"/>
         <source>The ABV including the infusion.</source>
         <translation>Het ABV inclusief infusie.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10317"/>
+        <location filename="../ui/EditProduct.ui" line="10526"/>
         <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="10376"/>
+        <location filename="../ui/EditProduct.ui" line="10585"/>
         <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="10440"/>
+        <location filename="../ui/EditProduct.ui" line="10649"/>
         <source>Bottles</source>
         <translation>Flessen</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10468"/>
-        <location filename="../ui/EditProduct.ui" line="10888"/>
+        <location filename="../ui/EditProduct.ui" line="10677"/>
+        <location filename="../ui/EditProduct.ui" line="11097"/>
         <source>Desired volume CO2:</source>
         <translation>Gewenst volume CO2:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10484"/>
-        <location filename="../ui/EditProduct.ui" line="10955"/>
+        <location filename="../ui/EditProduct.ui" line="10693"/>
+        <location filename="../ui/EditProduct.ui" line="11164"/>
         <source>Priming sugar:</source>
         <translation>Carbonatie suiker:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10500"/>
-        <location filename="../ui/EditProduct.ui" line="10872"/>
+        <location filename="../ui/EditProduct.ui" line="10709"/>
+        <location filename="../ui/EditProduct.ui" line="11081"/>
         <source>Sugar amount:</source>
         <translation>Suiker gewicht:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10532"/>
-        <location filename="../ui/EditProduct.ui" line="10904"/>
+        <location filename="../ui/EditProduct.ui" line="10741"/>
+        <location filename="../ui/EditProduct.ui" line="11113"/>
         <source>Water amount:</source>
         <translation>Water volume:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10714"/>
+        <location filename="../ui/EditProduct.ui" line="10923"/>
         <source>Expected pressure in bar:</source>
         <translation>Verwachte druk in bar:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10730"/>
+        <location filename="../ui/EditProduct.ui" line="10939"/>
         <source>Bottles ABV %:</source>
         <translation>Flessen ABV %:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10828"/>
+        <location filename="../ui/EditProduct.ui" line="11037"/>
         <source>Kegs</source>
         <translation>Fusten</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10840"/>
+        <location filename="../ui/EditProduct.ui" line="11049"/>
         <source>Kegs ABV %:</source>
         <translation>Fusten ABV %:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="10856"/>
+        <location filename="../ui/EditProduct.ui" line="11065"/>
         <source>Kegs pressure in bar:</source>
         <translation>Fusten druk in bar:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11224"/>
+        <location filename="../ui/EditProduct.ui" line="11433"/>
         <source>Forced carbonation:</source>
         <translation>Geforceerde carbonatie:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11251"/>
+        <location filename="../ui/EditProduct.ui" line="11460"/>
         <source>Edit the package date.</source>
         <translation>Wijzig de verpakkings datum.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11310"/>
+        <location filename="../ui/EditProduct.ui" line="11519"/>
         <source>Show carbonation log:</source>
         <translation>Toon carbonatie log:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11319"/>
+        <location filename="../ui/EditProduct.ui" line="11528"/>
         <source>Tasting</source>
         <translation>Proeven</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11331"/>
+        <location filename="../ui/EditProduct.ui" line="11540"/>
         <source>Taste date:</source>
         <translation>Proeven datum:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11367"/>
+        <location filename="../ui/EditProduct.ui" line="11576"/>
         <source>Taste rate:</source>
         <translation>Beoordeling cijfer:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11408"/>
+        <location filename="../ui/EditProduct.ui" line="11617"/>
         <source>Color:</source>
         <translation>Kleur:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11424"/>
+        <location filename="../ui/EditProduct.ui" line="11633"/>
         <source>Transparency:</source>
         <translation>Helderheid:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11440"/>
+        <location filename="../ui/EditProduct.ui" line="11649"/>
         <source>Head:</source>
         <translation>Schuim:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11495"/>
+        <location filename="../ui/EditProduct.ui" line="11704"/>
         <source>Aroma:</source>
         <translation>Geur:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11524"/>
+        <location filename="../ui/EditProduct.ui" line="11733"/>
         <source>Taste:</source>
         <translation>Smaak:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11553"/>
+        <location filename="../ui/EditProduct.ui" line="11762"/>
         <source>Aftertaste:</source>
         <translation>Nasmaak:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11582"/>
+        <location filename="../ui/EditProduct.ui" line="11791"/>
         <source>Mouthfeel:</source>
         <translation>Mondgevoel:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11611"/>
+        <location filename="../ui/EditProduct.ui" line="11820"/>
         <source>Notes:</source>
         <translation>Opmerkingen:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11637"/>
+        <location filename="../ui/EditProduct.ui" line="11846"/>
         <source>Edit the tasting date.</source>
         <translation>Wijzig de datum van proeven.</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11678"/>
+        <location filename="../ui/EditProduct.ui" line="11887"/>
         <source>Export</source>
         <translation>Exporteer</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="11695"/>
+        <location filename="../ui/EditProduct.ui" line="11904"/>
         <source>Print</source>
         <translation>Print</translation>
     </message>
@@ -4247,7 +4314,7 @@
         <translation type="vanished">MySQL fout: record %1 niet gevonden</translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="305"/>
+        <location filename="../src/EditProduct.cpp" line="306"/>
         <source>%1, part %2 of %3</source>
         <translation>%1, deel %2 van %3</translation>
     </message>
@@ -4256,28 +4323,28 @@
         <translation type="vanished">Koken %1 minuten</translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="809"/>
+        <location filename="../src/EditProduct.cpp" line="810"/>
         <source>BMSapp - Add new product</source>
         <translation>BMSapp - Nieuw product</translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="811"/>
+        <location filename="../src/EditProduct.cpp" line="812"/>
         <source>BMSapp - Edit product %1</source>
         <translation>BMSapp - Wijzig product %1</translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="827"/>
-        <location filename="../src/EditProduct.cpp" line="831"/>
+        <location filename="../src/EditProduct.cpp" line="828"/>
+        <location filename="../src/EditProduct.cpp" line="832"/>
         <source>Edit Product</source>
         <translation>Wijzig Product</translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="827"/>
+        <location filename="../src/EditProduct.cpp" line="828"/>
         <source>Name empty or too short.</source>
         <translation>De naam is leeg of te kort.</translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="831"/>
+        <location filename="../src/EditProduct.cpp" line="832"/>
         <source>No beerstyle selected.</source>
         <translation>Geen bierstijl gekozen.</translation>
     </message>
@@ -4290,17 +4357,17 @@
 %3</translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="869"/>
+        <location filename="../src/EditProduct.cpp" line="870"/>
         <source>Delete product</source>
         <translation>Verwijder product</translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="893"/>
+        <location filename="../src/EditProduct.cpp" line="894"/>
         <source>Product changed</source>
         <translation>Product gewijzigd</translation>
     </message>
     <message>
-        <location filename="../src/EditProduct.cpp" line="893"/>
+        <location filename="../src/EditProduct.cpp" line="894"/>
         <source>The product has been modified. Save changes?</source>
         <translation>Het product is gewijzigd. Wijzigingen opslaan?</translation>
     </message>
@@ -4436,7 +4503,7 @@
         <location filename="../src/EditProductTab5.cpp" line="400"/>
         <location filename="../src/EditProductTab6.cpp" line="748"/>
         <location filename="../src/EditProductTab7.cpp" line="303"/>
-        <location filename="../src/EditProduct.cpp" line="869"/>
+        <location filename="../src/EditProduct.cpp" line="870"/>
         <source>Delete %1</source>
         <translation>Verwijder %1</translation>
     </message>
@@ -4934,8 +5001,8 @@
         <translation>Verwarm tijd:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7625"/>
-        <location filename="../ui/EditProduct.ui" line="8733"/>
+        <location filename="../ui/EditProduct.ui" line="7834"/>
+        <location filename="../ui/EditProduct.ui" line="8942"/>
         <location filename="../src/EditProductTab7.cpp" line="624"/>
         <source>Measured pH:</source>
         <translation>Gemeten pH:</translation>
@@ -4946,8 +5013,8 @@
         <translation>Gemeten Brix:</translation>
     </message>
     <message>
-        <location filename="../ui/EditProduct.ui" line="7641"/>
-        <location filename="../ui/EditProduct.ui" line="8800"/>
+        <location filename="../ui/EditProduct.ui" line="7850"/>
+        <location filename="../ui/EditProduct.ui" line="9009"/>
         <location filename="../src/EditProductTab7.cpp" line="656"/>
         <source>Measured SG:</source>
         <translation>Gemeten SG:</translation>
@@ -7714,8 +7781,8 @@
     <message>
         <location filename="../src/EditRecipeExport.cpp" line="270"/>
         <location filename="../src/EditRecipeExport.cpp" line="272"/>
-        <location filename="../src/EditRecipeExport.cpp" line="431"/>
-        <location filename="../src/EditRecipeExport.cpp" line="433"/>
+        <location filename="../src/EditRecipeExport.cpp" line="436"/>
+        <location filename="../src/EditRecipeExport.cpp" line="438"/>
         <source>Copy Recipe</source>
         <translation>Kopieer Recept</translation>
     </message>
@@ -7730,45 +7797,45 @@
         <translation>Kopieer Recept fout.</translation>
     </message>
     <message>
-        <location filename="../src/EditRecipeExport.cpp" line="431"/>
+        <location filename="../src/EditRecipeExport.cpp" line="436"/>
         <source>Copy Recipe to Product ready.</source>
         <translation>Kopieer Recept naar Product gereed.</translation>
     </message>
     <message>
-        <location filename="../src/EditRecipeExport.cpp" line="433"/>
+        <location filename="../src/EditRecipeExport.cpp" line="438"/>
         <source>Copy Recipe to Product error.</source>
         <translation>Kopieer Recept naar Product fout.</translation>
     </message>
     <message>
-        <location filename="../src/EditRecipeExport.cpp" line="570"/>
-        <location filename="../src/EditRecipeExport.cpp" line="604"/>
+        <location filename="../src/EditRecipeExport.cpp" line="575"/>
+        <location filename="../src/EditRecipeExport.cpp" line="609"/>
         <source>Export to forum</source>
         <translation>Exporteer naar Forum</translation>
     </message>
     <message>
-        <location filename="../src/EditRecipeExport.cpp" line="570"/>
+        <location filename="../src/EditRecipeExport.cpp" line="575"/>
         <source>The recipe and all data are copied to the clipboard.
 You can &quot;paste&quot; this data in the forum screen in your web browser.</source>
         <translation>Het recept en alle gegevens zijn gekopieerd naar het klemboard.
 Je kunt deze gegevens &quot;plakken&quot; in het forum scherm in je web browser.</translation>
     </message>
     <message>
-        <location filename="../src/EditRecipeExport.cpp" line="577"/>
+        <location filename="../src/EditRecipeExport.cpp" line="582"/>
         <source>Export choices</source>
         <translation>Export keuzes</translation>
     </message>
     <message>
-        <location filename="../src/EditRecipeExport.cpp" line="589"/>
-        <source>Export to beerXML</source>
-        <translation>Exporteer naar beerXML</translation>
-    </message>
-    <message>
         <location filename="../src/EditRecipeExport.cpp" line="594"/>
-        <source>Copy to recipe</source>
-        <translation>Kopieer naar Recept</translation>
+        <source>Export to beerXML</source>
+        <translation>Exporteer naar beerXML</translation>
     </message>
     <message>
         <location filename="../src/EditRecipeExport.cpp" line="599"/>
+        <source>Copy to recipe</source>
+        <translation>Kopieer naar Recept</translation>
+    </message>
+    <message>
+        <location filename="../src/EditRecipeExport.cpp" line="604"/>
         <source>Copy to product</source>
         <translation>Kopieer naar Product</translation>
     </message>
@@ -12988,8 +13055,8 @@
         <location filename="../src/database/db_recipe.cpp" line="654"/>
         <location filename="../src/database/db_recipe.cpp" line="687"/>
         <location filename="../src/database/db_product.cpp" line="31"/>
-        <location filename="../src/database/db_product.cpp" line="1008"/>
-        <location filename="../src/database/db_product.cpp" line="1041"/>
+        <location filename="../src/database/db_product.cpp" line="1014"/>
+        <location filename="../src/database/db_product.cpp" line="1047"/>
         <source>Database error</source>
         <translation>Database fout</translation>
     </message>
@@ -13002,8 +13069,8 @@
     <message>
         <location filename="../src/database/db_recipe.cpp" line="655"/>
         <location filename="../src/database/db_recipe.cpp" line="688"/>
-        <location filename="../src/database/db_product.cpp" line="1009"/>
-        <location filename="../src/database/db_product.cpp" line="1042"/>
+        <location filename="../src/database/db_product.cpp" line="1015"/>
+        <location filename="../src/database/db_product.cpp" line="1048"/>
         <source>MySQL error: %1
 %2
 %3</source>
--- a/ui/EditProduct.ui	Mon Oct 24 16:06:14 2022 +0200
+++ b/ui/EditProduct.ui	Mon Oct 24 19:59:08 2022 +0200
@@ -1528,7 +1528,7 @@
          <rect>
           <x>10</x>
           <y>160</y>
-          <width>311</width>
+          <width>321</width>
           <height>151</height>
          </rect>
         </property>
@@ -1540,7 +1540,7 @@
           <rect>
            <x>10</x>
            <y>80</y>
-           <width>141</width>
+           <width>171</width>
            <height>20</height>
           </rect>
          </property>
@@ -1554,7 +1554,7 @@
         <widget class="QDoubleSpinBox" name="mash_volumeEdit">
          <property name="geometry">
           <rect>
-           <x>160</x>
+           <x>190</x>
            <y>80</y>
            <width>87</width>
            <height>24</height>
@@ -1588,7 +1588,7 @@
         <widget class="QDoubleSpinBox" name="mash_maxEdit">
          <property name="geometry">
           <rect>
-           <x>160</x>
+           <x>190</x>
            <y>110</y>
            <width>87</width>
            <height>24</height>
@@ -1624,7 +1624,7 @@
           <rect>
            <x>10</x>
            <y>110</y>
-           <width>141</width>
+           <width>171</width>
            <height>20</height>
           </rect>
          </property>
@@ -1638,7 +1638,7 @@
         <widget class="QDoubleSpinBox" name="tun_volumeEdit">
          <property name="geometry">
           <rect>
-           <x>160</x>
+           <x>190</x>
            <y>20</y>
            <width>87</width>
            <height>24</height>
@@ -1674,7 +1674,7 @@
           <rect>
            <x>10</x>
            <y>20</y>
-           <width>141</width>
+           <width>171</width>
            <height>20</height>
           </rect>
          </property>
@@ -1690,7 +1690,7 @@
           <rect>
            <x>10</x>
            <y>50</y>
-           <width>141</width>
+           <width>171</width>
            <height>20</height>
           </rect>
          </property>
@@ -1704,9 +1704,9 @@
         <widget class="QLineEdit" name="tun_materialEdit">
          <property name="geometry">
           <rect>
-           <x>160</x>
+           <x>190</x>
            <y>50</y>
-           <width>141</width>
+           <width>121</width>
            <height>23</height>
           </rect>
          </property>
@@ -1720,7 +1720,7 @@
          <rect>
           <x>10</x>
           <y>320</y>
-          <width>311</width>
+          <width>321</width>
           <height>91</height>
          </rect>
         </property>
@@ -1730,8 +1730,8 @@
         <widget class="QDoubleSpinBox" name="lauter_deadspaceEdit">
          <property name="geometry">
           <rect>
-           <x>160</x>
-           <y>50</y>
+           <x>190</x>
+           <y>20</y>
            <width>87</width>
            <height>24</height>
           </rect>
@@ -1765,8 +1765,8 @@
          <property name="geometry">
           <rect>
            <x>10</x>
-           <y>50</y>
-           <width>141</width>
+           <y>20</y>
+           <width>171</width>
            <height>20</height>
           </rect>
          </property>
@@ -1777,139 +1777,10 @@
           <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
          </property>
         </widget>
-        <widget class="QLabel" name="lauter_volumeLabel">
-         <property name="geometry">
-          <rect>
-           <x>10</x>
-           <y>20</y>
-           <width>141</width>
-           <height>20</height>
-          </rect>
-         </property>
-         <property name="text">
-          <string>Lauter volume:</string>
-         </property>
-         <property name="alignment">
-          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-         </property>
-        </widget>
-        <widget class="QDoubleSpinBox" name="lauter_volumeEdit">
-         <property name="geometry">
-          <rect>
-           <x>160</x>
-           <y>20</y>
-           <width>87</width>
-           <height>24</height>
-          </rect>
-         </property>
-         <property name="alignment">
-          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-         </property>
-         <property name="readOnly">
-          <bool>true</bool>
-         </property>
-         <property name="buttonSymbols">
-          <enum>QAbstractSpinBox::NoButtons</enum>
-         </property>
-         <property name="accelerated">
-          <bool>false</bool>
-         </property>
-         <property name="suffix">
-          <string> L</string>
-         </property>
-         <property name="decimals">
-          <number>1</number>
-         </property>
-         <property name="maximum">
-          <double>100000.000000000000000</double>
-         </property>
-         <property name="singleStep">
-          <double>0.500000000000000</double>
-         </property>
-        </widget>
-       </widget>
-       <widget class="QGroupBox" name="chilleqBox">
-        <property name="geometry">
-         <rect>
-          <x>800</x>
-          <y>160</y>
-          <width>311</width>
-          <height>91</height>
-         </rect>
-        </property>
-        <property name="title">
-         <string>Chilling</string>
-        </property>
-        <widget class="QLabel" name="trub_chillerlossLabel">
-         <property name="geometry">
-          <rect>
-           <x>10</x>
-           <y>20</y>
-           <width>141</width>
-           <height>20</height>
-          </rect>
-         </property>
-         <property name="text">
-          <string>Trub chiller loss:</string>
-         </property>
-         <property name="alignment">
-          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-         </property>
-        </widget>
-        <widget class="QDoubleSpinBox" name="trub_chillerlossEdit">
-         <property name="geometry">
-          <rect>
-           <x>160</x>
-           <y>20</y>
-           <width>87</width>
-           <height>24</height>
-          </rect>
-         </property>
-         <property name="alignment">
-          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-         </property>
-         <property name="readOnly">
-          <bool>true</bool>
-         </property>
-         <property name="buttonSymbols">
-          <enum>QAbstractSpinBox::NoButtons</enum>
-         </property>
-         <property name="accelerated">
-          <bool>false</bool>
-         </property>
-         <property name="suffix">
-          <string> L</string>
-         </property>
-         <property name="decimals">
-          <number>1</number>
-         </property>
-         <property name="maximum">
-          <double>100000.000000000000000</double>
-         </property>
-         <property name="singleStep">
-          <double>0.500000000000000</double>
-         </property>
-        </widget>
-        <widget class="QLabel" name="topup_waterLabel">
-         <property name="geometry">
-          <rect>
-           <x>10</x>
-           <y>50</y>
-           <width>141</width>
-           <height>20</height>
-          </rect>
-         </property>
-         <property name="text">
-          <string>Top up water:</string>
-         </property>
-         <property name="alignment">
-          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-         </property>
-        </widget>
-        <widget class="QDoubleSpinBox" name="topup_waterEdit">
-         <property name="geometry">
-          <rect>
-           <x>160</x>
+        <widget class="QDoubleSpinBox" name="eq_efficiencyEdit">
+         <property name="geometry">
+          <rect>
+           <x>190</x>
            <y>50</y>
            <width>87</width>
            <height>24</height>
@@ -1928,7 +1799,7 @@
           <bool>false</bool>
          </property>
          <property name="suffix">
-          <string> L</string>
+          <string> %</string>
          </property>
          <property name="decimals">
           <number>1</number>
@@ -1940,14 +1811,289 @@
           <double>0.500000000000000</double>
          </property>
         </widget>
+        <widget class="QLabel" name="eq_efficiencyLabel">
+         <property name="geometry">
+          <rect>
+           <x>10</x>
+           <y>50</y>
+           <width>171</width>
+           <height>20</height>
+          </rect>
+         </property>
+         <property name="text">
+          <string>Brewhouse efficiency:</string>
+         </property>
+         <property name="alignment">
+          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+         </property>
+        </widget>
+       </widget>
+       <widget class="QGroupBox" name="chilleqBox">
+        <property name="geometry">
+         <rect>
+          <x>790</x>
+          <y>160</y>
+          <width>321</width>
+          <height>181</height>
+         </rect>
+        </property>
+        <property name="title">
+         <string>Chilling</string>
+        </property>
+        <widget class="QDoubleSpinBox" name="chiller_lpmEdit">
+         <property name="geometry">
+          <rect>
+           <x>190</x>
+           <y>140</y>
+           <width>86</width>
+           <height>24</height>
+          </rect>
+         </property>
+         <property name="toolTip">
+          <string>Liters per minute to pump trough the chiller. 
+Used to calculate the time needed to transfer the wort.</string>
+         </property>
+         <property name="alignment">
+          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+         </property>
+         <property name="buttonSymbols">
+          <enum>QAbstractSpinBox::NoButtons</enum>
+         </property>
+         <property name="accelerated">
+          <bool>true</bool>
+         </property>
+         <property name="decimals">
+          <number>2</number>
+         </property>
+         <property name="maximum">
+          <double>100.000000000000000</double>
+         </property>
+         <property name="singleStep">
+          <double>0.050000000000000</double>
+         </property>
+         <property name="stepType">
+          <enum>QAbstractSpinBox::DefaultStepType</enum>
+         </property>
+        </widget>
+        <widget class="QLabel" name="chiller_lpmLabel">
+         <property name="geometry">
+          <rect>
+           <x>10</x>
+           <y>140</y>
+           <width>171</width>
+           <height>20</height>
+          </rect>
+         </property>
+         <property name="text">
+          <string>Transfer liters/minute:</string>
+         </property>
+         <property name="alignment">
+          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+         </property>
+        </widget>
+        <widget class="QDoubleSpinBox" name="chiller_to79Edit">
+         <property name="geometry">
+          <rect>
+           <x>190</x>
+           <y>50</y>
+           <width>86</width>
+           <height>24</height>
+          </rect>
+         </property>
+         <property name="toolTip">
+          <string>Minutes elapsed to cool to 79 °C</string>
+         </property>
+         <property name="alignment">
+          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+         </property>
+         <property name="readOnly">
+          <bool>true</bool>
+         </property>
+         <property name="buttonSymbols">
+          <enum>QAbstractSpinBox::NoButtons</enum>
+         </property>
+         <property name="accelerated">
+          <bool>true</bool>
+         </property>
+         <property name="decimals">
+          <number>0</number>
+         </property>
+         <property name="maximum">
+          <double>100000.000000000000000</double>
+         </property>
+         <property name="singleStep">
+          <double>1.000000000000000</double>
+         </property>
+         <property name="stepType">
+          <enum>QAbstractSpinBox::DefaultStepType</enum>
+         </property>
+        </widget>
+        <widget class="QDoubleSpinBox" name="chiller_lossEdit">
+         <property name="geometry">
+          <rect>
+           <x>190</x>
+           <y>110</y>
+           <width>86</width>
+           <height>24</height>
+          </rect>
+         </property>
+         <property name="toolTip">
+          <string>Volume lost in hoses, pump ...</string>
+         </property>
+         <property name="alignment">
+          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+         </property>
+         <property name="buttonSymbols">
+          <enum>QAbstractSpinBox::NoButtons</enum>
+         </property>
+         <property name="accelerated">
+          <bool>true</bool>
+         </property>
+         <property name="decimals">
+          <number>2</number>
+         </property>
+         <property name="maximum">
+          <double>100.000000000000000</double>
+         </property>
+         <property name="singleStep">
+          <double>0.050000000000000</double>
+         </property>
+         <property name="stepType">
+          <enum>QAbstractSpinBox::DefaultStepType</enum>
+         </property>
+        </widget>
+        <widget class="QLabel" name="chiller_lossLabel">
+         <property name="geometry">
+          <rect>
+           <x>10</x>
+           <y>110</y>
+           <width>171</width>
+           <height>20</height>
+          </rect>
+         </property>
+         <property name="font">
+          <font>
+           <weight>50</weight>
+           <bold>false</bold>
+           <underline>false</underline>
+           <strikeout>false</strikeout>
+           <kerning>true</kerning>
+          </font>
+         </property>
+         <property name="text">
+          <string>Transfer loss L:</string>
+         </property>
+         <property name="alignment">
+          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+         </property>
+        </widget>
+        <widget class="QLabel" name="chiller_volumeLabel">
+         <property name="geometry">
+          <rect>
+           <x>10</x>
+           <y>80</y>
+           <width>171</width>
+           <height>20</height>
+          </rect>
+         </property>
+         <property name="text">
+          <string>Immersion chiller L:</string>
+         </property>
+         <property name="alignment">
+          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+         </property>
+        </widget>
+        <widget class="QLabel" name="chiller_typeLabel">
+         <property name="geometry">
+          <rect>
+           <x>10</x>
+           <y>20</y>
+           <width>171</width>
+           <height>20</height>
+          </rect>
+         </property>
+         <property name="text">
+          <string>Wort chiller type:</string>
+         </property>
+         <property name="alignment">
+          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+         </property>
+        </widget>
+        <widget class="QLabel" name="chiller_to79Label">
+         <property name="geometry">
+          <rect>
+           <x>10</x>
+           <y>50</y>
+           <width>171</width>
+           <height>20</height>
+          </rect>
+         </property>
+         <property name="text">
+          <string>Minutes to cool to 79 °C:</string>
+         </property>
+         <property name="alignment">
+          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+         </property>
+        </widget>
+        <widget class="QDoubleSpinBox" name="chiller_volumeEdit">
+         <property name="geometry">
+          <rect>
+           <x>190</x>
+           <y>80</y>
+           <width>86</width>
+           <height>24</height>
+          </rect>
+         </property>
+         <property name="toolTip">
+          <string>Temporary extra volume of the immersion chiller in the kettle.
+Used to correct the after boil volume.</string>
+         </property>
+         <property name="alignment">
+          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+         </property>
+         <property name="readOnly">
+          <bool>true</bool>
+         </property>
+         <property name="buttonSymbols">
+          <enum>QAbstractSpinBox::NoButtons</enum>
+         </property>
+         <property name="accelerated">
+          <bool>true</bool>
+         </property>
+         <property name="decimals">
+          <number>2</number>
+         </property>
+         <property name="maximum">
+          <double>100.000000000000000</double>
+         </property>
+         <property name="singleStep">
+          <double>0.050000000000000</double>
+         </property>
+         <property name="stepType">
+          <enum>QAbstractSpinBox::DefaultStepType</enum>
+         </property>
+        </widget>
+        <widget class="QLineEdit" name="chiller_typeEdit">
+         <property name="geometry">
+          <rect>
+           <x>190</x>
+           <y>20</y>
+           <width>121</width>
+           <height>23</height>
+          </rect>
+         </property>
+         <property name="readOnly">
+          <bool>true</bool>
+         </property>
+        </widget>
        </widget>
        <widget class="QGroupBox" name="boilBox">
         <property name="geometry">
          <rect>
-          <x>410</x>
+          <x>400</x>
           <y>160</y>
-          <width>311</width>
-          <height>271</height>
+          <width>321</width>
+          <height>241</height>
          </rect>
         </property>
         <property name="title">
@@ -1958,7 +2104,7 @@
           <rect>
            <x>10</x>
            <y>20</y>
-           <width>141</width>
+           <width>171</width>
            <height>20</height>
           </rect>
          </property>
@@ -1972,7 +2118,7 @@
         <widget class="QDoubleSpinBox" name="kettle_volumeEdit">
          <property name="geometry">
           <rect>
-           <x>160</x>
+           <x>190</x>
            <y>20</y>
            <width>87</width>
            <height>24</height>
@@ -2007,8 +2153,8 @@
          <property name="geometry">
           <rect>
            <x>10</x>
-           <y>50</y>
-           <width>141</width>
+           <y>80</y>
+           <width>171</width>
            <height>20</height>
           </rect>
          </property>
@@ -2022,8 +2168,8 @@
         <widget class="QDoubleSpinBox" name="eqboil_sizeEdit">
          <property name="geometry">
           <rect>
-           <x>160</x>
-           <y>50</y>
+           <x>190</x>
+           <y>80</y>
            <width>87</width>
            <height>24</height>
           </rect>
@@ -2057,8 +2203,8 @@
          <property name="geometry">
           <rect>
            <x>10</x>
-           <y>80</y>
-           <width>141</width>
+           <y>110</y>
+           <width>171</width>
            <height>20</height>
           </rect>
          </property>
@@ -2072,8 +2218,8 @@
         <widget class="QDoubleSpinBox" name="evap_rateEdit">
          <property name="geometry">
           <rect>
-           <x>160</x>
-           <y>80</y>
+           <x>190</x>
+           <y>110</y>
            <width>87</width>
            <height>24</height>
           </rect>
@@ -2107,8 +2253,8 @@
          <property name="geometry">
           <rect>
            <x>10</x>
-           <y>110</y>
-           <width>141</width>
+           <y>140</y>
+           <width>171</width>
            <height>20</height>
           </rect>
          </property>
@@ -2122,8 +2268,8 @@
         <widget class="QDoubleSpinBox" name="eqboil_timeEdit">
          <property name="geometry">
           <rect>
-           <x>160</x>
-           <y>110</y>
+           <x>190</x>
+           <y>140</y>
            <width>87</width>
            <height>24</height>
           </rect>
@@ -2157,8 +2303,8 @@
          <property name="geometry">
           <rect>
            <x>10</x>
-           <y>140</y>
-           <width>141</width>
+           <y>170</y>
+           <width>171</width>
            <height>20</height>
           </rect>
          </property>
@@ -2172,8 +2318,8 @@
         <widget class="QDoubleSpinBox" name="topup_kettleEdit">
          <property name="geometry">
           <rect>
-           <x>160</x>
-           <y>140</y>
+           <x>190</x>
+           <y>170</y>
            <width>87</width>
            <height>24</height>
           </rect>
@@ -2203,62 +2349,12 @@
           <double>0.500000000000000</double>
          </property>
         </widget>
-        <widget class="QLabel" name="hop_utilizationLabel">
-         <property name="geometry">
-          <rect>
-           <x>10</x>
-           <y>170</y>
-           <width>141</width>
-           <height>20</height>
-          </rect>
-         </property>
-         <property name="text">
-          <string>Hop utilization:</string>
-         </property>
-         <property name="alignment">
-          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-         </property>
-        </widget>
-        <widget class="QDoubleSpinBox" name="hop_utilizationEdit">
-         <property name="geometry">
-          <rect>
-           <x>160</x>
-           <y>170</y>
-           <width>87</width>
-           <height>24</height>
-          </rect>
-         </property>
-         <property name="alignment">
-          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-         </property>
-         <property name="readOnly">
-          <bool>true</bool>
-         </property>
-         <property name="buttonSymbols">
-          <enum>QAbstractSpinBox::NoButtons</enum>
-         </property>
-         <property name="accelerated">
-          <bool>false</bool>
-         </property>
-         <property name="suffix">
-          <string> %</string>
-         </property>
-         <property name="decimals">
-          <number>0</number>
-         </property>
-         <property name="maximum">
-          <double>100000.000000000000000</double>
-         </property>
-         <property name="singleStep">
-          <double>0.500000000000000</double>
-         </property>
-        </widget>
         <widget class="QLabel" name="eqbatch_sizeLabel">
          <property name="geometry">
           <rect>
            <x>10</x>
            <y>200</y>
-           <width>141</width>
+           <width>171</width>
            <height>20</height>
           </rect>
          </property>
@@ -2272,7 +2368,7 @@
         <widget class="QDoubleSpinBox" name="eqbatch_sizeEdit">
          <property name="geometry">
           <rect>
-           <x>160</x>
+           <x>190</x>
            <y>200</y>
            <width>87</width>
            <height>24</height>
@@ -2303,27 +2399,27 @@
           <double>0.500000000000000</double>
          </property>
         </widget>
-        <widget class="QLabel" name="eq_efficiencyLabel">
-         <property name="geometry">
-          <rect>
-           <x>10</x>
-           <y>230</y>
-           <width>141</width>
-           <height>20</height>
-          </rect>
-         </property>
-         <property name="text">
-          <string>Efficiency:</string>
-         </property>
-         <property name="alignment">
-          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
-         </property>
-        </widget>
-        <widget class="QDoubleSpinBox" name="eq_efficiencyEdit">
-         <property name="geometry">
-          <rect>
-           <x>160</x>
-           <y>230</y>
+        <widget class="QLabel" name="kettle_lossLabel">
+         <property name="geometry">
+          <rect>
+           <x>10</x>
+           <y>50</y>
+           <width>171</width>
+           <height>20</height>
+          </rect>
+         </property>
+         <property name="text">
+          <string>Kettle trub loss:</string>
+         </property>
+         <property name="alignment">
+          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+         </property>
+        </widget>
+        <widget class="QDoubleSpinBox" name="kettle_lossEdit">
+         <property name="geometry">
+          <rect>
+           <x>190</x>
+           <y>50</y>
            <width>87</width>
            <height>24</height>
           </rect>
@@ -2341,7 +2437,54 @@
           <bool>false</bool>
          </property>
          <property name="suffix">
-          <string> %</string>
+          <string> L</string>
+         </property>
+         <property name="decimals">
+          <number>1</number>
+         </property>
+         <property name="maximum">
+          <double>100000.000000000000000</double>
+         </property>
+         <property name="singleStep">
+          <double>0.500000000000000</double>
+         </property>
+        </widget>
+       </widget>
+       <widget class="QGroupBox" name="transferBox">
+        <property name="geometry">
+         <rect>
+          <x>790</x>
+          <y>350</y>
+          <width>321</width>
+          <height>91</height>
+         </rect>
+        </property>
+        <property name="title">
+         <string>Transfer</string>
+        </property>
+        <widget class="QDoubleSpinBox" name="topup_waterEdit">
+         <property name="geometry">
+          <rect>
+           <x>190</x>
+           <y>20</y>
+           <width>86</width>
+           <height>24</height>
+          </rect>
+         </property>
+         <property name="alignment">
+          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+         </property>
+         <property name="readOnly">
+          <bool>true</bool>
+         </property>
+         <property name="buttonSymbols">
+          <enum>QAbstractSpinBox::NoButtons</enum>
+         </property>
+         <property name="accelerated">
+          <bool>false</bool>
+         </property>
+         <property name="suffix">
+          <string> L</string>
          </property>
          <property name="decimals">
           <number>1</number>
@@ -2353,6 +2496,72 @@
           <double>0.500000000000000</double>
          </property>
         </widget>
+        <widget class="QLabel" name="topup_waterLabel">
+         <property name="geometry">
+          <rect>
+           <x>10</x>
+           <y>20</y>
+           <width>171</width>
+           <height>20</height>
+          </rect>
+         </property>
+         <property name="text">
+          <string>Extra water in fermenter:</string>
+         </property>
+         <property name="alignment">
+          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+         </property>
+        </widget>
+        <widget class="QDoubleSpinBox" name="vol_fermenterEdit">
+         <property name="geometry">
+          <rect>
+           <x>190</x>
+           <y>50</y>
+           <width>86</width>
+           <height>24</height>
+          </rect>
+         </property>
+         <property name="alignment">
+          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+         </property>
+         <property name="readOnly">
+          <bool>true</bool>
+         </property>
+         <property name="buttonSymbols">
+          <enum>QAbstractSpinBox::NoButtons</enum>
+         </property>
+         <property name="accelerated">
+          <bool>true</bool>
+         </property>
+         <property name="decimals">
+          <number>2</number>
+         </property>
+         <property name="maximum">
+          <double>100000.000000000000000</double>
+         </property>
+         <property name="singleStep">
+          <double>0.010000000000000</double>
+         </property>
+         <property name="stepType">
+          <enum>QAbstractSpinBox::DefaultStepType</enum>
+         </property>
+        </widget>
+        <widget class="QLabel" name="vol_fermenterLabel">
+         <property name="geometry">
+          <rect>
+           <x>10</x>
+           <y>50</y>
+           <width>171</width>
+           <height>20</height>
+          </rect>
+         </property>
+         <property name="text">
+          <string>Volume in fermenter L:</string>
+         </property>
+         <property name="alignment">
+          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+         </property>
+        </widget>
        </widget>
       </widget>
       <widget class="QWidget" name="fermentables">
@@ -11757,18 +11966,13 @@
   <tabstop>tun_materialEdit</tabstop>
   <tabstop>mash_volumeEdit</tabstop>
   <tabstop>mash_maxEdit</tabstop>
-  <tabstop>lauter_volumeEdit</tabstop>
   <tabstop>lauter_deadspaceEdit</tabstop>
   <tabstop>kettle_volumeEdit</tabstop>
   <tabstop>eqboil_sizeEdit</tabstop>
   <tabstop>evap_rateEdit</tabstop>
   <tabstop>eqboil_timeEdit</tabstop>
   <tabstop>topup_kettleEdit</tabstop>
-  <tabstop>hop_utilizationEdit</tabstop>
   <tabstop>eqbatch_sizeEdit</tabstop>
-  <tabstop>eq_efficiencyEdit</tabstop>
-  <tabstop>trub_chillerlossEdit</tabstop>
-  <tabstop>topup_waterEdit</tabstop>
   <tabstop>est_color2Edit</tabstop>
   <tabstop>est_og2Edit</tabstop>
   <tabstop>mash_kgEdit</tabstop>

mercurial