(function (root, factory) {
//amd
if (typeof define === "function" && define.amd) {
define(['sprintf-js'], function (sprintf) {
return factory(sprintf.vsprintf);
});
//commonjs
} else if (typeof module === "object" && module.exports) {
module.exports = factory(require('sprintf-js').vsprintf);
//global
} else {
root.Translator = factory(window.vsprintf);
}
var i18n = new Translator(TRANSLATIONS);
window['__'] = function (sMsg, sGroupID) {
return i18n.p__(sGroupID, sMsg);
};
window['__pn'] = function (sMsgID, sGroupID, iValue) {
if (iValue === undefined || I18N_FN.isNumber(iValue) === false) {
iValue = 0;
}
return i18n.np__(sGroupID, sMsgID, sMsgID + '.PLURAL', iValue);
};
}(this, function (vsprintf) {
"use strict";
function Translator (translations) {
this.dictionary = {};
this.plurals = {};
this.domain = null;
if (translations) {
this.loadTranslations(translations);
}
}
Translator.prototype = {
loadTranslations: function (translations) {
var domain = translations.domain || '';
if (this.domain === null) {
this.domain = domain;
}
if (this.dictionary[domain]) {
mergeTranslations(this.dictionary[domain], translations.messages);
return this;
}
if (translations.fn) {
this.plurals[domain] = { fn: translations.fn };
} else if (translations['plural-forms']) {
var plural = translations['plural-forms'].split(';', 2);
this.plurals[domain] = {
count: parseInt(plural[0].replace('nplurals=', '')),
code: plural[1].replace('plural=', 'return ') + ';'
};
}
this.dictionary[domain] = translations.messages;
return this;
},
defaultDomain: function (domain) {
this.domain = domain;
return this;
},
gettext: function (original) {
return this.dpgettext(this.domain, null, original);
},
ngettext: function (original, plural, value) {
return this.dnpgettext(this.domain, null, original, plural, value);
},
dngettext: function (domain, original, plural, value) {
return this.dnpgettext(domain, null, original, plural, value);
},
npgettext: function (context, original, plural, value) {
return this.dnpgettext(this.domain, context, original, plural, value);
},
pgettext: function (context, original) {
return this.dpgettext(this.domain, context, original);
},
dgettext: function (domain, original) {
return this.dpgettext(domain, null, original);
},
dpgettext: function (domain, context, original) {
var translation = getTranslation(this.dictionary, domain, context, original);
if (translation !== false && translation[0] !== '') {
return translation[0];
}
return original;
},
dnpgettext: function (domain, context, original, plural, value) {
var index = getPluralIndex(this.plurals, domain, value);
var translation = getTranslation(this.dictionary, domain, context, original);
if (translation[index] && translation[index] !== '') {
return translation[index];
}
return (index === 0) ? original : plural;
},
__: function (original) {
return format(
this.gettext(original),
Array.prototype.slice.call(arguments, 1)
);
},
n__: function (original, plural, value) {
return format(
this.ngettext(original, plural, value),
Array.prototype.slice.call(arguments, 3)
);
},
p__: function (context, original) {
return format(
this.pgettext(context, original),
Array.prototype.slice.call(arguments, 2)
);
},
d__: function (domain, original) {
return format(
this.dgettext(domain, original),
Array.prototype.slice.call(arguments, 2)
);
},
dp__: function (domain, context, original) {
return format(
this.dgettext(domain, context, original),
Array.prototype.slice.call(arguments, 3)
);
},
np__: function (context, original, plural, value) {
return format(
this.npgettext(context, original, plural, value),
Array.prototype.slice.call(arguments, 4)
);
},
dnp__: function (domain, context, original, plural, value) {
return format(
this.dnpgettext(domain, context, original, plural, value),
Array.prototype.slice.call(arguments, 5)
);
}
};
function getTranslation(dictionary, domain, context, original) {
context = context || '';
if (!dictionary[domain] || !dictionary[domain][context] || !dictionary[domain][context][original]) {
return false;
}
try {
I18N_LOG_COLLECT.set(original, context);
} catch (e) {}
return dictionary[domain][context][original];
}
function getPluralIndex(plurals, domain, value) {
if (!plurals[domain]) {
return value == 1 ? 0 : 1;
}
if (!plurals[domain].fn) {
plurals[domain].fn = new Function('n', plurals[domain].code);
}
return plurals[domain].fn.call(this, value) + 0;
}
function mergeTranslations(translations, newTranslations) {
for (var context in newTranslations) {
if (!translations[context]) {
translations[context] = newTranslations[context];
continue;
}
for (var original in newTranslations[context]) {
translations[context][original] = newTranslations[context][original];
}
}
}
function format (text, args) {
if (!args.length) {
return text;
}
if (args[0] instanceof Array) {
return vsprintf(text, args[0]);
}
return vsprintf(text, args);
}
return Translator;
}));
/**
* i18n 관련 함수 모음
* @type {{ordinalSuffixes: string[], ordinalNumber: I18N_FN.ordinalNumber}}
*/
var I18N_FN = {
ordinalSuffixes: ['th', 'st', 'nd', 'rd', 'th', 'th', 'th', 'th', 'th', 'th'],
ordinalNumber: function (iValue) {
if (iValue === undefined) {
return '';
}
var iNum = String(iValue).replace(/,/g, "");
if (this.isNumber(iNum) === false) {
return iValue;
}
if (__('__LANGUAGE.CODE__') !== 'en_US') {
return iValue;
}
iNum = Math.abs(iNum);
iNum = parseFloat(iNum);
if (((iNum % 100) >= 11 && ((iNum % 100) <= 13)) || iNum % 1 != 0) {
return iValue + 'th';
}
return iValue + this.ordinalSuffixes[iNum % 10];
},
isNumber: function (v) {
return /^[+-]?\d*(\.?\d*)$/.test(v);
}
};
var I18N_LOG_COLLECT = {
aTranslationCodes: [],
bIsCallApiOnLoaded: false,
request_url: window.location.pathname,
call: function () {
var data = I18N_LOG_COLLECT.aTranslationCodes;
if (data.length === 0) {
return false;
}
I18N_LOG_COLLECT.aTranslationCodes = [];
$.ajax({
url: '/exec/common/translate/logging',
data: {"data": data},
type: 'POST',
dataType: 'json',
success: function (aData) {}
});
},
set: function (sMsg_id, sGroup_id) {
if (typeof CAFE24.TRANSLATE_LOG_STATUS === 'undefined' || CAFE24.TRANSLATE_LOG_STATUS !== 'T') {
return;
}
var item = {
'request_url': I18N_LOG_COLLECT.request_url,
'msg_id': sMsg_id,
'group_id': sGroup_id
};
if (I18N_LOG_COLLECT.bIsCallApiOnLoaded) {
I18N_LOG_COLLECT.aTranslationCodes.push(item);
I18N_LOG_COLLECT.call();
return true;
}
I18N_LOG_COLLECT.aTranslationCodes.push(item);
},
loadComplete: function () {
I18N_LOG_COLLECT.bIsCallApiOnLoaded = true;
I18N_LOG_COLLECT.call();
}
};
if (typeof CAFE24.TRANSLATE_LOG_STATUS !== 'undefined' && CAFE24.TRANSLATE_LOG_STATUS === 'T') {
if (document.addEventListener) {
document.addEventListener("DOMContentLoaded", function () {
I18N_LOG_COLLECT.loadComplete();
}, false);
} else if (document.attachEvent) {
document.attachEvent("onreadystatechange", function () {
if (document.readyState === "complete") {
document.detachEvent("onreadystatechange", arguments.callee);
I18N_LOG_COLLECT.loadComplete();
}
});
}
}
/*!
* jQuery JavaScript Library v3.6.0
* https://jquery.com/
*
* Includes Sizzle.js
* https://sizzlejs.com/
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license
* https://jquery.org/license
*
* Date: 2021-03-02T17:08Z
*/
( function( global, factory ) {
"use strict";
if ( typeof module === "object" && typeof module.exports === "object" ) {
// For CommonJS and CommonJS-like environments where a proper `window`
// is present, execute the factory and get jQuery.
// For environments that do not have a `window` with a `document`
// (such as Node.js), expose a factory as module.exports.
// This accentuates the need for the creation of a real `window`.
// e.g. var jQuery = require("jquery")(window);
// See ticket #14549 for more info.
module.exports = global.document ?
factory( global, true ) :
function( w ) {
if ( !w.document ) {
throw new Error( "jQuery requires a window with a document" );
}
return factory( w );
};
} else {
factory( global );
}
// Pass this if window is not defined yet
} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
// enough that all such attempts are guarded in a try block.
"use strict";
var arr = [];
var getProto = Object.getPrototypeOf;
var slice = arr.slice;
var flat = arr.flat ? function( array ) {
return arr.flat.call( array );
} : function( array ) {
return arr.concat.apply( [], array );
};
var push = arr.push;
var indexOf = arr.indexOf;
var class2type = {};
var toString = class2type.toString;
var hasOwn = class2type.hasOwnProperty;
var fnToString = hasOwn.toString;
var ObjectFunctionString = fnToString.call( Object );
var support = {};
var isFunction = function isFunction( obj ) {
// Support: Chrome <=57, Firefox <=52
// In some browsers, typeof returns "function" for HTML