forked from extern/egroupware
60 lines
4.0 KiB
JavaScript
60 lines
4.0 KiB
JavaScript
|
// I18N constants
|
|||
|
|
|||
|
// LANG: "de", ENCODING: UTF-8 | ISO-8859-1
|
|||
|
|
|||
|
// translated: <]{MJ}[> i@student.ethz.ch
|
|||
|
|
|||
|
|
|||
|
ContextMenu.I18N = {
|
|||
|
// Items that appear in menu. Please note that an underscore (_)
|
|||
|
// character in the translation (right column) will cause the following
|
|||
|
// letter to become underlined and be shortcut for that menu option.
|
|||
|
|
|||
|
"Cut" : "Ausschneiden",
|
|||
|
"Copy" : "Kopieren",
|
|||
|
"Paste" : "Einfügen",
|
|||
|
"Image Properties" : "_Bild Einstellungen...",
|
|||
|
"Modify Link" : "_Link ändern...",
|
|||
|
"Check Link" : "Link testen...",
|
|||
|
"Remove Link" : "Link entfernen...",
|
|||
|
"Cell Properties" : "Z_ellen Einstellungen...",
|
|||
|
"Row Properties" : "Ze_ilen Einstellungen...",
|
|||
|
"Insert Row Before" : "Zeile einfügen v_or Position",
|
|||
|
"Insert Row After" : "Zeile einfügen n_ach Position",
|
|||
|
"Delete Row" : "Zeile löschen",
|
|||
|
"Table Properties" : "_Tabellen Einstellungen...",
|
|||
|
"Insert Column Before" : "Spalte einfügen vo_r Position",
|
|||
|
"Insert Column After" : "Spalte einfügen na_ch Position",
|
|||
|
"Delete Column" : "Spalte löschen",
|
|||
|
"Justify Left" : "Links ausrichten",
|
|||
|
"Justify Center" : "Zentriert",
|
|||
|
"Justify Right" : "Rechts ausrichten",
|
|||
|
"Justify Full" : "Blocksatz",
|
|||
|
"Make link" : "Lin_k erstellen...",
|
|||
|
"Remove the" : "",
|
|||
|
"Element" : "Element entfernen...",
|
|||
|
|
|||
|
// Other labels (tooltips and alert/confirm box messages)
|
|||
|
|
|||
|
"Please confirm that you want to remove this element:" : "Wollen sie dieses Element wirklich entfernen ?",
|
|||
|
"Remove this node from the document" : "Dieses Element aus dem Dokument entfernen",
|
|||
|
"How did you get here? (Please report!)" : "How did you get here? (Please report!)",
|
|||
|
"Show the image properties dialog" : "Fenster für die Bild-Einstellungen anzeigen",
|
|||
|
"Modify URL" : "URL ändern",
|
|||
|
"Current URL is" : "Aktuelle URL ist",
|
|||
|
"Opens this link in a new window" : "Diesen Link in neuem Fenster öffnen",
|
|||
|
"Please confirm that you want to unlink this element." : "Wollen sie diesen Link wirklich entfernen ?",
|
|||
|
"Link points to:" : "Link zeigt auf:",
|
|||
|
"Unlink the current element" : "Link auf Element entfernen",
|
|||
|
"Show the Table Cell Properties dialog" : "Zellen-Einstellungen anzeigen",
|
|||
|
"Show the Table Row Properties dialog" : "Zeilen-Einstellungen anzeigen",
|
|||
|
"Insert a new row before the current one" : "Zeile einfügen vor der aktuellen Position",
|
|||
|
"Insert a new row after the current one" : "Zeile einfügen nach der aktuellen Position",
|
|||
|
"Delete the current row" : "Zeile löschen",
|
|||
|
"Show the Table Properties dialog" : "Show the Table Properties dialog",
|
|||
|
"Insert a new column before the current one" : "Spalte einfügen vor der aktuellen Position",
|
|||
|
"Insert a new column after the current one" : "Spalte einfügen nach der aktuellen Position",
|
|||
|
"Delete the current column" : "Spalte löschen",
|
|||
|
"Create a link" : "Link erstellen"
|
|||
|
};
|