Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1402 from FalkF/fix-translation-error
Browse files Browse the repository at this point in the history
fix(locales/de): languageName
  • Loading branch information
tangollama authored Mar 27, 2018
2 parents f8977bc + 1cfba70 commit c68eaec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/locales/de/translations.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
languageName: 'Deutsche',
languageName: 'Deutsch',
admin: {
address: {
address1Label: 'Adresse 1 Kennzeichen',
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/components/language-select-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ test('it renders', function(assert) {

assert.ok(this.$('.language-select').length);
assert.equal(this.$('option[value=""]', '.language-select').text().trim(), 'Select Language');
assert.equal(this.$('option[value="de"]', '.language-select').text().trim(), 'Deutsche');
assert.equal(this.$('option[value="de"]', '.language-select').text().trim(), 'Deutsch');
assert.ok(this.$('option', '.language-select').length > 2, 'There are not so many languages');
});

Expand Down

0 comments on commit c68eaec

Please sign in to comment.