aboutsummaryrefslogtreecommitdiffstats
path: root/ui/i18n/datepicker-rm.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/i18n/datepicker-rm.js')
-rw-r--r--ui/i18n/datepicker-rm.js13
1 files changed, 8 insertions, 5 deletions
diff --git a/ui/i18n/datepicker-rm.js b/ui/i18n/datepicker-rm.js
index 89a5c77a1..439e8c8e1 100644
--- a/ui/i18n/datepicker-rm.js
+++ b/ui/i18n/datepicker-rm.js
@@ -1,6 +1,8 @@
/* Romansh initialisation for the jQuery UI date picker plugin. */
/* Written by Yvonne Gienal (yvonne.gienal@educa.ch). */
( function( factory ) {
+ "use strict";
+
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
@@ -10,7 +12,8 @@
// Browser globals
factory( jQuery.datepicker );
}
-}( function( datepicker ) {
+} )( function( datepicker ) {
+"use strict";
datepicker.regional.rm = {
closeText: "Serrar",
@@ -45,9 +48,9 @@ datepicker.regional.rm = {
"Nov",
"Dec"
],
- dayNames: [ "Dumengia","Glindesdi","Mardi","Mesemna","Gievgia","Venderdi","Sonda" ],
- dayNamesShort: [ "Dum","Gli","Mar","Mes","Gie","Ven","Som" ],
- dayNamesMin: [ "Du","Gl","Ma","Me","Gi","Ve","So" ],
+ dayNames: [ "Dumengia", "Glindesdi", "Mardi", "Mesemna", "Gievgia", "Venderdi", "Sonda" ],
+ dayNamesShort: [ "Dum", "Gli", "Mar", "Mes", "Gie", "Ven", "Som" ],
+ dayNamesMin: [ "Du", "Gl", "Ma", "Me", "Gi", "Ve", "So" ],
weekHeader: "emna",
dateFormat: "dd/mm/yy",
firstDay: 1,
@@ -58,4 +61,4 @@ datepicker.setDefaults( datepicker.regional.rm );
return datepicker.regional.rm;
-} ) );
+} );