-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from mkrueger/mkrueger/localization
Implemented localization with fluent.
- Loading branch information
Showing
8 changed files
with
201 additions
and
98 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
fallback_language = "en" | ||
|
||
[fluent] | ||
assets_dir = "i18n" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
process-label = Prozesse: | ||
no-processes-label = <Prozess nicht gesetzt> | ||
filter-processes-hint = Prozesse filtern | ||
default-label = Standard | ||
name-label = Name: | ||
value-label = Wert: | ||
search-description-label = Suchbeschreibung | ||
search-value-label = Suche nach { $valuetype } | ||
found-one-result-label = 1 Vorkommen gefunden | ||
found-results-label = { $results } Vorkommen gefunden | ||
no-results-label = Keine Vorkommen | ||
undo-button = Rückgängig | ||
initial-search-button = Erste Suche | ||
update-button = Aktualisieren | ||
clear-button = Löschen | ||
close-button = Schließen | ||
hide-results-button = Ergebnisse verstecken | ||
show-results-button = Ergebnisse zeigen | ||
generic-error-label = <Fehler> | ||
invalid-input-error = Eingabe ungültig | ||
invalid-number-error = Zahl ungültig | ||
conversion-error = Fehler beim Konvertieren { $valuetype }: { $message } | ||
guess-value-item = Unklar (2-8 Bytes) | ||
short-value-item = Short (2 Bytes) | ||
int-value-item = Int (4 Bytes) | ||
int64-value-item = Int64 (8 Bytes) | ||
float-value-item = Float (4 Bytes) | ||
double-value-item = Double (8 Bytes) | ||
guess-descr = Unklar | ||
short-descr = Short | ||
int-descr = Int | ||
int64-descr = Int64 | ||
float-descr = Float | ||
double-descr = Double | ||
address-heading = Addresse | ||
value-heading = Wert | ||
freezed-heading = Eingefroren | ||
pid-heading = Pid | ||
name-heading = Name | ||
memory-heading = Speicher | ||
command-heading = Kommando | ||
update-numbers-progress = Aktualisiere { $current }/{ $total }… | ||
search-memory-progress = Suche { $current }/{ $total }… |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
process-label = Processes: | ||
no-processes-label = <no process set> | ||
filter-processes-hint = Filter processes | ||
default-label = default | ||
name-label = Name: | ||
value-label = Value: | ||
search-description-label = Search description | ||
search-value-label = Search for { $valuetype } value | ||
found-one-result-label = found one result. | ||
found-results-label = found { $results } results. | ||
no-results-label = No results found. | ||
undo-button = Undo | ||
initial-search-button = Initial search | ||
update-button = Update | ||
clear-button = Clear | ||
close-button = Close | ||
hide-results-button = Hide Results | ||
show-results-button = Show Results | ||
generic-error-label = <error> | ||
invalid-input-error = Invalid input | ||
invalid-number-error = Invalid number | ||
conversion-error = Error converting { $valuetype }: { $message } | ||
guess-value-item = guess value (2-8 bytes) | ||
short-value-item = short (2 bytes) | ||
int-value-item = int (4 bytes) | ||
int64-value-item = int64 (8 bytes) | ||
float-value-item = float (4 bytes) | ||
double-value-item = double (8 bytes) | ||
guess-descr = Guess | ||
short-descr = short | ||
int-descr = int | ||
int64-descr = int64 | ||
float-descr = float | ||
double-descr = double | ||
address-heading = Address | ||
value-heading = Value | ||
freezed-heading = Freezed | ||
pid-heading = Pid | ||
name-heading = Name | ||
memory-heading = Memory | ||
command-heading = Command | ||
update-numbers-progress = Update { $current }/{ $total }… | ||
search-memory-progress = Search { $current }/{ $total }… |
Oops, something went wrong.