mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
feature 2679 : allow to change creation time
git-svn-id: http://piwigo.org/svn/trunk@28500 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -292,7 +292,7 @@ DELETE
|
||||
}
|
||||
else
|
||||
{
|
||||
$date_creation = $_POST['date_creation'].' 00:00:00';
|
||||
$date_creation = $_POST['date_creation'];
|
||||
}
|
||||
|
||||
$datas = array();
|
||||
@@ -565,7 +565,7 @@ if (count($page['cat_elements_id']) > 0)
|
||||
|
||||
// creation date
|
||||
$template->assign('DATE_CREATION',
|
||||
empty($_POST['date_creation']) ? date('y-n-j') : $_POST['date_creation']
|
||||
empty($_POST['date_creation']) ? date('Y-m-d').' 00:00:00' : $_POST['date_creation']
|
||||
);
|
||||
|
||||
// image level options
|
||||
|
||||
@@ -78,15 +78,7 @@ SELECT id, date_creation
|
||||
|
||||
if (!empty($_POST['date_creation-'.$row['id']]))
|
||||
{
|
||||
if (!empty($row['date_creation']))
|
||||
{
|
||||
list(, $time) = explode(' ', $row['date_creation']);
|
||||
}
|
||||
else
|
||||
{
|
||||
$time = '00:00:00';
|
||||
}
|
||||
$data['date_creation'] = $_POST['date_creation-'.$row['id']].' '.$time;
|
||||
$data['date_creation'] = $_POST['date_creation-'.$row['id']];
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -222,16 +214,6 @@ SELECT *
|
||||
|
||||
$src_image = new SrcImage($row);
|
||||
|
||||
// creation date
|
||||
if (!empty($row['date_creation']))
|
||||
{
|
||||
list($date) = explode(' ', $row['date_creation']);
|
||||
}
|
||||
else
|
||||
{
|
||||
$date = '';
|
||||
}
|
||||
|
||||
$query = '
|
||||
SELECT
|
||||
id,
|
||||
@@ -260,7 +242,7 @@ SELECT
|
||||
'AUTHOR' => htmlspecialchars(@$row['author']),
|
||||
'LEVEL' => !empty($row['level'])?$row['level']:'0',
|
||||
'DESCRIPTION' => htmlspecialchars(@$row['comment']),
|
||||
'DATE_CREATION' => $date,
|
||||
'DATE_CREATION' => $row['date_creation'],
|
||||
'TAGS' => $tag_selection,
|
||||
)
|
||||
));
|
||||
|
||||
@@ -570,7 +570,7 @@ else
|
||||
{
|
||||
// by default, at page load, we want the selected date to be the current
|
||||
// date
|
||||
$form['start'] = $form['end'] = date('Y-n-j');
|
||||
$form['start'] = $form['end'] = date('Y-m-d');
|
||||
$form['types'] = $types;
|
||||
// Hoverbox by default
|
||||
$form['display_thumbnail'] =
|
||||
|
||||
@@ -127,7 +127,7 @@ if (isset($_POST['submit']))
|
||||
|
||||
if (!empty($_POST['date_creation']))
|
||||
{
|
||||
$data['date_creation'] = $_POST['date_creation'].' '.$_POST['date_creation_time'];
|
||||
$data['date_creation'] = $_POST['date_creation'];
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -255,6 +255,8 @@ $template->assign(
|
||||
: @$row['author']
|
||||
),
|
||||
|
||||
'DATE_CREATION' => $row['date_creation'],
|
||||
|
||||
'DESCRIPTION' =>
|
||||
htmlspecialchars( isset($_POST['description']) ?
|
||||
stripslashes($_POST['description']) : @$row['comment'] ),
|
||||
@@ -316,26 +318,7 @@ $template->assign(
|
||||
)
|
||||
);
|
||||
|
||||
// creation date
|
||||
unset($day, $month, $year);
|
||||
|
||||
if (!empty($row['date_creation']))
|
||||
{
|
||||
list($date, $time) = explode(' ', $row['date_creation']);
|
||||
}
|
||||
else
|
||||
{
|
||||
$date = '';
|
||||
$time = '00:00:00';
|
||||
}
|
||||
|
||||
$template->assign(
|
||||
array(
|
||||
'DATE_CREATION' => $date,
|
||||
'DATE_CREATION_TIME' => $time,
|
||||
)
|
||||
);
|
||||
|
||||
// categories
|
||||
$query = '
|
||||
SELECT category_id, uppercats
|
||||
FROM '.IMAGE_CATEGORY_TABLE.' AS ic
|
||||
|
||||
@@ -1,45 +1,69 @@
|
||||
jQuery.timepicker.log = jQuery.noop; // that's ugly, but the timepicker is acting weird and throws parsing errors
|
||||
|
||||
jQuery.fn.pwgDatepicker = function(options) {
|
||||
options = options || {};
|
||||
|
||||
return this.each(function() {
|
||||
var $this = jQuery(this),
|
||||
$target = jQuery('[name="'+ jQuery(this).data('datepicker') +'"]'),
|
||||
value = $target.val().split('-');
|
||||
linked = !!$target.length;
|
||||
|
||||
function set(date) {
|
||||
$this.datepicker('setDate', date);
|
||||
if (linked) { // get value before init
|
||||
var value = $target.val().split(' ');
|
||||
}
|
||||
|
||||
// custom setter
|
||||
function set(date, init) {
|
||||
$this.datetimepicker('setDate', date);
|
||||
|
||||
if ($this.data('datepicker-start')) {
|
||||
$start.datepicker('option', 'maxDate', date);
|
||||
$start.datetimepicker('option', 'maxDate', date);
|
||||
}
|
||||
else if ($this.data('datepicker-end')) {
|
||||
$end.datepicker('option', 'minDate', date);
|
||||
if (!init) { // on init, "end" is not initialized yet (assuming "start" is before "end" in the DOM)
|
||||
$end.datetimepicker('option', 'minDate', date);
|
||||
}
|
||||
}
|
||||
|
||||
if (!date && linked) {
|
||||
$target.val('');
|
||||
}
|
||||
}
|
||||
|
||||
// init picker
|
||||
$this.datepicker(jQuery.extend({
|
||||
dateFormat: 'DD d MM yy',
|
||||
altField: $target,
|
||||
$this.datetimepicker(jQuery.extend({
|
||||
dateFormat: linked ? 'DD d MM yy' : 'yy-mm-dd',
|
||||
timeFormat: 'HH:mm',
|
||||
|
||||
altField: linked ? $target : null,
|
||||
altFormat: 'yy-mm-dd',
|
||||
altTimeFormat: options.showTimepicker ? 'HH:mm:ss' : '',
|
||||
|
||||
autoSize: true,
|
||||
changeMonth : true,
|
||||
changeYear: true
|
||||
changeYear: true,
|
||||
showTimepicker: false,
|
||||
altFieldTimeOnly: false,
|
||||
showSecond: false,
|
||||
alwaysSetTime: false,
|
||||
stepMinute: 5
|
||||
}, options));
|
||||
|
||||
// attach linked picker (for ranges)
|
||||
// attach range pickers
|
||||
if ($this.data('datepicker-start')) {
|
||||
var $start = jQuery('[data-datepicker="'+ jQuery(this).data('datepicker-start') +'"]');
|
||||
|
||||
$this.datepicker('option', 'onClose', function(date) {
|
||||
$start.datepicker('option', 'maxDate', date);
|
||||
$this.datetimepicker('option', 'onClose', function(date) {
|
||||
$start.datetimepicker('option', 'maxDate', date);
|
||||
});
|
||||
|
||||
$this.datetimepicker('option', 'minDate', $start.datetimepicker('getDate'));
|
||||
}
|
||||
else if ($this.data('datepicker-end')) {
|
||||
var $end = jQuery('[data-datepicker="'+ jQuery(this).data('datepicker-end') +'"]');
|
||||
|
||||
$this.datepicker('option', 'onClose', function(date) {
|
||||
$end.datepicker('option', 'minDate', date);
|
||||
$this.datetimepicker('option', 'onClose', function(date) {
|
||||
$end.datetimepicker('option', 'minDate', date);
|
||||
});
|
||||
}
|
||||
|
||||
@@ -47,15 +71,26 @@ jQuery.fn.pwgDatepicker = function(options) {
|
||||
if ($this.data('datepicker-unset')) {
|
||||
jQuery('#'+ $this.data('datepicker-unset')).on('click', function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
$target.val('');
|
||||
set(null);
|
||||
set(null, false);
|
||||
});
|
||||
}
|
||||
|
||||
// set value from linked input
|
||||
if (value.length == 3) {
|
||||
set(new Date(value[0], value[1]-1, value[2]));
|
||||
if (linked) {
|
||||
if (value[0].length == 10 && !options.showTimepicker) {
|
||||
set(jQuery.datepicker.parseDate('yy-mm-dd', value[0]), true);
|
||||
}
|
||||
else if (value.length == 2 && options.showTimepicker) {
|
||||
set(jQuery.datepicker.parseDateTime('yy-mm-dd', 'HH:mm:ss', value.join(' ')), true);
|
||||
}
|
||||
else {
|
||||
set(null, true);
|
||||
}
|
||||
}
|
||||
|
||||
// autoSize not handled by timepicker
|
||||
if (options.showTimepicker) {
|
||||
$this.attr('size', parseInt($this.attr('size'))+6);
|
||||
}
|
||||
});
|
||||
};
|
||||
@@ -60,7 +60,7 @@ jQuery(document).ready(function() {
|
||||
|
||||
{footer_script require='jquery.tokeninput'}
|
||||
jQuery(document).ready(function() {ldelim}
|
||||
jQuery('[data-datepicker]').pwgDatepicker();
|
||||
jQuery('[data-datepicker]').pwgDatepicker({ showTimepicker: true });
|
||||
|
||||
jQuery("a.preview-box").colorbox();
|
||||
|
||||
|
||||
@@ -51,7 +51,7 @@ tagsCache.get(function(tags) {
|
||||
|
||||
{* <!-- DATEPICKER --> *}
|
||||
jQuery(function(){ {* <!-- onLoad needed to wait localization loads --> *}
|
||||
jQuery('[data-datepicker]').pwgDatepicker();
|
||||
jQuery('[data-datepicker]').pwgDatepicker({ showTimepicker: true });
|
||||
});
|
||||
|
||||
{* <!-- THUMBNAILS --> *}
|
||||
|
||||
@@ -1,9 +1,16 @@
|
||||
{combine_script id='datepicker.js' load='footer' require='jquery.ui.datepicker' path='admin/themes/default/js/datepicker.js'}
|
||||
{combine_script id='jquery.ui.timepicker-addon' load='footer' require='jquery.ui.datepicker,jquery.ui.slider' path="themes/default/js/ui/jquery.ui.timepicker-addon.js"}
|
||||
{combine_script id='datepicker.js' load='footer' require='jquery.ui.timepicker-addon' path='admin/themes/default/js/datepicker.js'}
|
||||
|
||||
{assign var="datepicker_language" value="themes/default/js/ui/i18n/jquery.ui.datepicker-`$lang_info.code`.js"}
|
||||
|
||||
{if "PHPWG_ROOT_PATH"|@constant|@cat:$datepicker_language|@file_exists}
|
||||
{combine_script id="jquery.ui.datepicker-$lang_info.code" load='footer' path=$datepicker_language}
|
||||
{combine_script id="jquery.ui.datepicker-$lang_info.code" load='footer' require='jquery.ui.datepicker' path=$datepicker_language}
|
||||
{/if}
|
||||
|
||||
{combine_css path="themes/default/js/ui/theme/jquery.ui.datepicker.css"}
|
||||
{assign var="timepicker_language" value="themes/default/js/ui/i18n/jquery.ui.timepicker-`$lang_info.code`.js"}
|
||||
{if "PHPWG_ROOT_PATH"|@constant|@cat:$datepicker_language|@file_exists}
|
||||
{combine_script id="jquery.ui.timepicker-$lang_info.code" load='footer' require='jquery.ui.timepicker-addon' path=$timepicker_language}
|
||||
{/if}
|
||||
|
||||
{combine_css path="themes/default/js/ui/theme/jquery.ui.slider.css"}
|
||||
{combine_css path="themes/default/js/ui/theme/jquery.ui.datepicker.css"}
|
||||
{combine_css path="themes/default/js/ui/theme/jquery.ui.timepicker-addon.css"}
|
||||
@@ -77,7 +77,7 @@ tagsCache.get(function(tags) {
|
||||
|
||||
{* <!-- DATEPICKER --> *}
|
||||
jQuery(function(){ {* <!-- onLoad needed to wait localization loads --> *}
|
||||
jQuery('[data-datepicker]').pwgDatepicker();
|
||||
jQuery('[data-datepicker]').pwgDatepicker({ showTimepicker: true });
|
||||
});
|
||||
}());
|
||||
{/footer_script}
|
||||
@@ -140,7 +140,6 @@ jQuery(function(){ {* <!-- onLoad needed to wait localization loads --> *}
|
||||
<p>
|
||||
<strong>{'Creation date'|@translate}</strong>
|
||||
<br>
|
||||
<input type="hidden" name="date_creation_time" value="{$DATE_CREATION_TIME}">
|
||||
<input type="hidden" name="date_creation" value="{$DATE_CREATION}">
|
||||
<label>
|
||||
<i class="icon-calendar"></i>
|
||||
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-af.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-af.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Afrikaans translation for the jQuery Timepicker Addon */
|
||||
/* Written by Deon Heyns */
|
||||
(function($) {
|
||||
$.timepicker.regional['af'] = {
|
||||
timeOnlyTitle: 'Kies Tyd',
|
||||
timeText: 'Tyd ',
|
||||
hourText: 'Ure ',
|
||||
minuteText: 'Minute',
|
||||
secondText: 'Sekondes',
|
||||
millisecText: 'Millisekondes',
|
||||
microsecText: 'Mikrosekondes',
|
||||
timezoneText: 'Tydsone',
|
||||
currentText: 'Huidige Tyd',
|
||||
closeText: 'Klaar',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['AM', 'A'],
|
||||
pmNames: ['PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['af']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-am.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-am.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Armenian translation for the jQuery Timepicker Addon */
|
||||
/* Written by Artavazd Avetisyan artavazda@hotmail.com */
|
||||
(function($) {
|
||||
$.timepicker.regional['am'] = {
|
||||
timeOnlyTitle: 'Ընտրեք ժամանակը',
|
||||
timeText: 'Ժամանակը',
|
||||
hourText: 'Ժամ',
|
||||
minuteText: 'Րոպե',
|
||||
secondText: 'Վարկյան',
|
||||
millisecText: 'Միլիվարկյան',
|
||||
microsecText: 'Միկրովարկյան',
|
||||
timezoneText: 'Ժամային գոտին',
|
||||
currentText: 'Այժմ',
|
||||
closeText: 'Փակել',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['AM', 'A'],
|
||||
pmNames: ['PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['am']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-bg.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-bg.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Bulgarian translation for the jQuery Timepicker Addon */
|
||||
/* Written by Plamen Kovandjiev */
|
||||
(function($) {
|
||||
$.timepicker.regional['bg'] = {
|
||||
timeOnlyTitle: 'Изберете време',
|
||||
timeText: 'Време',
|
||||
hourText: 'Час',
|
||||
minuteText: 'Минути',
|
||||
secondText: 'Секунди',
|
||||
millisecText: 'Милисекунди',
|
||||
microsecText: 'Микросекунди',
|
||||
timezoneText: 'Часови пояс',
|
||||
currentText: 'Сега',
|
||||
closeText: 'Затвори',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['AM', 'A'],
|
||||
pmNames: ['PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['bg']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-ca.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-ca.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Catalan translation for the jQuery Timepicker Addon */
|
||||
/* Written by Sergi Faber */
|
||||
(function($) {
|
||||
$.timepicker.regional['ca'] = {
|
||||
timeOnlyTitle: 'Escollir una hora',
|
||||
timeText: 'Hora',
|
||||
hourText: 'Hores',
|
||||
minuteText: 'Minuts',
|
||||
secondText: 'Segons',
|
||||
millisecText: 'Milisegons',
|
||||
microsecText: 'Microsegons',
|
||||
timezoneText: 'Fus horari',
|
||||
currentText: 'Ara',
|
||||
closeText: 'Tancar',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['AM', 'A'],
|
||||
pmNames: ['PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['ca']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-cs.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-cs.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Czech translation for the jQuery Timepicker Addon */
|
||||
/* Written by Ondřej Vodáček */
|
||||
(function($) {
|
||||
$.timepicker.regional['cs'] = {
|
||||
timeOnlyTitle: 'Vyberte čas',
|
||||
timeText: 'Čas',
|
||||
hourText: 'Hodiny',
|
||||
minuteText: 'Minuty',
|
||||
secondText: 'Vteřiny',
|
||||
millisecText: 'Milisekundy',
|
||||
microsecText: 'Mikrosekundy',
|
||||
timezoneText: 'Časové pásmo',
|
||||
currentText: 'Nyní',
|
||||
closeText: 'Zavřít',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['dop.', 'AM', 'A'],
|
||||
pmNames: ['odp.', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['cs']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-da.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-da.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Danish translation for the jQuery Timepicker Addon */
|
||||
/* Written by Lars H. Jensen (http://www.larshj.dk) */
|
||||
(function ($) {
|
||||
$.timepicker.regional['da'] = {
|
||||
timeOnlyTitle: 'Vælg tid',
|
||||
timeText: 'Tid',
|
||||
hourText: 'Time',
|
||||
minuteText: 'Minut',
|
||||
secondText: 'Sekund',
|
||||
millisecText: 'Millisekund',
|
||||
microsecText: 'Mikrosekund',
|
||||
timezoneText: 'Tidszone',
|
||||
currentText: 'Nu',
|
||||
closeText: 'Luk',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['am', 'AM', 'A'],
|
||||
pmNames: ['pm', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['da']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-de.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-de.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* German translation for the jQuery Timepicker Addon */
|
||||
/* Written by Marvin */
|
||||
(function($) {
|
||||
$.timepicker.regional['de'] = {
|
||||
timeOnlyTitle: 'Zeit wählen',
|
||||
timeText: 'Zeit',
|
||||
hourText: 'Stunde',
|
||||
minuteText: 'Minute',
|
||||
secondText: 'Sekunde',
|
||||
millisecText: 'Millisekunde',
|
||||
microsecText: 'Mikrosekunde',
|
||||
timezoneText: 'Zeitzone',
|
||||
currentText: 'Jetzt',
|
||||
closeText: 'Fertig',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['vorm.', 'AM', 'A'],
|
||||
pmNames: ['nachm.', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['de']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-el.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-el.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Hellenic translation for the jQuery Timepicker Addon */
|
||||
/* Written by Christos Pontikis */
|
||||
(function($) {
|
||||
$.timepicker.regional['el'] = {
|
||||
timeOnlyTitle: 'Επιλογή ώρας',
|
||||
timeText: 'Ώρα',
|
||||
hourText: 'Ώρες',
|
||||
minuteText: 'Λεπτά',
|
||||
secondText: 'Δευτερόλεπτα',
|
||||
millisecText: 'μιλιδευτερόλεπτο',
|
||||
microsecText: 'Microseconds',
|
||||
timezoneText: 'Ζώνη ώρας',
|
||||
currentText: 'Τώρα',
|
||||
closeText: 'Κλείσιμο',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['π.μ.', 'AM', 'A'],
|
||||
pmNames: ['μ.μ.', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['el']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-es.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-es.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Spanish translation for the jQuery Timepicker Addon */
|
||||
/* Written by Ianaré Sévi */
|
||||
(function($) {
|
||||
$.timepicker.regional['es'] = {
|
||||
timeOnlyTitle: 'Elegir una hora',
|
||||
timeText: 'Hora',
|
||||
hourText: 'Horas',
|
||||
minuteText: 'Minutos',
|
||||
secondText: 'Segundos',
|
||||
millisecText: 'Milisegundos',
|
||||
microsecText: 'Microsegundos',
|
||||
timezoneText: 'Huso horario',
|
||||
currentText: 'Ahora',
|
||||
closeText: 'Cerrar',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['a.m.', 'AM', 'A'],
|
||||
pmNames: ['p.m.', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['es']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-et.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-et.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Estonian translation for the jQuery Timepicker Addon */
|
||||
/* Written by Karl Sutt (karl@sutt.ee) */
|
||||
(function($) {
|
||||
$.timepicker.regional['et'] = {
|
||||
timeOnlyTitle: 'Vali aeg',
|
||||
timeText: 'Aeg',
|
||||
hourText: 'Tund',
|
||||
minuteText: 'Minut',
|
||||
secondText: 'Sekund',
|
||||
millisecText: 'Millisekundis',
|
||||
microsecText: 'Mikrosekundis',
|
||||
timezoneText: 'Ajavöönd',
|
||||
currentText: 'Praegu',
|
||||
closeText: 'Valmis',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['AM', 'A'],
|
||||
pmNames: ['PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['et']);
|
||||
})(jQuery);
|
||||
22
themes/default/js/ui/i18n/jquery.ui.timepicker-eu.js
vendored
Normal file
22
themes/default/js/ui/i18n/jquery.ui.timepicker-eu.js
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
/* Basque trannslation for JQuery Timepicker Addon */
|
||||
/* Translated by Xabi Fer */
|
||||
/* Fixed by Asier Iturralde Sarasola - iametza interaktiboa */
|
||||
(function($) {
|
||||
$.timepicker.regional['eu'] = {
|
||||
timeOnlyTitle: 'Aukeratu ordua',
|
||||
timeText: 'Ordua',
|
||||
hourText: 'Orduak',
|
||||
minuteText: 'Minutuak',
|
||||
secondText: 'Segundoak',
|
||||
millisecText: 'Milisegundoak',
|
||||
microsecText: 'Mikrosegundoak',
|
||||
timezoneText: 'Ordu-eremua',
|
||||
currentText: 'Orain',
|
||||
closeText: 'Itxi',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['a.m.', 'AM', 'A'],
|
||||
pmNames: ['p.m.', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['eu']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-fi.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-fi.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Finnish translation for the jQuery Timepicker Addon */
|
||||
/* Written by Juga Paazmaya (http://github.com/paazmaya) */
|
||||
(function($) {
|
||||
$.timepicker.regional['fi'] = {
|
||||
timeOnlyTitle: 'Valitse aika',
|
||||
timeText: 'Aika',
|
||||
hourText: 'Tunti',
|
||||
minuteText: 'Minuutti',
|
||||
secondText: 'Sekunti',
|
||||
millisecText: 'Millisekunnin',
|
||||
microsecText: 'Mikrosekuntia',
|
||||
timezoneText: 'Aikavyöhyke',
|
||||
currentText: 'Nyt',
|
||||
closeText: 'Sulje',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['ap.', 'AM', 'A'],
|
||||
pmNames: ['ip.', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['fi']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-fr.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-fr.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* French translation for the jQuery Timepicker Addon */
|
||||
/* Written by Thomas Lété */
|
||||
(function($) {
|
||||
$.timepicker.regional['fr'] = {
|
||||
timeOnlyTitle: 'Choisir une heure',
|
||||
timeText: 'Heure',
|
||||
hourText: 'Heures',
|
||||
minuteText: 'Minutes',
|
||||
secondText: 'Secondes',
|
||||
millisecText: 'Millisecondes',
|
||||
microsecText: 'Microsecondes',
|
||||
timezoneText: 'Fuseau horaire',
|
||||
currentText: 'Maintenant',
|
||||
closeText: 'Terminé',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['AM', 'A'],
|
||||
pmNames: ['PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['fr']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-gl.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-gl.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Galician translation for the jQuery Timepicker Addon */
|
||||
/* Written by David Barral */
|
||||
(function($) {
|
||||
$.timepicker.regional['gl'] = {
|
||||
timeOnlyTitle: 'Elixir unha hora',
|
||||
timeText: 'Hora',
|
||||
hourText: 'Horas',
|
||||
minuteText: 'Minutos',
|
||||
secondText: 'Segundos',
|
||||
millisecText: 'Milisegundos',
|
||||
microsecText: 'Microssegundos',
|
||||
timezoneText: 'Fuso horario',
|
||||
currentText: 'Agora',
|
||||
closeText: 'Pechar',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['a.m.', 'AM', 'A'],
|
||||
pmNames: ['p.m.', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['gl']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-he.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-he.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Hebrew translation for the jQuery Timepicker Addon */
|
||||
/* Written by Lior Lapid */
|
||||
(function($) {
|
||||
$.timepicker.regional["he"] = {
|
||||
timeOnlyTitle: "בחירת זמן",
|
||||
timeText: "שעה",
|
||||
hourText: "שעות",
|
||||
minuteText: "דקות",
|
||||
secondText: "שניות",
|
||||
millisecText: "אלפית השנייה",
|
||||
microsecText: "מיקרו",
|
||||
timezoneText: "אזור זמן",
|
||||
currentText: "עכשיו",
|
||||
closeText:"סגור",
|
||||
timeFormat: "HH:mm",
|
||||
amNames: ['לפנה"צ', 'AM', 'A'],
|
||||
pmNames: ['אחה"צ', 'PM', 'P'],
|
||||
isRTL: true
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional["he"]);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-hr.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-hr.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Croatian translation for the jQuery Timepicker Addon */
|
||||
/* Written by Mladen */
|
||||
(function($) {
|
||||
$.timepicker.regional['hr'] = {
|
||||
timeOnlyTitle: 'Odaberi vrijeme',
|
||||
timeText: 'Vrijeme',
|
||||
hourText: 'Sati',
|
||||
minuteText: 'Minute',
|
||||
secondText: 'Sekunde',
|
||||
millisecText: 'Milisekunde',
|
||||
microsecText: 'Mikrosekunde',
|
||||
timezoneText: 'Vremenska zona',
|
||||
currentText: 'Sada',
|
||||
closeText: 'Gotovo',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['a.m.', 'AM', 'A'],
|
||||
pmNames: ['p.m.', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['hr']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-hu.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-hu.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Hungarian translation for the jQuery Timepicker Addon */
|
||||
/* Written by Vas Gábor */
|
||||
(function($) {
|
||||
$.timepicker.regional['hu'] = {
|
||||
timeOnlyTitle: 'Válasszon időpontot',
|
||||
timeText: 'Idő',
|
||||
hourText: 'Óra',
|
||||
minuteText: 'Perc',
|
||||
secondText: 'Másodperc',
|
||||
millisecText: 'Milliszekundumos',
|
||||
microsecText: 'Ezredmásodperc',
|
||||
timezoneText: 'Időzóna',
|
||||
currentText: 'Most',
|
||||
closeText: 'Kész',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['de.', 'AM', 'A'],
|
||||
pmNames: ['du.', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['hu']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-id.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-id.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Indonesian translation for the jQuery Timepicker Addon */
|
||||
/* Written by Nia */
|
||||
(function($) {
|
||||
$.timepicker.regional['id'] = {
|
||||
timeOnlyTitle: 'Pilih Waktu',
|
||||
timeText: 'Waktu',
|
||||
hourText: 'Pukul',
|
||||
minuteText: 'Menit',
|
||||
secondText: 'Detik',
|
||||
millisecText: 'Milidetik',
|
||||
microsecText: 'Mikrodetik',
|
||||
timezoneText: 'Zona Waktu',
|
||||
currentText: 'Sekarang',
|
||||
closeText: 'OK',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['AM', 'A'],
|
||||
pmNames: ['PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['id']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-it.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-it.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Italian translation for the jQuery Timepicker Addon */
|
||||
/* Written by Marco "logicoder" Del Tongo */
|
||||
(function($) {
|
||||
$.timepicker.regional['it'] = {
|
||||
timeOnlyTitle: 'Scegli orario',
|
||||
timeText: 'Orario',
|
||||
hourText: 'Ora',
|
||||
minuteText: 'Minuti',
|
||||
secondText: 'Secondi',
|
||||
millisecText: 'Millisecondi',
|
||||
microsecText: 'Microsecondi',
|
||||
timezoneText: 'Fuso orario',
|
||||
currentText: 'Adesso',
|
||||
closeText: 'Chiudi',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['m.', 'AM', 'A'],
|
||||
pmNames: ['p.', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['it']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-ja.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-ja.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Japanese translation for the jQuery Timepicker Addon */
|
||||
/* Written by Jun Omae */
|
||||
(function($) {
|
||||
$.timepicker.regional['ja'] = {
|
||||
timeOnlyTitle: '時間を選択',
|
||||
timeText: '時間',
|
||||
hourText: '時',
|
||||
minuteText: '分',
|
||||
secondText: '秒',
|
||||
millisecText: 'ミリ秒',
|
||||
microsecText: 'マイクロ秒',
|
||||
timezoneText: 'タイムゾーン',
|
||||
currentText: '現時刻',
|
||||
closeText: '閉じる',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['午前', 'AM', 'A'],
|
||||
pmNames: ['午後', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['ja']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-ko.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-ko.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Korean translation for the jQuery Timepicker Addon */
|
||||
/* Written by Genie */
|
||||
(function($) {
|
||||
$.timepicker.regional['ko'] = {
|
||||
timeOnlyTitle: '시간 선택',
|
||||
timeText: '시간',
|
||||
hourText: '시',
|
||||
minuteText: '분',
|
||||
secondText: '초',
|
||||
millisecText: '밀리초',
|
||||
microsecText: '마이크로',
|
||||
timezoneText: '표준 시간대',
|
||||
currentText: '현재 시각',
|
||||
closeText: '닫기',
|
||||
timeFormat: 'tt h:mm',
|
||||
amNames: ['오전', 'AM', 'A'],
|
||||
pmNames: ['오후', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['ko']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-lt.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-lt.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Lithuanian translation for the jQuery Timepicker Addon */
|
||||
/* Written by Irmantas Šiupšinskas */
|
||||
(function($) {
|
||||
$.timepicker.regional['lt'] = {
|
||||
timeOnlyTitle: 'Pasirinkite laiką',
|
||||
timeText: 'Laikas',
|
||||
hourText: 'Valandos',
|
||||
minuteText: 'Minutės',
|
||||
secondText: 'Sekundės',
|
||||
millisecText: 'Milisekundės',
|
||||
microsecText: 'Mikrosekundės',
|
||||
timezoneText: 'Laiko zona',
|
||||
currentText: 'Dabar',
|
||||
closeText: 'Uždaryti',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['priešpiet', 'AM', 'A'],
|
||||
pmNames: ['popiet', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['lt']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-nl.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-nl.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Dutch translation for the jQuery Timepicker Addon */
|
||||
/* Written by Martijn van der Lee */
|
||||
(function($) {
|
||||
$.timepicker.regional['nl'] = {
|
||||
timeOnlyTitle: 'Tijdstip',
|
||||
timeText: 'Tijd',
|
||||
hourText: 'Uur',
|
||||
minuteText: 'Minuut',
|
||||
secondText: 'Seconde',
|
||||
millisecText: 'Milliseconde',
|
||||
microsecText: 'Microseconde',
|
||||
timezoneText: 'Tijdzone',
|
||||
currentText: 'Vandaag',
|
||||
closeText: 'Sluiten',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['AM', 'A'],
|
||||
pmNames: ['PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['nl']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-no.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-no.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Norwegian translation for the jQuery Timepicker Addon */
|
||||
/* Written by Morten Hauan (http://hauan.me) */
|
||||
(function($) {
|
||||
$.timepicker.regional['no'] = {
|
||||
timeOnlyTitle: 'Velg tid',
|
||||
timeText: 'Tid',
|
||||
hourText: 'Time',
|
||||
minuteText: 'Minutt',
|
||||
secondText: 'Sekund',
|
||||
millisecText: 'Millisekund',
|
||||
microsecText: 'mikrosekund',
|
||||
timezoneText: 'Tidssone',
|
||||
currentText: 'Nå',
|
||||
closeText: 'Lukk',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['am', 'AM', 'A'],
|
||||
pmNames: ['pm', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['no']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-pl.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-pl.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Polish translation for the jQuery Timepicker Addon */
|
||||
/* Written by Michał Pena */
|
||||
(function($) {
|
||||
$.timepicker.regional['pl'] = {
|
||||
timeOnlyTitle: 'Wybierz godzinę',
|
||||
timeText: 'Czas',
|
||||
hourText: 'Godzina',
|
||||
minuteText: 'Minuta',
|
||||
secondText: 'Sekunda',
|
||||
millisecText: 'Milisekunda',
|
||||
microsecText: 'Mikrosekunda',
|
||||
timezoneText: 'Strefa czasowa',
|
||||
currentText: 'Teraz',
|
||||
closeText: 'Gotowe',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['AM', 'A'],
|
||||
pmNames: ['PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['pl']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-pt-BR.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-pt-BR.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Brazilian Portuguese translation for the jQuery Timepicker Addon */
|
||||
/* Written by Diogo Damiani (diogodamiani@gmail.com) */
|
||||
(function ($) {
|
||||
$.timepicker.regional['pt-BR'] = {
|
||||
timeOnlyTitle: 'Escolha o horário',
|
||||
timeText: 'Horário',
|
||||
hourText: 'Hora',
|
||||
minuteText: 'Minutos',
|
||||
secondText: 'Segundos',
|
||||
millisecText: 'Milissegundos',
|
||||
microsecText: 'Microssegundos',
|
||||
timezoneText: 'Fuso horário',
|
||||
currentText: 'Agora',
|
||||
closeText: 'Fechar',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['a.m.', 'AM', 'A'],
|
||||
pmNames: ['p.m.', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['pt-BR']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-pt.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-pt.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Portuguese translation for the jQuery Timepicker Addon */
|
||||
/* Written by Luan Almeida */
|
||||
(function($) {
|
||||
$.timepicker.regional['pt'] = {
|
||||
timeOnlyTitle: 'Escolha uma hora',
|
||||
timeText: 'Hora',
|
||||
hourText: 'Horas',
|
||||
minuteText: 'Minutos',
|
||||
secondText: 'Segundos',
|
||||
millisecText: 'Milissegundos',
|
||||
microsecText: 'Microssegundos',
|
||||
timezoneText: 'Fuso horário',
|
||||
currentText: 'Agora',
|
||||
closeText: 'Fechar',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['a.m.', 'AM', 'A'],
|
||||
pmNames: ['p.m.', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['pt']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-ro.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-ro.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Romanian translation for the jQuery Timepicker Addon */
|
||||
/* Written by Romeo Adrian Cioaba */
|
||||
(function($) {
|
||||
$.timepicker.regional['ro'] = {
|
||||
timeOnlyTitle: 'Alegeţi o oră',
|
||||
timeText: 'Timp',
|
||||
hourText: 'Ore',
|
||||
minuteText: 'Minute',
|
||||
secondText: 'Secunde',
|
||||
millisecText: 'Milisecunde',
|
||||
microsecText: 'Microsecunde',
|
||||
timezoneText: 'Fus orar',
|
||||
currentText: 'Acum',
|
||||
closeText: 'Închide',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['AM', 'A'],
|
||||
pmNames: ['PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['ro']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-ru.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-ru.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Russian translation for the jQuery Timepicker Addon */
|
||||
/* Written by Trent Richardson */
|
||||
(function($) {
|
||||
$.timepicker.regional['ru'] = {
|
||||
timeOnlyTitle: 'Выберите время',
|
||||
timeText: 'Время',
|
||||
hourText: 'Часы',
|
||||
minuteText: 'Минуты',
|
||||
secondText: 'Секунды',
|
||||
millisecText: 'Миллисекунды',
|
||||
microsecText: 'Микросекунды',
|
||||
timezoneText: 'Часовой пояс',
|
||||
currentText: 'Сейчас',
|
||||
closeText: 'Закрыть',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['AM', 'A'],
|
||||
pmNames: ['PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['ru']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-sk.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-sk.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Slovak translation for the jQuery Timepicker Addon */
|
||||
/* Written by David Vallner */
|
||||
(function($) {
|
||||
$.timepicker.regional['sk'] = {
|
||||
timeOnlyTitle: 'Zvoľte čas',
|
||||
timeText: 'Čas',
|
||||
hourText: 'Hodiny',
|
||||
minuteText: 'Minúty',
|
||||
secondText: 'Sekundy',
|
||||
millisecText: 'Milisekundy',
|
||||
microsecText: 'Mikrosekundy',
|
||||
timezoneText: 'Časové pásmo',
|
||||
currentText: 'Teraz',
|
||||
closeText: 'Zavrieť',
|
||||
timeFormat: 'H:m',
|
||||
amNames: ['dop.', 'AM', 'A'],
|
||||
pmNames: ['pop.', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['sk']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-sr-RS.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-sr-RS.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Serbian cyrilic translation for the jQuery Timepicker Addon */
|
||||
/* Written by Vladimir Jelovac */
|
||||
(function($) {
|
||||
$.timepicker.regional['sr-RS'] = {
|
||||
timeOnlyTitle: 'Одаберите време',
|
||||
timeText: 'Време',
|
||||
hourText: 'Сати',
|
||||
minuteText: 'Минути',
|
||||
secondText: 'Секунде',
|
||||
millisecText: 'Милисекунде',
|
||||
microsecText: 'Микросекунде',
|
||||
timezoneText: 'Временска зона',
|
||||
currentText: 'Сада',
|
||||
closeText: 'Затвори',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['AM', 'A'],
|
||||
pmNames: ['PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['sr-RS']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-sr-YU.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-sr-YU.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Serbian latin translation for the jQuery Timepicker Addon */
|
||||
/* Written by Vladimir Jelovac */
|
||||
(function($) {
|
||||
$.timepicker.regional['sr-YU'] = {
|
||||
timeOnlyTitle: 'Odaberite vreme',
|
||||
timeText: 'Vreme',
|
||||
hourText: 'Sati',
|
||||
minuteText: 'Minuti',
|
||||
secondText: 'Sekunde',
|
||||
millisecText: 'Milisekunde',
|
||||
microsecText: 'Mikrosekunde',
|
||||
timezoneText: 'Vremenska zona',
|
||||
currentText: 'Sada',
|
||||
closeText: 'Zatvori',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['AM', 'A'],
|
||||
pmNames: ['PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['sr-YU']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-sv.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-sv.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Swedish translation for the jQuery Timepicker Addon */
|
||||
/* Written by Nevon */
|
||||
(function($) {
|
||||
$.timepicker.regional['sv'] = {
|
||||
timeOnlyTitle: 'Välj en tid',
|
||||
timeText: 'Tid',
|
||||
hourText: 'Timme',
|
||||
minuteText: 'Minut',
|
||||
secondText: 'Sekund',
|
||||
millisecText: 'Millisekund',
|
||||
microsecText: 'Mikrosekund',
|
||||
timezoneText: 'Tidszon',
|
||||
currentText: 'Nu',
|
||||
closeText: 'Stäng',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['AM', 'A'],
|
||||
pmNames: ['PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['sv']);
|
||||
})(jQuery);
|
||||
18
themes/default/js/ui/i18n/jquery.ui.timepicker-th.js
vendored
Normal file
18
themes/default/js/ui/i18n/jquery.ui.timepicker-th.js
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
/* Thai translation for the jQuery Timepicker Addon */
|
||||
/* Written by Yote Wachirapornpongsa */
|
||||
(function($) {
|
||||
$.timepicker.regional['th'] = {
|
||||
timeOnlyTitle: 'เลือกเวลา',
|
||||
timeText: 'เวลา ',
|
||||
hourText: 'ชั่วโมง ',
|
||||
minuteText: 'นาที',
|
||||
secondText: 'วินาที',
|
||||
millisecText: 'มิลลิวินาที',
|
||||
microsecText: 'ไมโคริวินาที',
|
||||
timezoneText: 'เขตเวลา',
|
||||
currentText: 'เวลาปัจจุบัน',
|
||||
closeText: 'ปิด',
|
||||
timeFormat: 'hh:mm tt'
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['th']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-tr.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-tr.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Turkish translation for the jQuery Timepicker Addon */
|
||||
/* Written by Fehmi Can Saglam, Edited by Goktug Ozturk */
|
||||
(function($) {
|
||||
$.timepicker.regional['tr'] = {
|
||||
timeOnlyTitle: 'Zaman Seçiniz',
|
||||
timeText: 'Zaman',
|
||||
hourText: 'Saat',
|
||||
minuteText: 'Dakika',
|
||||
secondText: 'Saniye',
|
||||
millisecText: 'Milisaniye',
|
||||
microsecText: 'Mikrosaniye',
|
||||
timezoneText: 'Zaman Dilimi',
|
||||
currentText: 'Şu an',
|
||||
closeText: 'Tamam',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['ÖÖ', 'Ö'],
|
||||
pmNames: ['ÖS', 'S'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['tr']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-uk.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-uk.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Ukrainian translation for the jQuery Timepicker Addon */
|
||||
/* Written by Sergey Noskov */
|
||||
(function($) {
|
||||
$.timepicker.regional['uk'] = {
|
||||
timeOnlyTitle: 'Виберіть час',
|
||||
timeText: 'Час',
|
||||
hourText: 'Години',
|
||||
minuteText: 'Хвилини',
|
||||
secondText: 'Секунди',
|
||||
millisecText: 'Мілісекунди',
|
||||
microsecText: 'Мікросекунди',
|
||||
timezoneText: 'Часовий пояс',
|
||||
currentText: 'Зараз',
|
||||
closeText: 'Закрити',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['AM', 'A'],
|
||||
pmNames: ['PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['uk']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-vi.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-vi.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Vietnamese translation for the jQuery Timepicker Addon */
|
||||
/* Written by Nguyen Dinh Trung */
|
||||
(function($) {
|
||||
$.timepicker.regional['vi'] = {
|
||||
timeOnlyTitle: 'Chọn giờ',
|
||||
timeText: 'Thời gian',
|
||||
hourText: 'Giờ',
|
||||
minuteText: 'Phút',
|
||||
secondText: 'Giây',
|
||||
millisecText: 'Mili giây',
|
||||
microsecText: 'Micrô giây',
|
||||
timezoneText: 'Múi giờ',
|
||||
currentText: 'Hiện thời',
|
||||
closeText: 'Đóng',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['SA', 'S'],
|
||||
pmNames: ['CH', 'C'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['vi']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-zh-CN.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-zh-CN.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Simplified Chinese translation for the jQuery Timepicker Addon /
|
||||
/ Written by Will Lu */
|
||||
(function($) {
|
||||
$.timepicker.regional['zh-CN'] = {
|
||||
timeOnlyTitle: '选择时间',
|
||||
timeText: '时间',
|
||||
hourText: '小时',
|
||||
minuteText: '分钟',
|
||||
secondText: '秒钟',
|
||||
millisecText: '毫秒',
|
||||
microsecText: '微秒',
|
||||
timezoneText: '时区',
|
||||
currentText: '现在时间',
|
||||
closeText: '关闭',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['AM', 'A'],
|
||||
pmNames: ['PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['zh-CN']);
|
||||
})(jQuery);
|
||||
21
themes/default/js/ui/i18n/jquery.ui.timepicker-zh-TW.js
vendored
Normal file
21
themes/default/js/ui/i18n/jquery.ui.timepicker-zh-TW.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Chinese translation for the jQuery Timepicker Addon */
|
||||
/* Written by Alang.lin */
|
||||
(function($) {
|
||||
$.timepicker.regional['zh-TW'] = {
|
||||
timeOnlyTitle: '選擇時分秒',
|
||||
timeText: '時間',
|
||||
hourText: '時',
|
||||
minuteText: '分',
|
||||
secondText: '秒',
|
||||
millisecText: '毫秒',
|
||||
microsecText: '微秒',
|
||||
timezoneText: '時區',
|
||||
currentText: '現在時間',
|
||||
closeText: '確定',
|
||||
timeFormat: 'HH:mm',
|
||||
amNames: ['上午', 'AM', 'A'],
|
||||
pmNames: ['下午', 'PM', 'P'],
|
||||
isRTL: false
|
||||
};
|
||||
$.timepicker.setDefaults($.timepicker.regional['zh-TW']);
|
||||
})(jQuery);
|
||||
2197
themes/default/js/ui/jquery.ui.timepicker-addon.js
vendored
Normal file
2197
themes/default/js/ui/jquery.ui.timepicker-addon.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
5
themes/default/js/ui/minified/jquery.ui.timepicker-addon.min.js
vendored
Normal file
5
themes/default/js/ui/minified/jquery.ui.timepicker-addon.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
themes/default/js/ui/theme/jquery.ui.timepicker-addon.css
vendored
Normal file
11
themes/default/js/ui/theme/jquery.ui.timepicker-addon.css
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
.ui-timepicker-div .ui-widget-header { margin-bottom: 8px; }
|
||||
.ui-timepicker-div dl { text-align: left; }
|
||||
.ui-timepicker-div dl dt { float: left; clear:left; padding: 0 0 0 5px; }
|
||||
.ui-timepicker-div dl dd { margin: 0 10px 10px 40%; }
|
||||
.ui-timepicker-div td { font-size: 90%; }
|
||||
.ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; }
|
||||
|
||||
.ui-timepicker-rtl{ direction: rtl; }
|
||||
.ui-timepicker-rtl dl { text-align: right; padding: 0 5px 0 0; }
|
||||
.ui-timepicker-rtl dl dt{ float: right; clear: right; }
|
||||
.ui-timepicker-rtl dl dd { margin: 0 40% 10px 10px; }
|
||||
Reference in New Issue
Block a user