Skip to content

Commit

Permalink
update translations
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins build server committed Feb 27, 2025
1 parent f43bab9 commit 8f61ab1
Show file tree
Hide file tree
Showing 13 changed files with 6,059 additions and 5,990 deletions.
108 changes: 58 additions & 50 deletions libs/electron-updater.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@ function requireBrowser () {
} catch (error) {
return '[UnexpectedJSONParseError]: ' + error.message;
}
};
};
} (browser, browser.exports));
return browser.exports;
}
Expand Down Expand Up @@ -1322,7 +1322,7 @@ function requireNode () {
formatters.O = function (v) {
this.inspectOpts.colors = this.useColors;
return util.inspect(v, this.inspectOpts);
};
};
} (node, node.exports));
return node.exports;
}
Expand Down Expand Up @@ -3772,7 +3772,7 @@ var sax$1 = {};
}
}());
}
})(exports);
})(exports);
} (sax$1));

Object.defineProperty(xml, "__esModule", { value: true });
Expand Down Expand Up @@ -3975,7 +3975,7 @@ function equals(firstValue, secondValue) {
return [v];
}
}

} (out));

var fs$i = {};
Expand Down Expand Up @@ -5078,7 +5078,7 @@ function retry () {
'fs.realpath.native is not a function. Is fs being monkey-patched?',
'Warning', 'fs-extra-WARN0003'
);
}
}
} (fs$i));

var makeDir$1 = {};
Expand Down Expand Up @@ -10951,7 +10951,7 @@ var debug_1 = debug$1;
createToken('STAR', '(<|>)?=?\\s*\\*');
// >=0.0.0 is like a star
createToken('GTE0', '^\\s*>=\\s*0\\.0\\.0\\s*$');
createToken('GTE0PRE', '^\\s*>=\\s*0\\.0\\.0-0\\s*$');
createToken('GTE0PRE', '^\\s*>=\\s*0\\.0\\.0-0\\s*$');
} (re$2, re$2.exports));

var reExports = re$2.exports;
Expand Down Expand Up @@ -11603,46 +11603,54 @@ const coerce$1 = (version, options) => {
};
var coerce_1 = coerce$1;

class LRUCache {
constructor () {
this.max = 1000;
this.map = new Map();
}
var lrucache;
var hasRequiredLrucache;

get (key) {
const value = this.map.get(key);
if (value === undefined) {
return undefined
} else {
// Remove the key from the map and add it to the end
this.map.delete(key);
this.map.set(key, value);
return value
}
}
function requireLrucache () {
if (hasRequiredLrucache) return lrucache;
hasRequiredLrucache = 1;
class LRUCache {
constructor () {
this.max = 1000;
this.map = new Map();
}

delete (key) {
return this.map.delete(key)
}
get (key) {
const value = this.map.get(key);
if (value === undefined) {
return undefined
} else {
// Remove the key from the map and add it to the end
this.map.delete(key);
this.map.set(key, value);
return value
}
}

set (key, value) {
const deleted = this.delete(key);
delete (key) {
return this.map.delete(key)
}

if (!deleted && value !== undefined) {
// If cache is full, delete the least recently used item
if (this.map.size >= this.max) {
const firstKey = this.map.keys().next().value;
this.delete(firstKey);
}
set (key, value) {
const deleted = this.delete(key);

this.map.set(key, value);
}
if (!deleted && value !== undefined) {
// If cache is full, delete the least recently used item
if (this.map.size >= this.max) {
const firstKey = this.map.keys().next().value;
this.delete(firstKey);
}

return this
}
}
this.map.set(key, value);
}

var lrucache = LRUCache;
return this
}
}

lrucache = LRUCache;
return lrucache;
}

var range;
var hasRequiredRange;
Expand Down Expand Up @@ -11864,7 +11872,7 @@ function requireRange () {

range = Range;

const LRU = lrucache;
const LRU = requireLrucache();
const cache = new LRU();

const parseOptions = parseOptions_1;
Expand Down Expand Up @@ -14840,7 +14848,7 @@ lodash_isequal.exports;
return false;
}

module.exports = isEqual;
module.exports = isEqual;
} (lodash_isequal, lodash_isequal.exports));

var lodash_isequalExports = lodash_isequal.exports;
Expand Down Expand Up @@ -15159,7 +15167,7 @@ var electronHttpExecutor = {};
}
}
exports.ElectronHttpExecutor = ElectronHttpExecutor;

} (electronHttpExecutor));

var GenericProvider$1 = {};
Expand Down Expand Up @@ -17459,7 +17467,7 @@ function requireAppUpdater () {
}
}
AppUpdater.NoOpLogger = NoOpLogger;

return AppUpdater;
}

Expand Down Expand Up @@ -17615,7 +17623,7 @@ function requireBaseUpdater () {
}
};
BaseUpdater.BaseUpdater = BaseUpdater$1;

return BaseUpdater;
}

Expand Down Expand Up @@ -17770,7 +17778,7 @@ function requireAppImageUpdater () {
}
};
AppImageUpdater.AppImageUpdater = AppImageUpdater$1;

return AppImageUpdater;
}

Expand Down Expand Up @@ -17819,7 +17827,7 @@ function requireDebUpdater () {
}
};
DebUpdater.DebUpdater = DebUpdater$1;

return DebUpdater;
}

Expand Down Expand Up @@ -17877,7 +17885,7 @@ function requireRpmUpdater () {
}
};
RpmUpdater.RpmUpdater = RpmUpdater$1;

return RpmUpdater;
}

Expand Down Expand Up @@ -18134,7 +18142,7 @@ function requireMacUpdater () {
}
};
MacUpdater.MacUpdater = MacUpdater$1;

return MacUpdater;
}

Expand Down Expand Up @@ -18453,7 +18461,7 @@ function requireNsisUpdater () {
}
};
NsisUpdater.NsisUpdater = NsisUpdater$1;

return NsisUpdater;
}

Expand Down Expand Up @@ -18557,7 +18565,7 @@ function requireMain () {
emitter.on(event, handler);
}
}

} (main$2));
return main$2;
}
Expand Down
Loading

0 comments on commit 8f61ab1

Please sign in to comment.