├── banners ├── pandora.psd ├── preview.psd └── thumbnail.psd ├── source ├── images │ ├── a.png │ ├── Elle.jpg │ ├── disk.png │ ├── munk.jpg │ ├── 30days.png │ ├── Vogue.jpg │ ├── bacon.jpg │ ├── gogen.jpg │ ├── klimt.jpg │ ├── kuning.jpg │ ├── sezann.jpg │ ├── barcode.jpg │ ├── checkmark.png │ ├── disk-os.png │ ├── img_girl.jpg │ ├── jeki_chan.jpg │ ├── p-120x120.png │ ├── p-512x512.png │ ├── p-800x800.png │ ├── picasso.jpg │ ├── picasso2.jpg │ ├── preview.jpg │ ├── product_1.png │ ├── product_2.png │ ├── product_3.png │ ├── product_4.png │ ├── product_5.png │ ├── product_6.png │ ├── product_7.png │ ├── product_8.png │ ├── product_9.png │ ├── pumba-bg.jpg │ ├── thumbnail.jpg │ ├── MetaGear-1.webp │ ├── MetaGear-2.webp │ ├── MetaGear-3.webp │ ├── MetaGear-4.webp │ ├── MetaGear-5.webp │ ├── MetaGear-6.webp │ ├── jek_vorobey.jpg │ ├── product_10.png │ ├── product_11.png │ ├── product_12.png │ ├── product_13.png │ ├── product_14.png │ ├── product_15.png │ ├── product_16.png │ ├── product_17.png │ ├── product_18.png │ ├── product_19.png │ ├── product_20.png │ ├── product_21.png │ ├── product_22.png │ ├── product_23.png │ ├── product_24.png │ ├── Cosmopolitan.jpeg │ ├── disk-network.png │ ├── shvarcenegger.jpg │ ├── support-staff.png │ ├── user1-128x128.jpg │ ├── user10-128x128.jpg │ ├── user2-160x160.jpg │ ├── user3-128x128.jpg │ ├── user4-128x128.jpg │ ├── user5-128x128.jpg │ ├── user6-128x128.jpg │ ├── user7-128x128.jpg │ ├── user8-128x128.jpg │ ├── user9-128x128.jpg │ ├── customer-service.png │ ├── ssl-certificate.png │ └── 100-satisfaction-guarantee.png ├── vendors │ ├── metro4 │ │ ├── mif │ │ │ ├── metro.ttf │ │ │ └── metro.woff │ │ └── css │ │ │ ├── third-party │ │ │ ├── select2.min.css │ │ │ ├── select2.css │ │ │ ├── datatables.min.css │ │ │ └── datatables.css │ │ │ ├── metro-reset.min.css │ │ │ ├── metro-rtl.min.css │ │ │ ├── metro-reset.css │ │ │ ├── metro-third.min.css │ │ │ └── metro-rtl.css │ ├── ckeditor │ │ ├── sample │ │ │ └── img │ │ │ │ ├── bg.png │ │ │ │ ├── umbrellas.jpg │ │ │ │ └── github.svg │ │ ├── README.md │ │ ├── translations │ │ │ ├── zh-cn.js │ │ │ ├── ja.js │ │ │ ├── zh.js │ │ │ ├── ko.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── tt.js │ │ │ ├── en-au.js │ │ │ ├── oc.js │ │ │ ├── lv.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── sv.js │ │ │ ├── ca.js │ │ │ ├── vi.js │ │ │ ├── fa.js │ │ │ ├── si.js │ │ │ ├── da.js │ │ │ ├── ug.js │ │ │ ├── eo.js │ │ │ ├── id.js │ │ │ ├── kn.js │ │ │ ├── de-ch.js │ │ │ ├── ast.js │ │ │ ├── sr.js │ │ │ ├── az.js │ │ │ ├── el.js │ │ │ ├── km.js │ │ │ ├── fi.js │ │ │ ├── tr.js │ │ │ ├── nb.js │ │ │ ├── pt.js │ │ │ ├── sr-latn.js │ │ │ ├── eu.js │ │ │ ├── cs.js │ │ │ ├── sk.js │ │ │ ├── hr.js │ │ │ ├── ro.js │ │ │ ├── sq.js │ │ │ ├── es.js │ │ │ ├── nl.js │ │ │ ├── hu.js │ │ │ ├── de.js │ │ │ ├── et.js │ │ │ ├── ku.js │ │ │ ├── no.js │ │ │ ├── pt-br.js │ │ │ ├── ne.js │ │ │ ├── ru.js │ │ │ ├── pl.js │ │ │ ├── fr.js │ │ │ ├── uk.js │ │ │ ├── gl.js │ │ │ └── it.js │ │ └── LICENSE.md │ ├── chartjs │ │ ├── Chart.min.css │ │ └── Chart.css │ └── qrcode │ │ ├── LICENSE │ │ └── README.md ├── css │ ├── wizards.less │ ├── mailbox.less │ ├── index.css.map │ └── index.less ├── README.md ├── preloader.html ├── maintenance.html ├── audio.html ├── windows.html ├── 500.html ├── 404.html ├── coming-soon.html ├── lockscreen.html ├── video.html ├── notifies.html ├── js │ ├── charts.js │ └── index.js ├── countdown.html ├── login.html ├── wizard.html ├── toasts.html ├── register.html ├── splitter.html ├── price-table.html └── forms-layouts.html ├── .github └── FUNDING.yml ├── .gitattributes ├── package.json ├── .gitignore └── README.md /banners/pandora.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/banners/pandora.psd -------------------------------------------------------------------------------- /banners/preview.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/banners/preview.psd -------------------------------------------------------------------------------- /source/images/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/a.png -------------------------------------------------------------------------------- /banners/thumbnail.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/banners/thumbnail.psd -------------------------------------------------------------------------------- /source/images/Elle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/Elle.jpg -------------------------------------------------------------------------------- /source/images/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/disk.png -------------------------------------------------------------------------------- /source/images/munk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/munk.jpg -------------------------------------------------------------------------------- /source/images/30days.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/30days.png -------------------------------------------------------------------------------- /source/images/Vogue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/Vogue.jpg -------------------------------------------------------------------------------- /source/images/bacon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/bacon.jpg -------------------------------------------------------------------------------- /source/images/gogen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/gogen.jpg -------------------------------------------------------------------------------- /source/images/klimt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/klimt.jpg -------------------------------------------------------------------------------- /source/images/kuning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/kuning.jpg -------------------------------------------------------------------------------- /source/images/sezann.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/sezann.jpg -------------------------------------------------------------------------------- /source/images/barcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/barcode.jpg -------------------------------------------------------------------------------- /source/images/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/checkmark.png -------------------------------------------------------------------------------- /source/images/disk-os.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/disk-os.png -------------------------------------------------------------------------------- /source/images/img_girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/img_girl.jpg -------------------------------------------------------------------------------- /source/images/jeki_chan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/jeki_chan.jpg -------------------------------------------------------------------------------- /source/images/p-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/p-120x120.png -------------------------------------------------------------------------------- /source/images/p-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/p-512x512.png -------------------------------------------------------------------------------- /source/images/p-800x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/p-800x800.png -------------------------------------------------------------------------------- /source/images/picasso.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/picasso.jpg -------------------------------------------------------------------------------- /source/images/picasso2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/picasso2.jpg -------------------------------------------------------------------------------- /source/images/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/preview.jpg -------------------------------------------------------------------------------- /source/images/product_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_1.png -------------------------------------------------------------------------------- /source/images/product_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_2.png -------------------------------------------------------------------------------- /source/images/product_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_3.png -------------------------------------------------------------------------------- /source/images/product_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_4.png -------------------------------------------------------------------------------- /source/images/product_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_5.png -------------------------------------------------------------------------------- /source/images/product_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_6.png -------------------------------------------------------------------------------- /source/images/product_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_7.png -------------------------------------------------------------------------------- /source/images/product_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_8.png -------------------------------------------------------------------------------- /source/images/product_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_9.png -------------------------------------------------------------------------------- /source/images/pumba-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/pumba-bg.jpg -------------------------------------------------------------------------------- /source/images/thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/thumbnail.jpg -------------------------------------------------------------------------------- /source/images/MetaGear-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/MetaGear-1.webp -------------------------------------------------------------------------------- /source/images/MetaGear-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/MetaGear-2.webp -------------------------------------------------------------------------------- /source/images/MetaGear-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/MetaGear-3.webp -------------------------------------------------------------------------------- /source/images/MetaGear-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/MetaGear-4.webp -------------------------------------------------------------------------------- /source/images/MetaGear-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/MetaGear-5.webp -------------------------------------------------------------------------------- /source/images/MetaGear-6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/MetaGear-6.webp -------------------------------------------------------------------------------- /source/images/jek_vorobey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/jek_vorobey.jpg -------------------------------------------------------------------------------- /source/images/product_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_10.png -------------------------------------------------------------------------------- /source/images/product_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_11.png -------------------------------------------------------------------------------- /source/images/product_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_12.png -------------------------------------------------------------------------------- /source/images/product_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_13.png -------------------------------------------------------------------------------- /source/images/product_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_14.png -------------------------------------------------------------------------------- /source/images/product_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_15.png -------------------------------------------------------------------------------- /source/images/product_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_16.png -------------------------------------------------------------------------------- /source/images/product_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_17.png -------------------------------------------------------------------------------- /source/images/product_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_18.png -------------------------------------------------------------------------------- /source/images/product_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_19.png -------------------------------------------------------------------------------- /source/images/product_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_20.png -------------------------------------------------------------------------------- /source/images/product_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_21.png -------------------------------------------------------------------------------- /source/images/product_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_22.png -------------------------------------------------------------------------------- /source/images/product_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_23.png -------------------------------------------------------------------------------- /source/images/product_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/product_24.png -------------------------------------------------------------------------------- /source/images/Cosmopolitan.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/Cosmopolitan.jpeg -------------------------------------------------------------------------------- /source/images/disk-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/disk-network.png -------------------------------------------------------------------------------- /source/images/shvarcenegger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/shvarcenegger.jpg -------------------------------------------------------------------------------- /source/images/support-staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/support-staff.png -------------------------------------------------------------------------------- /source/images/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/user1-128x128.jpg -------------------------------------------------------------------------------- /source/images/user10-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/user10-128x128.jpg -------------------------------------------------------------------------------- /source/images/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/user2-160x160.jpg -------------------------------------------------------------------------------- /source/images/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/user3-128x128.jpg -------------------------------------------------------------------------------- /source/images/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/user4-128x128.jpg -------------------------------------------------------------------------------- /source/images/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/user5-128x128.jpg -------------------------------------------------------------------------------- /source/images/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/user6-128x128.jpg -------------------------------------------------------------------------------- /source/images/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/user7-128x128.jpg -------------------------------------------------------------------------------- /source/images/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/user8-128x128.jpg -------------------------------------------------------------------------------- /source/images/user9-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/user9-128x128.jpg -------------------------------------------------------------------------------- /source/images/customer-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/customer-service.png -------------------------------------------------------------------------------- /source/images/ssl-certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/ssl-certificate.png -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | patreon: metroui 4 | open_collective: metro4 5 | -------------------------------------------------------------------------------- /source/vendors/metro4/mif/metro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/vendors/metro4/mif/metro.ttf -------------------------------------------------------------------------------- /source/vendors/metro4/mif/metro.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/vendors/metro4/mif/metro.woff -------------------------------------------------------------------------------- /source/vendors/ckeditor/sample/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/vendors/ckeditor/sample/img/bg.png -------------------------------------------------------------------------------- /source/images/100-satisfaction-guarantee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/images/100-satisfaction-guarantee.png -------------------------------------------------------------------------------- /source/vendors/ckeditor/sample/img/umbrellas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olton/Pandora/HEAD/source/vendors/ckeditor/sample/img/umbrellas.jpg -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Enforce Unix newlines 2 | *.css text eol=lf 3 | *.html text eol=lf 4 | *.js text eol=lf 5 | *.json text eol=lf 6 | *.less text eol=lf 7 | *.md text eol=lf 8 | *.svg text eol=lf 9 | *.yml text eol=lf 10 | # Don't diff or textually merge source maps 11 | *.map binary 12 | -------------------------------------------------------------------------------- /source/css/wizards.less: -------------------------------------------------------------------------------- 1 | .master { 2 | width: 320px; 3 | margin: 0 auto; 4 | padding: 5px 5px 0; 5 | color: #000; 6 | } 7 | @media all and (min-width: 640px) { 8 | .master { 9 | width: 500px; 10 | padding: 5px 10px 0; 11 | } 12 | } 13 | @media all and (min-width: 768px) { 14 | .master { 15 | width: 650px; 16 | padding: 5px 80px 0; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /source/vendors/ckeditor/README.md: -------------------------------------------------------------------------------- 1 | CKEditor 5 classic editor build v11.2.0 2 | ======================================= 3 | 4 | In order to start using CKEditor 5 Builds, configure or customize them, please visit http://docs.ckeditor.com/ckeditor5/latest/builds/index.html 5 | 6 | ## License 7 | 8 | Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html). 9 | For full details about the license, please check the LICENSE.md file. 10 | -------------------------------------------------------------------------------- /source/vendors/chartjs/Chart.min.css: -------------------------------------------------------------------------------- 1 | @keyframes chartjs-render-animation{from{opacity:.99}to{opacity:1}}.chartjs-render-monitor{animation:chartjs-render-animation 1ms}.chartjs-size-monitor,.chartjs-size-monitor-expand,.chartjs-size-monitor-shrink{position:absolute;direction:ltr;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1}.chartjs-size-monitor-expand>div{position:absolute;width:1000000px;height:1000000px;left:0;top:0}.chartjs-size-monitor-shrink>div{position:absolute;width:200%;height:200%;left:0;top:0} -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pandora", 3 | "author": "Sergey Pimenov", 4 | "version": "1.0.0", 5 | "license": "CC-BY-SA-4.0", 6 | "description": "Responsive and Clean Admin Dashboard template built with Metro 4", 7 | "keywords": [ 8 | "metro", 9 | "metro4", 10 | "html", 11 | "css", 12 | "js", 13 | "mobile-first", 14 | "responsive", 15 | "front-end", 16 | "template", 17 | "web", 18 | "admin", 19 | "admin template", 20 | "mobile" 21 | ], 22 | "homepage": "https://metroui.org.ua/thames/pandora", 23 | "repository": { 24 | "type": "git", 25 | "url": "https://github.com/olton/Pandora.git" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /source/README.md: -------------------------------------------------------------------------------- 1 | **Pandora** - is a Responsive and Clean Admin Dashboard template. 2 | This template created with **Metro 4** with uses native classes, elements, and components. 3 | The template contains different types of reusable and professional responsive components with different variations. 4 | 5 | **Pandora** comes with a mega collection of features which can make admin dashboard of any projects like Small to Medium 6 | and Large sizes of projects including Personal projects, eCommerce, CRM, ERP, SaaS, PaaS, CMS, Back office 7 | and Accounting Software backend etc. The Multipurpose feature of the dashboard template will allow integrating 8 | for different types of business projects. 9 | 10 | **Pandora** offers a creative and easy way to develop admin 11 | backend for your next exciting projects. -------------------------------------------------------------------------------- /source/preloader.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Pandora :: Preloader 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /source/vendors/ckeditor/sample/img/github.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | GitHub logo 4 | 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore docs files 2 | 3 | # Compiled source # 4 | ################### 5 | *.com 6 | *.class 7 | *.dll 8 | *.exe 9 | *.o 10 | *.so 11 | 12 | # Packages # 13 | ############ 14 | # it's better to unpack these files and commit the raw source 15 | # git has its own built in compression methods 16 | *.7z 17 | *.dmg 18 | *.gz 19 | *.iso 20 | *.jar 21 | *.rar 22 | *.tar 23 | *.zip 24 | 25 | # Numerous always-ignore extensions 26 | *.diff 27 | *.err 28 | *.log 29 | *.orig 30 | *.rej 31 | *.swo 32 | *.swp 33 | *.vi 34 | *.bak 35 | *~ 36 | 37 | # OS or Editor folders 38 | ._* 39 | .cache 40 | .DS_Store 41 | .idea 42 | .replace 43 | .compiled_html 44 | .project 45 | .settings 46 | .tmproj 47 | *.esproj 48 | *.sublime-project 49 | *.sublime-workspace 50 | nbproject 51 | Thumbs.db 52 | 53 | # grunt-html-validation 54 | validation-report.json 55 | validation-status.json 56 | 57 | # Folders to ignore 58 | bower_components 59 | node_modules 60 | adsense 61 | 62 | # Special files 63 | *.ftpauth 64 | *.nupkg 65 | /package-lock.json 66 | /.vs 67 | -------------------------------------------------------------------------------- /source/vendors/chartjs/Chart.css: -------------------------------------------------------------------------------- 1 | /* 2 | * DOM element rendering detection 3 | * https://davidwalsh.name/detect-node-insertion 4 | */ 5 | @keyframes chartjs-render-animation { 6 | from { opacity: 0.99; } 7 | to { opacity: 1; } 8 | } 9 | 10 | .chartjs-render-monitor { 11 | animation: chartjs-render-animation 0.001s; 12 | } 13 | 14 | /* 15 | * DOM element resizing detection 16 | * https://github.com/marcj/css-element-queries 17 | */ 18 | .chartjs-size-monitor, 19 | .chartjs-size-monitor-expand, 20 | .chartjs-size-monitor-shrink { 21 | position: absolute; 22 | direction: ltr; 23 | left: 0; 24 | top: 0; 25 | right: 0; 26 | bottom: 0; 27 | overflow: hidden; 28 | pointer-events: none; 29 | visibility: hidden; 30 | z-index: -1; 31 | } 32 | 33 | .chartjs-size-monitor-expand > div { 34 | position: absolute; 35 | width: 1000000px; 36 | height: 1000000px; 37 | left: 0; 38 | top: 0; 39 | } 40 | 41 | .chartjs-size-monitor-shrink > div { 42 | position: absolute; 43 | width: 200%; 44 | height: 200%; 45 | left: 0; 46 | top: 0; 47 | } 48 | -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/zh-cn.js: -------------------------------------------------------------------------------- 1 | (function(d){d['zh-cn']=Object.assign(d['zh-cn']||{},{a:"无法上传的文件:",b:"加粗",c:"块引用",d:"倾斜",e:"图像小部件",f:"标题类型",g:"标题",h:"Insert image or file",i:"图片通栏显示",j:"图片侧边显示",k:"图片左侧对齐",l:"图片居中",m:"图片右侧对齐",n:"插入图像",o:"编号列表",p:"项目列表",q:"插入表格",r:"标题列",s:"Insert column left",t:"Insert column right",u:"删除本列",v:"列",w:"标题行",x:"在下面插入一行",y:"在上面插入一行",z:"删除本行",aa:"行",ab:"向上合并单元格",ac:"向右合并单元格",ad:"向下合并单元格",ae:"向左合并单元格",af:"垂直拆分单元格",ag:"水平分割单元格",ah:"合并单元格",ai:"输入图片标题",aj:"上传失败",ak:"媒体小部件",al:"插入媒体",am:"URL不可以为空。",an:"不支持此媒体URL。",ao:"超链接",ap:"正在上传",aq:"取消超链接",ar:"修改链接",as:"在新标签页中打开链接",at:"此链接没有设置网址",au:"保存",av:"取消",aw:"链接网址",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"媒体URL",ba:"撤销",bb:"重做",bc:"富文本编辑器",bd:"富文本编辑器, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"段落",bj:"标题 1",bk:"标题 2",bl:"标题 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"更改图片替换文本",bq:"替换文本"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/qrcode/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | --------------------- 3 | Copyright (c) 2012 davidshimjs 4 | 5 | Permission is hereby granted, free of charge, 6 | to any person obtaining a copy of this software and associated documentation files (the "Software"), 7 | to deal in the Software without restriction, 8 | including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 9 | and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /source/maintenance.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Pandora :: Maintenance 13 | 14 | 19 | 20 | 21 | 22 |
23 | 24 | 25 |

Closed for scheduled maintenance!

26 | 27 |

28 | We're sorry for the inconvenience. 29 | Please check back later. 30 |

