diff --git a/src/public/app/widgets/type_widgets/options/advanced/consistency_checks.js b/src/public/app/widgets/type_widgets/options/advanced/consistency_checks.js
index e48746ab1..617de4fcd 100644
--- a/src/public/app/widgets/type_widgets/options/advanced/consistency_checks.js
+++ b/src/public/app/widgets/type_widgets/options/advanced/consistency_checks.js
@@ -4,7 +4,7 @@ import server from "../../../../services/server.js";
const TPL = `
-
Consistency checks
+
Consistency Checks
`;
diff --git a/src/public/app/widgets/type_widgets/options/advanced/database_anonymization.js b/src/public/app/widgets/type_widgets/options/advanced/database_anonymization.js
index 3a0c534e2..a17e0675b 100644
--- a/src/public/app/widgets/type_widgets/options/advanced/database_anonymization.js
+++ b/src/public/app/widgets/type_widgets/options/advanced/database_anonymization.js
@@ -4,20 +4,20 @@ import server from "../../../../services/server.js";
const TPL = `
-
Database anonymization
+
Database Anonymization
-
Full anonymization
+
Full Anonymization
This action will create a new copy of the database and anonymize it (remove all note content and leave only structure and some non-sensitive metadata)
for sharing online for debugging purposes without fear of leaking your personal data.
-
Light anonymization
+
Light Anonymization
-
This action will create a new copy of the database and do a light anonymization on it - specifically only content of all notes will be removed, but titles and attributes will remain. Additionally, custom JS frontend/backend script notes and custom widgets will remain. This provides more context to debug the issues.
+
This action will create a new copy of the database and do a light anonymization on it — specifically only content of all notes will be removed, but titles and attributes will remain. Additionally, custom JS frontend/backend script notes and custom widgets will remain. This provides more context to debug the issues.
-
You can decide yourself if you want to provide fully or lightly anonymized database. Even fully anonymized DB is very useful, however in some cases lightly anonymized database can speed up the process of bug identification and fixing.
+
You can decide yourself if you want to provide a fully or lightly anonymized database. Even fully anonymized DB is very useful, however in some cases lightly anonymized database can speed up the process of bug identification and fixing.
`;
diff --git a/src/public/app/widgets/type_widgets/options/advanced/database_integrity_check.js b/src/public/app/widgets/type_widgets/options/advanced/database_integrity_check.js
index 6e734379b..16321a159 100644
--- a/src/public/app/widgets/type_widgets/options/advanced/database_integrity_check.js
+++ b/src/public/app/widgets/type_widgets/options/advanced/database_integrity_check.js
@@ -4,7 +4,7 @@ import server from "../../../../services/server.js";
const TPL = `
-
Database integrity check
+
Database Integrity Check
This will check that the database is not corrupted on the SQLite level. It might take some time, depending on the DB size.
diff --git a/src/public/app/widgets/type_widgets/options/advanced/vacuum_database.js b/src/public/app/widgets/type_widgets/options/advanced/vacuum_database.js
index 4ac6adda0..bdd8ed49c 100644
--- a/src/public/app/widgets/type_widgets/options/advanced/vacuum_database.js
+++ b/src/public/app/widgets/type_widgets/options/advanced/vacuum_database.js
@@ -4,7 +4,7 @@ import server from "../../../../services/server.js";
const TPL = `
-
Vacuum database
+
Vacuum Database
This will rebuild the database which will typically result in a smaller database file. No data will be actually changed.