mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-24 15:48:55 +01:00
New dhtmlxGantt library, and etemplate2 widget to use it (work in progress)
This commit is contained in:
parent
3b68b8bff8
commit
c4f56f2c3b
438
etemplate/js/et2_widget_gantt.js
Normal file
438
etemplate/js/et2_widget_gantt.js
Normal file
@ -0,0 +1,438 @@
|
||||
/**
|
||||
* EGroupware eTemplate2 - JS widget for GANTT chart
|
||||
*
|
||||
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
||||
* @package etemplate
|
||||
* @subpackage api
|
||||
* @link http://www.egroupware.org
|
||||
* @author Nathan Gray
|
||||
* @copyright Nathan Gray 2014
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
/*egw:uses
|
||||
jsapi.jsapi;
|
||||
jquery.jquery;
|
||||
/phpgwapi/js/dhtmlxtree/js/dhtmlXCommon.js; // otherwise gantt breaks
|
||||
/phpgwapi/js/dhtmlxGantt/codebase/dhtmlxgantt.js;
|
||||
et2_core_inputWidget;
|
||||
*/
|
||||
|
||||
/**
|
||||
* Gantt chart
|
||||
*
|
||||
* The gantt widget allows children, which are displayed as a header. Any child input
|
||||
* widgets are bound as live filters on existing data. The filter is done based on
|
||||
* widget ID, such that the value of the widget must match that attribute in the task
|
||||
* or the task will not be displayed. There is special handling for
|
||||
* date widgets with IDs 'start_date' and 'end_date' to filter as an inclusive range
|
||||
* instead of simple equality.
|
||||
*
|
||||
* @see http://docs.dhtmlx.com/gantt/index.html
|
||||
* @augments et2_valueWidget
|
||||
*/
|
||||
var et2_gantt = et2_valueWidget.extend(
|
||||
{
|
||||
// Filters are inside gantt namespace
|
||||
createNamespace: true,
|
||||
|
||||
attributes: {
|
||||
"autoload": {
|
||||
"name": "Autoload",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "JSON URL or menuaction to be called for projects with no, GET parameter selected contains id"
|
||||
},
|
||||
value: {type: 'any'}
|
||||
},
|
||||
|
||||
// Common configuration for Egroupware/eTemplate
|
||||
gantt_config: {
|
||||
// Gantt takes a different format of date format, all the placeholders are prefixed with '%'
|
||||
api_date: '%Y-%n-%d %H:%i:%s',
|
||||
xml_date: '%Y-%n-%d %H:%i:%s',
|
||||
|
||||
// Duration is a unitless field. This is the unit.
|
||||
duration_unit: 'minute',
|
||||
|
||||
show_progress: true,
|
||||
min_column_width: 30,
|
||||
fit_tasks: true,
|
||||
autosize: 'y',
|
||||
scale_unit: 'day',
|
||||
date_scale: '%d',//(egw.preference('dateformat')).replace(/[YMmdhHisaA]/g,function(a) {return '%'+a;}),
|
||||
subscales: [
|
||||
{unit:"month", step:1, date:"%F, %Y"},
|
||||
//{unit:"hour", step:1, date:"%G"}
|
||||
],
|
||||
columns: [
|
||||
{name: "text", label: egw.lang('Title'), tree: true, width: '*'}
|
||||
]
|
||||
},
|
||||
|
||||
init: function(_parent, _attrs) {
|
||||
// _super.apply is responsible for the actual setting of the params (some magic)
|
||||
this._super.apply(this, arguments);
|
||||
|
||||
// Gantt instance
|
||||
this.gantt = null;
|
||||
|
||||
// Filters
|
||||
// Gantt chart empties its div on creation, so we don't add filters to main
|
||||
// DOM node until after
|
||||
this.filters = $j(document.createElement("div"))
|
||||
.addClass('et2_gantt_header');
|
||||
|
||||
this.htmlNode = $j(document.createElement("div"))
|
||||
.css('height', this.options.height)
|
||||
.addClass('et2_gantt');
|
||||
this.setDOMNode(this.htmlNode[0]);
|
||||
},
|
||||
|
||||
destroy: function() {
|
||||
if(this.gantt !== null)
|
||||
{
|
||||
this.gantt.detachAllEvents();
|
||||
this.gantt.clearAll();
|
||||
this.gantt = null;
|
||||
|
||||
this._super.apply(this, arguments);}
|
||||
|
||||
this.htmlNode.remove();
|
||||
this.htmlNode = null;
|
||||
},
|
||||
|
||||
doLoadingFinished: function() {
|
||||
this._super.apply(this, arguments);
|
||||
if(this.gantt != null) return false;
|
||||
|
||||
var config = jQuery.extend({}, this.gantt_config);
|
||||
|
||||
// Set initial values for start and end, if those filters exist
|
||||
var start_date = this.getWidgetById('start_date');
|
||||
var end_date = this.getWidgetById('end_date');
|
||||
if(start_date)
|
||||
{
|
||||
config.start_date = start_date.getValue() ? new Date(start_date.getValue() * 1000) : null;
|
||||
}
|
||||
if(end_date)
|
||||
{
|
||||
config.end_date = end_date.getValue() ? new Date(end_date.getValue() * 1000): null;
|
||||
}
|
||||
|
||||
// Initialize chart
|
||||
this.gantt = $j(this.htmlNode).dhx_gantt(config);
|
||||
|
||||
// Gantt empties the div, so put any children in now
|
||||
this.htmlNode.prepend(this.filters);
|
||||
|
||||
if(this.options.value)
|
||||
{
|
||||
this.set_value(this.options.value);
|
||||
}
|
||||
|
||||
// Update start & end dates with chart values for consistency
|
||||
if(start_date)
|
||||
{
|
||||
start_date.set_value(this.gantt.getState().min_date);
|
||||
}
|
||||
if(end_date)
|
||||
{
|
||||
end_date.set_value(this.gantt.getState().max_date);
|
||||
}
|
||||
|
||||
// Bind some events to make things nice and et2
|
||||
this._bindGanttEvents();
|
||||
|
||||
this._bindChildren();
|
||||
|
||||
return true;
|
||||
},
|
||||
|
||||
getDOMNode: function(_sender) {
|
||||
// Return filter container for children
|
||||
if (_sender != this && this._children.indexOf(_sender) != -1)
|
||||
{
|
||||
return this.filters[0];
|
||||
}
|
||||
|
||||
// Normally simply return the main div
|
||||
return this._super.apply(this, arguments);
|
||||
},
|
||||
|
||||
/**
|
||||
* Sets the data to be displayed in the gantt chart.
|
||||
*
|
||||
* Data is a JSON object with 'data' and 'links', both of which are arrays.
|
||||
* {
|
||||
* data:[
|
||||
* {id:1, text:"Project #1", start_date:"01-04-2013", duration:18},
|
||||
* {id:2, text:"Task #1", start_date:"02-04-2013", duration:8, parent:1},
|
||||
* {id:3, text:"Task #2", start_date:"11-04-2013", duration:8, parent:1}
|
||||
* ],
|
||||
* links:[
|
||||
* {id:1, source:1, target:2, type:"1"},
|
||||
* {id:2, source:2, target:3, type:"0"}
|
||||
* ]
|
||||
* };
|
||||
* Any additional data can be included and used, but the above is the minimum
|
||||
* required data.
|
||||
*
|
||||
* @see http://docs.dhtmlx.com/gantt/desktop__loading.html
|
||||
*/
|
||||
set_value: function(value) {
|
||||
if(this.gantt == null) return false;
|
||||
|
||||
// Ensure proper format, no extras
|
||||
var safe_value = {
|
||||
data: value.data || [],
|
||||
links: value.links || []
|
||||
};
|
||||
this.gantt.parse(safe_value);
|
||||
|
||||
// Set some things from the value
|
||||
|
||||
// Set zoom
|
||||
if(!this.options.zoom) this.set_zoom();
|
||||
|
||||
// If this is not the first gantt chart the browser renders, sometimes it needs a nudge
|
||||
try
|
||||
{
|
||||
this.gantt.render();
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
this.egw().debug('warning', 'Problem rendering gantt', e);
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Set a URL to fetch the data from the server.
|
||||
* Data must be in the specified format.
|
||||
* @see http://docs.dhtmlx.com/gantt/desktop__loading.html
|
||||
*/
|
||||
set_autoload: function(url) {
|
||||
if(this.gantt == null) return false;
|
||||
this.options.autoloading = url;
|
||||
|
||||
throw new Exception('Not implemented yet - apparently loading segments is not supported automatically');
|
||||
},
|
||||
|
||||
/**
|
||||
* Sets the level of detail for the chart, which adjusts the scale(s) across the
|
||||
* top and the granularity of the drag grid.
|
||||
*
|
||||
* Gantt chart needs a render() after changing.
|
||||
*
|
||||
* @param {int} level Higher levels show more grid, at larger granularity.
|
||||
* @return {int} Current level
|
||||
*/
|
||||
set_zoom: function(level) {
|
||||
|
||||
var subscales = [];
|
||||
var scale_unit = 'day';
|
||||
var date_scale = '%d';
|
||||
var step = 1;
|
||||
|
||||
// No level? Auto calculate.
|
||||
if(level > 4) level = 4;
|
||||
if(!level || level < 1) {
|
||||
// Make sure we have the most up to date info for the calculations
|
||||
// There may be a more efficient way to trigger this though
|
||||
try {
|
||||
this.gantt.render();
|
||||
}
|
||||
catch (e)
|
||||
{}
|
||||
|
||||
var difference = (this.gantt.getState().max_date - this.gantt.getState().min_date)/1000; // seconds
|
||||
// Spans more than a year
|
||||
if(difference > 31536000 || this.gantt.getState().max_date.getFullYear() != this.gantt.getState().min_date.getFullYear())
|
||||
{
|
||||
level = 4;
|
||||
}
|
||||
// More than 2 months
|
||||
else if(difference > 5256000 || this.gantt.getState().max_date.getMonth() != this.gantt.getState().min_date.getMonth())
|
||||
{
|
||||
level = 3;
|
||||
}
|
||||
// More than 3 days
|
||||
else if (difference > 259200)
|
||||
{
|
||||
level = 2;
|
||||
}
|
||||
else
|
||||
{
|
||||
level = 1;
|
||||
}
|
||||
}
|
||||
|
||||
// Adjust Gantt settings for specified level
|
||||
switch(level)
|
||||
{
|
||||
case 4:
|
||||
// A year or more, scale in weeks
|
||||
subscales.push({unit: "month", step: 1, date: '%F %Y'});
|
||||
scale_unit = 'week';
|
||||
date_scale= '#%W';
|
||||
break;
|
||||
case 3:
|
||||
// Less than a year, several months
|
||||
subscales.push({unit: "month", step: 1, date: '%F'});
|
||||
break;
|
||||
case 2:
|
||||
default:
|
||||
// About a month
|
||||
subscales.push({unit: "day", step: 1, date: '%F %d'});
|
||||
scale_unit = 'hour';
|
||||
date_scale = this.egw().preference('timeformat') == '24' ? "%G" : "%g";
|
||||
break;
|
||||
case 1:
|
||||
// A day or two, scale in Minutes
|
||||
subscales.push({unit: "day", step: 1, date: '%F %d'});
|
||||
date_scale = this.egw().preference('timeformat') == '24' ? "%G:%i" : "%g:%i";
|
||||
|
||||
step = 1;//this.egw().preference('interval','calendar') || 15;
|
||||
scale_unit = 'hour';
|
||||
}
|
||||
|
||||
// Apply settings
|
||||
this.gantt.config.subscales = subscales;
|
||||
this.gantt.config.scale_unit = scale_unit;
|
||||
this.gantt.config.date_scale = date_scale;
|
||||
this.gantt.config.step = step;
|
||||
|
||||
return level;
|
||||
},
|
||||
|
||||
/**
|
||||
* Bind all the internal gantt events for nice widget actions
|
||||
*/
|
||||
_bindGanttEvents: function() {
|
||||
var gantt_widget = this;
|
||||
|
||||
// Double click
|
||||
this.gantt.attachEvent("onBeforeLightbox", function(id) {
|
||||
var task = this.getTask(id);
|
||||
if(task.pe_app)
|
||||
{
|
||||
gantt_widget.egw().open(task.pe_app_id, task.pe_app);
|
||||
}
|
||||
else
|
||||
{
|
||||
gantt_widget.egw().open(id, 'projectmanager');
|
||||
}
|
||||
|
||||
// Don't do gantt default actions
|
||||
return false;
|
||||
});
|
||||
|
||||
// Bind AJAX for dynamic expansion
|
||||
this.gantt.attachEvent("onTaskOpened", function(id, item) {
|
||||
// Node children are already there & displayed
|
||||
// TODO: Load children of children of this node.
|
||||
debugger;
|
||||
});
|
||||
|
||||
// Filters
|
||||
this.gantt.attachEvent("onBeforeTaskDisplay", function(id, task) {
|
||||
var display = true;
|
||||
gantt_widget.iterateOver(function(_widget){
|
||||
switch(_widget.id)
|
||||
{
|
||||
// Start and end date are an interval. Also update the chart to
|
||||
// display those dates. Special handling because date widgets give
|
||||
// value in timestamp (seconds), gantt wants Date object (ms)
|
||||
case 'start_date':
|
||||
if(_widget.getValue())
|
||||
{
|
||||
display = display && ((task[_widget.id].valueOf() / 1000) >= _widget.getValue());
|
||||
}
|
||||
return;
|
||||
case 'end_date':
|
||||
// End date is not actually a required field, so accept undefined too
|
||||
if(_widget.getValue())
|
||||
{
|
||||
display = display && (typeof task[_widget.id] == 'undefined' || !task[_widget.id] || ((task[_widget.id].valueOf() / 1000) <= _widget.getValue()));
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
// Regular equality comparison
|
||||
if(_widget.getValue() && typeof task[_widget.id] != 'undefined' && task[_widget.id] != _widget.getValue())
|
||||
{
|
||||
display = false;
|
||||
}
|
||||
},gantt_widget, et2_inputWidget);
|
||||
return display;
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* Bind onchange for any child input widgets
|
||||
*/
|
||||
_bindChildren: function() {
|
||||
var gantt_widget = this;
|
||||
this.iterateOver(function(_widget){
|
||||
// Existing change function
|
||||
var widget_change = _widget.change;
|
||||
|
||||
var change = function(_node) {
|
||||
// Call previously set change function
|
||||
var result = widget_change.call(_widget,_node);
|
||||
|
||||
// Update filters
|
||||
if(result && _widget.isDirty()) {
|
||||
// Update dirty
|
||||
_widget._oldValue = _widget.getValue();
|
||||
|
||||
// Start date & end date change the display
|
||||
if(_widget.id == 'start_date' || _widget.id == 'end_date')
|
||||
{
|
||||
var start = this.getWidgetById('start_date');
|
||||
var end = this.getWidgetById('end_date');
|
||||
gantt_widget.gantt.config.start_date = start && start.getValue() ? new Date(start.getValue() * 1000) : gantt_widget.gantt.getState().min_date;
|
||||
gantt_widget.gantt.config.end_date = end && end.getValue() ? new Date(end.getValue() * 1000) : gantt_widget.gantt.getState().max_date;
|
||||
if(gantt_widget.gantt.config.end_date <= gantt_widget.gantt.config.start_date)
|
||||
{
|
||||
gantt_widget.gantt.config.end_date = null;
|
||||
if(end) end.set_value(null);
|
||||
}
|
||||
gantt_widget.set_zoom();
|
||||
gantt_widget.gantt.render();
|
||||
}
|
||||
|
||||
gantt_widget.gantt.refreshData();
|
||||
}
|
||||
// In case this gets bound twice, it's important to return
|
||||
return true;
|
||||
};
|
||||
|
||||
if(_widget.change != change) _widget.change = change;
|
||||
}, this, et2_inputWidget);
|
||||
}
|
||||
});
|
||||
et2_register_widget(et2_gantt, ["gantt"]);
|
||||
|
||||
/**
|
||||
* Common look, feel & settings for all Gantt charts
|
||||
*/
|
||||
// Localize to user's language - breaks if file is not there
|
||||
//egw.includeJS("/phpgwapi/js/dhtmlxGantt/codebase/locale/locale_" + egw.preference('lang') + ".js");
|
||||
|
||||
// Set icon to match application
|
||||
gantt.templates.grid_file = function(item) {
|
||||
if(!item.pe_app || !egw.image(item.pe_icon)) return "<div class='gantt_tree_icon gantt_file'></div>";
|
||||
return "<div class='gantt_tree_icon' style='background-image: url(\"" + egw.image(item.pe_icon) + "\");'/></div>";
|
||||
}
|
||||
|
||||
// Show nicer intervals in minute duration
|
||||
gantt.templates.date_scale = function(date) {
|
||||
if(gantt.config.scale_unit == 'minute')
|
||||
{
|
||||
date.setMinutes((date.getMinutes() % this.gantt.config.step) * this.gantt.config.step);
|
||||
}
|
||||
return gantt.date.date_to_str(gantt.config.date_scale)(date);
|
||||
}
|
@ -33,6 +33,7 @@
|
||||
et2_widget_dropdown_button;
|
||||
et2_widget_styles;
|
||||
et2_widget_favorites;
|
||||
et2_widget_gantt;
|
||||
et2_widget_html;
|
||||
et2_widget_htmlarea;
|
||||
et2_widget_tabs;
|
||||
|
@ -8,6 +8,11 @@
|
||||
*/
|
||||
@import url("../../../phpgwapi/js/jquery/magicsuggest/src/magicsuggest-1.3.1.css");
|
||||
|
||||
/**
|
||||
* dhtmlXgantt chart
|
||||
*/
|
||||
@import url("../../../phpgwapi/js/dhtmlxGantt/codebase/dhtmlxgantt.css");
|
||||
|
||||
/**
|
||||
* Top level
|
||||
*/
|
||||
@ -1389,6 +1394,18 @@ div.ui-toolbar-menulist{
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.et2_gantt
|
||||
{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-height: 300px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.et2_gantt .gantt_tree_icon
|
||||
{
|
||||
background-size: 18px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Do not wrap content of a single widget incl. a label or children of a hbox.
|
||||
* Taking into eg. select-account widget rendered as ul and prefixed with a label
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
13
phpgwapi/js/dhtmlxGantt/codebase/ext/dhtmlxgantt_quick_info.js
Executable file
13
phpgwapi/js/dhtmlxGantt/codebase/ext/dhtmlxgantt_quick_info.js
Executable file
@ -0,0 +1,13 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
gantt.config.quickinfo_buttons=["icon_delete","icon_edit"],gantt.config.quick_info_detached=!0,gantt.attachEvent("onTaskClick",function(t){return gantt.showQuickInfo(t),!0}),function(){for(var t=["onEmptyClick","onViewChange","onLightbox","onBeforeTaskDelete","onBeforeDrag"],i=function(){return gantt._hideQuickInfo(),!0},n=0;n<t.length;n++)gantt.attachEvent(t[n],i)}(),gantt.templates.quick_info_title=function(t,i,n){return n.text.substr(0,50)},gantt.templates.quick_info_content=function(t,i,n){return n.details||n.text
|
||||
},gantt.templates.quick_info_date=function(t,i,n){return gantt.templates.task_time(t,i,n)},gantt.showQuickInfo=function(t){if(t!=this._quick_info_box_id){this.hideQuickInfo(!0);var i=this._get_event_counter_part(t);i&&(this._quick_info_box=this._init_quick_info(i),this._fill_quick_data(t),this._show_quick_info(i))}},gantt._hideQuickInfo=function(){gantt.hideQuickInfo()},gantt.hideQuickInfo=function(t){var i=this._quick_info_box;if(this._quick_info_box_id=0,i&&i.parentNode){if(gantt.config.quick_info_detached)return i.parentNode.removeChild(i);
|
||||
"auto"==i.style.right?i.style.left="-350px":i.style.right="-350px",t&&i.parentNode.removeChild(i)}},dhtmlxEvent(window,"keydown",function(t){27==t.keyCode&&gantt.hideQuickInfo()}),gantt._show_quick_info=function(t){var i=gantt._quick_info_box;if(gantt.config.quick_info_detached){i.parentNode&&"#document-fragment"!=i.parentNode.nodeName.toLowerCase()||gantt.$task_data.appendChild(i);var n=i.offsetWidth,e=i.offsetHeight,a=this.getScrollState(),o=this.$task.offsetWidth+a.x-n;i.style.left=Math.min(Math.max(a.x,t.left-t.dx*(n-t.width)),o)+"px",i.style.top=t.top-(t.dy?e:-t.height)-25+"px"
|
||||
}else i.style.top="20px",1==t.dx?(i.style.right="auto",i.style.left="-300px",setTimeout(function(){i.style.left="-10px"},1)):(i.style.left="auto",i.style.right="-300px",setTimeout(function(){i.style.right="-10px"},1)),i.className=i.className.replace("dhx_qi_left","").replace("dhx_qi_left","")+" dhx_qi_"+(1==t?"left":"right"),gantt._obj.appendChild(i)},gantt._init_quick_info=function(){if(!this._quick_info_box){var t=this._quick_info_box=document.createElement("div");t.className="dhx_cal_quick_info",gantt.$testmode&&(t.className+=" dhx_no_animate");
|
||||
var i='<div class="dhx_cal_qi_title"><div class="dhx_cal_qi_tcontent"></div><div class="dhx_cal_qi_tdate"></div></div><div class="dhx_cal_qi_content"></div>';i+='<div class="dhx_cal_qi_controls">';for(var n=gantt.config.quickinfo_buttons,e=0;e<n.length;e++)i+='<div class="dhx_qi_big_icon '+n[e]+'" title="'+gantt.locale.labels[n[e]]+"\"><div class='dhx_menu_icon "+n[e]+"'></div><div>"+gantt.locale.labels[n[e]]+"</div></div>";i+="</div>",t.innerHTML=i,dhtmlxEvent(t,"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 i=gantt._quick_info_box;if(t&&t!=i){var n=t.className;if(-1!=n.indexOf("_icon")){var e=gantt._quick_info_box_id;gantt.$click.buttons[n.split(" ")[1].replace("icon_","")](e)}else gantt._qi_button_click(t.parentNode)}},gantt._get_event_counter_part=function(t){for(var i=gantt.getTaskNode(t),n=0,e=0,a=i;a&&"gantt_task"!=a.className;)n+=a.offsetLeft,e+=a.offsetTop,a=a.offsetParent;
|
||||
var o=this.getScrollState();if(a){var _=n+i.offsetWidth/2-o.x>gantt._x/2?1:0,c=e+i.offsetHeight/2-o.y>gantt._y/2?1:0;return{left:n,top:e,dx:_,dy:c,width:i.offsetWidth,height:i.offsetHeight}}return 0},gantt._fill_quick_data=function(t){var i=gantt.getTask(t),n=gantt._quick_info_box;gantt._quick_info_box_id=t;var e=n.firstChild.firstChild;e.innerHTML=gantt.templates.quick_info_title(i.start_date,i.end_date,i);var a=e.nextSibling;a.innerHTML=gantt.templates.quick_info_date(i.start_date,i.end_date,i);
|
||||
var o=n.firstChild.nextSibling;o.innerHTML=gantt.templates.quick_info_content(i.start_date,i.end_date,i)};
|
||||
//# sourceMappingURL=../sources/ext/dhtmlxgantt_quick_info.js.map
|
10
phpgwapi/js/dhtmlxGantt/codebase/ext/dhtmlxgantt_tooltip.js
Executable file
10
phpgwapi/js/dhtmlxGantt/codebase/ext/dhtmlxgantt_tooltip.js
Executable file
@ -0,0 +1,10 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
gantt._tooltip={},gantt._tooltip_class="gantt_tooltip",gantt.config.tooltip_timeout=30,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._show_tooltip=function(t,i){if(!gantt.config.touch||gantt.config.touch_tooltip){var e=this._create_tooltip();e.innerHTML=t,gantt.$task_data.appendChild(e);var n=e.offsetWidth+20,o=e.offsetHeight+40,a=this.$task.offsetHeight,_=this.$task.offsetWidth,l=this.getScrollState();
|
||||
i.x+=l.x,i.y+=l.y,i.y=Math.min(Math.max(l.y,i.y),l.y+a-o),i.x=Math.min(Math.max(l.x,i.x),l.x+_-n),e.style.left=i.x+"px",e.style.top=i.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 i=t.target||t.srcElement;return gantt._is_node_child(i,function(t){return t.className==this._tooltip_class})},gantt._is_task_line=function(t){var i=t.target||t.srcElement;
|
||||
return gantt._is_node_child(i,function(t){return t==this.$task_data})},gantt._is_node_child=function(t,i){for(var e=!1;t&&!e;)e=i.call(gantt,t),t=t.parentNode;return e},gantt._tooltip_pos=function(t){if(t.pageX||t.pageY)var i={x:t.pageX,y:t.pageY};var e=_isIE?document.documentElement:document.body,i={x:t.clientX+e.scrollLeft-e.clientLeft,y:t.clientY+e.scrollTop-e.clientTop},n=gantt._get_position(gantt.$task);return i.x=i.x-n.x,i.y=i.y-n.y,i},gantt.attachEvent("onMouseMove",function(t,i){if(this.config.tooltip_timeout){document.createEventObject&&!document.createEvent&&(i=document.createEventObject(i));
|
||||
var e=this.config.tooltip_timeout;this._tooltip_id&&!t&&(isNaN(this.config.tooltip_hide_timeout)||(e=this.config.tooltip_hide_timeout)),clearTimeout(gantt._tooltip_ev_timer),gantt._tooltip_ev_timer=setTimeout(function(){gantt._init_tooltip(t,i)},e)}else gantt._init_tooltip(t,i)}),gantt._init_tooltip=function(t,i){if(!this._is_tooltip(i)&&(t!=this._tooltip_id||this._is_task_line(i))){if(!t)return this._hide_tooltip();this._tooltip_id=t;var e=this.getTask(t),n=this.templates.tooltip_text(e.start_date,e.end_date,e);
|
||||
n||this._hide_tooltip(),this._show_tooltip(n,this._tooltip_pos(i))}},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,i,e){return"<b>Task:</b> "+e.text+"<br/><b>Start date:</b> "+gantt.templates.tooltip_date_format(t)+"<br/><b>End date:</b> "+gantt.templates.tooltip_date_format(i)};
|
||||
//# sourceMappingURL=../sources/ext/dhtmlxgantt_tooltip.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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:"",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"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_ar.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_ar.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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:"حذف",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"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_ar.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_be.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_be.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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:"Захаваць",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на",hours:"Гадзiна",days:"Дзень",weeks:"Тыдзень",months:"Месяц",years:"Год"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_be.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_ca.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_ca.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",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",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_ca.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_cn.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_cn.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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:"详细",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"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_cn.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_cs.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_cs.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",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",months:"Months",years:"Years"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_cs.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_da.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_da.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",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",type_milestone:"Milestone",minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_da.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_de.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_de.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",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",hours:"Stunden",days:"Tage",weeks:"Wochen",months:"Monate",years:"Jahre"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_de.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_el.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_el.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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:"Διαγραφή",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"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_el.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_es.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_es.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",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",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_es.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_fi.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_fi.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",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",minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_fi.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_fr.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_fr.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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","Aôu","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:"Tâche neuve",icon_save:"Enregistrer",icon_cancel:"Annuler",icon_details:"Détails",icon_edit:"Modifier",icon_delete:"Effacer",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:"Tâche neuve",column_start_date:"Date initiale",column_duration:"Durée",column_add:"",confirm_link_deleting:"seront supprimées",link_start:"(début)",link_end:"(fin)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Minutes",hours:"Heures",days:"Jours",weeks:"Semaine",months:"Mois",years:"Années"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_fr.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_he.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_he.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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:"מחק",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"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_he.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_hu.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_hu.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",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",days:"Days",weeks:"Week",months:"Months",years:"Years"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_hu.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_id.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_id.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",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",months:"Months",years:"Years"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_id.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_it.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_it.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",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",minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_it.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_jp.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_jp.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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:"イベント完全に削除されます、宜しいですか?",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"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_jp.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_nb.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_nb.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",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",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_nb.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_nl.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_nl.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",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",minutes:"minuten",hours:"uren",days:"dagen",weeks:"weken",months:"maanden",years:"jaren"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_nl.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_no.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_no.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",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",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_no.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_pl.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_pl.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",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",minutes:"Minuty",hours:"Godziny",days:"Dni",weeks:"Tydzień",months:"Miesiące",years:"Lata"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_pl.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_pt.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_pt.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",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",minutes:"Minutos",hours:"Horas",days:"Dias",weeks:"Semanas",months:"Meses",years:"Anos"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_pt.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_ro.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_ro.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",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",minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_ro.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_ru.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_ru.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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:"Отменить",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:"Минута",hours:"Час",days:"День",weeks:"Неделя",months:"Месяц",years:"Год"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_ru.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_si.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_si.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",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",days:"Days",weeks:"Week",months:"Months",years:"Years"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_si.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_sk.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_sk.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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äť",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",minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_sk.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_sv.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_sv.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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:"Ångra",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:"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"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_sv.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_tr.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_tr.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",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",years:"Years"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_tr.js.map
|
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_ua.js
Executable file
7
phpgwapi/js/dhtmlxGantt/codebase/locale/locale_ua.js
Executable file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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:"Вилучити",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",minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years"}};
|
||||
|
||||
//# sourceMappingURL=../sources/locale/locale_ua.js.map
|
5
phpgwapi/js/dhtmlxGantt/codebase/skins/dhtmlxgantt_broadway.css
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/skins/dhtmlxgantt_broadway.css
Executable file
File diff suppressed because one or more lines are too long
5
phpgwapi/js/dhtmlxGantt/codebase/skins/dhtmlxgantt_meadow.css
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/skins/dhtmlxgantt_meadow.css
Executable file
File diff suppressed because one or more lines are too long
5
phpgwapi/js/dhtmlxGantt/codebase/skins/dhtmlxgantt_skyblue.css
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/skins/dhtmlxgantt_skyblue.css
Executable file
File diff suppressed because one or more lines are too long
5
phpgwapi/js/dhtmlxGantt/codebase/skins/dhtmlxgantt_terrace.css
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/skins/dhtmlxgantt_terrace.css
Executable file
File diff suppressed because one or more lines are too long
8378
phpgwapi/js/dhtmlxGantt/codebase/sources/dhtmlxgantt.js
Executable file
8378
phpgwapi/js/dhtmlxGantt/codebase/sources/dhtmlxgantt.js
Executable file
File diff suppressed because it is too large
Load Diff
4
phpgwapi/js/dhtmlxGantt/codebase/sources/dhtmlxgantt.js.map
Executable file
4
phpgwapi/js/dhtmlxGantt/codebase/sources/dhtmlxgantt.js.map
Executable file
File diff suppressed because one or more lines are too long
181
phpgwapi/js/dhtmlxGantt/codebase/sources/ext/dhtmlxgantt_quick_info.js
Executable file
181
phpgwapi/js/dhtmlxGantt/codebase/sources/ext/dhtmlxgantt_quick_info.js
Executable file
@ -0,0 +1,181 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
gantt.config.quickinfo_buttons = ["icon_delete","icon_edit"];
|
||||
gantt.config.quick_info_detached = true;
|
||||
|
||||
gantt.attachEvent("onTaskClick", function(id){
|
||||
gantt.showQuickInfo(id);
|
||||
return true;
|
||||
});
|
||||
|
||||
(function(){
|
||||
var events = ["onEmptyClick", "onViewChange", "onLightbox", "onBeforeTaskDelete", "onBeforeDrag"];
|
||||
var hiding_function = function(){
|
||||
gantt._hideQuickInfo();
|
||||
return true;
|
||||
};
|
||||
for (var i=0; i<events.length; i++)
|
||||
gantt.attachEvent(events[i], hiding_function);
|
||||
})();
|
||||
|
||||
gantt.templates.quick_info_title = function(start, end, ev){ return ev.text.substr(0,50); };
|
||||
gantt.templates.quick_info_content = function(start, end, ev){ return ev.details || ev.text; };
|
||||
gantt.templates.quick_info_date = function(start, end, ev){
|
||||
return gantt.templates.task_time(start, end, ev);
|
||||
};
|
||||
|
||||
gantt.showQuickInfo = function(id){
|
||||
if (id == this._quick_info_box_id) return;
|
||||
this.hideQuickInfo(true);
|
||||
|
||||
var pos = this._get_event_counter_part(id);
|
||||
|
||||
if (pos){
|
||||
this._quick_info_box = this._init_quick_info(pos);
|
||||
this._fill_quick_data(id);
|
||||
this._show_quick_info(pos);
|
||||
}
|
||||
};
|
||||
gantt._hideQuickInfo = function(){
|
||||
gantt.hideQuickInfo();
|
||||
};
|
||||
gantt.hideQuickInfo = function(forced){
|
||||
var qi = this._quick_info_box;
|
||||
this._quick_info_box_id = 0;
|
||||
|
||||
if (qi && qi.parentNode){
|
||||
if (gantt.config.quick_info_detached)
|
||||
return qi.parentNode.removeChild(qi);
|
||||
|
||||
if (qi.style.right == "auto")
|
||||
qi.style.left = "-350px";
|
||||
else
|
||||
qi.style.right = "-350px";
|
||||
|
||||
if (forced)
|
||||
qi.parentNode.removeChild(qi);
|
||||
}
|
||||
};
|
||||
dhtmlxEvent(window, "keydown", function(e){
|
||||
if (e.keyCode == 27)
|
||||
gantt.hideQuickInfo();
|
||||
});
|
||||
|
||||
gantt._show_quick_info = function(pos){
|
||||
var qi = gantt._quick_info_box;
|
||||
|
||||
if (gantt.config.quick_info_detached){
|
||||
if (!qi.parentNode ||
|
||||
qi.parentNode.nodeName.toLowerCase() == "#document-fragment")//IE8
|
||||
gantt.$task_data.appendChild(qi);
|
||||
var width = qi.offsetWidth;
|
||||
var height = qi.offsetHeight;
|
||||
|
||||
var scrolls = this.getScrollState();
|
||||
var screen_width = this.$task.offsetWidth + scrolls.x - width;
|
||||
|
||||
qi.style.left = Math.min(Math.max(scrolls.x, pos.left - pos.dx*(width - pos.width)), screen_width) + "px";
|
||||
qi.style.top = pos.top - (pos.dy?height:-pos.height) - 25 + "px";
|
||||
} else {
|
||||
qi.style.top = 20 + "px";
|
||||
if (pos.dx == 1){
|
||||
qi.style.right = "auto";
|
||||
qi.style.left = "-300px";
|
||||
|
||||
setTimeout(function(){
|
||||
qi.style.left = "-10px";
|
||||
},1);
|
||||
} else {
|
||||
qi.style.left = "auto";
|
||||
qi.style.right = "-300px";
|
||||
|
||||
setTimeout(function(){
|
||||
qi.style.right = "-10px";
|
||||
},1);
|
||||
}
|
||||
qi.className = qi.className.replace("dhx_qi_left","").replace("dhx_qi_left","")+" dhx_qi_"+(pos==1?"left":"right");
|
||||
gantt._obj.appendChild(qi);
|
||||
}
|
||||
};
|
||||
gantt._init_quick_info = function(){
|
||||
if (!this._quick_info_box){
|
||||
var qi = this._quick_info_box = document.createElement("div");
|
||||
qi.className = "dhx_cal_quick_info";
|
||||
if (gantt.$testmode)
|
||||
qi.className += " dhx_no_animate";
|
||||
//title
|
||||
var html = "<div class=\"dhx_cal_qi_title\">" +
|
||||
"<div class=\"dhx_cal_qi_tcontent\"></div><div class=\"dhx_cal_qi_tdate\"></div>" +
|
||||
"</div>" +
|
||||
"<div class=\"dhx_cal_qi_content\"></div>";
|
||||
|
||||
//buttons
|
||||
html += "<div class=\"dhx_cal_qi_controls\">";
|
||||
var buttons = gantt.config.quickinfo_buttons;
|
||||
for (var i = 0; i < buttons.length; i++)
|
||||
html += "<div class=\"dhx_qi_big_icon "+buttons[i]+"\" title=\""+gantt.locale.labels[buttons[i]]+"\"><div class='dhx_menu_icon " + buttons[i] + "'></div><div>"+gantt.locale.labels[buttons[i]]+"</div></div>";
|
||||
html += "</div>";
|
||||
|
||||
qi.innerHTML = html;
|
||||
dhtmlxEvent(qi, "click", function(ev){
|
||||
ev = ev || event;
|
||||
gantt._qi_button_click(ev.target || ev.srcElement);
|
||||
});
|
||||
if (gantt.config.quick_info_detached)
|
||||
dhtmlxEvent(gantt.$task_data, "scroll", function(){ gantt.hideQuickInfo(); });
|
||||
}
|
||||
|
||||
return this._quick_info_box;
|
||||
};
|
||||
|
||||
gantt._qi_button_click = function(node){
|
||||
var box = gantt._quick_info_box;
|
||||
if (!node || node == box) return;
|
||||
|
||||
var mask = node.className;
|
||||
if (mask.indexOf("_icon")!=-1){
|
||||
var id = gantt._quick_info_box_id;
|
||||
gantt.$click.buttons[mask.split(" ")[1].replace("icon_","")](id);
|
||||
} else
|
||||
gantt._qi_button_click(node.parentNode);
|
||||
};
|
||||
gantt._get_event_counter_part = function(id){
|
||||
var domEv = gantt.getTaskNode(id);
|
||||
var left = 0;
|
||||
var top = 0;
|
||||
|
||||
var node = domEv;
|
||||
while (node && node.className != "gantt_task"){
|
||||
left += node.offsetLeft;
|
||||
top += node.offsetTop;
|
||||
node = node.offsetParent;
|
||||
}
|
||||
var scroll = this.getScrollState();
|
||||
if(node){
|
||||
var dx = (left + domEv.offsetWidth/2) - scroll.x > (gantt._x/2) ? 1 : 0;
|
||||
var dy = (top + domEv.offsetHeight/2) - scroll.y > (gantt._y/2) ? 1 : 0;
|
||||
|
||||
return { left:left, top:top, dx:dx, dy:dy,
|
||||
width:domEv.offsetWidth, height:domEv.offsetHeight };
|
||||
}
|
||||
return 0;
|
||||
};
|
||||
|
||||
gantt._fill_quick_data = function(id){
|
||||
var ev = gantt.getTask(id);
|
||||
var qi = gantt._quick_info_box;
|
||||
|
||||
gantt._quick_info_box_id = id;
|
||||
|
||||
//title content
|
||||
var titleContent = qi.firstChild.firstChild;
|
||||
titleContent.innerHTML = gantt.templates.quick_info_title(ev.start_date, ev.end_date, ev);
|
||||
var titleDate = titleContent.nextSibling;
|
||||
titleDate.innerHTML = gantt.templates.quick_info_date(ev.start_date, ev.end_date, ev);
|
||||
|
||||
//main content
|
||||
var main = qi.firstChild.nextSibling;
|
||||
main.innerHTML = gantt.templates.quick_info_content(ev.start_date, ev.end_date, ev);
|
||||
};
|
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"dhtmlxgantt_quick_info.js.map","sources":["dhtmlxgantt_quick_info.js"],"names":["gantt","config","quickinfo_buttons","quick_info_detached","attachEvent","id","showQuickInfo","events","hiding_function","_hideQuickInfo","i","length","templates","quick_info_title","start","end","ev","text","substr","quick_info_content","details","quick_info_date","task_time","this","_quick_info_box_id","hideQuickInfo","pos","_get_event_counter_part","_quick_info_box","_init_quick_info","_fill_quick_data","_show_quick_info","forced","qi","parentNode","removeChild","style","right","left","dhtmlxEvent","window","e","keyCode","nodeName","toLowerCase","$task_data","appendChild","width","offsetWidth","height","offsetHeight","scrolls","getScrollState","screen_width","$task","x","Math","min","max","dx","top","dy","setTimeout","className","replace","_obj","document","createElement","$testmode","html","buttons","locale","labels","innerHTML","event","_qi_button_click","target","srcElement","node","box","mask","indexOf","$click","split","domEv","getTaskNode","offsetLeft","offsetTop","offsetParent","scroll","_x","y","_y","getTask","titleContent","firstChild","start_date","end_date","titleDate","nextSibling","main"],"mappings":"AAAAA,MAAMC,OAAOC,mBAAqB,cAAc,aAChDF,MAAMC,OAAOE,qBAAsB,EAEnCH,MAAMI,YAAY,cAAe,SAASC,GAEzC,MADAL,OAAMM,cAAcD,IACb,IAGR,WAMC,IAAK,GALDE,IAAU,eAAgB,eAAgB,aAAc,qBAAsB,gBAC9EC,EAAkB,WAErB,MADAR,OAAMS,kBACC,GAECC,EAAE,EAAGA,EAAEH,EAAOI,OAAQD,IAC9BV,MAAMI,YAAYG,EAAOG,GAAIF,MAG/BR,MAAMY,UAAUC,iBAAmB,SAASC,EAAOC,EAAKC,GAAK,MAAOA,GAAGC,KAAKC,OAAO,EAAE,KACrFlB,MAAMY,UAAUO,mBAAqB,SAASL,EAAOC,EAAKC,GAAK,MAAOA,GAAGI,SAAWJ,EAAGC;EACvFjB,MAAMY,UAAUS,gBAAkB,SAASP,EAAOC,EAAKC,GACrD,MAAOhB,OAAMY,UAAUU,UAAUR,EAAOC,EAAKC,IAG/ChB,MAAMM,cAAgB,SAASD,GAC9B,GAAIA,GAAMkB,KAAKC,mBAAf,CACAD,KAAKE,eAAc,EAEnB,IAAIC,GAAMH,KAAKI,wBAAwBtB,EAEnCqB,KACHH,KAAKK,gBAAkBL,KAAKM,iBAAiBH,GAC7CH,KAAKO,iBAAiBzB,GACtBkB,KAAKQ,iBAAiBL,MAGxB1B,MAAMS,eAAiB,WACtBT,MAAMyB,iBAEPzB,MAAMyB,cAAgB,SAASO,GAC9B,GAAIC,GAAKV,KAAKK,eAGd,IAFAL,KAAKC,mBAAqB,EAEtBS,GAAMA,EAAGC,WAAW,CACvB,GAAIlC,MAAMC,OAAOE,oBAChB,MAAO8B,GAAGC,WAAWC,YAAYF,EAEZ;QAAlBA,EAAGG,MAAMC,MACZJ,EAAGG,MAAME,KAAO,SAEhBL,EAAGG,MAAMC,MAAQ,SAEdL,GACHC,EAAGC,WAAWC,YAAYF,KAG7BM,YAAYC,OAAQ,UAAW,SAASC,GACtB,IAAbA,EAAEC,SACL1C,MAAMyB,kBAGRzB,MAAM+B,iBAAmB,SAASL,GACjC,GAAIO,GAAKjC,MAAM4B,eAEf,IAAI5B,MAAMC,OAAOE,oBAAoB,CAC/B8B,EAAGC,YACiC,sBAAxCD,EAAGC,WAAWS,SAASC,eACvB5C,MAAM6C,WAAWC,YAAYb,EAC9B,IAAIc,GAAQd,EAAGe,YACXC,EAAShB,EAAGiB,aAEZC,EAAU5B,KAAK6B,iBACfC,EAAe9B,KAAK+B,MAAMN,YAAcG,EAAQI,EAAIR,CAExDd,GAAGG,MAAME,KAAOkB,KAAKC,IAAID,KAAKE,IAAIP,EAAQI,EAAG7B,EAAIY,KAAOZ,EAAIiC,IAAIZ,EAAQrB,EAAIqB,QAASM,GAAgB,KACrGpB,EAAGG,MAAMwB,IAAMlC,EAAIkC,KAAOlC,EAAImC,GAAGZ,GAAQvB,EAAIuB,QAAU,GAAK;KAE5DhB,GAAGG,MAAMwB,IAAM,OACD,GAAVlC,EAAIiC,IACP1B,EAAGG,MAAMC,MAAQ,OACjBJ,EAAGG,MAAME,KAAO,SAEhBwB,WAAW,WACV7B,EAAGG,MAAME,KAAO,SACf,KAEFL,EAAGG,MAAME,KAAO,OAChBL,EAAGG,MAAMC,MAAQ,SAEjByB,WAAW,WACV7B,EAAGG,MAAMC,MAAQ,SAChB,IAEHJ,EAAG8B,UAAY9B,EAAG8B,UAAUC,QAAQ,cAAc,IAAIA,QAAQ,cAAc,IAAI,YAAiB,GAALtC,EAAO,OAAO,SAC1G1B,MAAMiE,KAAKnB,YAAYb,IAGzBjC,MAAM6B,iBAAmB,WACxB,IAAKN,KAAKK,gBAAgB,CACzB,GAAIK,GAAKV,KAAKK,gBAAkBsC,SAASC,cAAc,MACvDlC,GAAG8B,UAAY,qBACX/D,MAAMoE,YACTnC,EAAG8B,WAAa,kBAEjB;GAAIM,GAAO,wJAMXA,IAAQ,mCAER,KAAK,GADDC,GAAUtE,MAAMC,OAAOC,kBAClBQ,EAAI,EAAGA,EAAI4D,EAAQ3D,OAAQD,IACnC2D,GAAQ,+BAAgCC,EAAQ5D,GAAG,YAAcV,MAAMuE,OAAOC,OAAOF,EAAQ5D,IAAI,gCAAkC4D,EAAQ5D,GAAK,gBAAgBV,MAAMuE,OAAOC,OAAOF,EAAQ5D,IAAI,cACjM2D,IAAQ,SAERpC,EAAGwC,UAAYJ,EACf9B,YAAYN,EAAI,QAAS,SAASjB,GACjCA,EAAKA,GAAM0D,MACX1E,MAAM2E,iBAAiB3D,EAAG4D,QAAU5D,EAAG6D;GAEpC7E,MAAMC,OAAOE,qBAChBoC,YAAYvC,MAAM6C,WAAY,SAAU,WAAa7C,MAAMyB,kBAG7D,MAAOF,MAAKK,iBAGb5B,MAAM2E,iBAAmB,SAASG,GACjC,GAAIC,GAAM/E,MAAM4B,eAChB,IAAKkD,GAAQA,GAAQC,EAArB,CAEA,GAAIC,GAAOF,EAAKf,SAChB,IAA2B,IAAvBiB,EAAKC,QAAQ,SAAa,CAC7B,GAAI5E,GAAKL,MAAMwB,kBACfxB,OAAMkF,OAAOZ,QAAQU,EAAKG,MAAM,KAAK,GAAGnB,QAAQ,QAAQ,KAAK3D,OAE7DL,OAAM2E,iBAAiBG,EAAK5C,cAE9BlC,MAAM2B,wBAA0B,SAAStB,GAMxC,IALA,GAAI+E,GAAQpF,MAAMqF,YAAYhF,GAC1BiC,EAAO,EACPsB,EAAM,EAENkB,EAAOM,EACJN,GAA0B,cAAlBA,EAAKf,WACnBzB,GAAQwC,EAAKQ,WACb1B,GAAOkB,EAAKS,UACZT,EAAOA,EAAKU,YAEb;GAAIC,GAASlE,KAAK6B,gBAClB,IAAG0B,EAAK,CACP,GAAInB,GAAMrB,EAAO8C,EAAMpC,YAAY,EAAKyC,EAAOlC,EAAKvD,MAAM0F,GAAG,EAAK,EAAI,EAClE7B,EAAMD,EAAMwB,EAAMlC,aAAa,EAAKuC,EAAOE,EAAK3F,MAAM4F,GAAG,EAAK,EAAI,CAEtE,QAAStD,KAAKA,EAAMsB,IAAIA,EAAKD,GAAGA,EAAIE,GAAGA,EACtCd,MAAMqC,EAAMpC,YAAaC,OAAOmC,EAAMlC,cAExC,MAAO,IAGRlD,MAAM8B,iBAAoB,SAASzB,GAClC,GAAIW,GAAKhB,MAAM6F,QAAQxF,GACnB4B,EAAKjC,MAAM4B,eAEf5B,OAAMwB,mBAAqBnB,CAG3B,IAAIyF,GAAe7D,EAAG8D,WAAWA,UACjCD,GAAarB,UAAYzE,MAAMY,UAAUC,iBAAiBG,EAAGgF,WAAYhF,EAAGiF,SAAUjF,EACtF,IAAIkF,GAAYJ,EAAaK,WAC7BD,GAAUzB,UAAYzE,MAAMY,UAAUS,gBAAgBL,EAAGgF,WAAYhF,EAAGiF,SAAUjF,EAGlF;GAAIoF,GAAOnE,EAAG8D,WAAWI,WACzBC,GAAK3B,UAAYzE,MAAMY,UAAUO,mBAAmBH,EAAGgF,WAAYhF,EAAGiF,SAAUjF"}
|
145
phpgwapi/js/dhtmlxGantt/codebase/sources/ext/dhtmlxgantt_tooltip.js
Executable file
145
phpgwapi/js/dhtmlxGantt/codebase/sources/ext/dhtmlxgantt_tooltip.js
Executable file
@ -0,0 +1,145 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
gantt._tooltip = {};
|
||||
gantt._tooltip_class = "gantt_tooltip";
|
||||
gantt.config.tooltip_timeout = 30;//,
|
||||
// timeout_to_hide: 50,
|
||||
// delta_x: 15,
|
||||
// delta_y: -20
|
||||
|
||||
gantt._create_tooltip = function(){
|
||||
if (!this._tooltip_html){
|
||||
this._tooltip_html = document.createElement('div');
|
||||
this._tooltip_html.className = gantt._tooltip_class;
|
||||
}
|
||||
return this._tooltip_html;
|
||||
};
|
||||
|
||||
gantt._show_tooltip = function(text, pos) {
|
||||
if (gantt.config.touch && !gantt.config.touch_tooltip) return;
|
||||
|
||||
var tip = this._create_tooltip();
|
||||
|
||||
tip.innerHTML = text;
|
||||
gantt.$task_data.appendChild(tip);
|
||||
|
||||
var width = tip.offsetWidth + 20;
|
||||
var height = tip.offsetHeight + 40;
|
||||
var max_height = this.$task.offsetHeight;
|
||||
var max_width = this.$task.offsetWidth;
|
||||
var scroll = this.getScrollState();
|
||||
|
||||
pos.x += scroll.x;
|
||||
pos.y += scroll.y;
|
||||
|
||||
pos.y = Math.min(Math.max(scroll.y, pos.y), scroll.y+max_height - height);
|
||||
pos.x = Math.min(Math.max(scroll.x, pos.x), scroll.x+max_width - width);
|
||||
|
||||
tip.style.left = pos.x + "px";
|
||||
tip.style.top = pos.y + "px";
|
||||
};
|
||||
|
||||
gantt._hide_tooltip = function(){
|
||||
if (this._tooltip_html && this._tooltip_html.parentNode)
|
||||
this._tooltip_html.parentNode.removeChild(this._tooltip_html);
|
||||
this._tooltip_id = 0;
|
||||
};
|
||||
|
||||
gantt._is_tooltip = function(ev) {
|
||||
var node = ev.target || ev.srcElement;
|
||||
return gantt._is_node_child(node, function(node){
|
||||
return (node.className == this._tooltip_class);
|
||||
});
|
||||
};
|
||||
|
||||
gantt._is_task_line = function(ev){
|
||||
var node = ev.target || ev.srcElement;
|
||||
return gantt._is_node_child(node, function(node){
|
||||
return (node == this.$task_data);
|
||||
});
|
||||
};
|
||||
|
||||
gantt._is_node_child = function(node, condition){
|
||||
var res = false;
|
||||
while (node && !res) {
|
||||
res = condition.call(gantt, node);
|
||||
node = node.parentNode;
|
||||
}
|
||||
return res;
|
||||
};
|
||||
|
||||
gantt._tooltip_pos = function(ev) {
|
||||
if (ev.pageX || ev.pageY)
|
||||
var pos = {x:ev.pageX, y:ev.pageY};
|
||||
|
||||
var d = _isIE ? document.documentElement : document.body;
|
||||
var pos = {
|
||||
x:ev.clientX + d.scrollLeft - d.clientLeft,
|
||||
y:ev.clientY + d.scrollTop - d.clientTop
|
||||
};
|
||||
|
||||
var box = gantt._get_position(gantt.$task);
|
||||
pos.x = pos.x - box.x;
|
||||
pos.y = pos.y - box.y;
|
||||
return pos;
|
||||
};
|
||||
|
||||
gantt.attachEvent("onMouseMove", function(event_id, ev) { // (gantt event_id, browser event)
|
||||
if(this.config.tooltip_timeout){
|
||||
//making events survive timeout in ie
|
||||
if(document.createEventObject && !document.createEvent)
|
||||
ev = document.createEventObject(ev);
|
||||
|
||||
var delay = this.config.tooltip_timeout;
|
||||
|
||||
if(this._tooltip_id && !event_id){
|
||||
if(!isNaN(this.config.tooltip_hide_timeout)){
|
||||
delay = this.config.tooltip_hide_timeout;
|
||||
}
|
||||
}
|
||||
|
||||
clearTimeout(gantt._tooltip_ev_timer);
|
||||
gantt._tooltip_ev_timer = setTimeout(function(){
|
||||
gantt._init_tooltip(event_id, ev);
|
||||
}, delay);
|
||||
|
||||
}else{
|
||||
gantt._init_tooltip(event_id, ev);
|
||||
}
|
||||
});
|
||||
gantt._init_tooltip = function(event_id, ev){
|
||||
if (this._is_tooltip(ev)) return;
|
||||
if (event_id == this._tooltip_id && !this._is_task_line(ev)) return;
|
||||
if (!event_id)
|
||||
return this._hide_tooltip();
|
||||
|
||||
this._tooltip_id = event_id;
|
||||
|
||||
var task = this.getTask(event_id);
|
||||
var text = this.templates.tooltip_text(task.start_date, task.end_date, task);
|
||||
if (!text)
|
||||
this._hide_tooltip();
|
||||
this._show_tooltip(text, this._tooltip_pos(ev));
|
||||
};
|
||||
gantt.attachEvent("onMouseLeave", function(ev){
|
||||
if (gantt._is_tooltip(ev)) return;
|
||||
this._hide_tooltip();
|
||||
});
|
||||
|
||||
// gantt.attachEvent("onBeforeDrag", function() {
|
||||
// gantt._tooltip.hide();
|
||||
// return true;
|
||||
// });
|
||||
// gantt.attachEvent("onEventDeleted", function() {
|
||||
// gantt._tooltip.hide();
|
||||
// return true;
|
||||
// });
|
||||
|
||||
|
||||
/* Could be redifined */
|
||||
gantt.templates.tooltip_date_format = gantt.date.date_to_str("%Y-%m-%d");
|
||||
gantt.templates.tooltip_text = function(start, end, event) {
|
||||
return "<b>Task:</b> " + event.text + "<br/><b>Start date:</b> " + gantt.templates.tooltip_date_format(start) + "<br/><b>End date:</b> " + gantt.templates.tooltip_date_format(end);
|
||||
};
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/ext/dhtmlxgantt_tooltip.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/ext/dhtmlxgantt_tooltip.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"dhtmlxgantt_tooltip.js.map","sources":["dhtmlxgantt_tooltip.js"],"names":["gantt","_tooltip","_tooltip_class","config","tooltip_timeout","_create_tooltip","this","_tooltip_html","document","createElement","className","_show_tooltip","text","pos","touch","touch_tooltip","tip","innerHTML","$task_data","appendChild","width","offsetWidth","height","offsetHeight","max_height","$task","max_width","scroll","getScrollState","x","y","Math","min","max","style","left","top","_hide_tooltip","parentNode","removeChild","_tooltip_id","_is_tooltip","ev","node","target","srcElement","_is_node_child","_is_task_line","condition","res","call","_tooltip_pos","pageX","pageY","d","_isIE","documentElement","body","clientX","scrollLeft","clientLeft","clientY","scrollTop","clientTop","box","_get_position","attachEvent","event_id","createEventObject","createEvent","delay","isNaN","tooltip_hide_timeout","clearTimeout","_tooltip_ev_timer","setTimeout","_init_tooltip","task","getTask","templates","tooltip_text","start_date","end_date","tooltip_date_format","date","date_to_str","start","end","event"],"mappings":"AAAAA,MAAMC,YACND,MAAME,eAAiB,gBACvBF,MAAMG,OAAOC,gBAAkB,GAK/BJ,MAAMK,gBAAkB,WAKvB,MAJKC,MAAKC,gBACTD,KAAKC,cAAgBC,SAASC,cAAc,OAC5CH,KAAKC,cAAcG,UAAYV,MAAME,gBAE/BI,KAAKC,eAGbP,MAAMW,cAAgB,SAASC,EAAMC,GACpC,IAAIb,MAAMG,OAAOW,OAAUd,MAAMG,OAAOY,cAAxC,CAEA,GAAIC,GAAMV,KAAKD,iBAEfW,GAAIC,UAAYL,EAChBZ,MAAMkB,WAAWC,YAAYH,EAE7B,IAAII,GAAQJ,EAAIK,YAAc,GAC1BC,EAASN,EAAIO,aAAe,GAC5BC,EAAalB,KAAKmB,MAAMF,aACxBG,EAAYpB,KAAKmB,MAAMJ,YACvBM,EAASrB,KAAKsB,gBAElBf;EAAIgB,GAAKF,EAAOE,EAChBhB,EAAIiB,GAAKH,EAAOG,EAEhBjB,EAAIiB,EAAIC,KAAKC,IAAID,KAAKE,IAAIN,EAAOG,EAAGjB,EAAIiB,GAAIH,EAAOG,EAAEN,EAAaF,GAClET,EAAIgB,EAAIE,KAAKC,IAAID,KAAKE,IAAIN,EAAOE,EAAGhB,EAAIgB,GAAIF,EAAOE,EAAEH,EAAYN,GAEjEJ,EAAIkB,MAAMC,KAAOtB,EAAIgB,EAAI,KACzBb,EAAIkB,MAAME,IAAOvB,EAAIiB,EAAI,OAG1B9B,MAAMqC,cAAgB,WACjB/B,KAAKC,eAAiBD,KAAKC,cAAc+B,YAC5ChC,KAAKC,cAAc+B,WAAWC,YAAYjC,KAAKC,eAChDD,KAAKkC,YAAc,GAGpBxC,MAAMyC,YAAc,SAASC,GAC5B,GAAIC,GAAOD,EAAGE,QAAUF,EAAGG,UAC3B,OAAO7C,OAAM8C,eAAeH,EAAM,SAASA,GAC1C,MAAQA,GAAKjC,WAAaJ,KAAKJ,kBAIjCF,MAAM+C,cAAgB,SAASL,GAC9B,GAAIC,GAAOD,EAAGE,QAAUF,EAAGG,UAC3B;MAAO7C,OAAM8C,eAAeH,EAAM,SAASA,GAC1C,MAAQA,IAAQrC,KAAKY,cAIvBlB,MAAM8C,eAAiB,SAASH,EAAMK,GAErC,IADA,GAAIC,IAAM,EACHN,IAASM,GACfA,EAAMD,EAAUE,KAAKlD,MAAO2C,GAC5BA,EAAOA,EAAKL,UAEb,OAAOW,IAGRjD,MAAMmD,aAAe,SAAST,GAC7B,GAAIA,EAAGU,OAASV,EAAGW,MAClB,GAAIxC,IAAOgB,EAAEa,EAAGU,MAAOtB,EAAEY,EAAGW,MAE7B,IAAIC,GAAIC,MAAQ/C,SAASgD,gBAAkBhD,SAASiD,KAChD5C,GACHgB,EAAEa,EAAGgB,QAAUJ,EAAEK,WAAaL,EAAEM,WAChC9B,EAAEY,EAAGmB,QAAUP,EAAEQ,UAAYR,EAAES,WAG5BC,EAAMhE,MAAMiE,cAAcjE,MAAMyB,MAGpC,OAFAZ,GAAIgB,EAAIhB,EAAIgB,EAAImC,EAAInC,EACpBhB,EAAIiB,EAAIjB,EAAIiB,EAAIkC,EAAIlC,EACbjB,GAGRb,MAAMkE,YAAY,cAAe,SAASC,EAAUzB,GACnD,GAAGpC,KAAKH,OAAOC,gBAAgB,CAE3BI,SAAS4D,oBAAsB5D,SAAS6D,cAC1C3B,EAAKlC,SAAS4D,kBAAkB1B,GAEjC;GAAI4B,GAAQhE,KAAKH,OAAOC,eAErBE,MAAKkC,cAAgB2B,IACnBI,MAAMjE,KAAKH,OAAOqE,wBACrBF,EAAQhE,KAAKH,OAAOqE,uBAItBC,aAAazE,MAAM0E,mBACnB1E,MAAM0E,kBAAoBC,WAAW,WACpC3E,MAAM4E,cAAcT,EAAUzB,IAC5B4B,OAGHtE,OAAM4E,cAAcT,EAAUzB,KAGhC1C,MAAM4E,cAAgB,SAAST,EAAUzB,GACxC,IAAIpC,KAAKmC,YAAYC,KACjByB,GAAY7D,KAAKkC,aAAgBlC,KAAKyC,cAAcL,IAAxD,CACA,IAAKyB,EACJ,MAAO7D,MAAK+B,eAEb/B,MAAKkC,YAAc2B,CAEnB,IAAIU,GAAOvE,KAAKwE,QAAQX,GACpBvD,EAAON,KAAKyE,UAAUC,aAAaH,EAAKI,WAAYJ,EAAKK,SAAUL,EAClEjE;GACJN,KAAK+B,gBACN/B,KAAKK,cAAcC,EAAMN,KAAK6C,aAAaT,MAE5C1C,MAAMkE,YAAY,eAAgB,SAASxB,GACtC1C,MAAMyC,YAAYC,IACtBpC,KAAK+B,kBAcNrC,MAAM+E,UAAUI,oBAAsBnF,MAAMoF,KAAKC,YAAY,YAC7DrF,MAAM+E,UAAUC,aAAe,SAASM,EAAOC,EAAKC,GACnD,MAAO,gBAAkBA,EAAM5E,KAAO,2BAA6BZ,MAAM+E,UAAUI,oBAAoBG,GAAS,yBAA2BtF,MAAM+E,UAAUI,oBAAoBI"}
|
50
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale.js
Executable file
50
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale.js
Executable file
@ -0,0 +1,50 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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:"",//Your changes will be lost, are your sure ?
|
||||
confirm_deleting:"Task will be deleted permanently, are you sure?",
|
||||
section_description:"Description",
|
||||
section_time:"Time period",
|
||||
section_type:"Type",
|
||||
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale.js.map","sources":["locale.js"],"names":["gantt","locale","date","month_full","month_short","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","column_text","column_start_date","column_duration","column_add","link","confirm_link_deleting","link_start","link_end","type_task","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAY,UAAW,WAAY,QAAS,QAAS,MAAO,OAAQ,OAAQ,SAAU,YAAa,UAAW,WAAY,YAC1HC,aAAa,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC1FC,UAAU,SAAU,SAAU,UAAW,YAAa,WAAY,SAAU,YAC5EC,WAAW,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,QAEtDC,QACCC,SAAS,WACTC,UAAU,OACVC,YAAY,SACZC,aAAa,UACbC,UAAU,OACVC,YAAY,SACZC,gBAAgB,GAChBC,iBAAiB,kDACXC,oBAAoB,cACpBC,aAAa,cACnBC,aAAa,OAIPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAEVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
53
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_ar.js
Executable file
53
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_ar.js
Executable file
@ -0,0 +1,53 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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: "حذف",
|
||||
confirm_closing: "التغييرات سوف تضيع, هل انت متأكد؟", //Your changes will be lost, are your sure ?
|
||||
confirm_deleting: "الحدث سيتم حذفها نهائيا ، هل أنت متأكد؟",
|
||||
section_description: "الوصف",
|
||||
section_time: "الفترة الزمنية",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_ar.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_ar.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_ar.js.map","sources":["locale_ar.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,eAAgB,OAAQ,OAAQ,QAAS,OAAQ,SAAU,OAAQ,KAAM,QAAS,cAAe,eAAgB,eAC9HC,aAAc,QAAS,SAAU,OAAQ,QAAS,OAAQ,QAAS,QAAS,QAAS,SAAU,SAAU,SAAU,UACnHC,UAAW,QAAS,UAAW,WAAY,WAAY,SAAU,SAAU,SAC3EC,WAAY,MAAO,QAAS,SAAU,SAAU,OAAQ,OAAQ,QAEjEC,QACCC,qBAAsB,QACtBC,QAAS,MACTC,SAAU,QACVC,UAAW,MACXC,UAAW,WACXC,UAAW,OACXC,YAAa,QACbC,aAAc,SACdC,UAAW,QACXC,YAAa,MACbC,gBAAiB,oCACjBC,iBAAkB,0CAClBC,oBAAqB,QACrBC,aAAc,iBACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAEVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_be.js
Executable file
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_be.js
Executable file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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: "Захаваць",
|
||||
icon_cancel: "Адмяніць",
|
||||
icon_details: "Дэталі",
|
||||
icon_edit: "Змяніць",
|
||||
icon_delete: "Выдаліць",
|
||||
confirm_closing: "", //Унесеныя змены будуць страчаны, працягнуць?
|
||||
confirm_deleting: "Падзея будзе выдалена незваротна, працягнуць?",
|
||||
section_description: "Апісанне",
|
||||
section_time: "Перыяд часу",
|
||||
section_type:"Тып",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Задача",
|
||||
column_start_date : "Пачатак",
|
||||
column_duration : "Працяг",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
link: "Сувязь",
|
||||
confirm_link_deleting:"будзе выдалена",
|
||||
link_start: "(пачатак)",
|
||||
link_end: "(канец)",
|
||||
|
||||
type_task: "Task",
|
||||
type_project: "Project",
|
||||
type_milestone: "Milestone",
|
||||
|
||||
|
||||
minutes: "Хвiлiна",
|
||||
hours: "Гадзiна",
|
||||
days: "Дзень",
|
||||
weeks: "Тыдзень",
|
||||
months: "Месяц",
|
||||
years: "Год"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_be.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_be.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_be.js.map","sources":["locale_be.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,WAAY,OAAQ,UAAW,WAAY,MAAO,UAAW,SAAU,UAAW,WAAY,aAAc,WAAY,WACrIC,aAAc,QAAS,MAAO,MAAO,OAAQ,MAAO,MAAO,MAAO,OAAQ,MAAO,OAAQ,OAAQ,QACjGC,UAAY,UAAW,aAAc,UAAW,SAAU,SAAU,UAAW,UAC/EC,WAAY,KAAM,KAAM,MAAO,KAAM,MAAO,KAAM,OAEnDC,QACCC,qBAAsB,QACtBC,QAAS,QACTC,SAAU,UACVC,UAAW,QACXC,UAAW,eACXC,UAAW,WACXC,YAAa,WACbC,aAAc,SACdC,UAAW,UACXC,YAAa,WACbC,gBAAiB,GACjBC,iBAAkB,gDAClBC,oBAAqB,WACrBC,aAAc,cACdC,aAAa,MAGPC,YAAc,SACdC,kBAAoB,UACpBC,gBAAkB,SAClBC,WAAa,GAGnBC,KAAM,SACNC,sBAAsB,iBACtBC,WAAY,YACZC,SAAU,UAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,UACPC,KAAM,QACNC,MAAO,UACPC,OAAQ,QACRC,MAAO"}
|
57
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_ca.js
Executable file
57
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_ca.js
Executable file
@ -0,0 +1,57 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
/*
|
||||
@Traducido por Vicente Adria Bohigues - vicenteadria@hotmail.com
|
||||
*/
|
||||
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",
|
||||
icon_details: "Detalls",
|
||||
icon_edit: "Editar",
|
||||
icon_delete: "Esborrar",
|
||||
confirm_closing: "", //"Els seus canvis es perdràn, continuar ?"
|
||||
confirm_deleting: "L'esdeveniment s'esborrarà definitivament, continuar ?",
|
||||
section_description: "Descripció",
|
||||
section_time: "Periode de temps",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_ca.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_ca.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_ca.js.map","sources":["locale_ca.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAGAA,MAAMC,QACLC,MACCC,YAAa,QAAS,SAAU,OAAQ,QAAS,OAAQ,OAAQ,SAAU,QAAS,WAAY,UAAW,WAAY,YACvHC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC3FC,UAAW,WAAY,UAAW,UAAW,WAAY,SAAU,YAAa,YAChFC,WAAY,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,OAEjDC,QACCC,qBAAsB,MACtBC,QAAS,MACTC,SAAU,UACVC,UAAW,MACXC,UAAW,mBACXC,UAAW,UACXC,YAAa,aACbC,aAAc,UACdC,UAAW,SACXC,YAAa,WACbC,gBAAiB,GACjBC,iBAAkB,yDAClBC,oBAAqB,aACrBC,aAAc,mBACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
60
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_cn.js
Executable file
60
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_cn.js
Executable file
@ -0,0 +1,60 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
/*
|
||||
Translation by FreezeSoul
|
||||
*/
|
||||
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: "详细",
|
||||
icon_edit: "编辑",
|
||||
icon_delete: "删除",
|
||||
confirm_closing: "请确认是否撤销修改!", //Your changes will be lost, are your sure?
|
||||
confirm_deleting: "是否删除日程?",
|
||||
section_description: "描述",
|
||||
section_time: "时间范围",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_cn.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_cn.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_cn.js.map","sources":["locale_cn.js"],"names":["gantt","config","day_date","default_date","month_date","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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAGAA,MAAMC,OAAOC,SAAS,YACtBF,MAAMC,OAAOE,aAAa,aAC1BH,MAAMC,OAAOG,WAAW,SAExBJ,MAAMK,QACLC,MACCC,YAAa,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,MAAO,OAChFC,aAAc,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,MAAO,MAAO,OAClFC,UAAW,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OACrDC,WAAY,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,MAE3CC,QACCC,qBAAsB,KACtBC,QAAS,IACTC,SAAU,IACVC,UAAW,IACXC,UAAW,OACXC,UAAW,KACXC,YAAa,KACbC,aAAc,KACdC,UAAW,KACXC,YAAa,KACbC,gBAAiB,aACjBC,iBAAkB,UAClBC,oBAAqB,KACrBC,aAAc,OACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAEVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_cs.js
Executable file
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_cs.js
Executable file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",
|
||||
icon_edit: "Edituj",
|
||||
icon_delete: "Smazat",
|
||||
confirm_closing: "", //Vaše změny budou ztraceny, opravdu ?
|
||||
confirm_deleting: "Událost bude trvale smazána, opravdu?",
|
||||
section_description: "Poznámky",
|
||||
section_time: "Doba platnosti",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_cs.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_cs.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_cs.js.map","sources":["locale_cs.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,QAAS,OAAQ,SAAU,QAAS,SAAU,SAAU,WAAY,QAAS,OAAQ,QAAS,WAAY,YACvHC,aAAc,MAAO,KAAM,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAAQ,MAAO,OAAQ,OAC5FC,UAAW,SAAU,UAAW,QAAS,SAAU,UAAW,QAAS,UACvEC,WAAY,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,OAEjDC,QACCC,qBAAsB,OACtBC,QAAS,MACTC,SAAU,QACVC,UAAW,QACXC,UAAW,eACXC,UAAW,SACXC,YAAa,OACbC,aAAc,SACdC,UAAW,SACXC,YAAa,SACbC,gBAAiB,GACjBC,iBAAkB,wCAClBC,oBAAqB,WACrBC,aAAc,iBACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_da.js
Executable file
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_da.js
Executable file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",
|
||||
icon_details: "Detaljer",
|
||||
icon_edit: "Tilret",
|
||||
icon_delete: "Slet",
|
||||
confirm_closing: "Dine rettelser vil gå tabt.. Er dy sikker?", //Your changes will be lost, are your sure ?
|
||||
confirm_deleting: "Bigivenheden vil blive slettet permanent. Er du sikker?",
|
||||
section_description: "Beskrivelse",
|
||||
section_time: "Tidsperiode",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_da.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_da.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_da.js.map","sources":["locale_da.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,SAAU,UAAW,QAAS,QAAS,MAAO,OAAQ,OAAQ,SAAU,YAAa,UAAW,WAAY,YACzHC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC3FC,UAAW,SAAU,SAAU,UAAW,SAAU,UAAW,SAAU,UACzEC,WAAY,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,QAEvDC,QACCC,qBAAsB,OACtBC,QAAS,MACTC,SAAU,MACVC,UAAW,QACXC,UAAW,gBACXC,UAAW,MACXC,YAAa,UACbC,aAAc,WACdC,UAAW,SACXC,YAAa,OACbC,gBAAiB,6CACjBC,iBAAkB,0DAClBC,oBAAqB,cACrBC,aAAc,cACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_de.js
Executable file
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_de.js
Executable file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",
|
||||
icon_cancel: "Abbrechen",
|
||||
icon_details: "Details",
|
||||
icon_edit: "Ändern",
|
||||
icon_delete: "Löschen",
|
||||
confirm_closing: "", //"Ihre Veränderungen werden verloren sein, wollen Sie ergänzen? "
|
||||
confirm_deleting: "Der Eintrag wird gelöscht",
|
||||
section_description: "Beschreibung",
|
||||
section_time: "Zeitspanne",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task-Namen",
|
||||
column_start_date : "Startzeit",
|
||||
column_duration : "Dauer",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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",
|
||||
hours: "Stunden",
|
||||
days: "Tage",
|
||||
weeks: "Wochen",
|
||||
months: "Monate",
|
||||
years: "Jahre"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_de.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_de.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_de.js.map","sources":["locale_de.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,UAAW,WAAY,SAAU,SAAU,OAAQ,QAAS,QAAS,UAAW,cAAe,WAAY,aAAc,aACtIC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC3FC,UAAY,UAAW,SAAU,WAAY,YAAa,cAAe,UAAW,WACpFC,WAAY,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,OAEjDC,QACCC,qBAAsB,QACtBC,QAAS,MACTC,SAAU,QACVC,UAAW,QACXC,UAAW,gBACXC,UAAW,YACXC,YAAa,YACbC,aAAc,UACdC,UAAW,SACXC,YAAa,UACbC,gBAAiB,GACjBC,iBAAkB,4BAClBC,oBAAqB,eACrBC,aAAc,aACdC,aAAa,OAGPC,YAAc,aACdC,kBAAoB,YACpBC,gBAAkB,QAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,YACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,UACPC,KAAM,OACNC,MAAO,SACPC,OAAQ,SACRC,MAAO"}
|
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_el.js
Executable file
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_el.js
Executable file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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: "Διαγραφή",
|
||||
confirm_closing: "", //Your changes will be lost, are your sure ?
|
||||
confirm_deleting: "Το έργο θα διαγραφεί οριστικά. Θέλετε να συνεχίσετε;",
|
||||
section_description: "Περιγραφή",
|
||||
section_time: "Χρονική περίοδος",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_el.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_el.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_el.js.map","sources":["locale_el.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,aAAc,cAAe,UAAW,WAAY,QAAS,UAAW,UAAW,YAAa,cAAe,YAAa,YAAa,cACtJC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,OAAQ,OAAQ,MAAO,MAAO,MAAO,MAAO,OAC7FC,UAAW,UAAW,UAAW,QAAS,UAAW,SAAU,YAAa,WAC5EC,WAAY,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,OAEjDC,QACCC,qBAAsB,SACtBC,QAAS,QACTC,SAAU,WACVC,UAAW,QACXC,UAAW,WACXC,UAAW,aACXC,YAAa,QACbC,aAAc,eACdC,UAAW,cACXC,YAAa,WACbC,gBAAiB,GACjBC,iBAAkB,uDAClBC,oBAAqB,YACrBC,aAAc,mBACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
57
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_es.js
Executable file
57
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_es.js
Executable file
@ -0,0 +1,57 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
/*
|
||||
@Autor Manuel Fernandez Panzuela - www.mfernandez.es
|
||||
*/
|
||||
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",
|
||||
icon_details: "Detalles",
|
||||
icon_edit: "Editar",
|
||||
icon_delete: "Eliminar",
|
||||
confirm_closing: "", //"Sus cambios se perderán, continuar ?"
|
||||
confirm_deleting: "El evento se borrará definitivamente, ¿continuar?",
|
||||
section_description: "Descripción",
|
||||
section_time: "Período",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_es.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_es.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_es.js.map","sources":["locale_es.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAGAA,MAAMC,QACLC,MACCC,YAAa,QAAS,UAAW,QAAS,QAAS,OAAQ,QAAS,QAAS,SAAU,aAAc,UAAW,YAAa,aAC7HC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC3FC,UAAW,UAAW,QAAS,SAAU,YAAa,SAAU,UAAW,UAC3EC,WAAY,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,QAEvDC,QACCC,qBAAsB,MACtBC,QAAS,MACTC,SAAU,SACVC,UAAW,MACXC,UAAW,eACXC,UAAW,UACXC,YAAa,WACbC,aAAc,WACdC,UAAW,SACXC,YAAa,WACbC,gBAAiB,GACjBC,iBAAkB,oDAClBC,oBAAqB,cACrBC,aAAc,UACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_fi.js
Executable file
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_fi.js
Executable file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",
|
||||
icon_save: "Tallenna",
|
||||
icon_cancel: "Peru",
|
||||
icon_details: "Tiedot",
|
||||
icon_edit: "Muokkaa",
|
||||
icon_delete: "Poista",
|
||||
confirm_closing: "", //Your changes will be lost, are your sure ?
|
||||
confirm_deleting: "Haluatko varmasti poistaa tapahtuman?",
|
||||
section_description: "Kuvaus",
|
||||
section_time: "Aikajakso",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_fi.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_fi.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_fi.js.map","sources":["locale_fi.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,WAAY,WAAY,YAAa,WAAY,WAAY,eAAgB,gBAAiB,SAAU,UAAW,UAAW,YAAa,YACxJC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC3FC,UAAW,YAAa,YAAa,UAAW,cAAe,UAAW,YAAa,YACvFC,WAAY,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,OAEjDC,QACCC,qBAAsB,SACtBC,QAAS,QACTC,SAAU,SACVC,UAAW,WACXC,UAAW,iBACXC,UAAW,WACXC,YAAa,OACbC,aAAc,SACdC,UAAW,UACXC,YAAa,SACbC,gBAAiB,GACjBC,iBAAkB,wCAClBC,oBAAqB,SACrBC,aAAc,YACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
52
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_fr.js
Executable file
52
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_fr.js
Executable file
@ -0,0 +1,52 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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", "Aôu", "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:"Tâche neuve",
|
||||
icon_save:"Enregistrer",
|
||||
icon_cancel:"Annuler",
|
||||
icon_details:"Détails",
|
||||
icon_edit:"Modifier",
|
||||
icon_delete:"Effacer",
|
||||
confirm_closing:"",//Vos modifications seront perdus, êtes-vous sûr ?
|
||||
confirm_deleting:"L'événement sera effacé sans appel, êtes-vous sûr ?",
|
||||
|
||||
section_description:"Description",
|
||||
section_time:"Période",
|
||||
section_type:"Type",
|
||||
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Tâche neuve",
|
||||
column_start_date : "Date initiale",
|
||||
column_duration : "Durée",
|
||||
column_add : "",
|
||||
|
||||
|
||||
/* link confirmation */
|
||||
|
||||
confirm_link_deleting:"seront supprimées",
|
||||
link_start: "(début)",
|
||||
link_end: "(fin)",
|
||||
|
||||
type_task: "Task",
|
||||
type_project: "Project",
|
||||
type_milestone: "Milestone",
|
||||
|
||||
|
||||
minutes: "Minutes",
|
||||
hours: "Heures",
|
||||
days: "Jours",
|
||||
weeks: "Semaine",
|
||||
months: "Mois",
|
||||
years: "Années"
|
||||
}
|
||||
};
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_fr.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_fr.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_fr.js.map","sources":["locale_fr.js"],"names":["gantt","locale","date","month_full","month_short","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","column_text","column_start_date","column_duration","column_add","confirm_link_deleting","link_start","link_end","type_task","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,UAAW,UAAW,OAAQ,QAAS,MAAO,OAAQ,UAAW,OAAQ,YAAa,UAAW,WAAY,YAC1HC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,OAAQ,OAAQ,MAAO,MAAO,MAAO,MAAO,OAC7FC,UAAW,WAAY,QAAS,QAAS,WAAY,QAAS,WAAY,UAC1EC,WAAY,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,QAEvDC,QACCC,SAAS,cACTC,UAAU,cACVC,YAAY,UACZC,aAAa,UACbC,UAAU,WACVC,YAAY,UACZC,gBAAgB,GAChBC,iBAAiB,sDAEjBC,oBAAoB,cACpBC,aAAa,UACbC,aAAa,OAIPC,YAAe,cACfC,kBAAoB,gBACpBC,gBAAkB,QAClBC,WAAa,GAKnBC,sBAAsB,oBACtBC,WAAY,UACZC,SAAU,QAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGbC,QAAS,UACTC,MAAO,SACPC,KAAM,QACNC,MAAO,UACPC,OAAQ,OACRC,MAAO"}
|
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_he.js
Executable file
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_he.js
Executable file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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: "מחק",
|
||||
confirm_closing: "", //Your changes will be lost, are your sure ?
|
||||
confirm_deleting: "ארוע ימחק סופית.להמשיך?",
|
||||
section_description: "הסבר",
|
||||
section_time: "תקופה",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_he.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_he.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_he.js.map","sources":["locale_he.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,QAAS,SAAU,MAAO,QAAS,MAAO,OAAQ,OAAQ,SAAU,SAAU,UAAW,SAAU,SAChHC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC3FC,UAAW,QAAS,MAAO,QAAS,QAAS,QAAS,OAAQ,OAC9DC,WAAY,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,MAE3CC,QACCC,qBAAsB,OACtBC,QAAS,MACTC,SAAU,OACVC,UAAW,OACXC,UAAW,WACXC,UAAW,OACXC,YAAa,MACbC,aAAc,QACdC,UAAW,OACXC,YAAa,MACbC,gBAAiB,GACjBC,iBAAkB,0BAClBC,oBAAqB,OACrBC,aAAc,QACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_hu.js
Executable file
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_hu.js
Executable file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",
|
||||
icon_details: "Részletek",
|
||||
icon_edit: "Szerkesztés",
|
||||
icon_delete: "Törlés",
|
||||
confirm_closing: "", //A változások elvesznek, biztosan folytatja? "
|
||||
confirm_deleting: "Az esemény törölve lesz, biztosan folytatja?",
|
||||
section_description: "Leírás",
|
||||
section_time: "Idõszak",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_hu.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_hu.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_hu.js.map","sources":["locale_hu.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,SAAU,UAAW,UAAW,UAAW,QAAS,SAAU,SAAU,YAAa,aAAc,UAAW,WAAY,YACvIC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC3FC,UAAW,WAAY,QAAS,OAAQ,SAAU,YAAa,SAAU,WACzEC,WAAY,KAAM,KAAM,KAAM,MAAO,MAAO,KAAM,QAEnDC,QACCC,qBAAsB,KACtBC,QAAS,MACTC,SAAU,MACVC,UAAW,QACXC,UAAW,aACXC,UAAW,SACXC,YAAa,QACbC,aAAc,YACdC,UAAW,cACXC,YAAa,SACbC,gBAAiB,GACjBC,iBAAkB,+CAClBC,oBAAqB,SACrBC,aAAc,UACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_id.js
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_id.js
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",
icon_details: "Detail",
icon_edit: "Edit",
icon_delete: "Hapus",
confirm_closing: "", //Perubahan tidak akan disimpan ?
confirm_deleting: "Acara akan dihapus",
section_description: "Keterangan",
section_time: "Periode",
section_type:"Type",
/* grid columns */
column_text : "Task name",
column_start_date : "Start time",
column_duration : "Duration",
column_add : "",
/* link confirmation */
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"
}
};
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_id.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_id.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_id.js.map","sources":["locale_id.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,UAAW,WAAY,QAAS,QAAS,MAAO,OAAQ,OAAQ,UAAW,YAAa,UAAW,WAAY,YAC5HC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC3FC,UAAW,SAAU,QAAS,SAAU,OAAQ,QAAS,QAAS,SAClEC,WAAY,OAAQ,MAAO,MAAO,MAAO,MAAO,MAAO,QAExDC,QACCC,qBAAsB,WACtBC,QAAS,OACTC,SAAU,SACVC,UAAW,QACXC,UAAW,aACXC,UAAW,SACXC,YAAa,QACbC,aAAc,SACdC,UAAW,OACXC,YAAa,QACbC,gBAAiB,GACjBC,iBAAkB,qBAClBC,oBAAqB,aACrBC,aAAc,UACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_it.js
Executable file
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_it.js
Executable file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",
|
||||
icon_cancel: "Chiudi",
|
||||
icon_details: "Dettagli",
|
||||
icon_edit: "Modifica",
|
||||
icon_delete: "Elimina",
|
||||
confirm_closing: "", //Le modifiche apportate saranno perse, siete sicuri?
|
||||
confirm_deleting: "L'evento sarà eliminato, siete sicuri?",
|
||||
section_description: "Descrizione",
|
||||
section_time: "Periodo di tempo",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_it.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_it.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_it.js.map","sources":["locale_it.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,UAAW,WAAY,QAAS,SAAU,SAAU,SAAU,SAAU,SAAU,YAAa,UAAW,WAAY,YACnIC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC3FC,UAAW,WAAY,SAAU,UAAW,YAAa,UAAW,UAAW,UAC/EC,WAAY,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,QAEvDC,QACCC,qBAAsB,OACtBC,QAAS,SACTC,SAAU,YACVC,UAAW,OACXC,UAAW,eACXC,UAAW,QACXC,YAAa,SACbC,aAAc,WACdC,UAAW,WACXC,YAAa,UACbC,gBAAiB,GACjBC,iBAAkB,yCAClBC,oBAAqB,cACrBC,aAAc,mBACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
57
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_jp.js
Executable file
57
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_jp.js
Executable file
@ -0,0 +1,57 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
/*
|
||||
Translation by Genexus Japan Inc.
|
||||
*/
|
||||
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: "イベント完全に削除されます、宜しいですか?",
|
||||
section_description: "デスクリプション",
|
||||
section_time: "期間",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_jp.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_jp.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_jp.js.map","sources":["locale_jp.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAGAA,MAAMC,QACLC,MACCC,YAAa,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,MAAO,MAAO,OACjFC,aAAe,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,MAAO,MAAO,OACnFC,UAAW,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OACrDC,WAAY,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,MAE3CC,QACCC,qBAAsB,KACtBC,QAAS,IACTC,SAAU,IACVC,UAAW,IACXC,UAAW,QACXC,UAAW,KACXC,YAAa,QACbC,aAAc,KACdC,UAAW,KACXC,YAAa,KACbC,gBAAiB,GACjBC,iBAAkB,wBAClBC,oBAAqB,WACrBC,aAAc,KACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_nb.js
Executable file
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_nb.js
Executable file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",
|
||||
icon_details: "Detaljer",
|
||||
icon_edit: "Rediger",
|
||||
icon_delete: "Slett",
|
||||
confirm_closing: "", //Your changes will be lost, are your sure ?
|
||||
confirm_deleting: "Hendelsen vil bli slettet permanent. Er du sikker?",
|
||||
section_description: "Beskrivelse",
|
||||
section_time: "Tidsperiode",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_nb.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_nb.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_nb.js.map","sources":["locale_nb.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,SAAU,UAAW,OAAQ,QAAS,MAAO,OAAQ,OAAQ,SAAU,YAAa,UAAW,WAAY,YACxHC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC3FC,UAAW,SAAU,SAAU,UAAW,SAAU,UAAW,SAAU,UACzEC,WAAY,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,QAEvDC,QACCC,qBAAsB,QACtBC,QAAS,MACTC,SAAU,MACVC,UAAW,QACXC,UAAW,cACXC,UAAW,QACXC,YAAa,SACbC,aAAc,WACdC,UAAW,UACXC,YAAa,QACbC,gBAAiB,GACjBC,iBAAkB,qDAClBC,oBAAqB,cACrBC,aAAc,cACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_nl.js
Executable file
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_nl.js
Executable file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",
|
||||
icon_details: "Details",
|
||||
icon_edit: "Bewerken",
|
||||
icon_delete: "Verwijderen",
|
||||
confirm_closing: "", //Your changes will be lost, are your sure ?
|
||||
confirm_deleting: "Item zal permanent worden verwijderd, doorgaan?",
|
||||
section_description: "Beschrijving",
|
||||
section_time: "Tijd periode",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Taak omschrijving",
|
||||
column_start_date : "Startdatum",
|
||||
column_duration : "Duur",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
link: "Koppeling",
|
||||
confirm_link_deleting:"zal worden verwijderd",
|
||||
link_start: " (start)",
|
||||
link_end: " (eind)",
|
||||
|
||||
type_task: "Task",
|
||||
type_project: "Project",
|
||||
type_milestone: "Milestone",
|
||||
|
||||
|
||||
minutes: "minuten",
|
||||
hours: "uren",
|
||||
days: "dagen",
|
||||
weeks: "weken",
|
||||
months: "maanden",
|
||||
years: "jaren"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_nl.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_nl.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_nl.js.map","sources":["locale_nl.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,UAAW,WAAY,QAAS,QAAS,MAAO,OAAQ,OAAQ,WAAY,YAAa,UAAW,WAAY,YAC7HC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC3FC,UAAW,SAAU,UAAW,UAAW,WAAY,YAAa,UAAW,YAC/EC,WAAY,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,OAEjDC,QACCC,qBAAsB,UACtBC,QAAS,MACTC,SAAU,OACVC,UAAW,QACXC,UAAW,aACXC,UAAW,UACXC,YAAa,YACbC,aAAc,UACdC,UAAW,WACXC,YAAa,cACbC,gBAAiB,GACjBC,iBAAkB,kDAClBC,oBAAqB,eACrBC,aAAc,eACdC,aAAa,OAGPC,YAAc,oBACdC,kBAAoB,aACpBC,gBAAkB,OAClBC,WAAa,GAGnBC,KAAM,YACNC,sBAAsB,wBACtBC,WAAY,WACZC,SAAU,UAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,OACPC,KAAM,QACNC,MAAO,QACPC,OAAQ,UACRC,MAAO"}
|
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_no.js
Executable file
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_no.js
Executable file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",
|
||||
icon_edit: "Endre",
|
||||
icon_delete: "Slett",
|
||||
confirm_closing: "Endringer blir ikke lagret, er du sikker?", //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",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_no.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_no.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_no.js.map","sources":["locale_no.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,SAAU,UAAW,OAAQ,QAAS,MAAO,OAAQ,OAAQ,SAAU,YAAa,UAAW,WAAY,YACxHC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC3FC,UAAW,SAAU,SAAU,UAAW,SAAU,UAAW,SAAU,UACzEC,WAAY,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,QAEvDC,QACCC,qBAAsB,OACtBC,QAAS,MACTC,SAAU,MACVC,UAAW,QACXC,UAAW,KACXC,UAAW,QACXC,YAAa,SACbC,aAAc,WACdC,UAAW,QACXC,YAAa,QACbC,gBAAiB,4CACjBC,iBAAkB,6CAClBC,oBAAqB,cACrBC,aAAc,cACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_pl.js
Executable file
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_pl.js
Executable file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",
|
||||
icon_cancel: "Anuluj",
|
||||
icon_details: "Szczegóły",
|
||||
icon_edit: "Edytuj",
|
||||
icon_delete: "Usuń",
|
||||
confirm_closing: "", //Zmiany zostaną usunięte, jesteś pewien?
|
||||
confirm_deleting: "Zdarzenie zostanie usunięte na zawsze, kontynuować?",
|
||||
section_description: "Opis",
|
||||
section_time: "Okres czasu",
|
||||
section_type: "Typ",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Nazwa zadania",
|
||||
column_start_date : "Początek",
|
||||
column_duration : "Czas trwania",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
link: "Link",
|
||||
confirm_link_deleting:"zostanie usunięty",
|
||||
link_start: " (początek)",
|
||||
link_end: " (koniec)",
|
||||
|
||||
type_task: "Zadanie",
|
||||
type_project: "Projekt",
|
||||
type_milestone: "Milestone",
|
||||
|
||||
|
||||
minutes: "Minuty",
|
||||
hours: "Godziny",
|
||||
days: "Dni",
|
||||
weeks: "Tydzień",
|
||||
months: "Miesiące",
|
||||
years: "Lata"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_pl.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_pl.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_pl.js.map","sources":["locale_pl.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,UAAW,OAAQ,SAAU,WAAY,MAAO,WAAY,SAAU,WAAY,WAAY,cAAe,WAAY,YACtIC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC3FC,UAAW,YAAa,eAAgB,SAAU,QAAS,WAAY,SAAU,UACjFC,WAAY,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,QAEvDC,QACCC,qBAAsB,OACtBC,QAAS,QACTC,SAAU,UACVC,UAAW,UACXC,UAAW,iBACXC,UAAW,SACXC,YAAa,SACbC,aAAc,YACdC,UAAW,SACXC,YAAa,OACbC,gBAAiB,GACjBC,iBAAkB,sDAClBC,oBAAqB,OACrBC,aAAc,cACdC,aAAc,MAGdC,YAAc,gBACdC,kBAAoB,WACpBC,gBAAkB,eAClBC,WAAa,GAGbC,KAAM,OACNC,sBAAsB,oBACtBC,WAAY,cACZC,SAAU,YAEVC,UAAW,UACXC,aAAc,UACdC,eAAgB,YAGhBC,QAAS,SACTC,MAAO,UACPC,KAAM,MACNC,MAAO,UACPC,OAAQ,WACRC,MAAO"}
|
63
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_pt.js
Executable file
63
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_pt.js
Executable file
@ -0,0 +1,63 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
/*
|
||||
|
||||
TRANSLATION BY MATTHEUS PIROVANI RORIZ GONЗALVES
|
||||
|
||||
mattheusroriz@hotmail.com / mattheus.pirovani@gmail.com /
|
||||
|
||||
www.atrixian.com.br
|
||||
|
||||
*/
|
||||
|
||||
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",
|
||||
icon_details: "Detalhes",
|
||||
icon_edit: "Editar",
|
||||
icon_delete: "Deletar",
|
||||
confirm_closing: "Suas alterações serão perdidas. Você tem certeza?", //Your changes will be lost, are your sure ?
|
||||
confirm_deleting: "Tem certeza que deseja excluir?",
|
||||
section_description: "Descrição",
|
||||
section_time: "Período de tempo",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Nome tarefa",
|
||||
column_start_date : "Data início",
|
||||
column_duration : "Duração",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
link: "Link",
|
||||
confirm_link_deleting:"será apagado",
|
||||
link_start: " (início)",
|
||||
link_end: " (fim)",
|
||||
|
||||
type_task: "Task",
|
||||
type_project: "Project",
|
||||
type_milestone: "Milestone",
|
||||
|
||||
|
||||
minutes: "Minutos",
|
||||
hours: "Horas",
|
||||
days: "Dias",
|
||||
weeks: "Semanas",
|
||||
months: "Meses",
|
||||
years: "Anos"
|
||||
}
|
||||
};
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_pt.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_pt.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_pt.js.map","sources":["locale_pt.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAUAA,MAAMC,QACLC,MACCC,YAAa,UAAW,YAAa,QAAS,QAAS,OAAQ,QAAS,QAAS,SAAU,WAAY,UAAW,WAAY,YAC9HC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC3FC,UAAW,UAAW,UAAW,QAAS,SAAU,SAAU,QAAS,UACvEC,WAAY,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,QAEvDC,QACCC,qBAAsB,OACtBC,QAAS,MACTC,SAAU,SACVC,UAAW,MACXC,UAAW,cACXC,UAAW,SACXC,YAAa,WACbC,aAAc,WACdC,UAAW,SACXC,YAAa,UACbC,gBAAiB,oDACjBC,iBAAkB,kCAClBC,oBAAqB,YACrBC,aAAc,mBACdC,aAAa,OAGbC,YAAc,cACdC,kBAAoB,cACpBC,gBAAkB,UAClBC,WAAa,GAGbC,KAAM,OACNC,sBAAsB,eACtBC,WAAY,YACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGhBC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,UACPC,OAAQ,QACRC,MAAO"}
|
58
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_ro.js
Executable file
58
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_ro.js
Executable file
@ -0,0 +1,58 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
/*
|
||||
Traducere de Ovidiu Lixandru: http://www.madball.ro
|
||||
*/
|
||||
|
||||
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",
|
||||
icon_details:"Detalii",
|
||||
icon_edit:"Editeaza",
|
||||
icon_delete:"Sterge",
|
||||
confirm_closing:"Schimbarile nu vor fi salvate, esti sigur?",//Your changes will be lost, are your sure ?
|
||||
confirm_deleting:"Evenimentul va fi sters permanent, esti sigur?",
|
||||
section_description:"Descriere",
|
||||
section_time:"Interval",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_ro.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_ro.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_ro.js.map","sources":["locale_ro.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAIAA,MAAMC,QACLC,MACCC,YAAY,WAAY,YAAa,SAAU,UAAW,MAAO,QAAS,QAAS,SAAU,aAAc,YAAa,WAAY,YACpIC,aAAa,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC1FC,UAAU,WAAY,OAAQ,QAAS,WAAY,MAAO,SAAU,WACpEC,WAAW,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,OAEhDC,QACCC,qBAAqB,SACrBC,QAAQ,KACRC,SAAS,YACTC,UAAU,OACVC,UAAU,gBACVC,UAAU,WACVC,YAAY,WACZC,aAAa,UACbC,UAAU,WACVC,YAAY,SACZC,gBAAgB,6CAChBC,iBAAiB,iDACjBC,oBAAoB,YACpBC,aAAa,WACbC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_ru.js
Executable file
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_ru.js
Executable file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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: "Отменить",
|
||||
icon_details: "Детали",
|
||||
icon_edit: "Изменить",
|
||||
icon_delete: "Удалить",
|
||||
confirm_closing: "", //Ваши изменения будут потеряны, продолжить?
|
||||
confirm_deleting: "Событие будет удалено безвозвратно, продолжить?",
|
||||
section_description: "Описание",
|
||||
section_time: "Период времени",
|
||||
section_type:"Тип",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Задача",
|
||||
column_start_date : "Начало",
|
||||
column_duration : "Длительность",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
link: "Связь",
|
||||
confirm_link_deleting:"будет удалена",
|
||||
link_start: " (начало)",
|
||||
link_end: " (конец)",
|
||||
|
||||
type_task: "Task",
|
||||
type_project: "Project",
|
||||
type_milestone: "Milestone",
|
||||
|
||||
|
||||
minutes: "Минута",
|
||||
hours: "Час",
|
||||
days: "День",
|
||||
weeks: "Неделя",
|
||||
months: "Месяц",
|
||||
years: "Год"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_ru.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_ru.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_ru.js.map","sources":["locale_ru.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,SAAU,UAAW,OAAQ,SAAU,MAAO,OAAQ,OAAQ,SAAU,WAAY,UAAW,SAAU,WACtHC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC3FC,UAAY,cAAe,cAAe,UAAW,QAAS,UAAW,UAAW,WACpFC,WAAY,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,OAEjDC,QACCC,qBAAsB,UACtBC,QAAS,OACTC,SAAU,SACVC,UAAW,QACXC,UAAW,gBACXC,UAAW,YACXC,YAAa,WACbC,aAAc,SACdC,UAAW,WACXC,YAAa,UACbC,gBAAiB,GACjBC,iBAAkB,kDAClBC,oBAAqB,WACrBC,aAAc,iBACdC,aAAa,MAGPC,YAAc,SACdC,kBAAoB,SACpBC,gBAAkB,eAClBC,WAAa,GAGnBC,KAAM,QACNC,sBAAsB,gBACtBC,WAAY,YACZC,SAAU,WAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,SACTC,MAAO,MACPC,KAAM,OACNC,MAAO,SACPC,OAAQ,QACRC,MAAO"}
|
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_si.js
Executable file
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_si.js
Executable file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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",
|
||||
icon_details: "Podrobnosti",
|
||||
icon_edit: "Uredi",
|
||||
icon_delete: "Izbriši",
|
||||
confirm_closing: "", //Spremembe ne bodo shranjene. Želite nadaljevati ?
|
||||
confirm_deleting: "Dogodek bo izbrisan. Želite nadaljevati?",
|
||||
section_description: "Opis",
|
||||
section_time: "Časovni okvir",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_si.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_si.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_si.js.map","sources":["locale_si.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,SAAU,UAAW,QAAS,QAAS,MAAO,QAAS,QAAS,SAAU,YAAa,UAAW,WAAY,YAC3HC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC3FC,UAAW,UAAW,aAAc,QAAS,QAAS,UAAW,QAAS,UAC1EC,WAAY,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,QAEvDC,QACCC,qBAAsB,QACtBC,QAAS,MACTC,SAAU,QACVC,UAAW,QACXC,UAAW,cACXC,UAAW,SACXC,YAAa,WACbC,aAAc,cACdC,UAAW,QACXC,YAAa,UACbC,gBAAiB,GACjBC,iBAAkB,2CAClBC,oBAAqB,OACrBC,aAAc,gBACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_sk.js
Executable file
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_sk.js
Executable file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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äť",
|
||||
icon_details: "Detail",
|
||||
icon_edit: "Edituj",
|
||||
icon_delete: "Zmazať",
|
||||
confirm_closing: "Vaše zmeny nebudú uložené. Skutočne?", //Vaše změny budou ztraceny, opravdu ?
|
||||
confirm_deleting: "Udalosť bude natrvalo vymazaná. Skutočne?",
|
||||
section_description: "Poznámky",
|
||||
section_time: "Doba platnosti",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_sk.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_sk.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_sk.js.map","sources":["locale_sk.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,SAAU,UAAW,QAAS,QAAS,MAAO,MAAO,MAAO,SAAU,YAAa,UAAW,WAAY,YACvHC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAAQ,MAAO,MAAO,OAC5FC,UAAW,SAAU,WAAY,SAAU,SAAU,UAAW,SAAU,UAC1EC,WAAY,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,OAEjDC,QACCC,qBAAsB,OACtBC,QAAS,MACTC,SAAU,SACVC,UAAW,SACXC,UAAW,eACXC,UAAW,SACXC,YAAa,OACbC,aAAc,SACdC,UAAW,SACXC,YAAa,SACbC,gBAAiB,uCACjBC,iBAAkB,4CAClBC,oBAAqB,WACrBC,aAAc,iBACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_sv.js
Executable file
54
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_sv.js
Executable file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
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: "Ångra",
|
||||
icon_details: "Detajer",
|
||||
icon_edit: "Ändra",
|
||||
icon_delete: "Ta bort",
|
||||
confirm_closing: "", //Dina förändingar kommer gå förlorade, är du säker?
|
||||
confirm_deleting: "Är du säker på att du vill ta bort händelsen permanent?",
|
||||
section_description: "Beskrivning",
|
||||
section_time: "Tid",
|
||||
section_type:"Type",
|
||||
/* grid columns */
|
||||
|
||||
column_text : "Task name",
|
||||
column_start_date : "Start time",
|
||||
column_duration : "Duration",
|
||||
column_add : "",
|
||||
|
||||
/* link confirmation */
|
||||
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"
|
||||
}
|
||||
};
|
||||
|
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_sv.js.map
Executable file
5
phpgwapi/js/dhtmlxGantt/codebase/sources/locale/locale_sv.js.map
Executable file
@ -0,0 +1,5 @@
|
||||
/*
|
||||
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License
|
||||
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
|
||||
*/
|
||||
{"version":3,"file":"locale_sv.js.map","sources":["locale_sv.js"],"names":["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","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","type_project","type_milestone","minutes","hours","days","weeks","months","years"],"mappings":"AAAAA,MAAMC,QACLC,MACCC,YAAa,UAAW,WAAY,OAAQ,QAAS,MAAO,OAAQ,OAAQ,UAAW,YAAa,UAAW,WAAY,YAC3HC,aAAc,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAC3FC,UAAW,SAAU,SAAU,SAAU,SAAU,UAAW,SAAU,UACxEC,WAAY,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,QAEvDC,QACCC,qBAAsB,OACtBC,QAAS,MACTC,SAAU,QACVC,UAAW,QACXC,UAAW,cACXC,UAAW,QACXC,YAAa,QACbC,aAAc,UACdC,UAAW,QACXC,YAAa,UACbC,gBAAiB,GACjBC,iBAAkB,0DAClBC,oBAAqB,cACrBC,aAAc,MACdC,aAAa,OAGPC,YAAc,YACdC,kBAAoB,aACpBC,gBAAkB,WAClBC,WAAa,GAGnBC,KAAM,OACNC,sBAAsB,kBACtBC,WAAY,WACZC,SAAU,SAEVC,UAAW,OACXC,aAAc,UACdC,eAAgB,YAGVC,QAAS,UACTC,MAAO,QACPC,KAAM,OACNC,MAAO,OACPC,OAAQ,SACRC,MAAO"}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user