diff --git a/src/main/java/de/deadlocker8/budgetmaster/controller/AboutController.java b/src/main/java/de/deadlocker8/budgetmaster/controller/AboutController.java
index 888454abd037f5acc05098408b9325cda798105d..3438722a348b671904bca0821399991a3a34ee41 100644
--- a/src/main/java/de/deadlocker8/budgetmaster/controller/AboutController.java
+++ b/src/main/java/de/deadlocker8/budgetmaster/controller/AboutController.java
@@ -35,11 +35,10 @@ public class AboutController extends BaseController
 	public String fromTransactionModal(Model model)
 	{
 		final List<NewsEntry> newsEntries =  new ArrayList<>();
-		newsEntries.add(NewsEntry.createWithLocalizationKeys("news.templates.headline", "news.templates.description"));
-		newsEntries.add(NewsEntry.createWithLocalizationKeys("news.backup.headline", "news.backup.description"));
-		newsEntries.add(NewsEntry.createWithLocalizationKeys("news.suggestions.headline", "news.suggestions.description"));
-		newsEntries.add(NewsEntry.createWithLocalizationKeys("news.charts.headline", "news.charts.description"));
-		newsEntries.add(NewsEntry.createWithLocalizationKeys("news.commandline.headline", "news.commandline.description"));
+		newsEntries.add(NewsEntry.createWithLocalizationKeys("news.changeType.headline", "news.changeType.description"));
+		newsEntries.add(NewsEntry.createWithLocalizationKeys("news.readonlyAccounts.headline", "news.readonlyAccounts.description"));
+		newsEntries.add(NewsEntry.createWithLocalizationKeys("news.firstUseWizard.headline", "news.firstUseWizard.description"));
+		newsEntries.add(NewsEntry.createWithLocalizationKeys("news.java11.headline", "news.java11.description"));
 
 		model.addAttribute("newsEntries", newsEntries);
 		return "whatsNewModal";
diff --git a/src/main/resources/languages/news_de.properties b/src/main/resources/languages/news_de.properties
index 914328658147f46c7419d43cf55a4cfa933c0337..455b347c9dd7c8d46ee4417be6096163e3731623 100644
--- a/src/main/resources/languages/news_de.properties
+++ b/src/main/resources/languages/news_de.properties
@@ -1,14 +1,11 @@
-news.templates.headline=Transaction templates
-news.templates.description=Allows the creation of templates for similar transactions.
+news.changeType.headline=Transaktionstyp ändern
+news.changeType.description=Ermöglicht es eine Transaktion in einen anderen Typ umwandeln (z.B. eine normale Transaktion in eine wiederholende Transaktion ändern).
 
-news.backup.headline=Auto backup
-news.backup.description=Allows the scheduling of automatic BudgetMaster data backups.
+news.readonlyAccounts.headline=Deaktivierbare Konten
+news.readonlyAccounts.description=Konten können deaktiviert werden (verbietet Transaktionen hinzuzufügen oder zu löschen).
 
-news.suggestions.headline=Transaction name suggestions
-news.suggestions.description=Shows suggestions based on the last 25 created transactions.
+news.firstUseWizard.headline=Hilfe zur ersten Bentzung
+news.firstUseWizard.description=Einfache Einführung in die Benutzung von BudgetMaster.
 
-news.charts.headline=New charts
-news.charts.description=Two new default charts (income/expenditures per year and rest per month).
-
-news.commandline.headline=Command line option to set custom directory
-news.commandline.description=Specify a folder where settings, database and backups are stored (more details in the wiki).
\ No newline at end of file
+news.java11.headline=Java 11
+news.java11.description=Das gesamte Projekt wurde auf Java 11 migriert.
\ No newline at end of file
diff --git a/src/main/resources/languages/news_en.properties b/src/main/resources/languages/news_en.properties
index 914328658147f46c7419d43cf55a4cfa933c0337..ee15b006c192db19a9d3c85069ccf036f5a2cd13 100644
--- a/src/main/resources/languages/news_en.properties
+++ b/src/main/resources/languages/news_en.properties
@@ -1,14 +1,11 @@
-news.templates.headline=Transaction templates
-news.templates.description=Allows the creation of templates for similar transactions.
+news.changeType.headline=Change transaction type
+news.changeType.description=Transform a transaction to another type (e.g. change a normal transaction to a repeating one).
 
-news.backup.headline=Auto backup
-news.backup.description=Allows the scheduling of automatic BudgetMaster data backups.
+news.readonlyAccounts.headline=Readonly accounts
+news.readonlyAccounts.description=Allow to deactivate accounts (transactions can't be added or removed from deactivated accounts).
 
-news.suggestions.headline=Transaction name suggestions
-news.suggestions.description=Shows suggestions based on the last 25 created transactions.
+news.firstUseWizard.headline=First use wizard
+news.firstUseWizard.description=Simple introduction on how to use BudgetMaster.
 
-news.charts.headline=New charts
-news.charts.description=Two new default charts (income/expenditures per year and rest per month).
-
-news.commandline.headline=Command line option to set custom directory
-news.commandline.description=Specify a folder where settings, database and backups are stored (more details in the wiki).
\ No newline at end of file
+news.java11.headline=Java 11
+news.java11.description=Migrate the project to Java 11.
\ No newline at end of file