Skip to content

Commit

Permalink
Added german localization (#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-huehn authored and Jonathan Cox committed May 14, 2018
1 parent 30007b3 commit c459d8b
Show file tree
Hide file tree
Showing 20 changed files with 90 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/audio.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,10 @@ class WysiwygToolAudio extends WysiwygTool {
'fr': {
'Audio': 'Audio',
'URL': 'URL'
},
'de': {
'Audio': 'Audio',
'URL': 'URL'
}
};

Expand Down
3 changes: 3 additions & 0 deletions tools/blockquote.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ class WysiwygToolBlockquote extends WysiwygTool {
},
'fr': {
'Blockquote': 'Citation'
},
'de': {
'Blockquote': 'Blockquote'
}
};

Expand Down
3 changes: 3 additions & 0 deletions tools/bold.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ class WysiwygToolBold extends WysiwygTool {
},
'fr': {
'Bold': 'Gras'
},
'de': {
'Bold': 'Fett'
}
};

Expand Down
3 changes: 3 additions & 0 deletions tools/clear.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ class WysiwygToolClear extends WysiwygTool {
},
'fr': {
'Clear Formatting': 'Supprimer la mise en forme'
},
'de': {
'Clear Formatting': 'Format entfernen'
}
};
}
Expand Down
3 changes: 3 additions & 0 deletions tools/code.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ class WysiwygToolCode extends WysiwygTool {
},
'fr': {
'Code': 'Code'
},
'de': {
'Code': 'Code'
}
};

Expand Down
3 changes: 3 additions & 0 deletions tools/color.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ class WysiwygToolColor extends WysiwygTool {
},
'fr': {
'Color': 'Couleur'
},
'de': {
'Color': 'Farbe'
}
};

Expand Down
5 changes: 5 additions & 0 deletions tools/heading.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,11 @@ class WysiwygToolHeading extends WysiwygTool {
'Headings': 'Titres',
'Paragraph': 'Paragraphe',
'Heading': 'Titre {number}'
},
'de': {
'Headings': 'Überschriften',
'Paragraph': 'Paragraf',
'Heading': 'Überschrift {number}'
}
};
}
Expand Down
8 changes: 8 additions & 0 deletions tools/image.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,14 @@ class WysiwygToolImage extends WysiwygTool {
'none': 'aucun',
'left': 'gauche',
'right': 'droite'
},
'de': {
'Image': 'Bild',
'URL': 'URL',
'Float': 'Verschiebung',
'none': 'keins',
'left': 'links',
'right': 'rechts'
}
};

Expand Down
3 changes: 3 additions & 0 deletions tools/indent.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ class WysiwygToolIndent extends WysiwygTool {
},
'fr': {
'Indent': 'Augmenter le retrait'
},
'de': {
'Indent': 'Einrücken'
}
};

Expand Down
3 changes: 3 additions & 0 deletions tools/italic.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ class WysiwygToolItalic extends WysiwygTool {
},
'fr': {
'Italic': 'Italique'
},
'de': {
'Italic': 'Kursiv'
}
};

Expand Down
7 changes: 7 additions & 0 deletions tools/justify.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,13 @@ class WysiwygToolJustify extends WysiwygTool {
'Right': 'Droite',
'Center': 'Centrer',
'Full': 'Entier'
},
'de': {
'Justify': 'Anordnung',
'Left': 'Links',
'Right': 'Rechts',
'Center': 'Zentriert',
'Full': 'Ganze Breite'
}
};
}
Expand Down
5 changes: 5 additions & 0 deletions tools/link.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ class WysiwygToolLink extends WysiwygTool {
'Link': 'Lien',
'URL': 'URL',
'Target': 'Cible'
},
'de': {
'Link': 'Link',
'URL': 'URL',
'Target': 'Ziel'
}
};

Expand Down
3 changes: 3 additions & 0 deletions tools/ordered.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ class WysiwygToolOrdered extends WysiwygTool {
},
'fr': {
'Ordered List': 'Liste ordonnée'
},
'de': {
'Ordered List': 'Geordnete Liste'
}
};

Expand Down
3 changes: 3 additions & 0 deletions tools/outdent.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ class WysiwygToolOutdent extends WysiwygTool {
},
'fr': {
'Outdent': 'Diminuer le retrait'
},
'de': {
'Outdent': 'Ausrücken'
}
};
}
Expand Down
3 changes: 3 additions & 0 deletions tools/strike.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ class WysiwygToolStrike extends WysiwygTool {
},
'fr': {
'Strikethrough': 'Barrer'
},
'de': {
'Strikethrough': 'Durchgestrichen'
}
};

Expand Down
17 changes: 17 additions & 0 deletions tools/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,23 @@ class WysiwygToolTable extends WysiwygTool {
'Show Footer': 'Montrer Pied de page',
'Show Header': 'Montrer Entête',
'Table': 'Tableau'
},
'de': {
'Cell After': 'Zelle danach',
'Cell Before': 'Zelle davor',
'Column': 'Spalte',
'Column After': 'Spalte danach',
'Column Before': 'Spalte davor',
'Columns': 'Spalten',
'Delete': 'Löschen',
'Insert': 'Einfügen',
'Row': 'Zeile',
'Row After': 'Zeile danach',
'Row Before': 'Zeile davor',
'Rows': 'Zeilen',
'Show Footer': 'Fußzeile anzeigen',
'Show Header': 'Kopfzeile anzeigen',
'Table': 'Tabelle'
}
};

Expand Down
3 changes: 3 additions & 0 deletions tools/underline.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ class WysiwygToolUnderline extends WysiwygTool {
},
'fr': {
'Underline': 'Souligner'
},
'de': {
'Underline': 'Unterstreichen'
}
};

Expand Down
3 changes: 3 additions & 0 deletions tools/unordered.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ class WysiwygToolUnordered extends WysiwygTool {
},
'fr': {
'Unordered List': 'Liste non-ordonnée'
},
'de': {
'Unordered List': 'Ungeordnete Liste'
}
};

Expand Down
4 changes: 4 additions & 0 deletions tools/video.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ class WysiwygToolVideo extends WysiwygTool {
'fr': {
'Video': 'Vidéo',
'URL': 'URL'
},
'de': {
'Video': 'Video',
'URL': 'URL'
}
};

Expand Down
4 changes: 4 additions & 0 deletions wysiwyg-e.js
Original file line number Diff line number Diff line change
Expand Up @@ -655,6 +655,10 @@ export class WysiwygE extends PolymerElement {
'fr': {
'Undo': 'Annuler',
'Redo': 'Rétablir'
},
'de': {
'Undo': 'Rückgängig',
'Redo': 'Wiederholen'
}
};
}
Expand Down

0 comments on commit c459d8b

Please sign in to comment.