From b80ab98f89152ac2054f47c949c76a74ed010f10 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Ricks?= <bjoern.ricks@greenbone.net>
Date: Thu, 9 Jan 2025 14:44:39 +0100
Subject: [PATCH] Change: Update README about translation usage

With using i18next-parser we got rid of the plural terms. Also the
cleanup translations tooling was removed before already.
---
 README.md | 15 ++-------------
 1 file changed, 2 insertions(+), 13 deletions(-)

diff --git a/README.md b/README.md
index 31b2b60f6f..7242b3750d 100644
--- a/README.md
+++ b/README.md
@@ -177,30 +177,19 @@ But sometimes the UI changes and new English descriptions are added or existing
 ones have been rephrased. In this case the new keys must be extracted from the
 source code and added to the JSON files. This can be done by running
 
-```
+```sh
 npm run i18n-extract
 ```
 
 New translation strings are added with an empty string `“”` as default value.
 Therefore searching for empty strings will find the to be translated values.
-Keys with a `_plural` suffix can be ignored. They are just added for technical
-reasons and are unused.
-
-If not all strings are translated at once the remaining empty strings would
-cause missing text in web UI. Therefore, the JSON files must be cleaned up
-before adding the changes to git and creating a pull request. To clean up the
-JSON files the following command can be used
-
-```
-npm run clean-up-translations
-```
 
 ### Support a new Language
 
 The currently supported languages are listed at [src/gmp/locale/languages.js](./src/gmp/locale/languages.js#L23).
 If a new language should be available in the web UI, it needs an entry in this
 object. Additionally the corresponding language codes must be added to the
-[babel config](./.babelrc) and [cleanup script](./scripts/cleanuptranslations.js).
+[i18next-parser.config.js](./i18next-parser.config.js).
 
 ## Settings