diff --git a/sd-card/html/edit_alignment.html b/sd-card/html/edit_alignment.html
index ff50a028..f827992f 100644
--- a/sd-card/html/edit_alignment.html
+++ b/sd-card/html/edit_alignment.html
@@ -133,7 +133,7 @@ function SaveToConfig(){
WriteConfigININew();
UpdateConfigReference(domainname)
SaveConfigToServer(domainname);
- firework.launch('Configuration got updated. Please reboot to activate changes!', 'success', 5000);
+ firework.launch('Configuration got updated. It will get applied after the next reboot!', 'success', 5000);
}
function EnhanceContrast(){
diff --git a/sd-card/html/edit_analog.html b/sd-card/html/edit_analog.html
index 53ba41d3..162f0364 100644
--- a/sd-card/html/edit_analog.html
+++ b/sd-card/html/edit_analog.html
@@ -292,7 +292,7 @@ function SaveToConfig(){
cofcat["Analog"]["enabled"] = document.getElementById("Category_Analog_enabled").checked;
WriteConfigININew();
SaveConfigToServer(domainname);
- firework.launch('Configuration got updated. Please reboot to activate changes!', 'success', 5000);
+ firework.launch('Configuration got updated. It will get applied after the next reboot!', 'success', 5000);
}
diff --git a/sd-card/html/edit_config.html b/sd-card/html/edit_config.html
index 2d5f55d3..475b875e 100644
--- a/sd-card/html/edit_config.html
+++ b/sd-card/html/edit_config.html
@@ -63,7 +63,7 @@ function saveTextAsFile()
FileDeleteOnServer("/config/config.ini", domainname);
var textToSave = document.getElementById("inputTextToSave").value;
FileSendContent(textToSave, "/config/config.ini", domainname);
- firework.launch('Configuration got updated. Please reboot to activate changes!', 'success', 5000);
+ firework.launch('Configuration got updated. It will get applied after the next reboot!', 'success', 5000);
}
}
diff --git a/sd-card/html/edit_config_param.html b/sd-card/html/edit_config_param.html
index 278f1a17..154a1274 100644
--- a/sd-card/html/edit_config_param.html
+++ b/sd-card/html/edit_config_param.html
@@ -2222,7 +2222,7 @@ function saveTextAsFile()
ReadParameterAll();
WriteConfigININew();
SaveConfigToServer(domainname);
- firework.launch('Configuration got updated. Please reboot to activate changes!', 'success', 5000);
+ firework.launch('Configuration got updated. It will get applied after the next reboot!', 'success', 5000);
}
}
diff --git a/sd-card/html/edit_digits.html b/sd-card/html/edit_digits.html
index 6a617492..60736c4f 100644
--- a/sd-card/html/edit_digits.html
+++ b/sd-card/html/edit_digits.html
@@ -296,7 +296,7 @@ function SaveToConfig(){
cofcat["Digits"]["enabled"] = document.getElementById("Category_Digits_enabled").checked;
WriteConfigININew();
SaveConfigToServer(domainname);
- firework.launch('Configuration got updated. Please reboot to activate changes!', 'success', 5000);
+ firework.launch('Configuration got updated. It will get applied after the next reboot!', 'success', 5000);
}
diff --git a/sd-card/html/edit_reference.html b/sd-card/html/edit_reference.html
index 2835614f..4254ba60 100644
--- a/sd-card/html/edit_reference.html
+++ b/sd-card/html/edit_reference.html
@@ -272,7 +272,7 @@ table {
SaveCanvasToImage(canvas, "/config/reference.jpg", true, getDomainname());
showReference(param);
UpdatePage();
- firework.launch('Reference got updated. Please reboot to activate changes!', 'success', 5000);
+ firework.launch('Reference got updated. It will get applied after the next reboot!', 'success', 5000);
}
}