diff --git a/packages/organization-select/i18next-scanner.config.js b/packages/organization-select/i18next-scanner.config.js
index f0f86ce027f31d591de02dee8cd05089203735b5..d15acb029ba662a7bdb0d29dc46eb81dfe3c1f61 100644
--- a/packages/organization-select/i18next-scanner.config.js
+++ b/packages/organization-select/i18next-scanner.config.js
@@ -3,12 +3,14 @@ module.exports = {
     output: './',
     options: {
         debug: false,
+        sort: true,
         removeUnusedKeys: true,
         func: {list: ['i18n.t', '_i18n.t']},
         lngs: ['en', 'de'],
         resource: {
             loadPath: 'src/i18n/{{lng}}/{{ns}}.json',
             savePath: 'src/i18n/{{lng}}/{{ns}}.json',
+            jsonIndent: 4,
         },
     },
 };
diff --git a/packages/organization-select/src/i18n/de/translation.json b/packages/organization-select/src/i18n/de/translation.json
index d62a3521c514dd5cf425af29a41be2a2d1b363fd..5d0ff195115b493d79517794f33485f8fa87c057 100644
--- a/packages/organization-select/src/i18n/de/translation.json
+++ b/packages/organization-select/src/i18n/de/translation.json
@@ -1,6 +1,6 @@
 {
     "select-organization": {
-        "placeholder": "Bitte wählen Sie ein Institut aus",
-        "loading": "Wird geladen..."
+        "loading": "Wird geladen...",
+        "placeholder": "Bitte wählen Sie ein Institut aus"
     }
 }
diff --git a/packages/organization-select/src/i18n/en/translation.json b/packages/organization-select/src/i18n/en/translation.json
index bbbf8f54e0e173e7cbe2580654b28a37ae81569c..307519d088f1dd5485f4ac85051fb91d290bfa45 100644
--- a/packages/organization-select/src/i18n/en/translation.json
+++ b/packages/organization-select/src/i18n/en/translation.json
@@ -1,6 +1,6 @@
 {
     "select-organization": {
-        "placeholder": "Please select an organization",
-        "loading": "Loading..."
+        "loading": "Loading...",
+        "placeholder": "Please select an organization"
     }
 }