diff options
author | Christian González <christian.gonzalez@nerdocs.at> | 2016-04-21 11:53:30 +0200 |
---|---|---|
committer | Christian González <christian.gonzalez@nerdocs.at> | 2016-04-21 11:53:30 +0200 |
commit | ea5cd9cda6ae5934346564a55feb5b758664d4fc (patch) | |
tree | 0c9ec7bdf8016b141fbd41a70a9fd36988fde2d8 /app/Locale/de_DE | |
parent | aea8784ab5f60a39551e03d04619a043b60205b2 (diff) |
better German translation of relations
"ist übergeordnet" is a bit tricky: "Diese Aufgabe ist übergeordnet (1)": is a bad translation as the direction could be in both ways. The correct translation of "is a parent of" would be "ist ein Elternelement von". This seems a bit long, but is the only really correct possibility I can think of. Others, including "ist übergeordnet von" (not correct German IMHO), or "ist ein Kind von" (seems stupid) are not really better. But "ist übergeordnet" is definitely wrong, because in both directions valid, in this context.
Diffstat (limited to 'app/Locale/de_DE')
-rw-r--r-- | app/Locale/de_DE/translations.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Locale/de_DE/translations.php b/app/Locale/de_DE/translations.php index 71007423..160cd51f 100644 --- a/app/Locale/de_DE/translations.php +++ b/app/Locale/de_DE/translations.php @@ -558,8 +558,8 @@ return array( 'is blocked by' => 'ist blockiert von', 'duplicates' => 'doppelt', 'is duplicated by' => 'ist gedoppelt von', - 'is a child of' => 'ist untergeordnet', - 'is a parent of' => 'ist übergeordnet', + 'is a child of' => 'ist ein untergeordnetes Element von', + 'is a parent of' => 'ist ein übergeordnetes Element von', 'targets milestone' => 'betrifft Meilenstein', 'is a milestone of' => 'ist ein Meilenstein von', 'fixes' => 'behebt', |