diff options
Diffstat (limited to 'node_modules/locutus/php/i18n')
6 files changed, 63 insertions, 0 deletions
diff --git a/node_modules/locutus/php/i18n/i18n_loc_get_default.js b/node_modules/locutus/php/i18n/i18n_loc_get_default.js new file mode 100644 index 0000000..430d000 --- /dev/null +++ b/node_modules/locutus/php/i18n/i18n_loc_get_default.js @@ -0,0 +1,25 @@ +'use strict'; + +module.exports = function i18n_loc_get_default() { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/i18n_loc_get_default/ + // original by: Brett Zamir (http://brett-zamir.me) + // note 1: Renamed in PHP6 from locale_get_default(). Not listed yet at php.net. + // note 1: List of locales at <http://demo.icu-project.org/icu-bin/locexp> + // note 1: To be usable with sort() if it is passed the `SORT_LOCALE_STRING` + // note 1: sorting flag: http://php.net/manual/en/function.sort.php + // example 1: i18n_loc_get_default() + // returns 1: 'en_US_POSIX' + // example 2: i18n_loc_set_default('pt_PT') + // example 2: i18n_loc_get_default() + // returns 2: 'pt_PT' + + var $global = typeof window !== 'undefined' ? window : global; + $global.$locutus = $global.$locutus || {}; + var $locutus = $global.$locutus; + $locutus.php = $locutus.php || {}; + $locutus.php.locales = $locutus.php.locales || {}; + + return $locutus.php.locale_default || 'en_US_POSIX'; +}; +//# sourceMappingURL=i18n_loc_get_default.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/i18n/i18n_loc_get_default.js.map b/node_modules/locutus/php/i18n/i18n_loc_get_default.js.map new file mode 100644 index 0000000..c796206 --- /dev/null +++ b/node_modules/locutus/php/i18n/i18n_loc_get_default.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/i18n/i18n_loc_get_default.js"],"names":["module","exports","i18n_loc_get_default","$global","window","global","$locutus","php","locales","locale_default"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,oBAAT,GAAiC;AAAE;AAClD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,UAAW,OAAOC,MAAP,KAAkB,WAAlB,GAAgCA,MAAhC,GAAyCC,MAAxD;AACAF,UAAQG,QAAR,GAAmBH,QAAQG,QAAR,IAAoB,EAAvC;AACA,MAAIA,WAAWH,QAAQG,QAAvB;AACAA,WAASC,GAAT,GAAeD,SAASC,GAAT,IAAgB,EAA/B;AACAD,WAASC,GAAT,CAAaC,OAAb,GAAuBF,SAASC,GAAT,CAAaC,OAAb,IAAwB,EAA/C;;AAEA,SAAOF,SAASC,GAAT,CAAaE,cAAb,IAA+B,aAAtC;AACD,CApBD","file":"i18n_loc_get_default.js","sourcesContent":["module.exports = function i18n_loc_get_default () { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/i18n_loc_get_default/\n // original by: Brett Zamir (http://brett-zamir.me)\n // note 1: Renamed in PHP6 from locale_get_default(). Not listed yet at php.net.\n // note 1: List of locales at <http://demo.icu-project.org/icu-bin/locexp>\n // note 1: To be usable with sort() if it is passed the `SORT_LOCALE_STRING`\n // note 1: sorting flag: http://php.net/manual/en/function.sort.php\n // example 1: i18n_loc_get_default()\n // returns 1: 'en_US_POSIX'\n // example 2: i18n_loc_set_default('pt_PT')\n // example 2: i18n_loc_get_default()\n // returns 2: 'pt_PT'\n\n var $global = (typeof window !== 'undefined' ? window : global)\n $global.$locutus = $global.$locutus || {}\n var $locutus = $global.$locutus\n $locutus.php = $locutus.php || {}\n $locutus.php.locales = $locutus.php.locales || {}\n\n return $locutus.php.locale_default || 'en_US_POSIX'\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/i18n/i18n_loc_set_default.js b/node_modules/locutus/php/i18n/i18n_loc_set_default.js new file mode 100644 index 0000000..a8568fa --- /dev/null +++ b/node_modules/locutus/php/i18n/i18n_loc_set_default.js @@ -0,0 +1,30 @@ +'use strict'; + +module.exports = function i18n_loc_set_default(name) { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/i18n_loc_set_default/ + // original by: Brett Zamir (http://brett-zamir.me) + // note 1: Renamed in PHP6 from locale_set_default(). Not listed yet at php.net + // note 1: List of locales at http://demo.icu-project.org/icu-bin/locexp (use for implementing other locales here) + // note 1: To be usable with sort() if it is passed the SORT_LOCALE_STRING sorting flag: http://php.net/manual/en/function.sort.php + // example 1: i18n_loc_set_default('pt_PT') + // returns 1: true + + var $global = typeof window !== 'undefined' ? window : global; + $global.$locutus = $global.$locutus || {}; + var $locutus = $global.$locutus; + $locutus.php = $locutus.php || {}; + $locutus.php.locales = $locutus.php.locales || {}; + + $locutus.php.locales.en_US_POSIX = { + sorting: function sorting(str1, str2) { + // @todo: This one taken from strcmp, but need for other locales; + // we don't use localeCompare since its locale is not settable + return str1 === str2 ? 0 : str1 > str2 ? 1 : -1; + } + }; + + $locutus.php.locale_default = name; + return true; +}; +//# sourceMappingURL=i18n_loc_set_default.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/i18n/i18n_loc_set_default.js.map b/node_modules/locutus/php/i18n/i18n_loc_set_default.js.map new file mode 100644 index 0000000..178b31b --- /dev/null +++ b/node_modules/locutus/php/i18n/i18n_loc_set_default.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/i18n/i18n_loc_set_default.js"],"names":["module","exports","i18n_loc_set_default","name","$global","window","global","$locutus","php","locales","en_US_POSIX","sorting","str1","str2","locale_default"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,oBAAT,CAA+BC,IAA/B,EAAqC;AAAE;AACtD;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,UAAW,OAAOC,MAAP,KAAkB,WAAlB,GAAgCA,MAAhC,GAAyCC,MAAxD;AACAF,UAAQG,QAAR,GAAmBH,QAAQG,QAAR,IAAoB,EAAvC;AACA,MAAIA,WAAWH,QAAQG,QAAvB;AACAA,WAASC,GAAT,GAAeD,SAASC,GAAT,IAAgB,EAA/B;AACAD,WAASC,GAAT,CAAaC,OAAb,GAAuBF,SAASC,GAAT,CAAaC,OAAb,IAAwB,EAA/C;;AAEAF,WAASC,GAAT,CAAaC,OAAb,CAAqBC,WAArB,GAAmC;AACjCC,aAAS,iBAAUC,IAAV,EAAgBC,IAAhB,EAAsB;AAC7B;AACA;AACA,aAAQD,SAASC,IAAV,GAAkB,CAAlB,GAAwBD,OAAOC,IAAR,GAAgB,CAAhB,GAAoB,CAAC,CAAnD;AACD;AALgC,GAAnC;;AAQAN,WAASC,GAAT,CAAaM,cAAb,GAA8BX,IAA9B;AACA,SAAO,IAAP;AACD,CAzBD","file":"i18n_loc_set_default.js","sourcesContent":["module.exports = function i18n_loc_set_default (name) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/i18n_loc_set_default/\n // original by: Brett Zamir (http://brett-zamir.me)\n // note 1: Renamed in PHP6 from locale_set_default(). Not listed yet at php.net\n // note 1: List of locales at http://demo.icu-project.org/icu-bin/locexp (use for implementing other locales here)\n // note 1: To be usable with sort() if it is passed the SORT_LOCALE_STRING sorting flag: http://php.net/manual/en/function.sort.php\n // example 1: i18n_loc_set_default('pt_PT')\n // returns 1: true\n\n var $global = (typeof window !== 'undefined' ? window : global)\n $global.$locutus = $global.$locutus || {}\n var $locutus = $global.$locutus\n $locutus.php = $locutus.php || {}\n $locutus.php.locales = $locutus.php.locales || {}\n\n $locutus.php.locales.en_US_POSIX = {\n sorting: function (str1, str2) {\n // @todo: This one taken from strcmp, but need for other locales;\n // we don't use localeCompare since its locale is not settable\n return (str1 === str2) ? 0 : ((str1 > str2) ? 1 : -1)\n }\n }\n\n $locutus.php.locale_default = name\n return true\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/i18n/index.js b/node_modules/locutus/php/i18n/index.js new file mode 100644 index 0000000..c28a150 --- /dev/null +++ b/node_modules/locutus/php/i18n/index.js @@ -0,0 +1,5 @@ +'use strict'; + +module.exports['i18n_loc_get_default'] = require('./i18n_loc_get_default'); +module.exports['i18n_loc_set_default'] = require('./i18n_loc_set_default'); +//# sourceMappingURL=index.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/i18n/index.js.map b/node_modules/locutus/php/i18n/index.js.map new file mode 100644 index 0000000..ad05268 --- /dev/null +++ b/node_modules/locutus/php/i18n/index.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/i18n/index.js"],"names":["module","exports","require"],"mappings":";;AAAAA,OAAOC,OAAP,CAAe,sBAAf,IAAyCC,QAAQ,wBAAR,CAAzC;AACAF,OAAOC,OAAP,CAAe,sBAAf,IAAyCC,QAAQ,wBAAR,CAAzC","file":"index.js","sourcesContent":["module.exports['i18n_loc_get_default'] = require('./i18n_loc_get_default')\nmodule.exports['i18n_loc_set_default'] = require('./i18n_loc_set_default')\n"]}
\ No newline at end of file |