├── README.md ├── css └── styles.css ├── img ├── close_button.png ├── close_button_hover.png ├── filemanager.png ├── folder.png ├── fullscreen-exit.png ├── fullscreen.png ├── gantt.png ├── gantt_mini_icon.png ├── hide_button.png ├── hide_button_hover.png ├── icon-bg-selected.png ├── icon-bg.png ├── icon-border-bg.png ├── icon_bg_full.png ├── menu_bg.png ├── news.png ├── panel_bg.png ├── photos.png ├── resize_button.png ├── resize_button_hover.png ├── scheduler.png ├── signout.png ├── sports.png ├── start.png ├── start_hover_bg.png ├── user_logo.png ├── video.png ├── wallpaper.jpg └── window-icon.png ├── index.html ├── js ├── app.js ├── data.js ├── views │ ├── gantt.js │ ├── scheduler.js │ ├── winmenu.css │ └── winmenu.js └── wins.js └── libs ├── gantt ├── dhtmlxgantt.css ├── dhtmlxgantt.js ├── ext │ ├── dhtmlxgantt_csp.js │ ├── dhtmlxgantt_fullscreen.js │ ├── dhtmlxgantt_marker.js │ ├── dhtmlxgantt_multiselect.js │ ├── dhtmlxgantt_quick_info.js │ └── dhtmlxgantt_tooltip.js ├── locale │ ├── locale.js │ ├── locale_ar.js │ ├── locale_be.js │ ├── locale_ca.js │ ├── locale_cn.js │ ├── locale_cs.js │ ├── locale_da.js │ ├── locale_de.js │ ├── locale_el.js │ ├── locale_es.js │ ├── locale_fi.js │ ├── locale_fr.js │ ├── locale_he.js │ ├── locale_hu.js │ ├── locale_id.js │ ├── locale_it.js │ ├── locale_jp.js │ ├── locale_kr.js │ ├── locale_nb.js │ ├── locale_nl.js │ ├── locale_no.js │ ├── locale_pl.js │ ├── locale_pt.js │ ├── locale_ro.js │ ├── locale_ru.js │ ├── locale_si.js │ ├── locale_sk.js │ ├── locale_sv.js │ ├── locale_tr.js │ └── locale_ua.js └── skins │ ├── dhtmlxgantt_broadway.css │ ├── dhtmlxgantt_meadow.css │ ├── dhtmlxgantt_skyblue.css │ └── dhtmlxgantt_terrace.css └── scheduler ├── dhtmlxscheduler.css ├── dhtmlxscheduler.js ├── dhtmlxscheduler_classic.css ├── dhtmlxscheduler_flat.css ├── dhtmlxscheduler_glossy.css ├── ext ├── dhtmlxscheduler_active_links.js ├── dhtmlxscheduler_agenda_view.js ├── dhtmlxscheduler_all_timed.js ├── dhtmlxscheduler_collision.js ├── dhtmlxscheduler_container_autoresize.js ├── dhtmlxscheduler_cookie.js ├── dhtmlxscheduler_editors.js ├── dhtmlxscheduler_expand.js ├── dhtmlxscheduler_html_templates.js ├── dhtmlxscheduler_key_nav.js ├── dhtmlxscheduler_layer.js ├── dhtmlxscheduler_limit.js ├── dhtmlxscheduler_map_view.js ├── dhtmlxscheduler_minical.js ├── dhtmlxscheduler_monthheight.js ├── dhtmlxscheduler_multiselect.js ├── dhtmlxscheduler_multisource.js ├── dhtmlxscheduler_mvc.js ├── dhtmlxscheduler_offline.js ├── dhtmlxscheduler_outerdrag.js ├── dhtmlxscheduler_pdf.js ├── dhtmlxscheduler_quick_info.js ├── dhtmlxscheduler_readonly.js ├── dhtmlxscheduler_recurring.js ├── dhtmlxscheduler_serialize.js ├── dhtmlxscheduler_tooltip.js ├── dhtmlxscheduler_url.js ├── dhtmlxscheduler_wp.js └── dhtmlxscheduler_year_view.js ├── imgs ├── but_repeat.gif ├── buttons.png ├── calendar.gif ├── clock_big.gif ├── clock_small.gif ├── collapse_expand_icon.gif ├── controls.gif ├── databg.png ├── databg_now.png ├── export_ical.png ├── export_pdf.png ├── icon.png ├── images.png ├── loading.gif └── resize_dots.png ├── imgs_dhx_terrace ├── arrow_left.png ├── arrow_right.png ├── but_repeat.gif ├── calendar.gif ├── clock_big.gif ├── clock_small.gif ├── close_icon.png ├── collapse_expand_icon.gif ├── controls.png ├── databg.png ├── databg_now.png ├── export_ical.png ├── export_pdf.png ├── resize_dots.png └── resizing.png ├── imgs_flat ├── agenda_bg.gif ├── arrow_left.png ├── arrow_right.png ├── but_repeat.gif ├── calendar.gif ├── clock.png ├── clock_big.gif ├── clock_small.gif ├── close_icon.png ├── collapse_expand_icon.gif ├── controls.png ├── databg.png ├── databg_now.png ├── export_ical.png ├── export_pdf.png ├── resize_dots.png └── resizing.png ├── imgs_glossy ├── blue_tab.png ├── blue_tab_wide.png ├── but_repeat.gif ├── buttons.gif ├── calendar.gif ├── clock_big.png ├── clock_small.png ├── collapse_expand_icon.gif ├── controlls5.png ├── databg.png ├── databg_now.png ├── event-bg.png ├── export_ical.png ├── export_pdf.png ├── icon.png ├── left-separator.png ├── left-time-bg.png ├── lightbox.png ├── loading.gif ├── move.png ├── multi-days-bg.png ├── second-top-days-bg.png ├── top-days-bg.png ├── top-separator.gif ├── white_tab.png └── white_tab_wide.png └── locale ├── locale_ar.js ├── locale_be.js ├── locale_ca.js ├── locale_cn.js ├── locale_cs.js ├── locale_da.js ├── locale_de.js ├── locale_el.js ├── locale_en.js ├── locale_es.js ├── locale_fi.js ├── locale_fr.js ├── locale_he.js ├── locale_hu.js ├── locale_id.js ├── locale_it.js ├── locale_jp.js ├── locale_nb.js ├── locale_nl.js ├── locale_no.js ├── locale_pl.js ├── locale_pt.js ├── locale_ro.js ├── locale_ru.js ├── locale_si.js ├── locale_sk.js ├── locale_sv.js ├── locale_tr.js ├── locale_ua.js └── recurring ├── locale_recurring_be.js ├── locale_recurring_cn.js ├── locale_recurring_cs.js ├── locale_recurring_da.js ├── locale_recurring_de.js ├── locale_recurring_el.js ├── locale_recurring_en.js ├── locale_recurring_es.js ├── locale_recurring_fi.js ├── locale_recurring_fr.js ├── locale_recurring_it.js ├── locale_recurring_nb.js ├── locale_recurring_nl.js ├── locale_recurring_pl.js ├── locale_recurring_pt.js ├── locale_recurring_ro.js ├── locale_recurring_ru.js ├── locale_recurring_sk.js ├── locale_recurring_sv.js ├── locale_recurring_ua.js ├── repeat_template_be.html ├── repeat_template_cn.html ├── repeat_template_de.html ├── repeat_template_el.html ├── repeat_template_en.html ├── repeat_template_es.html ├── repeat_template_fr.html ├── repeat_template_it.html ├── repeat_template_nl.html ├── repeat_template_ro.html ├── repeat_template_ru.html └── repeat_template_sk.html /README.md: -------------------------------------------------------------------------------- 1 | # Web Desktop Demo 2 | 3 | [![Join the chat at https://gitter.im/webix-hub/webix](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/webix-hub/webix) 4 | 5 | You can check the live demo at http://webix.com/demos/web-desktop/ 6 | 7 | Demo is based on [Webix UI](http://webix.com) widgets. 8 | 9 | 10 | ### License 11 | 12 | The demo itself is available under MIT license. 13 | 14 | Complex widgets inside of demo, available under GPL license 15 | 16 | - [Gantt](http://dhtmlx.com/docs/products/dhtmlxGantt/) 17 | - [Scheduler](http://dhtmlx.com/docs/products/dhtmlxScheduler/) 18 | - [Filemanager](http://webix.com/filemanager/) 19 | 20 | If you need the same or a similar project for commercial usage, you can contact Webix team [by email](mailto:info@webix.com) 21 | -------------------------------------------------------------------------------- /img/close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/close_button.png -------------------------------------------------------------------------------- /img/close_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/close_button_hover.png -------------------------------------------------------------------------------- /img/filemanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/filemanager.png -------------------------------------------------------------------------------- /img/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/folder.png -------------------------------------------------------------------------------- /img/fullscreen-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/fullscreen-exit.png -------------------------------------------------------------------------------- /img/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/fullscreen.png -------------------------------------------------------------------------------- /img/gantt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/gantt.png -------------------------------------------------------------------------------- /img/gantt_mini_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/gantt_mini_icon.png -------------------------------------------------------------------------------- /img/hide_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/hide_button.png -------------------------------------------------------------------------------- /img/hide_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/hide_button_hover.png -------------------------------------------------------------------------------- /img/icon-bg-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/icon-bg-selected.png -------------------------------------------------------------------------------- /img/icon-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/icon-bg.png -------------------------------------------------------------------------------- /img/icon-border-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/icon-border-bg.png -------------------------------------------------------------------------------- /img/icon_bg_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/icon_bg_full.png -------------------------------------------------------------------------------- /img/menu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/menu_bg.png -------------------------------------------------------------------------------- /img/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/news.png -------------------------------------------------------------------------------- /img/panel_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/panel_bg.png -------------------------------------------------------------------------------- /img/photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/photos.png -------------------------------------------------------------------------------- /img/resize_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/resize_button.png -------------------------------------------------------------------------------- /img/resize_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/resize_button_hover.png -------------------------------------------------------------------------------- /img/scheduler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/scheduler.png -------------------------------------------------------------------------------- /img/signout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/signout.png -------------------------------------------------------------------------------- /img/sports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/sports.png -------------------------------------------------------------------------------- /img/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/start.png -------------------------------------------------------------------------------- /img/start_hover_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/start_hover_bg.png -------------------------------------------------------------------------------- /img/user_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/user_logo.png -------------------------------------------------------------------------------- /img/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/video.png -------------------------------------------------------------------------------- /img/wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/wallpaper.jpg -------------------------------------------------------------------------------- /img/window-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/img/window-icon.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | Webix Desktop App 22 | 23 | 24 | 25 | 28 | 29 | -------------------------------------------------------------------------------- /js/views/gantt.js: -------------------------------------------------------------------------------- 1 | webix.protoUI({ 2 | name:"dhx-gantt", 3 | $init:function(){ 4 | webix.delay(webix.bind(this._render_once, this)); 5 | }, 6 | $setSize: function(x,y){ 7 | if(webix.ui.view.prototype.$setSize.call(this,x,y)){ 8 | if(window.gantt) 9 | gantt.render(); 10 | } 11 | }, 12 | _render_once:function(){ 13 | webix.require("/web-desktop/libs/gantt/dhtmlxgantt.css"); 14 | webix.require("/web-desktop/libs/gantt/dhtmlxgantt.js", function(){ 15 | if (this.config.init) 16 | this.config.init.call(this); 17 | 18 | gantt.init(this.$view); 19 | if (this.config.ready) 20 | this.config.ready.call(this); 21 | 22 | }, this); 23 | } 24 | }, webix.ui.view); 25 | -------------------------------------------------------------------------------- /js/views/scheduler.js: -------------------------------------------------------------------------------- 1 | webix.protoUI({ 2 | name:"dhx-scheduler", 3 | defaults:{ 4 | tabs:["day", "week", "month"] 5 | }, 6 | getScheduler:function(){ 7 | return this._scheduler; 8 | }, 9 | $setSize: function(x,y){ 10 | if(webix.ui.view.prototype.$setSize.call(this,x,y)){ 11 | if(this._scheduler) 12 | this._scheduler.setCurrentView(); 13 | } 14 | }, 15 | $init:function(config){ 16 | this.$ready.push(function(){ 17 | var tabs = this.config.tabs; 18 | 19 | var html = ["
 
 
"]; 20 | if (tabs) 21 | for (var i=0; i
"); 26 | html.push("
"); 27 | 28 | this.$view.innerHTML = html.join(""); 29 | 30 | //because we are not messing with resize model 31 | //if setSize will be implemented - below line can be replaced with webix.ready 32 | webix.delay(webix.bind(this._render_once, this)); 33 | }); 34 | }, 35 | _render_once:function(){ 36 | webix.require("/web-desktop/libs/scheduler/dhtmlxscheduler.css"); 37 | webix.require([ 38 | "/web-desktop/libs/scheduler/dhtmlxscheduler.js" 39 | ], function(){ 40 | var scheduler = this._scheduler = window.Scheduler ? Scheduler.getSchedulerInstance() : window.scheduler; 41 | 42 | if (this.config.init) 43 | this.config.init.call(this); 44 | 45 | scheduler.init(this.$view.firstChild, (this.config.date||new Date()), (this.config.mode||"week")); 46 | if (this.config.ready) 47 | this.config.ready.call(this); 48 | 49 | }, this); 50 | } 51 | }, webix.ui.view); -------------------------------------------------------------------------------- /js/views/winmenu.css: -------------------------------------------------------------------------------- 1 | .webix_winmenu{ 2 | background: transparent; 3 | } 4 | .webix_winmenu .webix_list_item{ 5 | display: inline-block; 6 | border:none; 7 | vertical-align: top; 8 | padding: 0 5px 5px 0; 9 | } 10 | .webix_winmenu .webix_winmenu_item{ 11 | text-align:center; 12 | box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.2); 13 | cursor:pointer; 14 | } 15 | /*fix for background composition bug in IE for Win-10*/ 16 | .webix_ie .webix_winmenu .webix_winmenu_item{ 17 | box-shadow: none; 18 | } 19 | .webix_winmenu_item { 20 | height: 100px; 21 | position: relative; 22 | } 23 | .webix_winmenu_item img{ 24 | margin-top: 5px; 25 | width: 65px; 26 | height: 65px; 27 | } 28 | .webix_winmenu_item:active{ 29 | box-shadow: inset 0px 0px 5px 5px rgba(255,255,255,0.5); 30 | } 31 | .webix_winmenu_item .title{ 32 | color: #fff; 33 | text-align: left; 34 | 35 | padding-left:10px; 36 | line-height: 25px; 37 | font-size: 14px; 38 | position:absolute; 39 | bottom:0; 40 | } 41 | .webix_winmenu_item .webix_icon{ 42 | color: #fff; 43 | width: 100%; 44 | height: 80px; 45 | line-height: 80px; 46 | text-align: center; 47 | font-size: 40px; 48 | } 49 | .webix_winmenu_item .bg_img{ 50 | width: 100%; 51 | height: 100%; 52 | } 53 | 54 | .webix_winmenu_item{ 55 | position:absolute; 56 | text-align:center; 57 | box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.2); 58 | cursor:pointer; 59 | } 60 | .webix_winmenu_item:active{ 61 | box-shadow: inset 0px 0px 5px 5px rgba(255,255,255,0.5); 62 | } 63 | .webix_winmenu_item div{ 64 | color: #fff; 65 | text-align: left; 66 | padding-left:10px; 67 | } 68 | .webix_winmenu{ 69 | position:relative; 70 | background: transparent; 71 | } 72 | .webix_winmenu .webix_scroll_cont{ 73 | position:static; 74 | } 75 | -------------------------------------------------------------------------------- /js/views/winmenu.js: -------------------------------------------------------------------------------- 1 | webix.protoUI({ 2 | name:"winmenu", 3 | $init:function(){ 4 | this.$view.className += " webix_winmenu"; 5 | this.attachEvent("onBeforeRender", function(data){ 6 | this._defineCounts(data); 7 | }); 8 | }, 9 | _defineCounts:function(data){ 10 | var first = data.getItem(data.getFirstId()); 11 | 12 | if(!first.x||!first.y) 13 | var count = data.count(); 14 | else{ 15 | var count = 0; 16 | data.each(function(obj){ 17 | count+=obj.height*obj.width ||1; 18 | }); 19 | } 20 | 21 | if(this.config.xCount && this.config.yCount){ 22 | var xCount = this.config.xCount; 23 | var yCount = this.config.yCount; 24 | } 25 | else{ 26 | var xCount = this.config.xCount = Math.round(Math.sqrt(2*count/3)); 27 | var yCount = this.config.yCount = Math.ceil(count/this.config.xCount); 28 | } 29 | 30 | if(!first.x||!first.y){ 31 | /*X and Y are counted as if each item takes one square, current width and height will be ignored and set to 1 32 | if a person want's to use custom width || height > 1, x&y must as well be provided*/ 33 | 34 | var message = false; 35 | var freeX = xCount-1; // number of free squares to the right 36 | var freeY = yCount-1; // number of free squares downwards 37 | 38 | data.each(function(obj){ 39 | obj.x = xCount-freeX; 40 | obj.y = yCount-freeY; 41 | if(obj.width>1||obj.height>1){ 42 | message = true; 43 | } 44 | // something if x and y already exist 45 | obj.width = 1; 46 | obj.height = 1; 47 | freeX--; 48 | if(freeX<0){ 49 | freeX = xCount-1; 50 | freeY--; 51 | } 52 | if(freeY<0) 53 | freeY = yCount-1; 54 | }); 55 | } 56 | }, 57 | defaults:{ 58 | scroll:false, 59 | xCount : 4, 60 | yCount : 4, 61 | margin : 5 62 | }, 63 | type:{ 64 | template:function(obj){ 65 | var result = ""; 66 | if (obj.icon){ 67 | result = "
" + obj.value + "
"; 68 | } 69 | else if (obj.img){ 70 | result ="
"+obj.value+"
"; 71 | } 72 | return result; 73 | }, 74 | classname:function(obj, common, marks){ 75 | var css = "webix_winmenu_item"; 76 | if (common.css) css +=common.css+" "; 77 | if (obj.$css) css += " "+obj.$css; 78 | if (marks && marks.$css) css += " "+marks.$css; 79 | 80 | return css; 81 | }, 82 | sizeTemplate:function(obj, common){ 83 | 84 | var left = common.lefts[obj.x-1]; 85 | var top = common.tops[obj.y-1]; 86 | 87 | var objwidth = (obj.width || 1)-1; 88 | var width = objwidth * common.margin; 89 | 90 | for (var i=-1; i"; 104 | }, 105 | templateEnd:webix.template("") 106 | }, 107 | render:function(){ 108 | if (!this.type.lefts) return; 109 | return webix.ui.list.prototype.render.apply(this, arguments); 110 | }, 111 | $getSize:function(dx, dy){ 112 | return webix.ui.view.prototype.$getSize.call(this, dx, dy); 113 | }, 114 | $setSize:function(x,y){ 115 | if (webix.ui.view.prototype.$setSize.call(this, x, y)){ 116 | 117 | var yCount = this.config.yCount; 118 | var xCount = this.config.xCount; 119 | 120 | var height = this.$height - (yCount - 1) * this.config.margin; 121 | var width = this.$width - (xCount - 1) * this.config.margin; 122 | 123 | this.type.heights = []; 124 | this.type.widths = []; 125 | this.type.lefts = [0]; 126 | this.type.tops = [0]; 127 | this.type.margin = this.config.margin; 128 | 129 | for (var i=0; i11?"pm":"am":a.getHours()>11?"pm":"am";case"%A":return t?a.getUTCHours()>11?"PM":"AM":a.getHours()>11?"PM":"AM";case"%s":return t?gantt.date.to_fixed(a.getUTCSeconds()):gantt.date.to_fixed(a.getSeconds()); 12 | case"%W":return t?gantt.date.to_fixed(gantt.date.getUTCISOWeek(a)):gantt.date.to_fixed(gantt.date.getISOWeek(a));default:return e}})}},gantt.date.str_to_date=function(e,t){return function(a){for(var n=[0,0,1,0,0,0],o=a.match(/[a-zA-Z]+|[0-9]+/g),s=e.match(/%[a-zA-Z]/g),r=0;r50?1900:2e3);break;case"%g":case"%G":case"%h":case"%H":n[3]=o[r]||0;break;case"%i":n[4]=o[r]||0; 13 | break;case"%Y":n[0]=o[r]||0;break;case"%a":case"%A":n[3]=n[3]%12+("am"==(o[r]||"").toLowerCase()?0:12);break;case"%s":n[5]=o[r]||0;break;case"%M":n[1]=gantt.locale.date.month_short_hash[o[r]]||0;break;case"%F":n[1]=gantt.locale.date.month_full_hash[o[r]]||0}return t?new Date(Date.UTC(n[0],n[1],n[2],n[3],n[4],n[5])):new Date(n[0],n[1],n[2],n[3],n[4],n[5])}}; 14 | //# sourceMappingURL=../sources/ext/dhtmlxgantt_csp.js.map -------------------------------------------------------------------------------- /libs/gantt/ext/dhtmlxgantt_fullscreen.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt._onFullScreenChange=function(){!gantt.getState().fullscreen||null!==document.fullscreenElement&&null!==document.mozFullScreenElement&&null!==document.webkitFullscreenElement&&null!==document.msFullscreenElement||gantt.collapse()},document.addEventListener&&(document.addEventListener("webkitfullscreenchange",gantt._onFullScreenChange),document.addEventListener("mozfullscreenchange",gantt._onFullScreenChange),document.addEventListener("MSFullscreenChange",gantt._onFullScreenChange),document.addEventListener("fullscreenChange",gantt._onFullScreenChange), 10 | document.addEventListener("fullscreenchange",gantt._onFullScreenChange)),gantt.expand=function(){if(gantt.callEvent("onBeforeExpand",[])){gantt._toggleFullScreen(!0);var e=gantt._obj;do e._position=e.style.position||"",e.style.position="static";while((e=e.parentNode)&&e.style);e=gantt._obj,e.style.position="absolute",e._width=e.style.width,e._height=e.style.height,e.style.width=e.style.height="100%",e.style.top=e.style.left="0px";var t=document.body;t.scrollTop=0,t=t.parentNode,t&&(t.scrollTop=0), 11 | document.body._overflow=document.body.style.overflow||"",document.body.style.overflow="hidden",document.documentElement.msRequestFullscreen&&gantt._obj&&window.setTimeout(function(){gantt._obj.style.width=window.outerWidth+"px"},1),gantt._maximize(),gantt.callEvent("onExpand",[])}},gantt.collapse=function(){if(gantt.callEvent("onBeforeCollapse",[])){var e=gantt._obj;do e.style.position=e._position;while((e=e.parentNode)&&e.style);e=gantt._obj,e.style.width=e._width,e.style.height=e._height,document.body.style.overflow=document.body._overflow, 12 | gantt._toggleFullScreen(!1),gantt._maximize(),gantt.callEvent("onCollapse",[])}},function(){var e=gantt.getState;gantt.getState=function(){var t=e.apply(this,arguments);return t.fullscreen=!!this._expanded,t}}(),gantt._maximize=function(){this._expanded=!this._expanded,this.render()},gantt._toggleFullScreen=function(e){!e&&(document.fullscreenElement||document.mozFullScreenElement||document.webkitFullscreenElement||document.msFullscreenElement)?document.exitFullscreen?document.exitFullscreen():document.msExitFullscreen?document.msExitFullscreen():document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitExitFullscreen&&document.webkitExitFullscreen():document.documentElement.requestFullscreen?document.documentElement.requestFullscreen():document.documentElement.msRequestFullscreen?document.documentElement.msRequestFullscreen():document.documentElement.mozRequestFullScreen?document.documentElement.mozRequestFullScreen():document.documentElement.webkitRequestFullscreen&&document.documentElement.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT); 13 | }; 14 | //# sourceMappingURL=../sources/ext/dhtmlxgantt_fullscreen.js.map -------------------------------------------------------------------------------- /libs/gantt/ext/dhtmlxgantt_marker.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt._markers||(gantt._markers={}),gantt.config.show_markers=!0,gantt.attachEvent("onClear",function(){gantt._markers={}}),gantt.attachEvent("onGanttReady",function(){function t(t){if(!gantt.config.show_markers)return!1;if(!t.start_date)return!1;var e=gantt.getState();if(!(+t.start_date>+e.max_date||+t.end_date&&+t.end_date<+e.min_date||+t.start_date<+e.min_date)){var n=document.createElement("div");n.setAttribute("marker_id",t.id);var a="gantt_marker";gantt.templates.marker_class&&(a+=" "+gantt.templates.marker_class(t)), 10 | t.css&&(a+=" "+t.css),t.title&&(n.title=t.title),n.className=a;var i=gantt.posFromDate(t.start_date);if(n.style.left=i+"px",n.style.height=Math.max(gantt._y_from_ind(gantt._order.length),0)+"px",t.end_date){var s=gantt.posFromDate(t.end_date);n.style.width=Math.max(s-i,0)+"px"}return t.text&&(n.innerHTML="
"+t.text+"
"),n}}var e=document.createElement("div");e.className="gantt_marker_area",gantt.$task_data.appendChild(e),gantt.$marker_area=e,gantt._markerRenderer=gantt._task_renderer("markers",t,gantt.$marker_area,null); 11 | }),gantt.attachEvent("onDataRender",function(){gantt.renderMarkers()}),gantt.getMarker=function(t){return this._markers?this._markers[t]:null},gantt.addMarker=function(t){return t.id=t.id||dhtmlx.uid(),this._markers[t.id]=t,t.id},gantt.deleteMarker=function(t){return this._markers&&this._markers[t]?(delete this._markers[t],!0):!1},gantt.updateMarker=function(t){this._markerRenderer&&this._markerRenderer.render_item(t)},gantt.renderMarkers=function(){if(!this._markers)return!1;if(!this._markerRenderer)return!1; 12 | var t=[];for(var e in this._markers)t.push(this._markers[e]);return this._markerRenderer.render_items(t),!0}; 13 | //# sourceMappingURL=../sources/ext/dhtmlxgantt_marker.js.map -------------------------------------------------------------------------------- /libs/gantt/ext/dhtmlxgantt_multiselect.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.config.multiselect=!0,gantt.config.multiselect_one_level=!1,gantt._multiselect={selected:{},one_level:!0,active:!0,isActive:function(){return this.update_state(),this.active},update_state:function(){this.one_level=gantt.config.multiselect_one_level;var t=this.active;this.active=gantt.config.multiselect,this.active!=t&&this.reset()},reset:function(){this.selected={}},set_last_selected:function(t){this.last_selected=t},getLastSelected:function(){var t=this.last_selected;return t&&gantt.isTaskExists(t)?t:null; 10 | },select:function(t,e){gantt.callEvent("onBeforeTaskMultiSelect",[t,!0,e])&&(this.selected[t]=!0,this.set_last_selected(t),gantt.callEvent("onTaskMultiSelect",[t,!0,e]))},toggle:function(t,e){this.selected[t]?this.unselect(t,e):this.select(t,e)},unselect:function(t,e){gantt.callEvent("onBeforeTaskMultiSelect",[t,!1,e])&&(this.selected[t]=!1,this.last_selected==t&&(this.last_selected=null),gantt.callEvent("onTaskMultiSelect",[t,!0,e]))},isSelected:function(t){return!(!gantt.isTaskExists(t)||!this.selected[t]); 11 | },getSelected:function(){var t=[];for(var e in this.selected)this.selected[e]&&gantt.isTaskExists(e)?t.push(e):this.selected[e]=!1;return t.sort(function(t,e){return gantt.calculateTaskLevel(gantt.getTask(t))>gantt.calculateTaskLevel(gantt.getTask(e))?1:-1}),t},forSelected:function(t){for(var e=this.getSelected(),n=0;ns?gantt.getNext(r):gantt.getPrev(r);this.forSelected(dhtmlx.bind(function(t){var e=gantt.getGlobalTaskIndex(t);(e>i&&e>s||i>e&&s>e)&&(this.unselect(t),gantt.refreshTask(t))},this))}}else this.forSelected(dhtmlx.bind(function(t){t!=e&&(this.unselect(t),gantt.refreshTask(t))},this)),this.isSelected(e)||(this.select(e),this._after_select(e));return this.isSelected(e)?!0:!1}},function(){var t=gantt.selectTask;gantt.selectTask=function(e){var n=t.call(this,e);return this.config.multiselect&&this._multiselect.select(e), 14 | n};var e=gantt.unselectTask;gantt.unselectTask=function(t){void 0!=t&&this.config.multiselect&&this._multiselect.unselect(t);var n=e.call(this,t);return n},gantt.toggleTaskSelection=function(t){this.config.multiselect&&this._multiselect.toggle(t)},gantt.getSelectedTasks=function(){return this._multiselect.getSelected()},gantt.eachSelectedTask=function(t){return this._multiselect.forSelected(t)},gantt.isSelectedTask=function(t){return this._multiselect.isSelected(t)},gantt.getLastSelectedTask=function(){ 15 | return this._multiselect.getLastSelected()}}(),gantt.attachEvent("onTaskIdChange",function(t,e){var n=gantt._multiselect;return n.isActive()?void(gantt.isSelectedTask(t)&&(n.unselect(t,null),n.select(e,null),gantt.refreshTask(e))):!0}),gantt.attachEvent("onAfterTaskDelete",function(t,e){var n=gantt._multiselect;return n.isActive()?(n.selected[t]&&n.unselect(t,null),void n.forSelected(function(t){gantt.isTaskExists(t)||n.unselect(t,null)})):!0}),gantt.attachEvent("onBeforeTaskMultiSelect",function(t,e,n){ 16 | var a=gantt._multiselect;return e&&a.isActive()?a.is_same_level(t):!0}),gantt.attachEvent("onTaskClick",function(t,e){var n=gantt._multiselect._do_selection(e);return gantt.callEvent("onMultiSelect",[e]),n}),gantt.attachEvent("onEmptyClick",function(t){return gantt._multiselect._do_selection(t),gantt.callEvent("onMultiSelect",[t]),!0}); 17 | //# sourceMappingURL=../sources/ext/dhtmlxgantt_multiselect.js.map -------------------------------------------------------------------------------- /libs/gantt/ext/dhtmlxgantt_quick_info.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.config.quickinfo_buttons=["icon_delete","icon_edit"],gantt.config.quick_info_detached=!0,gantt.config.show_quick_info=!0,gantt.attachEvent("onTaskClick",function(t){return gantt.showQuickInfo(t),!0}),function(){for(var t=["onEmptyClick","onViewChange","onLightbox","onBeforeTaskDelete","onBeforeDrag"],e=function(){return gantt._hideQuickInfo(),!0},n=0;n
';i+='
';for(var s=gantt.config.quickinfo_buttons,r={icon_delete:!0,icon_edit:!0},o=0;o
"+gantt.locale.labels[s[o]]+"
"); 15 | i+="",a.innerHTML=i,dhtmlxEvent(a,"click",function(t){t=t||event,gantt._qi_button_click(t.target||t.srcElement)}),gantt.config.quick_info_detached&&dhtmlxEvent(gantt.$task_data,"scroll",function(){gantt.hideQuickInfo()})}return this._quick_info_box},gantt._qi_button_click=function(t){var e=gantt._quick_info_box;if(t&&t!=e){var n=t.className;if(-1!=n.indexOf("_icon")){var a=gantt._quick_info_box_id;gantt.$click.buttons[n.split(" ")[1].replace("icon_","")](a)}else gantt._qi_button_click(t.parentNode); 16 | }},gantt._get_event_counter_part=function(t){for(var e=gantt.getTaskNode(t),n=0,a=0,i=e;i&&"gantt_task"!=i.className;)n+=i.offsetLeft,a+=i.offsetTop,i=i.offsetParent;var s=this.getScrollState();if(i){var r=n+e.offsetWidth/2-s.x>gantt._x/2?1:0,o=a+e.offsetHeight/2-s.y>gantt._y/2?1:0;return{left:n,top:a,dx:r,dy:o,width:e.offsetWidth,height:e.offsetHeight}}return 0},gantt._fill_quick_data=function(t){var e=gantt.getTask(t),n=gantt._quick_info_box;gantt._quick_info_box_id=t;var a=n.firstChild.firstChild; 17 | a.innerHTML=gantt.templates.quick_info_title(e.start_date,e.end_date,e);var i=a.nextSibling;i.innerHTML=gantt.templates.quick_info_date(e.start_date,e.end_date,e);var s=n.firstChild.nextSibling;s.innerHTML=gantt.templates.quick_info_content(e.start_date,e.end_date,e)}; 18 | //# sourceMappingURL=../sources/ext/dhtmlxgantt_quick_info.js.map -------------------------------------------------------------------------------- /libs/gantt/ext/dhtmlxgantt_tooltip.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt._tooltip={},gantt._tooltip_class="gantt_tooltip",gantt.config.tooltip_timeout=30,gantt.config.tooltip_offset_y=20,gantt.config.tooltip_offset_x=10,gantt._create_tooltip=function(){return this._tooltip_html||(this._tooltip_html=document.createElement("div"),this._tooltip_html.className=gantt._tooltip_class),this._tooltip_html},gantt._is_cursor_under_tooltip=function(t,e){return t.x>=e.pos.x&&t.x<=e.pos.x+e.width?!0:t.y>=e.pos.y&&t.y<=e.pos.y+e.height?!0:!1},gantt._show_tooltip=function(t,e){ 10 | if(!gantt.config.touch||gantt.config.touch_tooltip){var n=this._create_tooltip();n.innerHTML=t,gantt.$task_data.appendChild(n);var a=n.offsetWidth+20,i=n.offsetHeight+40,s=this.$task.offsetHeight,r=this.$task.offsetWidth,o=this.getScrollState();e.y+=o.y;var l={x:e.x,y:e.y};e.x+=1*gantt.config.tooltip_offset_x||0,e.y+=1*gantt.config.tooltip_offset_y||0,e.y=Math.min(Math.max(o.y,e.y),o.y+s-i),e.x=Math.min(Math.max(o.x,e.x),o.x+r-a),gantt._is_cursor_under_tooltip(l,{pos:e,width:a,height:i})&&(l.x+a>r+o.x&&(e.x=l.x-(a-20)-(1*gantt.config.tooltip_offset_x||0)), 11 | l.y+i>s+o.y&&(e.y=l.y-(i-40)-(1*gantt.config.tooltip_offset_y||0))),n.style.left=e.x+"px",n.style.top=e.y+"px"}},gantt._hide_tooltip=function(){this._tooltip_html&&this._tooltip_html.parentNode&&this._tooltip_html.parentNode.removeChild(this._tooltip_html),this._tooltip_id=0},gantt._is_tooltip=function(t){var e=t.target||t.srcElement;return gantt._is_node_child(e,function(t){return t.className==this._tooltip_class})},gantt._is_task_line=function(t){var e=t.target||t.srcElement;return gantt._is_node_child(e,function(t){ 12 | return t==this.$task_data})},gantt._is_node_child=function(t,e){for(var n=!1;t&&!n;)n=e.call(gantt,t),t=t.parentNode;return n},gantt._tooltip_pos=function(t){if(t.pageX||t.pageY)var e={x:t.pageX,y:t.pageY};var n=_isIE?document.documentElement:document.body,e={x:t.clientX+n.scrollLeft-n.clientLeft,y:t.clientY+n.scrollTop-n.clientTop},a=gantt._get_position(gantt.$task_data);return e.x=e.x-a.x,e.y=e.y-a.y,e},gantt.attachEvent("onMouseMove",function(t,e){if(this.config.tooltip_timeout){document.createEventObject&&!document.createEvent&&(e=document.createEventObject(e)); 13 | var n=this.config.tooltip_timeout;this._tooltip_id&&!t&&(isNaN(this.config.tooltip_hide_timeout)||(n=this.config.tooltip_hide_timeout)),clearTimeout(gantt._tooltip_ev_timer),gantt._tooltip_ev_timer=setTimeout(function(){gantt._init_tooltip(t,e)},n)}else gantt._init_tooltip(t,e)}),gantt._init_tooltip=function(t,e){if(!this._is_tooltip(e)&&(t!=this._tooltip_id||this._is_task_line(e))){if(!t)return this._hide_tooltip();this._tooltip_id=t;var n=this.getTask(t),a=this.templates.tooltip_text(n.start_date,n.end_date,n); 14 | return a?void this._show_tooltip(a,this._tooltip_pos(e)):void this._hide_tooltip()}},gantt.attachEvent("onMouseLeave",function(t){gantt._is_tooltip(t)||this._hide_tooltip()}),gantt.templates.tooltip_date_format=gantt.date.date_to_str("%Y-%m-%d"),gantt.templates.tooltip_text=function(t,e,n){return"Task: "+n.text+"
Start date: "+gantt.templates.tooltip_date_format(t)+"
End date: "+gantt.templates.tooltip_date_format(e)}; 15 | //# sourceMappingURL=../sources/ext/dhtmlxgantt_tooltip.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["January","February","March","April","May","June","July","August","September","October","November","December"],month_short:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],day_full:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],day_short:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]},labels:{new_task:"New task",icon_save:"Save",icon_cancel:"Cancel",icon_details:"Details",icon_edit:"Edit",icon_delete:"Delete",confirm_closing:"", 10 | confirm_deleting:"Task will be deleted permanently, are you sure?",section_description:"Description",section_time:"Time period",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 11 | //# sourceMappingURL=../sources/locale/locale.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["كانون الثاني","شباط","آذار","نيسان","أيار","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول"],month_short:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],day_full:["الأحد","الأثنين","ألثلاثاء","الأربعاء","ألحميس","ألجمعة","السبت"],day_short:["احد","اثنين","ثلاثاء","اربعاء","خميس","جمعة","سبت"]},labels:{dhx_cal_today_button:"اليوم",day_tab:"يوم",week_tab:"أسبوع",month_tab:"شهر",new_event:"حدث جديد", 10 | icon_save:"اخزن",icon_cancel:"الغاء",icon_details:"تفاصيل",icon_edit:"تحرير",icon_delete:"حذف",confirm_closing:"التغييرات سوف تضيع, هل انت متأكد؟",confirm_deleting:"الحدث سيتم حذفها نهائيا ، هل أنت متأكد؟",section_description:"الوصف",section_time:"الفترة الزمنية",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project", 11 | type_milestone:"Milestone",minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 12 | //# sourceMappingURL=../sources/locale/locale_ar.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_be.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Студзень","Люты","Сакавік","Красавік","Maй","Чэрвень","Ліпень","Жнівень","Верасень","Кастрычнік","Лістапад","Снежань"],month_short:["Студз","Лют","Сак","Крас","Maй","Чэр","Ліп","Жнів","Вер","Каст","Ліст","Снеж"],day_full:["Нядзеля","Панядзелак","Аўторак","Серада","Чацвер","Пятніца","Субота"],day_short:["Нд","Пн","Аўт","Ср","Чцв","Пт","Сб"]},labels:{dhx_cal_today_button:"Сёння",day_tab:"Дзень",week_tab:"Тыдзень",month_tab:"Месяц",new_event:"Новая падзея",icon_save:"Захаваць", 10 | icon_cancel:"Адмяніць",icon_details:"Дэталі",icon_edit:"Змяніць",icon_delete:"Выдаліць",confirm_closing:"",confirm_deleting:"Падзея будзе выдалена незваротна, працягнуць?",section_description:"Апісанне",section_time:"Перыяд часу",section_type:"Тып",column_text:"Задача",column_start_date:"Пачатак",column_duration:"Працяг",column_add:"",link:"Сувязь",confirm_link_deleting:"будзе выдалена",link_start:"(пачатак)",link_end:"(канец)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Хвiлiна", 11 | hours:"Гадзiна",days:"Дзень",weeks:"Тыдзень",months:"Месяц",years:"Год"}}; 12 | //# sourceMappingURL=../sources/locale/locale_be.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Gener","Febrer","Març","Abril","Maig","Juny","Juliol","Agost","Setembre","Octubre","Novembre","Desembre"],month_short:["Gen","Feb","Mar","Abr","Mai","Jun","Jul","Ago","Set","Oct","Nov","Des"],day_full:["Diumenge","Dilluns","Dimarts","Dimecres","Dijous","Divendres","Dissabte"],day_short:["Dg","Dl","Dm","Dc","Dj","Dv","Ds"]},labels:{dhx_cal_today_button:"Hui",day_tab:"Dia",week_tab:"Setmana",month_tab:"Mes",new_event:"Nou esdeveniment",icon_save:"Guardar",icon_cancel:"Cancel·lar", 10 | icon_details:"Detalls",icon_edit:"Editar",icon_delete:"Esborrar",confirm_closing:"",confirm_deleting:"L'esdeveniment s'esborrarà definitivament, continuar ?",section_description:"Descripció",section_time:"Periode de temps",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Minutes", 11 | hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 12 | //# sourceMappingURL=../sources/locale/locale_ca.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.config.day_date="%M %d日 %D",gantt.config.default_date="%Y年 %M %d日",gantt.config.month_date="%Y年 %M",gantt.locale={date:{month_full:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],month_short:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],day_full:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],day_short:["日","一","二","三","四","五","六"]},labels:{dhx_cal_today_button:"今天",day_tab:"日",week_tab:"周",month_tab:"月",new_event:"新建日程",icon_save:"保存",icon_cancel:"关闭",icon_details:"详细", 10 | icon_edit:"编辑",icon_delete:"删除",confirm_closing:"请确认是否撤销修改!",confirm_deleting:"是否删除日程?",section_description:"描述",section_time:"时间范围",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 11 | //# sourceMappingURL=../sources/locale/locale_cn.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Leden","Únor","Březen","Duben","Květen","Červen","Červenec","Srpen","Září","Říjen","Listopad","Prosinec"],month_short:["Led","Ún","Bře","Dub","Kvě","Čer","Čec","Srp","Září","Říj","List","Pro"],day_full:["Neděle","Pondělí","Úterý","Středa","Čtvrtek","Pátek","Sobota"],day_short:["Ne","Po","Út","St","Čt","Pá","So"]},labels:{dhx_cal_today_button:"Dnes",day_tab:"Den",week_tab:"Týden",month_tab:"Měsíc",new_event:"Nová událost",icon_save:"Uložit",icon_cancel:"Zpět",icon_details:"Detail", 10 | icon_edit:"Edituj",icon_delete:"Smazat",confirm_closing:"",confirm_deleting:"Událost bude trvale smazána, opravdu?",section_description:"Poznámky",section_time:"Doba platnosti",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week", 11 | months:"Months",years:"Years"}}; 12 | //# sourceMappingURL=../sources/locale/locale_cs.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_da.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],month_short:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],day_full:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],day_short:["Søn","Man","Tir","Ons","Tor","Fre","Lør"]},labels:{dhx_cal_today_button:"Idag",day_tab:"Dag",week_tab:"Uge",month_tab:"Måned",new_event:"Ny begivenhed",icon_save:"Gem",icon_cancel:"Fortryd", 10 | icon_details:"Detaljer",icon_edit:"Tilret",icon_delete:"Slet",confirm_closing:"Dine rettelser vil gå tabt.. Er dy sikker?",confirm_deleting:"Bigivenheden vil blive slettet permanent. Er du sikker?",section_description:"Beskrivelse",section_time:"Tidsperiode",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project", 11 | type_milestone:"Milestone",minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 12 | //# sourceMappingURL=../sources/locale/locale_da.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_de.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:[" Januar"," Februar"," März "," April"," Mai"," Juni"," Juli"," August"," September "," Oktober"," November "," Dezember"],month_short:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],day_full:["Sonntag","Montag","Dienstag"," Mittwoch"," Donnerstag","Freitag","Samstag"],day_short:["So","Mo","Di","Mi","Do","Fr","Sa"]},labels:{dhx_cal_today_button:"Heute",day_tab:"Tag",week_tab:"Woche",month_tab:"Monat",new_event:"neuer Eintrag",icon_save:"Speichern", 10 | icon_cancel:"Abbrechen",icon_details:"Details",icon_edit:"Ändern",icon_delete:"Löschen",confirm_closing:"",confirm_deleting:"Der Eintrag wird gelöscht",section_description:"Beschreibung",section_time:"Zeitspanne",section_type:"Type",column_text:"Task-Namen",column_start_date:"Startzeit",column_duration:"Dauer",column_add:"",link:"Link",confirm_link_deleting:"werden gelöscht",link_start:"(starten)",link_end:"(ende)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Minuten", 11 | hours:"Stunden",days:"Tage",weeks:"Wochen",months:"Monate",years:"Jahre"}}; 12 | //# sourceMappingURL=../sources/locale/locale_de.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_el.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάϊος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],month_short:["ΙΑΝ","ΦΕΒ","ΜΑΡ","ΑΠΡ","ΜΑΙ","ΙΟΥΝ","ΙΟΥΛ","ΑΥΓ","ΣΕΠ","ΟΚΤ","ΝΟΕ","ΔΕΚ"],day_full:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Κυριακή"],day_short:["ΚΥ","ΔΕ","ΤΡ","ΤΕ","ΠΕ","ΠΑ","ΣΑ"]},labels:{dhx_cal_today_button:"Σήμερα",day_tab:"Ημέρα",week_tab:"Εβδομάδα",month_tab:"Μήνας",new_event:"Νέο έργο", 10 | icon_save:"Αποθήκευση",icon_cancel:"Άκυρο",icon_details:"Λεπτομέρειες",icon_edit:"Επεξεργασία",icon_delete:"Διαγραφή",confirm_closing:"",confirm_deleting:"Το έργο θα διαγραφεί οριστικά. Θέλετε να συνεχίσετε;",section_description:"Περιγραφή",section_time:"Χρονική περίοδος",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project", 11 | type_milestone:"Milestone",minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 12 | //# sourceMappingURL=../sources/locale/locale_el.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_es.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"],month_short:["Ene","Feb","Mar","Abr","May","Jun","Jul","Ago","Sep","Oct","Nov","Dic"],day_full:["Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado"],day_short:["Dom","Lun","Mar","Mié","Jue","Vie","Sáb"]},labels:{dhx_cal_today_button:"Hoy",day_tab:"Día",week_tab:"Semana",month_tab:"Mes",new_event:"Nuevo evento",icon_save:"Guardar",icon_cancel:"Cancelar", 10 | icon_details:"Detalles",icon_edit:"Editar",icon_delete:"Eliminar",confirm_closing:"",confirm_deleting:"El evento se borrará definitivamente, ¿continuar?",section_description:"Descripción",section_time:"Período",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Minutes", 11 | hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 12 | //# sourceMappingURL=../sources/locale/locale_es.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Tammikuu","Helmikuu","Maaliskuu","Huhtikuu","Toukokuu","Kesäkuu","Heinäkuu","Elokuu","Syyskuu","Lokakuu","Marraskuu","Joulukuu"],month_short:["Tam","Hel","Maa","Huh","Tou","Kes","Hei","Elo","Syy","Lok","Mar","Jou"],day_full:["Sunnuntai","Maanantai","Tiistai","Keskiviikko","Torstai","Perjantai","Lauantai"],day_short:["Su","Ma","Ti","Ke","To","Pe","La"]},labels:{dhx_cal_today_button:"Tänään",day_tab:"Päivä",week_tab:"Viikko",month_tab:"Kuukausi",new_event:"Uusi tapahtuma", 10 | icon_save:"Tallenna",icon_cancel:"Peru",icon_details:"Tiedot",icon_edit:"Muokkaa",icon_delete:"Poista",confirm_closing:"",confirm_deleting:"Haluatko varmasti poistaa tapahtuman?",section_description:"Kuvaus",section_time:"Aikajakso",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone", 11 | minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 12 | //# sourceMappingURL=../sources/locale/locale_fi.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre"],month_short:["Jan","Fév","Mar","Avr","Mai","Juin","Juil","Aoû","Sep","Oct","Nov","Déc"],day_full:["Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi"],day_short:["Dim","Lun","Mar","Mer","Jeu","Ven","Sam"]},labels:{new_task:"Nouvelle tâche",icon_save:"Enregistrer",icon_cancel:"Annuler",icon_details:"Détails",icon_edit:"Modifier",icon_delete:"Effacer", 10 | confirm_closing:"",confirm_deleting:"L'événement sera effacé sans appel, êtes-vous sûr ?",section_description:"Description",section_time:"Période",section_type:"Type",column_text:"Nom de la tâche",column_start_date:"Date initiale",column_duration:"Durée",column_add:"",link:"Le lien",confirm_link_deleting:"sera supprimé",link_start:"(début)",link_end:"(fin)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Minutes",hours:"Heures",days:"Jours",weeks:"Semaines",months:"Mois", 11 | years:"Années"}}; 12 | //# sourceMappingURL=../sources/locale/locale_fr.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_he.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],month_short:["ינו","פבר","מרץ","אפר","מאי","יונ","יול","אוג","ספט","אוק","נוב","דצמ"],day_full:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת"],day_short:["א","ב","ג","ד","ה","ו","ש"]},labels:{dhx_cal_today_button:"היום",day_tab:"יום",week_tab:"שבוע",month_tab:"חודש",new_event:"ארוע חדש",icon_save:"שמור",icon_cancel:"בטל",icon_details:"פרטים",icon_edit:"ערוך",icon_delete:"מחק", 10 | confirm_closing:"",confirm_deleting:"ארוע ימחק סופית.להמשיך?",section_description:"הסבר",section_time:"תקופה",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 11 | //# sourceMappingURL=../sources/locale/locale_he.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Január","Február","Március","Április","Május","Június","Július","Augusztus","Szeptember","Október","November","December"],month_short:["Jan","Feb","Már","Ápr","Máj","Jún","Júl","Aug","Sep","Okt","Nov","Dec"],day_full:["Vasárnap","Hétfõ","Kedd","Szerda","Csütörtök","Péntek","szombat"],day_short:["Va","Hé","Ke","Sze","Csü","Pé","Szo"]},labels:{dhx_cal_today_button:"Ma",day_tab:"Nap",week_tab:"Hét",month_tab:"Hónap",new_event:"Új esemény",icon_save:"Mentés",icon_cancel:"Mégse", 10 | icon_details:"Részletek",icon_edit:"Szerkesztés",icon_delete:"Törlés",confirm_closing:"",confirm_deleting:"Az esemény törölve lesz, biztosan folytatja?",section_description:"Leírás",section_time:"Idõszak",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Minutes",hours:"Hours", 11 | days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 12 | //# sourceMappingURL=../sources/locale/locale_hu.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_id.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember"],month_short:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Ags","Sep","Okt","Nov","Des"],day_full:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],day_short:["Ming","Sen","Sel","Rab","Kam","Jum","Sab"]},labels:{dhx_cal_today_button:"Hari Ini",day_tab:"Hari",week_tab:"Minggu",month_tab:"Bulan",new_event:"Acara Baru",icon_save:"Simpan",icon_cancel:"Batal", 10 | icon_details:"Detail",icon_edit:"Edit",icon_delete:"Hapus",confirm_closing:"",confirm_deleting:"Acara akan dihapus",section_description:"Keterangan",section_time:"Periode",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week", 11 | months:"Months",years:"Years"}}; 12 | //# sourceMappingURL=../sources/locale/locale_id.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_it.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],month_short:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],day_full:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],day_short:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"]},labels:{dhx_cal_today_button:"Oggi",day_tab:"Giorno",week_tab:"Settimana",month_tab:"Mese",new_event:"Nuovo evento",icon_save:"Salva", 10 | icon_cancel:"Chiudi",icon_details:"Dettagli",icon_edit:"Modifica",icon_delete:"Elimina",confirm_closing:"",confirm_deleting:"L'evento sarà eliminato, siete sicuri?",section_description:"Descrizione",section_time:"Periodo di tempo",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone", 11 | minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 12 | //# sourceMappingURL=../sources/locale/locale_it.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_jp.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],month_short:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],day_full:["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"],day_short:["日","月","火","水","木","金","土"]},labels:{dhx_cal_today_button:"今日",day_tab:"日",week_tab:"週",month_tab:"月",new_event:"新イベント",icon_save:"保存",icon_cancel:"キャンセル",icon_details:"詳細",icon_edit:"編集",icon_delete:"削除",confirm_closing:"",confirm_deleting:"イベント完全に削除されます、宜しいですか?", 10 | section_description:"デスクリプション",section_time:"期間",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 11 | //# sourceMappingURL=../sources/locale/locale_jp.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_kr.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],month_short:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],day_full:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],day_short:["일","월","화","수","목","금","토"]},labels:{new_task:"이름없는 작업",icon_save:"저장",icon_cancel:"취소",icon_details:"세부 사항",icon_edit:"수정",icon_delete:"삭제",confirm_closing:"",confirm_deleting:"작업을 삭제하시겠습니까?",section_description:"설명",section_time:"기간",section_type:"Type",column_text:"작업명", 10 | column_start_date:"시작일",column_duration:"기간",column_add:"",link:"전제",confirm_link_deleting:"삭제 하시겠습니까?",link_start:" (start)",link_end:" (end)",type_task:"작업",type_project:"프로젝트",type_milestone:"마일스톤",minutes:"분",hours:"시간",days:"일",weeks:"주",months:"달",years:"년"}}; 11 | //# sourceMappingURL=../sources/locale/locale_kr.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember"],month_short:["Jan","Feb","Mar","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Des"],day_full:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],day_short:["Søn","Mon","Tir","Ons","Tor","Fre","Lør"]},labels:{dhx_cal_today_button:"I dag",day_tab:"Dag",week_tab:"Uke",month_tab:"Måned",new_event:"Ny hendelse",icon_save:"Lagre",icon_cancel:"Avbryt", 10 | icon_details:"Detaljer",icon_edit:"Rediger",icon_delete:"Slett",confirm_closing:"",confirm_deleting:"Hendelsen vil bli slettet permanent. Er du sikker?",section_description:"Beskrivelse",section_time:"Tidsperiode",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Minutes", 11 | hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 12 | //# sourceMappingURL=../sources/locale/locale_nb.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Januari","Februari","Maart","April","Mei","Juni","Juli","Augustus","September","Oktober","November","December"],month_short:["Jan","Feb","mrt","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],day_full:["Zondag","Maandag","Dinsdag","Woensdag","Donderdag","Vrijdag","Zaterdag"],day_short:["Zo","Ma","Di","Wo","Do","Vr","Za"]},labels:{dhx_cal_today_button:"Vandaag",day_tab:"Dag",week_tab:"Week",month_tab:"Maand",new_event:"Nieuw item",icon_save:"Opslaan",icon_cancel:"Annuleren", 10 | icon_details:"Details",icon_edit:"Bewerken",icon_delete:"Verwijderen",confirm_closing:"",confirm_deleting:"Item zal permanent worden verwijderd, doorgaan?",section_description:"Beschrijving",section_time:"Tijd periode",section_type:"Type",column_text:"Taak omschrijving",column_start_date:"Startdatum",column_duration:"Duur",column_add:"",link:"Koppeling",confirm_link_deleting:"zal worden verwijderd",link_start:" (start)",link_end:" (eind)",type_task:"Task",type_project:"Project",type_milestone:"Milestone", 11 | minutes:"minuten",hours:"uren",days:"dagen",weeks:"weken",months:"maanden",years:"jaren"}}; 12 | //# sourceMappingURL=../sources/locale/locale_nl.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_no.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember"],month_short:["Jan","Feb","Mar","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Des"],day_full:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],day_short:["Søn","Man","Tir","Ons","Tor","Fre","Lør"]},labels:{dhx_cal_today_button:"Idag",day_tab:"Dag",week_tab:"Uke",month_tab:"Måned",new_event:"Ny",icon_save:"Lagre",icon_cancel:"Avbryt",icon_details:"Detaljer", 10 | icon_edit:"Endre",icon_delete:"Slett",confirm_closing:"Endringer blir ikke lagret, er du sikker?",confirm_deleting:"Oppføringen vil bli slettet, er du sikker?",section_description:"Beskrivelse",section_time:"Tidsperiode",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Minutes", 11 | hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 12 | //# sourceMappingURL=../sources/locale/locale_no.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Styczeń","Luty","Marzec","Kwiecień","Maj","Czerwiec","Lipiec","Sierpień","Wrzesień","Październik","Listopad","Grudzień"],month_short:["Sty","Lut","Mar","Kwi","Maj","Cze","Lip","Sie","Wrz","Paź","Lis","Gru"],day_full:["Niedziela","Poniedziałek","Wtorek","Środa","Czwartek","Piątek","Sobota"],day_short:["Nie","Pon","Wto","Śro","Czw","Pią","Sob"]},labels:{dhx_cal_today_button:"Dziś",day_tab:"Dzień",week_tab:"Tydzień",month_tab:"Miesiąc",new_event:"Nowe zdarzenie",icon_save:"Zapisz", 10 | icon_cancel:"Anuluj",icon_details:"Szczegóły",icon_edit:"Edytuj",icon_delete:"Usuń",confirm_closing:"",confirm_deleting:"Zdarzenie zostanie usunięte na zawsze, kontynuować?",section_description:"Opis",section_time:"Okres czasu",section_type:"Typ",column_text:"Nazwa zadania",column_start_date:"Początek",column_duration:"Czas trwania",column_add:"",link:"Link",confirm_link_deleting:"zostanie usunięty",link_start:" (początek)",link_end:" (koniec)",type_task:"Zadanie",type_project:"Projekt",type_milestone:"Milestone", 11 | minutes:"Minuty",hours:"Godziny",days:"Dni",weeks:"Tydzień",months:"Miesiące",years:"Lata"}}; 12 | //# sourceMappingURL=../sources/locale/locale_pl.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],month_short:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],day_full:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado"],day_short:["Dom","Seg","Ter","Qua","Qui","Sex","Sab"]},labels:{dhx_cal_today_button:"Hoje",day_tab:"Dia",week_tab:"Semana",month_tab:"Mês",new_event:"Novo evento",icon_save:"Salvar",icon_cancel:"Cancelar", 10 | icon_details:"Detalhes",icon_edit:"Editar",icon_delete:"Deletar",confirm_closing:"Suas alterações serão perdidas. Você tem certeza?",confirm_deleting:"Tem certeza que deseja excluir?",section_description:"Descrição",section_time:"Período de tempo",section_type:"Type",column_text:"Nome tarefa",column_start_date:"Data início",column_duration:"Duração",column_add:"",link:"Link",confirm_link_deleting:"será apagado",link_start:" (início)",link_end:" (fim)",type_task:"Task",type_project:"Project",type_milestone:"Milestone", 11 | minutes:"Minutos",hours:"Horas",days:"Dias",weeks:"Semanas",months:"Meses",years:"Anos"}}; 12 | //# sourceMappingURL=../sources/locale/locale_pt.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_ro.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","November","December"],month_short:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Nov","Dec"],day_full:["Duminica","Luni","Marti","Miercuri","Joi","Vineri","Sambata"],day_short:["Du","Lu","Ma","Mi","Jo","Vi","Sa"]},labels:{dhx_cal_today_button:"Astazi",day_tab:"Zi",week_tab:"Saptamana",month_tab:"Luna",new_event:"Eveniment nou",icon_save:"Salveaza",icon_cancel:"Anuleaza", 10 | icon_details:"Detalii",icon_edit:"Editeaza",icon_delete:"Sterge",confirm_closing:"Schimbarile nu vor fi salvate, esti sigur?",confirm_deleting:"Evenimentul va fi sters permanent, esti sigur?",section_description:"Descriere",section_time:"Interval",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone", 11 | minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 12 | //# sourceMappingURL=../sources/locale/locale_ro.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Январь","Февраль","Март","Апрель","Maй","Июнь","Июль","Август","Сентябрь","Oктябрь","Ноябрь","Декабрь"],month_short:["Янв","Фев","Maр","Aпр","Maй","Июн","Июл","Aвг","Сен","Окт","Ноя","Дек"],day_full:["Воскресенье","Понедельник","Вторник","Среда","Четверг","Пятница","Суббота"],day_short:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"]},labels:{dhx_cal_today_button:"Сегодня",day_tab:"День",week_tab:"Неделя",month_tab:"Месяц",new_event:"Новое событие",icon_save:"Сохранить",icon_cancel:"Отменить", 10 | icon_details:"Детали",icon_edit:"Изменить",icon_delete:"Удалить",confirm_closing:"",confirm_deleting:"Событие будет удалено безвозвратно, продолжить?",section_description:"Описание",section_time:"Период времени",section_type:"Тип",column_text:"Задача",column_start_date:"Начало",column_duration:"Длительность",column_add:"",link:"Связь",confirm_link_deleting:"будет удалена",link_start:" (начало)",link_end:" (конец)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Минута", 11 | hours:"Час",days:"День",weeks:"Неделя",months:"Месяц",years:"Год"}}; 12 | //# sourceMappingURL=../sources/locale/locale_ru.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_si.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],month_short:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],day_full:["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota"],day_short:["Ned","Pon","Tor","Sre","Čet","Pet","Sob"]},labels:{dhx_cal_today_button:"Danes",day_tab:"Dan",week_tab:"Teden",month_tab:"Mesec",new_event:"Nov dogodek",icon_save:"Shrani",icon_cancel:"Prekliči", 10 | icon_details:"Podrobnosti",icon_edit:"Uredi",icon_delete:"Izbriši",confirm_closing:"",confirm_deleting:"Dogodek bo izbrisan. Želite nadaljevati?",section_description:"Opis",section_time:"Časovni okvir",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Minutes",hours:"Hours", 11 | days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 12 | //# sourceMappingURL=../sources/locale/locale_si.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Január","Február","Marec","Apríl","Máj","Jún","Júl","August","September","Október","November","December"],month_short:["Jan","Feb","Mar","Apr","Máj","Jún","Júl","Aug","Sept","Okt","Nov","Dec"],day_full:["Nedeľa","Pondelok","Utorok","Streda","Štvrtok","Piatok","Sobota"],day_short:["Ne","Po","Ut","St","Št","Pi","So"]},labels:{dhx_cal_today_button:"Dnes",day_tab:"Deň",week_tab:"Týždeň",month_tab:"Mesiac",new_event:"Nová udalosť",icon_save:"Uložiť",icon_cancel:"Späť", 10 | icon_details:"Detail",icon_edit:"Edituj",icon_delete:"Zmazať",confirm_closing:"Vaše zmeny nebudú uložené. Skutočne?",confirm_deleting:"Udalosť bude natrvalo vymazaná. Skutočne?",section_description:"Poznámky",section_time:"Doba platnosti",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone", 11 | minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 12 | //# sourceMappingURL=../sources/locale/locale_sk.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],month_short:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],day_full:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"],day_short:["Sön","Mån","Tis","Ons","Tor","Fre","Lör"]},labels:{dhx_cal_today_button:"Idag",day_tab:"Dag",week_tab:"Vecka",month_tab:"Månad",new_event:"Ny händelse",icon_save:"Spara",icon_cancel:"Avbryt", 10 | icon_details:"Detajer",icon_edit:"Ändra",icon_delete:"Ta bort",confirm_closing:"",confirm_deleting:"Är du säker på att du vill ta bort händelsen permanent?",section_description:"Beskrivning",section_time:"Tid",section_type:"Typ",column_text:"Uppgiftsnamn",column_start_date:"Starttid",column_duration:"Varaktighet",column_add:"",link:"Länk",confirm_link_deleting:"kommer tas bort",link_start:" (start)",link_end:" (slut)",type_task:"Uppgift",type_project:"Projekt",type_milestone:"Milstolpe",minutes:"Minuter", 11 | hours:"Timmar",days:"Dagar",weeks:"Veckor",months:"Månader",years:"År"}}; 12 | //# sourceMappingURL=../sources/locale/locale_sv.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Ocak","Þubat","Mart","Nisan","Mayýs","Haziran","Temmuz","Aðustos","Eylül","Ekim","Kasým","Aralýk"],month_short:["Oca","Þub","Mar","Nis","May","Haz","Tem","Aðu","Eyl","Eki","Kas","Ara"],day_full:["Pazar","Pazartes,","Salý","Çarþamba","Perþembe","Cuma","Cumartesi"],day_short:["Paz","Pts","Sal","Çar","Per","Cum","Cts"]},labels:{dhx_cal_today_button:"Bugün",day_tab:"Gün",week_tab:"Hafta",month_tab:"Ay",new_event:"Uygun",icon_save:"Kaydet",icon_cancel:"Ýptal",icon_details:"Detaylar", 10 | icon_edit:"Düzenle",icon_delete:"Sil",confirm_closing:"",confirm_deleting:"Etkinlik silinecek, devam?",section_description:"Açýklama",section_time:"Zaman aralýðý",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months", 11 | years:"Years"}}; 12 | //# sourceMappingURL=../sources/locale/locale_tr.js.map -------------------------------------------------------------------------------- /libs/gantt/locale/locale_ua.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | 4 | dhtmlxGantt v.3.3.0 Stardard 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | gantt.locale={date:{month_full:["Січень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],month_short:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],day_full:["Неділя","Понеділок","Вівторок","Середа","Четвер","П'ятниця","Субота"],day_short:["Нед","Пон","Вів","Сер","Чет","Птн","Суб"]},labels:{dhx_cal_today_button:"Сьогодні",day_tab:"День",week_tab:"Тиждень",month_tab:"Місяць",new_event:"Нова подія",icon_save:"Зберегти", 10 | icon_cancel:"Відміна",icon_details:"Деталі",icon_edit:"Редагувати",icon_delete:"Вилучити",confirm_closing:"",confirm_deleting:"Подія вилучиться назавжди. Ви впевнені?",section_description:"Опис",section_time:"Часовий проміжок",section_type:"Тип",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone", 11 | minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}}; 12 | //# sourceMappingURL=../sources/locale/locale_ua.js.map -------------------------------------------------------------------------------- /libs/scheduler/ext/dhtmlxscheduler_active_links.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | dhtmlxScheduler v.4.3.1 4 | 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | scheduler.config.active_link_view="day",scheduler._active_link_click=function(e){var t=e.target||event.srcElement,i=t.getAttribute("jump_to"),s=scheduler.date.str_to_date(scheduler.config.api_date);return i?(scheduler.setCurrentView(s(i),scheduler.config.active_link_view),e&&e.preventDefault&&e.preventDefault(),!1):void 0},scheduler.attachEvent("onTemplatesReady",function(){var e=function(e,t){t=t||e+"_scale_date",scheduler.templates["_active_links_old_"+t]||(scheduler.templates["_active_links_old_"+t]=scheduler.templates[t]); 10 | 11 | var i=scheduler.templates["_active_links_old_"+t],s=scheduler.date.date_to_str(scheduler.config.api_date);scheduler.templates[t]=function(e){return""+i(e)+""}};if(e("week"),e("","month_day"),this.matrix)for(var t in this.matrix)e(t);this._detachDomEvent(this._obj,"click",scheduler._active_link_click),dhtmlxEvent(this._obj,"click",scheduler._active_link_click)}); 12 | //# sourceMappingURL=../sources/ext/dhtmlxscheduler_active_links.js.map -------------------------------------------------------------------------------- /libs/scheduler/ext/dhtmlxscheduler_agenda_view.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | dhtmlxScheduler v.4.3.1 4 | 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | scheduler.date.add_agenda=function(e){return scheduler.date.add(e,1,"year")},scheduler.templates.agenda_time=function(e,t,s){return s._timed?this.day_date(s.start_date,s.end_date,s)+" "+this.event_date(e):scheduler.templates.day_date(e)+" – "+scheduler.templates.day_date(t)},scheduler.templates.agenda_text=function(e,t,s){return s.text},scheduler.templates.agenda_date=function(){return""},scheduler.date.agenda_start=function(){return scheduler.date.date_part(scheduler._currentDate())},scheduler.attachEvent("onTemplatesReady",function(){ 10 | function e(e){if(e){var t=scheduler.locale.labels;scheduler._els.dhx_cal_header[0].innerHTML="
"+t.date+"
"+t.description+"
",scheduler._table_view=!0,scheduler.set_sizes()}}function t(){var e=(scheduler._date,scheduler.get_visible_events());e.sort(function(e,t){return e.start_date>t.start_date?1:-1});for(var t="
",s=0;s
"+scheduler.templates.agenda_time(i.start_date,i.end_date,i)+"
",t+="
 
