Sha256: 2454299a88114d4f404df6b5b028785cd6a086ca0fd2d6eaf1043883fc3ad5e8

Contents?: true

Size: 1.4 KB

Versions: 6

Compression:

Stored size: 1.4 KB

Contents

/* Persian (Farsi) Translation for the jQuery UI date picker plugin. */
/* Javad Mowlanezhad -- jmowla@gmail.com */
/* Jalali calendar should supported soon! (Its implemented but I have to test it) */
( function( factory ) {
	"use strict";

	if ( typeof define === "function" && define.amd ) {

		// AMD. Register as an anonymous module.
		define( [ "../widgets/datepicker" ], factory );
	} else {

		// Browser globals
		factory( jQuery.datepicker );
	}
} )( function( datepicker ) {
"use strict";

datepicker.regional.fa = {
	closeText: "بستن",
	prevText: "<قبلی",
	nextText: "بعدی>",
	currentText: "امروز",
	monthNames: [
		"ژانویه",
		"فوریه",
		"مارس",
		"آوریل",
		"مه",
		"ژوئن",
		"ژوئیه",
		"اوت",
		"سپتامبر",
		"اکتبر",
		"نوامبر",
		"دسامبر"
	],
	monthNamesShort: [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12" ],
	dayNames: [
		"يکشنبه",
		"دوشنبه",
		"سه‌شنبه",
		"چهارشنبه",
		"پنجشنبه",
		"جمعه",
		"شنبه"
	],
	dayNamesShort: [
		"ی",
		"د",
		"س",
		"چ",
		"پ",
		"ج",
		"ش"
	],
	dayNamesMin: [
		"ی",
		"د",
		"س",
		"چ",
		"پ",
		"ج",
		"ش"
	],
	weekHeader: "هف",
	dateFormat: "yy/mm/dd",
	firstDay: 6,
	isRTL: true,
	showMonthAfterYear: false,
	yearSuffix: "" };
datepicker.setDefaults( datepicker.regional.fa );

return datepicker.regional.fa;

} );

Version data entries

6 entries across 6 versions & 3 rubygems

Version Path
jquery-ui-rails-7.0.0 app/assets/javascripts/jquery-ui/i18n/datepicker-fa.js
jquery-ui-rails-patch-1131-7.0.1 app/assets/javascripts/jquery-ui-patch-1131/i18n/datepicker-fa.js
jquery-ui-rails-patch-1131-7.0.0 app/assets/javascripts/jquery-ui-patch-1131/i18n/datepicker-fa.js
jquery-ui-rails-test-6.0.4 app/assets/javascripts/jquery-ui-test/i18n/datepicker-fa.js
jquery-ui-rails-test-6.0.3 app/assets/javascripts/jquery-ui-test/i18n/datepicker-fa.js
jquery-ui-rails-test-6.0.2 app/assets/javascripts/jquery-ui/i18n/datepicker-fa.js