about summary refs log tree commit diff stats
path: root/wiki/inc/lang/gl/jquery.ui.datepicker.js
diff options
context:
space:
mode:
authorahriman <ahriman@falte.red>2018-12-03 19:22:25 -0500
committerahriman <ahriman@falte.red>2018-12-03 19:22:25 -0500
commit0ae8cbf5c0b1a198b963490985b7738392ebcb97 (patch)
treeb2c77ae72c6b717e2b97492065196ac5ffb2d9e2 /wiki/inc/lang/gl/jquery.ui.datepicker.js
parentf57f6cc5a2d159f90168d292437dc4bd8cd7f934 (diff)
downloadsite-0ae8cbf5c0b1a198b963490985b7738392ebcb97.tar.gz
installed dokuwiki, added to navbar, updated news
Diffstat (limited to 'wiki/inc/lang/gl/jquery.ui.datepicker.js')
-rw-r--r--wiki/inc/lang/gl/jquery.ui.datepicker.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/wiki/inc/lang/gl/jquery.ui.datepicker.js b/wiki/inc/lang/gl/jquery.ui.datepicker.js
new file mode 100644
index 0000000..2765230
--- /dev/null
+++ b/wiki/inc/lang/gl/jquery.ui.datepicker.js
@@ -0,0 +1,37 @@
+/* Galician localization for 'UI date picker' jQuery extension. */
+/* Translated by Jorge Barreiro <yortx.barry@gmail.com>. */
+( function( factory ) {
+	if ( typeof define === "function" && define.amd ) {
+
+		// AMD. Register as an anonymous module.
+		define( [ "../widgets/datepicker" ], factory );
+	} else {
+
+		// Browser globals
+		factory( jQuery.datepicker );
+	}
+}( function( datepicker ) {
+
+datepicker.regional.gl = {
+	closeText: "Pechar",
+	prevText: "&#x3C;Ant",
+	nextText: "Seg&#x3E;",
+	currentText: "Hoxe",
+	monthNames: [ "Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño",
+	"Xullo","Agosto","Setembro","Outubro","Novembro","Decembro" ],
+	monthNamesShort: [ "Xan","Feb","Mar","Abr","Mai","Xuñ",
+	"Xul","Ago","Set","Out","Nov","Dec" ],
+	dayNames: [ "Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado" ],
+	dayNamesShort: [ "Dom","Lun","Mar","Mér","Xov","Ven","Sáb" ],
+	dayNamesMin: [ "Do","Lu","Ma","Mé","Xo","Ve","Sá" ],
+	weekHeader: "Sm",
+	dateFormat: "dd/mm/yy",
+	firstDay: 1,
+	isRTL: false,
+	showMonthAfterYear: false,
+	yearSuffix: "" };
+datepicker.setDefaults( datepicker.regional.gl );
+
+return datepicker.regional.gl;
+
+} ) );