31 |
32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/ja.js: -------------------------------------------------------------------------------- 1 | (function(d){d['ja']=Object.assign(d['ja']||{},{a:"ファイルをアップロードできません:",b:"ボールド",c:"ブロッククオート(引用)",d:"イタリック",e:"画像ウィジェット",f:"見出しを選択",g:"見出し",h:"Insert image or file",i:"フルサイズ画像",j:"サイドイメージ",k:"左寄せ画像",l:"中央寄せ画像",m:"右寄せ画像",n:"画像挿入",o:"番号付きリスト",p:"箇条書きリスト",q:"表の挿入",r:"見出し列",s:"Insert column left",t:"Insert column right",u:"列を削除",v:"列",w:"見出し行",x:"下に行を挿入",y:"上に行を挿入",z:"行を削除",aa:"行",ab:"上のセルと結合",ac:"右のセルと結合",ad:"下のセルと結合",ae:"左のセルと結合",af:"横にセルを分離",ag:"縦にセルを分離",ah:"セルを結合",ai:"画像の注釈を入力",aj:"アップロード失敗",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"リンク",ap:"アップロード中",aq:"リンク解除",ar:"リンクを編集",as:"新しいタブでリンクを開く",at:"リンクにURLが設定されていません",au:"保存",av:"キャンセル",aw:"リンクURL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"元に戻す",bb:"やり直し",bc:"リッチテキストエディター",bd:"リッチテキストエディター, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"パラグラフ",bj:"見出し1",bk:"見出し2",bl:"見出し3 ",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"画像の代替テキストを変更",bq:"代替テキスト"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/qrcode/README.md: -------------------------------------------------------------------------------- 1 | # QRCode.js 2 | QRCode.js is javascript library for making QRCode. QRCode.js supports Cross-browser with HTML5 Canvas and table tag in DOM. 3 | QRCode.js has no dependencies. 4 | 5 | ## Basic Usages 6 | ``` 7 |
8 | 11 | ``` 12 | 13 | or with some options 14 | 15 | ``` 16 |
17 | 27 | ``` 28 | 29 | and you can use some methods 30 | 31 | ``` 32 | qrcode.clear(); // clear the code. 33 | qrcode.makeCode("http://naver.com"); // make another code. 34 | ``` 35 | 36 | ## Browser Compatibility 37 | IE6~10, Chrome, Firefox, Safari, Opera, Mobile Safari, Android, Windows Mobile, ETC. 38 | 39 | ## License 40 | MIT License 41 | 42 | ## Contact 43 | twitter @davidshimjs 44 | 45 | [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/davidshimjs/qrcodejs/trend.png)](https://bitdeli.com/free "Bitdeli Badge") 46 | 47 | -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/zh.js: -------------------------------------------------------------------------------- 1 | (function(d){d['zh']=Object.assign(d['zh']||{},{a:"無法上傳檔案:",b:"粗體",c:"塊引用",d:"斜體",e:"圖片小工具",f:"選取標題",g:"標題",h:"Insert image or file",i:"完整大小圖片",j:"側邊圖片",k:"Left aligned image",l:"Centered image",m:"Right aligned image",n:"插入圖片",o:"有編號的清單",p:"項目符號清單",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"輸入圖片說明",aj:"上傳失敗",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"連結",ap:"Upload in progress",aq:"取消連結",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"儲存",av:"取消",aw:"連結˙ URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"取消",bb:"重做",bc:"豐富文字編輯器",bd:"豐富文字編輯器,%0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"段落",bj:"標題 1",bk:"標題 2",bl:"標題 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"變更圖片的文字替代",bq:"文字替代"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/ko.js: -------------------------------------------------------------------------------- 1 | (function(d){d['ko']=Object.assign(d['ko']||{},{a:"Cannot upload file:",b:"굵게",c:"인용 단락",d:"기울임꼴",e:"이미지 위젯",f:"제목 선택",g:"제목",h:"Insert image or file",i:"문서 너비",j:"내부 우측 정렬",k:"왼쪽 정렬",l:"가운데 정렬",m:"오른쪽 정렬",n:"Insert image",o:"번호매기기",p:"글머리기호",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"이미지 설명을 입력하세요",aj:"Upload failed",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"링크",ap:"Upload in progress",aq:"링크 삭제",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"저장",av:"취소",aw:"링크 주소",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"실행 취소",bb:"다시 실행",bc:"Rich Text Editor",bd:"Rich Text Editor, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"문단",bj:"제목1",bk:"제목2",bl:"제목3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"대체 텍스트 변경",bq:"대체 텍스트"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- 1 | Software License Agreement 2 | ========================== 3 | 4 | **CKEditor 5 classic editor build** – https://github.com/ckeditor/ckeditor5-build-classic
5 | Copyright (c) 2003-2019, [CKSource](http://cksource.com) Frederico Knabben. All rights reserved. 6 | 7 | Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html). 8 | 9 | Sources of Intellectual Property Included in CKEditor 10 | ----------------------------------------------------- 11 | 12 | Where not otherwise indicated, all CKEditor content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, CKEditor will incorporate work done by developers outside of CKSource with their express permission. 13 | 14 | The following libraries are included in CKEditor under the [MIT license](https://opensource.org/licenses/MIT): 15 | 16 | * Lo-Dash - Copyright (c) JS Foundation and other contributors https://js.foundation/. Based on Underscore.js, copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors http://underscorejs.org/. 17 | 18 | Trademarks 19 | ---------- 20 | 21 | **CKEditor** is a trademark of [CKSource](http://cksource.com) Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders. 22 | -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/ar.js: -------------------------------------------------------------------------------- 1 | (function(d){d['ar']=Object.assign(d['ar']||{},{a:"لا يمكن رفع الملف:",b:"عريض",c:"اقتباس",d:"مائل",e:"عنصر الصورة",f:"اختر عنوان",g:"عنوان",h:"Insert image or file",i:"صورة بحجم كامل",j:"صورة جانبية",k:"صورة بمحاذاة لليسار",l:"صورة بالوسط",m:"صورة بمحاذاة لليمين",n:"ادراج صورة",o:"قائمة رقمية",p:"قائمة نقطية",q:"إدراج جدول",r:"عمود عنوان",s:"Insert column left",t:"Insert column right",u:"حذف العمود",v:"عمود",w:"صف عنوان",x:"ادراج صف بعد",y:"ادراج صف قبل",z:"حذف الصف",aa:"صف",ab:"دمج الخلايا للأعلى",ac:"دمج الخلايا لليمين",ad:"دمج الخلايا للأسفل",ae:"دمج الخلايا لليسار",af:"فصل الخلايا بشكل عمودي",ag:"فصل الخلايا بشكل افقي",ah:"دمج الخلايا",ai:"ادخل عنوان الصورة",aj:"فشل الرفع",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"رابط",ap:"جاري الرفع",aq:"إلغاء الرابط",ar:"تحرير الرابط",as:"فتح الرابط في تبويب جديد",at:"لا يحتوي هذا الرابط على عنوان",au:"حفظ",av:"إلغاء",aw:"رابط عنوان",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"تراجع",bb:"إعادة",bc:"معالج نصوص",bd:"معالج نصوص، 0%",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"فقرة",bj:"عنوان 1",bk:"عنوان 2",bl:"عنوان 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"غير النص البديل للصورة",bq:"النص البديل"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/audio.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Audio player 4 | media 5 |

6 |
7 | 8 |
9 | 14 |
15 |
16 | 17 |
18 |
19 |
Create cool styled audio player in one command with Metro 4 audio role.
20 |
21 |
22 |
23 |
24 |
25 |
Dark (default)
26 | 27 |
28 |
29 |
30 |
31 |
Light
32 | 33 |
34 |
35 |
36 |
-------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/bg.js: -------------------------------------------------------------------------------- 1 | (function(d){d['bg']=Object.assign(d['bg']||{},{a:"Cannot upload file:",b:"Удебелен",c:"Цитат",d:"Курсив",e:"image widget",f:"Choose heading",g:"Heading",h:"Insert image or file",i:"Full size image",j:"Side image",k:"Left aligned image",l:"Centered image",m:"Right aligned image",n:"Insert image",o:"Numbered List",p:"Bulleted List",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Enter image caption",aj:"Upload failed",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Link",ap:"Upload in progress",aq:"Unlink",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"Запазване",av:"Отказ",aw:"Link URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Undo",bb:"Redo",bc:"Rich Text Editor",bd:"Rich Text Editor, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Параграф",bj:"Heading 1",bk:"Heading 2",bl:"Heading 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Change image text alternative",bq:"Text alternative"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/tt.js: -------------------------------------------------------------------------------- 1 | (function(d){d['tt']=Object.assign(d['tt']||{},{a:"Cannot upload file:",b:"Калын",c:"Block quote",d:"Italic",e:"image widget",f:"Choose heading",g:"Heading",h:"Insert image or file",i:"Full size image",j:"Side image",k:"Left aligned image",l:"Centered image",m:"Right aligned image",n:"Insert image",o:"Numbered List",p:"Bulleted List",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Enter image caption",aj:"Upload failed",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Link",ap:"Upload in progress",aq:"Unlink",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"Сакла",av:"Cancel",aw:"Link URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Undo",bb:"Кабатла",bc:"Rich Text Editor",bd:"Rich Text Editor, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Paragraph",bj:"Heading 1",bk:"Heading 2",bl:"Heading 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Change image text alternative",bq:"Text alternative"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/en-au.js: -------------------------------------------------------------------------------- 1 | (function(d){d['en-au']=Object.assign(d['en-au']||{},{a:"Cannot upload file:",b:"Bold",c:"Block quote",d:"Italic",e:"image widget",f:"Choose heading",g:"Heading",h:"Insert image or file",i:"Full size image",j:"Side image",k:"Left aligned image",l:"Centred image",m:"Right aligned image",n:"Insert image",o:"Numbered List",p:"Bulleted List",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Enter image caption",aj:"Upload failed",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Link",ap:"Upload in progress",aq:"Unlink",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"Save",av:"Cancel",aw:"Link URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Undo",bb:"Redo",bc:"Rich Text Editor",bd:"Rich Text Editor, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Paragraph",bj:"Heading 1",bk:"Heading 2",bl:"Heading 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Change image text alternative",bq:"Text alternative"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/oc.js: -------------------------------------------------------------------------------- 1 | (function(d){d['oc']=Object.assign(d['oc']||{},{a:"Cannot upload file:",b:"Gras",c:"Block quote",d:"Italica",e:"image widget",f:"Choose heading",g:"Heading",h:"Insert image or file",i:"Full size image",j:"Side image",k:"Left aligned image",l:"Centered image",m:"Right aligned image",n:"Insert image",o:"Numbered List",p:"Bulleted List",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Enter image caption",aj:"Upload failed",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Link",ap:"Upload in progress",aq:"Unlink",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"Enregistrar",av:"Anullar",aw:"Link URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Undo",bb:"Redo",bc:"Rich Text Editor",bd:"Rich Text Editor, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Paragraph",bj:"Heading 1",bk:"Heading 2",bl:"Heading 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Change image text alternative",bq:"Text alternative"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/lv.js: -------------------------------------------------------------------------------- 1 | (function(d){d['lv']=Object.assign(d['lv']||{},{a:"Cannot upload file:",b:"Bold",c:"Block quote",d:"Italic",e:"image widget",f:"Choose heading",g:"Heading",h:"Ievietot attēlu vai failu",i:"Full size image",j:"Side image",k:"Left aligned image",l:"Centered image",m:"Right aligned image",n:"Insert image",o:"Numbered List",p:"Bulleted List",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Enter image caption",aj:"Upload failed",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Link",ap:"Upload in progress",aq:"Unlink",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"Save",av:"Cancel",aw:"Link URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Undo",bb:"Redo",bc:"Rich Text Editor",bd:"Rich Text Editor, %0",be:"Nevarēja iegūt mērogotā attēla adresi.",bf:"Nevarēja izvēlēties mērogoto attēlu.",bg:"Pašreizējā pozīcijā attēlu nevarēja ievietot.",bh:"Nevarēja ievietot attēlu",bi:"Paragraph",bj:"Heading 1",bk:"Heading 2",bl:"Heading 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Change image text alternative",bq:"Text alternative"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/gu.js: -------------------------------------------------------------------------------- 1 | (function(d){d['gu']=Object.assign(d['gu']||{},{a:"ફાઇલ અપલોડ ન થઇ શકી",b:"ઘાટુ - બોલ્ડ્",c:" વિચાર ટાંકો",d:"ત્રાંસુ - ઇટલિક્",e:"image widget",f:"Choose heading",g:"Heading",h:"Insert image or file",i:"Full size image",j:"Side image",k:"Left aligned image",l:"Centered image",m:"Right aligned image",n:"Insert image",o:"Numbered List",p:"Bulleted List",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Enter image caption",aj:"Upload failed",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Link",ap:"Upload in progress",aq:"Unlink",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"Save",av:"Cancel",aw:"Link URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Undo",bb:"Redo",bc:"Rich Text Editor",bd:"Rich Text Editor, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Paragraph",bj:"Heading 1",bk:"Heading 2",bl:"Heading 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Change image text alternative",bq:"Text alternative"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/he.js: -------------------------------------------------------------------------------- 1 | (function(d){d['he']=Object.assign(d['he']||{},{a:"לא יכול להעלות קובץ",b:"מודגש",c:"Block quote",d:"נטוי",e:"image widget",f:"Choose heading",g:"Heading",h:"Insert image or file",i:"Full size image",j:"Side image",k:"Left aligned image",l:"Centered image",m:"Right aligned image",n:"Insert image",o:"רשימה ממוספרת",p:"Bulleted List",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Enter image caption",aj:"Upload failed",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"קישור",ap:"Upload in progress",aq:"ביטול קישור",ar:"עריכת קישור",as:"פתח קישור בכרטיסייה חדשה",at:"לקישור זה אין כתובת אתר",au:"שמירה",av:"ביטול",aw:"קישור כתובת אתר",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"ביטול",bb:"ביצוע מחדש",bc:"עורך טקסט עשיר",bd:"עורך טקסט עשיר, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"פיסקה",bj:"Heading 1",bk:"Heading 2",bl:"Heading 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Change image text alternative",bq:"Text alternative"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/sv.js: -------------------------------------------------------------------------------- 1 | (function(d){d['sv']=Object.assign(d['sv']||{},{a:"Kan inte ladda upp fil:",b:"Fet",c:"Blockcitat",d:"Kursiv",e:"image widget",f:"Välj rubrik",g:"Rubrik",h:"Insert image or file",i:"Bild i full storlek",j:"Kantbild",k:"Vänsterjusterad bild",l:"Centrerad bild",m:"Högerjusterad bild",n:"Infoga bild",o:"Numrerad lista",p:"Punktlista",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Fyll i bildtext",aj:"Uppladdning misslyckades",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Länk",ap:"Upload in progress",aq:"Ta bort länk",ar:"Redigera länk",as:"Öppna länk i ny flik",at:"Denna länk saknar URL",au:"Spara",av:"Avbryt",aw:"Länkens URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Ångra",bb:"Gör om",bc:"Rich Text-editor",bd:"Rich Text-editor, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Paragraf",bj:"Rubrik 1",bk:"Rubrik 2",bl:"Rubrik 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Ändra bildens alternativa text",bq:"Alternativ text"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/ca.js: -------------------------------------------------------------------------------- 1 | (function(d){d['ca']=Object.assign(d['ca']||{},{a:"No es pot pujar l'arxiu:",b:"Negreta",c:"Cita de bloc",d:"Cursiva",e:"image widget",f:"Escull capçalera",g:"Capçalera",h:"Insert image or file",i:"Full size image",j:"Side image",k:"Left aligned image",l:"Centered image",m:"Right aligned image",n:"Insert image",o:"Numbered List",p:"Bulleted List",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Enter image caption",aj:"Upload failed",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Link",ap:"Upload in progress",aq:"Unlink",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"Desar",av:"Cancel·lar",aw:"Link URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Undo",bb:"Redo",bc:"Rich Text Editor",bd:"Rich Text Editor, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Pàrraf",bj:"Capçalera 1",bk:"Capçalera 2",bl:"Capçalera 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Change image text alternative",bq:"Text alternative"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/vi.js: -------------------------------------------------------------------------------- 1 | (function(d){d['vi']=Object.assign(d['vi']||{},{a:"Cannot upload file:",b:"Bold",c:"Block quote",d:"Italic",e:"image widget",f:"Choose heading",g:"Heading",h:"Insert image or file",i:"Full size image",j:"Side image",k:"Left aligned image",l:"Centered image",m:"Right aligned image",n:"Insert image",o:"Numbered List",p:"Bulleted List",q:"Tạo bảng",r:"Tiêu đề cột",s:"Thêm cột vào bên trái",t:"Thêm cột vào bên phải",u:"Xoá cột",v:"Cột",w:"Tiêu đề hàng",x:"Thêm hàng ở dưới",y:"Thêm hàng phía trên",z:"Xoá hàng",aa:"Hàng",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Enter image caption",aj:"Upload failed",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Chèn liên kết",ap:"Đang tải lên",aq:"Bỏ liên kết",ar:"Sửa liên kết",as:"Mở liên kết",at:"Liên kết không có đường dẫn",au:"Save",av:"Cancel",aw:"Đường dẫn liên kết",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Hoàn tác",bb:"Tiếp tục",bc:"Rich Text Editor",bd:"Rich Text Editor, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Paragraph",bj:"Heading 1",bk:"Heading 2",bl:"Heading 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Change image text alternative",bq:"Text alternative"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/fa.js: -------------------------------------------------------------------------------- 1 | (function(d){d['fa']=Object.assign(d['fa']||{},{a:"فایل آپلود نمی‌شود:",b:"تو پر",c:" بلوک نقل قول",d:"کج",e:"ابزاره تصویر",f:"انتخاب عنوان",g:"عنوان",h:"وارد کردن تصویر یا فایل",i:"تصویر در اندازه کامل",j:"تصویر جانبی",k:"تصویر تراز شده چپ",l:"تصویر در وسط",m:"تصویر تراز شده راست",n:"قرار دادن تصویر",o:"لیست عددی",p:"لیست نشانه‌دار",q:"درج جدول",r:"ستون سربرگ",s:"Insert column left",t:"Insert column right",u:"حذف ستون",v:"ستون",w:"سطر سربرگ",x:"درج سطر در پایین",y:"درج سطر در بالا",z:"حذف سطر",aa:"سطر",ab:"ادغام سلول بالا",ac:"ادغام سلول راست",ad:"ادغام سلول پایین",ae:"ادغام سلول چپ",af:"تقسیم عمودی سلول",ag:"تقسیم افقی سلول",ah:"ادغام سلول ها",ai:"عنوان تصویر را وارد کنید",aj:"آپلود ناموفق بود",ak:"ویجت رسانه",al:"وارد کردن رسانه",am:"آدرس اینترنتی URL نباید خالی باشد.",an:"این آدرس اینترنتی رسانه پشتیبانی نمی‌شود",ao:"پیوند",ap:"آپلود در حال انجام",aq:"لغو پیوند",ar:"ویرایش پیوند",as:"باز کردن پیوند در برگه جدید",at:"این پیوند نشانی اینترنتی ندارد",au:"ذخیره",av:"لغو",aw:"نشانی اینترنتی پیوند",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"آدرس اینترنتی رسانه",ba:"بازگردانی",bb:"باز انجام",bc:"ویرایشگر متن غنی",bd:"ویرایشگر متن غنی، %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"پاراگراف",bj:"عنوان 1",bk:"عنوان 2",bl:"عنوان 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"تغییر متن جایگزین تصویر",bq:"متن جایگزین"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/si.js: -------------------------------------------------------------------------------- 1 | (function(d){d['si']=Object.assign(d['si']||{},{a:"ගොනුව යාවත්කාලීන කළ නොහැක:",b:"තදකුරු",c:"Block quote",d:"ඇලකුරු",e:"image widget",f:"Choose heading",g:"Heading",h:"Insert image or file",i:"Full size image",j:"Side image",k:"Left aligned image",l:"Centered image",m:"Right aligned image",n:"පින්තූරය ඇතුල් කරන්න",o:"අංකිත ලැයිස්තුව",p:"බුලටිත ලැයිස්තුව",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Enter image caption",aj:"උඩුගත කිරීම අසාර්ථක විය",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Link",ap:"Upload in progress",aq:"Unlink",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"Save",av:"Cancel",aw:"Link URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"අහෝසි කරන්න",bb:"නැවත කරන්න",bc:"Rich Text Editor",bd:"Rich Text Editor, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Paragraph",bj:"Heading 1",bk:"Heading 2",bl:"Heading 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Change image text alternative",bq:"Text alternative"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/windows.html: -------------------------------------------------------------------------------- 1 |
2 |
12 |
22 |
32 |
42 |
52 |
-------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/da.js: -------------------------------------------------------------------------------- 1 | (function(d){d['da']=Object.assign(d['da']||{},{a:"Kan ikke uploade fil:",b:"Fed",c:"Blot citat",d:"Kursiv",e:"billed widget",f:"Vælg overskrift",g:"Overskrift",h:"Insert image or file",i:"Fuld billedstørrelse",j:"Sidebillede",k:"Venstrestillet billede",l:"Centreret billede",m:"Højrestillet billede",n:"Indsæt billede",o:"Opstilling med tal",p:"Punktopstilling",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Indtast billedoverskrift",aj:"Upload fejlede",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Link",ap:"Upload in progress",aq:"Fjern link",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"Gem",av:"Annullér",aw:"Link URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Fortryd",bb:"Gentag",bc:"Wysiwyg editor",bd:"Wysiwyg editor, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Formattering",bj:"Overskrift 1",bk:"Overskrift 2",bl:"Overskrift 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Skift alternativ billedtekst",bq:"Alternativ tekst"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/ug.js: -------------------------------------------------------------------------------- 1 | (function(d){d['ug']=Object.assign(d['ug']||{},{a:"چىقىرىشقا بولمايدىغان ھۆججەت :",b:"توم",c:"قىسمەن قوللىنىش",d:"يانتۇ",e:"رەسىمچىك",f:"تېما تاللاش",g:"تېما",h:"Insert image or file",i:"ئەسلى چوڭلۇقتىكى رەسىم",j:"يان رەسىم",k:"سولغا توغۇرلانغان رەسىم",l:"ئوتتۇردىكى رەسىم",m:"ئوڭغا توغۇرلانغان رەسىم",n:"رەسىم قىستۇرۇش",o:"نومۇر جەدىۋېلى",p:"بەلگە جەدىۋېلى",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"رەسىمنىڭ تېمىسىنى كىرگۈزۈڭ",aj:"چىقىرىش مەغلۇپ بولدى",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"ئۇلاش",ap:"Upload in progress",aq:"ئۈزۈش",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"ساقلاش",av:"قالدۇرۇش",aw:"ئۇلاش ئادىرسى",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"قالدۇرۇش",bb:"قايتا قىلىش",bc:"تېكىست تەھرىرلىگۈچ",bd:"تېكىست تەھرىرلىگۈچ، 0%",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"بۆلەك",bj:"تېما 1",bk:"تېما 2",bl:"تېما 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"رەسىملىك تېكىست تاللىغۇچنى ئۆزگەرتىش",bq:"تېكىست ئاملاشتۇرۇش"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/eo.js: -------------------------------------------------------------------------------- 1 | (function(d){d['eo']=Object.assign(d['eo']||{},{a:"Cannot upload file:",b:"grasa",c:"Block quote",d:"kursiva",e:"bilda fenestraĵo",f:"Elektu ĉapon",g:"Ĉapo",h:"Insert image or file",i:"Bildo kun reala dimensio",j:"Flanka biildo",k:"Left aligned image",l:"Centered image",m:"Right aligned image",n:"Enmetu bildon",o:"Numerita Listo",p:"Bula Listo",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Skribu klarigon pri la bildo",aj:"Upload failed",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Ligilo",ap:"Upload in progress",aq:"Malligi",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"Konservi",av:"Nuligi",aw:"URL de la ligilo",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Malfari",bb:"Refari",bc:"Redaktilo de Riĉa Teksto",bd:"Redaktilo de Riĉa Teksto, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Paragrafo",bj:"Ĉapo 1",bk:"Ĉapo 2",bl:"Ĉapo 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Ŝanĝu la alternativan tekston de la bildo",bq:"Alternativa teksto"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/id.js: -------------------------------------------------------------------------------- 1 | (function(d){d['id']=Object.assign(d['id']||{},{a:"Tidak dapat mengunggah berkas:",b:"Tebal",c:"Kutipan",d:"Miring",e:"widget gambar",f:"Pilih tajuk",g:"Tajuk",h:"Sisipkan gambar atau berkas",i:"Gambar ukuran penuh",j:"Gambar sisi",k:"Gambar rata kiri",l:"Gambar rata tengah",m:"Gambar rata kanan",n:"Sisipkan gambar",o:"Daftar Berangka",p:"Daftar Tak Berangka",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Tambahkan deskripsi gambar",aj:"Gagal mengunggah",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Tautan",ap:"Sedang mengunggah",aq:"Hapus tautan",ar:"Sunting tautan",as:"Buka tautan di tab baru",at:"Tautan ini tidak memiliki URL",au:"Simpan",av:"Batal",aw:"URL tautan",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Batal",bb:"Lakukan lagi",bc:"Rich Text Editor",bd:"Rich Text Editor, %0",be:"Gagal mendapatkan URL gambar terukur",bf:"Gagal memilih gambar terukur",bg:"Tidak dapat menyisipkan gambar pada posisi ini.",bh:"Gagal menyisipkan gambar",bi:"Paragraf",bj:"Tajuk 1",bk:"Tajuk 2",bl:"Tajuk 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Ganti alternatif teks gambar",bq:"Alternatif teks"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/kn.js: -------------------------------------------------------------------------------- 1 | (function(d){d['kn']=Object.assign(d['kn']||{},{a:"Cannot upload file:",b:"‍‍ದಪ್ಪ",c:"‍‍‍‍ಗುರುತಿಸಲಾದ ‍‍ಉಲ್ಲೇಖ",d:"‍ಇಟಾಲಿಕ್",e:"‍ಚಿತ್ರ ವಿಜೆಟ್",f:"ಶೀರ್ಷಿಕೆ ಆಯ್ಕೆಮಾಡು",g:"ಶೀರ್ಷಿಕೆ",h:"Insert image or file",i:"‍ಪೂರ್ಣ ‍‍ಅಳತೆಯ ಚಿತ್ರ",j:"‍ಪಕ್ಕದ ಚಿತ್ರ",k:"Left aligned image",l:"Centered image",m:"Right aligned image",n:"Insert image",o:"‍ಸಂಖ್ಯೆಯ ಪಟ್ಟಿ‍",p:"‍‍ಬುಲೆಟ್ ಪಟ್ಟಿ",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"‍ಚಿತ್ರದ ಶೀರ್ಷಿಕೆ ಸೇರಿಸು",aj:"Upload failed",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"‍ಕೊಂಡಿ",ap:"Upload in progress",aq:"‍ಕೊಂಡಿ ತೆಗೆ",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"ಉಳಿಸು",av:"ರದ್ದುಮಾಡು",aw:"‍ಕೊಂಡಿ ಸಂಪರ್ಕಿಸು",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"‍‍ರದ್ದು",bb:"‍ಮತ್ತೆ ಮಾಡು",bc:"‍ಸಮೃದ್ಧ ಪಠ್ಯ ಸಂಪಾದಕ‍‍",bd:"‍ಸಮೃದ್ಧ ಪಠ್ಯ ಸಂಪಾದಕ‍, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"ಪ್ಯಾರಾಗ್ರಾಫ್",bj:"ಶೀರ್ಷಿಕೆ 1",bk:"ಶೀರ್ಷಿಕೆ 2",bl:"ಶೀರ್ಷಿಕೆ 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"‍ಚಿತ್ರದ ಬದಲಿ ಪಠ್ಯ ಬದಲಾಯಿಸು",bq:"‍ಪಠ್ಯದ ಬದಲಿ"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/de-ch.js: -------------------------------------------------------------------------------- 1 | (function(d){d['de-ch']=Object.assign(d['de-ch']||{},{a:"Datei kann nicht hochgeladen werden:",b:"Bold",c:"Blockzitat",d:"Italic",e:"image widget",f:"Choose heading",g:"Heading",h:"Insert image or file",i:"Full size image",j:"Side image",k:"Left aligned image",l:"Centered image",m:"Right aligned image",n:"Insert image",o:"Numbered List",p:"Bulleted List",q:"Tabelle einfügen",r:"Kopfspalte",s:"Insert column left",t:"Insert column right",u:"Spalte löschen",v:"Spalte",w:"Kopfspalte",x:"Zeile unten einfügen",y:"Zeile oben einfügen",z:"Zeile löschen",aa:"Zeile",ab:"Zelle oben verbinden",ac:"Zele rechts verbinden",ad:"Zelle unten verbinden",ae:"Zelle links verbinden",af:"Zelle vertikal teilen",ag:"Zelle horizontal teilen",ah:"Zellen verbinden",ai:"Enter image caption",aj:"Upload failed",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Link",ap:"Upload läuft",aq:"Unlink",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"Save",av:"Cancel",aw:"Link URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Rückgängig",bb:"Wiederherstellen",bc:"Rich-Text-Edito",bd:"Rich-Text-Editor, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Paragraph",bj:"Heading 1",bk:"Heading 2",bl:"Heading 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Change image text alternative",bq:"Text alternative"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/ast.js: -------------------------------------------------------------------------------- 1 | (function(d){d['ast']=Object.assign(d['ast']||{},{a:"Cannot upload file:",b:"Negrina",c:"Block quote",d:"Cursiva",e:"complementu d'imaxen",f:"Choose heading",g:"Heading",h:"Insert image or file",i:"Imaxen a tamañu completu",j:"Imaxen llateral",k:"Left aligned image",l:"Centered image",m:"Right aligned image",n:"Insert image",o:"Llista numberada",p:"Llista con viñetes",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Enter image caption",aj:"Upload failed",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Enllazar",ap:"Upload in progress",aq:"Desenllazar",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"Guardar",av:"Encaboxar",aw:"URL del enllaz",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Desfacer",bb:"Refacer",bc:"Editor de testu arriquecíu",bd:"Editor de testu arriquecíu, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Paragraph",bj:"Heading 1",bk:"Heading 2",bl:"Heading 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Change image text alternative",bq:"Text alternative"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/sr.js: -------------------------------------------------------------------------------- 1 | (function(d){d['sr']=Object.assign(d['sr']||{},{a:"Постављање фајла је неуспешно:",b:"Bold",c:"Цитат",d:"Italic",e:"модул са сликом",f:"Одреди стил",g:"Стилови",h:"Додај слику или фајл",i:"Слика у пуној величини",j:"Бочна слика",k:"Лева слика",l:"Слика у средини",m:"Десна слика",n:"Додај слику",o:"Нумерисана листа",p:"Bulleted List",q:"Додај табелу",r:"Колона за заглавље",s:"Додај колону лево",t:"Додај колону десно",u:"Бриши колону",v:"Колона",w:"Ред за заглавлје",x:"Додај ред испод",y:"Додај ред изнад",z:"Бриши ред",aa:"Ред",ab:"Спој ћелије на горе",ac:"Спој ћелије на десно",ad:"Спој ћелије на доле",ae:"Cпој ћелије на лево",af:"Дели ћелије усправно",ag:"Дели ћелије водоравно",ah:"Спој ћелије",ai:"Одреди текст испод слике",aj:"Постављање неуспешно",ak:"Медиа wидгет",al:"Додај медиа",am:"УРЛ не сме бити празан.",an:"Овај медиа УРЛ тип није подржан.",ao:"Линк",ap:"Постављање у току",aq:"Отклони линк",ar:"Исправи линк",as:"Отвори линк у новом прозору",at:"Линк не садржи УРЛ",au:"Сачувај",av:"Одустани",aw:"УРЛ линк",ax:"Paste the media URL in the input.",ay:"Савет: Залепите УРЛ у садржај да би сте га брже уградили.",az:"Mедиа УРЛ",ba:"Повлачење",bb:"Поново",bc:"Проширен уређивач текста",bd:"Проширени уређивач текста, %0",be:"УРЛ слика промењених димензија није доступна.",bf:"Одабир слике промењених дименшија није успешно",bg:"Немогуће је додати слику на ово место.",bh:"Додавање слике је неуспешно",bi:"Пасус",bj:"Наслов 1",bk:"Наслов 2",bl:"Наслов 3",bm:"Наслов 4",bn:"Наслов 5",bo:"Наслов 6",bp:"Измена алтернативног текста",bq:"Алтернативни текст"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/az.js: -------------------------------------------------------------------------------- 1 | (function(d){d['az']=Object.assign(d['az']||{},{a:"Fayl yüklənə bilmir",b:"Yarıqalın",c:"Sitat bloku",d:"Kursiv",e:"Şəkil vidgetı",f:"Başlıqı seç",g:"Başlıq",h:"Şəkil və ya fayl əlavə ed",i:"Tam ölçülü şəkili",j:"Yan şəkil",k:"Soldan düzləndir",l:"Mərkəzə düzləndir",m:"Sağdan düzləndir",n:"Şəkili əlavə et",o:"Nömrələnmiş siyahısı",p:"Markerlənmiş siyahısı",q:"Cədvəli əlavə et",r:"Başlıqlı sütun",s:"Sola sütun əlavə et",t:"Sağa sütun əlavə et",u:"Sütunları sil",v:"Sütun",w:"Başlıqlı sətir",x:"Yuxarıya sətir əlavə et",y:"Aşağıya sətir əlavə et",z:"Sətirləri sil",aa:"Sətir",ab:"Xanaları yuxarı birləşdir",ac:"Xanaları sağa birləşdir",ad:"Xanaları aşağı birləşdir",ae:"Xanaları sola birləşdir",af:"Xanaları şaquli böl",ag:"Xanaları üfüqi böl",ah:"Xanaları birləşdir",ai:"Şəkil başlığı daxil edin",aj:"Şəkili serverə yüklə",ak:"media vidgeti",al:"Media əlavə ed",am:"URL boş olmamalıdır.",an:"Bu media URL dəstəklənmir.",ao:"Link",ap:"Yüklənir",aq:"Linki sil",ar:"Linki redaktə et",as:"Linki yeni pəncərədə aç",at:"Bu linkdə URL yoxdur",au:"Yadda saxla",av:"İmtina et",aw:"Linkin URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"İmtina et",bb:"Təkrar et",bc:"Rich Text Redaktoru",bd:"Rich Text Redaktoru, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Şəkili əlavə etmək mümkün deyil",bh:"Şəkili əlavə edilmədi",bi:"Abzas",bj:"Başlıq 1",bk:"Başlıq 2",bl:"Başlıq 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Alternativ mətni redaktə et",bq:"Alternativ mətn"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/el.js: -------------------------------------------------------------------------------- 1 | (function(d){d['el']=Object.assign(d['el']||{},{a:"Cannot upload file:",b:"Έντονη",c:"Περιοχή παράθεσης",d:"Πλάγια",e:"image widget",f:"Επιλέξτε κεφαλίδα",g:"Κεφαλίδα",h:"Insert image or file",i:"Εικόνα πλήρης μεγέθους",j:"Side image",k:"Left aligned image",l:"Centered image",m:"Right aligned image",n:"Εισαγωγή εικόνας",o:"Αριθμημένη λίστα",p:"Λίστα κουκκίδων",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Λεζάντα",aj:"Upload failed",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Σύνδεσμος",ap:"Upload in progress",aq:"Αφαίρεση συνδέσμου",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"Αποθήκευση",av:"Ακύρωση",aw:"Διεύθυνση συνδέσμου",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Αναίρεση",bb:"Επανάληψη",bc:"Επεξεργαστής Πλούσιου Κειμένου",bd:"Επεξεργαστής Πλούσιου Κειμένου, 0%",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Παράγραφος",bj:"Κεφαλίδα 1",bk:"Κεφαλίδα 2",bl:"Κεφαλίδα 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Αλλαγή εναλλακτικού κείμενου",bq:"Εναλλακτικό κείμενο"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/km.js: -------------------------------------------------------------------------------- 1 | (function(d){d['km']=Object.assign(d['km']||{},{a:"មិនអាច​អាប់ឡូត​ឯកសារ៖",b:"ដិត",c:"ប្លុក​ពាក្យ​សម្រង់",d:"ទ្រេត",e:"វិដជិត​រូបភាព",f:"ជ្រើសរើស​ក្បាលអត្ថបទ",g:"ក្បាលអត្ថបទ",h:"Insert image or file",i:"រូបភាព​ពេញ​ទំហំ",j:"រូបភាព​នៅ​ខាង",k:"Left aligned image",l:"Centered image",m:"Right aligned image",n:"បញ្ចូល​រូបភាព",o:"បញ្ជី​ជា​លេខ",p:"បញ្ជី​ជា​ចំណុច",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"បញ្ចូល​ពាក្យ​ពណ៌នា​រូបភាព",aj:"អាប់ឡូត​មិនបាន",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"តំណ",ap:"Upload in progress",aq:"ផ្ដាច់​តំណ",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"រក្សាទុ",av:"បោះបង់",aw:"URL តំណ",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"លែង​ធ្វើ​វិញ",bb:"ធ្វើ​វិញ",bc:"កម្មវិធី​កែសម្រួល​អត្ថបទ​សម្បូរបែប",bd:"កម្មវិធី​កែសម្រួល​អត្ថបទ​សម្បូរបែប, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"កថាខណ្ឌ",bj:"ក្បាលអត្ថបទ 1",bk:"ក្បាលអត្ថបទ 2",bl:"ក្បាលអត្ថបទ 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Change image text alternative",bq:"Text alternative"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/fi.js: -------------------------------------------------------------------------------- 1 | (function(d){d['fi']=Object.assign(d['fi']||{},{a:"Tiedostoa ei voitu ladata:",b:"Lihavointi",c:"Lainaus",d:"Kursivointi",e:"Kuvavimpain",f:"Valitse otsikko",g:"Otsikkotyyli",h:"Insert image or file",i:"Täysikokoinen kuva",j:"Pieni kuva",k:"Vasemmalle tasattu kuva",l:"Keskitetty kuva",m:"Oikealle tasattu kuva",n:"Lisää kuva",o:"Numeroitu lista",p:"Lista",q:"Lisää taulukko",r:"Otsikkosarake",s:"Insert column left",t:"Insert column right",u:"Poista sarake",v:"Sarake",w:"Otsikkorivi",x:"Lisää rivi alle",y:"Lisää rivi ylle",z:"Poista rivi",aa:"Rivi",ab:"Yhdistä solu ylös",ac:"Yhdistä solu oikealle",ad:"Yhdistä solu alas",ae:"Yhdistä solu vasemmalle",af:"Jaa solu pystysuunnassa",ag:"Jaa solu vaakasuunnassa",ah:"Yhdistä tai jaa soluja",ai:"Syötä kuvateksti",aj:"Lataus epäonnistui",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Linkki",ap:"Upload in progress",aq:"Poista linkki",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"Tallenna",av:"Peruuta",aw:"Linkin osoite",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Peru",bb:"Tee uudelleen",bc:"Rikas tekstieditori",bd:"Rikas tekstieditori, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Kappale",bj:"Otsikko 1",bk:"Otsikko 2",bl:"Otsikko 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Vaihda kuvan vaihtoehtoinen teksti",bq:"Vaihtoehtoinen teksti"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/tr.js: -------------------------------------------------------------------------------- 1 | (function(d){d['tr']=Object.assign(d['tr']||{},{a:"Dosya yüklenemedi:",b:"Kalın",c:"Alıntı",d:"İtalik",e:"Görsel Bileşeni",f:"Başlık tipi seç",g:"Başlık",h:"Resim veya dosya ekleyin",i:"Tam Boyut Görsel",j:"Yan Görsel",k:"Sola hizalı görsel",l:"Ortalanmış görsel",m:"Sağa hizalı görsel",n:"Görsel Ekle",o:"Numaralı Liste",p:"Simgeli Liste",q:"Tablo Ekle",r:"Başlık kolonu",s:"Sola kolon ekle",t:"Sağa kolon ekle",u:"Kolonu sil",v:"Kolon",w:"Başlık satırı",x:"Alta satır ekle",y:"Üste satır ekle",z:"Satırı sil",aa:"Satır",ab:"Yukarı doğru birleştir",ac:"Sağa doğru birleştir",ad:"Aşağıya doğru birleştir",ae:"Sola doğru birleştir",af:"Hücreyi dikey böl",ag:"Hücreyi yatay böl",ah:"Hücreleri birleştir",ai:"Resim açıklaması gir",aj:"Yükleme başarsız",ak:"Medya Aracı",al:"Medya Ekle",am:"URL boş olamaz.",an:"Desteklenmeyen Medya URL'si.",ao:"Bağlantı",ap:"Yükleme işlemi devam ediyor",aq:"Bağlantıyı kaldır",ar:"Bağlantıyı değiştir",as:"Yeni sekmede aç",at:"Bağlantı adresi yok",au:"Kaydet",av:"İptal",aw:"Bağlantı Adresi",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Medya URL'si",ba:"Geri al",bb:"Tekrar yap",bc:"Zengin İçerik Editörü",bd:"Zengin İçerik Editörü, %0",be:"Yeniden boyutlandırılan resmin URL'i alınamadı",bf:"Yeniden boyutlandırılan resim seçilemedi",bg:"Geçerli konuma resim eklenemedi.",bh:"Resim ekleme gerçekleşirilemedi.",bi:"Paragraf",bj:"1. Seviye Başlık",bk:"2. Seviye Başlık",bl:"3. Seviye Başlık",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Görsel alternatif yazısını değiştir",bq:"Yazı alternatifi"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/nb.js: -------------------------------------------------------------------------------- 1 | (function(d){d['nb']=Object.assign(d['nb']||{},{a:"Kan ikke laste opp fil:",b:"Fet",c:"Blokksitat",d:"Kursiv",e:"Bilde-widget",f:"Velg overskrift",g:"Overskrift",h:"Insert image or file",i:"Bilde i full størrelse",j:"Sidebilde",k:"Venstrejustert bilde",l:"Midtstilt bilde",m:"Høyrejustert bilde",n:"Sett inn bilde",o:"Nummerert liste",p:"Punktmerket liste",q:"Sett inn tabell",r:"Overskriftkolonne",s:"Insert column left",t:"Insert column right",u:"Slett kolonne",v:"Kolonne",w:"Overskriftrad",x:"Sett inn rad under",y:"Sett inn rad over",z:"Slett rad",aa:"Rad",ab:"Slå sammen celle opp",ac:"Slå sammen celle til høyre",ad:"Slå sammen celle ned",ae:"Slå sammen celle til venstre",af:"Del celle vertikalt",ag:"Del celle horisontalt",ah:"Slå sammen celler",ai:"Skriv inn bildetekst",aj:"Opplasting feilet",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Lenke",ap:"Opplasting pågår",aq:"Fjern lenke",ar:"Rediger lenke",as:"Åpne lenke i ny fane",at:"Denne lenken har ingen URL",au:"Lagre",av:"Avbryt",aw:"URL for lenke",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Angre",bb:"Gjør om",bc:"Rikteksteditor",bd:"Rikteksteditor, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Avsnitt",bj:"Overskrift 1",bk:"Overskrift 2",bl:"Overskrift 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Endre tekstalternativ for bilde",bq:"Tekstalternativ for bilde"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/pt.js: -------------------------------------------------------------------------------- 1 | (function(d){d['pt']=Object.assign(d['pt']||{},{a:"Não foi possível carregar o ficheiro:",b:"Negrito",c:"Block quote",d:"Itálico",e:"módulo de imagem",f:"Choose heading",g:"Cabeçalho",h:"Insert image or file",i:"Imagem em tamanho completo",j:"Imagem lateral",k:"Left aligned image",l:"Imagem centrada",m:"Right aligned image",n:"Inserir imagem",o:"Lista ordenada",p:"Lista não ordenada",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Indicar legenda da imagem",aj:"Falha ao carregar",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Hiperligação",ap:"Upload in progress",aq:"Desligar",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"Guardar",av:"Cancelar",aw:"URL da ligação",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Desfazer",bb:"Refazer",bc:"Editor de texto avançado",bd:"Editor de texto avançado, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Parágrafo",bj:"Cabeçalho 1",bk:"Cabeçalho 2",bl:"Cabeçalho 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Change image text alternative",bq:"Texto alternativo"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/sr-latn.js: -------------------------------------------------------------------------------- 1 | (function(d){d['sr-latn']=Object.assign(d['sr-latn']||{},{a:"Postavljanje fajla je neuspešno:",b:"Bold",c:"Citat",d:"Italic",e:"modul sa slikom",f:"Odredi stil",g:"Stilovi",h:"Dodaj sliku ili fajl",i:"Slika u punoj veličini",j:"Bočna slika",k:"Leva slika",l:"Slika u sredini",m:"Desna slika",n:"Dodaj sliku",o:"Lista sa brojevima",p:"Bulleted List",q:"Dodaj tabelu",r:"Kolona za zaglavlje",s:"Dodaj kolonu levo",t:"Dodaj kolonu desno",u:"Briši kolonu",v:"Kolona",w:"Red za zaglavlje",x:"Dodaj red ispod",y:"Dodaj red iznad",z:"Briši red",aa:"Red",ab:"Spoj ćelije na gore",ac:"Spoj ćelije na desno",ad:"Spoj ćelije na dole",ae:"Spoj ćelije na levo",af:"Deli ćelije uspravno",ag:"Deli ćelije vodoravno",ah:"Spoj ćelije",ai:"Odredi tekst ispod slike",aj:"Postavljanje neuspešno",ak:"Media widget",al:"Dodaj media",am:"URL ne sme biti prazan.",an:"Ovaj media URL tip nije podržan.",ao:"Link",ap:"Postavljanje u toku",aq:"Оtkloni link",ar:"Ispravi link",as:"Otvori link u novom prozoru",at:"Link ne sadrži URL",au:"Sačuvaj",av:"Odustani",aw:"URL link",ax:"Paste the media URL in the input.",ay:"Savet: Zalepite URL u sadržaj da bi ste ga brže ugradili.",az:"Media URL",ba:"Povlačenje",bb:"Ponovo",bc:"Prošireni uređivač teksta",bd:"Prošireni uređivač teksta, %0",be:"URL slikа promenjeniih dimenzija nije dostupna.",bf:"Odabir slike promenjenih dimenzija nije uspešnо",bg:"Nemoguće je dodati sliku na ovo mesto.",bh:"Dodavanje slike je neuspešno",bi:"Pasus",bj:"Naslov 1",bk:"Naslov 2",bl:"Naslov 3",bm:"Naslov 4",bn:"Naslov 5",bo:"Naslov 6",bp:"Izmena alternativnog teksta",bq:"Alternativni tekst"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/eu.js: -------------------------------------------------------------------------------- 1 | (function(d){d['eu']=Object.assign(d['eu']||{},{a:"Ezin da fitxategia kargatu:",b:"Lodia",c:"Aipua",d:"Etzana",e:"irudi widgeta",f:"Aukeratu izenburua",g:"Izenburua",h:"Insert image or file",i:"Tamaina osoko irudia",j:"Alboko irudia",k:"Ezkerrean lerrokatutako irudia",l:"Zentratutako irudia",m:"Eskuinean lerrokatutako irudia",n:"Txertatu irudia",o:"Zenbakidun zerrenda",p:"Buletdun zerrenda",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Sartu irudiaren epigrafea",aj:"Kargatzeak huts egin du",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Esteka",ap:"Upload in progress",aq:"Desestekatu",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"Gorde",av:"Utzi",aw:"Estekaren URLa",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Desegin",bb:"Berregin",bc:"Testu aberastuaren editorea",bd:"Testu aberastuaren editorea, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Paragrafoa",bj:"Izenburua 1",bk:"Izenburua 2",bl:"Izenburua 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Aldatu irudiaren ordezko testua",bq:"Ordezko testua"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/cs.js: -------------------------------------------------------------------------------- 1 | (function(d){d['cs']=Object.assign(d['cs']||{},{a:"Soubor nelze nahrát:",b:"Tučné",c:"Citace",d:"Kurzíva",e:"ovládací prvek obrázku",f:"Zvolte nadpis",g:"Nadpis",h:"Insert image or file",i:"Obrázek v plné velikosti",j:"Postranní obrázek",k:"Obrázek zarovnaný vlevo",l:"Obrázek zarovnaný na střed",m:"Obrázek zarovnaný vpravo",n:"Vložit obrázek",o:"Číslování",p:"Odrážky",q:"Vložit tabulku",r:"Sloupec záhlaví",s:"Insert column left",t:"Insert column right",u:"Smazat sloupec",v:"Sloupec",w:"Řádek záhlaví",x:"Vložit řádek pod",y:"Vložit řádek před",z:"Smazat řádek",aa:"Řádek",ab:"Sloučit s buňkou nad",ac:"Sloučit s buňkou vpravo",ad:"Sloučit s buňkou pod",ae:"Sloučit s buňkou vlevo",af:"Rozdělit buňky vertikálně",ag:"Rozdělit buňky horizontálně",ah:"Sloučit buňky",ai:"Zadejte popis obrázku",aj:"Nahrání selhalo",ak:"ovládací prvek médií",al:"Vložit média",am:"URL adresa musí být vyplněna.",an:"Tato adresa bohužel není podporována.",ao:"Odkaz",ap:"Probíhá nahrávání",aq:"Odstranit odkaz",ar:"Upravit odkaz",as:"Otevřít odkaz v nové kartě",at:"Tento odkaz nemá žádnou URL",au:"Uložit",av:"Zrušit",aw:"URL odkazu",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"URL adresa",ba:"Zpět",bb:"Znovu",bc:"Textový editor",bd:"Textový editor, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Odstavec",bj:"Nadpis 1",bk:"Nadpis 2",bl:"Nadpis 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Změnit alternativní text obrázku",bq:"Alternativní text"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/sk.js: -------------------------------------------------------------------------------- 1 | (function(d){d['sk']=Object.assign(d['sk']||{},{a:"Nie je možné nahrať súbor:",b:"Tučné",c:"Citát",d:"Kurzíva",e:"widget obrázka",f:"Vyberte nadpis",g:"Nadpis",h:"Vložiť obrázok alebo súbor",i:"Obrázok v plnej veľkosti",j:"Bočný obrázok",k:"Zarovnať vľavo",l:"Zarovnať na stred",m:"Zarovnať vpravo",n:"Vložiť obrázok",o:"Číslovaný zoznam",p:"Zoznam s odrážkami",q:"Vložiť tabuľku",r:"Stĺpec hlavičky",s:"Insert column left",t:"Insert column right",u:"Odstrániť stĺpec",v:"Stĺpec",w:"Riadok hlavičky",x:"Vložiť riadok pod",y:"Vložiť riadok nad",z:"Odstrániť riadok",aa:"Riadok",ab:"Zlúčiť bunku hore",ac:"Zlúčiť bunku vpravo",ad:"Zlúčiť bunku dole",ae:"Zlúčiť bunku vľavo",af:"Rozdeliť bunku zvislo",ag:"Rozdeliť bunku vodorovne",ah:"Zlúčiť bunky",ai:"Vložte popis obrázka",aj:"Nahrávanie zlyhalo",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Odkaz",ap:"Prebieha nahrávanie",aq:"Zrušiť odkaz",ar:"Upraviť odkaz",as:"Otvoriť odkaz v novom okne",at:"Tento odkaz nemá nastavenú URL adresu",au:"Uložiť",av:"Zrušiť",aw:"URL adresa",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Späť",bb:"Znova",bc:"Editor s formátovaním",bd:"Editor s formátovaním, %0",be:"Nepodarilo sa získať URL adresu zmenšeného obrázka.",bf:"Vybranie zmenšeného obrázka zlyhalo",bg:"Obrázok nie je možné vložiť na vybranú pozíciu.",bh:"Vloženie obrázka zlyhalo",bi:"Paragraf",bj:"Nadpis 1",bk:"Nadpis 2",bl:"Nadpis 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Zmeňte alternatívny text obrázka",bq:"Alternatívny text"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/hr.js: -------------------------------------------------------------------------------- 1 | (function(d){d['hr']=Object.assign(d['hr']||{},{a:"Datoteku nije moguće poslati:",b:"Podebljano",c:"Blok citat",d:"Ukošeno",e:"Slika widget",f:"Odaberite naslov",g:"Naslov",h:"Umetni sliku ili datoteku",i:"Slika pune veličine",j:"Slika sa strane",k:"Lijevo poravnata slika",l:"Centrirana slika",m:"Slika poravnata desno",n:"Umetni sliku",o:"Brojčana lista",p:"Obična lista",q:"Ubaci tablicu",r:"Kolona zaglavlja",s:"Insert column left",t:"Insert column right",u:"Obriši kolonu",v:"Kolona",w:"Red zaglavlja",x:"Ubaci red ispod",y:"Ubaci red iznad",z:"Obriši red",aa:"Red",ab:"Spoji ćelije prema gore",ac:"Spoji ćelije prema desno",ad:"Spoji ćelije prema dolje",ae:"Spoji ćelije prema lijevo",af:"Razdvoji ćeliju okomito",ag:"Razdvoji ćeliju vodoravno",ah:"Spoji ćelije",ai:"Unesite naslov slike",aj:"Slanje nije uspjelo",ak:"dodatak za medije",al:"Ubaci medij",am:"URL ne smije biti prazan.",an:"URL nije podržan.",ao:"Veza",ap:"Slanje u tijeku",aq:"Ukloni vezu",ar:"Uredi vezu",as:"Otvori vezu u novoj kartici",at:"Ova veza nema URL",au:"Snimi",av:"Poništi",aw:"URL veze",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"URL medija",ba:"Poništi",bb:"Ponovi",bc:"Rich Text Editor",bd:"Rich Text Editor, %0",be:"Nije moguće dohvatiti URL slike s promijenjenom veličinom",bf:"Odabir slike s promijenjenom veličinom nije uspjelo",bg:"Nije moguće umetnuti sliku na trenutnu poziciju",bh:"Umetanje slike nije uspjelo",bi:"Paragraf",bj:"Naslov 1",bk:"Naslov 2",bl:"Naslov 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Promijeni alternativni tekst slike",bq:"Alternativni tekst"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/ro.js: -------------------------------------------------------------------------------- 1 | (function(d){d['ro']=Object.assign(d['ro']||{},{a:"Nu pot încărca fișierul:",b:"Îngroșat",c:"Bloc citat",d:"Oblic",e:"widget imagine",f:"Alege titlu rubrică",g:"Titlu rubrică",h:"Insert image or file",i:"Imagine mărime completă",j:"Imagine laterală",k:"Imagine aliniată stângă",l:"Imagine aliniată pe centru",m:"Imagine aliniată dreapta",n:"Inserează imagine",o:"Listă numerotată",p:"Listă cu puncte",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Introdu titlul descriptiv al imaginii",aj:"Încărcare eșuată",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Link",ap:"Upload in progress",aq:"Șterge link",ar:"Edit link",as:"Open link in new tab",at:"This link has no URL",au:"Salvare",av:"Anulare",aw:"Link URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Anulează",bb:"Revenire",bc:"Editor de text îmbunătățit",bd:"Editor de text îmbunătățit, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Paragraf",bj:"Titlu rubrică 1",bk:"Titlu rubrică 2",bl:"Titlu rubrică 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Schimbă textul alternativ al imaginii",bq:"Text alternativ"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/sq.js: -------------------------------------------------------------------------------- 1 | (function(d){d['sq']=Object.assign(d['sq']||{},{a:"Nuk mund të ngarkojë skedën:",b:"Trash",c:"Thonjëzat",d:"Pjerrtë",e:"Vegla e fotos",f:"Përzgjidh nëntitullin",g:"Nëntitulli",h:"Insert image or file",i:"Foto me madhësi të plotë",j:"Foto anësore",k:"Foto e vendosur majtas",l:"Foto e vendosur në mes",m:"Foto e vendosur djathtas",n:"Shto Foto",o:"Listë me Numra",p:"Listë me Pika",q:"Shto tabelë",r:"Kolona e kokës",s:"Insert column left",t:"Insert column right",u:"Gris kolonën",v:"Kolona",w:"Rreshti i kokës",x:"Shto rresht poshtë",y:"Shto rresht sipër",z:"Grish rreshtin",aa:"Rreshti",ab:"Bashko kutizat sipër",ac:"Bashko kutizat djathtas",ad:"Bashko kutizat poshtë",ae:"Bashko kutizat majtas",af:"Ndajë kutizat vertikalisht",ag:"Ndaj kutizat horizontalisht",ah:"Bashko kutizat",ai:"Shto përshkrimin e fotos",aj:"Ngarkimi dështoi",ak:"Vegla e medies",al:"Shto Medie",am:"URL nuk duhet të jetë e zbrazët.",an:"URL e medies nuk mbështetet.",ao:"Shto nyjën",ap:"Duke ngarkuar",aq:"Largo nyjën",ar:"Redakto nyjën",as:"Hap nyjën në faqe të re",at:"Kjo nyje nuk ka URL",au:"Ruaj",av:"Anulo",aw:"Nyja e URL-së",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"URL e Medies",ba:"Rikthe",bb:"Ribëj",bc:"Redaktues i Tekstit të Pasur",bd:"Redaktues i Tekstit të Pasur, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Paragrafi",bj:"Nëntitulli 1",bk:"Nëntitulli 2",bl:"Nëntitulli 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Ndrysho tekstin zgjedhor të fotos",bq:"Teksti zgjedhor"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/es.js: -------------------------------------------------------------------------------- 1 | (function(d){d['es']=Object.assign(d['es']||{},{a:"No se pudo cargar el archivo:",b:"Negrita",c:"Entrecomillado",d:"Cursiva",e:"Widget de imagen",f:"Elegir Encabezado",g:"Encabezado",h:"Insert image or file",i:"Imagen a tamaño completo",j:"Imagen lateral",k:"Imagen alineada a la izquierda",l:"Imagen centrada",m:"Imagen alineada a la derecha",n:"Insertar imagen",o:"Lista numerada",p:"Lista de puntos",q:"Insert table",r:"Header column",s:"Insert column left",t:"Insert column right",u:"Delete column",v:"Column",w:"Header row",x:"Insert row below",y:"Insert row above",z:"Delete row",aa:"Row",ab:"Merge cell up",ac:"Merge cell right",ad:"Merge cell down",ae:"Merge cell left",af:"Split cell vertically",ag:"Split cell horizontally",ah:"Merge cells",ai:"Introducir título de la imagen",aj:"Fallo en la subida",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Enlace",ap:"Upload in progress",aq:"Quitar enlace",ar:"Editar enlace",as:"Abrir enlace en una pestaña nueva",at:"Este enlace no tiene URL",au:"Guardar",av:"Cancelar",aw:"URL del enlace",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Deshacer",bb:"Rehacer",bc:"Editor de Texto Enriquecido",bd:"Editor de Texto Enriquecido, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Párrafo",bj:"Encabezado 1",bk:"Encabezado 2",bl:"Encabezado 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Cambiar el texto alternativo de la imagen",bq:"Texto alternativo"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/nl.js: -------------------------------------------------------------------------------- 1 | (function(d){d['nl']=Object.assign(d['nl']||{},{a:"Kan bestand niet opladen:",b:"Vet",c:"Blok citaat",d:"Cursief",e:"Afbeeldingswidget",f:"Kies kop",g:"Koppen",h:"Insert image or file",i:"Afbeelding op volledige grootte",j:"Afbeelding naast tekst",k:"Links uitgelijnde afbeelding",l:"Gecentreerde afbeelding",m:"Rechts uitgelijnde afbeelding",n:"Afbeelding toevoegen",o:"Genummerde lijst",p:"Ongenummerde lijst",q:"Tabel invoegen",r:"Titel kolom",s:"Insert column left",t:"Insert column right",u:"Verwijder kolom",v:"Kolom",w:"Titel rij",x:"Rij hieronder invoegen",y:"Rij hierboven invoegen",z:"Verwijder rij",aa:"Rij",ab:"Cel hierboven samenvoegen",ac:"Cel hierna samenvoegen",ad:"Cel hieronder samenvoegen",ae:"Cel hiervoor samenvoegen",af:"Splits cel verticaal",ag:"Splits cel horizontaal",ah:"Cellen samenvoegen",ai:"Typ een afbeeldingsbijschrift",aj:"Opladen afbeelding mislukt",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Link",ap:"Bezig met uploaden",aq:"Verwijder link",ar:"Bewerk link",as:"Open link in nieuw tabblad",at:"Deze link heeft geen URL",au:"Opslaan",av:"Annuleren",aw:"Link URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Ongedaan maken",bb:"Opnieuw",bc:"Tekstbewerker",bd:"Tekstbewerker, 0%",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Paragraaf",bj:"Kop 1",bk:"Kop 2",bl:"Kop 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Verander alt-tekst van de afbeelding",bq:"Alt-tekst"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/hu.js: -------------------------------------------------------------------------------- 1 | (function(d){d['hu']=Object.assign(d['hu']||{},{a:"Nem sikerült a fájl feltöltése:",b:"Félkövér",c:"Idézet",d:"Dőlt",e:"képmodul",f:"Stílus megadása",g:"Stílusok",h:"Kép, vagy fájl beszúrása",i:"Teljes méretű kép",j:"Oldalsó kép",k:"Balra igazított kép",l:"Középre igazított kép",m:"Jobbra igazított kép",n:"Kép beszúrása",o:"Számozott lista",p:"Pontozott lista",q:"Táblázat beszúrása",r:"Oszlop fejléc",s:"Oszlop beszúrása balra",t:"Oszlop beszúrása jobbra",u:"Oszlop törlése",v:"Oszlop",w:"Sor fejléc",x:"Sor beszúrása alá",y:"Sor beszúrása fölé",z:"Sor törlése",aa:"Sor",ab:"Cellák egyesítése felfelé",ac:"Cellák egyesítése jobbra",ad:"Cellák egyesítése lefelé",ae:"Cellák egyesítése balra",af:"Cella felosztása függőlegesen",ag:"Cella felosztása vízszintesen",ah:"Cellaegyesítés",ai:"Képaláírás megadása",aj:"A feltöltés nem sikerült",ak:"Média widget",al:"Média beszúrása",am:"Az URL nem lehet üres.",an:"Ez a média URL típus nem támogatott.",ao:"Link",ap:"A feltöltés folyamatban",aq:"Link eltávolítása",ar:"Link szerkesztése",as:"Link megnyitása új ablakban",at:"A link nem tartalmaz URL-t",au:"Mentés",av:"Mégsem",aw:"URL link",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Média URL",ba:"Visszavonás",bb:"Újra",bc:"Bővített szövegszerkesztő",bd:"Bővített szövegszerkesztő, %0",be:"Az átméretezett kép URL-je nem érhető el.",bf:"Az átméretezett kép kiválasztása sikertelen",bg:"A jelenlegi helyen nem szúrható be a kép.",bh:"A kép beszúrása sikertelen",bi:"Bekezdés",bj:"Címsor 1",bk:"Címsor 2",bl:"Címsor 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Helyettesítő szöveg módosítása",bq:"Helyettesítő szöveg"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/de.js: -------------------------------------------------------------------------------- 1 | (function(d){d['de']=Object.assign(d['de']||{},{a:"Datei kann nicht hochgeladen werden:",b:"Fett",c:"Blockzitat",d:"Kursiv",e:"Bild-Steuerelement",f:"Überschrift auswählen",g:"Überschrift",h:"Bild oder Datei einfügen",i:"Bild in voller Größe",j:"Seitenbild",k:"linksbündiges Bild",l:"zentriertes Bild",m:"rechtsbündiges Bild",n:"Bild einfügen",o:"Nummerierte Liste",p:"Aufzählungsliste",q:"Tabelle einfügen",r:"Kopfspalte",s:"Spalte links einfügen",t:"Spalte rechts einfügen",u:"Spalte löschen",v:"Spalte",w:"Kopfzeile",x:"Zeile unten einfügen",y:"Zeile oben einfügen",z:"Zeile löschen",aa:"Zeile",ab:"Zelle verbinden",ac:"Zelle rechts verbinden",ad:"Zelle unten verbinden",ae:"Zelle links verbinden",af:"Zelle vertikal teilen",ag:"Zelle horizontal teilen",ah:"Zellen verbinden",ai:"Bildunterschrift eingeben",aj:"Hochladen fehlgeschlagen",ak:"Medien-Widget",al:"Medium einfügen",am:"Die Url darf nicht leer sein",an:"Diese Medien-Url wird nicht unterstützt",ao:"Link",ap:"Upload läuft",aq:"Link entfernen",ar:"Link bearbeiten",as:"Link im neuen Tab öffnen",at:"Dieser Link hat keine Adresse",au:"Speichern",av:"Abbrechen",aw:"Link Adresse",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Medien-Url",ba:"Rückgängig",bb:"Wiederherstellen",bc:"Rich Text Editor",bd:"Rich-Text-Editor, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Einfügen des Bildes fehlgeschlagen",bi:"Absatz",bj:"Überschrift 1",bk:"Überschrift 2",bl:"Überschrift 3",bm:"Überschrift 4",bn:"Überschrift 5",bo:"Überschrift 6",bp:"Alternativ Text ändern",bq:"Textalternative"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/et.js: -------------------------------------------------------------------------------- 1 | (function(d){d['et']=Object.assign(d['et']||{},{a:"Faili ei suudeta üles laadida:",b:"Rasvane",c:"Tsitaat",d:"Kaldkiri",e:"pildi vidin",f:"Vali pealkiri",g:"Pealkiri",h:"Sisesta pilt või fail",i:"Täissuuruses pilt",j:"Pilt küljel",k:"Vasakule joondatud pilt",l:"Keskele joondatud pilt",m:"Paremale joondatud pilt",n:"Siseta pilt",o:"Nummerdatud loetelu",p:"Loetelu",q:"Sisesta tabel",r:"Päise veerg",s:"Sisesta veerg vasakule",t:"Sisesta veerg paremale",u:"Kustuta veerg",v:"Veerg",w:"Päise rida",x:"Sisesta rida allapoole",y:"Sisesta rida ülespoole",z:"Kustuta rida",aa:"Rido",ab:"Liida ülemise lahtriga",ac:"Liida paremal oleva lahtriga",ad:"Liida alumise lahtriga",ae:"Liida vasakul oleva lahtriga",af:"Jaga lahter vertikaalselt",ag:"Jaga lahter horisontaalselt",ah:"Liida lahtrid",ai:"Sisesta pildi pealkiri",aj:"Üleslaadimine ebaõnnestus",ak:"meedia vidin",al:"Sisesta meedia",am:"URL-i lahter ei tohi olla tühi.",an:"See meedia URL pole toetatud.",ao:"Link",ap:"Käimas on üleslaadimine",aq:"Eemalda link",ar:"Muuda linki",as:"Ava link uuel vahekaardil",at:"Sellel lingil puudub URL",au:"Salvesta",av:"Loobu",aw:"Lingi URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Meedia URL",ba:"Samm tagasi",bb:"Samm edasi",bc:"Tekstiredaktor",bd:"Tekstiredaktor, %0",be:"Muudetud suurusega pildi URL-i hankimine ebaõnnestus.",bf:"Muudetud suurusega pildi valimine ebaõnnestus",bg:"Pildi sisestamine praegusesse kohta ebaõnnestus.",bh:"Pildi sisestamine ebaõnnestus",bi:"Lõik",bj:"Pealkiri 1",bk:"Pealkiri 2",bl:"Pealkiri 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Muuda pildi tekstilist alternatiivi",bq:"Alternatiivne tekst"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/ku.js: -------------------------------------------------------------------------------- 1 | (function(d){d['ku']=Object.assign(d['ku']||{},{a:"پەڕگەکە ناتوانرێت باربکرێت:",b:"قەڵەو",c:"وتەی وەرگیراو",d:"لار",e:"وێدجیتی وێنە",f:"سەرنووسە هەڵبژێرە",g:"سەرنووسە",h:"وێنە یان پەڕگە دابنێ",i:"پڕ بەقەبارەی وێنە",j:"لای وێنە",k:"ڕیزکردنی وێنە بۆ لای چەپ",l:"ناوەڕاستکراوی وێنە",m:"ڕیزکردنی وێنە بۆ لای ڕاست",n:"وێنە دابنێ",o:"لیستەی ژمارەیی",p:"لیستەی خاڵەیی",q:"خشتە دابنێ",r:"ستوونی دەسپێک",s:"دانانی ستوون لە چەپ",t:"دانانی ستوون لە ڕاست",u:"سڕینەوەی ستوون",v:"ستوون",w:"ڕیزی دەسپێک",x:"دانانی ڕیز لە ژێرەوە",y:"دانانی ڕیز لە سەرەوە",z:"سڕینەوەی ڕیز",aa:"ڕیز",ab:"تێکەڵکردنی خانەکان بەرەو سەر",ac:"تێکەڵکردنی خانەکان بەرەو ڕاست",ad:"تێکەڵکردنی خانەکان بەرەو ژێرەوە",ae:"تێکەڵکردنی خانەکان بەرەو چەپ",af:"بەشکردنی خانەکان بە ئەستوونی",ag:"بەشکردنی خانەکان بە ئاسۆیی",ah:"تێکەڵکردنی خانەکان",ai:"سەردێڕی وێنە دابنێ",aj:"بارکردنەکە سەرنەکەووت",ak:"media widget",al:"میدیا دابنێ",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"بەستەر",ap:"بارکردنەکە لە جێبەجێکردن دایە",aq:"لابردنی بەستەر",ar:"دەستکاری بەستەر",as:"کردنەوەی بەستەرەکە لە پەڕەیەکی نوێ",at:"ئەم بەستەرە ناونیشانی نیە",au:"پاشکەوتکردن",av:"هەڵوەشاندنەوە",aw:"ناونیشانی بەستەر",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"بەستەری میدیا",ba:"وەک خۆی لێ بکەوە",bb:"هەلگەڕاندنەوە",bc:"سەرنوسەری دەقی بەپیت",bd:"سەرنوسەری دەقی بەپیت, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"نەتوانرا وێنە دابنرێت لەم شوێنە.",bh:"دانانی وێنە سەرکەوتوو نەبوو",bi:"پەراگراف",bj:"سەرنووسەی 1",bk:"سەرنووسەی 2",bl:"سەرنووسەی 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"گۆڕینی جێگروەی تێکیسی وێنە",bq:"جێگرەوەی تێکست"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 22 | 23 | Pandora :: 500 Server error 24 | 25 | 26 |
27 | 28 | 29 |
500
30 | 31 |
Oops!
Something went wrong.
32 | 33 |
34 | We will work on fixing that right away. 35 |
Meanwhile, you may return to dashboard or try using the search form. 36 |
37 | 38 |
39 | 40 |
41 |
42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/no.js: -------------------------------------------------------------------------------- 1 | (function(d){d['no']=Object.assign(d['no']||{},{a:"Kan ikke laste opp fil:",b:"Fet",c:"Blokksitat",d:"Kursiv",e:"Bilde-widget",f:"Velg overskrift",g:"Overskrift",h:"Sett inn bilde eller fil",i:"Bilde i full størrelse",j:"Sidestilt bilde",k:"Venstrejustert bilde",l:"Midtstilt bilde",m:"Høyrejustert bilde",n:"Sett inn bilde",o:"Nummerert liste",p:"Punktliste",q:"Sett inn tabell",r:"Overskriftkolonne",s:"Sett inn kolonne til venstre",t:"Sett inn kolonne til høyre",u:"Slett kolonne",v:"Kolonne",w:"Overskriftrad",x:"Sett inn rad under",y:"Sett inn rad over",z:"Slett rad",aa:"Rad",ab:"Slå sammen celle over",ac:"Slå sammen celle til høyre",ad:"Slå sammen celle under",ae:"Slå sammen celle til venstre",af:"Del opp celle vertikalt",ag:"Del opp celle horisontalt",ah:"Slå sammen celler",ai:"Skriv inn bildetekst",aj:"Kunne ikke laste opp",ak:"media-widget",al:"Sett inn media",am:"URL-en kan ikke være tom.",an:"Denne media-URL-en er ikke støttet.",ao:"Lenke",ap:"Laster opp fil",aq:"Fjern lenke",ar:"Rediger lenke",as:"Åpne lenke i ny fane",at:"Denne lenken mangler en URL",au:"Lagre",av:"Avbryt",aw:"Lenke-URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media-URL",ba:"Angre",bb:"Gjør om",bc:"Tekstredigeringsverktøy for rik tekst",bd:"Tekstredigeringsverktøy for rik tekst, %0",be:"Kunne ikke finne URL for bilde med endret størrelse.",bf:"Kunne ikke velge bilde med endret størrelse",bg:"Kunne ikke sette inn bilde på gjeldende posisjon.",bh:"Innsetting av bilde mislyktes",bi:"Avsnitt",bj:"Overskrift 1",bk:"Overskrift 2",bl:"Overskrift 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Endre tekstalternativ til bildet",bq:"Tekstalternativ"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Pandora :: 404 Page not found 13 | 14 | 24 | 25 | 26 | 27 |
28 | 29 | 30 | 31 |
404
32 |
Oops!
Page not found.
33 | 34 |
35 | We could not find the page you were looking for. 36 |
Meanwhile, you may return to dashboard or try using the search form. 37 |
38 | 39 |
40 | 41 |
42 |
43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /source/vendors/metro4/css/third-party/select2.min.css: -------------------------------------------------------------------------------- 1 | .select2-container .selection .select2-selection--single{height:36px;border:1px #d9d9d9 solid}.select2-container .selection .select2-selection--single .select2-selection__rendered{line-height:36px}.select2-container .selection .select2-selection--single .select2-selection__arrow{height:36px}.select2-container .selection .select2-selection--multiple{min-height:36px;border:1px #d9d9d9 solid}.select2-container .selection .select2-selection--multiple .select2-selection__rendered{display:block}.select2-container .selection .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{border-radius:0;background-color:#f8f8f8;font-size:14px;height:26px;line-height:26px}.select2-container .selection .select2-selection--multiple .select2-selection__rendered .select2-search--inline .select2-search__field{margin-top:0}.select2-container .select2-dropdown,.select2-container .select2-selection{border-radius:0}.select2 .selection .select2-selection--multiple,.select2 .selection .select2-selection--single{outline:0}.select2 .selection .select2-selection--multiple:hover,.select2 .selection .select2-selection--single:hover{border-color:silver}.select2 .selection .select2-selection--multiple.focused,.select2 .selection .select2-selection--multiple:focus,.select2 .selection .select2-selection--single.focused,.select2 .selection .select2-selection--single:focus{-webkit-box-shadow:0 0 0 3px rgba(228,228,228,.45);box-shadow:0 0 0 3px rgba(228,228,228,.45)}.select2 .selection .select2-selection--multiple.disabled,.select2 .selection .select2-selection--multiple:disabled,.select2 .selection .select2-selection--single.disabled,.select2 .selection .select2-selection--single:disabled{pointer-events:none;border-color:#ebebeb;background-color:#e9e9e9} -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/pt-br.js: -------------------------------------------------------------------------------- 1 | (function(d){d['pt-br']=Object.assign(d['pt-br']||{},{a:"Não foi possível enviar o arquivo:",b:"Negrito",c:"Bloco de citação",d:"Itálico",e:"Ferramenta de imagem",f:"Escolha o título",g:"Titulo",h:"Inserir imagem ou arquivo",i:"Imagem completa",j:"Imagem lateral",k:"Imagem alinhada à esquerda",l:"Imagem centralizada",m:"Imagem alinhada à direita",n:"Inserir imagem",o:"Lista numerada",p:"Lista com marcadores",q:"Inserir tabela",r:"Coluna de cabeçalho",s:"Inserir coluna à esquerda",t:"Inserir coluna à direita",u:"Excluir coluna",v:"Coluna",w:"Linha de cabeçalho",x:"Inserir linha abaixo",y:"Inserir linha acima",z:"Excluir linha",aa:"Linha",ab:"Mesclar acima",ac:"Mesclar à direita",ad:"Mesclar abaixo",ae:"Mesclar à esquerda",af:"Dividir verticalmente",ag:"Dividir horizontalmente",ah:"Mesclar células",ai:"Inserir legenda da imagem",aj:"Falha ao subir arquivo",ak:"Ferramenta de mídia",al:"Inserir mídia",am:"A URL não pode ficar em branco.",an:"A URL desta mídia não é suportada.",ao:"Link",ap:"Enviando dados",aq:"Remover link",ar:"Editar link",as:"Abrir link em nova aba",at:"Este link não possui uma URL",au:"Salvar",av:"Cancelar",aw:"URL",ax:"Cole o endereço da mídia no campo.",ay:"Cole o endereço dentro do conteúdo para embutir mais rapidamente.",az:"URL da mídia",ba:"Desfazer",bb:"Refazer",bc:"Editor de Formatação",bd:"Editor de Formatação, %0",be:"Não foi possível obter o endereço da imagem redimensionada",bf:"Seleção da imagem redimensionada falhou",bg:"Não foi possível inserir a imagem na posição atual",bh:"Falha ao inserir imagem",bi:"Parágrafo",bj:"Título 1",bk:"Título 2",bl:"Título 3",bm:"Título 4",bn:"Título 5",bo:"Título 6",bp:"Alterar texto alternativo da imagem",bq:"Texto alternativo"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/ne.js: -------------------------------------------------------------------------------- 1 | (function(d){d['ne']=Object.assign(d['ne']||{},{a:"फाइल अपलोड गर्न मिल्दैन",b:"बोल्ड",c:"ब्लक उद्धरण",d:"इटालिक",e:"तस्वीर विजेट",f:"शीर्षक छनौट गर्नुहोस्",g:"शीर्षक",h:"Insert image or file",i:"पूर्ण आकार तस्वीर",j:"साइड तस्वीर",k:"बायाँ पङ्क्ति तस्वीर",l:"केन्द्रित तस्वीर",m:"दायाँ पङ्क्तिबद्ध तस्वीर",n:"तस्वीर सम्मिलित गर्नुहोस्",o:"सूचीबद्ध सूची",p:"गोली चिन्ह अङ्कित सूची",q:"तालिका सम्मिलित गर्नुहोस्",r:"हेडर स्तम्भ",s:"Insert column left",t:"Insert column right",u:"स्तम्भ मेटाउनुहोस्",v:"स्तम्भ",w:"हेडर पङ्क्ति",x:"तल पंक्ति सम्मिलित गर्नुहोस्",y:"माथि पंक्ति सम्मिलित गर्नुहोस्",z:"पङ्क्ति मेटाउनुहोस्",aa:"पङ्क्ति",ab:"कक्ष माथि मर्ज गर्नुहोस्",ac:"दायाँ कक्ष मर्ज गर्नुहोस्",ad:"कक्ष तल मर्ज गर्नुहोस्",ae:"सेल बायाँ मर्ज गर्नुहोस्",af:"ठाडो कक्ष विभाजित गर्नुहोस्",ag:"क्षैतिज कक्ष विभाजित गर्नुहोस्",ah:"कक्ष मर्ज गर्नुहोस्",ai:"तस्वीर क्याप्शन प्रविष्ट गर्नुहोस्",aj:"अपलोड असफल भयो",ak:"मिडिया विजेट",al:"मिडिया सम्मिलित गर्नुहोस्।",am:"यूआरएल खाली हुनु हुँदैन।",an:"यो मिडिया यूआरएल समर्थित छैन।",ao:"लिङ्क",ap:"अपलोड हुदैछ",aq:"अनलिङ्क गर्नुहोस्",ar:"लिङ्क सम्पादन गर्नुहोस्",as:"नयाँ ट्याबमा लिङ्क खोल्नुहोस्",at:"यो लिङ्कसँग यूआरएल छैन",au:"सुरक्षित गर्नुहोस्",av:"रद्द गर्नुहोस्",aw:"लिङ्क यूआरएल",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"मिडिया यूआरएल",ba:"पूर्ववत",bb:"रिडु",bc:"धनी पाठ सम्पादक",bd:"धनी पाठ सम्पादक, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"अनुच्छेद",bj:"शीर्षक १",bk:"शीर्षक २",bl:"शीर्षक ३",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"तस्वीर पाठ विकल्प परिवर्तन गर्नुहोस्",bq:"पाठ विकल्प"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/ru.js: -------------------------------------------------------------------------------- 1 | (function(d){d['ru']=Object.assign(d['ru']||{},{a:"Невозможно загрузить файл",b:"Жирный",c:"Цитата",d:"Курсив",e:"Виджет изображений",f:"Выбрать заголовок",g:"Заголовок",h:"Insert image or file",i:"Оригинальный размер изображения",j:"Боковое изображение",k:"Выравнивание по левому краю",l:"Выравнивание по центру",m:"Выравнивание по правому краю",n:"Вставить изображение",o:"Нумерованный список",p:"Маркированный список",q:"Вставить таблицу",r:"Столбец заголовков",s:"Вставить столбец слева",t:"Вставить столбец справа",u:"Удалить столбец",v:"Столбец",w:"Строка заголовков",x:"Вставить строку ниже",y:"Вставить строку выше",z:"Удалить строку",aa:"Строка",ab:"Объединить с ячейкой сверху",ac:"Объединить с ячейкой справа",ad:"Объединить с ячейкой снизу",ae:"Объединить с ячейкой слева",af:"Разделить ячейку вертикально",ag:"Разделить ячейку горизонтально",ah:"Объединить ячейки",ai:"Подпись к изображению",aj:"Загрузка не выполнена",ak:"media widget",al:"Insert media",am:"The URL must not be empty.",an:"This media URL is not supported.",ao:"Ссылка",ap:"Идёт загрузка",aq:"Убрать ссылку",ar:"Редактировать ссылку",as:"Открыть ссылку в новой вкладке",at:"Для этой ссылки не установлен адрес URL",au:"Сохранить",av:"Отмена",aw:"Ссылка URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Media URL",ba:"Отменить",bb:"Повторить",bc:"Редактор",bd:"Редактор, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Параграф",bj:"Заголовок 1",bk:"Заголовок 2",bl:"Заголовок 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Редактировать альтернативный текст",bq:"Альтернативный текст"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/pl.js: -------------------------------------------------------------------------------- 1 | (function(d){d['pl']=Object.assign(d['pl']||{},{a:"Nie można przesłać pliku:",b:"Pogrubienie",c:"Cytat blokowy",d:"Kursywa",e:"Obraz",f:"Wybierz nagłówek",g:"Nagłówek",h:"Wstaw obraz lub plik",i:"Obraz w pełnym rozmiarze",j:"Obraz dosunięty do brzegu, oblewany tekstem",k:"Obraz wyrównany do lewej",l:"Obraz wyrównany do środka",m:"Obraz wyrównany do prawej",n:"Wstaw obraz",o:"Lista numerowana",p:"Lista wypunktowana",q:"Wstaw tabelę",r:"Kolumna nagłówka",s:"Wstaw kolumnę z lewej",t:"Wstaw kolumnę z prawej",u:"Usuń kolumnę",v:"Kolumna",w:"Wiersz nagłówka",x:"Wstaw wiersz poniżej",y:"Wstaw wiersz ponad",z:"Usuń wiersz",aa:"Wiersz",ab:"Scal komórkę w górę",ac:"Scal komórkę w prawo",ad:"Scal komórkę w dół",ae:"Scal komórkę w lewo",af:"Podziel komórkę pionowo",ag:"Podziel komórkę poziomo",ah:"Scal komórki",ai:"Wstaw tytuł obrazka",aj:"Przesyłanie obrazu nie powiodło się",ak:"widget osadzenie mediów",al:"Wstaw media",am:"Adres URL nie może być pusty.",an:"Ten rodzaj adresu URL nie jest obsługiwany.",ao:"Wstaw odnośnik",ap:"Trwa przesyłanie",aq:"Usuń odnośnik",ar:"Edytuj łącze",as:"Otwórz łącze w nowym oknie",at:"Nie podano adresu URL łącza",au:"Zapisz",av:"Anuluj",aw:"Adres URL",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Adres URL",ba:"Cofnij",bb:"Ponów",bc:"Edytor tekstu RTF",bd:"Edytor tekstu RTF, %0",be:"Nie można pobrać adresu URL obrazu po przeskalowaniu.",bf:"Nie powiodło się wybranie obrazu po przeskalowaniu",bg:"Nie można wstawić obrazu w bieżącej lokalizacji.",bh:"Nie powiodło się wstawienie obrazu.",bi:"Akapit",bj:"Nagłówek 1",bk:"Nagłówek 2",bl:"Nagłówek 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Zmień tekst zastępczy obrazka",bq:"Tekst zastępczy obrazka"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/fr.js: -------------------------------------------------------------------------------- 1 | (function(d){d['fr']=Object.assign(d['fr']||{},{a:"Envoi du fichier échoué :",b:"Gras",c:"Citation",d:"Italique",e:"Objet image",f:"Choisir le titre",g:"Titre",h:"Insert image or file",i:"Image taille réelle",j:"Image latérale",k:"Image alignée à gauche",l:"Image centrée",m:"Image alignée à droite",n:"Insérer une image",o:"Liste numérotée",p:"Liste à puces",q:"Insérer un tableau",r:"Colonne d'entête",s:"Insérer une colonne à gauche",t:"Insérer une colonne à droite",u:"Supprimer la colonne",v:"Colonne",w:"Ligne d'entête",x:"Insérer une ligne en-dessous",y:"Insérer une ligne au-dessus",z:"Supprimer la rangée",aa:"Ligne",ab:"Fusionner la cellule au-dessus",ac:"Fusionner la cellule à droite",ad:"Fusionner la cellule en-dessous",ae:"Fusionner la cellule à gauche",af:"Scinder la cellule verticalement",ag:"Scinder la cellule horizontalement",ah:"Fusionner les cellules",ai:"Saisir la légende de l’image",aj:"Échec de l'envoi",ak:"widget média",al:"Insérez le média",am:"L'URL ne peut être vide.",an:"Cette URL média n'est pas supportée.",ao:"Lien",ap:"Téléchargement en cours",aq:"Supprimer le lien",ar:"Modifier le lien",as:"Ouvrir le lien dans un nouvel onglet",at:"Ce lien n'a pas d'URL",au:"Enregistrer",av:"Annuler",aw:"URL du lien",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"URL média",ba:"Annuler",bb:"Restaurer",bc:"Éditeur de texte enrichi",bd:"Éditeur de texte enrichi, %0",be:"Could not obtain resized image URL.",bf:"Selecting resized image failed",bg:"Could not insert image at the current position.",bh:"Inserting image failed",bi:"Paragraphe",bj:"Titre 1",bk:"Titre 2",bl:"Titre 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Changer le texte alternatif à l’image",bq:"Texte alternatif"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/uk.js: -------------------------------------------------------------------------------- 1 | (function(d){d['uk']=Object.assign(d['uk']||{},{a:"Неможливо завантажити файл:",b:"Жирний",c:"Цитата",d:"Курсив",e:"Віджет зображення",f:"Оберіть заголовок",g:"Заголовок",h:"Вставте зображення або файл",i:"Повний розмір зображення",j:"Бокове зображення",k:"Зображення ліворуч",l:"Зображення по центру",m:"Зображення праворуч",n:"Вставити зображення",o:"Нумерований список",p:"Маркерний список",q:"Вставити таблицю",r:"Заголовок стовпця",s:"Insert column left",t:"Insert column right",u:"Видалити стовпець",v:"Стовпець",w:"Заголовок рядка",x:"Вставити рядок зверху",y:"Вставити рядок знизу",z:"Видалити рядок",aa:"Рядок",ab:"Поєднати комірки вгору",ac:"Поєднати комірки праворуч",ad:"Поєднати комірки внизу",ae:"Поєднати комірки ліворуч",af:"Розділити комірки вертикально",ag:"Розділити комірки горизонтально",ah:"Поєднати комірки",ai:"Введіть підпис зображення",aj:"Завантаження не вдалось",ak:"медіа віджет",al:"Вставити медіа",am:"URL не повинен бути порожнім.",an:"Даний медіа URL не підтримується.",ao:"Посилання",ap:"Виконується завантаження",aq:"Видалити посилання",ar:"Редагувати посилання",as:"Відкрити посилання у новій вкладці",at:"Це посилання не має URL",au:"Зберегти",av:"Відміна",aw:"URL посилання",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"Медіа URL",ba:"Відміна",bb:"Повтор",bc:"Розширений текстовий редактор",bd:"Розширений текстовий редактор, %0",be:"Не вдалось отримати URL зміненого зображення.",bf:"Не вдалося вибрати зображення зі зміненим розміром",bg:"Не можливо вставити зображення в поточну позицію.",bh:"Не вдалось вставити зображення",bi:"Параграф",bj:"Заголовок 1",bk:"Заголовок 2",bl:"Заголовок 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Змінити текстову альтернативу зображення",bq:"Текстова альтернатива"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/gl.js: -------------------------------------------------------------------------------- 1 | (function(d){d['gl']=Object.assign(d['gl']||{},{a:"Non é posíbel cargar o ficheiro:",b:"Negra",c:"Cita de bloque",d:"Itálica",e:"Trebello de imaxe",f:"Escolla o título",g:"Título",h:"Inserir imaxe ou ficheiro",i:"Imaxe a tamaño completo",j:"Lado da imaxe",k:"Imaxe aliñada á esquerda",l:"Imaxe centrada horizontalmente",m:"Imaxe aliñada á dereita",n:"Inserir imaxe",o:"Lista numerada",p:"Lista viñeteada",q:"Inserir táboa",r:"Cabeceira de columna",s:"Inserir columna á esquerda",t:"Inserir columna á dereita",u:"Eliminar columna",v:"Columna",w:"Cabeceira de fila",x:"Inserir fila embaixo",y:"Inserir fila enriba",z:"Eliminar fila",aa:"Fila",ab:"Combinar cela cara arriba",ac:"Combinar cela cara a dereita",ad:"Combinar cela cara abaixo",ae:"Combinar cela cara a esquerda",af:"Dividir cela en vertical",ag:"Dividir cela en horizontal",ah:"Combinar celas",ai:"Introduza o título da imaxe",aj:"Fallou o envío",ak:"trebello multimedia",al:"Inserir elemento multimedia",am:"O URL non debe estar baleiro.",an:"Este URL multimedia non é compatible.",ao:"Ligar",ap:"Envío en proceso",aq:"Desligar",ar:"Editar a ligazón",as:"Abrir a ligazón nunha nova lapela",at:"Esta ligazón non ten URL",au:"Gardar",av:"Cancelar",aw:"URL de ligazón",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"URL multimedia",ba:"Desfacer",bb:"Refacer",bc:"Editor de texto mellorado",bd:"Editor de texto mellorado, %0",be:"Non foi posíbel obter o URL da imaxe redimensionada.",bf:"Non foi posíbel seleccionar a imaxe redimensionada",bg:"Non foi posíbel inserir a imaxe na posición actual.",bh:"Fallou a inserción da imaxe",bi:"Parágrafo",bj:"Título 1",bk:"Título 2",bl:"Título 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Cambiar o texto alternativo da imaxe",bq:"Texto alternativo"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /source/vendors/ckeditor/translations/it.js: -------------------------------------------------------------------------------- 1 | (function(d){d['it']=Object.assign(d['it']||{},{a:"Impossibile caricare il file:",b:"Grassetto",c:"Blocco citazione",d:"Corsivo",e:"Widget immagine",f:"Seleziona intestazione",g:"Intestazione",h:"Inserisci immagine o file",i:"Immagine a dimensione intera",j:"Immagine laterale",k:"Immagine allineata a sinistra",l:"Immagine centrata",m:"Immagine allineata a destra",n:"Inserisci immagine",o:"Elenco numerato",p:"Elenco puntato",q:"Inserisci tabella",r:"Intestazione colonna",s:"Inserisci colonna a sinistra",t:"Inserisci colonna a destra",u:"Elimina colonna",v:"Colonna",w:"Riga d'intestazione",x:"Inserisci riga sotto",y:"Inserisci riga sopra",z:"Elimina riga",aa:"Riga",ab:"Unisci cella sopra",ac:"Unisci cella a destra",ad:"Unisci cella sotto",ae:"Unisci cella a sinistra",af:"Dividi cella verticalmente",ag:"Dividi cella orizzontalmente",ah:"Unisci celle",ai:"inserire didascalia dell'immagine",aj:"Caricamento fallito",ak:"widget media",al:"Inserisci media",am:"L'URL non può essere vuoto.",an:"Questo URL di file multimediali non è supportato.",ao:"Collegamento",ap:"Caricamento in corso",aq:"Elimina collegamento",ar:"Modifica collegamento",as:"Apri collegamento in nuova scheda",at:"Questo collegamento non ha un URL",au:"Salva",av:"Annulla",aw:"URL del collegamento",ax:"Paste the media URL in the input.",ay:"Tip: Paste the URL into the content to embed faster.",az:"URL media",ba:"Annulla",bb:"Ripristina",bc:"Editor di testo formattato",bd:"Editor di testo formattato, %0",be:"Non è stato possibile ottenere l'URL dell'immagine ridimensionata.",bf:"La selezione dell'immagine ridimensionata è fallita",bg:"Non è stato possibile inserire l'immagine nella posizione corrente.",bh:"L'inserimento dell'immagine è fallito",bi:"Paragrafo",bj:"Intestazione 1",bk:"Intestazione 2",bl:"Intestazione 3",bm:"Heading 4",bn:"Heading 5",bo:"Heading 6",bp:"Cambia testo alternativo dell'immagine",bq:"Testo alternativo"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | This project is no longer maintained. The next - Panda Templates 3 |

4 | 5 |
6 | 7 |

8 | 9 | 10 | 11 |

12 | 13 |
14 | 15 | **Pandora** - is a Responsive and Clean Admin Dashboard template. 16 | This template created with **Metro 4** with uses native classes, elements, and components. 17 | The template contains different types of reusable and professional responsive components with different variations. 18 | 19 | This template was created using the classes and components of **Metro 4** to demonstrate the capabilities of **Metro 4**. 20 | You can easily do all this on **Metro 4**. 21 | 22 | **Pandora** comes with a mega collection of features which can make admin dashboard of any projects like Small to Medium 23 | and Large sizes of projects including Personal projects, eCommerce, CRM, ERP, SaaS, PaaS, CMS, Back office 24 | and Accounting Software backend etc. The Multipurpose feature of the dashboard template will allow integrating 25 | for different types of business projects. 26 | 27 | **Pandora** offers a creative and easy way to develop admin backend for your next exciting projects. 28 | 29 |
30 |

31 | 32 | **Pandora** it's free, but the author would appreciate any financial support. 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 |

42 | 43 |
44 | 45 | - [x] [Pandora Demo](https://themes.org.ua/pandora/) 46 | - [x] [Metro 4 Official site](https://metroui.org.ua/) 47 | 48 |
49 | -------------------------------------------------------------------------------- /source/coming-soon.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Pandora :: Coming soon 13 | 14 | 24 | 25 | 26 | 27 |
28 |
29 | 30 |
Hey! Thank you for checking out our site.
31 |
32 | It’s not quite ready yet, but we are working hard and it will be ready in approximately: 33 |
34 |
35 |
36 |
37 | 38 |
39 |
40 |
41 |

42 | If you would like to be notified when the app is ready, you can subscribe to our e-mail list. 43 |

44 | 45 |
46 |
47 |
48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /source/css/mailbox.less: -------------------------------------------------------------------------------- 1 | .inbox { 2 | display: block; 3 | position: relative; 4 | background-color: white; 5 | } 6 | 7 | .inbox-folders { 8 | .badge { 9 | position: absolute; 10 | top: 12px; 11 | right: 8px; 12 | } 13 | 14 | li { 15 | 16 | &.active { 17 | border-left-color: #0b98da; 18 | } 19 | 20 | &:hover { 21 | background-color: #f7f7f7; 22 | } 23 | 24 | a { 25 | background-color: inherit!important; 26 | color: #000!important; 27 | height: 40px; 28 | line-height: 40px; 29 | } 30 | } 31 | 32 | } 33 | 34 | .inbox-table { 35 | .check-cell, .star-cell, .attach-cell { 36 | width: 32px; 37 | } 38 | .sender-cell { 39 | width: 120px; 40 | } 41 | .subject-cell { 42 | max-width: 0; 43 | } 44 | .time-cell { 45 | width: 100px; 46 | } 47 | } 48 | 49 | .email-read-form { 50 | .email-date, .email-from, .email-text { 51 | font-size: 14px; 52 | } 53 | .email-to { 54 | font-size: 12px; 55 | } 56 | } 57 | 58 | .email-attachments { 59 | display: flex; 60 | flex-flow: row wrap; 61 | } 62 | 63 | .email-attachment { 64 | width: 180px; 65 | height: 170px; 66 | display: flex; 67 | flex-flow: column; 68 | border: 1px solid #ededed; 69 | margin: 4px; 70 | 71 | .preview { 72 | width: 100%; 73 | height: 120px; 74 | overflow: hidden; 75 | display: flex; 76 | justify-content: center; 77 | align-items: center; 78 | 79 | img { 80 | width: 100%; 81 | height: auto; 82 | min-height: 100%; 83 | } 84 | 85 | span { 86 | font-size: 64px; 87 | } 88 | } 89 | 90 | .desc { 91 | height: 50px; 92 | margin-top: auto; 93 | background-color: #ededed; 94 | font-size: 14px; 95 | padding: 8px; 96 | line-height: 1.2; 97 | 98 | & > *:not(button) { 99 | margin-right: 36px; 100 | } 101 | } 102 | } -------------------------------------------------------------------------------- /source/vendors/metro4/css/third-party/select2.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Metro 4 Components Library v4.2.46 (https://metroui.org.ua) 3 | * Copyright 2012-2019 Sergey Pimenov 4 | * Licensed under MIT 5 | */ 6 | .select2-container .selection .select2-selection--single { 7 | height: 36px; 8 | border: 1px #d9d9d9 solid; 9 | } 10 | .select2-container .selection .select2-selection--single .select2-selection__rendered { 11 | line-height: 36px; 12 | } 13 | .select2-container .selection .select2-selection--single .select2-selection__arrow { 14 | height: 36px; 15 | } 16 | .select2-container .selection .select2-selection--multiple { 17 | min-height: 36px; 18 | border: 1px #d9d9d9 solid; 19 | } 20 | .select2-container .selection .select2-selection--multiple .select2-selection__rendered { 21 | display: block; 22 | } 23 | .select2-container .selection .select2-selection--multiple .select2-selection__rendered .select2-selection__choice { 24 | border-radius: 0; 25 | background-color: #f8f8f8; 26 | font-size: 14px; 27 | height: 26px; 28 | line-height: 26px; 29 | } 30 | .select2-container .selection .select2-selection--multiple .select2-selection__rendered .select2-search--inline .select2-search__field { 31 | margin-top: 0; 32 | } 33 | .select2-container .select2-selection, 34 | .select2-container .select2-dropdown { 35 | border-radius: 0; 36 | } 37 | .select2 .selection .select2-selection--single, 38 | .select2 .selection .select2-selection--multiple { 39 | outline: none; 40 | } 41 | .select2 .selection .select2-selection--single:hover, 42 | .select2 .selection .select2-selection--multiple:hover { 43 | border-color: #c0c0c0; 44 | } 45 | .select2 .selection .select2-selection--single:focus, 46 | .select2 .selection .select2-selection--multiple:focus, 47 | .select2 .selection .select2-selection--single.focused, 48 | .select2 .selection .select2-selection--multiple.focused { 49 | -webkit-box-shadow: 0 0 0 3px rgba(228, 228, 228, 0.45); 50 | box-shadow: 0 0 0 3px rgba(228, 228, 228, 0.45); 51 | } 52 | .select2 .selection .select2-selection--single:disabled, 53 | .select2 .selection .select2-selection--multiple:disabled, 54 | .select2 .selection .select2-selection--single.disabled, 55 | .select2 .selection .select2-selection--multiple.disabled { 56 | pointer-events: none; 57 | border-color: #ebebeb; 58 | background-color: #e9e9e9; 59 | } 60 | -------------------------------------------------------------------------------- /source/vendors/metro4/css/metro-reset.min.css: -------------------------------------------------------------------------------- 1 | *,::after,::before{-webkit-box-sizing:border-box;box-sizing:border-box}html{-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;font-family:sans-serif;scroll-behavior:smooth}body{line-height:1.5;overflow-x:hidden;background-color:#fff;min-height:100vh;text-rendering:optimizeSpeed}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:''}table{border-collapse:collapse;border-spacing:0}base,basefont,datalist,head,meta,noembed,param,script,style,template,title{display:none}[tabindex="-1"]:focus{outline:0!important}[hidden]{display:none!important}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}a,area,button,input,label,select,summary,textarea{touch-action:manipulation}svg:not(:root){overflow:hidden}img{vertical-align:middle;border-style:none;max-width:100%}div{position:relative}article>*+*{margin-top:1em}button,input,select,textarea{font:inherit}@media (prefers-reduced-motion:reduce){*{-webkit-animation-duration:0s!important;animation-duration:0s!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important;-webkit-transition-duration:0s!important;transition-duration:0s!important;scroll-behavior:auto!important}}[disabled]{pointer-events:none!important;color:#d3d3d3!important} -------------------------------------------------------------------------------- /source/lockscreen.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 22 | 23 | Pandora :: Lockscreen 24 | 25 | 26 | 27 |
28 |
35 | 36 |

Lock

37 | 38 | 39 | 40 |
Jack Sparrow
41 | 42 | 43 | Enter a password 44 | 45 |
Enter your password to retrieve your session
46 | 47 | Or sign in as a different user 48 | 49 |
Copyright © 2019 Sergey Pimenov
50 |
All rights reserved
51 |
52 |
53 | 54 | 55 | 56 | 57 | 66 | 67 | -------------------------------------------------------------------------------- /source/video.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Video player 4 | media 5 |

6 |
7 | 8 |
9 | 14 |
15 |
16 | 17 |
18 |
19 |
Create cool styled view player in one command with Metro 4 video role.
20 |
21 |
22 |
23 |
24 |
25 |
26 | 31 |
32 |
33 |
34 |
35 | 36 |
37 | 38 |

Any aspect ration

39 |
40 |
41 |
42 |
HD
43 | 44 |
45 |
46 |
47 |
48 |
SD
49 | 50 |
51 |
52 |
53 |
54 |
CINEMA
55 | 56 |
57 |
58 |
59 |
-------------------------------------------------------------------------------- /source/notifies.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Notifies 4 | ui elements 5 |

6 |
7 | 8 |
9 | 14 |
15 |
16 | 17 |
18 |

19 | The system of notifications is intended for informing users about the processes occurring on the site or in the application. 20 |

21 |
22 | 23 |
24 |
General
25 | 26 | 27 | 28 | 29 | 30 |
31 | 32 | -------------------------------------------------------------------------------- /source/vendors/metro4/css/third-party/datatables.min.css: -------------------------------------------------------------------------------- 1 | .sorting,.sorting_asc,.sorting_desc{position:relative;cursor:pointer}.sorting:after,.sorting_asc:after,.sorting_desc:after{position:absolute;content:"";width:1rem;height:1rem;left:100%;margin-left:-1.25rem;top:50%;margin-top:-.5rem;font-size:1rem;line-height:1;color:#1d1d1d}.sorting_asc{background-color:#ebebeb}.sorting_asc:after{content:"\2191"}.sorting_desc{background-color:#ebebeb}.sorting_desc:after{content:"\2193"}.dataTables_length label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.dataTables_length label select{margin:0 10px;width:100px}.dataTables_filter label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.dataTables_filter label input{width:200px;margin-left:10px}.dataTables_paginate{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style:none inside;padding:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.dataTables_paginate .next,.dataTables_paginate .previous,.dataTables_paginate span a{cursor:pointer;display:block;position:relative;padding:.5rem .75rem;line-height:1;font-size:1rem;text-decoration:none;background-color:#fff;color:#1d1d1d;border:1px solid #dfdfdf;margin:.25rem}.dataTables_paginate .next:hover,.dataTables_paginate .previous:hover,.dataTables_paginate span a:hover{background-color:rgba(29,29,29,.1)}.dataTables_paginate span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.dataTables_paginate .current{background-color:#e4e4e4}.dataTables_wrapper{margin-top:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-line-pack:center;align-content:center}.dataTables_filter,.dataTables_length{-webkit-box-flex:1;-ms-flex:1;flex:1}.dataTable,.dataTables_info,.dataTables_paginate{width:100%}.dataTables_info{line-height:42px;text-align:center}@media all and (min-width:576px){.dataTables_filter label{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.dataTables_length label{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}@media all and (min-width:992px){.dataTables_info,.dataTables_paginate{width:auto}.dataTables_info{text-align:left}.dataTables_paginate{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}} -------------------------------------------------------------------------------- /source/js/charts.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | window.chartColors = { 3 | red: 'rgb(255, 99, 132)', 4 | orange: 'rgb(255, 159, 64)', 5 | yellow: 'rgb(255, 205, 86)', 6 | green: 'rgb(75, 192, 192)', 7 | blue: 'rgb(54, 162, 235)', 8 | purple: 'rgb(153, 102, 255)', 9 | grey: 'rgb(201, 203, 207)' 10 | }; 11 | 12 | var dashboardChart1 = document.getElementById("dashboardChart1"); 13 | if (dashboardChart1) new Chart(dashboardChart1.getContext('2d'), { 14 | type: 'bar', 15 | data: { 16 | labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"], 17 | datasets: [{ 18 | label: '# of Sales', 19 | data: [12, 19, 3, 5, 2, 3], 20 | backgroundColor: [ 21 | 'rgba(255, 99, 132, 0.2)', 22 | 'rgba(54, 162, 235, 0.2)', 23 | 'rgba(255, 206, 86, 0.2)', 24 | 'rgba(75, 192, 192, 0.2)', 25 | 'rgba(153, 102, 255, 0.2)', 26 | 'rgba(255, 159, 64, 0.2)' 27 | ], 28 | borderColor: [ 29 | 'rgba(255,99,132,1)', 30 | 'rgba(54, 162, 235, 1)', 31 | 'rgba(255, 206, 86, 1)', 32 | 'rgba(75, 192, 192, 1)', 33 | 'rgba(153, 102, 255, 1)', 34 | 'rgba(255, 159, 64, 1)' 35 | ], 36 | borderWidth: 1 37 | }] 38 | }, 39 | options: { 40 | scales: { 41 | yAxes: [{ 42 | ticks: { 43 | beginAtZero:true 44 | } 45 | }] 46 | } 47 | } 48 | }); 49 | 50 | var profileChart1 = document.getElementById("profileChart1"); 51 | if (profileChart1) new Chart(profileChart1.getContext('2d'), { 52 | type: 'line', 53 | data: { 54 | labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], 55 | datasets: [{ 56 | label: 'My First dataset', 57 | backgroundColor: window.chartColors.red, 58 | borderColor: window.chartColors.red, 59 | data: [10, 23, 5, 99, 67, 43, 0], 60 | fill: false, 61 | pointRadius: 10, 62 | pointHoverRadius: 15, 63 | showLine: false // no line shown 64 | }] 65 | }, 66 | options: { 67 | responsive: true, 68 | title: { 69 | display: true, 70 | text: 'Point Style: ' + 'rectRot' 71 | }, 72 | legend: { 73 | display: false 74 | }, 75 | elements: { 76 | point: { 77 | pointStyle: 'rectRot' 78 | } 79 | } 80 | } 81 | }); 82 | }); 83 | -------------------------------------------------------------------------------- /source/vendors/metro4/css/metro-rtl.min.css: -------------------------------------------------------------------------------- 1 | .accordion.rtl.material>.frame>.heading,.accordion[dir=rtl].material>.frame>.heading{padding:16px 16px 16px 42px}.accordion.rtl.material>.frame>.heading::after,.accordion[dir=rtl].material>.frame>.heading::after{left:16px;right:auto;top:8px;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.accordion.rtl.material>.frame.active .heading::after,.accordion[dir=rtl].material>.frame.active .heading::after{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}input.rtl,input[dir=rtl]{direction:rtl}.input.rtl,.input[dir=rtl]{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-flow:row-reverse nowrap;flex-flow:row-reverse nowrap}.input.rtl input,.input[dir=rtl] input{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;direction:rtl}.input.rtl .button-group,.input[dir=rtl] .button-group{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.input.rtl .prepend,.input[dir=rtl] .prepend{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.input.rtl .append,.input[dir=rtl] .append{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.file.rtl .append,.file[dir=rtl] .append{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.file.rtl .prepend,.file[dir=rtl] .prepend{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.file.rtl .caption,.file[dir=rtl] .caption{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;text-align:right}.file.rtl button,.file[dir=rtl] button{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-left:0;margin-right:auto}.textarea.rtl,.textarea[dir=rtl]{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.textarea.rtl .prepend,.textarea[dir=rtl] .prepend{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.textarea.rtl .append,.textarea[dir=rtl] .append{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.textarea.rtl textarea,.textarea[dir=rtl] textarea{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.textarea.rtl .input-clear-button,.textarea[dir=rtl] .input-clear-button{right:auto;left:.25rem}.textarea.rtl .input-clear-button~textarea,.textarea[dir=rtl] .input-clear-button~textarea{padding-left:48px;padding-right:.75rem}.select.rtl,.select[dir=rtl]{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.select.rtl .select-input,.select[dir=rtl] .select-input{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.select.rtl .prepend,.select[dir=rtl] .prepend{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.select.rtl .append,.select[dir=rtl] .append{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.select.rtl .button-group,.select[dir=rtl] .button-group{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.select.rtl.dropdown-toggle,.select[dir=rtl].dropdown-toggle{padding-right:0!important;padding-left:.9rem}.select.rtl.dropdown-toggle::before,.select[dir=rtl].dropdown-toggle::before{margin-left:.9rem;left:0} -------------------------------------------------------------------------------- /source/countdown.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Countdown 4 | ui elements 5 |

6 |
7 | 8 |
9 | 14 |
15 |
16 | 17 |
18 |
19 |
20 |
21 |
Default
22 |
23 |
24 |
25 |
26 |
27 |
Effect slide
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
Effect fade
37 |
38 |
39 |
40 |
41 |
42 |
Effect Zoom
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
i18n
52 |
53 | 54 | 55 | 56 | 57 | 58 |
59 | 60 |
61 | 62 | 67 |
68 |
69 |
70 |
71 | -------------------------------------------------------------------------------- /source/js/index.js: -------------------------------------------------------------------------------- 1 | var payments = { 2 | 1: 'Credit Card', 3 | 2: 'Check', 4 | 3: 'PayPal', 5 | 4: 'Bank-wire' 6 | }; 7 | 8 | var statuses = { 9 | 1: ['Pre-order', 'bg-pink fg-white'], 10 | 2: ['Payed', 'bg-green fg-white'], 11 | 3: ['Payment Error', 'bg-red fg-white'], 12 | 4: ['Delivered', 'bg-teal fg-white'], 13 | 5: ['Preparing', 'bg-yellow'], 14 | 6: ['Awaiting payment', 'bg-cyan fg-white'], 15 | 7: ['Shipped', 'bg-lightGreen fg-white'] 16 | }; 17 | 18 | var shippingPanelButtons = [ 19 | { 20 | html: "", 21 | cls: "bg-transparent", 22 | onclick: "alert('You press shipping cog button')" 23 | } 24 | ]; 25 | var billingPanelButtons = [ 26 | { 27 | html: "", 28 | cls: "bg-transparent", 29 | onclick: "alert('You press billing cog button')" 30 | } 31 | ]; 32 | var customerPanelButtons = [ 33 | { 34 | html: "", 35 | cls: "bg-transparent", 36 | onclick: "alert('You press customer cog button')" 37 | } 38 | ]; 39 | 40 | $(function(){ 41 | var hash = location.hash; 42 | var target = hash.length > 0 ? hash.substr(1) : "dashboard"; 43 | var link = $(".navview-menu a[href*="+target+"]"); 44 | var menu = link.closest("ul[data-role=dropdown]"); 45 | var node = link.parent("li").addClass("active"); 46 | 47 | function getContent(target){ 48 | window.on_page_functions = []; 49 | $.get(target + ".html").then( 50 | function(response){ 51 | $("#content-wrapper").html(response); 52 | 53 | window.on_page_functions.forEach(function(func){ 54 | Metro.utils.exec(func, []); 55 | }); 56 | } 57 | ); 58 | } 59 | 60 | getContent(target); 61 | 62 | if (menu.length > 0) { 63 | Metro.getPlugin(menu, "dropdown").open(); 64 | } 65 | 66 | $(".navview-menu").on(Metro.events.click, "a", function(e){ 67 | var href = $(this).attr("href"); 68 | var pane = $(this).closest(".navview-pane"); 69 | var hash; 70 | 71 | if (Metro.utils.isValue(href) && href.indexOf(".html") > -1) { 72 | document.location.href = href; 73 | return false; 74 | } 75 | 76 | if (href === "#") { 77 | return false; 78 | } 79 | 80 | hash = href.substr(1); 81 | href = hash + ".html"; 82 | 83 | getContent(hash); 84 | 85 | if (pane.hasClass("open")) { 86 | pane.removeClass("open"); 87 | } 88 | 89 | pane.find("li").removeClass("active"); 90 | $(this).closest("li").addClass("active"); 91 | 92 | window.history.pushState(href, href, "index.html#"+hash); 93 | 94 | return false; 95 | }); 96 | 97 | function updateOrderStatus(){ 98 | var val = $("#sel-statuses").val(); 99 | var table = $("#table-order-statuses").find("tbody"); 100 | var tr, td; 101 | 102 | tr = $(""); 103 | td = $("").addClass(statuses[val][1]).html(statuses[val][0]); 104 | 105 | $("").html(td).appendTo(tr); 106 | $("").addClass("text-right").html(""+(new Date()).format("%m/%d/%Y %H:%M")).appendTo(tr); 107 | 108 | table.prepend(tr); 109 | } 110 | }); 111 | 112 | -------------------------------------------------------------------------------- /source/login.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Pandora :: Log in 13 | 14 | 15 | 16 | 59 | 60 | 61 | 62 | 63 | 72 | 73 | -------------------------------------------------------------------------------- /source/wizard.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Wizard 4 | wizards 5 |

6 |
7 | 8 |
9 | 14 |
15 |
16 | 17 |
18 |

General

19 |
20 |
21 |
22 |
Compact default
23 |
24 |
Page 1
25 |
Page 2
26 |
Page 3
27 |
Page 4
28 |
Page 5
29 |
30 |
31 |
32 |
33 |
34 |
Wide
35 |
36 |
Page 1
37 |
Page 2
38 |
Page 3
39 |
Page 4
40 |
Page 5
41 |
42 |
43 |
44 |
45 | 46 |

Control style

47 |
48 |
49 |
50 |
Square
51 |
52 |
53 |
54 |
55 |
56 |
Cycle
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
Outline button
65 |
71 |
72 |
73 |
74 |
75 |
Button
76 |
77 |
78 |
79 |
80 |
-------------------------------------------------------------------------------- /source/toasts.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Toasts 4 | ui elements 5 |

6 |
7 | 8 |
9 | 14 |
15 |
16 | 17 |
18 |

19 | Toasts are used for system messaging. They also display at the bottom of the screen, but may not be swiped off-screen. Metro 4 provides simple methods to create toasts. 20 |

21 |
22 | 23 |
24 |
25 |
General
26 | 27 | 28 | 29 | 30 | 31 |
32 |
33 |
34 |
Accent classes
35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 |
45 | 46 | 73 | -------------------------------------------------------------------------------- /source/register.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Pandora :: Register 13 | 14 | 15 | 16 | 64 | 65 | 66 | 67 | 68 | 77 | 78 | -------------------------------------------------------------------------------- /source/splitter.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Splitter 4 | ui elements 5 |

6 |
7 | 8 |
9 | 14 |
15 |
16 | 17 |
18 |
19 |
20 |
21 |
Split horizontal
22 |
23 |
This is panel 1
24 |
This is panel 2
25 |
26 |
27 |
28 |
29 |
30 |
Split vertical
31 |
32 |
This is panel 1
33 |
This is panel 2
34 |
35 |
36 |
37 |
38 |
39 |
Multi split
40 |
41 |
This is panel 1
42 |
43 |
Panel 1
44 |
Panel 2
45 |
46 |
47 |
48 |
49 |
50 | 51 |
52 | 53 |
54 |
55 |
56 |
Panels pre-sizes
57 |
58 |
This is panel 1
59 |
This is panel 2
60 |
61 |
62 |
63 |
64 |
65 |
Panels min size
66 |
67 |
This is panel 1
68 |
This is panel 2
69 |
70 |
71 |
72 |
73 |
74 |
Gutter size
75 |
76 |
This is panel 1
77 |
This is panel 2
78 |
79 |
80 |
81 |
82 |
83 | -------------------------------------------------------------------------------- /source/price-table.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Pricing e-commerce

4 |
5 | 6 |
7 | 12 |
13 |
14 | 15 |
16 |
17 |
18 |
19 |
20 |

Starter

21 |
for small teams
22 |
23 | 24 |
25 |
$29
26 |
monthly per user
27 |
28 | 29 |
30 |
Unlimited projects
31 |
Unlimited pages
32 |
Unlimited disk space
33 |
24 / 7 Free support
34 |
35 | 36 |
37 | 38 |

7 days free trial

39 |
40 |
41 |
42 |
43 |
44 |
45 |

Pro

46 |
for larger teams
47 |
48 | 49 |
50 |
$59
51 |
monthly per user
52 |
53 | 54 |
55 |
Unlimited projects
56 |
Unlimited pages
57 |
Unlimited disk space
58 |
24 / 7 Free support
59 |
Advanced reporting
60 |
Customizable interface
61 |
CRM Integration
62 |
63 | 64 |
65 | 66 |

30 days free trial

67 |
68 |
69 |
70 |
71 |
72 |
73 |

Enterprise

74 |
for big teams
75 |
76 | 77 |
78 |
$99
79 |
monthly per user
80 |
81 | 82 |
83 |
Unlimited projects
84 |
Unlimited pages
85 |
Unlimited disk space
86 |
For full feature list, call us
87 |
88 | 89 |
90 | 91 |

90 days free trial

92 |
93 |
94 |
95 |
96 |
97 | 98 | -------------------------------------------------------------------------------- /source/vendors/metro4/css/metro-reset.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Metro 4 Components Library v4.4.3 (https://metroui.org.ua) 3 | * Copyright 2012-2020 Sergey Pimenov 4 | * Built at 08/12/2020 18:30:54 5 | * Licensed under MIT 6 | */ 7 | *, 8 | *::before, 9 | *::after { 10 | -webkit-box-sizing: border-box; 11 | box-sizing: border-box; 12 | } 13 | html { 14 | -ms-overflow-style: scrollbar; 15 | -webkit-tap-highlight-color: transparent; 16 | -webkit-text-size-adjust: 100%; 17 | -ms-text-size-adjust: 100%; 18 | font-family: sans-serif; 19 | scroll-behavior: smooth; 20 | } 21 | body { 22 | line-height: 1.5; 23 | overflow-x: hidden; 24 | background-color: #ffffff; 25 | min-height: 100vh; 26 | text-rendering: optimizeSpeed; 27 | } 28 | html, 29 | body, 30 | div, 31 | span, 32 | applet, 33 | object, 34 | iframe, 35 | h1, 36 | h2, 37 | h3, 38 | h4, 39 | h5, 40 | h6, 41 | p, 42 | blockquote, 43 | pre, 44 | a, 45 | abbr, 46 | acronym, 47 | address, 48 | big, 49 | cite, 50 | code, 51 | del, 52 | dfn, 53 | em, 54 | img, 55 | ins, 56 | kbd, 57 | q, 58 | s, 59 | samp, 60 | small, 61 | strike, 62 | strong, 63 | sub, 64 | sup, 65 | tt, 66 | var, 67 | b, 68 | u, 69 | i, 70 | center, 71 | dl, 72 | dt, 73 | dd, 74 | ol, 75 | ul, 76 | li, 77 | fieldset, 78 | form, 79 | label, 80 | legend, 81 | table, 82 | caption, 83 | tbody, 84 | tfoot, 85 | thead, 86 | tr, 87 | th, 88 | td, 89 | article, 90 | aside, 91 | canvas, 92 | details, 93 | embed, 94 | figure, 95 | figcaption, 96 | footer, 97 | header, 98 | hgroup, 99 | menu, 100 | nav, 101 | output, 102 | ruby, 103 | section, 104 | summary, 105 | time, 106 | mark, 107 | audio, 108 | video { 109 | margin: 0; 110 | padding: 0; 111 | border: 0; 112 | vertical-align: baseline; 113 | } 114 | article, 115 | aside, 116 | details, 117 | figcaption, 118 | figure, 119 | footer, 120 | header, 121 | hgroup, 122 | menu, 123 | nav, 124 | section { 125 | display: block; 126 | } 127 | blockquote, 128 | q { 129 | quotes: none; 130 | } 131 | blockquote:before, 132 | blockquote:after, 133 | q:before, 134 | q:after { 135 | content: ''; 136 | } 137 | table { 138 | border-collapse: collapse; 139 | border-spacing: 0; 140 | } 141 | base, 142 | basefont, 143 | datalist, 144 | head, 145 | meta, 146 | script, 147 | style, 148 | title, 149 | noembed, 150 | param, 151 | template { 152 | display: none; 153 | } 154 | [tabindex="-1"]:focus { 155 | outline: none !important; 156 | } 157 | [hidden] { 158 | display: none !important; 159 | } 160 | ::-webkit-file-upload-button { 161 | font: inherit; 162 | -webkit-appearance: button; 163 | } 164 | [type="search"]::-webkit-search-cancel-button, 165 | [type="search"]::-webkit-search-decoration { 166 | -webkit-appearance: none; 167 | } 168 | [type="number"]::-webkit-inner-spin-button, 169 | [type="number"]::-webkit-outer-spin-button { 170 | height: auto; 171 | } 172 | input[type="date"], 173 | input[type="time"], 174 | input[type="datetime-local"], 175 | input[type="month"] { 176 | -webkit-appearance: listbox; 177 | } 178 | button::-moz-focus-inner, 179 | [type="button"]::-moz-focus-inner, 180 | [type="reset"]::-moz-focus-inner, 181 | [type="submit"]::-moz-focus-inner { 182 | padding: 0; 183 | border-style: none; 184 | } 185 | button, 186 | html [type="button"], 187 | [type="reset"], 188 | [type="submit"] { 189 | -webkit-appearance: button; 190 | } 191 | a, 192 | area, 193 | button, 194 | input, 195 | label, 196 | select, 197 | summary, 198 | textarea { 199 | touch-action: manipulation; 200 | } 201 | svg:not(:root) { 202 | overflow: hidden; 203 | } 204 | img { 205 | vertical-align: middle; 206 | border-style: none; 207 | max-width: 100%; 208 | } 209 | div { 210 | position: relative; 211 | } 212 | article > * + * { 213 | margin-top: 1em; 214 | } 215 | input, 216 | button, 217 | textarea, 218 | select { 219 | font: inherit; 220 | } 221 | @media (prefers-reduced-motion: reduce) { 222 | * { 223 | -webkit-animation-duration: 0.01ms !important; 224 | animation-duration: 0.01ms !important; 225 | -webkit-animation-iteration-count: 1 !important; 226 | animation-iteration-count: 1 !important; 227 | -webkit-transition-duration: 0.01ms !important; 228 | transition-duration: 0.01ms !important; 229 | scroll-behavior: auto !important; 230 | } 231 | } 232 | [disabled] { 233 | pointer-events: none!important; 234 | color: lightgray!important; 235 | } 236 | -------------------------------------------------------------------------------- /source/vendors/metro4/css/metro-third.min.css: -------------------------------------------------------------------------------- 1 | .sorting,.sorting_asc,.sorting_desc{position:relative;cursor:pointer}.sorting:after,.sorting_asc:after,.sorting_desc:after{position:absolute;content:"";width:1rem;height:1rem;left:100%;margin-left:-1.25rem;top:50%;margin-top:-.5rem;font-size:1rem;line-height:1;color:#1d1d1d}.sorting_asc{background-color:#ebebeb}.sorting_asc:after{content:"\2191"}.sorting_desc{background-color:#ebebeb}.sorting_desc:after{content:"\2193"}.dataTables_length label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.dataTables_length label select{margin:0 10px;width:100px}.dataTables_filter label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.dataTables_filter label input{width:200px;margin-left:10px}.dataTables_paginate{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style:none inside;padding:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.dataTables_paginate .next,.dataTables_paginate .previous,.dataTables_paginate span a{cursor:pointer;display:block;position:relative;padding:.5rem .75rem;line-height:1;font-size:1rem;text-decoration:none;background-color:#fff;color:#1d1d1d;border:1px solid #dfdfdf;margin:.25rem}.dataTables_paginate .next:hover,.dataTables_paginate .previous:hover,.dataTables_paginate span a:hover{background-color:rgba(29,29,29,.1)}.dataTables_paginate span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.dataTables_paginate .current{background-color:#e4e4e4}.dataTables_wrapper{margin-top:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-line-pack:center;align-content:center}.dataTables_filter,.dataTables_length{-webkit-box-flex:1;-ms-flex:1;flex:1}.dataTable,.dataTables_info,.dataTables_paginate{width:100%}.dataTables_info{line-height:42px;text-align:center}@media all and (min-width:576px){.dataTables_filter label{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.dataTables_length label{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}@media all and (min-width:992px){.dataTables_info,.dataTables_paginate{width:auto}.dataTables_info{text-align:left}.dataTables_paginate{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}}.select2-container .selection .select2-selection--single{height:36px;border:1px #d9d9d9 solid}.select2-container .selection .select2-selection--single .select2-selection__rendered{line-height:36px}.select2-container .selection .select2-selection--single .select2-selection__arrow{height:36px}.select2-container .selection .select2-selection--multiple{min-height:36px;border:1px #d9d9d9 solid}.select2-container .selection .select2-selection--multiple .select2-selection__rendered{display:block}.select2-container .selection .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{border-radius:0;background-color:#f8f8f8;font-size:14px;height:26px;line-height:26px}.select2-container .selection .select2-selection--multiple .select2-selection__rendered .select2-search--inline .select2-search__field{margin-top:0}.select2-container .select2-dropdown,.select2-container .select2-selection{border-radius:0}.select2 .selection .select2-selection--multiple,.select2 .selection .select2-selection--single{outline:0}.select2 .selection .select2-selection--multiple:hover,.select2 .selection .select2-selection--single:hover{border-color:silver}.select2 .selection .select2-selection--multiple.focused,.select2 .selection .select2-selection--multiple:focus,.select2 .selection .select2-selection--single.focused,.select2 .selection .select2-selection--single:focus{-webkit-box-shadow:0 0 0 3px rgba(228,228,228,.45);box-shadow:0 0 0 3px rgba(228,228,228,.45)}.select2 .selection .select2-selection--multiple.disabled,.select2 .selection .select2-selection--multiple:disabled,.select2 .selection .select2-selection--single.disabled,.select2 .selection .select2-selection--single:disabled{pointer-events:none;border-color:#ebebeb;background-color:#e9e9e9} -------------------------------------------------------------------------------- /source/css/index.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["index.less","ecommerce.less","mailbox.less","wizards.less"],"names":[],"mappings":"AAAA;EACI,yBAAA;;AAGJ,QACI;EACI,yBAAA;EACA,cAAA;EACA,eAAA;;AAJR,QAOI;EACI,iBAAA;EACA,yBAAA;;AATR,QAYI;EACI,YAAA;EACA,WAAA;;AAdR,QAiBI;EACI,yBAAA;;AAIQ,QALZ,cAGI,GACI,EACK;EACG,WAAA;EACA,mBAAA;;AAIR,QAXR,cAGI,GAQK,OACG;EACI,WAAA;EACA,mBAAA;;AA/BpB,QAiBI,cAmBI,iBAAgB;EACZ,oCAAA;;AArCZ,QAiBI,cAuBI;EACI,cAAA;EACA,mBAAA;EACA,eAAA;;AAMA,QAFR,aACI,QACK;EACG,WAAA;EACA,mBAAA;;AAnDhB,QA+CI,aAQI;EACI,aAAA;EACA,cAAA;;AAzDZ,QA+CI,aAaI,IAAG;EACC,qBAAA;EACA,sBAAA;;AA9DZ,QAkEI,cAAc;EACV,yBAAA;;AAIR;EACI,gBAAA;;AAGJ,QAAS,aAAa;AACtB,QAAQ,UAAW,aAAa;EAE5B,aAAA;;AAGJ,QAAQ,OAAQ,aAAa;AAAM,aAAa,KAAM,aAAa;EAC/D,aAAA;;AAGJ,mBAAsC;EAClC,QAAS,aAAa;IAClB,aAAA;;;AAIR,aACI;AADa,QACb;EACI,WAAA;EACA,YAAA;EACA,kBAAA;EACA,gBAAA;;AAIR,aACI;EACI,yBAAA;;AAFR,aAKI;EACI,gCAAA;;AAIR;EACI,aAAA;;AAGJ,mBAAqC;EACjC;IACI,eAAA;;;AAIR;EACI,gBAAA;EACA,SAAA;EACA,UAAA;;AAGJ;EACI,SAAA;EACA,UAAA;EACA,uBAAA;EACA,aAAA;EACA,mBAAA;EACA,8BAAA;EACA,mBAAA;;AAPJ,UASI;EACI,UAAA;EACA,kBAAA;EACA,cAAA;EACA,aAAA;EACA,eAAA;;AAdR,UASI,GAOI;EACI,kBAAA;EACA,eAAA;EACA,YAAA;EACA,gBAAA;;AAKZ,SACI;EACI,YAAA;EACA,YAAA;EACA,gBAAA;EACA,kBAAA;EACA,uBAAA;;AAIR;EACI,WAAA;EACA,cAAA;EACA,kBAAA;EACA,kBAAA;;AAGJ;EACI,cAAA;EACA,kBAAA;EACA,WAAA;EACA,wCAAA;;AAGJ;EACI,cAAA;EACA,kBAAA;EACA,SAAA;EACA,QAAA;EACA,YAAA;EACA,gBAAA;;AANJ,WAQI;EACI,YAAA;EACA,aAAA;EACA,gBAAA;EACA,kBAAA;EACA,uBAAA;;AAbR,WAQI,QAOI;EACI,WAAA;EACA,YAAA;;AAKZ,mBAAoC;EAChC;IACI,YAAA;;EAGJ;IACI,YAAA;;;AC5MR;EACI,gBAAA;EACA,aAAA;EACA,aAAA;EACA,mBAAA;EACA,2BAAA;EACA,uBAAA;EACA,kBAAA;;AAGJ,aACI;EACI,kBAAA;EACA,aAAA;EACA,iBAAA;EACA,YAAA;EACA,cAAA;EACA,4BAAA;EACA,gBAAA;;AARR,aAWI,mBAEI;AAbR,aAWI,mBAEoB;AAbxB,aAWI,mBAEoC;AAbxC,aAWI,mBAEoD;EAC5C,cAAA;EACA,kBAAA;;AAfZ,aAWI,mBAOI;EACI,WAAA;EACA,YAAA;EACA,gBAAA;EACA,QAAA;;AAtBZ,aAWI,mBAOI,eAMI;EACI,WAAA;EACA,YAAA;EACA,+BAAA;;AAGJ,aAnBR,mBAOI,eAYK,MACG;EACI,WAAW,UAAX;EACA,+BAAA;;AAjCpB,aAWI,mBA0BI;EACI,QAAA;EACA,eAAA;EACA,iBAAA;;AAxCZ,aAWI,mBA+BI;EACI,QAAA;EACA,iBAAA;EACA,iBAAA;EACA,eAAA;;AA9CZ,aAWI,mBA+BI,eAMI;EACI,6BAAA;EACA,gBAAA;EACA,eAAA;;AAnDhB,aAWI,mBA2CI;EACI,aAAA;EACA,QAAA;;AAxDZ,aAWI,mBA+CI;EACI,gBAAA;EACA,QAAA;;AA5DZ,aAWI,mBAmDI;AA9DR,aAWI,mBAmDY;EACJ,aAAA;;AA/DZ,aAWI,mBAuDI;EACI,kBAAA;EACA,SAAA;EACA,0CAAA;EACA,oBAAA;;AAKZ,mBAAqC;EACjC,aAAa,IAAI,eACb;IACI,2BAAA;;;AAIZ,mBAAqC;EACjC,aAAa,IAAI,eACb;IACI,6BAAA;;;AAIZ,mBAAsC;EAClC,aAAa,IAAI,eACb;IACI,2BAAA;;;AAMR,aAAC,aAEG;EACI,cAAA;EACA,aAAA;;AAJR,aAAC,aAOG;EACI,WAAA;EACA,YAAA;;AATR,aAAC,aAYG;AAZJ,aAAC,aAYmB;AAZpB,aAAC,aAYmC;AAZpC,aAAC,aAYkD;EAC3C,kBAAA;;AAbR,aAAC,aAgBG;EACI,gBAAA;EACA,mBAAA;;AAlBR,aAAC,aAqBG;EACI,cAAA;EACA,gBAAA;EACA,mBAAA;;AAxBR,aAAC,aA2BG;EACI,6BAAA;EACA,iBAAA;;AAKZ;EACI,cAAA;EACA,kBAAA;EACA,uBAAA;EACA,UAAA;EACA,SAAA;;AAGJ,aACI;EACI,WAAA;EACA,YAAA;EACA,gBAAA;;AAJR,aACI,eAKI;EACI,WAAA;EACA,YAAA;;AARZ,aAYI;EACI,gBAAA;EACA,eAAA;;AAdR,aAiBI;EACI,cAAA;;AAlBR,aAiBI,eAEI;EACI,6BAAA;EACA,gBAAA;EACA,eAAA;;AAtBZ,aAiBI,eAOI;EACI,gBAAA;EACA,eAAA;;AA1BZ,aAiBI,eAWI,WAAW;EACP,UAAA;;AA7BZ,aAiCI;EACI,aAAA;EACA,qBAAA;EACA,mBAAA;EACA,aAAA;;AAEA,aANJ,gBAMM;EACE,WAAA;;AAGJ,aAVJ,gBAUM;EACE,eAAA;;AAMA,aAFR,aACI,OAAM,OACD;EACG,SAAS,GAAT;EACA,YAAA;;AApDhB,aAyDI,YACI,OAAM;EACF,6BAAA;EACA,qBAAA;EACA,WAAA;;AA7DZ,aAiEI;EACI,gBAAA;EACA,aAAA;EACA,mBAAA;EACA,mBAAA;;AArER,aAiEI,iBAMI;EACI,YAAA;EACA,iBAAA;;AAzEZ,aA6EI;EACI,UAAA;EACA,aAAA;EACA,uBAAA;EACA,aAAA;EACA,mBAAA;;AAlFR,aA6EI,YAOI;EACI,cAAA;EACA,sBAAA;EACA,YAAA;EACA,gBAAA;EACA,WAAA;EACA,6BAAA;EACA,eAAA;;AA3FZ,aA6EI,YAOI,GASI;EACI,WAAA;EACA,YAAA;;AAGJ,aArBR,YAOI,GAcK;EACG,iBAAA;;AAMhB;EACI,uBAAA;EACA,aAAA;EACA,gBAAA;;AAGJ;EACI,SAAA;EACA,UAAA;EACA,uBAAA;EACA,cAAA;EACA,kBAAA;;AAEA,YAAE;EACE,cAAA;EAEA,eAAA;EACA,aAAA;EACA,aAAA;;AAGJ,YAAE,KAAK;EACH,6BAAA;;AAIR;EACI,YAAA;EACA,aAAA;EACA,gBAAA;EACA,WAAA;EACA,WAAA;;AALJ,eAOI;EACI,WAAA;EACA,YAAA;;ACrSR;EACI,cAAA;EACA,kBAAA;EACA,uBAAA;;AAGJ,cACI;EACI,kBAAA;EACA,SAAA;EACA,UAAA;;AAKA,cAFJ,GAEK;EACG,0BAAA;;AAGJ,cANJ,GAMK;EACG,yBAAA;;AAdZ,cAOI,GAUI;EACI,mCAAA;EACA,WAAA;EACA,YAAA;EACA,iBAAA;;AAMZ,YACI;AADJ,YACiB;AADjB,YAC6B;EACrB,WAAA;;AAFR,YAII;EACI,YAAA;;AALR,YAOI;EACI,YAAA;;AARR,YAUI;EACI,YAAA;;AAIR,gBACI;AADJ,gBACiB;AADjB,gBAC8B;EACtB,eAAA;;AAFR,gBAII;EACI,eAAA;;AAIR;EACI,aAAA;EACA,mBAAA;;AAGJ;EACI,YAAA;EACA,aAAA;EACA,aAAA;EACA,iBAAA;EACA,yBAAA;EACA,WAAA;;AANJ,iBAQI;EACI,WAAA;EACA,aAAA;EACA,gBAAA;EACA,aAAA;EACA,uBAAA;EACA,mBAAA;;AAdR,iBAQI,SAQI;EACI,WAAA;EACA,YAAA;EACA,gBAAA;;AAnBZ,iBAQI,SAcI;EACI,eAAA;;AAvBZ,iBA2BI;EACI,YAAA;EACA,gBAAA;EACA,yBAAA;EACA,eAAA;EACA,YAAA;EACA,gBAAA;;AAEA,iBARJ,MAQM,IAAG,IAAI;EACL,kBAAA;;AClGZ;EACI,YAAA;EACA,cAAA;EACA,kBAAA;EACA,WAAA;;AAEJ,gBAAkC;EAC9B;IACI,YAAA;IACA,mBAAA;;;AAGR,gBAAkC;EAC9B;IACI,YAAA;IACA,mBAAA","file":"index.css"} -------------------------------------------------------------------------------- /source/vendors/metro4/css/third-party/datatables.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Metro 4 Components Library v4.2.46 (https://metroui.org.ua) 3 | * Copyright 2012-2019 Sergey Pimenov 4 | * Licensed under MIT 5 | */ 6 | .sorting, 7 | .sorting_asc, 8 | .sorting_desc { 9 | position: relative; 10 | cursor: pointer; 11 | } 12 | .sorting:after, 13 | .sorting_asc:after, 14 | .sorting_desc:after { 15 | position: absolute; 16 | content: ""; 17 | width: 1rem; 18 | height: 1rem; 19 | left: 100%; 20 | margin-left: -1.25rem; 21 | top: 50%; 22 | margin-top: -0.5rem; 23 | font-size: 1rem; 24 | line-height: 1; 25 | color: #1d1d1d; 26 | } 27 | .sorting_asc { 28 | background-color: #ebebeb; 29 | } 30 | .sorting_asc:after { 31 | content: "\2191"; 32 | } 33 | .sorting_desc { 34 | background-color: #ebebeb; 35 | } 36 | .sorting_desc:after { 37 | content: "\2193"; 38 | } 39 | .dataTables_length label { 40 | display: -webkit-box; 41 | display: -ms-flexbox; 42 | display: flex; 43 | -webkit-box-orient: horizontal; 44 | -webkit-box-direction: normal; 45 | -ms-flex-flow: row nowrap; 46 | flex-flow: row nowrap; 47 | -webkit-box-align: center; 48 | -ms-flex-align: center; 49 | align-items: center; 50 | } 51 | .dataTables_length label select { 52 | margin: 0 10px; 53 | width: 100px; 54 | } 55 | .dataTables_filter label { 56 | display: -webkit-box; 57 | display: -ms-flexbox; 58 | display: flex; 59 | -webkit-box-orient: horizontal; 60 | -webkit-box-direction: normal; 61 | -ms-flex-flow: row nowrap; 62 | flex-flow: row nowrap; 63 | -webkit-box-align: center; 64 | -ms-flex-align: center; 65 | align-items: center; 66 | } 67 | .dataTables_filter label input { 68 | width: 200px; 69 | margin-left: 10px; 70 | } 71 | .dataTables_paginate { 72 | display: -webkit-box; 73 | display: -ms-flexbox; 74 | display: flex; 75 | -ms-flex-wrap: wrap; 76 | flex-wrap: wrap; 77 | list-style: none inside; 78 | padding: 0; 79 | -webkit-user-select: none; 80 | -moz-user-select: none; 81 | -ms-user-select: none; 82 | user-select: none; 83 | -webkit-box-pack: center; 84 | -ms-flex-pack: center; 85 | justify-content: center; 86 | } 87 | .dataTables_paginate .previous, 88 | .dataTables_paginate .next, 89 | .dataTables_paginate span a { 90 | cursor: pointer; 91 | display: block; 92 | position: relative; 93 | padding: 0.5rem 0.75rem; 94 | line-height: 1; 95 | font-size: 1rem; 96 | text-decoration: none; 97 | background-color: #ffffff; 98 | color: #1d1d1d; 99 | border: 1px solid #dfdfdf; 100 | margin: 0.25rem; 101 | } 102 | .dataTables_paginate .previous:hover, 103 | .dataTables_paginate .next:hover, 104 | .dataTables_paginate span a:hover { 105 | background-color: rgba(29, 29, 29, 0.1); 106 | } 107 | .dataTables_paginate span { 108 | display: -webkit-box; 109 | display: -ms-flexbox; 110 | display: flex; 111 | -webkit-box-orient: horizontal; 112 | -webkit-box-direction: normal; 113 | -ms-flex-flow: row wrap; 114 | flex-flow: row wrap; 115 | } 116 | .dataTables_paginate .current { 117 | background-color: #e4e4e4; 118 | } 119 | .dataTables_wrapper { 120 | margin-top: 10px; 121 | display: -webkit-box; 122 | display: -ms-flexbox; 123 | display: flex; 124 | -webkit-box-orient: horizontal; 125 | -webkit-box-direction: normal; 126 | -ms-flex-flow: row wrap; 127 | flex-flow: row wrap; 128 | -webkit-box-pack: justify; 129 | -ms-flex-pack: justify; 130 | justify-content: space-between; 131 | -ms-flex-line-pack: center; 132 | align-content: center; 133 | } 134 | .dataTables_length, 135 | .dataTables_filter { 136 | -webkit-box-flex: 1; 137 | -ms-flex: 1; 138 | flex: 1; 139 | } 140 | .dataTables_paginate, 141 | .dataTables_info, 142 | .dataTable { 143 | width: 100%; 144 | } 145 | .dataTables_info { 146 | line-height: 42px; 147 | text-align: center; 148 | } 149 | @media all and (min-width: 576px) { 150 | .dataTables_filter label { 151 | -webkit-box-pack: end; 152 | -ms-flex-pack: end; 153 | justify-content: flex-end; 154 | } 155 | .dataTables_length label { 156 | -webkit-box-pack: start; 157 | -ms-flex-pack: start; 158 | justify-content: flex-start; 159 | } 160 | } 161 | @media all and (min-width: 992px) { 162 | .dataTables_paginate, 163 | .dataTables_info { 164 | width: auto; 165 | } 166 | .dataTables_info { 167 | text-align: left; 168 | } 169 | .dataTables_paginate { 170 | -webkit-box-pack: end; 171 | -ms-flex-pack: end; 172 | justify-content: flex-end; 173 | } 174 | } 175 | -------------------------------------------------------------------------------- /source/vendors/metro4/css/metro-rtl.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Metro 4 Components Library v4.3.5 (https://metroui.org.ua) 3 | * Copyright 2012-2019 Sergey Pimenov 4 | * Built at 24/12/2019 18:04:54 5 | * Licensed under MIT 6 | */ 7 | .accordion.rtl.material > .frame > .heading, 8 | .accordion[dir=rtl].material > .frame > .heading { 9 | padding: 16px 16px 16px 42px; 10 | } 11 | .accordion.rtl.material > .frame > .heading::after, 12 | .accordion[dir=rtl].material > .frame > .heading::after { 13 | left: 16px; 14 | right: auto; 15 | top: 8px; 16 | -webkit-transform: rotate(180deg); 17 | -ms-transform: rotate(180deg); 18 | transform: rotate(180deg); 19 | } 20 | .accordion.rtl.material > .frame.active .heading::after, 21 | .accordion[dir=rtl].material > .frame.active .heading::after { 22 | -webkit-transform: rotate(270deg); 23 | -ms-transform: rotate(270deg); 24 | transform: rotate(270deg); 25 | } 26 | input.rtl, 27 | input[dir=rtl] { 28 | direction: rtl; 29 | } 30 | .input[dir=rtl], 31 | .input.rtl { 32 | -webkit-box-orient: horizontal; 33 | -webkit-box-direction: reverse; 34 | -ms-flex-flow: row-reverse nowrap; 35 | flex-flow: row-reverse nowrap; 36 | } 37 | .input[dir=rtl] input, 38 | .input.rtl input { 39 | -webkit-box-ordinal-group: 4; 40 | -ms-flex-order: 3; 41 | order: 3; 42 | direction: rtl; 43 | } 44 | .input[dir=rtl] .button-group, 45 | .input.rtl .button-group { 46 | -webkit-box-ordinal-group: 3; 47 | -ms-flex-order: 2; 48 | order: 2; 49 | } 50 | .input[dir=rtl] .prepend, 51 | .input.rtl .prepend { 52 | -webkit-box-ordinal-group: 5; 53 | -ms-flex-order: 4; 54 | order: 4; 55 | } 56 | .input[dir=rtl] .append, 57 | .input.rtl .append { 58 | -webkit-box-ordinal-group: 2; 59 | -ms-flex-order: 1; 60 | order: 1; 61 | } 62 | .file[dir=rtl] .append, 63 | .file.rtl .append { 64 | -webkit-box-ordinal-group: 2; 65 | -ms-flex-order: 1; 66 | order: 1; 67 | } 68 | .file[dir=rtl] .prepend, 69 | .file.rtl .prepend { 70 | -webkit-box-ordinal-group: 5; 71 | -ms-flex-order: 4; 72 | order: 4; 73 | } 74 | .file[dir=rtl] .caption, 75 | .file.rtl .caption { 76 | -webkit-box-ordinal-group: 4; 77 | -ms-flex-order: 3; 78 | order: 3; 79 | text-align: right; 80 | } 81 | .file[dir=rtl] button, 82 | .file.rtl button { 83 | -webkit-box-ordinal-group: 3; 84 | -ms-flex-order: 2; 85 | order: 2; 86 | margin-left: 0; 87 | margin-right: auto; 88 | } 89 | .textarea[dir=rtl], 90 | .textarea.rtl { 91 | -webkit-box-orient: horizontal; 92 | -webkit-box-direction: reverse; 93 | -ms-flex-direction: row-reverse; 94 | flex-direction: row-reverse; 95 | } 96 | .textarea[dir=rtl] .prepend, 97 | .textarea.rtl .prepend { 98 | -webkit-box-ordinal-group: 4; 99 | -ms-flex-order: 3; 100 | order: 3; 101 | } 102 | .textarea[dir=rtl] .append, 103 | .textarea.rtl .append { 104 | -webkit-box-ordinal-group: 2; 105 | -ms-flex-order: 1; 106 | order: 1; 107 | } 108 | .textarea[dir=rtl] textarea, 109 | .textarea.rtl textarea { 110 | -webkit-box-ordinal-group: 3; 111 | -ms-flex-order: 2; 112 | order: 2; 113 | } 114 | .textarea[dir=rtl] .input-clear-button, 115 | .textarea.rtl .input-clear-button { 116 | right: auto; 117 | left: 0.25rem; 118 | } 119 | .textarea[dir=rtl] .input-clear-button ~ textarea, 120 | .textarea.rtl .input-clear-button ~ textarea { 121 | padding-left: 48px; 122 | padding-right: 0.75rem; 123 | } 124 | .select[dir=rtl], 125 | .select.rtl { 126 | -webkit-box-orient: horizontal; 127 | -webkit-box-direction: reverse; 128 | -ms-flex-direction: row-reverse; 129 | flex-direction: row-reverse; 130 | } 131 | .select[dir=rtl] .select-input, 132 | .select.rtl .select-input { 133 | -webkit-box-ordinal-group: 4; 134 | -ms-flex-order: 3; 135 | order: 3; 136 | } 137 | .select[dir=rtl] .prepend, 138 | .select.rtl .prepend { 139 | -webkit-box-ordinal-group: 5; 140 | -ms-flex-order: 4; 141 | order: 4; 142 | } 143 | .select[dir=rtl] .append, 144 | .select.rtl .append { 145 | -webkit-box-ordinal-group: 2; 146 | -ms-flex-order: 1; 147 | order: 1; 148 | } 149 | .select[dir=rtl] .button-group, 150 | .select.rtl .button-group { 151 | -webkit-box-ordinal-group: 3; 152 | -ms-flex-order: 2; 153 | order: 2; 154 | } 155 | .select[dir=rtl].dropdown-toggle, 156 | .select.rtl.dropdown-toggle { 157 | padding-right: 0!important; 158 | padding-left: 0.9rem; 159 | } 160 | .select[dir=rtl].dropdown-toggle::before, 161 | .select.rtl.dropdown-toggle::before { 162 | margin-left: 0.9rem; 163 | left: 0; 164 | } 165 | -------------------------------------------------------------------------------- /source/css/index.less: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #ECF0F5; 3 | } 4 | 5 | .navview { 6 | .navview-pane { 7 | background-color: #222D32; 8 | color: #b8c7ce; 9 | font-size: 14px; 10 | } 11 | 12 | .navview-content { 13 | padding-top: 52px; 14 | background-color: #ECF0F5; 15 | } 16 | 17 | .pull-button { 18 | height: 52px; 19 | width: 52px; 20 | } 21 | 22 | .navview-menu { 23 | background-color: #222D32; 24 | 25 | li { 26 | a { 27 | &:hover { 28 | color: #fff; 29 | background: #1e282c; 30 | } 31 | } 32 | 33 | &.active { 34 | a { 35 | color: #fff; 36 | background: #1e282c; 37 | } 38 | } 39 | } 40 | 41 | .dropdown-toggle::after { 42 | border-bottom-color: white!important; 43 | } 44 | 45 | .item-header { 46 | color: #4b646f; 47 | background: #1a2226; 48 | font-size: 12px; 49 | } 50 | } 51 | 52 | .suggest-box { 53 | .holder { 54 | &:hover { 55 | color: #fff; 56 | background: #1e282c; 57 | } 58 | } 59 | 60 | .data-box { 61 | display: flex; 62 | padding: 0 8px; 63 | } 64 | 65 | img.holder { 66 | width: 32px!important; 67 | height: auto!important; 68 | } 69 | } 70 | 71 | .navview-menu .navview-menu { 72 | background-color: darken(#1E282C, 2%); 73 | } 74 | } 75 | 76 | .avatar-title { 77 | line-height: 1.2; 78 | } 79 | 80 | .navview .pull-button + h2, 81 | .navview.compacted .pull-button + h2 82 | { 83 | display: none; 84 | } 85 | 86 | .navview.expand .pull-button + h2, .navview-pane.open .pull-button + h2 { 87 | display: flex; 88 | } 89 | 90 | @media screen and (min-width: 1200px) { 91 | .navview .pull-button + h2 { 92 | display: flex; 93 | } 94 | } 95 | 96 | .navview-pane , .app-bar { 97 | .avatar { 98 | width: 32px; 99 | height: 32px; 100 | border-radius: 50%; 101 | overflow: hidden; 102 | } 103 | } 104 | 105 | .navview-pane { 106 | ::-webkit-scrollbar-track { 107 | background-color: #4b646f!important; 108 | } 109 | 110 | * { 111 | scrollbar-color: #1ba1e2 #4b646f!important; 112 | } 113 | } 114 | 115 | .app-bar-name { 116 | display: none; 117 | } 118 | 119 | @media screen and (min-width: 768px) { 120 | .app-bar-name { 121 | display: inline; 122 | } 123 | } 124 | 125 | .dashboard-section-title { 126 | line-height: 1.2; 127 | margin: 0; 128 | padding: 0; 129 | } 130 | 131 | .user-list { 132 | margin: 0; 133 | padding: 0; 134 | list-style: none inside; 135 | display: flex; 136 | flex-flow: row wrap; 137 | justify-content: space-between; 138 | align-items: center; 139 | 140 | li { 141 | width: 25%; 142 | text-align: center; 143 | flex-shrink: 0; 144 | padding: 10px; 145 | font-size: 12px; 146 | 147 | .avatar { 148 | border-radius: 50%; 149 | max-width: 100%; 150 | height: auto; 151 | overflow: hidden; 152 | } 153 | } 154 | } 155 | 156 | .lock-box { 157 | .avatar { 158 | width: 128px; 159 | height: auto; 160 | overflow: hidden; 161 | border-radius: 50%; 162 | border: 2px solid white; 163 | } 164 | } 165 | 166 | .page-error-box { 167 | width: 100%; 168 | display: block; 169 | position: relative; 170 | text-align: center; 171 | } 172 | 173 | .login-box { 174 | display: block; 175 | position: relative; 176 | width: 100%; 177 | box-shadow: 0 1px 1px rgba(0,0,0,0.1); 178 | } 179 | 180 | .user-block { 181 | display: block; 182 | position: absolute; 183 | top: 100%; 184 | right: 0; 185 | width: 280px; 186 | line-height: 1.2; 187 | 188 | .avatar { 189 | width: 128px; 190 | height: 120px; 191 | overflow: hidden; 192 | border-radius: 50%; 193 | border: 2px solid white; 194 | 195 | img { 196 | width: 100%; 197 | height: auto; 198 | } 199 | } 200 | } 201 | 202 | @media screen and (min-width: 640px){ 203 | .login-box { 204 | width: 360px; 205 | } 206 | 207 | .page-error-box { 208 | width: 480px; 209 | } 210 | } 211 | 212 | @import (once) "ecommerce"; 213 | @import (once) "mailbox"; 214 | @import (once) "wizards"; 215 | 216 | -------------------------------------------------------------------------------- /source/forms-layouts.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Forms layouts

4 |
5 | 6 |
7 | 12 |
13 |
14 | 15 |
16 |
17 |
18 |
19 |

Vertical form and form group

20 |
21 |
22 | 23 | 24 |
25 |
26 | 27 | 28 |
29 |
30 | 31 | 32 | 33 |
34 |
35 |
36 |
37 |
38 |
39 |

Grid layout

40 |
41 |
42 |
43 | 44 |
45 |
46 | 47 |
48 |
49 |
50 |
51 |
52 |
53 | 54 |
55 |
56 |
57 |

Inline form

58 |
59 | 60 | 61 | 62 | 63 |
64 |
65 |
66 |
67 | 68 |
69 |
70 |
71 |

Horizontal form

72 |
73 |
74 | 75 |
76 | 77 |
78 |
79 |
80 | 81 |
82 | 83 |
84 |
85 |
86 | 87 |
88 | 90 | 92 | 94 |
95 |
96 |
97 | 98 |
99 | 101 |
102 |
103 |
104 |
105 | 106 |
107 |
108 |
109 |
110 |
111 |
112 |
--------------------------------------------------------------------------------