43 lines
1.4 KiB
JavaScript
43 lines
1.4 KiB
JavaScript
/* -----------------------------------------------------------------------------
|
|
|
|
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
|
Version 0.1.38
|
|
Copyright (c)2014-2019 Lajpat Shah
|
|
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
|
Repository : https://github.com/nehakadam/DateTimePicker
|
|
Documentation : https://nehakadam.github.io/DateTimePicker
|
|
|
|
----------------------------------------------------------------------------- */
|
|
|
|
/*
|
|
|
|
language: Romanian
|
|
file: DateTimePicker-i18n-nl
|
|
author: Radu Mogoș(https://github.com/pixelplant)
|
|
|
|
*/
|
|
|
|
(function ($) {
|
|
$.DateTimePicker.i18n["ro"] = $.extend($.DateTimePicker.i18n["ro"], {
|
|
|
|
language: "ro",
|
|
|
|
dateTimeFormat: "dd-MM-yyyy HH:mm",
|
|
dateFormat: "dd-MM-yyyy",
|
|
timeFormat: "HH:mm",
|
|
|
|
shortDayNames: ["Dum", "Lun", "Mar", "Mie", "Joi", "Vim", "Sâm"],
|
|
fullDayNames: ["Duminică", "Luni", "Marți", "Miercuri", "Joi", "Vineri", "Sâmbătă"],
|
|
shortMonthNames: ["Ian", "Feb", "Mar", "Apr", "Mai", "Iun", "Iul", "Aug", "Sep", "Oct", "Noi", "Dec"],
|
|
fullMonthNames: ["Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie", "Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie"],
|
|
|
|
titleContentDate: "Setare Dată",
|
|
titleContentTime: "Setare Oră",
|
|
titleContentDateTime: "Setare Dată și Oră",
|
|
|
|
setButtonContent: "Setează",
|
|
clearButtonContent: "Șterge"
|
|
|
|
});
|
|
})(jQuery);
|