From 8f74d7ac6dc78f3f150db92100566d97224c8570 Mon Sep 17 00:00:00 2001 From: Philipp Fischbeck Date: Thu, 1 Jan 2015 17:32:01 +0100 Subject: [PATCH] Add model/attribute translations --- config/locales/models/problem/de.yml | 12 ++++++++++++ config/locales/models/translation/de.yml | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 config/locales/models/problem/de.yml create mode 100644 config/locales/models/translation/de.yml diff --git a/config/locales/models/problem/de.yml b/config/locales/models/problem/de.yml new file mode 100644 index 0000000..f546695 --- /dev/null +++ b/config/locales/models/problem/de.yml @@ -0,0 +1,12 @@ +# ruby encoding: utf-8 + +de: + activerecord: + models: + problem: 'Problem' + attributes: + problem: + id: 'ID' + translation_id: 'Übersetzungs-ID' + title: 'Titel' + content: 'Inhalt' \ No newline at end of file diff --git a/config/locales/models/translation/de.yml b/config/locales/models/translation/de.yml new file mode 100644 index 0000000..8bb3a2f --- /dev/null +++ b/config/locales/models/translation/de.yml @@ -0,0 +1,12 @@ +# ruby encoding: utf-8 + +de: + activerecord: + models: + translation: 'Übersetzung' + attributes: + translation: + id: 'ID' + problem_id: 'Problem-ID' + title: 'Titel' + content: 'Inhalt' \ No newline at end of file