Sindbad~EG File Manager

Current Path : /var/www/html/portal.sumar.com.py/wp-content/plugins/popup-maker/dist/packages/
Upload File :
Current File : /var/www/html/portal.sumar.com.py/wp-content/plugins/popup-maker/dist/packages/i18n.js.map

{"version":3,"file":"i18n.js","mappings":";;;;;;;;;;AAAA,sC;;;;;;UCAA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;;;;WCtBA;WACA;WACA;WACA;WACA;WACA,iCAAiC,WAAW;WAC5C;WACA,E;;;;;WCPA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA,E;;;;;WCPA,wF;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D,E;;;;;;;;;;;;;;;;;;;;;;ACNwC;;AAExC;AACA;AACA;AAFA,IAGiBC,UAAU;AAa3B;;AAGO,MAAMC,OAAO,GAAGA,CACtBC,MAAc,EACd,GAAGC,IAA8B,KAC7B;EACJ,OAAOJ,oDAAY,CAAEG,MAAM,EAAE,GAAKC,IAAa,CAAC;AACjD,CAAC;AAEM,MAAMC,EAAE,GAAGA,CAAEC,IAAY,EAAEC,MAAkB,KAAM;EACzD;EACA,OAAOP,+CAAO,CAAEM,IAAI,EAAEC,MAAO,CAAC;AAC/B,CAAC;AAEM,MAAMC,EAAE,GAAGA,CAAEF,IAAY,EAAEG,OAAe,EAAEF,MAAkB,KAAM;EAC1E;EACA,OAAOP,+CAAO,CAAEM,IAAI,EAAEG,OAAO,EAAEF,MAAO,CAAC;AACxC,CAAC;AAEM,MAAMG,EAAE,GAAGA,CACjBC,MAAc,EACdC,MAAc,EACdC,MAAc,EACdN,MAAkB,KACd;EACJ;EACA,OAAOP,+CAAO,CAAEW,MAAM,EAAEC,MAAM,EAAEC,MAAM,EAAEN,MAAO,CAAC;AACjD,CAAC;AAEM,MAAMO,GAAG,GAAGA,CAClBR,IAAY,EACZG,OAAe,EACfI,MAAc,EACdN,MAAkB,KACd;EACJ;EACA,OAAOP,gDAAQ,CAAEM,IAAI,EAAEG,OAAO,EAAEI,MAAM,EAAEN,MAAO,CAAC;AACjD,CAAC;AAEM,MAAMQ,KAAK,GAAGA,CAAA,KAAMf,kDAAU,CAAC,CAAC,C","sources":["webpack://popup-maker/core/external window [\"wp\",\"i18n\"]?","webpack://popup-maker/core/webpack/bootstrap?","webpack://popup-maker/core/webpack/runtime/compat get default export?","webpack://popup-maker/core/webpack/runtime/define property getters?","webpack://popup-maker/core/webpack/runtime/hasOwnProperty shorthand?","webpack://popup-maker/core/webpack/runtime/make namespace object?","webpack://popup-maker/core/./packages/i18n/src/index.ts?"],"sourcesContent":["module.exports = window[\"wp\"][\"i18n\"];","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","import * as i18n from '@wordpress/i18n';\n\n/**\n * Base namespace for Popup Maker i18n types\n */\nexport namespace PopupMaker {\n\t/**\n\t * Base interface for text domains.\n\t */\n\texport interface TextDomains {\n\t\tdefault: never;\n\t\t'popup-maker': never;\n\t}\n\n\t// Add this type alias for better type inference\n\texport type TextDomain = keyof TextDomains;\n}\n\n// Export the type separately to make it easier to extend\nexport type TextDomain = PopupMaker.TextDomain;\n\nexport const sprintf = (\n\tformat: string,\n\t...args: Array< string | number >\n) => {\n\treturn i18n.sprintf( format, ...( args as [] ) );\n};\n\nexport const __ = ( text: string, domain: TextDomain ) => {\n\t// eslint-disable-next-line @wordpress/i18n-text-domain, @wordpress/i18n-no-variables\n\treturn i18n.__( text, domain );\n};\n\nexport const _x = ( text: string, context: string, domain: TextDomain ) => {\n\t// eslint-disable-next-line @wordpress/i18n-text-domain, @wordpress/i18n-no-variables\n\treturn i18n._x( text, context, domain );\n};\n\nexport const _n = (\n\tsingle: string,\n\tplural: string,\n\tnumber: number,\n\tdomain: TextDomain\n) => {\n\t// eslint-disable-next-line @wordpress/i18n-text-domain, @wordpress/i18n-no-variables\n\treturn i18n._n( single, plural, number, domain );\n};\n\nexport const _nx = (\n\ttext: string,\n\tcontext: string,\n\tnumber: number,\n\tdomain: TextDomain\n) => {\n\t// eslint-disable-next-line @wordpress/i18n-text-domain, @wordpress/i18n-no-variables\n\treturn i18n._nx( text, context, number, domain );\n};\n\nexport const isRTL = () => i18n.isRTL();\n"],"names":["i18n","PopupMaker","sprintf","format","args","__","text","domain","_x","context","_n","single","plural","number","_nx","isRTL"],"sourceRoot":""}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists