diff options
author | Rafael Xavier de Souza <rxaviers@gmail.com> | 2013-07-17 12:10:30 -0300 |
---|---|---|
committer | Rafael Xavier de Souza <rxaviers@gmail.com> | 2014-01-24 18:22:31 -0200 |
commit | 1216e2aaf5e9bae52abe1ef9dfb9ab34c271c56d (patch) | |
tree | a5abeec136b8bf9f53dce4c40bcbd1e8e5172bc0 /ui/i18n/jquery.ui.datepicker-ar.js | |
parent | 96e027e4b14345722cc39589f59ce2ce5e94b991 (diff) | |
download | jquery-ui-1216e2aaf5e9bae52abe1ef9dfb9ab34c271c56d.tar.gz jquery-ui-1216e2aaf5e9bae52abe1ef9dfb9ab34c271c56d.zip |
All: Wrap I18n files with UMD return exports
Ref #9464
Ref gh-1029
Diffstat (limited to 'ui/i18n/jquery.ui.datepicker-ar.js')
-rw-r--r-- | ui/i18n/jquery.ui.datepicker-ar.js | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/ui/i18n/jquery.ui.datepicker-ar.js b/ui/i18n/jquery.ui.datepicker-ar.js index cef0f08fd..fc6d2a883 100644 --- a/ui/i18n/jquery.ui.datepicker-ar.js +++ b/ui/i18n/jquery.ui.datepicker-ar.js @@ -1,8 +1,18 @@ /* Arabic Translation for jQuery UI date picker plugin. */ /* Khaled Alhourani -- me@khaledalhourani.com */ /* NOTE: monthNames are the original months names and they are the Arabic names, not the new months name فبراير - يناير and there isn't any Arabic roots for these months */ -jQuery(function($){ - $.datepicker.regional['ar'] = { +(function( factory ) { + if ( typeof define === "function" && define.amd ) { + + // AMD. Register as an anonymous module. + define([ "../jquery.ui.datepicker" ], factory ); + } else { + + // Browser globals + factory( jQuery.datepicker ); + } +}(function( datepicker ) { + datepicker.regional['ar'] = { closeText: 'إغلاق', prevText: '<السابق', nextText: 'التالي>', @@ -19,5 +29,8 @@ jQuery(function($){ isRTL: true, showMonthAfterYear: false, yearSuffix: ''}; - $.datepicker.setDefaults($.datepicker.regional['ar']); -}); + datepicker.setDefaults(datepicker.regional['ar']); + + return datepicker.regional['ar']; + +})); |