123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101 |
- (function webpackUniversalModuleDefinition(root, factory) {
- if(typeof exports === 'object' && typeof module === 'object')
- module.exports = factory(require("underscore"), require("polyglot"));
- else if(typeof define === 'function' && define.amd)
- define(["underscore", "polyglot"], factory);
- else {
- var a = typeof exports === 'object' ? factory(require("underscore"), require("polyglot")) : factory(root["underscore"], root["polyglot"]);
- for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
- }
- })(typeof self !== 'undefined' ? self : this, function(__WEBPACK_EXTERNAL_MODULE_5__, __WEBPACK_EXTERNAL_MODULE_16__) {
- return /******/ (function(modules) { // webpackBootstrap
- /******/ // The module cache
- /******/ var installedModules = {};
- /******/
- /******/ // The require function
- /******/ function __webpack_require__(moduleId) {
- /******/
- /******/ // Check if module is in cache
- /******/ if(installedModules[moduleId]) {
- /******/ return installedModules[moduleId].exports;
- /******/ }
- /******/ // Create a new module (and put it into the cache)
- /******/ var module = installedModules[moduleId] = {
- /******/ i: moduleId,
- /******/ l: false,
- /******/ exports: {}
- /******/ };
- /******/
- /******/ // Execute the module function
- /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
- /******/
- /******/ // Flag the module as loaded
- /******/ module.l = true;
- /******/
- /******/ // Return the exports of the module
- /******/ return module.exports;
- /******/ }
- /******/
- /******/
- /******/ // expose the modules object (__webpack_modules__)
- /******/ __webpack_require__.m = modules;
- /******/
- /******/ // expose the module cache
- /******/ __webpack_require__.c = installedModules;
- /******/
- /******/ // define getter function for harmony exports
- /******/ __webpack_require__.d = function(exports, name, getter) {
- /******/ if(!__webpack_require__.o(exports, name)) {
- /******/ Object.defineProperty(exports, name, {
- /******/ configurable: false,
- /******/ enumerable: true,
- /******/ get: getter
- /******/ });
- /******/ }
- /******/ };
- /******/
- /******/ // getDefaultExport function for compatibility with non-harmony modules
- /******/ __webpack_require__.n = function(module) {
- /******/ var getter = module && module.__esModule ?
- /******/ function getDefault() { return module['default']; } :
- /******/ function getModuleExports() { return module; };
- /******/ __webpack_require__.d(getter, 'a', getter);
- /******/ return getter;
- /******/ };
- /******/
- /******/ // Object.prototype.hasOwnProperty.call
- /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
- /******/
- /******/ // __webpack_public_path__
- /******/ __webpack_require__.p = "/dist/bundles";
- /******/
- /******/ // Load entry module and return exports
- /******/ return __webpack_require__(__webpack_require__.s = 72);
- /******/ })
- /************************************************************************/
- /******/ ({
- /***/ 1:
- /***/ (function(module, exports, __webpack_require__) {
- "use strict";
- exports.__esModule = true;
- var _AuthoringCommonResources = __webpack_require__(15);
- var _AuthoringCommonResources2 = _interopRequireDefault(_AuthoringCommonResources);
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: BI
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- var Polyglot = __webpack_require__(16);
- var StringResources = function () {
- function StringResources() {
- _classCallCheck(this, StringResources);
- /**
- * Module which provides simple access to string resources.
- */
- this.polyglot = new Polyglot({
- phrases: _AuthoringCommonResources2.default
- });
- }
- /**
- * Get the string resource for the given key and interpolation options
- *
- * @param key The key of the string to return
- * @param interpolationOptions Optional interpolation options (see poly.t documentation for details)
- * @returns The string to display
- */
- StringResources.prototype.get = function get(key, interpolationOptions) {
- return this.polyglot.t(key, interpolationOptions);
- };
- return StringResources;
- }();
- exports.default = new StringResources();
- /***/ }),
- /***/ 10:
- /***/ (function(module, exports, __webpack_require__) {
- "use strict";
- var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2013, 2016
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(5)], __WEBPACK_AMD_DEFINE_RESULT__ = (function (_) {
- 'use strict';
- /**
- * The Class implements the root of class hierarchy implementing the mechanism for
- * creating new derived classes and calling inherited methods.
- */
- // @class
- // @abstract
- var Class = function Class() {};
- function createConstructor() {
- return function () {
- if (typeof this.init === 'function') {
- this.init.apply(this, arguments);
- }
- };
- }
- // Create new widget class derived from the Class
- // @static
- // @param mixins [optional] An array of the mixin classes.
- // @param def The definition of the derived class, methods, member variables. The
- // special method 'init' is called at construction of the class instance.
- //
- Class.extend = function (mixins, def) {
- if (arguments.length === 1) {
- def = mixins;
- mixins = null;
- }
- var baseProto = this.prototype,
- parentProto = baseProto,
- proto = Object.create(parentProto);
- // create the constructor
- var ctor = createConstructor();
- // add the mixins
- if (mixins) {
- for (var i = 0, len = mixins.length; i < len; ++i) {
- proto = _.extend(proto, mixins[i].prototype);
- }
- parentProto = proto;
- proto = Object.create(proto);
- if (typeof def.init !== 'function') {
- // generate default init method for multi-class inheritance
- def.init = function () {
- ctor.inherited('init', this, arguments);
- };
- }
- }
- _.extend(proto, def);
- ctor.prototype = proto;
- // static method to allow for further extension
- ctor.extend = this.extend;
- // calling the inherited methods
- ctor.inherited = function (name, that, args) {
- if (name === 'init') {
- // the 'init' method has a special case of calling inherited implementation
- // it should call all the 'init' methods from the base class and mixins
- if (typeof baseProto[name] === 'function') {
- baseProto[name].apply(that, args);
- }
- _.each(mixins, function (m) {
- if (typeof m.prototype[name] === 'function') {
- m.prototype[name].apply(that, args);
- }
- });
- } else if (typeof parentProto[name] === 'function') {
- return parentProto[name].apply(that, args);
- }
- };
- return ctor;
- };
- return Class;
- }).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
- __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
- //# sourceMappingURL=Class.js.map
- /***/ }),
- /***/ 15:
- /***/ (function(module, exports) {
- var amdi18n={"__root":{"errorCreatingPalette":"An error occurred while saving the palette.","paletteErrorTitle":"Palette Error","changePaletteLabel":"Change color palette","myPaletteLabel":"Custom","systemPaletteLabel":"System","publicPaletteLabel":"Global","localPaletteLabel":"Local","mruPaletteLabel":"Recently used","okDialog":"OK","deleteDialogTitle":"Delete","applyDialog":"Apply","cancelDialog":"Cancel","saveDialog":"Save","deleteMessage":"Are you sure you want to delete the palette \"%{name}\"?","deleteToast":"\"%{name}\" was deleted","favoritesLabel":"Favorites","setAsFavorite":"Set as favorite","createdToastMessage":"\"%{name}\" was successfully created.","createPalette":"Create a custom palette","colorPicker":"Color picker","errorNoName":"Enter a name for your palette","errorInsufficientColors":"Choose at least two colors","paletteAppliedToastMessage":"Palette \"%{name}\", was applied to the report.","createContinuousPalette":"Create continuous color palette","createStandardPalette":"Create categorical color palette","paletteNamePlaceholder":"Type palette name here","paletteName":"Palette name","standardPalette":"Categorical palette","continuousPalette":"Continuous palette","removeSwatch":"Remove swatch","addSwatch":"Add swatch","reversePalette":"Reverse palette","colorGuide":"Color guide","modeAutomatic":"Automatic","modeCustom":"Custom","colorModel":"Color model","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Grid","wheel":"Wheel","hexCode":"Hex code","colorRed":"Red","colorGreen":"Green","colorBlue":"Blue","colorHue":"Hue","colorSaturation":"Saturation","colorBrightness":"Brightness","colorCyan":"Cyan","colorMagenta":"Magenta","colorYellow":"Yellow","colorBlack":"Black","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"Close","editSchematic":"Edit package","searchSchematic":"Search","nameLabelSchematic":"Name","captionLabelSchematic":"Caption","keyLabelSchematic":"Key","addSchematic":"Upload File","schematicsInvalidSvg":"Invalid or unsupported SVG","schematicsInvalidSvgData":"Could not obtain file data","schematicsInvalidType":"Unsupported file type: %{type}","schematicsInvalidSize":"File %{file}, size %{size} exceeds limit.","schematicsContextMenuReplace":"Replace","schematicsContextMenuDelete":"Delete","schematicsEmptySearchResults":"Search results are empty","schematicsNoSelection":"No items selected","schematicsMultipleSelection":"%{count} items selected","schematicsSingleDeletionSuccessed":"Your schematic was successfully deleted.","schematicsMultipleDeletionSuccessed":"%{count} schematics were successfully deleted.","schematicsSingleAddSuccessed":"Your schematic was successfully added.","schematicsMultipleAddSuccessed":"%{count} schematics were successfully added.","schematicsAddFailed":"Failed adding your schematic.","schematicsReplaceDlgTitle":"Confirm replacement of existing file","schematicsReplaceDlgContent":"The file '%{sourceName}' already exists. Do you want to replace it with the new file?","schematicsReplaceDlgApplyToAllFiles":"Apply to all files","schematicsPackageTab":"Package","schematicsContentTab":"Content","schematicsDescriptionLabel":"Description","schematicsIconLabel":"Icon","schematicsChooseFile":"Choose a file","schematicsDeleteIcon":"Remove the icon","schematicsIconAdded":"The icon \"%{file}\" has been successfully added.","schematicsIconRemove":"The icon has been successully removed.","schematicsIconDropFiles":"Drop files here","schematicsIconOr":"or","schematicsIconFileTypes":"Only .jpg, .png, and .svg files.","schematicsIconFileSize":"%{size}MB max file size."},"__cy":{"errorCreatingPalette":"An error occurred while saving the palette.~DB1","paletteErrorTitle":"Palette Error~DB2","changePaletteLabel":"Change color palette~DB3","myPaletteLabel":"Custom~DB4","systemPaletteLabel":"System~DB5","publicPaletteLabel":"Global~DB6","localPaletteLabel":"Local~DB7","mruPaletteLabel":"Recently used~DB8","okDialog":"OK~DB9","deleteDialogTitle":"Delete~DB10","applyDialog":"Apply~DB11","cancelDialog":"Cancel~DB12","saveDialog":"Save~DB13","deleteMessage":"Are you sure you want to delete the palette \"[%{name}]\"?~DB14","deleteToast":"\"[%{name}]\" was deleted~DB15","favoritesLabel":"Favorites~DB16","setAsFavorite":"Set as favorite~DB17","createdToastMessage":"\"[%{name}]\" was successfully created.~DB18","createPalette":"Create a custom palette~DB19","colorPicker":"Color picker~DB20","errorNoName":"Enter a name for your palette~DB21","errorInsufficientColors":"Choose at least two colors~DB22","paletteAppliedToastMessage":"Palette \"[%{name}]\", was applied to the report.~DB23","createContinuousPalette":"Create continuous color palette~DB24","createStandardPalette":"Create categorical color palette~DB25","paletteNamePlaceholder":"Type palette name here~DB26","paletteName":"Palette name~DB27","standardPalette":"Categorical palette~DB28","continuousPalette":"Continuous palette~DB29","removeSwatch":"Remove swatch~DB30","addSwatch":"Add swatch~DB31","reversePalette":"Reverse palette~DB32","colorGuide":"Color guide~DB33","modeAutomatic":"Automatic~DB34","modeCustom":"Custom~DB35","colorModel":"Color model~DB36","modelRGB":"RGB~DB37","modelHSB":"HSB~DB38","modelCMYK":"CMYK~DB39","grid":"Grid~DB40","wheel":"Wheel~DB41","hexCode":"Hex code~DB42","colorRed":"Red~DB43","colorGreen":"Green~DB44","colorBlue":"Blue~DB45","colorHue":"Hue~DB46","colorSaturation":"Saturation~DB47","colorBrightness":"Brightness~DB48","colorCyan":"Cyan~DB49","colorMagenta":"Magenta~DB50","colorYellow":"Yellow~DB51","colorBlack":"Black~DB52","codeRed":"R~DB53","codeGreen":"G~DB54","codeBlue":"B~DB55","codeHue":"H~DB56","codeSaturation":"S~DB57","codeBrightness":"B~DB58","codeCyan":"C~DB59","codeMagenta":"M~DB60","codeYellow":"Y~DB61","codeBlack":"K~DB62","close":"Close~DB63","editSchematic":"Edit package~DB64","searchSchematic":"Search~DB65","nameLabelSchematic":"Name~DB66","captionLabelSchematic":"Caption~DB67","keyLabelSchematic":"Key~DB68","addSchematic":"Upload File~DB69","schematicsInvalidSvg":"Invalid or unsupported SVG~DB70","schematicsInvalidSvgData":"Could not obtain file data~DB71","schematicsInvalidType":"Unsupported file type: [%{type}]~DB72","schematicsInvalidSize":"File [%{file}], size [%{size}] exceeds limit.~DB73","schematicsContextMenuReplace":"Replace~DB74","schematicsContextMenuDelete":"Delete~DB75","schematicsEmptySearchResults":"Search results are empty~DB76","schematicsNoSelection":"No items selected~DB77","schematicsMultipleSelection":"[%{count}] items selected~DB78","schematicsSingleDeletionSuccessed":"Your schematic was successfully deleted.~DB79","schematicsMultipleDeletionSuccessed":"[%{count}] schematics were successfully deleted.~DB80","schematicsSingleAddSuccessed":"Your schematic was successfully added.~DB81","schematicsMultipleAddSuccessed":"[%{count}] schematics were successfully added.~DB82","schematicsAddFailed":"Failed adding your schematic.~DB83","schematicsReplaceDlgTitle":"Confirm replacement of existing file~DB84","schematicsReplaceDlgContent":"The file '[%{sourceName}]' already exists. Do you want to replace it with the new file?~DB85","schematicsReplaceDlgApplyToAllFiles":"Apply to all files~DB86","schematicsPackageTab":"Package~DB87","schematicsContentTab":"Content~DB88","schematicsDescriptionLabel":"Description~DB89","schematicsIconLabel":"Icon~DB90","schematicsChooseFile":"Choose a file~DB91","schematicsDeleteIcon":"Remove the icon~DB92","schematicsIconAdded":"The icon \"[%{file}]\" has been successfully added.~DB93","schematicsIconRemove":"The icon has been successully removed.~DB94","schematicsIconDropFiles":"Drop files here~DB95","schematicsIconOr":"or~DB96","schematicsIconFileTypes":"Only .jpg, .png, and .svg files.~DB97","schematicsIconFileSize":"[%{size}]MB max file size.~DB98"},"__gl":{"errorCreatingPalette":"«头'ทั้ดูΣ_An error occurred while saving the palette._Э İı|尾»","paletteErrorTitle":"«头'ทั้ดูΣ_Palette Error_Э İı|尾»","changePaletteLabel":"«头'ทั้ดูΣ_Change color palette_Э İı|尾»","myPaletteLabel":"«头'ทั้ดูΣ_Custom_Э İı|尾»","systemPaletteLabel":"«头'ทั้ดูΣ_System_Э İı|尾»","publicPaletteLabel":"«头'ทั้ดูΣ_Global_Э İı|尾»","localPaletteLabel":"«头'ทั้ดูΣ_Local_Э İı|尾»","mruPaletteLabel":"«头'ทั้ดูΣ_Recently used_Э İı|尾»","okDialog":"«头'ทั้ดูΣ_OK_Э İı|尾»","deleteDialogTitle":"«头'ทั้ดูΣ_Delete_Э İı|尾»","applyDialog":"«头'ทั้ดูΣ_Apply_Э İı|尾»","cancelDialog":"«头'ทั้ดูΣ_Cancel_Э İı|尾»","saveDialog":"«头'ทั้ดูΣ_Save_Э İı|尾»","deleteMessage":"«头'ทั้ดูΣ_Are you sure you want to delete the palette \"[%{name}]\"?_Э İı|尾»","deleteToast":"«头'ทั้ดูΣ_\"[%{name}]\" was deleted_Э İı|尾»","favoritesLabel":"«头'ทั้ดูΣ_Favorites_Э İı|尾»","setAsFavorite":"«头'ทั้ดูΣ_Set as favorite_Э İı|尾»","createdToastMessage":"«头'ทั้ดูΣ_\"[%{name}]\" was successfully created._Э İı|尾»","createPalette":"«头'ทั้ดูΣ_Create a custom palette_Э İı|尾»","colorPicker":"«头'ทั้ดูΣ_Color picker_Э İı|尾»","errorNoName":"«头'ทั้ดูΣ_Enter a name for your palette_Э İı|尾»","errorInsufficientColors":"«头'ทั้ดูΣ_Choose at least two colors_Э İı|尾»","paletteAppliedToastMessage":"«头'ทั้ดูΣ_Palette \"[%{name}]\", was applied to the report._Э İı|尾»","createContinuousPalette":"«头'ทั้ดูΣ_Create continuous color palette_Э İı|尾»","createStandardPalette":"«头'ทั้ดูΣ_Create categorical color palette_Э İı|尾»","paletteNamePlaceholder":"«头'ทั้ดูΣ_Type palette name here_Э İı|尾»","paletteName":"«头'ทั้ดูΣ_Palette name_Э İı|尾»","standardPalette":"«头'ทั้ดูΣ_Categorical palette_Э İı|尾»","continuousPalette":"«头'ทั้ดูΣ_Continuous palette_Э İı|尾»","removeSwatch":"«头'ทั้ดูΣ_Remove swatch_Э İı|尾»","addSwatch":"«头'ทั้ดูΣ_Add swatch_Э İı|尾»","reversePalette":"«头'ทั้ดูΣ_Reverse palette_Э İı|尾»","colorGuide":"«头'ทั้ดูΣ_Color guide_Э İı|尾»","modeAutomatic":"«头'ทั้ดูΣ_Automatic_Э İı|尾»","modeCustom":"«头'ทั้ดูΣ_Custom_Э İı|尾»","colorModel":"«头'ทั้ดูΣ_Color model_Э İı|尾»","modelRGB":"«头'ทั้ดูΣ_RGB_Э İı|尾»","modelHSB":"«头'ทั้ดูΣ_HSB_Э İı|尾»","modelCMYK":"«头'ทั้ดูΣ_CMYK_Э İı|尾»","grid":"«头'ทั้ดูΣ_Grid_Э İı|尾»","wheel":"«头'ทั้ดูΣ_Wheel_Э İı|尾»","hexCode":"«头'ทั้ดูΣ_Hex code_Э İı|尾»","colorRed":"«头'ทั้ดูΣ_Red_Э İı|尾»","colorGreen":"«头'ทั้ดูΣ_Green_Э İı|尾»","colorBlue":"«头'ทั้ดูΣ_Blue_Э İı|尾»","colorHue":"«头'ทั้ดูΣ_Hue_Э İı|尾»","colorSaturation":"«头'ทั้ดูΣ_Saturation_Э İı|尾»","colorBrightness":"«头'ทั้ดูΣ_Brightness_Э İı|尾»","colorCyan":"«头'ทั้ดูΣ_Cyan_Э İı|尾»","colorMagenta":"«头'ทั้ดูΣ_Magenta_Э İı|尾»","colorYellow":"«头'ทั้ดูΣ_Yellow_Э İı|尾»","colorBlack":"«头'ทั้ดูΣ_Black_Э İı|尾»","codeRed":"«头'ทั้ดูΣ_R_Э İı|尾»","codeGreen":"«头'ทั้ดูΣ_G_Э İı|尾»","codeBlue":"«头'ทั้ดูΣ_B_Э İı|尾»","codeHue":"«头'ทั้ดูΣ_H_Э İı|尾»","codeSaturation":"«头'ทั้ดูΣ_S_Э İı|尾»","codeBrightness":"«头'ทั้ดูΣ_B_Э İı|尾»","codeCyan":"«头'ทั้ดูΣ_C_Э İı|尾»","codeMagenta":"«头'ทั้ดูΣ_M_Э İı|尾»","codeYellow":"«头'ทั้ดูΣ_Y_Э İı|尾»","codeBlack":"«头'ทั้ดูΣ_K_Э İı|尾»","close":"«头'ทั้ดูΣ_Close_Э İı|尾»","editSchematic":"«头'ทั้ดูΣ_Edit package_Э İı|尾»","searchSchematic":"«头'ทั้ดูΣ_Search_Э İı|尾»","nameLabelSchematic":"«头'ทั้ดูΣ_Name_Э İı|尾»","captionLabelSchematic":"«头'ทั้ดูΣ_Caption_Э İı|尾»","keyLabelSchematic":"«头'ทั้ดูΣ_Key_Э İı|尾»","addSchematic":"«头'ทั้ดูΣ_Upload File_Э İı|尾»","schematicsInvalidSvg":"«头'ทั้ดูΣ_Invalid or unsupported SVG_Э İı|尾»","schematicsInvalidSvgData":"«头'ทั้ดูΣ_Could not obtain file data_Э İı|尾»","schematicsInvalidType":"«头'ทั้ดูΣ_Unsupported file type: [%{type}]_Э İı|尾»","schematicsInvalidSize":"«头'ทั้ดูΣ_File [%{file}], size [%{size}] exceeds limit._Э İı|尾»","schematicsContextMenuReplace":"«头'ทั้ดูΣ_Replace_Э İı|尾»","schematicsContextMenuDelete":"«头'ทั้ดูΣ_Delete_Э İı|尾»","schematicsEmptySearchResults":"«头'ทั้ดูΣ_Search results are empty_Э İı|尾»","schematicsNoSelection":"«头'ทั้ดูΣ_No items selected_Э İı|尾»","schematicsMultipleSelection":"«头'ทั้ดูΣ_[%{count}] items selected_Э İı|尾»","schematicsSingleDeletionSuccessed":"«头'ทั้ดูΣ_Your schematic was successfully deleted._Э İı|尾»","schematicsMultipleDeletionSuccessed":"«头'ทั้ดูΣ_[%{count}] schematics were successfully deleted._Э İı|尾»","schematicsSingleAddSuccessed":"«头'ทั้ดูΣ_Your schematic was successfully added._Э İı|尾»","schematicsMultipleAddSuccessed":"«头'ทั้ดูΣ_[%{count}] schematics were successfully added._Э İı|尾»","schematicsAddFailed":"«头'ทั้ดูΣ_Failed adding your schematic._Э İı|尾»","schematicsReplaceDlgTitle":"«头'ทั้ดูΣ_Confirm replacement of existing file_Э İı|尾»","schematicsReplaceDlgContent":"«头'ทั้ดูΣ_The file '[%{sourceName}]' already exists. Do you want to replace it with the new file?_Э İı|尾»","schematicsReplaceDlgApplyToAllFiles":"«头'ทั้ดูΣ_Apply to all files_Э İı|尾»","schematicsPackageTab":"«头'ทั้ดูΣ_Package_Э İı|尾»","schematicsContentTab":"«头'ทั้ดูΣ_Content_Э İı|尾»","schematicsDescriptionLabel":"«头'ทั้ดูΣ_Description_Э İı|尾»","schematicsIconLabel":"«头'ทั้ดูΣ_Icon_Э İı|尾»","schematicsChooseFile":"«头'ทั้ดูΣ_Choose a file_Э İı|尾»","schematicsDeleteIcon":"«头'ทั้ดูΣ_Remove the icon_Э İı|尾»","schematicsIconAdded":"«头'ทั้ดูΣ_The icon \"[%{file}]\" has been successfully added._Э İı|尾»","schematicsIconRemove":"«头'ทั้ดูΣ_The icon has been successully removed._Э İı|尾»","schematicsIconDropFiles":"«头'ทั้ดูΣ_Drop files here_Э İı|尾»","schematicsIconOr":"«头'ทั้ดูΣ_or_Э İı|尾»","schematicsIconFileTypes":"«头'ทั้ดูΣ_Only .jpg, .png, and .svg files._Э İı|尾»","schematicsIconFileSize":"«头'ทั้ดูΣ_[%{size}]MB max file size._Э İı|尾»"},"__cs":{"errorCreatingPalette":"Došlo k chybě při ukládání palety.","paletteErrorTitle":"Chyba palety","changePaletteLabel":"Změnit paletu barev","myPaletteLabel":"Vlastní","systemPaletteLabel":"Systém","publicPaletteLabel":"Globální","localPaletteLabel":"Lokální","mruPaletteLabel":"Nedávno použité","okDialog":"OK","deleteDialogTitle":"Odstranit","applyDialog":"Použít","cancelDialog":"Storno","saveDialog":"Uložit","deleteMessage":"Opravdu chcete odstranit paletu \"%{name}\"?","deleteToast":"Odstraněno: \"%{name}\"","favoritesLabel":"Oblíbené položky","setAsFavorite":"Nastavit jako oblíbené","createdToastMessage":"Úspěšně vytvořeno: \"%{name}\"","createPalette":"Vytvořit vlastní paletu","colorPicker":"Výběr barvy","errorNoName":"Zadejte název palety.","errorInsufficientColors":"Vyberte alespoň dvě barvy.","paletteAppliedToastMessage":"Na sestavu byla použit a paleta \"%{name}\".","createContinuousPalette":"Vytvořit spojitou paletu barev","createStandardPalette":"Vytvořit kategorickou paletu barev","paletteNamePlaceholder":"Zde zadejte název palety.","paletteName":"Název palety","standardPalette":"Kategorická paleta","continuousPalette":"Spojitá paleta","removeSwatch":"Odebrat paletu","addSwatch":"Přidat paletu","reversePalette":"Obrátit paletu","colorGuide":"Průvodce barvami","modeAutomatic":"Automaticky","modeCustom":"Vlastní","colorModel":"Barevný model","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Mřížka","wheel":"Kolo","hexCode":"Hexadecimální kód","colorRed":"Červená","colorGreen":"Zelená","colorBlue":"Modrá","colorHue":"Odstín","colorSaturation":"Sytost","colorBrightness":"Jas","colorCyan":"Azurová","colorMagenta":"Purpurová","colorYellow":"Žlutá","colorBlack":"Černá","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"Zavřít","editSchematic":"Upravit balík","searchSchematic":"Hledat","nameLabelSchematic":"Název","captionLabelSchematic":"Titulek","keyLabelSchematic":"Klíč","addSchematic":"Odeslat soubor","schematicsInvalidSvg":"Neplatný nebo nepodporovaný formát SVG","schematicsInvalidSvgData":"Nelze získat data souboru","schematicsInvalidType":"Nepodporovaný typ souboru: %{type}","schematicsInvalidSize":"Soubor %{file} s velikostí %{size} překračuje limit.","schematicsContextMenuReplace":"Nahradit","schematicsContextMenuDelete":"Odstranit","schematicsEmptySearchResults":"Výsledky hledání jsou prázdné.","schematicsNoSelection":"Nejsou vybrány žádné prvky.","schematicsMultipleSelection":"Počet vybraných položek: %{count}","schematicsSingleDeletionSuccessed":"Vaše schéma bylo úspěšně odstraněno.","schematicsMultipleDeletionSuccessed":"Počet úspěšně odstraněných schémat: %{count}.","schematicsSingleAddSuccessed":"Vaše schéma bylo úspěšně přidáno.","schematicsMultipleAddSuccessed":"Počet úspěšně přidaných schémat: %{count}.","schematicsAddFailed":"Neúspěšné přidání nového schématu","schematicsReplaceDlgTitle":"Potvrdit nahrazení existujícího souboru","schematicsReplaceDlgContent":"Soubor '%{sourceName}' již existuje. Chcete ho nahradit tímto novým souborem?","schematicsReplaceDlgApplyToAllFiles":"Použít na všechny soubory","schematicsPackageTab":"Balík","schematicsContentTab":"Obsah","schematicsDescriptionLabel":"Popis","schematicsIconLabel":"Ikona","schematicsChooseFile":"Zvolit soubor","schematicsDeleteIcon":"Odebrat ikonu","schematicsIconAdded":"Ikona \"%{file}\" byla úspěšně přidána.","schematicsIconRemove":"Ikona byla úspěšně odebrána.","schematicsIconDropFiles":"Soubory přetáhněte sem","schematicsIconOr":"nebo","schematicsIconFileTypes":"Pouze soubory .jpg, .png a .svg.","schematicsIconFileSize":"Maximální velikost souboru %{size} MB."},"__da":{"errorCreatingPalette":"Der er opstået en fejl i forbindelse med at gemme paletten.","paletteErrorTitle":"Paletfejl","changePaletteLabel":"Skift farvepalet","myPaletteLabel":"Tilpasset","systemPaletteLabel":"System","publicPaletteLabel":"Global","localPaletteLabel":"Lokal","mruPaletteLabel":"Anvendt for nylig","okDialog":"OK","deleteDialogTitle":"Slet","applyDialog":"Anvend","cancelDialog":"Annullér","saveDialog":"Gem","deleteMessage":"Er du sikker på, at du vil slette paletten \"%{name}\"?","deleteToast":"\"%{name}\" blev slettet","favoritesLabel":"Favoritter","setAsFavorite":"Angiv som favorit","createdToastMessage":"\"%{name}\" blev oprettet.","createPalette":"Opret en tilpasset palet","colorPicker":"Farvevælger","errorNoName":"Angiv et navn på din palet","errorInsufficientColors":"Vælg mindst to farver","paletteAppliedToastMessage":"Palet \"%{name}\" er anvendt til rapporten.","createContinuousPalette":"Opret en fortløbende farvepalet","createStandardPalette":"Opret en kategorisk farvepalet","paletteNamePlaceholder":"Angiv paletnavn her","paletteName":"Paletnavn","standardPalette":"Kategorisk palet","continuousPalette":"Fortløbende palet","removeSwatch":"Fjern prøve","addSwatch":"Tilføj prøve","reversePalette":"Omvendt palet","colorGuide":"Farvevejledning","modeAutomatic":"Automatisk","modeCustom":"Tilpasset","colorModel":"Farvemodel","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Gitter","wheel":"Hjul","hexCode":"Hex-kode","colorRed":"Rød","colorGreen":"Grøn","colorBlue":"Blå","colorHue":"Hue","colorSaturation":"Mætning","colorBrightness":"Lysstyrke","colorCyan":"Turkis","colorMagenta":"Magenta","colorYellow":"Gul","colorBlack":"Sort","codeRed":"A","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"Luk","editSchematic":"Redigér pakke","searchSchematic":"Søg","nameLabelSchematic":"Navn","captionLabelSchematic":"Overskrift","keyLabelSchematic":"Nøgle","addSchematic":"Upload fil","schematicsInvalidSvg":"Ugyldig eller ikke-understøttet SVG","schematicsInvalidSvgData":"Kan ikke hente fildata","schematicsInvalidType":"Ikke-understøttet filtype: %{type}","schematicsInvalidSize":"Filen %{file}, størrelse %{size} overskrider grænsen.","schematicsContextMenuReplace":"Erstat","schematicsContextMenuDelete":"Slet","schematicsEmptySearchResults":"Søgeresultater er tom","schematicsNoSelection":"Ingen elementer valgt","schematicsMultipleSelection":"%{count} elementer valgt","schematicsSingleDeletionSuccessed":"Skemaet er slettet.","schematicsMultipleDeletionSuccessed":"%{count} skemaer blev slettet.","schematicsSingleAddSuccessed":"dit skema er tilføjet.","schematicsMultipleAddSuccessed":"%{count} skemaer blev tilføjet.","schematicsAddFailed":"Fejl under tilføjelse af dit skema","schematicsReplaceDlgTitle":"Bekræft erstatning af eksisterende file","schematicsReplaceDlgContent":"Filen '%{sourceName}' findes allerede. Vil du overskrive den med den nye fil?","schematicsReplaceDlgApplyToAllFiles":"Anvend på alle filer","schematicsPackageTab":"Pakke","schematicsContentTab":"Indhold","schematicsDescriptionLabel":"Beskrivelse","schematicsIconLabel":"Ikon","schematicsChooseFile":"Vælg en fil","schematicsDeleteIcon":"Fjern ikonen","schematicsIconAdded":"Ikonen \"%{file}\" er tilføjet.","schematicsIconRemove":"Ikonen er fjernet.","schematicsIconDropFiles":"Placér filer her","schematicsIconOr":"eller","schematicsIconFileTypes":"Kun filer af typen .jpg, .png og .svg.","schematicsIconFileSize":"%{size}MB maks. filstørrelse."},"__de":{"errorCreatingPalette":"Beim Speichern der Palette ist ein Fehler aufgetreten.","paletteErrorTitle":"Palette - Fehler","changePaletteLabel":"Farbpalette ändern","myPaletteLabel":"Benutzerdefiniert","systemPaletteLabel":"System","publicPaletteLabel":"Global","localPaletteLabel":"Lokal","mruPaletteLabel":"Zuletzt verwendet","okDialog":"OK","deleteDialogTitle":"Löschen","applyDialog":"Anwenden","cancelDialog":"Abbrechen","saveDialog":"Speichern","deleteMessage":"Soll die Palette \"%{name}\" tatsächlich gelöscht werden?","deleteToast":"\"%{name}\" wurde gelöscht","favoritesLabel":"Favoriten","setAsFavorite":"Als Favorit festlegen","createdToastMessage":"\"%{name}\" wurde erfolgreich erstellt.","createPalette":"Benutzerdefinierte Palette erstellen","colorPicker":"Farbauswahl","errorNoName":"Namen für die Palette eingeben","errorInsufficientColors":"Mindestens zwei Farben auswählen","paletteAppliedToastMessage":"Die Palette \"%{name}\" wurde auf den Bericht angewendet.","createContinuousPalette":"Palette mit fortlaufenden Farben erstellen","createStandardPalette":"Palette mit kategorialen Farben erstellen","paletteNamePlaceholder":"Palettennamen hier eingeben","paletteName":"Palettenname","standardPalette":"Kategoriale Palette","continuousPalette":"Fortlaufende Palette","removeSwatch":"Muster entfernen","addSwatch":"Muster hinzufügen","reversePalette":"Umgekehrte Palette","colorGuide":"Richtlinien für Farben","modeAutomatic":"Automatisch","modeCustom":"Benutzerdefiniert","colorModel":"Farbmodell","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Raster","wheel":"Rad","hexCode":"Hexadezimalcode","colorRed":"Rot","colorGreen":"Grün","colorBlue":"Blau","colorHue":"Farbton","colorSaturation":"Sättigung","colorBrightness":"Helligkeit","colorCyan":"Zyan","colorMagenta":"Magenta","colorYellow":"Gelb","colorBlack":"Schwarz","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"Mio","codeYellow":"Y","codeBlack":"K","close":"Schließen","editSchematic":"Package bearbeiten","searchSchematic":"Suchen","nameLabelSchematic":"Name","captionLabelSchematic":"Titelzeile","keyLabelSchematic":"Schlüssel","addSchematic":"Datei hochladen","schematicsInvalidSvg":"Ungültige oder nicht unterstützte SVG","schematicsInvalidSvgData":"Abrufen der Dateidaten nicht möglich","schematicsInvalidType":"Nicht unterstützter Dateityp: %{type}","schematicsInvalidSize":"Die Größe %{size} der Datei %{file} überschreitet den Grenzwert.","schematicsContextMenuReplace":"Ersetzen","schematicsContextMenuDelete":"Löschen","schematicsEmptySearchResults":"Suchergebnisse sind leer","schematicsNoSelection":"Keine Elemente ausgewählt","schematicsMultipleSelection":"%{count} Elemente ausgewählt","schematicsSingleDeletionSuccessed":"Das Schema wurde erfolgreich gelöscht.","schematicsMultipleDeletionSuccessed":"%{count} Schemas wurden erfolgreich gelöscht.","schematicsSingleAddSuccessed":"Das Schema wurde erfolgreich hinzugefügt.","schematicsMultipleAddSuccessed":"%{count} Schemas wurden erfolgreich hinzugefügt.","schematicsAddFailed":"Hinzufügen des Schemas fehlgeschlagen.","schematicsReplaceDlgTitle":"Ersetzen vorhandener Datei bestätigen","schematicsReplaceDlgContent":"Die Datei '%{sourceName}' ist bereits vorhanden. Soll sie durch die neue Datei ersetzt werden?","schematicsReplaceDlgApplyToAllFiles":"Für alle Dateien anwenden","schematicsPackageTab":"Package","schematicsContentTab":"Inhalt","schematicsDescriptionLabel":"Beschreibung","schematicsIconLabel":"Symbol","schematicsChooseFile":"Datei auswählen","schematicsDeleteIcon":"Symbol entfernen","schematicsIconAdded":"Das Symbol \"%{file}\" wurde erfolgreich hinzugefügt.","schematicsIconRemove":"Das Symbol wurde erfolgreich entfernt.","schematicsIconDropFiles":"Dateien hier ablegen","schematicsIconOr":"oder","schematicsIconFileTypes":"Nur .jpg-, .png- und .svg-Dateien. ","schematicsIconFileSize":"Maximale Dateigröße %{size} MB. "},"__es":{"errorCreatingPalette":"Se ha producido un error al guardar la paleta.","paletteErrorTitle":"Error de paleta","changePaletteLabel":"Cambiar paleta de colores","myPaletteLabel":"Personalizado","systemPaletteLabel":"Sistema","publicPaletteLabel":"Global","localPaletteLabel":"Local","mruPaletteLabel":"Utilizados recientemente","okDialog":"Aceptar","deleteDialogTitle":"Suprimir","applyDialog":"Aplicar","cancelDialog":"Cancelar","saveDialog":"Guardar","deleteMessage":"¿Está seguro de que desea suprimir la paleta \"%{name}\"?","deleteToast":"Se ha suprimido \"%{name}\"","favoritesLabel":"Favoritos","setAsFavorite":"Establecer como favorito","createdToastMessage":"Se ha creado correctamente \"%{name}\".","createPalette":"Crear una paleta personalizada","colorPicker":"Selector de color","errorNoName":"Escriba un nombre para la paleta.","errorInsufficientColors":"Seleccione al menos dos colores","paletteAppliedToastMessage":"Se ha aplicado la paleta \"%{name}\" al informe.","createContinuousPalette":"Crear paleta de colores continua","createStandardPalette":"Crear paleta de colores de categorías","paletteNamePlaceholder":"Escriba aquí un nombre de paleta","paletteName":"Nombre de paleta","standardPalette":"Paleta de categorías","continuousPalette":"Paleta continua","removeSwatch":"Eliminar reloj","addSwatch":"Añadir reloj","reversePalette":"Invertir paleta","colorGuide":"Guía de colores","modeAutomatic":"Automático","modeCustom":"Personalizado","colorModel":"Modelo de color","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Cuadrícula","wheel":"Rueda","hexCode":"Código hexadecimal","colorRed":"Rojo","colorGreen":"Verde","colorBlue":"Azul","colorHue":"Tono","colorSaturation":"Saturación","colorBrightness":"Luminosidad","colorCyan":"Cian","colorMagenta":"Magenta","colorYellow":"Amarillo","colorBlack":"Negro","codeRed":"S","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"D","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"Cerrar","editSchematic":"Editar paquete","searchSchematic":"Buscar","nameLabelSchematic":"Nombre","captionLabelSchematic":"Título","keyLabelSchematic":"Clave","addSchematic":"Cargar archivo","schematicsInvalidSvg":"SVG no válido o no soportado","schematicsInvalidSvgData":"No se han podido obtener los datos del archivo:","schematicsInvalidType":"Tipo de archivo no soportado: %{type}","schematicsInvalidSize":"El archivo %{file}, tamaño %{size} supera el límite.","schematicsContextMenuReplace":"Sustituir","schematicsContextMenuDelete":"Suprimir","schematicsEmptySearchResults":"El resultado de la búsqueda está vacío","schematicsNoSelection":"No se ha seleccionado ningún elemento","schematicsMultipleSelection":"%{count} elementos seleccionados","schematicsSingleDeletionSuccessed":"Su esquemático se ha suprimido correctamente.","schematicsMultipleDeletionSuccessed":"Se han suprimido %{count} esquemáticos correctamente.","schematicsSingleAddSuccessed":"Su esquemático se ha añadido correctamente.","schematicsMultipleAddSuccessed":"Se han añadido %{count} esquemáticos correctamente.","schematicsAddFailed":"Error al añadir su esquemático.","schematicsReplaceDlgTitle":"Confirmar sustitución del archivo existente","schematicsReplaceDlgContent":"El archivo '%{sourceName}' ya existe. ¿Desea reemplazarlo por este nuevo archivo?","schematicsReplaceDlgApplyToAllFiles":"Aplicar a todos los filtros","schematicsPackageTab":"Paquete","schematicsContentTab":"Contenido","schematicsDescriptionLabel":"Descripción","schematicsIconLabel":"Icono","schematicsChooseFile":"Seleccionar un archivo","schematicsDeleteIcon":"Suprimir el icono","schematicsIconAdded":"El icono \"%{file}\" se ha añadido correctamente.","schematicsIconRemove":"El icono se ha eliminado correctamente.","schematicsIconDropFiles":"Coloque aquí los archivos","schematicsIconOr":"o bien","schematicsIconFileTypes":"Solo archivos .jpg, .png y .svg.","schematicsIconFileSize":"%{size}MB de tamaño máximo de archivo. "},"__fi":{"errorCreatingPalette":"Virhe tallennettaessa palettia.","paletteErrorTitle":"Palettivirhe","changePaletteLabel":"Vaihda väripaletti","myPaletteLabel":"Mukautettu","systemPaletteLabel":"Järjestelmä","publicPaletteLabel":"Yleiset","localPaletteLabel":"Paikallinen","mruPaletteLabel":"Viimeksi käytetyt","okDialog":"OK","deleteDialogTitle":"Poista","applyDialog":"Käytä","cancelDialog":"Peruuta","saveDialog":"Tallenna","deleteMessage":"Haluatko varmasti poistaa paletin %{name}?","deleteToast":"%{name} on poistettu","favoritesLabel":"Suosikit","setAsFavorite":"Aseta suosikiksi","createdToastMessage":"%{name} on luotu.","createPalette":"Luo mukautettu paletti","colorPicker":"Värinvalitsin","errorNoName":"Anna paletille nimi:","errorInsufficientColors":"Valitse vähintään kaksi väriä","paletteAppliedToastMessage":"Raporttiin on käytetty palettia %{name}.","createContinuousPalette":"Luo yhtenäinen väripaletti","createStandardPalette":"Luo kategorinen väripaletti","paletteNamePlaceholder":"Kirjoita paletin nimi tähän","paletteName":"Paletin nimi","standardPalette":"Kategorinen paletti","continuousPalette":"Yhtenäinen paletti","removeSwatch":"Poista värivalikoima","addSwatch":"Lisää värivalikoima","reversePalette":"Käänteinen paletti","colorGuide":"Väriopas","modeAutomatic":"Automaattinen","modeCustom":"Mukautettu","colorModel":"Värimalli","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Ruudukko","wheel":"Pyörä","hexCode":"Heksadesimaalikoodi","colorRed":"Punainen","colorGreen":"Vihreä","colorBlue":"Sininen","colorHue":"Sävy","colorSaturation":"Kylläisyys","colorBrightness":"Kirkkaus","colorCyan":"Syaani","colorMagenta":"Magenta","colorYellow":"Keltainen","colorBlack":"Musta","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"Sulje","editSchematic":"Muokkaa pakettia","searchSchematic":"Hae","nameLabelSchematic":"Nimi","captionLabelSchematic":"Kuvateksti","keyLabelSchematic":"Avain","addSchematic":"Siirrä tiedosto","schematicsInvalidSvg":"SVG on virheellinen tai sitä ei tueta","schematicsInvalidSvgData":"Tiedostotietojen nouto ei onnistunut","schematicsInvalidType":"Tiedoston laji ei ole tuettu: %{type}","schematicsInvalidSize":"Tiedoston %{file} koko %{size} ylittää enimmäiskoon.","schematicsContextMenuReplace":"Korvaa","schematicsContextMenuDelete":"Poista","schematicsEmptySearchResults":"Hakutulos on tyhjä","schematicsNoSelection":"Kohteita ei ole valittu","schematicsMultipleSelection":"%{count} kohdetta on valittu","schematicsSingleDeletionSuccessed":"Skematiikka on poistettu.","schematicsMultipleDeletionSuccessed":"%{count} skematiikkaa on poistettu.","schematicsSingleAddSuccessed":"Skematiikka on lisätty.","schematicsMultipleAddSuccessed":"%{count} skematiikkaa on lisätty.","schematicsAddFailed":"Skematiikan lisäys epäonnistui.","schematicsReplaceDlgTitle":"Vahvista aiemmin luodun tiedoston korvaus","schematicsReplaceDlgContent":"Järjestelmässä on jo tiedosto %{sourceName}. Haluatko korvata sen uudella tiedostolla?","schematicsReplaceDlgApplyToAllFiles":"Käytä kaikissa tiedostoissa","schematicsPackageTab":"Paketti","schematicsContentTab":"Sisältö","schematicsDescriptionLabel":"Kuvaus","schematicsIconLabel":"Kuvake","schematicsChooseFile":"Valitse tiedosto","schematicsDeleteIcon":"Poista kuvake","schematicsIconAdded":"Kuvake %{file} on lisätty.","schematicsIconRemove":"Kuvake on poistettu.","schematicsIconDropFiles":"Pudota tiedostot tähän","schematicsIconOr":"tai","schematicsIconFileTypes":"Vain .jpg-, .png- ja .svg-tiedostoja.","schematicsIconFileSize":"Tiedoston enimmäiskoko %{size} Mt."},"__fr":{"errorCreatingPalette":"Une erreur est survenue lors de la sauvegarde de la palette.","paletteErrorTitle":"Erreur liée à la palette","changePaletteLabel":"Modifier la palette de couleurs","myPaletteLabel":"Personnalisé","systemPaletteLabel":"Système","publicPaletteLabel":"Global","localPaletteLabel":"Local","mruPaletteLabel":"Utilisée récemment","okDialog":"OK","deleteDialogTitle":"Supprimer","applyDialog":"Appliquer","cancelDialog":"Annuler","saveDialog":"Enregistrer","deleteMessage":"Voulez-vous vraiment supprimer la palette \"%{name}\" ?","deleteToast":"\"%{name}\" a été supprimée","favoritesLabel":"Favoris","setAsFavorite":"Définir en tant que favori","createdToastMessage":"\"%{name}\" a été créé(e) avec succès.","createPalette":"Créer une palette personnalisée","colorPicker":"Sélecteur de couleur","errorNoName":"Entrez un nom pour votre palette","errorInsufficientColors":"Choisissez au moins deux couleurs","paletteAppliedToastMessage":"La palette \"%{name}\" a été appliquée au rapport.","createContinuousPalette":"Créer une palette de couleurs continue","createStandardPalette":"Créer une palette de couleurs catégorielle","paletteNamePlaceholder":"Entrez le nom de la palette ici","paletteName":"Nom de la palette","standardPalette":"Palette catégorielle","continuousPalette":"Palette continue","removeSwatch":"Supprimer l'échantillon témoin","addSwatch":"Ajouter un échantillon témoin","reversePalette":"Annuler la palette","colorGuide":"Guide de couleur","modeAutomatic":"Automatique","modeCustom":"Personnalisé","colorModel":"Modèle de couleur","modelRGB":"RVB","modelHSB":"TSI","modelCMYK":"CMJK","grid":"Grille","wheel":"Roue","hexCode":"Code hexadécimal","colorRed":"Rouge","colorGreen":"Vert","colorBlue":"Bleu","colorHue":"Teinte","colorSaturation":"Saturation","colorBrightness":"Intensité","colorCyan":"Cyan","colorMagenta":"Magenta","colorYellow":"Jaune","colorBlack":"Noir","codeRed":"R","codeGreen":"G","codeBlue":"o","codeHue":"H","codeSaturation":"D","codeBrightness":"o","codeCyan":"C","codeMagenta":"Mn","codeYellow":"Y","codeBlack":"K","close":"Fermer","editSchematic":"Editer le pack","searchSchematic":"Rechercher","nameLabelSchematic":"Nom","captionLabelSchematic":"Légende","keyLabelSchematic":"Clé","addSchematic":"Transférer le fichier","schematicsInvalidSvg":"Fichier SVG non valide ou non pris en charge","schematicsInvalidSvgData":"Impossible d'obtenir les données du fichier","schematicsInvalidType":"Type de fichier non pris en charge : %{type}","schematicsInvalidSize":"La taille %{size} du fichier %{file} dépasse la limite admise.","schematicsContextMenuReplace":"Remplacer","schematicsContextMenuDelete":"Supprimer","schematicsEmptySearchResults":"Les résultats de la recherche sont vides","schematicsNoSelection":"Aucun élément sélectionné","schematicsMultipleSelection":"%{count} éléments sélectionnés","schematicsSingleDeletionSuccessed":"Votre schéma a été supprimé.","schematicsMultipleDeletionSuccessed":"%{count} schémas ont été supprimés.","schematicsSingleAddSuccessed":"Votre schéma a été ajouté.","schematicsMultipleAddSuccessed":"%{count} schémas ont été ajoutés.","schematicsAddFailed":"Echec de l'ajout de votre schéma.","schematicsReplaceDlgTitle":"Confirmer le remplacement du fichier existant","schematicsReplaceDlgContent":"Le fichier '%{sourceName}' existe déjà. Voulez-vous le remplacer par le nouveau fichier ?","schematicsReplaceDlgApplyToAllFiles":"Appliquer à tous les fichiers","schematicsPackageTab":"Pack","schematicsContentTab":"Contenu","schematicsDescriptionLabel":"Description","schematicsIconLabel":"Icône","schematicsChooseFile":"Choisir un fichier","schematicsDeleteIcon":"Retirer l'icône","schematicsIconAdded":"L'icône \"%{file}\" a été ajoutée.","schematicsIconRemove":"L'icône a été retirée.","schematicsIconDropFiles":"Déposer les fichiers ici","schematicsIconOr":"ou","schematicsIconFileTypes":"Uniquement les fichiers .jpg, .png et .svg.","schematicsIconFileSize":"Taille maximale du fichier : %{size} Mo."},"__hr":{"errorCreatingPalette":"Pojavila se greška tijekom spremanja ove palete.","paletteErrorTitle":"Greška palete","changePaletteLabel":"Promijeni paletu boja","myPaletteLabel":"Prilagođeno","systemPaletteLabel":"Sistem","publicPaletteLabel":"Globalno","localPaletteLabel":"Lokalno","mruPaletteLabel":"Nedavno korišteno","okDialog":"OK","deleteDialogTitle":"Izbriši","applyDialog":"Primijeni","cancelDialog":"Opoziv","saveDialog":"Spremi","deleteMessage":"Jeste li sigurni da želite izbrisati paletu \"%{name}\"?","deleteToast":"\"%{name}\" je izbrisana","favoritesLabel":"Favoriti","setAsFavorite":"Postavi za favorit","createdToastMessage":"\"%{name}\" je uspješno kreirana.","createPalette":"Kreiraj prilagođenu paletu","colorPicker":"Izbornik boja","errorNoName":"Unesite naziv vaše palete","errorInsufficientColors":"Izaberi barem dvije boje","paletteAppliedToastMessage":"Paleta \"%{name}\" je primijenjena na izvještaj.","createContinuousPalette":"Kreiraj neprekidnu paletu boja","createStandardPalette":"Kreiraj kategorijsku paletu boja","paletteNamePlaceholder":"Ovdje upišite naziv palete","paletteName":"Naziv palete","standardPalette":"Kategorijska paleta","continuousPalette":"Kontinuirana paleta","removeSwatch":"Ukloni uzorak","addSwatch":"Dodaj uzorak","reversePalette":"Obrni paletu","colorGuide":"Vodič za boje","modeAutomatic":"Automatski","modeCustom":"Prilagođeno","colorModel":"Model boje","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Mreža","wheel":"Kotač","hexCode":"Heksadecimalan kod","colorRed":"Crvena","colorGreen":"Zelena","colorBlue":"Plava","colorHue":"Nijansa","colorSaturation":"Zasićenost","colorBrightness":"Svjetlost","colorCyan":"Cijan","colorMagenta":"Grimizna","colorYellow":"Žuta","colorBlack":"Crna","codeRed":"Z","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"Zatvori","editSchematic":"Uredi paket","searchSchematic":"Traži","nameLabelSchematic":"Naziv","captionLabelSchematic":"Zaglavlje","keyLabelSchematic":"Ključ","addSchematic":"Upload datoteka","schematicsInvalidSvg":"Pogrešan ili nepodržani SVG","schematicsInvalidSvgData":"Nisu se mogli dobiti podaci datoteke","schematicsInvalidType":"Nepodržani tip datoteke: %{type}","schematicsInvalidSize":"Datoteka %{file}, veličina %{size} premašuje ograničenje.","schematicsContextMenuReplace":"Zamijeni","schematicsContextMenuDelete":"Izbriši","schematicsEmptySearchResults":"Rezultati pretraživanja su prazni","schematicsNoSelection":"Nema izabranih stavki","schematicsMultipleSelection":"%{count} stavki je izabrano","schematicsSingleDeletionSuccessed":"Vaša shema je uspješno izbrisana.","schematicsMultipleDeletionSuccessed":"%{count} shema je uspješno izbrisano.","schematicsSingleAddSuccessed":"Vaša shema je uspješno dodana.","schematicsMultipleAddSuccessed":"%{count} shema je uspješno dodano.","schematicsAddFailed":"Neuspješno dodavanje sheme.","schematicsReplaceDlgTitle":"Potvrdite zamjenu postojeće datoteke","schematicsReplaceDlgContent":"Datoteka '%{sourceName}' već postoji. Želite li ju zamijeniti s novom datotekom?","schematicsReplaceDlgApplyToAllFiles":"Primijeni na sve datoteke","schematicsPackageTab":"Paket","schematicsContentTab":"Sadržaj","schematicsDescriptionLabel":"Opis","schematicsIconLabel":"Ikona","schematicsChooseFile":"Izaberi datoteku","schematicsDeleteIcon":"Ukloni ikonu","schematicsIconAdded":"Ikona \"%{file}\" je uspješno dodana.","schematicsIconRemove":"Ikona je uspješno uklonjena.","schematicsIconDropFiles":"Ovdje ispusti datoteke","schematicsIconOr":"ili","schematicsIconFileTypes":"Samo .jpg, .png i .svg datoteke","schematicsIconFileSize":"%{size}MB je maksimalna veličina datoteke."},"__hu":{"errorCreatingPalette":"Hiba történt a paletta mentése közben.","paletteErrorTitle":"Paletta hiba","changePaletteLabel":"Színpaletta módosítása","myPaletteLabel":"Egyéni","systemPaletteLabel":"Rendszer","publicPaletteLabel":"Globális","localPaletteLabel":"Helyi","mruPaletteLabel":"Nemrégiben használt","okDialog":"OK","deleteDialogTitle":"Törlés","applyDialog":"Alkalmaz","cancelDialog":"Mégse","saveDialog":"Mentés","deleteMessage":"Valóban törölni kívánja a(z) \"%{name}\" palettát?","deleteToast":"A(z) \"%{name}\" törlésre került","favoritesLabel":"Kedvencek","setAsFavorite":"Beállítás kedvencként","createdToastMessage":"A(z) \"%{name}\" sikeresen létrehozásra került","createPalette":"Egyéni paletta létrehozása","colorPicker":"Színválasztó","errorNoName":"Adja meg a paletta nevét","errorInsufficientColors":"Válasszon legalább két színt","paletteAppliedToastMessage":"A(z) \"%{name}\" paletta került alkalmazásra a jelentéshez.","createContinuousPalette":"Folytonos színpaletta létrehozása","createStandardPalette":"Kategorikus színpaletta létrehozása","paletteNamePlaceholder":"Itt adja meg a paletta nevét","paletteName":"Paletta neve","standardPalette":"Kategorikus paletta","continuousPalette":"Folytonos paletta","removeSwatch":"Minta eltávolítása","addSwatch":"Minta hozzáadása","reversePalette":"Fordított paletta","colorGuide":"Szín útmutató","modeAutomatic":"Automatikus","modeCustom":"Egyéni","colorModel":"Színmodell","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Rács","wheel":"Kerék","hexCode":"Hexa kód","colorRed":"Piros","colorGreen":"Zöld","colorBlue":"Kék","colorHue":"Árnyalat","colorSaturation":"Telítettség","colorBrightness":"Fényerő","colorCyan":"Cián","colorMagenta":"Bíbor","colorYellow":"Sárga","colorBlack":"Fekete","codeRed":"K","codeGreen":"m","codeBlue":"F","codeHue":"H","codeSaturation":"S","codeBrightness":"F","codeCyan":"K","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"Bezárás","editSchematic":"Csomagok szerkesztése","searchSchematic":"Keresés","nameLabelSchematic":"Név","captionLabelSchematic":"Felirat","keyLabelSchematic":"Kulcs","addSchematic":"Fájl feltöltése","schematicsInvalidSvg":"Érvénytelen vagy nem támogatott SVG","schematicsInvalidSvgData":"A fájl adatait nem lehet lekérdezni","schematicsInvalidType":"Nem támogatott fájltípus: %{type}","schematicsInvalidSize":"A(z) %{file} fájl %{size} mérete meghaladja a korlátot.","schematicsContextMenuReplace":"Csere","schematicsContextMenuDelete":"Törlés","schematicsEmptySearchResults":"A keresési eredmény üres","schematicsNoSelection":"Nincs kijelölt elem","schematicsMultipleSelection":"%{count} elem kijelölve","schematicsSingleDeletionSuccessed":"Tervrajza sikeresen törlésre került.","schematicsMultipleDeletionSuccessed":"%{count} tervrajz sikeresen törlésre került.","schematicsSingleAddSuccessed":"Tervrajza sikeresen hozzáadásra került.","schematicsMultipleAddSuccessed":"%{count} tervrajz sikeresen hozzáadásra került.","schematicsAddFailed":"A tervrajz hozzáadása nem sikerült.","schematicsReplaceDlgTitle":"A meglévő fájl cseréjének jóváhagyása","schematicsReplaceDlgContent":"A(z) '%{sourceName}' fájl már létezik. Kívánja felülírni az új fájllal?","schematicsReplaceDlgApplyToAllFiles":"Minden fájlra vonatkozik","schematicsPackageTab":"Csomag","schematicsContentTab":"Tartalom","schematicsDescriptionLabel":"Leírás","schematicsIconLabel":"Ikon","schematicsChooseFile":"Válasszon egy fájlt","schematicsDeleteIcon":"Az ikon eltávolítása","schematicsIconAdded":"A(z) \"%{file}\" ikon sikeresen hozzáadásra került.","schematicsIconRemove":"Az ikon sikeresen eltávolításra került.","schematicsIconDropFiles":"Vontassa ide a fájlokat","schematicsIconOr":"vagy","schematicsIconFileTypes":"Csak .jpg, .png és .svg fájlok.","schematicsIconFileSize":"%{size}MB maximális fájlméret."},"__it":{"errorCreatingPalette":"Si è verificato un errore durante il salvataggio della tavolozza.","paletteErrorTitle":"Errore della tavolozza","changePaletteLabel":"Modifica tavolozza colori","myPaletteLabel":"Personalizzato","systemPaletteLabel":"Sistema","publicPaletteLabel":"Globale","localPaletteLabel":"Locale","mruPaletteLabel":"Utilizzato di recente","okDialog":"OK","deleteDialogTitle":"Elimina","applyDialog":"Applica","cancelDialog":"Annulla","saveDialog":"Salva","deleteMessage":"Si è sicuri di voler eliminare la tavolozza \"%{name}\"?","deleteToast":"\"%{name}\" è stato eliminato","favoritesLabel":"Preferiti","setAsFavorite":"Imposta come Preferiti","createdToastMessage":"\"%{name}\" creato correttamente.","createPalette":"Creazione di una tavolozza personalizzata","colorPicker":"Selettore colori","errorNoName":"Immettere un nome per la tavolozza","errorInsufficientColors":"Scegli almeno due colori","paletteAppliedToastMessage":"La tavolozza \"%{name}\", è stata applicata al report.","createContinuousPalette":"Crea una tavolozza di colori continua","createStandardPalette":"Crea una tavolozza di colori categoriale","paletteNamePlaceholder":"Immetti qui il nome tavolozza","paletteName":"Nome tavolozza","standardPalette":"Tavolozza categoriale","continuousPalette":"Tavolozza continua","removeSwatch":"Rimuovi campionario","addSwatch":"Aggiungi campionario","reversePalette":"Inverti tavolozza","colorGuide":"Guida a colori","modeAutomatic":"Automatico","modeCustom":"Personalizzato","colorModel":"Modello di colore","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Griglia","wheel":"Cerchio","hexCode":"Codice esadecimale","colorRed":"Rosso","colorGreen":"Verde","colorBlue":"Blu","colorHue":"Tonalità","colorSaturation":"Saturazione","colorBrightness":"Brillantezza","colorCyan":"Ciano","colorMagenta":"Magenta","colorYellow":"Giallo","colorBlack":"Nero","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"Chiudi","editSchematic":"Modifica package","searchSchematic":"Ricerca","nameLabelSchematic":"Nome","captionLabelSchematic":"Didascalia","keyLabelSchematic":"Chiave","addSchematic":"Carica file","schematicsInvalidSvg":"SVG non valido o non supportato","schematicsInvalidSvgData":"Impossibile ottenere i dati del file","schematicsInvalidType":"Tipo file non supportato: %{type}","schematicsInvalidSize":"File %{file}, dimensione %{size} supera il limite.","schematicsContextMenuReplace":"Sostituisci","schematicsContextMenuDelete":"Elimina","schematicsEmptySearchResults":"I risultati della ricerca sono vuoti.","schematicsNoSelection":"Nessun elemento selezionato","schematicsMultipleSelection":"%{count} elementi selezionato","schematicsSingleDeletionSuccessed":"La schematica è stata correttamente eliminata.","schematicsMultipleDeletionSuccessed":"%{count} schematiche sono state correttamente eliminate.","schematicsSingleAddSuccessed":"Le schematiche sono state correttamente aggiunte.","schematicsMultipleAddSuccessed":"%{count} schematiche sono state correttamente aggiunte.","schematicsAddFailed":"Aggiunta schematica non riuscita.","schematicsReplaceDlgTitle":"Conferma sostituzione del file esistente","schematicsReplaceDlgContent":"Il file '%{sourceName}' esiste già. Si desidera sostituirlo con il nuovo file?","schematicsReplaceDlgApplyToAllFiles":"Applica a tutti i file","schematicsPackageTab":"Package","schematicsContentTab":"Contenuto","schematicsDescriptionLabel":"Descrizione","schematicsIconLabel":"Icona","schematicsChooseFile":"Scegli un file","schematicsDeleteIcon":"Rimuovi l'icona","schematicsIconAdded":"L'icona \"%{file}\" è stata correttamente aggiunta.","schematicsIconRemove":"L'icona è stata correttamente rimossa.","schematicsIconDropFiles":"Rilascia i file qui ","schematicsIconOr":"o ","schematicsIconFileTypes":"Solo file .jpg, .png e .svg ","schematicsIconFileSize":"Dimensione file massima %{size} MB "},"__ja":{"errorCreatingPalette":"パレットの保存中にエラーが発生しました。","paletteErrorTitle":"パレット・エラー","changePaletteLabel":"カラー・パレットの変更","myPaletteLabel":"カスタム","systemPaletteLabel":"システム","publicPaletteLabel":"グローバル","localPaletteLabel":"ローカル","mruPaletteLabel":"最近使用された","okDialog":"OK","deleteDialogTitle":"削除","applyDialog":"適用","cancelDialog":"キャンセル","saveDialog":"保存","deleteMessage":"パレット \"%{name}\" を削除しますか?","deleteToast":"\"%{name}\" が削除されました","favoritesLabel":"お気に入り","setAsFavorite":"お気に入りとして設定","createdToastMessage":"\"%{name}\" が正常に作成されました。","createPalette":"カスタム・パレットの作成","colorPicker":"カラー・ピッカー","errorNoName":"パレットの名前を入力してください","errorInsufficientColors":"少なくとも 2 つの色を選択してください","paletteAppliedToastMessage":"パレット \"%{name}\" がレポートに適用されました。","createContinuousPalette":"連続型カラー・パレットの作成","createStandardPalette":"カテゴリー型カラー・パレットの作成","paletteNamePlaceholder":"ここにパレット名を入力","paletteName":"パレット名","standardPalette":"カテゴリー型パレット","continuousPalette":"連続型パレット","removeSwatch":"スウォッチを削除","addSwatch":"スウォッチを追加","reversePalette":"パレットを反転","colorGuide":"カラー・ガイド","modeAutomatic":"自動","modeCustom":"カスタム","colorModel":"カラー型","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"グリッド","wheel":"ホイール","hexCode":"16 進コード","colorRed":"赤","colorGreen":"緑","colorBlue":"青","colorHue":"色調","colorSaturation":"彩度","colorBrightness":"輝度","colorCyan":"シアン","colorMagenta":"マゼンタ","colorYellow":"黄","colorBlack":"黒","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"閉じる","editSchematic":"パッケージの編集","searchSchematic":"検索","nameLabelSchematic":"名前","captionLabelSchematic":"キャプション","keyLabelSchematic":"キー","addSchematic":"ファイルのアップロード","schematicsInvalidSvg":"正しくない、またはサポートされていない SVG です","schematicsInvalidSvgData":"ファイル・データを取得できませんでした","schematicsInvalidType":"サポートされないファイル・タイプ: %{type}","schematicsInvalidSize":"ファイル %{file}、サイズ %{size} が制限を超えています。","schematicsContextMenuReplace":"置換","schematicsContextMenuDelete":"削除","schematicsEmptySearchResults":"検索結果が空です","schematicsNoSelection":"アイテムが選択されていません","schematicsMultipleSelection":"%{count} 個のアイテムを選択","schematicsSingleDeletionSuccessed":"図式が正常に削除されました。","schematicsMultipleDeletionSuccessed":"%{count} 個の図式が正常に削除されました。","schematicsSingleAddSuccessed":"図式が正常に追加されました。","schematicsMultipleAddSuccessed":"%{count} 個の図式が正常に追加されました。","schematicsAddFailed":"図式を追加できませんでした。","schematicsReplaceDlgTitle":"既存ファイルの置換の確認","schematicsReplaceDlgContent":"ファイル '%{sourceName}' は既に存在しています。 新しいファイルに置き換えますか?","schematicsReplaceDlgApplyToAllFiles":"すべてのファイルに適用","schematicsPackageTab":"パッケージ","schematicsContentTab":"コンテンツ","schematicsDescriptionLabel":"説明","schematicsIconLabel":"アイコン","schematicsChooseFile":"ファイルの選択","schematicsDeleteIcon":"アイコンの削除","schematicsIconAdded":"アイコン \"%{file}\" が正常に追加されました。","schematicsIconRemove":"アイコンが正常に削除されました。","schematicsIconDropFiles":"ここにファイルをドロップ","schematicsIconOr":"または","schematicsIconFileTypes":".jpg、.png、および .svg ファイルのみ。","schematicsIconFileSize":"ファイル・サイズは最大 %{size}MB。"},"__kk":{"errorCreatingPalette":"Бояғышты сақтау кезінде қате пайда болды.","paletteErrorTitle":"Бояғыш қатесі","changePaletteLabel":"Түсті бояғыштарды өзгерту","myPaletteLabel":"Теңшелім","systemPaletteLabel":"Жүйе","publicPaletteLabel":"Глобалдық","localPaletteLabel":"Жергілікті","mruPaletteLabel":"Жақында қолданылған","okDialog":"OK","deleteDialogTitle":"Жою","applyDialog":"Қолдану","cancelDialog":"Болдырмау","saveDialog":"Сақтау","deleteMessage":"\"%{name}\" бояғышын жойғыңыз келетініне сенімдісіз бе?","deleteToast":"\"%{name}\" жойылған","favoritesLabel":"Таңдаулылар","setAsFavorite":"Таңдаулы ретінде орнату","createdToastMessage":"\"%{name}\" сәтті жасалды.","createPalette":"Пайдаланушы бояғышты жасау","colorPicker":"Түс таңдағыш","errorNoName":"Бояғыштың атын енгізіңіз","errorInsufficientColors":"Кемінде екі түсті таңдаңыз","paletteAppliedToastMessage":"Есепке \"%{name}\" бояғышы қолданылды.","createContinuousPalette":"Үздіксіз түс бояғышын жасаңыз","createStandardPalette":"Категориялық түстер бояғышын жасаңыз","paletteNamePlaceholder":"Бояғыштың атауын мына жерде теріңіз","paletteName":"Бояғыш атауы","standardPalette":"Категориялы бояғыш","continuousPalette":"Үздіксіз бояғыш","removeSwatch":"Таңбаны алып тастау","addSwatch":"Таңба қосу","reversePalette":"Кері бояғышы","colorGuide":"Түс бағыттаушы","modeAutomatic":"Автоматты","modeCustom":"Теңшелім","colorModel":"Түс үлгісі","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Жоғарғы","wheel":"Шеңбері","hexCode":"Hex код","colorRed":"Қызыл","colorGreen":"Жасыл","colorBlue":"Көк","colorHue":"Реңк","colorSaturation":"Қанықтық","colorBrightness":"Жарықтық","colorCyan":"Көкшіл","colorMagenta":"Күлгін","colorYellow":"Сары","colorBlack":"Қара","codeRed":"R","codeGreen":"Г","codeBlue":"B","codeHue":"С","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"М","codeYellow":"Y","codeBlack":"K","close":"Жабу","editSchematic":"Буманы өңдеу","searchSchematic":"Іздеу","nameLabelSchematic":"Аты","captionLabelSchematic":"Тақырып","keyLabelSchematic":"Кілт","addSchematic":"Кері қотарылған файл","schematicsInvalidSvg":"Жарамсыз немесе қолдау көрсетілмейтін SVG","schematicsInvalidSvgData":"Файл деректерін алу мүмкін болмады","schematicsInvalidType":"Қолдау көрсетілмейтін файл түрі: %{type}","schematicsInvalidSize":"%{file} файлы, %{size} мөлшері шектен асады.","schematicsContextMenuReplace":"Ауыстыру","schematicsContextMenuDelete":"Жою","schematicsEmptySearchResults":"Іздеу нәтижелері бос","schematicsNoSelection":"Ешбір элемент таңдалмады","schematicsMultipleSelection":"%{count} элемент таңдалды","schematicsSingleDeletionSuccessed":"Сіздің схемаңыз сәтті жойылды.","schematicsMultipleDeletionSuccessed":"%{count} схемасы сәтті жойылды.","schematicsSingleAddSuccessed":"Сіздің схемаңыз сәтті қосылды.","schematicsMultipleAddSuccessed":"%{count} схемасы сәтті қосылды.","schematicsAddFailed":"Схемаңызды қосу сәтсіз аяқталды.","schematicsReplaceDlgTitle":"Бар файлды ауыстыруды растаңыз","schematicsReplaceDlgContent":"'%{sourceName}' файлы бұрыннан бар. Оны жаңа файлмен алмастырғыңыз келе ме?","schematicsReplaceDlgApplyToAllFiles":"Барлық файлдарға қолданыңыз","schematicsPackageTab":"Бума","schematicsContentTab":"Мазмұн","schematicsDescriptionLabel":"Сипаттама","schematicsIconLabel":"Белгіше","schematicsChooseFile":"Файлды таңдаңыз","schematicsDeleteIcon":"Белгішені жоюңыз","schematicsIconAdded":"\"%{file}\" белгішесі сәтті қосылды.","schematicsIconRemove":"Белгіше сәтті алынып тасталды.","schematicsIconDropFiles":"Файлдарды осында тастау","schematicsIconOr":"or","schematicsIconFileTypes":"Тек .jpg, .png және .svg файлдары.","schematicsIconFileSize":"%{size} МБ максималды файл өлшемі."},"__ko":{"errorCreatingPalette":"색상표를 저장하는 중에 오류가 발생했습니다.","paletteErrorTitle":"색상표 오류","changePaletteLabel":"색상표 변경","myPaletteLabel":"사용자 정의","systemPaletteLabel":"시스템","publicPaletteLabel":"글로벌","localPaletteLabel":"로컬","mruPaletteLabel":"최근 사용됨","okDialog":"확인","deleteDialogTitle":"삭제","applyDialog":"적용","cancelDialog":"취소","saveDialog":"저장","deleteMessage":"\"%{name}\" 색상표를 삭제하시겠습니까?","deleteToast":"\"%{name}\"이(가) 삭제됨","favoritesLabel":"즐겨찾기","setAsFavorite":"즐겨찾기로 설정","createdToastMessage":"\"%{name}\"이(가) 작성되었습니다.","createPalette":"사용자 정의 색상표 작성","colorPicker":"색상 선택도구","errorNoName":"색상표 이름 입력","errorInsufficientColors":"둘 이상의 색상 선택","paletteAppliedToastMessage":"\"%{name}\" 색상표가 보고서에 적용되었습니다.","createContinuousPalette":"연속 색상표 작성","createStandardPalette":"카테고리형 색상표 작성","paletteNamePlaceholder":"여기에 색상표 이름 입력","paletteName":"색상표 이름","standardPalette":"카테고리형 색상표","continuousPalette":"연속 색상표","removeSwatch":"견본 제거","addSwatch":"견본 추가","reversePalette":"색상표 반전","colorGuide":"색상 안내서","modeAutomatic":"자동","modeCustom":"사용자 정의","colorModel":"색상 모델","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"눈금","wheel":"휠","hexCode":"16진 코드","colorRed":"빨간색","colorGreen":"녹색","colorBlue":"파란색","colorHue":"색상","colorSaturation":"채도","colorBrightness":"밝기","colorCyan":"청록색","colorMagenta":"진홍색","colorYellow":"노란색","colorBlack":"검은색","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"m","codeYellow":"Y","codeBlack":"K","close":"닫기","editSchematic":"패키지 편집","searchSchematic":"검색","nameLabelSchematic":"이름","captionLabelSchematic":"캡션","keyLabelSchematic":"키","addSchematic":"파일 업로드","schematicsInvalidSvg":"올바르지 않거나 지원되지 않는 SVG","schematicsInvalidSvgData":"파일 데이터를 확보할 수 없음","schematicsInvalidType":"지원되지 않는 파일 유형: %{type}","schematicsInvalidSize":"%{file} 파일, %{size} 크기가 한계를 초과했습니다.","schematicsContextMenuReplace":"대체","schematicsContextMenuDelete":"삭제","schematicsEmptySearchResults":"검색 결과가 비어 있음","schematicsNoSelection":"항목을 선택하지 않음","schematicsMultipleSelection":"%{count}개의 항목이 선택됨","schematicsSingleDeletionSuccessed":"도식이 삭제되었습니다.","schematicsMultipleDeletionSuccessed":"%{count} 도식이 삭제되었습니다.","schematicsSingleAddSuccessed":"도식이 추가되었습니다.","schematicsMultipleAddSuccessed":"%{count} 도식이 추가되었습니다.","schematicsAddFailed":"도식 추가에 실패했습니다.","schematicsReplaceDlgTitle":"기존 파일의 대체 확인","schematicsReplaceDlgContent":"'%{sourceName}' 파일이 이미 있습니다. 새 파일로 이를 대체하시겠습니까?","schematicsReplaceDlgApplyToAllFiles":"모든 파일에 적용","schematicsPackageTab":"패키지","schematicsContentTab":"컨텐츠","schematicsDescriptionLabel":"설명","schematicsIconLabel":"아이콘","schematicsChooseFile":"파일 선택","schematicsDeleteIcon":"아이콘 제거","schematicsIconAdded":"\"%{file}\" 아이콘이 추가되었습니다.","schematicsIconRemove":"아이콘이 제거되었습니다.","schematicsIconDropFiles":"파일 여기에 놓기","schematicsIconOr":"또는","schematicsIconFileTypes":".jpg, .png 및 .svg 파일만.","schematicsIconFileSize":"%{size}MB의 최대 파일 크기."},"__no":{"errorCreatingPalette":"Det oppstod en feil under lagring av paletten.","paletteErrorTitle":"Palettfeil","changePaletteLabel":"Endre fargepalett","myPaletteLabel":"Tilpasset","systemPaletteLabel":"System","publicPaletteLabel":"Globale","localPaletteLabel":"Lokal","mruPaletteLabel":"Nylig brukt","okDialog":"OK","deleteDialogTitle":"Slett","applyDialog":"Bruk","cancelDialog":"Avbryt","saveDialog":"Lagre","deleteMessage":"Er du sikker på at du vil slette paletten \"%{name}\"?","deleteToast":"\"%{name}\" ble slettet","favoritesLabel":"Favoritter","setAsFavorite":"Definer som favoritt","createdToastMessage":"\"%{name}\" ble opprettet.","createPalette":"Opprett en tilpasset palett","colorPicker":"Fargevelger","errorNoName":"Oppgi et navn på paletten.","errorInsufficientColors":"Velg minst to farger","paletteAppliedToastMessage":"Palett \"%{name}\" ble brukt på rapporten.","createContinuousPalette":"Opprett kontinuerlig fargepalett","createStandardPalette":"Opprett kategorisk fargepalett","paletteNamePlaceholder":"Skriv palettnavn her","paletteName":"Palettnavn","standardPalette":"Kategorisk palett","continuousPalette":"Kontinuerlig palett","removeSwatch":"Fjern prøve","addSwatch":"Legg til prøve","reversePalette":"Omvendt palett","colorGuide":"Fargeveiledning","modeAutomatic":"Automatisk","modeCustom":"Tilpasset","colorModel":"Fargemodell","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Rutenett","wheel":"Hjul","hexCode":"Heksadesimal kode","colorRed":"Rød","colorGreen":"Grønn","colorBlue":"Blå","colorHue":"Nyanse","colorSaturation":"Metning","colorBrightness":"Lysstyrke","colorCyan":"Cyan","colorMagenta":"Magenta","colorYellow":"Gul","colorBlack":"Svart","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"Lukk","editSchematic":"Rediger pakke","searchSchematic":"Søk","nameLabelSchematic":"Navn","captionLabelSchematic":"Tittel","keyLabelSchematic":"Nøkkel","addSchematic":"Last opp fil","schematicsInvalidSvg":"Ugyldig eller ikke støttet SVG","schematicsInvalidSvgData":"Kunne ikke hente fildata","schematicsInvalidType":"Ikke-støttet filtype: %{type}","schematicsInvalidSize":"Fil %{file}, størrelse %{size} overskrider grense.","schematicsContextMenuReplace":"Erstatt","schematicsContextMenuDelete":"Slett","schematicsEmptySearchResults":"Søkeresultatet er tomt","schematicsNoSelection":"Ingen elementer valgt","schematicsMultipleSelection":"%{count} elementer valgt","schematicsSingleDeletionSuccessed":"Skjemaet ble slettet.","schematicsMultipleDeletionSuccessed":"%{count} skjemaer ble slettet.","schematicsSingleAddSuccessed":"Skjemaet ble lagt til.","schematicsMultipleAddSuccessed":"%{count} skjemaer ble lagt til.","schematicsAddFailed":"Kunne ikke legge til skjema.","schematicsReplaceDlgTitle":"Bekreft erstatning av eksisterende fil","schematicsReplaceDlgContent":"Filen '%{sourceName}' finnes allerede. Vil du erstatte den med den nye filen?","schematicsReplaceDlgApplyToAllFiles":"Bruk på alle filer","schematicsPackageTab":"Pakke","schematicsContentTab":"Innhold","schematicsDescriptionLabel":"Beskrivelse","schematicsIconLabel":"Ikon","schematicsChooseFile":"Velg en fil","schematicsDeleteIcon":"Fjern ikonet","schematicsIconAdded":"Ikonet \"%{file}\" ble lagt til.","schematicsIconRemove":"Ikonet ble fjernet.","schematicsIconDropFiles":"Slipp filer her","schematicsIconOr":"eller","schematicsIconFileTypes":"Bare filer av typen .jpg, .png og .svg.","schematicsIconFileSize":"%{size} MB maks filstørrelse."},"__nb":{"errorCreatingPalette":"Det oppstod en feil under lagring av paletten.","paletteErrorTitle":"Palettfeil","changePaletteLabel":"Endre fargepalett","myPaletteLabel":"Tilpasset","systemPaletteLabel":"System","publicPaletteLabel":"Globale","localPaletteLabel":"Lokal","mruPaletteLabel":"Nylig brukt","okDialog":"OK","deleteDialogTitle":"Slett","applyDialog":"Bruk","cancelDialog":"Avbryt","saveDialog":"Lagre","deleteMessage":"Er du sikker på at du vil slette paletten \"%{name}\"?","deleteToast":"\"%{name}\" ble slettet","favoritesLabel":"Favoritter","setAsFavorite":"Definer som favoritt","createdToastMessage":"\"%{name}\" ble opprettet.","createPalette":"Opprett en tilpasset palett","colorPicker":"Fargevelger","errorNoName":"Oppgi et navn på paletten.","errorInsufficientColors":"Velg minst to farger","paletteAppliedToastMessage":"Palett \"%{name}\" ble brukt på rapporten.","createContinuousPalette":"Opprett kontinuerlig fargepalett","createStandardPalette":"Opprett kategorisk fargepalett","paletteNamePlaceholder":"Skriv palettnavn her","paletteName":"Palettnavn","standardPalette":"Kategorisk palett","continuousPalette":"Kontinuerlig palett","removeSwatch":"Fjern prøve","addSwatch":"Legg til prøve","reversePalette":"Omvendt palett","colorGuide":"Fargeveiledning","modeAutomatic":"Automatisk","modeCustom":"Tilpasset","colorModel":"Fargemodell","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Rutenett","wheel":"Hjul","hexCode":"Heksadesimal kode","colorRed":"Rød","colorGreen":"Grønn","colorBlue":"Blå","colorHue":"Nyanse","colorSaturation":"Metning","colorBrightness":"Lysstyrke","colorCyan":"Cyan","colorMagenta":"Magenta","colorYellow":"Gul","colorBlack":"Svart","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"Lukk","editSchematic":"Rediger pakke","searchSchematic":"Søk","nameLabelSchematic":"Navn","captionLabelSchematic":"Tittel","keyLabelSchematic":"Nøkkel","addSchematic":"Last opp fil","schematicsInvalidSvg":"Ugyldig eller ikke støttet SVG","schematicsInvalidSvgData":"Kunne ikke hente fildata","schematicsInvalidType":"Ikke-støttet filtype: %{type}","schematicsInvalidSize":"Fil %{file}, størrelse %{size} overskrider grense.","schematicsContextMenuReplace":"Erstatt","schematicsContextMenuDelete":"Slett","schematicsEmptySearchResults":"Søkeresultatet er tomt","schematicsNoSelection":"Ingen elementer valgt","schematicsMultipleSelection":"%{count} elementer valgt","schematicsSingleDeletionSuccessed":"Skjemaet ble slettet.","schematicsMultipleDeletionSuccessed":"%{count} skjemaer ble slettet.","schematicsSingleAddSuccessed":"Skjemaet ble lagt til.","schematicsMultipleAddSuccessed":"%{count} skjemaer ble lagt til.","schematicsAddFailed":"Kunne ikke legge til skjema.","schematicsReplaceDlgTitle":"Bekreft erstatning av eksisterende fil","schematicsReplaceDlgContent":"Filen '%{sourceName}' finnes allerede. Vil du erstatte den med den nye filen?","schematicsReplaceDlgApplyToAllFiles":"Bruk på alle filer","schematicsPackageTab":"Pakke","schematicsContentTab":"Innhold","schematicsDescriptionLabel":"Beskrivelse","schematicsIconLabel":"Ikon","schematicsChooseFile":"Velg en fil","schematicsDeleteIcon":"Fjern ikonet","schematicsIconAdded":"Ikonet \"%{file}\" ble lagt til.","schematicsIconRemove":"Ikonet ble fjernet.","schematicsIconDropFiles":"Slipp filer her","schematicsIconOr":"eller","schematicsIconFileTypes":"Bare filer av typen .jpg, .png og .svg.","schematicsIconFileSize":"%{size} MB maks filstørrelse."},"__nl":{"errorCreatingPalette":"Fout opgetreden bij het opslaan van het palet.","paletteErrorTitle":"Paletfout","changePaletteLabel":"Kleurenpalet wijzigen","myPaletteLabel":"Aangepast","systemPaletteLabel":"Systeem","publicPaletteLabel":"Algemeen","localPaletteLabel":"Lokaal","mruPaletteLabel":"Kortgeleden gebruikt","okDialog":"OK","deleteDialogTitle":"Verwijderen","applyDialog":"Toepassen","cancelDialog":"Annuleren","saveDialog":"Save","deleteMessage":"Weet u zeker dat u het palet \"%{name}\" wilt wissen?","deleteToast":"\"%{name}\" is gewist","favoritesLabel":"Favorieten","setAsFavorite":"Instellen als favoriet","createdToastMessage":"\"%{name}\" is gemaakt.","createPalette":"Aangepast palet maken","colorPicker":"Kleurenselector","errorNoName":"Geef een naam voor uw palet op","errorInsufficientColors":"Kies minimaal twee kleuren","paletteAppliedToastMessage":"Palet \"%{name}\" is toegepast op het rapport.","createContinuousPalette":"Doorlopen kleurenpalet maken","createStandardPalette":"Categorisch kleurenpalet maken","paletteNamePlaceholder":"Typ hier de naam van het palet","paletteName":"Naam van palet","standardPalette":"Categorisch palet","continuousPalette":"Doorlopend palet","removeSwatch":"Staal verwijderen","addSwatch":"Staal toevoegen","reversePalette":"Palet negatief maken","colorGuide":"Kleurengids","modeAutomatic":"Automatisch","modeCustom":"Aangepast","colorModel":"Kleurmodel","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Raster","wheel":"Cirkel","hexCode":"Hexcode","colorRed":"Rood","colorGreen":"Groen","colorBlue":"Blauw","colorHue":"Tint","colorSaturation":"Verzadiging","colorBrightness":"Helderheid","colorCyan":"Cyaan","colorMagenta":"Magenta","colorYellow":"Geel","colorBlack":"Zwart","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"T","codeSaturation":"V","codeBrightness":"H","codeCyan":"C","codeMagenta":"M","codeYellow":"J","codeBlack":"Z","close":"Sluiten","editSchematic":"Pakket bewerken","searchSchematic":"Zoeken","nameLabelSchematic":"Name","captionLabelSchematic":"Bijschrift","keyLabelSchematic":"Sleutel","addSchematic":"Bestand uploaden","schematicsInvalidSvg":"Ongeldige of niet-ondersteunde SVG","schematicsInvalidSvgData":"Bestandsgegevens kunnen niet worden opgehaald","schematicsInvalidType":"Niet-ondersteund bestandstype: %{type}","schematicsInvalidSize":"Bestand %{file}, grootte %{size} overschrijdt de limiet.","schematicsContextMenuReplace":"Vervangen","schematicsContextMenuDelete":"Verwijderen","schematicsEmptySearchResults":"Het zoekresultaat is leeg","schematicsNoSelection":"Geen items geselecteerd","schematicsMultipleSelection":"%{count} items geselecteerd","schematicsSingleDeletionSuccessed":"Uw schema is gewist.","schematicsMultipleDeletionSuccessed":"%{count} schema's gewist.","schematicsSingleAddSuccessed":"Uw schema is toegevoegd.","schematicsMultipleAddSuccessed":"%{count} schema's zijn toegevoegd.","schematicsAddFailed":"Toevoegen van uw schema is mislukt.","schematicsReplaceDlgTitle":"Vervanging van bestaand bestand bevestigen","schematicsReplaceDlgContent":"Het bestand '%{sourceName}' bestaat al. Wilt u het vervangen door het nieuwe bestand?","schematicsReplaceDlgApplyToAllFiles":"Toepassen op alle bestanden","schematicsPackageTab":"Pakket","schematicsContentTab":"Inhoud","schematicsDescriptionLabel":"Naam","schematicsIconLabel":"Pictogram","schematicsChooseFile":"Bestand kiezen","schematicsDeleteIcon":"Het pictogram verwijderen","schematicsIconAdded":"Het pictogram \"%{file}\" is toegevoegd.","schematicsIconRemove":"Het pictogram is verwijderd.","schematicsIconDropFiles":"Zet bestanden hier neer","schematicsIconOr":"of","schematicsIconFileTypes":"Alleen .jpg, .png en .svg-bestanden.","schematicsIconFileSize":"%{size} MB max bestandsgrootte."},"__pl":{"errorCreatingPalette":"Wystąpił błąd podczas zapisywania palety.","paletteErrorTitle":"Błąd palety","changePaletteLabel":"Zmień paletę kolorów","myPaletteLabel":"Niestandardowa","systemPaletteLabel":"System","publicPaletteLabel":"Globalne","localPaletteLabel":"Lokalne","mruPaletteLabel":"Ostatnio używane","okDialog":"OK","deleteDialogTitle":"Usuń","applyDialog":"Zastosuj","cancelDialog":"Anuluj","saveDialog":"Zapisz","deleteMessage":"Czy na pewno chcesz usunąć paletę \"%{name}\"?","deleteToast":"Usunięto \"%{name}\"","favoritesLabel":"Ulubione","setAsFavorite":"Ustaw jako ulubione","createdToastMessage":"Pomyślnie utworzono \"%{name}\".","createPalette":"Utwórz paletę niestandardową","colorPicker":"Selektor kolorów","errorNoName":"Wprowadź nazwę palety","errorInsufficientColors":"Wybierz co najmniej dwa kolory","paletteAppliedToastMessage":"Paleta o nazwie \"%{name}\" została zastosowana w raporcie.","createContinuousPalette":"Utwórz ciągłą paletę kolorów","createStandardPalette":"Utwórz kategorialną paletę kolorów","paletteNamePlaceholder":"Tutaj wpisz nazwę palety","paletteName":"Nazwa palety","standardPalette":"Paleta kategorialna","continuousPalette":"Paleta ciągła","removeSwatch":"Usuń próbkę","addSwatch":"Dodaj próbkę","reversePalette":"Odwróć paletę","colorGuide":"Przewodnik po kolorach","modeAutomatic":"Automatycznie","modeCustom":"Niestandardowa","colorModel":"Model kolorów","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Siatka","wheel":"Koło","hexCode":"Kod szesnastkowy","colorRed":"Czerwony","colorGreen":"Zielony","colorBlue":"Niebieski","colorHue":"Barwa","colorSaturation":"Nasycenie","colorBrightness":"Jasność","colorCyan":"Niebieskozielony","colorMagenta":"Amarantowy","colorYellow":"Żółty","colorBlack":"Czarny","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"Zamknij","editSchematic":"Edytuj pakiet","searchSchematic":"Szukaj","nameLabelSchematic":"Nazwa","captionLabelSchematic":"Podpis","keyLabelSchematic":"Klucz","addSchematic":"Wyślij plik","schematicsInvalidSvg":"Niepoprawny lub nieobsługiwany plik SVG","schematicsInvalidSvgData":"Nie można uzyskać danych pliku","schematicsInvalidType":"Nieobsługiwany typ pliku: %{type}","schematicsInvalidSize":"Rozmiar %{size} pliku %{file} przekracza limit.","schematicsContextMenuReplace":"Zastąp","schematicsContextMenuDelete":"Usuń","schematicsEmptySearchResults":"Wyniki wyszukiwania są puste","schematicsNoSelection":"Nie wybrano żadnego elementu","schematicsMultipleSelection":"Wybrano elementów: %{count}","schematicsSingleDeletionSuccessed":"Schemat został pomyślnie usunięty.","schematicsMultipleDeletionSuccessed":"Pomyślnie usunięto następującą liczbę schematów: %{count}","schematicsSingleAddSuccessed":"Schemat został pomyślnie dodany.","schematicsMultipleAddSuccessed":"Pomyślnie dodano następującą liczbę schematów: %{count}","schematicsAddFailed":"Nie powiodło się dodanie schematu.","schematicsReplaceDlgTitle":"Potwierdź zastąpienie istniejącego pliku","schematicsReplaceDlgContent":"Plik '%{sourceName}' już istnieje. Czy zastąpić go nowym plikiem?","schematicsReplaceDlgApplyToAllFiles":"Zastosuj do wszystkich plików","schematicsPackageTab":"Pakiet","schematicsContentTab":"Treść","schematicsDescriptionLabel":"Opis","schematicsIconLabel":"Ikona","schematicsChooseFile":"Wybierz plik","schematicsDeleteIcon":"Usuń ikonę","schematicsIconAdded":"Ikona \"%{file}\" została pomyślnie dodana.","schematicsIconRemove":"Ikona została pomyślnie usunięta.","schematicsIconDropFiles":"Upuść pliki tutaj","schematicsIconOr":"lub","schematicsIconFileTypes":"Tylko pliki .jpg, .png i .svg.","schematicsIconFileSize":"Maks. wielkość pliku: %{size}MB."},"__pt":{"errorCreatingPalette":"Ocorreu um erro ao salvar a paleta.","paletteErrorTitle":"Erro da Paleta","changePaletteLabel":"Alterar paleta de cores","myPaletteLabel":"Personalização","systemPaletteLabel":"Sistema","publicPaletteLabel":"Global","localPaletteLabel":"Local","mruPaletteLabel":"Recentemente usado","okDialog":"OK","deleteDialogTitle":"Excluir","applyDialog":"Aplicar","cancelDialog":"Cancelar","saveDialog":"Salvar","deleteMessage":"Tem certeza de que deseja excluir a paleta \"%{name}\"?","deleteToast":"\"%{name}\" foi excluído","favoritesLabel":"Destaques","setAsFavorite":"Configurar como favorito","createdToastMessage":"\"%{name}\" foi criado com êxito.","createPalette":"Criar uma Paleta Customizada","colorPicker":"Selecionador de Cores","errorNoName":"Digite um nome para a paleta","errorInsufficientColors":"Escolha pelo menos duas cores","paletteAppliedToastMessage":"A paleta \"%{name}\" foi aplicada no relatório.","createContinuousPalette":"Criar paleta de cores contínuas","createStandardPalette":"Criar paleta de cores categóricas","paletteNamePlaceholder":"Digite o nome da paleta aqui","paletteName":"Nome da paleta","standardPalette":"Paleta categórica","continuousPalette":"Paleta Contínua","removeSwatch":"Remover swatch","addSwatch":"Incluir swatch","reversePalette":"Reverter Paleta","colorGuide":"Guia de Cores","modeAutomatic":"Automática","modeCustom":"Personalização","colorModel":"Modelo de Cor","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Grade","wheel":"Roda","hexCode":"Código Hex","colorRed":"Vermelho","colorGreen":"Verde","colorBlue":"Azul","colorHue":"Hue","colorSaturation":"Saturação","colorBrightness":"Brilho","colorCyan":"Ciano","colorMagenta":"Magenta","colorYellow":"Amarelo","colorBlack":"Preto","codeRed":"L","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"E","codeBlack":"K","close":"Fechar","editSchematic":"Editar pacote","searchSchematic":"Procurar","nameLabelSchematic":"Nome","captionLabelSchematic":"Texto Explicativo","keyLabelSchematic":"Chave","addSchematic":"Fazer upload do arquivo","schematicsInvalidSvg":"SVG inválido ou não suportado","schematicsInvalidSvgData":"Não foi possível obter os dados do arquivo","schematicsInvalidType":"Tipo de arquivo não suportado: %{type}","schematicsInvalidSize":"O arquivo %{file}, tamanho %{size}, excede o limite.","schematicsContextMenuReplace":"Substituir","schematicsContextMenuDelete":"Excluir","schematicsEmptySearchResults":"Os resultados da procura estão vazios","schematicsNoSelection":"Nenhum Item Selecionado","schematicsMultipleSelection":"%{count} itens selecionados","schematicsSingleDeletionSuccessed":"Seu esquema foi excluído com sucesso.","schematicsMultipleDeletionSuccessed":"%{count} esquemas foram excluídos com sucesso.","schematicsSingleAddSuccessed":"Seu esquema foi incluído com sucesso.","schematicsMultipleAddSuccessed":"%{count} esquemas foram incluídos com sucesso.","schematicsAddFailed":"Falha ao incluir seu esquema.","schematicsReplaceDlgTitle":"Confirmar substituição do arquivo existente","schematicsReplaceDlgContent":"O arquivo '%{sourceName}' já existe. Deseja substituí-lo pelo novo arquivo?","schematicsReplaceDlgApplyToAllFiles":"Aplicar a todos os arquivos","schematicsPackageTab":"Pacote","schematicsContentTab":"Conteúdo","schematicsDescriptionLabel":"Descrição","schematicsIconLabel":"Ícone","schematicsChooseFile":"Escolher um Arquivo","schematicsDeleteIcon":"Remover o ícone","schematicsIconAdded":"O ícone \"%{file}\" foi incluído com sucesso.","schematicsIconRemove":"O ícone foi removido com sucesso.","schematicsIconDropFiles":"Soltar arquivos aqui","schematicsIconOr":"ou","schematicsIconFileTypes":"Somente arquivos .jpg, .png, and .svg.","schematicsIconFileSize":"Tamanho máximo do arquivo: %{size}MB."},"__pt-br":{"errorCreatingPalette":"Ocorreu um erro ao salvar a paleta.","paletteErrorTitle":"Erro da Paleta","changePaletteLabel":"Alterar paleta de cores","myPaletteLabel":"Personalização","systemPaletteLabel":"Sistema","publicPaletteLabel":"Global","localPaletteLabel":"Local","mruPaletteLabel":"Recentemente usado","okDialog":"OK","deleteDialogTitle":"Excluir","applyDialog":"Aplicar","cancelDialog":"Cancelar","saveDialog":"Salvar","deleteMessage":"Tem certeza de que deseja excluir a paleta \"%{name}\"?","deleteToast":"\"%{name}\" foi excluído","favoritesLabel":"Destaques","setAsFavorite":"Configurar como favorito","createdToastMessage":"\"%{name}\" foi criado com êxito.","createPalette":"Criar uma Paleta Customizada","colorPicker":"Selecionador de Cores","errorNoName":"Digite um nome para a paleta","errorInsufficientColors":"Escolha pelo menos duas cores","paletteAppliedToastMessage":"A paleta \"%{name}\" foi aplicada no relatório.","createContinuousPalette":"Criar paleta de cores contínuas","createStandardPalette":"Criar paleta de cores categóricas","paletteNamePlaceholder":"Digite o nome da paleta aqui","paletteName":"Nome da paleta","standardPalette":"Paleta categórica","continuousPalette":"Paleta Contínua","removeSwatch":"Remover swatch","addSwatch":"Incluir swatch","reversePalette":"Reverter Paleta","colorGuide":"Guia de Cores","modeAutomatic":"Automática","modeCustom":"Personalização","colorModel":"Modelo de Cor","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Grade","wheel":"Roda","hexCode":"Código Hex","colorRed":"Vermelho","colorGreen":"Verde","colorBlue":"Azul","colorHue":"Hue","colorSaturation":"Saturação","colorBrightness":"Brilho","colorCyan":"Ciano","colorMagenta":"Magenta","colorYellow":"Amarelo","colorBlack":"Preto","codeRed":"L","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"E","codeBlack":"K","close":"Fechar","editSchematic":"Editar pacote","searchSchematic":"Procurar","nameLabelSchematic":"Nome","captionLabelSchematic":"Texto Explicativo","keyLabelSchematic":"Chave","addSchematic":"Fazer upload do arquivo","schematicsInvalidSvg":"SVG inválido ou não suportado","schematicsInvalidSvgData":"Não foi possível obter os dados do arquivo","schematicsInvalidType":"Tipo de arquivo não suportado: %{type}","schematicsInvalidSize":"O arquivo %{file}, tamanho %{size}, excede o limite.","schematicsContextMenuReplace":"Substituir","schematicsContextMenuDelete":"Excluir","schematicsEmptySearchResults":"Os resultados da procura estão vazios","schematicsNoSelection":"Nenhum Item Selecionado","schematicsMultipleSelection":"%{count} itens selecionados","schematicsSingleDeletionSuccessed":"Seu esquema foi excluído com sucesso.","schematicsMultipleDeletionSuccessed":"%{count} esquemas foram excluídos com sucesso.","schematicsSingleAddSuccessed":"Seu esquema foi incluído com sucesso.","schematicsMultipleAddSuccessed":"%{count} esquemas foram incluídos com sucesso.","schematicsAddFailed":"Falha ao incluir seu esquema.","schematicsReplaceDlgTitle":"Confirmar substituição do arquivo existente","schematicsReplaceDlgContent":"O arquivo '%{sourceName}' já existe. Deseja substituí-lo pelo novo arquivo?","schematicsReplaceDlgApplyToAllFiles":"Aplicar a todos os arquivos","schematicsPackageTab":"Pacote","schematicsContentTab":"Conteúdo","schematicsDescriptionLabel":"Descrição","schematicsIconLabel":"Ícone","schematicsChooseFile":"Escolher um Arquivo","schematicsDeleteIcon":"Remover o ícone","schematicsIconAdded":"O ícone \"%{file}\" foi incluído com sucesso.","schematicsIconRemove":"O ícone foi removido com sucesso.","schematicsIconDropFiles":"Soltar arquivos aqui","schematicsIconOr":"ou","schematicsIconFileTypes":"Somente arquivos .jpg, .png, and .svg.","schematicsIconFileSize":"Tamanho máximo do arquivo: %{size}MB."},"__ro":{"errorCreatingPalette":"A apărut o eroare la salvarea paletei.","paletteErrorTitle":"Eroare paletă","changePaletteLabel":"Modificare paletă de culori","myPaletteLabel":"Personalizat","systemPaletteLabel":"Sistem","publicPaletteLabel":"Globală","localPaletteLabel":"Locală","mruPaletteLabel":"Utilizată recent","okDialog":"OK","deleteDialogTitle":"Ştergere","applyDialog":"Aplicare","cancelDialog":"Renunţare","saveDialog":"Salvare","deleteMessage":"Sunteţi sigur că vreţi să ştergeţi paleta \"%{name}\"?","deleteToast":"\"%{name}\" a fost ştearsă","favoritesLabel":"Favorite","setAsFavorite":"Setare ca favorit","createdToastMessage":"\"%{name}\" a fost creat cu succes.","createPalette":"Creare paletă personalizată","colorPicker":"Selector de culoare","errorNoName":"Introduceţi un nume paleta dumneavoastră","errorInsufficientColors":"Alegeţi cel puţin două culori","paletteAppliedToastMessage":"Paleta \"%{name}\", a fost aplicată la raport.","createContinuousPalette":"Creare paletă de culoare continuă","createStandardPalette":"Creare paletă de culoare categorială","paletteNamePlaceholder":"Tastaţi numele de paletă aici","paletteName":"Nume paletă","standardPalette":"Paletă categorială","continuousPalette":"Paletă continuă","removeSwatch":"Înlăturare mostră","addSwatch":"Adăugare mostră","reversePalette":"Paletă inversă","colorGuide":"Ghid de culoare","modeAutomatic":"Automat","modeCustom":"Personalizată","colorModel":"Model de culoare","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Grilă","wheel":"Roată","hexCode":"Cod hex","colorRed":"Roşu","colorGreen":"Verde","colorBlue":"Albastru","colorHue":"Nuanţă","colorSaturation":"Saturaţie","colorBrightness":"Luminozitate","colorCyan":"Cyan","colorMagenta":"Magenta","colorYellow":"Galben","colorBlack":"Negru","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"L","codeYellow":"Y","codeBlack":"K","close":"Închidere","editSchematic":"Editare pachet","searchSchematic":"Căutare","nameLabelSchematic":"Nume","captionLabelSchematic":"Subtitlu","keyLabelSchematic":"Cheie","addSchematic":"Încărcare fişier","schematicsInvalidSvg":"SVG invalid sau nesuportat","schematicsInvalidSvgData":"Nu s-au putut obţine datele fişierului","schematicsInvalidType":"Tip de fişier nesuportat: %{type}","schematicsInvalidSize":"Fişierul %{file}, dimensiunea %{size} depăşeşte limita.","schematicsContextMenuReplace":"Înlocuire","schematicsContextMenuDelete":"Ştergere","schematicsEmptySearchResults":"Rezultatele căutării sunt goale","schematicsNoSelection":"Niciun articol selectat","schematicsMultipleSelection":"%{count} articole selectate","schematicsSingleDeletionSuccessed":"Schematicul a fost şters cu succes.","schematicsMultipleDeletionSuccessed":"%{count} schematice au fost şterse cu succes.","schematicsSingleAddSuccessed":"Schematicul a fost adăugat cu succes.","schematicsMultipleAddSuccessed":"%{count} schematice au fost adăugate cu succes.","schematicsAddFailed":"A eşuat adăugarea schematicului.","schematicsReplaceDlgTitle":"Confirmare înlocuire fişier existent","schematicsReplaceDlgContent":"Fişierul '%{sourceName}' există deja. Doriţi să-l înlocuiţi cu noul fişier?","schematicsReplaceDlgApplyToAllFiles":"Aplicare pentru toate fişierele","schematicsPackageTab":"Pachet","schematicsContentTab":"Conţinut","schematicsDescriptionLabel":"Descriere","schematicsIconLabel":"Pictogramă","schematicsChooseFile":"Alegeţi un fişier","schematicsDeleteIcon":"Înlăturaţi pictograma","schematicsIconAdded":"Pictograma \"%{file}\" a fost adăugată cu succes.","schematicsIconRemove":"Pictograma a fost înlăturată cu succes.","schematicsIconDropFiles":"Plasaţi fişiere aici","schematicsIconOr":"sau","schematicsIconFileTypes":"Doar fişiere .jpg, .png, and .svg.","schematicsIconFileSize":"Dim. max. fişier %{size} MB."},"__ru":{"errorCreatingPalette":"При сохранении палитры произошла ошибка.","paletteErrorTitle":"Ошибка палитры","changePaletteLabel":"Изменить цветовую палитру","myPaletteLabel":"Настроить","systemPaletteLabel":"Система","publicPaletteLabel":"Глобальные","localPaletteLabel":"Локальный","mruPaletteLabel":"Недавно использованные","okDialog":"ОК","deleteDialogTitle":"Удалить","applyDialog":"Применить","cancelDialog":"Отмена","saveDialog":"Сохранить","deleteMessage":"Вы уверены, что хотите удалить палитру \"%{name}\"?","deleteToast":"\"%{name}\" удалено","favoritesLabel":"Избранное","setAsFavorite":"Задать как избранное","createdToastMessage":"\"%{name}\" успешно создано.","createPalette":"Создать пользовательскую палитру","colorPicker":"Выбор цвета","errorNoName":"Введите имя для своей палитры","errorInsufficientColors":"Выберите хотя бы два цвета","paletteAppliedToastMessage":"Палитра \"%{name}\" применена к отчету.","createContinuousPalette":"Создать непрерывную цветовую палитру","createStandardPalette":"Создать категориальную цветовую палитру","paletteNamePlaceholder":"Введите здесь имя палитры","paletteName":"Имя палитры","standardPalette":"Категориальная палитра","continuousPalette":"Непрерывная палитра","removeSwatch":"Удалить палитру","addSwatch":"Добавить палитру","reversePalette":"Обратить палитру","colorGuide":"Руководство по цветам","modeAutomatic":"Автоматически","modeCustom":"Настроить","colorModel":"Цветовая модель","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Таблица","wheel":"Часовая стрелка","hexCode":"Шестнадцатеричный код","colorRed":"Красный","colorGreen":"Зеленый","colorBlue":"Синий","colorHue":"Оттенок","colorSaturation":"Насыщенность","colorBrightness":"Яркость","colorCyan":"Cyan","colorMagenta":"Magenta","colorYellow":"Желтый","colorBlack":"Черный","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"Закрыть","editSchematic":"Изменить пакет","searchSchematic":"Поиск","nameLabelSchematic":"Имя","captionLabelSchematic":"Заголовок","keyLabelSchematic":"Ключ","addSchematic":"Выгрузить файл","schematicsInvalidSvg":"Недопустимый или неподдерживаемый SVG","schematicsInvalidSvgData":"Не удалось получить данные файла","schematicsInvalidType":"Неподдерживаемый тип файла: %{type}","schematicsInvalidSize":"Файл %{file}, размер %{size} превышает предел.","schematicsContextMenuReplace":"Заменить","schematicsContextMenuDelete":"Удалить","schematicsEmptySearchResults":"Результаты поиска - пустые","schematicsNoSelection":"Элементы не выбраны","schematicsMultipleSelection":"%{count} элементов выбрано","schematicsSingleDeletionSuccessed":"Ваше схематическое представление успешно удалено.","schematicsMultipleDeletionSuccessed":"%{count} схематических представлений успешно удалены.","schematicsSingleAddSuccessed":"Ваше схематическое представление успешно добавлено.","schematicsMultipleAddSuccessed":"%{count} схематических представлений успешно добавлены.","schematicsAddFailed":"Не удалось добавить ваше схематическое представление.","schematicsReplaceDlgTitle":"Подтвердить замену существующего файла","schematicsReplaceDlgContent":"Файл '%{sourceName}' уже существует. Хотите заменить его новым файлом?","schematicsReplaceDlgApplyToAllFiles":"Применить ко всем файлам","schematicsPackageTab":"Пакет","schematicsContentTab":"Содержимое","schematicsDescriptionLabel":"Описание","schematicsIconLabel":"Значок","schematicsChooseFile":"Выберите файл","schematicsDeleteIcon":"Удалить значок","schematicsIconAdded":"Значок \"%{file}\" успешно добавлен.","schematicsIconRemove":"Значок успешно удален.","schematicsIconDropFiles":"Перетащить сюда файлы","schematicsIconOr":"или","schematicsIconFileTypes":"Только файлы .jpg, .png и .svg.","schematicsIconFileSize":"Максимальный размер файла %{size} МБ."},"__sl":{"errorCreatingPalette":"Med shranjevanjem palete je prišlo do napake.","paletteErrorTitle":"Napaka palete","changePaletteLabel":"Spremeni barvno paleto","myPaletteLabel":"Po meri","systemPaletteLabel":"Sistem","publicPaletteLabel":"Globalno","localPaletteLabel":"Lokalno","mruPaletteLabel":"Nedavno uporabljeno","okDialog":"V redu","deleteDialogTitle":"Izbriši","applyDialog":"Uveljavi","cancelDialog":"Prekliči","saveDialog":"Shrani","deleteMessage":"Ali ste prepričani, da želite izbrisati paleto \"%{name}\"?","deleteToast":"\"%{name}\" je bil izbrisan","favoritesLabel":"Priljubljene","setAsFavorite":"Nastavi kot priljubljeno","createdToastMessage":"\"%{name}\" je bil uspešno ustvarjen.","createPalette":"Ustvari paleto po meri","colorPicker":"Izbirnik barv","errorNoName":"Vnesite ime svoje palete","errorInsufficientColors":"Izberite vsaj dve barvi","paletteAppliedToastMessage":"Paleta \"%{name}\" je bila uveljavljena za poročilo.","createContinuousPalette":"Ustvari neprekinjeno barvno paleto","createStandardPalette":"Ustvari kategorično barvno paleto","paletteNamePlaceholder":"Na to mesto vpišite ime palete","paletteName":"Ime palete","standardPalette":"Kategorična paleta","continuousPalette":"Neprekinjena paleta","removeSwatch":"Odstrani paleto","addSwatch":"Dodaj paleto","reversePalette":"Obrni paleto","colorGuide":"Vodič za barve","modeAutomatic":"Samodejno","modeCustom":"Po meri","colorModel":"Barvni model","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Mreža","wheel":"Kolo","hexCode":"Šestnajstiška koda","colorRed":"Rdeča","colorGreen":"Zelena","colorBlue":"Modra","colorHue":"Odtenek","colorSaturation":"Nasičenost","colorBrightness":"Svetlost","colorCyan":"Cian","colorMagenta":"Magenta","colorYellow":"Rumena","colorBlack":"Črna","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"Zapri","editSchematic":"Urejanje paketa","searchSchematic":"Iskanje","nameLabelSchematic":"Ime","captionLabelSchematic":"Napis","keyLabelSchematic":"Ključ","addSchematic":"Naloži datoteko","schematicsInvalidSvg":"Neveljavna ali nepodprta datoteka SVG","schematicsInvalidSvgData":"Podatkov datoteke ni bilo mogoče pridobiti","schematicsInvalidType":"Nepodprta vrsta datoteke: %{type}","schematicsInvalidSize":"Datoteka %{file}, velikost %{size} presega omejitev.","schematicsContextMenuReplace":"Zamenjaj","schematicsContextMenuDelete":"Izbriši","schematicsEmptySearchResults":"Rezultati iskanja so prazni","schematicsNoSelection":"Noben element ni izbran","schematicsMultipleSelection":"%{count} elementov je izbranih","schematicsSingleDeletionSuccessed":"Vaša shema je bila uspešno izbrisana.","schematicsMultipleDeletionSuccessed":"%{count} shem je bilo uspešno izbrisanih.","schematicsSingleAddSuccessed":"Vaša shema je bila uspešno dodana.","schematicsMultipleAddSuccessed":"%{count} shem je bilo uspešno dodanih.","schematicsAddFailed":"Dodajanje sheme ni bilo uspešno.","schematicsReplaceDlgTitle":"Potrdi zamenjavo obstoječe datoteke","schematicsReplaceDlgContent":"Datoteka '%{sourceName}' že obstaja. Ali jo želite zamenjati z novo datoteko?","schematicsReplaceDlgApplyToAllFiles":"Uveljavi za vse datoteke","schematicsPackageTab":"Paket","schematicsContentTab":"Vsebina","schematicsDescriptionLabel":"Opis","schematicsIconLabel":"Ikona","schematicsChooseFile":"Izberi datoteko","schematicsDeleteIcon":"Odstrani ikono","schematicsIconAdded":"Ikona \"%{file}\" je bila uspešno dodana.","schematicsIconRemove":"Ikona je bila uspešno odstranjena.","schematicsIconDropFiles":"Spusti datoteke sem","schematicsIconOr":"ali","schematicsIconFileTypes":"Samo datoteke .jpg, .png in .svg.","schematicsIconFileSize":"Največja velikost datoteke je %{size} MB."},"__sv":{"errorCreatingPalette":"Ett fel uppstod när paletten skulle sparas.","paletteErrorTitle":"Palettfel","changePaletteLabel":"Ändra färgpalett","myPaletteLabel":"Anpassad","systemPaletteLabel":"System","publicPaletteLabel":"Global","localPaletteLabel":"Lokal","mruPaletteLabel":"Senast använda","okDialog":"OK","deleteDialogTitle":"Ta bort","applyDialog":"Tillämpa","cancelDialog":"Avbryt","saveDialog":"Spara","deleteMessage":"Vill du ta bort paletten %{name}?","deleteToast":"%{name} togs bort","favoritesLabel":"Favoriter","setAsFavorite":"Ange som favorit","createdToastMessage":"%{name} har skapats.","createPalette":"Skapa en anpassad palett","colorPicker":"Färgväljare","errorNoName":"Ange ett namn för paletten","errorInsufficientColors":"Välj minst två färger","paletteAppliedToastMessage":"Paletten %{name} tillämpades på rapporten.","createContinuousPalette":"Skapa kontinuerlig färgpalett","createStandardPalette":"Skapa kategorisk färgpalett","paletteNamePlaceholder":"Skriv palettnamn här","paletteName":"Palettnamn","standardPalette":"Kategorisk palett","continuousPalette":"Kontinuerlig palett","removeSwatch":"Ta bort färgrutor","addSwatch":"Lägg till färgrutor","reversePalette":"Omvänd palett","colorGuide":"Färgguide","modeAutomatic":"Automatisk","modeCustom":"Anpassad","colorModel":"Färgmodell","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Rutnät","wheel":"Hjul","hexCode":"Hexkod","colorRed":"Röd","colorGreen":"Grön","colorBlue":"Blå","colorHue":"Nyans","colorSaturation":"Mättnad","colorBrightness":"Ljusstyrka","colorCyan":"Cyan","colorMagenta":"Magenta","colorYellow":"Gul","colorBlack":"Svart","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"N","codeSaturation":"M","codeBrightness":"L","codeCyan":"C","codeMagenta":"M","codeYellow":"G","codeBlack":"S","close":"Stäng","editSchematic":"Redigera paket","searchSchematic":"Sök","nameLabelSchematic":"Namn","captionLabelSchematic":"Objekttext","keyLabelSchematic":"Nyckel","addSchematic":"Överför fil","schematicsInvalidSvg":"Ogiltig eller ohanterad SVG","schematicsInvalidSvgData":"Det gick inte att hämta fildata","schematicsInvalidType":"Otillåten filtyp: %{type}","schematicsInvalidSize":"Filen %{file}, storlek %{size} överskrider gränsen.","schematicsContextMenuReplace":"Ersätt","schematicsContextMenuDelete":"Ta bort","schematicsEmptySearchResults":"Sökresultatet är tomt","schematicsNoSelection":"Inga objekt har valts","schematicsMultipleSelection":"%{count} objekt har valts","schematicsSingleDeletionSuccessed":"Din schematik togs bort.","schematicsMultipleDeletionSuccessed":"%{count} schematiker togs bort.","schematicsSingleAddSuccessed":"Din schematik lades till.","schematicsMultipleAddSuccessed":"%{count} schematiker lades till.","schematicsAddFailed":"Det gick inte att lägga till din schematik","schematicsReplaceDlgTitle":"Bekräfta ersättning av befintlig fil","schematicsReplaceDlgContent":"Filen '%{sourceName}' finns redan. Vill du ersätta den med den nya filen?","schematicsReplaceDlgApplyToAllFiles":"Tillämpa på alla filer","schematicsPackageTab":"Paket","schematicsContentTab":"Innehåll","schematicsDescriptionLabel":"Beskrivning","schematicsIconLabel":"Ikon","schematicsChooseFile":"Välj en fil","schematicsDeleteIcon":"Ta bort ikonen","schematicsIconAdded":"Ikonen \"%{file}\" lades till.","schematicsIconRemove":"Ikonen togs bort.","schematicsIconDropFiles":"Dra filer hit","schematicsIconOr":"eller","schematicsIconFileTypes":"Endast .jpg-, .png- och .svg-filer.","schematicsIconFileSize":"%{size} MB max filstorlek."},"__th":{"errorCreatingPalette":"เกิดข้อผิดพลาดขณะบันทึกพาเล็ต","paletteErrorTitle":"ข้อผิดพลาดพาเล็ต","changePaletteLabel":"เปลี่ยนพาเล็ตสี","myPaletteLabel":"กำหนดเอง","systemPaletteLabel":"ระบบ","publicPaletteLabel":"โกลบอล","localPaletteLabel":"โลคัล","mruPaletteLabel":"ใช้ล่าสุด","okDialog":"ตกลง","deleteDialogTitle":"ลบ","applyDialog":"ใช้","cancelDialog":"ยกเลิก","saveDialog":"บันทึก","deleteMessage":"คุณแน่ใจหรือว่าต้องการลบพาเล็ต \"%{name}\"?","deleteToast":"ลบ \"%{name}\" ออกแล้ว","favoritesLabel":"รายการโปรด","setAsFavorite":"ตั้งค่าเป็นรายการโปรด","createdToastMessage":"สร้าง \"%{name}\" เรียบร้อยแล้ว","createPalette":"สร้างพาเล็ตแบบกำหนดเอง","colorPicker":"ตัวเลือกสี","errorNoName":"ป้อนชื่อสำหรับพาเล็ตของคุณ","errorInsufficientColors":"เลือกสีสองสีขึ้นไป","paletteAppliedToastMessage":"พาเล็ต \"%{name}\" ถูกนำไปใช้กับรายงาน","createContinuousPalette":"สร้างพาเล็ตสีที่ต่อเนื่องกัน","createStandardPalette":"สร้างพาเล็ตสีแบบเป็นหมวดหมู่","paletteNamePlaceholder":"พิมพ์ชื่อพาเล็ตที่นี่","paletteName":"ชื่อพาเล็ต","standardPalette":"พาเล็ตแบบเป็นหมวดหมู่","continuousPalette":"พาเล็ตแบบต่อเนื่องกัน","removeSwatch":"ลบ swatch","addSwatch":"เพิ่ม swatch","reversePalette":"กลับพาเล็ต","colorGuide":"ตารางสี","modeAutomatic":"อัตโนมัติ","modeCustom":"กำหนดเอง","colorModel":"โมเดลสี","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"กริด","wheel":"วงล้อ","hexCode":"รหัสเลขฐานสิบหก","colorRed":"สีแดง","colorGreen":"สีเขียว","colorBlue":"สีน้ำเงิน","colorHue":"สี","colorSaturation":"ความสดของสี","colorBrightness":"ความสว่าง","colorCyan":"สีฟ้า","colorMagenta":"สีม่วงแดง","colorYellow":"สีเหลือง","colorBlack":"สีดำ","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"ปิด","editSchematic":"แก้ไขแพ็กเกจ","searchSchematic":"ค้นหา","nameLabelSchematic":"ชื่อ","captionLabelSchematic":"คำบรรยาย","keyLabelSchematic":"คีย์","addSchematic":"อัพโหลดไฟล์","schematicsInvalidSvg":"SVG ไม่ถูกต้องหรือไม่สนับสนุน","schematicsInvalidSvgData":"ไม่สามารถขอรับข้อมูลไฟล์","schematicsInvalidType":"ชนิดไฟล์ที่ไม่สนับสนุน: %{type}","schematicsInvalidSize":"ไฟล์ %{file} ขนาด %{size} เกินขนาดที่จำกัดไว้","schematicsContextMenuReplace":"แทนที่","schematicsContextMenuDelete":"ลบ","schematicsEmptySearchResults":"ผลลัพธ์การค้นหาว่างเปล่า","schematicsNoSelection":"ไม่มีไอเท็มที่เลือกไว้","schematicsMultipleSelection":"%{count} ไอเท็มที่เลือกไว้","schematicsSingleDeletionSuccessed":"แบบแผนของคุณถูกลบทิ้งเป็นผลสำเร็จแล้ว","schematicsMultipleDeletionSuccessed":"%{count} แบบแผนถูกลบทิ้งเป็นผลสำเร็จแล้ว","schematicsSingleAddSuccessed":"แบบแผนของคุณถูกเพิ่มเป็นผลสำเร็จแล้ว","schematicsMultipleAddSuccessed":"%{count} แบบแผนถูกเพิ่มเป็นผลสำเร็จแล้ว","schematicsAddFailed":"ล้มเหลวในการเพิ่มแบบแผนของคุณ","schematicsReplaceDlgTitle":"ยืนยันการแทนที่ไฟล์ที่มีอยู่","schematicsReplaceDlgContent":"ไฟล์ '%{sourceName}' มีอยู่ก่อนแล้ว คุณต้องการแทนที่ด้วยไฟล์ใหม่หรือไม่?","schematicsReplaceDlgApplyToAllFiles":"ใช้กับไฟล์ทั้งหมด","schematicsPackageTab":"แพ็กเกจ","schematicsContentTab":"เนื้อหา","schematicsDescriptionLabel":"คำอธิบาย","schematicsIconLabel":"ไอคอน","schematicsChooseFile":"เลือกไฟล์","schematicsDeleteIcon":"ลบไอคอนออก","schematicsIconAdded":"ไอคอน \"%{file}\" ถูกเพิ่มเป็นผลสำเร็จแล้ว","schematicsIconRemove":"ไอคอนถูกลบออกเป็นผลสำเร็จแล้ว","schematicsIconDropFiles":"ดร็อปไฟล์ที่นี่","schematicsIconOr":"หรือ","schematicsIconFileTypes":"เฉพาะไฟล์ .jpg, .png, และ .svg","schematicsIconFileSize":"ขนาดไฟล์สูงสุด %{size}MB"},"__tr":{"errorCreatingPalette":"Palet kaydedilirken bir hata oluştu.","paletteErrorTitle":"Palet Hatası","changePaletteLabel":"Renk paletini değiştir","myPaletteLabel":"Özel","systemPaletteLabel":"Sistem","publicPaletteLabel":"Genel","localPaletteLabel":"Yerel","mruPaletteLabel":"Son kullanılan","okDialog":"Tamam","deleteDialogTitle":"Sil","applyDialog":"Uygula","cancelDialog":"İptal","saveDialog":"Kaydet","deleteMessage":"\"%{name}\" paletini silmek istediğinizden emin misiniz?","deleteToast":"\"%{name}\" silindi","favoritesLabel":"Sık Kullanılanlar","setAsFavorite":"Sık kullanılan olarak ayarla","createdToastMessage":"\"%{name}\" başarıyla oluşturuldu.","createPalette":"Özel palet oluştur","colorPicker":"Renk seçici","errorNoName":"Paletiniz için bir ad girin","errorInsufficientColors":"En az iki renk seçin","paletteAppliedToastMessage":"\"%{name}\" paleti, rapora uygulandı.","createContinuousPalette":"Sürekli renk paleti oluştur","createStandardPalette":"Kategorik renk paleti oluştur","paletteNamePlaceholder":"Buraya palet adını yazın","paletteName":"Palet adı","standardPalette":"Kategorik palet","continuousPalette":"Sürekli palet","removeSwatch":"Renk örneğini kaldır","addSwatch":"Renk örneği ekle","reversePalette":"Renk örneğini ters çevir","colorGuide":"Renk kılavuzu","modeAutomatic":"Otomatik","modeCustom":"Özel","colorModel":"Renk modeli","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"Kılavuz","wheel":"Tekerlek","hexCode":"Onaltılı kod","colorRed":"Kırmızı","colorGreen":"Yeşil","colorBlue":"Mavi","colorHue":"Renk Tonu","colorSaturation":"Doygunluk","colorBrightness":"Parlaklık","colorCyan":"Cam Göbeği","colorMagenta":"Macenta","colorYellow":"Sarı","colorBlack":"Siyah","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"B","close":"Kapat","editSchematic":"Paketi düzenle","searchSchematic":"Ara","nameLabelSchematic":"Ad","captionLabelSchematic":"Başlık","keyLabelSchematic":"Tuş","addSchematic":"Dosya Karşıya Yükle","schematicsInvalidSvg":"SVG geçersiz veya desteklenmiyor","schematicsInvalidSvgData":"Dosya verileri alınamadı","schematicsInvalidType":"Desteklenmeyen dosya tipi: %{type}","schematicsInvalidSize":"%{file} dosyası, %{size} boyutu sınırı aşıyor.","schematicsContextMenuReplace":"Değiştir","schematicsContextMenuDelete":"Sil","schematicsEmptySearchResults":"Arama sonuçları boş","schematicsNoSelection":"Bir öğe seçilmedi","schematicsMultipleSelection":"%{count} öğe seçildi","schematicsSingleDeletionSuccessed":"Şemanız başarıyla silindi.","schematicsMultipleDeletionSuccessed":"%{count} şema başarıyla silindi.","schematicsSingleAddSuccessed":"Şemanız başarıyla eklendi.","schematicsMultipleAddSuccessed":"%{count} şema başarıyla eklendi.","schematicsAddFailed":"Şemanız eklenemedi.","schematicsReplaceDlgTitle":"Var olan dosyanın değiştirilmesini onayla","schematicsReplaceDlgContent":"'%{sourceName}' dosyası zaten var. Bu dosyayı yeni dosyayla değiştirmek istiyor musunuz?","schematicsReplaceDlgApplyToAllFiles":"Tüm dosyalara uygula","schematicsPackageTab":"Paket","schematicsContentTab":"İçerik","schematicsDescriptionLabel":"Tanım","schematicsIconLabel":"Simge","schematicsChooseFile":"Dosya seç","schematicsDeleteIcon":"Simgeyi kaldır","schematicsIconAdded":"\"%{file}\" simgesi başarıyla eklendi.","schematicsIconRemove":"Simge başarıyla kaldırıldı.","schematicsIconDropFiles":"Dosyaları buraya bırakın","schematicsIconOr":"ya da","schematicsIconFileTypes":"Yalnızca .jpg, .png ve .svg dosyaları.","schematicsIconFileSize":"Maksimum dosya boyutu: %{size}."},"__zh":{"errorCreatingPalette":"保存调色板时发生错误。","paletteErrorTitle":"调色板错误","changePaletteLabel":"更改调色板","myPaletteLabel":"自定义","systemPaletteLabel":"系统","publicPaletteLabel":"全局","localPaletteLabel":"本地","mruPaletteLabel":"最近使用的","okDialog":"确定","deleteDialogTitle":"删除","applyDialog":"应用","cancelDialog":"取消","saveDialog":"保存","deleteMessage":"确定要删除调色板“%{name}”吗?","deleteToast":"“%{name}”已删除","favoritesLabel":"收藏夹","setAsFavorite":"设置为收藏项","createdToastMessage":"“%{name}”已成功创建。","createPalette":"创建自定义调色板","colorPicker":"颜色选取器","errorNoName":"请为调色板输入名称","errorInsufficientColors":"至少选择两种颜色","paletteAppliedToastMessage":"调色板“%{name}”已应用于报表。","createContinuousPalette":"创建连续调色板","createStandardPalette":"创建分类调色板","paletteNamePlaceholder":"在此输入调色板名称","paletteName":"调色板名称","standardPalette":"分类调色板","continuousPalette":"连续调色板","removeSwatch":"移除图样","addSwatch":"添加图样","reversePalette":"反转调色板","colorGuide":"颜色指南","modeAutomatic":"自动","modeCustom":"自定义","colorModel":"颜色模型","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"网格","wheel":"色轮","hexCode":"十六进制代码","colorRed":"红色","colorGreen":"绿色","colorBlue":"蓝色","colorHue":"色调","colorSaturation":"饱和度","colorBrightness":"亮度","colorCyan":"蓝绿色","colorMagenta":"品红色","colorYellow":"黄色","colorBlack":"黑色","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"关闭","editSchematic":"编辑数据包","searchSchematic":"搜索","nameLabelSchematic":"名称","captionLabelSchematic":"标题","keyLabelSchematic":"密钥","addSchematic":"上载文件","schematicsInvalidSvg":"SVG 无效或不受支持","schematicsInvalidSvgData":"无法获取文件数据","schematicsInvalidType":"不支持的文件类型:%{type}","schematicsInvalidSize":"文件 %{file} 的大小 %{size} 超过限制。","schematicsContextMenuReplace":"替换","schematicsContextMenuDelete":"删除","schematicsEmptySearchResults":"搜索结果为空","schematicsNoSelection":"未选择任何项","schematicsMultipleSelection":"已选择 %{count} 项","schematicsSingleDeletionSuccessed":"示意图已成功删除。","schematicsMultipleDeletionSuccessed":"%{count} 个示意图已成功删除。","schematicsSingleAddSuccessed":"示意图已成功添加。","schematicsMultipleAddSuccessed":"%{count} 个示意图已成功添加。","schematicsAddFailed":"未能添加示意图。","schematicsReplaceDlgTitle":"确认替换现有文件","schematicsReplaceDlgContent":"文件“%{sourceName}”已存在。是否要将其替换为新文件?","schematicsReplaceDlgApplyToAllFiles":"应用于所有文件","schematicsPackageTab":"数据包","schematicsContentTab":"内容","schematicsDescriptionLabel":"说明","schematicsIconLabel":"图标","schematicsChooseFile":"选择文件","schematicsDeleteIcon":"移除图标","schematicsIconAdded":"图标“%{file}”已成功添加。","schematicsIconRemove":"图标已成功移除。","schematicsIconDropFiles":"将文件放在此处","schematicsIconOr":"或","schematicsIconFileTypes":"仅限 .jpg、.png 和 .svg 文件。","schematicsIconFileSize":"%{size}MB 最大文件大小。"},"__zh-cn":{"errorCreatingPalette":"保存调色板时发生错误。","paletteErrorTitle":"调色板错误","changePaletteLabel":"更改调色板","myPaletteLabel":"自定义","systemPaletteLabel":"系统","publicPaletteLabel":"全局","localPaletteLabel":"本地","mruPaletteLabel":"最近使用的","okDialog":"确定","deleteDialogTitle":"删除","applyDialog":"应用","cancelDialog":"取消","saveDialog":"保存","deleteMessage":"确定要删除调色板“%{name}”吗?","deleteToast":"“%{name}”已删除","favoritesLabel":"收藏夹","setAsFavorite":"设置为收藏项","createdToastMessage":"“%{name}”已成功创建。","createPalette":"创建自定义调色板","colorPicker":"颜色选取器","errorNoName":"请为调色板输入名称","errorInsufficientColors":"至少选择两种颜色","paletteAppliedToastMessage":"调色板“%{name}”已应用于报表。","createContinuousPalette":"创建连续调色板","createStandardPalette":"创建分类调色板","paletteNamePlaceholder":"在此输入调色板名称","paletteName":"调色板名称","standardPalette":"分类调色板","continuousPalette":"连续调色板","removeSwatch":"移除图样","addSwatch":"添加图样","reversePalette":"反转调色板","colorGuide":"颜色指南","modeAutomatic":"自动","modeCustom":"自定义","colorModel":"颜色模型","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"网格","wheel":"色轮","hexCode":"十六进制代码","colorRed":"红色","colorGreen":"绿色","colorBlue":"蓝色","colorHue":"色调","colorSaturation":"饱和度","colorBrightness":"亮度","colorCyan":"蓝绿色","colorMagenta":"品红色","colorYellow":"黄色","colorBlack":"黑色","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"关闭","editSchematic":"编辑数据包","searchSchematic":"搜索","nameLabelSchematic":"名称","captionLabelSchematic":"标题","keyLabelSchematic":"密钥","addSchematic":"上载文件","schematicsInvalidSvg":"SVG 无效或不受支持","schematicsInvalidSvgData":"无法获取文件数据","schematicsInvalidType":"不支持的文件类型:%{type}","schematicsInvalidSize":"文件 %{file} 的大小 %{size} 超过限制。","schematicsContextMenuReplace":"替换","schematicsContextMenuDelete":"删除","schematicsEmptySearchResults":"搜索结果为空","schematicsNoSelection":"未选择任何项","schematicsMultipleSelection":"已选择 %{count} 项","schematicsSingleDeletionSuccessed":"示意图已成功删除。","schematicsMultipleDeletionSuccessed":"%{count} 个示意图已成功删除。","schematicsSingleAddSuccessed":"示意图已成功添加。","schematicsMultipleAddSuccessed":"%{count} 个示意图已成功添加。","schematicsAddFailed":"未能添加示意图。","schematicsReplaceDlgTitle":"确认替换现有文件","schematicsReplaceDlgContent":"文件“%{sourceName}”已存在。是否要将其替换为新文件?","schematicsReplaceDlgApplyToAllFiles":"应用于所有文件","schematicsPackageTab":"数据包","schematicsContentTab":"内容","schematicsDescriptionLabel":"说明","schematicsIconLabel":"图标","schematicsChooseFile":"选择文件","schematicsDeleteIcon":"移除图标","schematicsIconAdded":"图标“%{file}”已成功添加。","schematicsIconRemove":"图标已成功移除。","schematicsIconDropFiles":"将文件放在此处","schematicsIconOr":"或","schematicsIconFileTypes":"仅限 .jpg、.png 和 .svg 文件。","schematicsIconFileSize":"%{size}MB 最大文件大小。"},"__zh-tw":{"errorCreatingPalette":"儲存選用區時發生錯誤。","paletteErrorTitle":"選用區錯誤","changePaletteLabel":"變更調色盤","myPaletteLabel":"自訂","systemPaletteLabel":"系統","publicPaletteLabel":"廣域","localPaletteLabel":"本端","mruPaletteLabel":"最近已使用","okDialog":"確定","deleteDialogTitle":"刪除","applyDialog":"套用","cancelDialog":"取消","saveDialog":"儲存","deleteMessage":"您確定要刪除選用區 \"%{name}\" 嗎?","deleteToast":"\"%{name}\" 已刪除","favoritesLabel":"我的最愛","setAsFavorite":"設為我的最愛","createdToastMessage":"\"%{name}\" 已順利建立。","createPalette":"建立自訂選用區","colorPicker":"顏色選取器","errorNoName":"輸入選用區的名稱","errorInsufficientColors":"至少選擇兩種顏色","paletteAppliedToastMessage":"選用區 \"%{name}\" 已套用至報告。","createContinuousPalette":"建立連續調色盤","createStandardPalette":"建立種類調色盤","paletteNamePlaceholder":"在這裡鍵入選用區名稱","paletteName":"選用區名稱","standardPalette":"種類選用區","continuousPalette":"連續選用區","removeSwatch":"移除色樣","addSwatch":"新增色樣","reversePalette":"反轉選用區","colorGuide":"顏色指南","modeAutomatic":"自動","modeCustom":"自訂","colorModel":"色彩模式","modelRGB":"RGB","modelHSB":"HSB","modelCMYK":"CMYK","grid":"網格","wheel":"輪子","hexCode":"十六進位碼","colorRed":"紅色","colorGreen":"綠色","colorBlue":"藍色","colorHue":"色調","colorSaturation":"飽和度","colorBrightness":"亮度","colorCyan":"青藍色","colorMagenta":"紫紅色","colorYellow":"黃色","colorBlack":"黑色","codeRed":"R","codeGreen":"G","codeBlue":"B","codeHue":"H","codeSaturation":"S","codeBrightness":"B","codeCyan":"C","codeMagenta":"M","codeYellow":"Y","codeBlack":"K","close":"關閉","editSchematic":"編輯套件","searchSchematic":"搜尋","nameLabelSchematic":"名稱","captionLabelSchematic":"標題","keyLabelSchematic":"索引鍵","addSchematic":"上傳檔案","schematicsInvalidSvg":"無效或不受支援的 SVG","schematicsInvalidSvgData":"無法取得檔案資料","schematicsInvalidType":"不受支援的檔案類型:%{type}","schematicsInvalidSize":"檔案 %{file}(大小 %{size})超出限制。","schematicsContextMenuReplace":"取代","schematicsContextMenuDelete":"刪除","schematicsEmptySearchResults":"搜尋結果是空的","schematicsNoSelection":"未選取項目","schematicsMultipleSelection":"%{count} 個項目已選取","schematicsSingleDeletionSuccessed":"您的示意圖已順利刪除。","schematicsMultipleDeletionSuccessed":"%{count} 個示意圖已順利刪除。","schematicsSingleAddSuccessed":"您的示意圖已順利新增。","schematicsMultipleAddSuccessed":"%{count} 個示意圖已順利新增。","schematicsAddFailed":"無法新增您的示意圖。","schematicsReplaceDlgTitle":"確認取代現有檔案","schematicsReplaceDlgContent":"檔案 '%{sourceName}' 已存在。您要使用這個新檔案來進行取代嗎?","schematicsReplaceDlgApplyToAllFiles":"套用至所有檔案","schematicsPackageTab":"套件","schematicsContentTab":"內容","schematicsDescriptionLabel":"說明","schematicsIconLabel":"圖示","schematicsChooseFile":"請選擇檔案","schematicsDeleteIcon":"請移除圖示","schematicsIconAdded":"圖示 \"%{file}\" 已順利新增。","schematicsIconRemove":"圖示已順利移除。","schematicsIconDropFiles":"在這裡捨棄檔案","schematicsIconOr":"或","schematicsIconFileTypes":"僅限 .jpg、.png 和 .svg 檔案","schematicsIconFileSize":"%{size}MB 檔案大小上限。"}};amdi18n.init=function (language){
- // get the default language
- if(!language){
- if(window._i18n && window._i18n.locale){
- language = window._i18n.locale;
- }else if(document.documentElement.lang){
- language = document.documentElement.lang;
- }else{
- language = 'root';
- }
- }
- var target = this['__' + language] || this.__root;
- // copy definition to root level
- if (target) {
- for (var name in target) {
- this[name] = target[name];
- }
- }
- // fallback to root
- for(var name in this.__root){
- if(typeof this[name] === 'undefined'){
- this[name] = this.__root[name];
- }
- }
- };amdi18n.init();module.exports=amdi18n;
- /***/ }),
- /***/ 16:
- /***/ (function(module, exports) {
- module.exports = __WEBPACK_EXTERNAL_MODULE_16__;
- /***/ }),
- /***/ 18:
- /***/ (function(module, exports, __webpack_require__) {
- "use strict";
- var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2013, 2016
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- *
- * @module /dashboard/data/Events
- * @see Events
- */
- !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(10)], __WEBPACK_AMD_DEFINE_RESULT__ = (function (Class) {
- 'use strict';
- /**
- * Events implements the Backbone-style eventing model objects
- *
- * @class Events
- */
- var Events = Class.extend({
- init: function init() {
- this._events = {};
- },
- /**
- * The 'on' method registers the handler and return DOJO-style event registration object with 'remove' method, which unregisters the handler.
- *
- * This implementation supports composite event names, such as 'eventBaseName:eventSecondaryName', for example: 'change:name'. Triggering 'change:name' event would invoke handlers registered to
- * listen 'change' event as well as the handlers registered to listen the 'change:name' event. The special event name 'all' can be used to listen to all event types.
- */
- on: function on(eventName, handler, context) {
- if (typeof handler !== 'function') {
- console.log('ERROR in Events.on: Invalid event handler');
- }
- if (!this._events[eventName]) {
- this._events[eventName] = [];
- }
- this._events[eventName].push({
- handler: handler,
- context: context
- });
- var that = this;
- return {
- remove: function remove() {
- that.off(eventName, handler, context);
- }
- };
- },
- /**
- * Removes the specified handler from the listening to the events on this object. If eventName is not specified then unregister handler and context for all event types. If handler is not specified
- * then unregister all event handlers for the specified context and event name. If context is not specified then unregister all event handlers for the specified handler and event name.
- *
- * Examples: obj.off('change:name', handler, context); // unregister handler in context from listening 'change:name' event obj.off(null, null, context); // unregister all event handlers for the
- * specified context obj.off(); // unregister all event handlers
- */
- off: function off(eventName, handler, context) {
- var getEvents = function getEvents(evName, self) {
- var events = self._events;
- if (!evName) {
- return events;
- }
- var parts = evName.split(':');
- events = {};
- events[parts[0]] = self._events[parts[0]];
- if (parts.length > 1 && parts[1] !== '*') {
- events[evName] = self._events[evName];
- } else if (parts.length > 1 && parts[1] === '*') {
- for (var name in self._events) {
- if (name.indexOf(parts[0] + ':') === 0) {
- events[name] = self._events[name];
- }
- }
- }
- return events;
- };
- var events = getEvents(eventName, this);
- for (var name in events) {
- var i = 0,
- handlers = events[name];
- if (!handlers) {
- continue;
- }
- while (i < handlers.length) {
- if ((handlers[i].handler === handler || !handler) && (handlers[i].context === context || !context)) {
- handlers.splice(i, 1);
- } else {
- i++;
- }
- }
- }
- },
- /**
- * Triggers an event
- */
- trigger: function trigger(eventName, event) {
- var parts = eventName.split(':');
- var handlers = [].concat(this._events['all'] || []).concat(this._events[parts[0]] || []);
- if (parts.length > 1) {
- handlers = handlers.concat(this._events[eventName] || []);
- }
- for (var i = 0; i < handlers.length; i++) {
- if (typeof handlers[i].handler === 'function') {
- handlers[i].handler.call(handlers[i].context, event, eventName);
- }
- }
- }
- });
- // alias
- Events.prototype.emit = Events.prototype.trigger;
- //
- return Events;
- }).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
- __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
- //# sourceMappingURL=Events.js.map
- /***/ }),
- /***/ 5:
- /***/ (function(module, exports) {
- module.exports = __WEBPACK_EXTERNAL_MODULE_5__;
- /***/ }),
- /***/ 72:
- /***/ (function(module, exports, __webpack_require__) {
- "use strict";
- exports.__esModule = true;
- exports.PaletteService = undefined;
- var _PaletteService = __webpack_require__(73);
- var _PaletteService2 = _interopRequireDefault(_PaletteService);
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
- exports.PaletteService = _PaletteService2.default; /*
- *+------------------------------------------------------------------------+
- *| Licensed Materials - Property of IBM
- *| IBM Cognos Products: BI
- *| (C) Copyright IBM Corp. 2018
- *|
- *| US Government Users Restricted Rights - Use, duplication or disclosure
- *| restricted by GSA ADP Schedule Contract with IBM Corp.
- *+------------------------------------------------------------------------+
- */
- /***/ }),
- /***/ 73:
- /***/ (function(module, exports, __webpack_require__) {
- "use strict";
- exports.__esModule = true;
- var _StringResources = __webpack_require__(1);
- var _StringResources2 = _interopRequireDefault(_StringResources);
- var _underscore = __webpack_require__(5);
- var _underscore2 = _interopRequireDefault(_underscore);
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: BI
- * (C) Copyright IBM Corp. 2018
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- var Event = __webpack_require__(18);
- /** `
- * Class handle palette objects in the content service.
- */
- var PaletteService = function (_Event) {
- _inherits(PaletteService, _Event);
- function PaletteService() {
- _classCallCheck(this, PaletteService);
- // Local cache of palette definitions.
- var _this = _possibleConstructorReturn(this, _Event.call(this, arguments));
- _this._cachedPalettes = {};
- _this._paletteRequestPromise = {};
- _this._cachedMRUPalettes = null;
- return _this;
- }
- PaletteService.prototype.initialize = function initialize(_ref) {
- var appController = _ref.appController;
- this._glassContext = appController.glassContext;
- this._logger = this._glassContext.getCoreSvc('.Logger');
- this._ajaxService = this._glassContext.getCoreSvc('.Ajax');
- };
- /**
- * Gets a palette with the given id from content service
- * @param {string} id - the ID of the palette to retreive
- * @return {Promise} Resolved with the palette or Rejected if the palette wasn't found
- */
- PaletteService.prototype.getPalette = function getPalette(id) {
- var _this2 = this;
- var safeId = this.getCMSafePaletteId(id);
- if (this._cachedPalettes[safeId]) {
- return Promise.resolve(_underscore2.default.extend({}, this._cachedPalettes[safeId]));
- } else if (this._paletteRequestPromise[safeId]) {
- // If we've already queried for the palette and we're waiting for the response return the initial Promise. This
- // Can happen on dashboard open when multiple widgets as for the same palette definition at the same time
- return this._paletteRequestPromise[safeId];
- }
- this._paletteRequestPromise[safeId] = this._ajaxService.ajax({
- url: 'v1/palettes/' + encodeURIComponent(safeId),
- type: 'GET',
- headers: {
- 'Accept': 'application/json'
- }
- }).then(function () {
- var response = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
- delete _this2._paletteRequestPromise[safeId];
- _this2._cachedPalettes[safeId] = response.data && response.data.data && response.data.data[0];
- return _underscore2.default.extend({}, _this2._cachedPalettes[safeId]);
- }, function (e) {
- delete _this2._paletteRequestPromise[safeId];
- _this2._logger.error(e);
- throw e;
- });
- return this._paletteRequestPromise[safeId];
- };
- /**
- * Returns all the palettes found in the content store
- * @param {String} [fillType] - Specify either 'simple' or 'continuous' palettes to filter the list of palette being returned. Default will return all the palettes
- * @return {object}
- */
- PaletteService.prototype.getPalettes = function getPalettes(fillType) {
- var _this3 = this;
- if (this._cachedMyPalettes && this._cachedPublicPalettes) {
- return Promise.resolve(this._getCachedPalettes(fillType));
- }
- return Promise.all([this.getMyPalettes(), this.getPublicPalettes()]).then(function () {
- return _this3._getCachedPalettes(fillType);
- });
- };
- /**
- * Get the cached palettes of a certain type
- * @param {String} fillType - The type of palette ('simple', 'continuous') to return
- * @return {Object} - Returns an object with a 'my' and 'public' array property that will contain the cached palettes
- */
- PaletteService.prototype._getCachedPalettes = function _getCachedPalettes(fillType) {
- var _this4 = this;
- var myPalettes = [];
- var publicPalettes = [];
- Object.keys(this._cachedPalettes).forEach(function (key) {
- var palette = _this4._cachedPalettes[key];
- var type = palette.content && palette.content.fillType;
- if (!fillType || type === fillType) {
- if (palette.my) {
- myPalettes.push(_underscore2.default.extend({}, palette));
- }
- if (palette.public) {
- publicPalettes.push(_underscore2.default.extend({}, palette));
- }
- }
- });
- return {
- my: myPalettes,
- public: publicPalettes
- };
- };
- /**
- * Given an array of palettes, make sure all the palettes are cached and save their IDs in the array padded in
- * @param {Array} palettes - Array pf palettes returned by CM
- * @param {String} property - Property 'my' or 'public' to use to know which list the palette belongs to
- */
- PaletteService.prototype._cachePalettes = function _cachePalettes(palettes, property) {
- var _this5 = this;
- palettes.forEach(function (palette) {
- if (!_this5._cachedPalettes[palette.id]) {
- _this5._cachedPalettes[palette.id] = palette;
- }
- _this5._cachedPalettes[palette.id][property] = true;
- });
- };
- /**
- * Returns all the palettes owned by the current user
- */
- PaletteService.prototype.getMyPalettes = function getMyPalettes() {
- var _this6 = this;
- if (this._cachedMyPalettes) {
- return Promise.resolve(this._getCachedPalettes().my);
- }
- return this._getPalettes('v1/palettes/my').then(function (results) {
- _this6._cachePalettes(results, 'my');
- _this6._cachedMyPalettes = true;
- return results;
- });
- };
- /**
- * Returns all the public palettes stored in content service
- */
- PaletteService.prototype.getPublicPalettes = function getPublicPalettes() {
- var _this7 = this;
- if (this._cachedPublicPalettes) {
- return Promise.resolve(this._getCachedPalettes().public);
- }
- return this._getPalettes('v1/palettes/public').then(function (results) {
- _this7._cachePalettes(results, 'public');
- _this7._cachedPublicPalettes = true;
- return results;
- });
- };
- /**
- * Deletes a palette from content store
- * @param {string} id - the id of the palette to delete
- * @return {Promise}
- */
- PaletteService.prototype.deletePalette = function deletePalette(id) {
- var _this8 = this;
- var safeId = this.getCMSafePaletteId(id);
- if (!safeId) {
- Promise.reject('Need the ID of the palette to update');
- }
- return this._getPaletteName(safeId).then(function (name) {
- return _this8._showConfirmationDlg(_StringResources2.default.get('deleteDialogTitle'), _StringResources2.default.get('deleteMessage', { name: name })).then(function () {
- return _this8._ajaxService.ajax({
- url: 'v1/palettes/' + encodeURIComponent(safeId) + '?forced=true',
- type: 'DELETE',
- headers: {
- 'Content-Type': 'application/json'
- }
- }).then(function (response) {
- delete _this8._cachedPalettes[safeId];
- _this8._showToast(_StringResources2.default.get('deleteToast', { name: name }));
- _this8.trigger('palette:deleted', {
- paletteId: safeId
- });
- return response;
- }, function (e) {
- // Unknown error happened
- _this8._showUnknownError(e);
- throw e;
- });
- }, function () {
- // If showConfirmationDlg rejected the promise then the user clicked on cancel
- return;
- });
- });
- };
- PaletteService.prototype._getPaletteName = function _getPaletteName(id) {
- return this.getPalette(id).then(function (palette) {
- return palette.defaultName;
- });
- };
- /**
- * Create a palette in the content store
- * @param {Object} Object.palette - the palette definition to save in CM
- * @param {Boolean} Object.public - whether the palette should be made public or not
- */
- PaletteService.prototype.createPalette = function createPalette(options) {
- var _this9 = this;
- var palette = options.palette;
- var name = palette.label;
- if (!name) {
- return Promise.reject('No name specified in the palette definition');
- }
- var paletteObj = {
- defaultName: name,
- content: palette
- };
- if (typeof options.public !== 'undefined') {
- paletteObj.public = options.public;
- }
- return this._ajaxService.ajax({
- url: 'v1/palettes/my',
- type: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: JSON.stringify(paletteObj)
- }).then(function () {
- var response = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
- var location = response.jqXHR && response.jqXHR.getResponseHeader('location');
- if (location) {
- var paletteId = location ? location.substring(location.lastIndexOf('/') + 1) : null;
- if (paletteId) {
- // Make sure what we cache matches what a CM response would look like
- paletteObj.id = paletteId;
- paletteObj.my = true; // We just created it, so it should go in the 'my' list of palettes.
- _this9._cachedPalettes[paletteId] = paletteObj;
- }
- _this9._showToast(_StringResources2.default.get('createdToastMessage', { name: name }));
- _this9.trigger('palette:created', {
- paletteId: paletteId
- });
- return paletteId;
- }
- }, function (e) {
- // Unknown error happened
- _this9._showUnknownError(e);
- throw e;
- });
- };
- /**
- * Updates a palette definition in CM
- * @param {Object} Object.id - The ID of the palette to update
- * @param {Object} [Object.palette] - The new definition
- * @param {Boolean} [Object.public] - Whether the palette is public or not
- */
- PaletteService.prototype.updatePalette = function updatePalette(options) {
- var _this10 = this;
- var id = options.id,
- palette = options.palette;
- var safeId = this.getCMSafePaletteId(id);
- var isPublic = typeof options.public === 'undefined' ? null : options.public;
- if (!safeId) {
- Promise.reject('Need the ID of the palette to update');
- }
- var data = {};
- this._applyUpdateToPalette(data, palette, isPublic);
- return this._ajaxService.ajax({
- url: 'v1/palettes/' + encodeURIComponent(safeId),
- type: 'PUT',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: JSON.stringify(data)
- }).then(function (response) {
- var cachedPalette = _this10._cachedPalettes[safeId];
- if (cachedPalette) {
- _this10._applyUpdateToPalette(cachedPalette, palette, isPublic);
- }
- _this10.trigger('palette:updated', {
- paletteId: safeId
- });
- return response;
- }, function (e) {
- // Unknown error happened
- _this10._showUnknownError(e);
- throw e;
- });
- };
- PaletteService.prototype._applyUpdateToPalette = function _applyUpdateToPalette(palette, paletteDefinition, isPublic) {
- if (paletteDefinition) {
- palette.defaultName = paletteDefinition.label;
- palette.content = paletteDefinition;
- }
- if (isPublic != null) {
- palette.public = isPublic;
- }
- };
- PaletteService.prototype._showUnknownError = function _showUnknownError(e) {
- this._glassContext.appController.showErrorMessage(_StringResources2.default.get('errorCreatingPalette'), _StringResources2.default.get('paletteErrorTitle'));
- this._logger.error(e);
- };
- PaletteService.prototype._showToast = function _showToast(msg) {
- this._glassContext.appController.showToast(msg);
- };
- PaletteService.prototype._showConfirmationDlg = function _showConfirmationDlg(title, message) {
- var _this11 = this;
- return new Promise(function (resolve, reject) {
- _this11._glassContext.appController.showMessage(message, title, 'info', ['ok', 'cancel'], undefined, function (evt) {
- if (evt.btn === 'ok') {
- resolve();
- } else {
- reject();
- }
- });
- });
- };
- PaletteService.prototype._getPalettes = function _getPalettes(url) {
- var _this12 = this;
- return this._ajaxService.ajax({
- url: url,
- type: 'GET',
- headers: {
- 'Accept': 'application/json'
- }
- }).then(function () {
- var response = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
- return response.data && response.data.data;
- }, function (e) {
- _this12._logger.error(e);
- return [];
- });
- };
- /**
- * Some of our internal ID have prefixes. Make sure we're dealing with the real CM ID
- * @param {String} id
- */
- PaletteService.prototype.getCMSafePaletteId = function getCMSafePaletteId(id) {
- if (id && id.indexOf('__CM__') === 0) {
- return id.split('__CM__')[1];
- }
- return id;
- };
- /**
- * Gets the list of favorite colors
- */
- PaletteService.prototype.getFavoriteColors = function getFavoriteColors() {
- var _this13 = this;
- if (this._cachedFavoriteColors) {
- return Promise.resolve(_underscore2.default.clone(this._cachedFavoriteColors));
- }
- return this._ajaxService.ajax({
- url: 'v1/users/~/favColors',
- type: 'GET',
- headers: {
- 'Accept': 'application/json'
- }
- }).then(function (response) {
- if (!response || !response.data || !response.data[0] || !response.data[0].colors) {
- return [];
- }
- _this13._cachedFavoriteColors = response.data[0].colors;
- return _underscore2.default.clone(_this13._cachedFavoriteColors);
- }, function (e) {
- _this13._logger.error(e);
- return [];
- });
- };
- /**
- * Saves the list of favorite colors
- * @param {Array} colors
- */
- PaletteService.prototype.setFavoriteColors = function setFavoriteColors(colors) {
- var _this14 = this;
- if (!colors) {
- return Promise.resolve();
- }
- this._cachedFavoriteColors = colors;
- return this._ajaxService.ajax({
- url: 'v1/users/~/favColors/data',
- type: 'PUT',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: JSON.stringify({ colors: this._cachedFavoriteColors })
- }).then(function () {
- return;
- }, function (e) {
- _this14._logger.error(e);
- return;
- });
- };
- /**
- * Gets the array of recently used palette info.
- * @param {String} fillType - The fillType of the MRU list (basic or continuous)
- */
- PaletteService.prototype.getRecentlyUsedPaletteInfo = function getRecentlyUsedPaletteInfo(fillType) {
- var _this15 = this;
- if (this._cachedMRUPalettes) {
- if (!this._cachedMRUPalettes[fillType]) {
- this._cachedMRUPalettes[fillType] = [];
- }
- return Promise.resolve(this._cachedMRUPalettes[fillType]);
- }
- return this._ajaxService.ajax({
- url: 'v1/users/~/mruPalettes',
- type: 'GET',
- headers: {
- 'Accept': 'application/json'
- }
- }).then(function (response) {
- if (!response || !response.data || !response.data[0]) {
- _this15._cachedMRUPalettes = {};
- } else {
- _this15._cachedMRUPalettes = response.data[0];
- }
- if (!_this15._cachedMRUPalettes[fillType]) {
- _this15._cachedMRUPalettes[fillType] = [];
- }
- return _this15._cachedMRUPalettes[fillType];
- }, function (e) {
- _this15._logger.error(e);
- return [];
- });
- };
- /**
- * Adds palette information to the MRU list
- * @param {String} Object.palette - The palette that's being added to the MRU list
- * @param {String} Object.component - Which component dashboard or reporting is adding the palette
- * @param {String} Object.isSystem - is the current palette a system palette
- * @param {String} [Object.propName] - the name of the property the palette is being used for.
- * @param {Boolean} [Object.trimSystemByPropName] - Should we match the prop name when removing system palettes from the MRU
- */
- PaletteService.prototype.addRecentlyUsedPalette = function addRecentlyUsedPalette(_ref2) {
- var _this16 = this;
- var palette = _ref2.palette,
- component = _ref2.component,
- isSystem = _ref2.isSystem,
- propName = _ref2.propName,
- trimSystemByPropName = _ref2.trimSystemByPropName;
- if (!palette) {
- return;
- }
- var fillType = palette.content.fillType === 'ImgPath' ? 'continuous' : palette.content.fillType;
- return this.getRecentlyUsedPaletteInfo(fillType).then(function (recentlyUsedPaletteInfo) {
- if (!recentlyUsedPaletteInfo) {
- return;
- }
- var safeId = _this16.getCMSafePaletteId(palette.id);
- var found = false;
- // If we already have this palette in the MRU just move it to the front
- for (var i = 0; i < recentlyUsedPaletteInfo.length; i++) {
- if (recentlyUsedPaletteInfo[i].id === safeId) {
- var matchedInfo = recentlyUsedPaletteInfo.splice(i, 1);
- recentlyUsedPaletteInfo.unshift(matchedInfo[0]);
- found = true;
- }
- }
- if (!found) {
- // Add the new palette information to the array
- recentlyUsedPaletteInfo.unshift({
- id: safeId,
- component: component,
- isSystem: isSystem,
- propName: propName
- });
- }
- _this16._trimPaletteMRU(recentlyUsedPaletteInfo, propName, trimSystemByPropName);
- return _this16._ajaxService.ajax({
- url: 'v1/users/~/mruPalettes/data',
- type: 'PUT',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: JSON.stringify(_this16._cachedMRUPalettes)
- }).then(function () {
- return;
- }, function (e) {
- _this16._logger.error(e);
- return;
- });
- });
- };
- /**
- * Since dashboard and reporting system palettes don't match, match sure we leave 3 valid palettes
- * in the MRU list for each component
- * @param {Array} recentlyUsedPaletteInfo
- * @param {String} propName - the name of the property the palette is being used for.
- * @param {Boolean} trimSystemByPropName - Should we match the prop name when removing system palettes from the MRU
- */
- PaletteService.prototype._trimPaletteMRU = function _trimPaletteMRU(recentlyUsedPaletteInfo, propName, trimSystemByPropName) {
- var dashboardMatch = 0;
- var reportingMatch = 0;
- for (var i = 0; i < recentlyUsedPaletteInfo.length; i++) {
- // If we've already matched 3 palettes for dashboard and authoring and we're
- // not matching on prop name then simply remove the palette
- if (dashboardMatch >= 3 && reportingMatch >= 3 && !trimSystemByPropName) {
- recentlyUsedPaletteInfo.pop();
- i--;
- continue;
- }
- var paletteInfo = recentlyUsedPaletteInfo[i];
- if (!paletteInfo.isSystem || !trimSystemByPropName || propName === paletteInfo.propName) {
- if (paletteInfo.component === 'dashboard') {
- // Only remove it if it's a system palette and we already have our 3 matches. Otherwise
- // it's a custom palette and will be needed by authoring for their 3 matches.
- if (paletteInfo.isSystem && dashboardMatch >= 3) {
- recentlyUsedPaletteInfo.splice(i, 1);
- i--;
- } else {
- dashboardMatch++;
- }
- // Any non system palette is valid for both reporting and dashboards
- if (!paletteInfo.isSystem) {
- reportingMatch++;
- }
- } else {
- // Only remove it if it's a system palette and we already have our 3 matches. Otherwise
- // it's a custom palette and will be needed by dashboards for their 3 matches.
- if (paletteInfo.isSystem && reportingMatch >= 3) {
- recentlyUsedPaletteInfo.splice(i, 1);
- i--;
- } else {
- reportingMatch++;
- }
- // Any non system palette is valid for both reporting and dashboards
- if (!paletteInfo.isSystem) {
- dashboardMatch++;
- }
- }
- }
- }
- // Last safe guard, we really should never get over 9 palettes in the MRU. Worst
- // case would be all system palettes, 3 heat, 3 confitional and 3 authoring. Give it a little
- // more room at 12, but remove anything past that so the MRU list won't grow out of control in the
- // case of issues.
- while (recentlyUsedPaletteInfo.length > 12) {
- recentlyUsedPaletteInfo.pop();
- }
- };
- return PaletteService;
- }(Event);
- exports.default = PaletteService;
- /***/ })
- /******/ });
- });
- //# sourceMappingURL=services.js.map
|