1/*
2 Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
3 For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4*/
5CKEDITOR.dialog.add("about", function(a) {
6    var ckgEditorVer = a.config.ckgEditorVer;
7    a = a.lang.about;
8    var b = CKEDITOR.getUrl(CKEDITOR.plugins.get("about").path + "dialogs/" + (CKEDITOR.env.hidpi ? "hidpi/" : "") + "logo_ckeditor.png");
9    return {
10        title: a.dlgTitle,
11        minWidth: 390,
12        minHeight: 210,
13        contents: [{
14            id: "tab1",
15            label: "",
16            title: "",
17            expand: !0,
18            padding: 0,
19            elements: [{
20                type: "html",
21                html: '\x3cstyle type\x3d"text/css"\x3e.cke_about_container{color:#000 !important;padding:10px 10px 0;margin-top:5px}.cke_about_container p{margin: 0 0 10px;}.cke_about_container .cke_about_logo{height:81px;background-color:#fff;background-image:url(' +
22                    b + ");" + (CKEDITOR.env.hidpi ? "background-size:194px 58px;" : "") +
23                    'background-position:center; background-repeat:no-repeat;margin-bottom:10px;}.cke_about_container a{cursor:pointer !important;color:#00B2CE !important;text-decoration:underline !important;}.cke_about_container \x3e p,.cke_rtl .cke_about_container \x3e p{text-align:center;}\x3c/style\x3e\x3cdiv class\x3d"cke_about_container"\x3e\x3cdiv class\x3d"cke_about_logo"\x3e\x3c/div\x3e\x3cp\x3eCKEditor ' + CKEDITOR.version + " (revision " + CKEDITOR.revision +
24                    ')\x3cbr\x3e\x3ca target\x3d"_blank" rel\x3d"noopener noreferrer" href\x3d"https://ckeditor.com/"\x3ehttps://ckeditor.com\x3c/a\x3e\x3c/p\x3e\x3cp\x3e' + a.moreInfo + '\x3cbr\x3e\x3ca target\x3d"_blank" rel\x3d"noopener noreferrer" href\x3d"https://ckeditor.com/legal/ckeditor-oss-license/"\x3ehttps://ckeditor.com/legal/ckeditor-oss-license/\x3c/a\x3e\x3c/p\x3e\x3cp\x3e' + a.copy.replace("$1", '\x3ca target\x3d"_blank" rel\x3d"noopener noreferrer" href\x3d"https://cksource.com/"\x3eCKSource\x3c/a\x3e - Frederico Knabben') +
25                    "\x3c/p\x3e\x3c/div\x3e"+"<div style = 'margin-left: 35px;'>Modified for use with Dokuwiki: "+ ckgEditorVer + "</div>"
26            }]
27        }],
28        buttons: [CKEDITOR.dialog.cancelButton]
29    }
30});