Skip to content

Commit

Permalink
refactor: add German translation keys for cache metrics
Browse files Browse the repository at this point in the history
The German translation keys for Metrics is missing nine keys. Add the translation keys. Translations
provided by Markus Bernhardt.

An additional key missing in the global.json is also provided.
  • Loading branch information
timothystone-knsl committed Jan 29, 2024
1 parent dd35fc6 commit 8feb361
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
}
},
"field": {
"id" : "ID"
"id": "ID"
},
"ribbon": {
"dev": "Entwicklung"
Expand Down Expand Up @@ -138,7 +138,8 @@
"maxbytes": "Dieses Feld sollte nicht mehr als {{max}} bytes haben.",
"pattern": "Dieses Feld muss das Muster {{pattern}} erfüllen.",
"number": "Dieses Feld muss eine Zahl sein.",
"datetimelocal": "Dieses Feld muss eine Datums- und Zeitangabe enthalten."
"datetimelocal": "Dieses Feld muss eine Datums- und Zeitangabe enthalten.",
"patternLogin": "Dieses Feld darf nur Buchstaben, Ziffern und E-Mail-Adressen enthalten."
},
"filters": {
"set": "Folgende Filter sind gesetzt",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,16 @@
"title": "Cache Statistiken",
"cachename": "Cache Name",
"hits": "Treffer",
"misses": "Keine Treffer",
"evictions": "Anzahl entfernter Objekte"
"misses": "Fehler",
"gets": "Anzahl gelesener Objekte",
"puts": "Anzahl geschriebener Objekte",
"removals": "Anzahl gelöschter Objekte",
"evictions": "Anzahl entfernter Objekte",
"hitPercent": "Trefferwahrscheinlichkeit %",
"missPercent": "Fehlerwahrscheinlichkeit %",
"averageGetTime": "Durchschnittliche Lesedauer (µs)",
"averagePutTime": "Durchschnittliche Schreibdauer (µs)",
"averageRemoveTime": "Durchschnittliche Löschdauer (µs)"
},
"datasource": {
"usage": "Usage",
Expand Down

0 comments on commit 8feb361

Please sign in to comment.