jqwidgets-scripts-custom
Version:
jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.
75 lines (71 loc) • 3.69 kB
HTML
<html lang="en">
<head>
<title id='Description'>Custom Element Editor Localization</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1 minimum-scale=1" />
<meta name="description" content="This is an example of localization in Custom Elements Editor." />
<link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" />
<link rel="stylesheet" href="../../../styles/demos.css" type="text/css" />
<script type="text/javascript" src="../../../scripts/webcomponents-lite.min.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxcore.elements.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxbuttons.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxscrollbar.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxlistbox.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxdropdownlist.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxdropdownbutton.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxcolorpicker.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxwindow.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxeditor.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxtooltip.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxcheckbox.js"></script>
<script type="text/javascript" src="../../../scripts/demos.js"></script>
<script type="text/javascript">
JQXElements.settings['EditorSettings'] =
{
localization: {
'bold': 'Fett',
'italic': 'Kursiv',
'underline': 'Unterstreichen',
'format': 'Block-Format',
'font': 'Schriftname',
'size': 'Schriftgröße',
'color': 'Textfarbe',
'background': 'Hintergrundfarbe',
'left': 'Links ausrichten',
'center': 'Mitte ausrichten',
'right': 'Rechts ausrichten',
'outdent': 'Weniger Einzug',
'indent': 'Mehr Einzug',
'ul': 'Legen Sie ungeordnete Liste',
'ol': 'Geordnete Liste einfügen',
'image': 'Bild einfügen',
'link': 'Link einfügen',
'html': 'html anzeigen',
'clean': 'Formatierung entfernen'
}
}
</script>
</head>
<body>
<div class="example-description">
Custom element Editor Localization.
</div>
<jqx-editor settings="EditorSettings">
<b>jqxEditor</b> is a HTML text editor designed to simplify web content creation. You can use it as a replacement of your Textarea or you can create it from a DIV element.
<br />
<br />
Features include:
<br />
<ul>
<li>Text formatting</li>
<li>Text alignment</li>
<li>Hyperlink dialog</li>
<li>Image dialog</li>
<li>Bulleted list</li>
<li>Numbered list</li>
</ul>
</jqx-editor>
</body>
</html>