",t+=""+scheduler.templates.agenda_text(i.start_date,i.end_date,i)+"
"}t+="
",scheduler._els.dhx_cal_data[0].innerHTML=t,scheduler._els.dhx_cal_data[0].childNodes[0].scrollTop=scheduler._agendaScrollTop||0; 13 | 14 | var d=scheduler._els.dhx_cal_data[0].childNodes[0],o=d.childNodes[d.childNodes.length-1];o.style.height=d.offsetHeight=24)};scheduler._safe_copy=function(e){var t=null,a=null;return e.event_pid&&(t=scheduler.getEvent(e.event_pid)),t&&t.isPrototypeOf(e)?(a=scheduler._copy_event(e),delete a.event_length,delete a.event_pid,delete a.rec_pattern,delete a.rec_type):a=scheduler._lame_clone(e),a};var t=scheduler._pre_render_events_line;scheduler._pre_render_events_line=function(a,i){function n(e){var t=r(e.start_date); 10 | 11 | return+e.end_date>+t}function r(e){var t=scheduler.date.add(e,1,"day");return t=scheduler.date.date_part(t)}function l(e,t){var a=scheduler.date.date_part(new Date(e));return a.setHours(t),a}if(!this.config.all_timed)return t.call(this,a,i);for(var d=0;dthis._min_date&&s.start_date=i&&(c=!1)}else a.length>=i&&(c=!1);if(!c){var h=!scheduler.callEvent("onEventCollision",[e,a]);return h||(e[_]=t||e[_]),h}return c}}(); 15 | //# sourceMappingURL=../sources/ext/dhtmlxscheduler_collision.js.map -------------------------------------------------------------------------------- /libs/scheduler/ext/dhtmlxscheduler_container_autoresize.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | dhtmlxScheduler v.4.3.1 4 | 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | !function(){scheduler.config.container_autoresize=!0,scheduler.config.month_day_min_height=90;var e=scheduler._pre_render_events,t=!0;scheduler._pre_render_events=function(a,i){if(!scheduler.config.container_autoresize||!t)return e.apply(this,arguments);var n=this.xy.bar_height,l=this._colsS.heights,r=this._colsS.heights=[0,0,0,0,0,0,0],d=this._els.dhx_cal_data[0];if(a=this._table_view?this._pre_render_events_table(a,i):this._pre_render_events_line(a,i),this._table_view)if(i)this._colsS.heights=l; 10 | else{var o=d.firstChild;if(o.rows){for(var s=0;sthis._colsS.height-this.xy.month_head_height){var _=o.rows[s].cells,c=this._colsS.height-this.xy.month_head_height;1*this.config.max_month_events!==this.config.max_month_events||r[s]<=this.config.max_month_events?c=r[s]*n:(this.config.max_month_events+1)*n>this._colsS.height-this.xy.month_head_height&&(c=(this.config.max_month_events+1)*n);for(var u=0;u<_.length;u++)_[u].childNodes[1].style.height=c+"px";r[s]=(r[s-1]||0)+_[0].offsetHeight; 11 | 12 | }r[s]=(r[s-1]||0)+o.rows[s].cells[0].offsetHeight}r.unshift(0),o.parentNode.offsetHeight0){var a=document.cookie.indexOf(t);if(-1!=a){a+=t.length;var i=document.cookie.indexOf(";",a);return-1==i&&(i=document.cookie.length),document.cookie.substring(a,i)}}return""}var a=!0;scheduler.attachEvent("onBeforeViewChange",function(i,n,l,r){if(a&&scheduler._get_url_nav){var d=scheduler._get_url_nav();(d.date||d.mode||d.event)&&(a=!1)}if(a){a=!1;var o=t("scheduler_settings"); 10 | 11 | if(o){scheduler._min_date||(scheduler._min_date=r),o=unescape(o).split("@"),o[0]=this.templates.xml_date(o[0]);var s=this.isViewExists(o[1])?o[1]:l,_=isNaN(+o[0])?r:o[0];return window.setTimeout(function(){scheduler.setCurrentView(_,s)},1),!1}}var c=escape(this.templates.xml_format(r||n)+"@"+(l||i));return e("scheduler_settings","expires=Sun, 31 Jan 9999 22:00:00 GMT",c),!0});var i=scheduler._load;scheduler._load=function(){var e=arguments;if(!scheduler._date&&scheduler._load_mode){var t=this;window.setTimeout(function(){ 12 | i.apply(t,e)},1)}else i.apply(this,e)}}(); 13 | //# sourceMappingURL=../sources/ext/dhtmlxscheduler_cookie.js.map -------------------------------------------------------------------------------- /libs/scheduler/ext/dhtmlxscheduler_editors.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | dhtmlxScheduler v.4.3.1 4 | 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | scheduler.form_blocks.combo={render:function(e){e.cached_options||(e.cached_options={});var t="";return t+="
"},set_value:function(e,t,a,i){!function(){function t(){if(e._combo&&e._combo.DOMParent){var t=e._combo;t.unload?t.unload():t.destructor&&t.destructor(),t.DOMParent=t.DOMelem=null}}t();var a=scheduler.attachEvent("onAfterLightbox",function(){t(),scheduler.detachEvent(a)})}(),window.dhx_globalImgPath=i.image_path||"/",e._combo=new dhtmlXCombo(e,i.name,e.offsetWidth-8), 10 | i.onchange&&e._combo.attachEvent("onChange",i.onchange),i.options_height&&e._combo.setOptionHeight(i.options_height);var n=e._combo;if(n.enableFilteringMode(i.filtering,i.script_path||null,!!i.cache),i.script_path){var r=a[i.map_to];r?i.cached_options[r]?(n.addOption(r,i.cached_options[r]),n.disable(1),n.selectOption(0),n.disable(0)):dhtmlxAjax.get(i.script_path+"?id="+r+"&uid="+scheduler.uid(),function(e){var t=e.doXPath("//option")[0],a=t.childNodes[0].nodeValue;i.cached_options[r]=a,n.addOption(r,a), 11 | n.disable(1),n.selectOption(0),n.disable(0)}):n.setComboValue("")}else{for(var l=[],d=0;d"; 12 | 13 | for(var a=0;a",e.vertical&&(t+="
")}return t+=""},set_value:function(e,t,a,i){for(var n=e.getElementsByTagName("input"),r=0;r":""},set_value:function(e,t,a,i){e=document.getElementById(i.id);var n=scheduler.uid(),r="undefined"!=typeof i.checked_value?t==i.checked_value:!!t;e.className+=" dhx_cal_checkbox";var l="",d=""; 16 | 17 | if(scheduler.config.wide_form?(e.innerHTML=d,e.nextSibling.innerHTML=l):e.innerHTML=l+d,i.handler){var o=e.getElementsByTagName("input")[0];o.onclick=i.handler}},get_value:function(e,t,a){e=document.getElementById(a.id);var i=e.getElementsByTagName("input")[0];return i||(i=e.nextSibling.getElementsByTagName("input")[0]),i.checked?a.checked_value||!0:a.unchecked_value||!1},focus:function(e){}}; 18 | //# sourceMappingURL=../sources/ext/dhtmlxscheduler_editors.js.map -------------------------------------------------------------------------------- /libs/scheduler/ext/dhtmlxscheduler_expand.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | dhtmlxScheduler v.4.3.1 4 | 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | scheduler.expand=function(){if(scheduler.callEvent("onBeforeExpand",[])){var e=scheduler._obj;do e._position=e.style.position||"",e.style.position="static";while((e=e.parentNode)&&e.style);e=scheduler._obj,e.style.position="absolute",e._width=e.style.width,e._height=e.style.height,e.style.width=e.style.height="100%",e.style.top=e.style.left="0px";var t=document.body;t.scrollTop=0,t=t.parentNode,t&&(t.scrollTop=0),document.body._overflow=document.body.style.overflow||"",document.body.style.overflow="hidden", 10 | scheduler._maximize(),scheduler.callEvent("onExpand",[])}},scheduler.collapse=function(){if(scheduler.callEvent("onBeforeCollapse",[])){var e=scheduler._obj;do e.style.position=e._position;while((e=e.parentNode)&&e.style);e=scheduler._obj,e.style.width=e._width,e.style.height=e._height,document.body.style.overflow=document.body._overflow,scheduler._maximize(),scheduler.callEvent("onCollapse",[])}},scheduler.attachEvent("onTemplatesReady",function(){var e=document.createElement("DIV");e.className="dhx_expand_icon", 11 | scheduler.toggleIcon=e,scheduler._obj.appendChild(e),e.onclick=function(){scheduler.expanded?scheduler.collapse():scheduler.expand()}}),scheduler._maximize=function(){this.expanded=!this.expanded,this.toggleIcon.style.backgroundPosition="0 "+(this.expanded?"0":"18")+"px";for(var e=["left","top"],t=0;t",a=0;a"+e.options[a].label+"",convertStringToBoolean(e.vertical)&&(t+="
");return t+=""},set_value:function(e,t,a,r){function n(t){for(var a=e.getElementsByTagName("input"),r=0;r=0;l--){var a=i[l];if(r){var d=document.createElement("SPAN");d.className="dhx_text_disabled",d.innerHTML=r(n[l]),a.parentNode.insertBefore(d,a),a.parentNode.removeChild(a)}else a.disabled=!0,t.checked&&(a.checked=!0)}}var t=scheduler.config.lightbox.sections.slice(),a=scheduler.config.buttons_left.slice(),r=scheduler.config.buttons_right.slice();scheduler.attachEvent("onBeforeLightbox",function(e){ 10 | if(this.config.readonly_form||this.getEvent(e).readonly){this.config.readonly_active=!0;for(var n=0;n");for(var l=0;l");t.push("")}return(e||"")+""+t.join("\n")+""},scheduler._serialize_json_value=function(e){return null===e||"boolean"==typeof e?e=""+e:(e||0===e||(e=""),e='"'+e.toString().replace(/\n/g,"").replace(/\\/g,"\\\\").replace(/\"/g,'\\"')+'"'),e},scheduler.toJSON=function(){var e=[],t="",a=this.data_attributes(),r=this._get_serializable_data(); 11 | 12 | for(var n in r){for(var i=r[n],l=[],d=0;dd?n.left=i.x+Math.abs(a.config.delta_x||0)+"px":n.left=d+"px", 12 | document.body.offsetHeight-s-_<0?(n.removeAttribute?n.removeAttribute("top"):n.removeProperty("top"),n.bottom=document.body.offsetHeight-s-2*(a.config.delta_y||0)+"px"):0>s?n.top=i.y+Math.abs(a.config.delta_y||0)+"px":n.top=s+"px",n.visibility="visible",this.tooltip.onmouseleave=function(e){e=e||window.event;for(var t=scheduler.dhtmlXTooltip,a=e.relatedTarget;a!=scheduler._obj&&a;)a=a.parentNode;a!=scheduler._obj&&t.delay(t.hide,t,[],t.config.timeout_to_hide)},scheduler.callEvent("onTooltipDisplayed",[this.tooltip,this.tooltip.event_id]); 13 | 14 | }}},dhtmlXTooltip._clearTimeout=function(){this.tooltip._timeout_id&&window.clearTimeout(this.tooltip._timeout_id)},dhtmlXTooltip.hide=function(){if(this.tooltip.parentNode){var e=this.tooltip.event_id;this.tooltip.event_id=null,this.tooltip.onmouseleave=null,this.tooltip.parentNode.removeChild(this.tooltip),scheduler.callEvent("onAfterTooltip",[e])}this._clearTimeout()},dhtmlXTooltip.delay=function(e,t,a,r){this._clearTimeout(),this.tooltip._timeout_id=setTimeout(function(){var r=e.apply(t,a);return e=t=a=null, 15 | r},r||this.config.timeout_to_display)},dhtmlXTooltip.isTooltip=function(e){var t=!1;for("dhtmlXTooltip"==e.className.split(" ")[0];e&&!t;)t=e.className==this.tooltip.className,e=e.parentNode;return t},dhtmlXTooltip.position=function(e){if(e=e||window.event,e.pageX||e.pageY)return{x:e.pageX,y:e.pageY};var t=window._isIE&&"BackCompat"!=document.compatMode?document.documentElement:document.body;return{x:e.clientX+t.scrollLeft-t.clientLeft,y:e.clientY+t.scrollTop-t.clientTop}},scheduler.attachEvent("onMouseMove",function(e,t){ 16 | var a=window.event||t,r=a.target||a.srcElement,n=dhtmlXTooltip,i=n.isTooltip(r),l=n.isTooltipTarget&&n.isTooltipTarget(r);if(e||i||l){var d;if(e||n.tooltip.event_id){var s=scheduler.getEvent(e)||scheduler.getEvent(n.tooltip.event_id);if(!s)return;if(n.tooltip.event_id=s.id,d=scheduler.templates.tooltip_text(s.start_date,s.end_date,s),!d)return n.hide()}l&&(d="");var o;if(_isIE){o={pageX:void 0,pageY:void 0,clientX:void 0,clientY:void 0,target:void 0,srcElement:void 0};for(var _ in o)o[_]=a[_]}if(!scheduler.callEvent("onBeforeTooltip",[e])||!d)return; 17 | 18 | n.delay(n.show,n,[o||a,d])}else n.delay(n.hide,n,[],n.config.timeout_to_hide)}),scheduler.attachEvent("onBeforeDrag",function(){return dhtmlXTooltip.hide(),!0}),scheduler.attachEvent("onEventDeleted",function(){return dhtmlXTooltip.hide(),!0}),scheduler.templates.tooltip_date_format=scheduler.date.date_to_str("%Y-%m-%d %H:%i"),scheduler.templates.tooltip_text=function(e,t,a){return"Event: "+a.text+"
Start date: "+scheduler.templates.tooltip_date_format(e)+"
End date: "+scheduler.templates.tooltip_date_format(t); 19 | 20 | }; 21 | //# sourceMappingURL=../sources/ext/dhtmlxscheduler_tooltip.js.map -------------------------------------------------------------------------------- /libs/scheduler/ext/dhtmlxscheduler_url.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | dhtmlxScheduler v.4.3.1 4 | 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | scheduler._get_url_nav=function(){for(var e={},t=(document.location.hash||"").replace("#","").split(","),a=0;a
'; 10 | 11 | //# sourceMappingURL=../../sources/locale/recurring/locale_recurring_cn.js.map -------------------------------------------------------------------------------- /libs/scheduler/locale/recurring/locale_recurring_cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | dhtmlxScheduler v.4.3.1 4 | 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | scheduler.__recurring_template='



Den každéhoMěsíc
každýMěsíc

Události

'; 10 | 11 | //# sourceMappingURL=../../sources/locale/recurring/locale_recurring_cs.js.map -------------------------------------------------------------------------------- /libs/scheduler/locale/recurring/locale_recurring_en.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | dhtmlxScheduler v.4.3.1 4 | 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | scheduler.__recurring_template='



day everymonth
everymonth

occurrences

'; 10 | 11 | //# sourceMappingURL=../../sources/locale/recurring/locale_recurring_en.js.map -------------------------------------------------------------------------------- /libs/scheduler/locale/recurring/locale_recurring_pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | dhtmlxScheduler v.4.3.1 4 | 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | scheduler.__recurring_template='



todo diamês
todomês

ocorrências

'; 10 | 11 | //# sourceMappingURL=../../sources/locale/recurring/locale_recurring_pt.js.map -------------------------------------------------------------------------------- /libs/scheduler/locale/recurring/locale_recurring_sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | dhtmlxScheduler v.4.3.1 4 | 5 | This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited. 6 | 7 | (c) Dinamenta, UAB. 8 | */ 9 | scheduler.__recurring_template='



deò každýmesiac
každýmesiac

udalostiach

'; 10 | 11 | //# sourceMappingURL=../../sources/locale/recurring/locale_recurring_sk.js.map -------------------------------------------------------------------------------- /libs/scheduler/locale/recurring/repeat_template_sk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webix-hub/web-desktop/0e35d7e7d2f1f8f36cdb89f203bc0f335ddbec1f/libs/scheduler/locale/recurring/repeat_template_sk.html --------------------------------------------------------------------------------