forked from WiQuery/wiquery
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from xthiba/work/xthiba/changes
Work/xthiba/changes
- Loading branch information
Showing
17 changed files
with
193 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
...-jquery-ui/src/main/resources/org/wicketstuff/wiquery/ui/datepicker/i18n/datepicker-he.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* Hebrew initialisation for the UI Datepicker extension. */ | ||
/* Written by Amir Hardon (ahardon at gmail dot 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.he = { | ||
closeText: "סגור", | ||
prevText: "<הקודם", | ||
nextText: "הבא>", | ||
currentText: "היום", | ||
monthNames: [ "ינואר","פברואר","מרץ","אפריל","מאי","יוני", | ||
"יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר" ], | ||
monthNamesShort: [ "ינו","פבר","מרץ","אפר","מאי","יוני", | ||
"יולי","אוג","ספט","אוק","נוב","דצמ" ], | ||
dayNames: [ "ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת" ], | ||
dayNamesShort: [ "א'","ב'","ג'","ד'","ה'","ו'","שבת" ], | ||
dayNamesMin: [ "א'","ב'","ג'","ד'","ה'","ו'","שבת" ], | ||
weekHeader: "Wk", | ||
dateFormat: "dd/mm/yy", | ||
firstDay: 0, | ||
isRTL: true, | ||
showMonthAfterYear: false, | ||
yearSuffix: "" }; | ||
datepicker.setDefaults( datepicker.regional.he ); | ||
|
||
return datepicker.regional.he; | ||
|
||
} ) ); |
37 changes: 37 additions & 0 deletions
37
...-jquery-ui/src/main/resources/org/wicketstuff/wiquery/ui/datepicker/i18n/datepicker-id.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* Indonesian initialisation for the jQuery UI date picker plugin. */ | ||
/* Written by Deden Fathurahman (dedenf@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.id = { | ||
closeText: "Tutup", | ||
prevText: "<mundur", | ||
nextText: "maju>", | ||
currentText: "hari ini", | ||
monthNames: [ "Januari","Februari","Maret","April","Mei","Juni", | ||
"Juli","Agustus","September","Oktober","Nopember","Desember" ], | ||
monthNamesShort: [ "Jan","Feb","Mar","Apr","Mei","Jun", | ||
"Jul","Agus","Sep","Okt","Nop","Des" ], | ||
dayNames: [ "Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu" ], | ||
dayNamesShort: [ "Min","Sen","Sel","Rab","kam","Jum","Sab" ], | ||
dayNamesMin: [ "Mg","Sn","Sl","Rb","Km","jm","Sb" ], | ||
weekHeader: "Mg", | ||
dateFormat: "dd/mm/yy", | ||
firstDay: 0, | ||
isRTL: false, | ||
showMonthAfterYear: false, | ||
yearSuffix: "" }; | ||
datepicker.setDefaults( datepicker.regional.id ); | ||
|
||
return datepicker.regional.id; | ||
|
||
} ) ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.