@our2ndbrain/cli 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.obsidian/.2ndbrain-manifest.json +8 -0
- package/.obsidian/app.json +6 -0
- package/.obsidian/appearance.json +1 -0
- package/.obsidian/community-plugins.json +4 -0
- package/.obsidian/core-plugins.json +33 -0
- package/.obsidian/graph.json +22 -0
- package/.obsidian/plugins/calendar/data.json +10 -0
- package/.obsidian/plugins/calendar/main.js +4459 -0
- package/.obsidian/plugins/calendar/manifest.json +10 -0
- package/.obsidian/plugins/obsidian-custom-attachment-location/data.json +32 -0
- package/.obsidian/plugins/obsidian-custom-attachment-location/main.js +575 -0
- package/.obsidian/plugins/obsidian-custom-attachment-location/manifest.json +11 -0
- package/.obsidian/plugins/obsidian-custom-attachment-location/styles.css +1 -0
- package/.obsidian/plugins/obsidian-git/data.json +62 -0
- package/.obsidian/plugins/obsidian-git/main.js +426 -0
- package/.obsidian/plugins/obsidian-git/manifest.json +10 -0
- package/.obsidian/plugins/obsidian-git/obsidian_askpass.sh +23 -0
- package/.obsidian/plugins/obsidian-git/styles.css +629 -0
- package/.obsidian/plugins/obsidian-tasks-plugin/main.js +504 -0
- package/.obsidian/plugins/obsidian-tasks-plugin/manifest.json +12 -0
- package/.obsidian/plugins/obsidian-tasks-plugin/styles.css +1 -0
- package/.obsidian/types.json +28 -0
- package/00_Dashboard/01_All_Tasks.md +118 -0
- package/00_Dashboard/09_All_Done.md +42 -0
- package/10_Inbox/Agents/Journal.md +1 -0
- package/99_System/Scripts/init_member.sh +108 -0
- package/99_System/Templates/tpl_daily_note.md +13 -0
- package/99_System/Templates/tpl_member_done.md +32 -0
- package/99_System/Templates/tpl_member_tasks.md +97 -0
- package/AGENTS.md +193 -0
- package/CHANGELOG.md +67 -0
- package/CLAUDE.md +153 -0
- package/LICENSE +201 -0
- package/README.md +636 -0
- package/bin/2ndbrain.js +117 -0
- package/package.json +56 -0
- package/src/commands/completion.js +198 -0
- package/src/commands/init.js +308 -0
- package/src/commands/member.js +123 -0
- package/src/commands/remove.js +88 -0
- package/src/commands/update.js +507 -0
- package/src/index.js +17 -0
- package/src/lib/config.js +112 -0
- package/src/lib/diff.js +222 -0
- package/src/lib/files.js +340 -0
- package/src/lib/obsidian.js +366 -0
- package/src/lib/prompt.js +182 -0
|
@@ -0,0 +1,575 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
|
|
3
|
+
if you want to view the source, please visit the github repository of this plugin
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
(function initCjs() {
|
|
7
|
+
const globalThisRecord = globalThis;
|
|
8
|
+
globalThisRecord["__name"] ??= name;
|
|
9
|
+
const originalRequire = require;
|
|
10
|
+
if (originalRequire && !originalRequire.__isPatched) {
|
|
11
|
+
require = Object.assign(
|
|
12
|
+
(id) => requirePatched(id),
|
|
13
|
+
originalRequire,
|
|
14
|
+
{
|
|
15
|
+
__isPatched: true
|
|
16
|
+
}
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
const newFuncs = {
|
|
20
|
+
__extractDefault() {
|
|
21
|
+
return extractDefault;
|
|
22
|
+
},
|
|
23
|
+
process() {
|
|
24
|
+
const browserProcess = {
|
|
25
|
+
browser: true,
|
|
26
|
+
cwd() {
|
|
27
|
+
return "/";
|
|
28
|
+
},
|
|
29
|
+
env: {},
|
|
30
|
+
platform: "android"
|
|
31
|
+
};
|
|
32
|
+
return browserProcess;
|
|
33
|
+
}
|
|
34
|
+
};
|
|
35
|
+
for (const key of Object.keys(newFuncs)) {
|
|
36
|
+
globalThisRecord[key] ??= newFuncs[key]?.();
|
|
37
|
+
}
|
|
38
|
+
function name(obj) {
|
|
39
|
+
return obj;
|
|
40
|
+
}
|
|
41
|
+
function extractDefault(module2) {
|
|
42
|
+
return module2 && module2.__esModule && "default" in module2 ? module2.default : module2;
|
|
43
|
+
}
|
|
44
|
+
const OBSIDIAN_BUILT_IN_MODULE_NAMES = [
|
|
45
|
+
"obsidian",
|
|
46
|
+
"@codemirror/autocomplete",
|
|
47
|
+
"@codemirror/collab",
|
|
48
|
+
"@codemirror/commands",
|
|
49
|
+
"@codemirror/language",
|
|
50
|
+
"@codemirror/lint",
|
|
51
|
+
"@codemirror/search",
|
|
52
|
+
"@codemirror/state",
|
|
53
|
+
"@codemirror/text",
|
|
54
|
+
"@codemirror/view",
|
|
55
|
+
"@lezer/common",
|
|
56
|
+
"@lezer/lr",
|
|
57
|
+
"@lezer/highlight"
|
|
58
|
+
];
|
|
59
|
+
const DEPRECATED_OBSIDIAN_BUILT_IN_MODULE_NAMES = [
|
|
60
|
+
"@codemirror/closebrackets",
|
|
61
|
+
"@codemirror/comment",
|
|
62
|
+
"@codemirror/fold",
|
|
63
|
+
"@codemirror/gutter",
|
|
64
|
+
"@codemirror/highlight",
|
|
65
|
+
"@codemirror/history",
|
|
66
|
+
"@codemirror/matchbrackets",
|
|
67
|
+
"@codemirror/panel",
|
|
68
|
+
"@codemirror/rangeset",
|
|
69
|
+
"@codemirror/rectangular-selection",
|
|
70
|
+
"@codemirror/stream-parser",
|
|
71
|
+
"@codemirror/tooltip"
|
|
72
|
+
];
|
|
73
|
+
function requirePatched(id) {
|
|
74
|
+
if (OBSIDIAN_BUILT_IN_MODULE_NAMES.includes(id) || DEPRECATED_OBSIDIAN_BUILT_IN_MODULE_NAMES.includes(id)) {
|
|
75
|
+
return originalRequire?.(id);
|
|
76
|
+
}
|
|
77
|
+
if (globalThis?.app?.isMobile) {
|
|
78
|
+
if (id === "process" || id === "node:process") {
|
|
79
|
+
console.debug(`The most likely you can safely ignore this error. Module not found: ${id}. Fake process object is returned instead.`);
|
|
80
|
+
return globalThis.process;
|
|
81
|
+
}
|
|
82
|
+
} else {
|
|
83
|
+
const module2 = originalRequire?.(id);
|
|
84
|
+
if (module2) {
|
|
85
|
+
return extractDefault(module2);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
console.debug(`The most likely you can safely ignore this error. Module not found: ${id}. Empty object is returned instead.`);
|
|
89
|
+
return {};
|
|
90
|
+
}
|
|
91
|
+
})();
|
|
92
|
+
|
|
93
|
+
"use strict";var nk=Object.create;var pa=Object.defineProperty;var ak=Object.getOwnPropertyDescriptor;var rk=Object.getOwnPropertyNames;var ik=Object.getPrototypeOf,ok=Object.prototype.hasOwnProperty;var i=(t,e)=>pa(t,"name",{value:e,configurable:!0});var N=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),Oc=(t,e)=>{for(var n in e)pa(t,n,{get:e[n],enumerable:!0})},Dc=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let a of rk(e))!ok.call(t,a)&&a!==n&&pa(t,a,{get:()=>e[a],enumerable:!(r=ak(e,a))||r.enumerable});return t};var Mt=(t,e,n)=>(n=t!=null?nk(ik(t)):{},Dc(e||!t||!t.__esModule?pa(n,"default",{value:t,enumerable:!0}):n,t)),sk=t=>Dc(pa({},"__esModule",{value:!0}),t);var _c=N((mT,Vc)=>{var Pn=1e3,En=Pn*60,Fn=En*60,Zt=Fn*24,lk=Zt*7,ck=Zt*365.25;Vc.exports=function(t,e){e=e||{};var n=typeof t;if(n==="string"&&t.length>0)return pk(t);if(n==="number"&&isFinite(t))return e.long?uk(t):dk(t);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(t))};function pk(t){if(t=String(t),!(t.length>100)){var e=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(t);if(e){var n=parseFloat(e[1]),r=(e[2]||"ms").toLowerCase();switch(r){case"years":case"year":case"yrs":case"yr":case"y":return n*ck;case"weeks":case"week":case"w":return n*lk;case"days":case"day":case"d":return n*Zt;case"hours":case"hour":case"hrs":case"hr":case"h":return n*Fn;case"minutes":case"minute":case"mins":case"min":case"m":return n*En;case"seconds":case"second":case"secs":case"sec":case"s":return n*Pn;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return n;default:return}}}}i(pk,"parse");function dk(t){var e=Math.abs(t);return e>=Zt?Math.round(t/Zt)+"d":e>=Fn?Math.round(t/Fn)+"h":e>=En?Math.round(t/En)+"m":e>=Pn?Math.round(t/Pn)+"s":t+"ms"}i(dk,"fmtShort");function uk(t){var e=Math.abs(t);return e>=Zt?Xa(t,e,Zt,"day"):e>=Fn?Xa(t,e,Fn,"hour"):e>=En?Xa(t,e,En,"minute"):e>=Pn?Xa(t,e,Pn,"second"):t+" ms"}i(uk,"fmtLong");function Xa(t,e,n,r){var a=e>=n*1.5;return Math.round(t/n)+" "+r+(a?"s":"")}i(Xa,"plural")});var Oo=N((gT,$c)=>{function mk(t){n.debug=n,n.default=n,n.coerce=c,n.disable=s,n.enable=a,n.enabled=l,n.humanize=_c(),n.destroy=p,Object.keys(t).forEach(d=>{n[d]=t[d]}),n.names=[],n.skips=[],n.formatters={};function e(d){let u=0;for(let h=0;h<d.length;h++)u=(u<<5)-u+d.charCodeAt(h),u|=0;return n.colors[Math.abs(u)%n.colors.length]}i(e,"selectColor"),n.selectColor=e;function n(d){let u,h=null,m,v;function A(...b){if(!A.enabled)return;let y=A,w=Number(new Date),T=w-(u||w);y.diff=T,y.prev=u,y.curr=w,u=w,b[0]=n.coerce(b[0]),typeof b[0]!="string"&&b.unshift("%O");let P=0;b[0]=b[0].replace(/%([a-zA-Z%])/g,(x,q)=>{if(x==="%%")return"%";P++;let Y=n.formatters[q];if(typeof Y=="function"){let B=b[P];x=Y.call(y,B),b.splice(P,1),P--}return x}),n.formatArgs.call(y,b),(y.log||n.log).apply(y,b)}return i(A,"debug"),A.namespace=d,A.useColors=n.useColors(),A.color=n.selectColor(d),A.extend=r,A.destroy=n.destroy,Object.defineProperty(A,"enabled",{enumerable:!0,configurable:!1,get:i(()=>h!==null?h:(m!==n.namespaces&&(m=n.namespaces,v=n.enabled(d)),v),"get"),set:i(b=>{h=b},"set")}),typeof n.init=="function"&&n.init(A),A}i(n,"createDebug");function r(d,u){let h=n(this.namespace+(typeof u>"u"?":":u)+d);return h.log=this.log,h}i(r,"extend");function a(d){n.save(d),n.namespaces=d,n.names=[],n.skips=[];let u=(typeof d=="string"?d:"").trim().replace(/\s+/g,",").split(",").filter(Boolean);for(let h of u)h[0]==="-"?n.skips.push(h.slice(1)):n.names.push(h)}i(a,"enable");function o(d,u){let h=0,m=0,v=-1,A=0;for(;h<d.length;)if(m<u.length&&(u[m]===d[h]||u[m]==="*"))u[m]==="*"?(v=m,A=h,m++):(h++,m++);else if(v!==-1)m=v+1,A++,h=A;else return!1;for(;m<u.length&&u[m]==="*";)m++;return m===u.length}i(o,"matchesTemplate");function s(){let d=[...n.names,...n.skips.map(u=>"-"+u)].join(",");return n.enable(""),d}i(s,"disable");function l(d){for(let u of n.skips)if(o(d,u))return!1;for(let u of n.names)if(o(d,u))return!0;return!1}i(l,"enabled");function c(d){return d instanceof Error?d.stack||d.message:d}i(c,"coerce");function p(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")}return i(p,"destroy"),n.enable(n.load()),n}i(mk,"setup");$c.exports=mk});var qc=N((Be,er)=>{Be.formatArgs=gk;Be.save=fk;Be.load=kk;Be.useColors=hk;Be.storage=vk();Be.destroy=(()=>{let t=!1;return()=>{t||(t=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."))}})();Be.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];function hk(){if(typeof window<"u"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs))return!0;if(typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return!1;let t;return typeof document<"u"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window<"u"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator<"u"&&navigator.userAgent&&(t=navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/))&&parseInt(t[1],10)>=31||typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)}i(hk,"useColors");function gk(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+er.exports.humanize(this.diff),!this.useColors)return;let e="color: "+this.color;t.splice(1,0,e,"color: inherit");let n=0,r=0;t[0].replace(/%[a-zA-Z%]/g,a=>{a!=="%%"&&(n++,a==="%c"&&(r=n))}),t.splice(r,0,e)}i(gk,"formatArgs");Be.log=console.debug||console.log||(()=>{});function fk(t){try{t?Be.storage.setItem("debug",t):Be.storage.removeItem("debug")}catch{}}i(fk,"save");function kk(){let t;try{t=Be.storage.getItem("debug")||Be.storage.getItem("DEBUG")}catch{}return!t&&typeof process<"u"&&"env"in process&&(t=process.env.DEBUG),t}i(kk,"load");function vk(){try{return localStorage}catch{}}i(vk,"localstorage");er.exports=Oo()(Be);var{formatters:yk}=er.exports;yk.j=function(t){try{return JSON.stringify(t)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}}});var Wc=N((vT,Gc)=>{"use strict";Gc.exports=(t,e=process.argv)=>{let n=t.startsWith("-")?"":t.length===1?"-":"--",r=e.indexOf(n+t),a=e.indexOf("--");return r!==-1&&(a===-1||r<a)}});var Kc=N((yT,Hc)=>{"use strict";var bk=require("os"),Jc=require("tty"),Ye=Wc(),{env:me}=process,tr;Ye("no-color")||Ye("no-colors")||Ye("color=false")||Ye("color=never")?tr=0:(Ye("color")||Ye("colors")||Ye("color=true")||Ye("color=always"))&&(tr=1);function Ak(){if("FORCE_COLOR"in me)return me.FORCE_COLOR==="true"?1:me.FORCE_COLOR==="false"?0:me.FORCE_COLOR.length===0?1:Math.min(Number.parseInt(me.FORCE_COLOR,10),3)}i(Ak,"envForceColor");function wk(t){return t===0?!1:{level:t,hasBasic:!0,has256:t>=2,has16m:t>=3}}i(wk,"translateLevel");function xk(t,{streamIsTTY:e,sniffFlags:n=!0}={}){let r=Ak();r!==void 0&&(tr=r);let a=n?tr:r;if(a===0)return 0;if(n){if(Ye("color=16m")||Ye("color=full")||Ye("color=truecolor"))return 3;if(Ye("color=256"))return 2}if(t&&!e&&a===void 0)return 0;let o=a||0;if(me.TERM==="dumb")return o;if(process.platform==="win32"){let s=bk.release().split(".");return Number(s[0])>=10&&Number(s[2])>=10586?Number(s[2])>=14931?3:2:1}if("CI"in me)return["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI","GITHUB_ACTIONS","BUILDKITE","DRONE"].some(s=>s in me)||me.CI_NAME==="codeship"?1:o;if("TEAMCITY_VERSION"in me)return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(me.TEAMCITY_VERSION)?1:0;if(me.COLORTERM==="truecolor")return 3;if("TERM_PROGRAM"in me){let s=Number.parseInt((me.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(me.TERM_PROGRAM){case"iTerm.app":return s>=3?3:2;case"Apple_Terminal":return 2}}return/-256(color)?$/i.test(me.TERM)?2:/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(me.TERM)||"COLORTERM"in me?1:o}i(xk,"supportsColor");function Do(t,e={}){let n=xk(t,{streamIsTTY:t&&t.isTTY,...e});return wk(n)}i(Do,"getSupportLevel");Hc.exports={supportsColor:Do,stdout:Do({isTTY:Jc.isatty(1)}),stderr:Do({isTTY:Jc.isatty(2)})}});var Qc=N((he,ar)=>{var Ck=require("tty"),nr=require("util");he.init=zk;he.log=Ek;he.formatArgs=Sk;he.save=Fk;he.load=Ik;he.useColors=Tk;he.destroy=nr.deprecate(()=>{},"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");he.colors=[6,2,3,4,5,1];try{let t=Kc();t&&(t.stderr||t).level>=2&&(he.colors=[20,21,26,27,32,33,38,39,40,41,42,43,44,45,56,57,62,63,68,69,74,75,76,77,78,79,80,81,92,93,98,99,112,113,128,129,134,135,148,149,160,161,162,163,164,165,166,167,168,169,170,171,172,173,178,179,184,185,196,197,198,199,200,201,202,203,204,205,206,207,208,209,214,215,220,221])}catch{}he.inspectOpts=Object.keys(process.env).filter(t=>/^debug_/i.test(t)).reduce((t,e)=>{let n=e.substring(6).toLowerCase().replace(/_([a-z])/g,(a,o)=>o.toUpperCase()),r=process.env[e];return/^(yes|on|true|enabled)$/i.test(r)?r=!0:/^(no|off|false|disabled)$/i.test(r)?r=!1:r==="null"?r=null:r=Number(r),t[n]=r,t},{});function Tk(){return"colors"in he.inspectOpts?!!he.inspectOpts.colors:Ck.isatty(process.stderr.fd)}i(Tk,"useColors");function Sk(t){let{namespace:e,useColors:n}=this;if(n){let r=this.color,a="\x1B[3"+(r<8?r:"8;5;"+r),o=` ${a};1m${e} \x1B[0m`;t[0]=o+t[0].split(`
|
|
94
|
+
`).join(`
|
|
95
|
+
`+o),t.push(a+"m+"+ar.exports.humanize(this.diff)+"\x1B[0m")}else t[0]=Pk()+e+" "+t[0]}i(Sk,"formatArgs");function Pk(){return he.inspectOpts.hideDate?"":new Date().toISOString()+" "}i(Pk,"getDate");function Ek(...t){return process.stderr.write(nr.formatWithOptions(he.inspectOpts,...t)+`
|
|
96
|
+
`)}i(Ek,"log");function Fk(t){t?process.env.DEBUG=t:delete process.env.DEBUG}i(Fk,"save");function Ik(){return process.env.DEBUG}i(Ik,"load");function zk(t){t.inspectOpts={};let e=Object.keys(he.inspectOpts);for(let n=0;n<e.length;n++)t.inspectOpts[e[n]]=he.inspectOpts[e[n]]}i(zk,"init");ar.exports=Oo()(he);var{formatters:Yc}=ar.exports;Yc.o=function(t){return this.inspectOpts.colors=this.useColors,nr.inspect(t,this.inspectOpts).split(`
|
|
97
|
+
`).map(e=>e.trim()).join(" ")};Yc.O=function(t){return this.inspectOpts.colors=this.useColors,nr.inspect(t,this.inspectOpts)}});var Zc=N((wT,Bo)=>{typeof process>"u"||process.type==="renderer"||process.browser===!0||process.__nwjs?Bo.exports=qc():Bo.exports=Qc()});var Pp=N((yS,Sp)=>{"use strict";function yt(t){if(typeof t!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(t))}i(yt,"assertPath");function Tp(t,e){for(var n="",r=0,a=-1,o=0,s,l=0;l<=t.length;++l){if(l<t.length)s=t.charCodeAt(l);else{if(s===47)break;s=47}if(s===47){if(!(a===l-1||o===1))if(a!==l-1&&o===2){if(n.length<2||r!==2||n.charCodeAt(n.length-1)!==46||n.charCodeAt(n.length-2)!==46){if(n.length>2){var c=n.lastIndexOf("/");if(c!==n.length-1){c===-1?(n="",r=0):(n=n.slice(0,c),r=n.length-1-n.lastIndexOf("/")),a=l,o=0;continue}}else if(n.length===2||n.length===1){n="",r=0,a=l,o=0;continue}}e&&(n.length>0?n+="/..":n="..",r=2)}else n.length>0?n+="/"+t.slice(a+1,l):n=t.slice(a+1,l),r=l-a-1;a=l,o=0}else s===46&&o!==-1?++o:o=-1}return n}i(Tp,"normalizeStringPosix");function cv(t,e){var n=e.dir||e.root,r=e.base||(e.name||"")+(e.ext||"");return n?n===e.root?n+r:n+t+r:r}i(cv,"_format");var Rn={resolve:i(function(){for(var e="",n=!1,r,a=arguments.length-1;a>=-1&&!n;a--){var o;a>=0?o=arguments[a]:(r===void 0&&(r=process.cwd()),o=r),yt(o),o.length!==0&&(e=o+"/"+e,n=o.charCodeAt(0)===47)}return e=Tp(e,!n),n?e.length>0?"/"+e:"/":e.length>0?e:"."},"resolve"),normalize:i(function(e){if(yt(e),e.length===0)return".";var n=e.charCodeAt(0)===47,r=e.charCodeAt(e.length-1)===47;return e=Tp(e,!n),e.length===0&&!n&&(e="."),e.length>0&&r&&(e+="/"),n?"/"+e:e},"normalize"),isAbsolute:i(function(e){return yt(e),e.length>0&&e.charCodeAt(0)===47},"isAbsolute"),join:i(function(){if(arguments.length===0)return".";for(var e,n=0;n<arguments.length;++n){var r=arguments[n];yt(r),r.length>0&&(e===void 0?e=r:e+="/"+r)}return e===void 0?".":Rn.normalize(e)},"join"),relative:i(function(e,n){if(yt(e),yt(n),e===n||(e=Rn.resolve(e),n=Rn.resolve(n),e===n))return"";for(var r=1;r<e.length&&e.charCodeAt(r)===47;++r);for(var a=e.length,o=a-r,s=1;s<n.length&&n.charCodeAt(s)===47;++s);for(var l=n.length,c=l-s,p=o<c?o:c,d=-1,u=0;u<=p;++u){if(u===p){if(c>p){if(n.charCodeAt(s+u)===47)return n.slice(s+u+1);if(u===0)return n.slice(s+u)}else o>p&&(e.charCodeAt(r+u)===47?d=u:u===0&&(d=0));break}var h=e.charCodeAt(r+u),m=n.charCodeAt(s+u);if(h!==m)break;h===47&&(d=u)}var v="";for(u=r+d+1;u<=a;++u)(u===a||e.charCodeAt(u)===47)&&(v.length===0?v+="..":v+="/..");return v.length>0?v+n.slice(s+d):(s+=d,n.charCodeAt(s)===47&&++s,n.slice(s))},"relative"),_makeLong:i(function(e){return e},"_makeLong"),dirname:i(function(e){if(yt(e),e.length===0)return".";for(var n=e.charCodeAt(0),r=n===47,a=-1,o=!0,s=e.length-1;s>=1;--s)if(n=e.charCodeAt(s),n===47){if(!o){a=s;break}}else o=!1;return a===-1?r?"/":".":r&&a===1?"//":e.slice(0,a)},"dirname"),basename:i(function(e,n){if(n!==void 0&&typeof n!="string")throw new TypeError('"ext" argument must be a string');yt(e);var r=0,a=-1,o=!0,s;if(n!==void 0&&n.length>0&&n.length<=e.length){if(n.length===e.length&&n===e)return"";var l=n.length-1,c=-1;for(s=e.length-1;s>=0;--s){var p=e.charCodeAt(s);if(p===47){if(!o){r=s+1;break}}else c===-1&&(o=!1,c=s+1),l>=0&&(p===n.charCodeAt(l)?--l===-1&&(a=s):(l=-1,a=c))}return r===a?a=c:a===-1&&(a=e.length),e.slice(r,a)}else{for(s=e.length-1;s>=0;--s)if(e.charCodeAt(s)===47){if(!o){r=s+1;break}}else a===-1&&(o=!1,a=s+1);return a===-1?"":e.slice(r,a)}},"basename"),extname:i(function(e){yt(e);for(var n=-1,r=0,a=-1,o=!0,s=0,l=e.length-1;l>=0;--l){var c=e.charCodeAt(l);if(c===47){if(!o){r=l+1;break}continue}a===-1&&(o=!1,a=l+1),c===46?n===-1?n=l:s!==1&&(s=1):n!==-1&&(s=-1)}return n===-1||a===-1||s===0||s===1&&n===a-1&&n===r+1?"":e.slice(n,a)},"extname"),format:i(function(e){if(e===null||typeof e!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof e);return cv("/",e)},"format"),parse:i(function(e){yt(e);var n={root:"",dir:"",base:"",ext:"",name:""};if(e.length===0)return n;var r=e.charCodeAt(0),a=r===47,o;a?(n.root="/",o=1):o=0;for(var s=-1,l=0,c=-1,p=!0,d=e.length-1,u=0;d>=o;--d){if(r=e.charCodeAt(d),r===47){if(!p){l=d+1;break}continue}c===-1&&(p=!1,c=d+1),r===46?s===-1?s=d:u!==1&&(u=1):s!==-1&&(u=-1)}return s===-1||c===-1||u===0||u===1&&s===c-1&&s===l+1?c!==-1&&(l===0&&a?n.base=n.name=e.slice(1,c):n.base=n.name=e.slice(l,c)):(l===0&&a?(n.name=e.slice(1,s),n.base=e.slice(1,c)):(n.name=e.slice(l,s),n.base=e.slice(l,c)),n.ext=e.slice(s,c)),l>0?n.dir=e.slice(0,l-1):a&&(n.dir="/"),n},"parse"),sep:"/",delimiter:":",win32:null,posix:null};Rn.posix=Rn;Sp.exports=Rn});var Qd=N((Oz,Yd)=>{"use strict";var Or=Object.prototype.hasOwnProperty,Kd=Object.prototype.toString,$d=Object.defineProperty,qd=Object.getOwnPropertyDescriptor,Gd=i(function(e){return typeof Array.isArray=="function"?Array.isArray(e):Kd.call(e)==="[object Array]"},"isArray"),Wd=i(function(e){if(!e||Kd.call(e)!=="[object Object]")return!1;var n=Or.call(e,"constructor"),r=e.constructor&&e.constructor.prototype&&Or.call(e.constructor.prototype,"isPrototypeOf");if(e.constructor&&!n&&!r)return!1;var a;for(a in e);return typeof a>"u"||Or.call(e,a)},"isPlainObject"),Jd=i(function(e,n){$d&&n.name==="__proto__"?$d(e,n.name,{enumerable:!0,configurable:!0,value:n.newValue,writable:!0}):e[n.name]=n.newValue},"setProperty"),Hd=i(function(e,n){if(n==="__proto__")if(Or.call(e,n)){if(qd)return qd(e,n).value}else return;return e[n]},"getProperty");Yd.exports=i(function t(){var e,n,r,a,o,s,l=arguments[0],c=1,p=arguments.length,d=!1;for(typeof l=="boolean"&&(d=l,l=arguments[1]||{},c=2),(l==null||typeof l!="object"&&typeof l!="function")&&(l={});c<p;++c)if(e=arguments[c],e!=null)for(n in e)r=Hd(l,n),a=Hd(e,n),l!==a&&(d&&a&&(Wd(a)||(o=Gd(a)))?(o?(o=!1,s=r&&Gd(r)?r:[]):s=r&&Wd(r)?r:{},Jd(l,{name:n,newValue:t(d,s,a)})):typeof a<"u"&&Jd(l,{name:n,newValue:a}));return l},"extend")});var om=N((ci,im)=>{(function(t,e){typeof ci=="object"&&typeof im<"u"?e(ci):typeof define=="function"&&define.amd?define(["exports"],e):(t=typeof globalThis<"u"?globalThis:t||self,e(t.compareVersions={}))})(ci,(function(t){"use strict";let e=/^[v^~<>=]*?(\d+)(?:\.([x*]|\d+)(?:\.([x*]|\d+)(?:\.([x*]|\d+))?(?:-([\da-z\-]+(?:\.[\da-z\-]+)*))?(?:\+[\da-z\-]+(?:\.[\da-z\-]+)*)?)?)?$/i,n=i(b=>{if(typeof b!="string")throw new TypeError("Invalid argument expected string");let y=b.match(e);if(!y)throw new Error(`Invalid argument not valid semver ('${b}' received)`);return y.shift(),y},"validateAndParse"),r=i(b=>b==="*"||b==="x"||b==="X","isWildcard"),a=i(b=>{let y=parseInt(b,10);return isNaN(y)?b:y},"tryParse"),o=i((b,y)=>typeof b!=typeof y?[String(b),String(y)]:[b,y],"forceType"),s=i((b,y)=>{if(r(b)||r(y))return 0;let[w,T]=o(a(b),a(y));return w>T?1:w<T?-1:0},"compareStrings"),l=i((b,y)=>{for(let w=0;w<Math.max(b.length,y.length);w++){let T=s(b[w]||"0",y[w]||"0");if(T!==0)return T}return 0},"compareSegments"),c=i((b,y)=>{let w=n(b),T=n(y),P=w.pop(),j=T.pop(),x=l(w,T);return x!==0?x:P&&j?l(P.split("."),j.split(".")):P||j?P?-1:1:0},"compareVersions"),p=i((b,y,w)=>{h(w);let T=c(b,y);return d[w].includes(T)},"compare"),d={">":[1],">=":[0,1],"=":[0],"<=":[-1,0],"<":[-1],"!=":[-1,1]},u=Object.keys(d),h=i(b=>{if(typeof b!="string")throw new TypeError(`Invalid operator type, expected string but got ${typeof b}`);if(u.indexOf(b)===-1)throw new Error(`Invalid operator, expected one of ${u.join("|")}`)},"assertValidOperator"),m=i((b,y)=>{if(y=y.replace(/([><=]+)\s+/g,"$1"),y.includes("||"))return y.split("||").some(G=>m(b,G));if(y.includes(" - ")){let[G,Z]=y.split(" - ",2);return m(b,`>=${G} <=${Z}`)}else if(y.includes(" "))return y.trim().replace(/\s{2,}/g," ").split(" ").every(G=>m(b,G));let w=y.match(/^([<>=~^]+)/),T=w?w[1]:"=";if(T!=="^"&&T!=="~")return p(b,y,T);let[P,j,x,,q]=n(b),[Y,B,W,,ke]=n(y),K=[P,j,x],E=[Y,B??"x",W??"x"];if(ke&&(!q||l(K,E)!==0||l(q.split("."),ke.split("."))===-1))return!1;let L=E.findIndex(G=>G!=="0")+1,O=T==="~"?2:L>1?L:1;return!(l(K.slice(0,O),E.slice(0,O))!==0||l(K.slice(O),E.slice(O))===-1)},"satisfies"),v=i(b=>typeof b=="string"&&/^[v\d]/.test(b)&&e.test(b),"validate"),A=i(b=>typeof b=="string"&&/^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/.test(b),"validateStrict");t.compare=p,t.compareVersions=c,t.satisfies=m,t.validate=v,t.validateStrict=A}))});var Cm=N((Ol,Dl)=>{(function(t,e,n){typeof Ol=="object"?(Dl.exports=n(),Dl.exports.default=n()):typeof define=="function"&&define.amd?define(n):e[t]=n()})("slugify",Ol,function(){var t=JSON.parse(`{"$":"dollar","%":"percent","&":"and","<":"less",">":"greater","|":"or","\xA2":"cent","\xA3":"pound","\xA4":"currency","\xA5":"yen","\xA9":"(c)","\xAA":"a","\xAE":"(r)","\xBA":"o","\xC0":"A","\xC1":"A","\xC2":"A","\xC3":"A","\xC4":"A","\xC5":"A","\xC6":"AE","\xC7":"C","\xC8":"E","\xC9":"E","\xCA":"E","\xCB":"E","\xCC":"I","\xCD":"I","\xCE":"I","\xCF":"I","\xD0":"D","\xD1":"N","\xD2":"O","\xD3":"O","\xD4":"O","\xD5":"O","\xD6":"O","\xD8":"O","\xD9":"U","\xDA":"U","\xDB":"U","\xDC":"U","\xDD":"Y","\xDE":"TH","\xDF":"ss","\xE0":"a","\xE1":"a","\xE2":"a","\xE3":"a","\xE4":"a","\xE5":"a","\xE6":"ae","\xE7":"c","\xE8":"e","\xE9":"e","\xEA":"e","\xEB":"e","\xEC":"i","\xED":"i","\xEE":"i","\xEF":"i","\xF0":"d","\xF1":"n","\xF2":"o","\xF3":"o","\xF4":"o","\xF5":"o","\xF6":"o","\xF8":"o","\xF9":"u","\xFA":"u","\xFB":"u","\xFC":"u","\xFD":"y","\xFE":"th","\xFF":"y","\u0100":"A","\u0101":"a","\u0102":"A","\u0103":"a","\u0104":"A","\u0105":"a","\u0106":"C","\u0107":"c","\u010C":"C","\u010D":"c","\u010E":"D","\u010F":"d","\u0110":"DJ","\u0111":"dj","\u0112":"E","\u0113":"e","\u0116":"E","\u0117":"e","\u0118":"e","\u0119":"e","\u011A":"E","\u011B":"e","\u011E":"G","\u011F":"g","\u0122":"G","\u0123":"g","\u0128":"I","\u0129":"i","\u012A":"i","\u012B":"i","\u012E":"I","\u012F":"i","\u0130":"I","\u0131":"i","\u0136":"k","\u0137":"k","\u013B":"L","\u013C":"l","\u013D":"L","\u013E":"l","\u0141":"L","\u0142":"l","\u0143":"N","\u0144":"n","\u0145":"N","\u0146":"n","\u0147":"N","\u0148":"n","\u014C":"O","\u014D":"o","\u0150":"O","\u0151":"o","\u0152":"OE","\u0153":"oe","\u0154":"R","\u0155":"r","\u0158":"R","\u0159":"r","\u015A":"S","\u015B":"s","\u015E":"S","\u015F":"s","\u0160":"S","\u0161":"s","\u0162":"T","\u0163":"t","\u0164":"T","\u0165":"t","\u0168":"U","\u0169":"u","\u016A":"u","\u016B":"u","\u016E":"U","\u016F":"u","\u0170":"U","\u0171":"u","\u0172":"U","\u0173":"u","\u0174":"W","\u0175":"w","\u0176":"Y","\u0177":"y","\u0178":"Y","\u0179":"Z","\u017A":"z","\u017B":"Z","\u017C":"z","\u017D":"Z","\u017E":"z","\u018F":"E","\u0192":"f","\u01A0":"O","\u01A1":"o","\u01AF":"U","\u01B0":"u","\u01C8":"LJ","\u01C9":"lj","\u01CB":"NJ","\u01CC":"nj","\u0218":"S","\u0219":"s","\u021A":"T","\u021B":"t","\u0259":"e","\u02DA":"o","\u0386":"A","\u0388":"E","\u0389":"H","\u038A":"I","\u038C":"O","\u038E":"Y","\u038F":"W","\u0390":"i","\u0391":"A","\u0392":"B","\u0393":"G","\u0394":"D","\u0395":"E","\u0396":"Z","\u0397":"H","\u0398":"8","\u0399":"I","\u039A":"K","\u039B":"L","\u039C":"M","\u039D":"N","\u039E":"3","\u039F":"O","\u03A0":"P","\u03A1":"R","\u03A3":"S","\u03A4":"T","\u03A5":"Y","\u03A6":"F","\u03A7":"X","\u03A8":"PS","\u03A9":"W","\u03AA":"I","\u03AB":"Y","\u03AC":"a","\u03AD":"e","\u03AE":"h","\u03AF":"i","\u03B0":"y","\u03B1":"a","\u03B2":"b","\u03B3":"g","\u03B4":"d","\u03B5":"e","\u03B6":"z","\u03B7":"h","\u03B8":"8","\u03B9":"i","\u03BA":"k","\u03BB":"l","\u03BC":"m","\u03BD":"n","\u03BE":"3","\u03BF":"o","\u03C0":"p","\u03C1":"r","\u03C2":"s","\u03C3":"s","\u03C4":"t","\u03C5":"y","\u03C6":"f","\u03C7":"x","\u03C8":"ps","\u03C9":"w","\u03CA":"i","\u03CB":"y","\u03CC":"o","\u03CD":"y","\u03CE":"w","\u0401":"Yo","\u0402":"DJ","\u0404":"Ye","\u0406":"I","\u0407":"Yi","\u0408":"J","\u0409":"LJ","\u040A":"NJ","\u040B":"C","\u040F":"DZ","\u0410":"A","\u0411":"B","\u0412":"V","\u0413":"G","\u0414":"D","\u0415":"E","\u0416":"Zh","\u0417":"Z","\u0418":"I","\u0419":"J","\u041A":"K","\u041B":"L","\u041C":"M","\u041D":"N","\u041E":"O","\u041F":"P","\u0420":"R","\u0421":"S","\u0422":"T","\u0423":"U","\u0424":"F","\u0425":"H","\u0426":"C","\u0427":"Ch","\u0428":"Sh","\u0429":"Sh","\u042A":"U","\u042B":"Y","\u042C":"","\u042D":"E","\u042E":"Yu","\u042F":"Ya","\u0430":"a","\u0431":"b","\u0432":"v","\u0433":"g","\u0434":"d","\u0435":"e","\u0436":"zh","\u0437":"z","\u0438":"i","\u0439":"j","\u043A":"k","\u043B":"l","\u043C":"m","\u043D":"n","\u043E":"o","\u043F":"p","\u0440":"r","\u0441":"s","\u0442":"t","\u0443":"u","\u0444":"f","\u0445":"h","\u0446":"c","\u0447":"ch","\u0448":"sh","\u0449":"sh","\u044A":"u","\u044B":"y","\u044C":"","\u044D":"e","\u044E":"yu","\u044F":"ya","\u0451":"yo","\u0452":"dj","\u0454":"ye","\u0456":"i","\u0457":"yi","\u0458":"j","\u0459":"lj","\u045A":"nj","\u045B":"c","\u045D":"u","\u045F":"dz","\u0490":"G","\u0491":"g","\u0492":"GH","\u0493":"gh","\u049A":"KH","\u049B":"kh","\u04A2":"NG","\u04A3":"ng","\u04AE":"UE","\u04AF":"ue","\u04B0":"U","\u04B1":"u","\u04BA":"H","\u04BB":"h","\u04D8":"AE","\u04D9":"ae","\u04E8":"OE","\u04E9":"oe","\u0531":"A","\u0532":"B","\u0533":"G","\u0534":"D","\u0535":"E","\u0536":"Z","\u0537":"E'","\u0538":"Y'","\u0539":"T'","\u053A":"JH","\u053B":"I","\u053C":"L","\u053D":"X","\u053E":"C'","\u053F":"K","\u0540":"H","\u0541":"D'","\u0542":"GH","\u0543":"TW","\u0544":"M","\u0545":"Y","\u0546":"N","\u0547":"SH","\u0549":"CH","\u054A":"P","\u054B":"J","\u054C":"R'","\u054D":"S","\u054E":"V","\u054F":"T","\u0550":"R","\u0551":"C","\u0553":"P'","\u0554":"Q'","\u0555":"O''","\u0556":"F","\u0587":"EV","\u0621":"a","\u0622":"aa","\u0623":"a","\u0624":"u","\u0625":"i","\u0626":"e","\u0627":"a","\u0628":"b","\u0629":"h","\u062A":"t","\u062B":"th","\u062C":"j","\u062D":"h","\u062E":"kh","\u062F":"d","\u0630":"th","\u0631":"r","\u0632":"z","\u0633":"s","\u0634":"sh","\u0635":"s","\u0636":"dh","\u0637":"t","\u0638":"z","\u0639":"a","\u063A":"gh","\u0641":"f","\u0642":"q","\u0643":"k","\u0644":"l","\u0645":"m","\u0646":"n","\u0647":"h","\u0648":"w","\u0649":"a","\u064A":"y","\u064B":"an","\u064C":"on","\u064D":"en","\u064E":"a","\u064F":"u","\u0650":"e","\u0652":"","\u0660":"0","\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u067E":"p","\u0686":"ch","\u0698":"zh","\u06A9":"k","\u06AF":"g","\u06CC":"y","\u06F0":"0","\u06F1":"1","\u06F2":"2","\u06F3":"3","\u06F4":"4","\u06F5":"5","\u06F6":"6","\u06F7":"7","\u06F8":"8","\u06F9":"9","\u0E3F":"baht","\u10D0":"a","\u10D1":"b","\u10D2":"g","\u10D3":"d","\u10D4":"e","\u10D5":"v","\u10D6":"z","\u10D7":"t","\u10D8":"i","\u10D9":"k","\u10DA":"l","\u10DB":"m","\u10DC":"n","\u10DD":"o","\u10DE":"p","\u10DF":"zh","\u10E0":"r","\u10E1":"s","\u10E2":"t","\u10E3":"u","\u10E4":"f","\u10E5":"k","\u10E6":"gh","\u10E7":"q","\u10E8":"sh","\u10E9":"ch","\u10EA":"ts","\u10EB":"dz","\u10EC":"ts","\u10ED":"ch","\u10EE":"kh","\u10EF":"j","\u10F0":"h","\u1E62":"S","\u1E63":"s","\u1E80":"W","\u1E81":"w","\u1E82":"W","\u1E83":"w","\u1E84":"W","\u1E85":"w","\u1E9E":"SS","\u1EA0":"A","\u1EA1":"a","\u1EA2":"A","\u1EA3":"a","\u1EA4":"A","\u1EA5":"a","\u1EA6":"A","\u1EA7":"a","\u1EA8":"A","\u1EA9":"a","\u1EAA":"A","\u1EAB":"a","\u1EAC":"A","\u1EAD":"a","\u1EAE":"A","\u1EAF":"a","\u1EB0":"A","\u1EB1":"a","\u1EB2":"A","\u1EB3":"a","\u1EB4":"A","\u1EB5":"a","\u1EB6":"A","\u1EB7":"a","\u1EB8":"E","\u1EB9":"e","\u1EBA":"E","\u1EBB":"e","\u1EBC":"E","\u1EBD":"e","\u1EBE":"E","\u1EBF":"e","\u1EC0":"E","\u1EC1":"e","\u1EC2":"E","\u1EC3":"e","\u1EC4":"E","\u1EC5":"e","\u1EC6":"E","\u1EC7":"e","\u1EC8":"I","\u1EC9":"i","\u1ECA":"I","\u1ECB":"i","\u1ECC":"O","\u1ECD":"o","\u1ECE":"O","\u1ECF":"o","\u1ED0":"O","\u1ED1":"o","\u1ED2":"O","\u1ED3":"o","\u1ED4":"O","\u1ED5":"o","\u1ED6":"O","\u1ED7":"o","\u1ED8":"O","\u1ED9":"o","\u1EDA":"O","\u1EDB":"o","\u1EDC":"O","\u1EDD":"o","\u1EDE":"O","\u1EDF":"o","\u1EE0":"O","\u1EE1":"o","\u1EE2":"O","\u1EE3":"o","\u1EE4":"U","\u1EE5":"u","\u1EE6":"U","\u1EE7":"u","\u1EE8":"U","\u1EE9":"u","\u1EEA":"U","\u1EEB":"u","\u1EEC":"U","\u1EED":"u","\u1EEE":"U","\u1EEF":"u","\u1EF0":"U","\u1EF1":"u","\u1EF2":"Y","\u1EF3":"y","\u1EF4":"Y","\u1EF5":"y","\u1EF6":"Y","\u1EF7":"y","\u1EF8":"Y","\u1EF9":"y","\u2013":"-","\u2018":"'","\u2019":"'","\u201C":"\\"","\u201D":"\\"","\u201E":"\\"","\u2020":"+","\u2022":"*","\u2026":"...","\u20A0":"ecu","\u20A2":"cruzeiro","\u20A3":"french franc","\u20A4":"lira","\u20A5":"mill","\u20A6":"naira","\u20A7":"peseta","\u20A8":"rupee","\u20A9":"won","\u20AA":"new shequel","\u20AB":"dong","\u20AC":"euro","\u20AD":"kip","\u20AE":"tugrik","\u20AF":"drachma","\u20B0":"penny","\u20B1":"peso","\u20B2":"guarani","\u20B3":"austral","\u20B4":"hryvnia","\u20B5":"cedi","\u20B8":"kazakhstani tenge","\u20B9":"indian rupee","\u20BA":"turkish lira","\u20BD":"russian ruble","\u20BF":"bitcoin","\u2120":"sm","\u2122":"tm","\u2202":"d","\u2206":"delta","\u2211":"sum","\u221E":"infinity","\u2665":"love","\u5143":"yuan","\u5186":"yen","\uFDFC":"rial","\uFEF5":"laa","\uFEF7":"laa","\uFEF9":"lai","\uFEFB":"la"}`),e=JSON.parse('{"bg":{"\u0419":"Y","\u0426":"Ts","\u0429":"Sht","\u042A":"A","\u042C":"Y","\u0439":"y","\u0446":"ts","\u0449":"sht","\u044A":"a","\u044C":"y"},"de":{"\xC4":"AE","\xE4":"ae","\xD6":"OE","\xF6":"oe","\xDC":"UE","\xFC":"ue","\xDF":"ss","%":"prozent","&":"und","|":"oder","\u2211":"summe","\u221E":"unendlich","\u2665":"liebe"},"es":{"%":"por ciento","&":"y","<":"menor que",">":"mayor que","|":"o","\xA2":"centavos","\xA3":"libras","\xA4":"moneda","\u20A3":"francos","\u2211":"suma","\u221E":"infinito","\u2665":"amor"},"fr":{"%":"pourcent","&":"et","<":"plus petit",">":"plus grand","|":"ou","\xA2":"centime","\xA3":"livre","\xA4":"devise","\u20A3":"franc","\u2211":"somme","\u221E":"infini","\u2665":"amour"},"pt":{"%":"porcento","&":"e","<":"menor",">":"maior","|":"ou","\xA2":"centavo","\u2211":"soma","\xA3":"libra","\u221E":"infinito","\u2665":"amor"},"uk":{"\u0418":"Y","\u0438":"y","\u0419":"Y","\u0439":"y","\u0426":"Ts","\u0446":"ts","\u0425":"Kh","\u0445":"kh","\u0429":"Shch","\u0449":"shch","\u0413":"H","\u0433":"h"},"vi":{"\u0110":"D","\u0111":"d"},"da":{"\xD8":"OE","\xF8":"oe","\xC5":"AA","\xE5":"aa","%":"procent","&":"og","|":"eller","$":"dollar","<":"mindre end",">":"st\xF8rre end"},"nb":{"&":"og","\xC5":"AA","\xC6":"AE","\xD8":"OE","\xE5":"aa","\xE6":"ae","\xF8":"oe"},"it":{"&":"e"},"nl":{"&":"en"},"sv":{"&":"och","\xC5":"AA","\xC4":"AE","\xD6":"OE","\xE5":"aa","\xE4":"ae","\xF6":"oe"}}');function n(r,a){if(typeof r!="string")throw new Error("slugify: string argument expected");a=typeof a=="string"?{replacement:a}:a||{};var o=e[a.locale]||{},s=a.replacement===void 0?"-":a.replacement,l=a.trim===void 0?!0:a.trim,c=r.normalize().split("").reduce(function(p,d){var u=o[d];return u===void 0&&(u=t[d]),u===void 0&&(u=d),u===s&&(u=" "),p+u.replace(a.remove||/[^\w\s$*_+~.()'"!\-:@]+/g,"")},"");return a.strict&&(c=c.replace(/[^A-Za-z0-9\s]/g,"")),l&&(c=c.trim()),c=c.replace(/\s+/g,s),a.lower&&(c=c.toLowerCase()),c}return i(n,"replace"),n.extend=function(r){Object.assign(t,r)},n})});var $a=N((qU,Mh)=>{"use strict";var XA="2.0.0",ew=Number.MAX_SAFE_INTEGER||9007199254740991,tw=16,nw=250,aw=["major","premajor","minor","preminor","patch","prepatch","prerelease"];Mh.exports={MAX_LENGTH:256,MAX_SAFE_COMPONENT_LENGTH:tw,MAX_SAFE_BUILD_LENGTH:nw,MAX_SAFE_INTEGER:ew,RELEASE_TYPES:aw,SEMVER_SPEC_VERSION:XA,FLAG_INCLUDE_PRERELEASE:1,FLAG_LOOSE:2}});var qa=N((GU,Nh)=>{"use strict";var rw=typeof process=="object"&&process.env&&process.env.NODE_DEBUG&&/\bsemver\b/i.test(process.env.NODE_DEBUG)?(...t)=>console.error("SEMVER",...t):()=>{};Nh.exports=rw});var ia=N((Et,Rh)=>{"use strict";var{MAX_SAFE_COMPONENT_LENGTH:oc,MAX_SAFE_BUILD_LENGTH:iw,MAX_LENGTH:ow}=$a(),sw=qa();Et=Rh.exports={};var lw=Et.re=[],cw=Et.safeRe=[],F=Et.src=[],pw=Et.safeSrc=[],I=Et.t={},dw=0,sc="[a-zA-Z0-9-]",uw=[["\\s",1],["\\d",ow],[sc,iw]],mw=i(t=>{for(let[e,n]of uw)t=t.split(`${e}*`).join(`${e}{0,${n}}`).split(`${e}+`).join(`${e}{1,${n}}`);return t},"makeSafeRegex"),$=i((t,e,n)=>{let r=mw(e),a=dw++;sw(t,a,e),I[t]=a,F[a]=e,pw[a]=r,lw[a]=new RegExp(e,n?"g":void 0),cw[a]=new RegExp(r,n?"g":void 0)},"createToken");$("NUMERICIDENTIFIER","0|[1-9]\\d*");$("NUMERICIDENTIFIERLOOSE","\\d+");$("NONNUMERICIDENTIFIER",`\\d*[a-zA-Z-]${sc}*`);$("MAINVERSION",`(${F[I.NUMERICIDENTIFIER]})\\.(${F[I.NUMERICIDENTIFIER]})\\.(${F[I.NUMERICIDENTIFIER]})`);$("MAINVERSIONLOOSE",`(${F[I.NUMERICIDENTIFIERLOOSE]})\\.(${F[I.NUMERICIDENTIFIERLOOSE]})\\.(${F[I.NUMERICIDENTIFIERLOOSE]})`);$("PRERELEASEIDENTIFIER",`(?:${F[I.NONNUMERICIDENTIFIER]}|${F[I.NUMERICIDENTIFIER]})`);$("PRERELEASEIDENTIFIERLOOSE",`(?:${F[I.NONNUMERICIDENTIFIER]}|${F[I.NUMERICIDENTIFIERLOOSE]})`);$("PRERELEASE",`(?:-(${F[I.PRERELEASEIDENTIFIER]}(?:\\.${F[I.PRERELEASEIDENTIFIER]})*))`);$("PRERELEASELOOSE",`(?:-?(${F[I.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${F[I.PRERELEASEIDENTIFIERLOOSE]})*))`);$("BUILDIDENTIFIER",`${sc}+`);$("BUILD",`(?:\\+(${F[I.BUILDIDENTIFIER]}(?:\\.${F[I.BUILDIDENTIFIER]})*))`);$("FULLPLAIN",`v?${F[I.MAINVERSION]}${F[I.PRERELEASE]}?${F[I.BUILD]}?`);$("FULL",`^${F[I.FULLPLAIN]}$`);$("LOOSEPLAIN",`[v=\\s]*${F[I.MAINVERSIONLOOSE]}${F[I.PRERELEASELOOSE]}?${F[I.BUILD]}?`);$("LOOSE",`^${F[I.LOOSEPLAIN]}$`);$("GTLT","((?:<|>)?=?)");$("XRANGEIDENTIFIERLOOSE",`${F[I.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`);$("XRANGEIDENTIFIER",`${F[I.NUMERICIDENTIFIER]}|x|X|\\*`);$("XRANGEPLAIN",`[v=\\s]*(${F[I.XRANGEIDENTIFIER]})(?:\\.(${F[I.XRANGEIDENTIFIER]})(?:\\.(${F[I.XRANGEIDENTIFIER]})(?:${F[I.PRERELEASE]})?${F[I.BUILD]}?)?)?`);$("XRANGEPLAINLOOSE",`[v=\\s]*(${F[I.XRANGEIDENTIFIERLOOSE]})(?:\\.(${F[I.XRANGEIDENTIFIERLOOSE]})(?:\\.(${F[I.XRANGEIDENTIFIERLOOSE]})(?:${F[I.PRERELEASELOOSE]})?${F[I.BUILD]}?)?)?`);$("XRANGE",`^${F[I.GTLT]}\\s*${F[I.XRANGEPLAIN]}$`);$("XRANGELOOSE",`^${F[I.GTLT]}\\s*${F[I.XRANGEPLAINLOOSE]}$`);$("COERCEPLAIN",`(^|[^\\d])(\\d{1,${oc}})(?:\\.(\\d{1,${oc}}))?(?:\\.(\\d{1,${oc}}))?`);$("COERCE",`${F[I.COERCEPLAIN]}(?:$|[^\\d])`);$("COERCEFULL",F[I.COERCEPLAIN]+`(?:${F[I.PRERELEASE]})?(?:${F[I.BUILD]})?(?:$|[^\\d])`);$("COERCERTL",F[I.COERCE],!0);$("COERCERTLFULL",F[I.COERCEFULL],!0);$("LONETILDE","(?:~>?)");$("TILDETRIM",`(\\s*)${F[I.LONETILDE]}\\s+`,!0);Et.tildeTrimReplace="$1~";$("TILDE",`^${F[I.LONETILDE]}${F[I.XRANGEPLAIN]}$`);$("TILDELOOSE",`^${F[I.LONETILDE]}${F[I.XRANGEPLAINLOOSE]}$`);$("LONECARET","(?:\\^)");$("CARETTRIM",`(\\s*)${F[I.LONECARET]}\\s+`,!0);Et.caretTrimReplace="$1^";$("CARET",`^${F[I.LONECARET]}${F[I.XRANGEPLAIN]}$`);$("CARETLOOSE",`^${F[I.LONECARET]}${F[I.XRANGEPLAINLOOSE]}$`);$("COMPARATORLOOSE",`^${F[I.GTLT]}\\s*(${F[I.LOOSEPLAIN]})$|^$`);$("COMPARATOR",`^${F[I.GTLT]}\\s*(${F[I.FULLPLAIN]})$|^$`);$("COMPARATORTRIM",`(\\s*)${F[I.GTLT]}\\s*(${F[I.LOOSEPLAIN]}|${F[I.XRANGEPLAIN]})`,!0);Et.comparatorTrimReplace="$1$2$3";$("HYPHENRANGE",`^\\s*(${F[I.XRANGEPLAIN]})\\s+-\\s+(${F[I.XRANGEPLAIN]})\\s*$`);$("HYPHENRANGELOOSE",`^\\s*(${F[I.XRANGEPLAINLOOSE]})\\s+-\\s+(${F[I.XRANGEPLAINLOOSE]})\\s*$`);$("STAR","(<|>)?=?\\s*\\*");$("GTE0","^\\s*>=\\s*0\\.0\\.0\\s*$");$("GTE0PRE","^\\s*>=\\s*0\\.0\\.0-0\\s*$")});var Vi=N((JU,jh)=>{"use strict";var hw=Object.freeze({loose:!0}),gw=Object.freeze({}),fw=i(t=>t?typeof t!="object"?hw:t:gw,"parseOptions");jh.exports=fw});var lc=N((KU,Dh)=>{"use strict";var Lh=/^[0-9]+$/,Oh=i((t,e)=>{if(typeof t=="number"&&typeof e=="number")return t===e?0:t<e?-1:1;let n=Lh.test(t),r=Lh.test(e);return n&&r&&(t=+t,e=+e),t===e?0:n&&!r?-1:r&&!n?1:t<e?-1:1},"compareIdentifiers"),kw=i((t,e)=>Oh(e,t),"rcompareIdentifiers");Dh.exports={compareIdentifiers:Oh,rcompareIdentifiers:kw}});var Ee=N((QU,Uh)=>{"use strict";var _i=qa(),{MAX_LENGTH:Bh,MAX_SAFE_INTEGER:$i}=$a(),{safeRe:qi,t:Gi}=ia(),vw=Vi(),{compareIdentifiers:cc}=lc(),pc=class t{static{i(this,"SemVer")}constructor(e,n){if(n=vw(n),e instanceof t){if(e.loose===!!n.loose&&e.includePrerelease===!!n.includePrerelease)return e;e=e.version}else if(typeof e!="string")throw new TypeError(`Invalid version. Must be a string. Got type "${typeof e}".`);if(e.length>Bh)throw new TypeError(`version is longer than ${Bh} characters`);_i("SemVer",e,n),this.options=n,this.loose=!!n.loose,this.includePrerelease=!!n.includePrerelease;let r=e.trim().match(n.loose?qi[Gi.LOOSE]:qi[Gi.FULL]);if(!r)throw new TypeError(`Invalid Version: ${e}`);if(this.raw=e,this.major=+r[1],this.minor=+r[2],this.patch=+r[3],this.major>$i||this.major<0)throw new TypeError("Invalid major version");if(this.minor>$i||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>$i||this.patch<0)throw new TypeError("Invalid patch version");r[4]?this.prerelease=r[4].split(".").map(a=>{if(/^[0-9]+$/.test(a)){let o=+a;if(o>=0&&o<$i)return o}return a}):this.prerelease=[],this.build=r[5]?r[5].split("."):[],this.format()}format(){return this.version=`${this.major}.${this.minor}.${this.patch}`,this.prerelease.length&&(this.version+=`-${this.prerelease.join(".")}`),this.version}toString(){return this.version}compare(e){if(_i("SemVer.compare",this.version,this.options,e),!(e instanceof t)){if(typeof e=="string"&&e===this.version)return 0;e=new t(e,this.options)}return e.version===this.version?0:this.compareMain(e)||this.comparePre(e)}compareMain(e){return e instanceof t||(e=new t(e,this.options)),this.major<e.major?-1:this.major>e.major?1:this.minor<e.minor?-1:this.minor>e.minor?1:this.patch<e.patch?-1:this.patch>e.patch?1:0}comparePre(e){if(e instanceof t||(e=new t(e,this.options)),this.prerelease.length&&!e.prerelease.length)return-1;if(!this.prerelease.length&&e.prerelease.length)return 1;if(!this.prerelease.length&&!e.prerelease.length)return 0;let n=0;do{let r=this.prerelease[n],a=e.prerelease[n];if(_i("prerelease compare",n,r,a),r===void 0&&a===void 0)return 0;if(a===void 0)return 1;if(r===void 0)return-1;if(r===a)continue;return cc(r,a)}while(++n)}compareBuild(e){e instanceof t||(e=new t(e,this.options));let n=0;do{let r=this.build[n],a=e.build[n];if(_i("build compare",n,r,a),r===void 0&&a===void 0)return 0;if(a===void 0)return 1;if(r===void 0)return-1;if(r===a)continue;return cc(r,a)}while(++n)}inc(e,n,r){if(e.startsWith("pre")){if(!n&&r===!1)throw new Error("invalid increment argument: identifier is empty");if(n){let a=`-${n}`.match(this.options.loose?qi[Gi.PRERELEASELOOSE]:qi[Gi.PRERELEASE]);if(!a||a[1]!==n)throw new Error(`invalid identifier: ${n}`)}}switch(e){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",n,r);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",n,r);break;case"prepatch":this.prerelease.length=0,this.inc("patch",n,r),this.inc("pre",n,r);break;case"prerelease":this.prerelease.length===0&&this.inc("patch",n,r),this.inc("pre",n,r);break;case"release":if(this.prerelease.length===0)throw new Error(`version ${this.raw} is not a prerelease`);this.prerelease.length=0;break;case"major":(this.minor!==0||this.patch!==0||this.prerelease.length===0)&&this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":(this.patch!==0||this.prerelease.length===0)&&this.minor++,this.patch=0,this.prerelease=[];break;case"patch":this.prerelease.length===0&&this.patch++,this.prerelease=[];break;case"pre":{let a=Number(r)?1:0;if(this.prerelease.length===0)this.prerelease=[a];else{let o=this.prerelease.length;for(;--o>=0;)typeof this.prerelease[o]=="number"&&(this.prerelease[o]++,o=-2);if(o===-1){if(n===this.prerelease.join(".")&&r===!1)throw new Error("invalid increment argument: identifier already exists");this.prerelease.push(a)}}if(n){let o=[n,a];r===!1&&(o=[n]),cc(this.prerelease[0],n)===0?isNaN(this.prerelease[1])&&(this.prerelease=o):this.prerelease=o}break}default:throw new Error(`invalid increment argument: ${e}`)}return this.raw=this.format(),this.build.length&&(this.raw+=`+${this.build.join(".")}`),this}};Uh.exports=pc});var xn=N((XU,_h)=>{"use strict";var Vh=Ee(),yw=i((t,e,n=!1)=>{if(t instanceof Vh)return t;try{return new Vh(t,e)}catch(r){if(!n)return null;throw r}},"parse");_h.exports=yw});var qh=N((t3,$h)=>{"use strict";var bw=xn(),Aw=i((t,e)=>{let n=bw(t,e);return n?n.version:null},"valid");$h.exports=Aw});var Wh=N((a3,Gh)=>{"use strict";var ww=xn(),xw=i((t,e)=>{let n=ww(t.trim().replace(/^[=v]+/,""),e);return n?n.version:null},"clean");Gh.exports=xw});var Kh=N((i3,Hh)=>{"use strict";var Jh=Ee(),Cw=i((t,e,n,r,a)=>{typeof n=="string"&&(a=r,r=n,n=void 0);try{return new Jh(t instanceof Jh?t.version:t,n).inc(e,r,a).version}catch{return null}},"inc");Hh.exports=Cw});var Zh=N((s3,Qh)=>{"use strict";var Yh=xn(),Tw=i((t,e)=>{let n=Yh(t,null,!0),r=Yh(e,null,!0),a=n.compare(r);if(a===0)return null;let o=a>0,s=o?n:r,l=o?r:n,c=!!s.prerelease.length;if(!!l.prerelease.length&&!c){if(!l.patch&&!l.minor)return"major";if(l.compareMain(s)===0)return l.minor&&!l.patch?"minor":"patch"}let d=c?"pre":"";return n.major!==r.major?d+"major":n.minor!==r.minor?d+"minor":n.patch!==r.patch?d+"patch":"prerelease"},"diff");Qh.exports=Tw});var eg=N((c3,Xh)=>{"use strict";var Sw=Ee(),Pw=i((t,e)=>new Sw(t,e).major,"major");Xh.exports=Pw});var ng=N((d3,tg)=>{"use strict";var Ew=Ee(),Fw=i((t,e)=>new Ew(t,e).minor,"minor");tg.exports=Fw});var rg=N((m3,ag)=>{"use strict";var Iw=Ee(),zw=i((t,e)=>new Iw(t,e).patch,"patch");ag.exports=zw});var og=N((g3,ig)=>{"use strict";var Mw=xn(),Nw=i((t,e)=>{let n=Mw(t,e);return n&&n.prerelease.length?n.prerelease:null},"prerelease");ig.exports=Nw});var it=N((k3,lg)=>{"use strict";var sg=Ee(),Rw=i((t,e,n)=>new sg(t,n).compare(new sg(e,n)),"compare");lg.exports=Rw});var pg=N((y3,cg)=>{"use strict";var jw=it(),Lw=i((t,e,n)=>jw(e,t,n),"rcompare");cg.exports=Lw});var ug=N((A3,dg)=>{"use strict";var Ow=it(),Dw=i((t,e)=>Ow(t,e,!0),"compareLoose");dg.exports=Dw});var Wi=N((x3,hg)=>{"use strict";var mg=Ee(),Bw=i((t,e,n)=>{let r=new mg(t,n),a=new mg(e,n);return r.compare(a)||r.compareBuild(a)},"compareBuild");hg.exports=Bw});var fg=N((T3,gg)=>{"use strict";var Uw=Wi(),Vw=i((t,e)=>t.sort((n,r)=>Uw(n,r,e)),"sort");gg.exports=Vw});var vg=N((P3,kg)=>{"use strict";var _w=Wi(),$w=i((t,e)=>t.sort((n,r)=>_w(r,n,e)),"rsort");kg.exports=$w});var Ga=N((F3,yg)=>{"use strict";var qw=it(),Gw=i((t,e,n)=>qw(t,e,n)>0,"gt");yg.exports=Gw});var Ji=N((z3,bg)=>{"use strict";var Ww=it(),Jw=i((t,e,n)=>Ww(t,e,n)<0,"lt");bg.exports=Jw});var dc=N((N3,Ag)=>{"use strict";var Hw=it(),Kw=i((t,e,n)=>Hw(t,e,n)===0,"eq");Ag.exports=Kw});var uc=N((j3,wg)=>{"use strict";var Yw=it(),Qw=i((t,e,n)=>Yw(t,e,n)!==0,"neq");wg.exports=Qw});var Hi=N((O3,xg)=>{"use strict";var Zw=it(),Xw=i((t,e,n)=>Zw(t,e,n)>=0,"gte");xg.exports=Xw});var Ki=N((B3,Cg)=>{"use strict";var ex=it(),tx=i((t,e,n)=>ex(t,e,n)<=0,"lte");Cg.exports=tx});var mc=N((V3,Tg)=>{"use strict";var nx=dc(),ax=uc(),rx=Ga(),ix=Hi(),ox=Ji(),sx=Ki(),lx=i((t,e,n,r)=>{switch(e){case"===":return typeof t=="object"&&(t=t.version),typeof n=="object"&&(n=n.version),t===n;case"!==":return typeof t=="object"&&(t=t.version),typeof n=="object"&&(n=n.version),t!==n;case"":case"=":case"==":return nx(t,n,r);case"!=":return ax(t,n,r);case">":return rx(t,n,r);case">=":return ix(t,n,r);case"<":return ox(t,n,r);case"<=":return sx(t,n,r);default:throw new TypeError(`Invalid operator: ${e}`)}},"cmp");Tg.exports=lx});var Pg=N(($3,Sg)=>{"use strict";var cx=Ee(),px=xn(),{safeRe:Yi,t:Qi}=ia(),dx=i((t,e)=>{if(t instanceof cx)return t;if(typeof t=="number"&&(t=String(t)),typeof t!="string")return null;e=e||{};let n=null;if(!e.rtl)n=t.match(e.includePrerelease?Yi[Qi.COERCEFULL]:Yi[Qi.COERCE]);else{let c=e.includePrerelease?Yi[Qi.COERCERTLFULL]:Yi[Qi.COERCERTL],p;for(;(p=c.exec(t))&&(!n||n.index+n[0].length!==t.length);)(!n||p.index+p[0].length!==n.index+n[0].length)&&(n=p),c.lastIndex=p.index+p[1].length+p[2].length;c.lastIndex=-1}if(n===null)return null;let r=n[2],a=n[3]||"0",o=n[4]||"0",s=e.includePrerelease&&n[5]?`-${n[5]}`:"",l=e.includePrerelease&&n[6]?`+${n[6]}`:"";return px(`${r}.${a}.${o}${s}${l}`,e)},"coerce");Sg.exports=dx});var Fg=N((G3,Eg)=>{"use strict";var hc=class{static{i(this,"LRUCache")}constructor(){this.max=1e3,this.map=new Map}get(e){let n=this.map.get(e);if(n!==void 0)return this.map.delete(e),this.map.set(e,n),n}delete(e){return this.map.delete(e)}set(e,n){if(!this.delete(e)&&n!==void 0){if(this.map.size>=this.max){let a=this.map.keys().next().value;this.delete(a)}this.map.set(e,n)}return this}};Eg.exports=hc});var ot=N((J3,Ng)=>{"use strict";var ux=/\s+/g,gc=class t{static{i(this,"Range")}constructor(e,n){if(n=hx(n),e instanceof t)return e.loose===!!n.loose&&e.includePrerelease===!!n.includePrerelease?e:new t(e.raw,n);if(e instanceof fc)return this.raw=e.value,this.set=[[e]],this.formatted=void 0,this;if(this.options=n,this.loose=!!n.loose,this.includePrerelease=!!n.includePrerelease,this.raw=e.trim().replace(ux," "),this.set=this.raw.split("||").map(r=>this.parseRange(r.trim())).filter(r=>r.length),!this.set.length)throw new TypeError(`Invalid SemVer Range: ${this.raw}`);if(this.set.length>1){let r=this.set[0];if(this.set=this.set.filter(a=>!zg(a[0])),this.set.length===0)this.set=[r];else if(this.set.length>1){for(let a of this.set)if(a.length===1&&Ax(a[0])){this.set=[a];break}}}this.formatted=void 0}get range(){if(this.formatted===void 0){this.formatted="";for(let e=0;e<this.set.length;e++){e>0&&(this.formatted+="||");let n=this.set[e];for(let r=0;r<n.length;r++)r>0&&(this.formatted+=" "),this.formatted+=n[r].toString().trim()}}return this.formatted}format(){return this.range}toString(){return this.range}parseRange(e){let r=((this.options.includePrerelease&&yx)|(this.options.loose&&bx))+":"+e,a=Ig.get(r);if(a)return a;let o=this.options.loose,s=o?Oe[Fe.HYPHENRANGELOOSE]:Oe[Fe.HYPHENRANGE];e=e.replace(s,zx(this.options.includePrerelease)),re("hyphen replace",e),e=e.replace(Oe[Fe.COMPARATORTRIM],fx),re("comparator trim",e),e=e.replace(Oe[Fe.TILDETRIM],kx),re("tilde trim",e),e=e.replace(Oe[Fe.CARETTRIM],vx),re("caret trim",e);let l=e.split(" ").map(u=>wx(u,this.options)).join(" ").split(/\s+/).map(u=>Ix(u,this.options));o&&(l=l.filter(u=>(re("loose invalid filter",u,this.options),!!u.match(Oe[Fe.COMPARATORLOOSE])))),re("range list",l);let c=new Map,p=l.map(u=>new fc(u,this.options));for(let u of p){if(zg(u))return[u];c.set(u.value,u)}c.size>1&&c.has("")&&c.delete("");let d=[...c.values()];return Ig.set(r,d),d}intersects(e,n){if(!(e instanceof t))throw new TypeError("a Range is required");return this.set.some(r=>Mg(r,n)&&e.set.some(a=>Mg(a,n)&&r.every(o=>a.every(s=>o.intersects(s,n)))))}test(e){if(!e)return!1;if(typeof e=="string")try{e=new gx(e,this.options)}catch{return!1}for(let n=0;n<this.set.length;n++)if(Mx(this.set[n],e,this.options))return!0;return!1}};Ng.exports=gc;var mx=Fg(),Ig=new mx,hx=Vi(),fc=Wa(),re=qa(),gx=Ee(),{safeRe:Oe,t:Fe,comparatorTrimReplace:fx,tildeTrimReplace:kx,caretTrimReplace:vx}=ia(),{FLAG_INCLUDE_PRERELEASE:yx,FLAG_LOOSE:bx}=$a(),zg=i(t=>t.value==="<0.0.0-0","isNullSet"),Ax=i(t=>t.value==="","isAny"),Mg=i((t,e)=>{let n=!0,r=t.slice(),a=r.pop();for(;n&&r.length;)n=r.every(o=>a.intersects(o,e)),a=r.pop();return n},"isSatisfiable"),wx=i((t,e)=>(t=t.replace(Oe[Fe.BUILD],""),re("comp",t,e),t=Tx(t,e),re("caret",t),t=xx(t,e),re("tildes",t),t=Px(t,e),re("xrange",t),t=Fx(t,e),re("stars",t),t),"parseComparator"),De=i(t=>!t||t.toLowerCase()==="x"||t==="*","isX"),xx=i((t,e)=>t.trim().split(/\s+/).map(n=>Cx(n,e)).join(" "),"replaceTildes"),Cx=i((t,e)=>{let n=e.loose?Oe[Fe.TILDELOOSE]:Oe[Fe.TILDE];return t.replace(n,(r,a,o,s,l)=>{re("tilde",t,r,a,o,s,l);let c;return De(a)?c="":De(o)?c=`>=${a}.0.0 <${+a+1}.0.0-0`:De(s)?c=`>=${a}.${o}.0 <${a}.${+o+1}.0-0`:l?(re("replaceTilde pr",l),c=`>=${a}.${o}.${s}-${l} <${a}.${+o+1}.0-0`):c=`>=${a}.${o}.${s} <${a}.${+o+1}.0-0`,re("tilde return",c),c})},"replaceTilde"),Tx=i((t,e)=>t.trim().split(/\s+/).map(n=>Sx(n,e)).join(" "),"replaceCarets"),Sx=i((t,e)=>{re("caret",t,e);let n=e.loose?Oe[Fe.CARETLOOSE]:Oe[Fe.CARET],r=e.includePrerelease?"-0":"";return t.replace(n,(a,o,s,l,c)=>{re("caret",t,a,o,s,l,c);let p;return De(o)?p="":De(s)?p=`>=${o}.0.0${r} <${+o+1}.0.0-0`:De(l)?o==="0"?p=`>=${o}.${s}.0${r} <${o}.${+s+1}.0-0`:p=`>=${o}.${s}.0${r} <${+o+1}.0.0-0`:c?(re("replaceCaret pr",c),o==="0"?s==="0"?p=`>=${o}.${s}.${l}-${c} <${o}.${s}.${+l+1}-0`:p=`>=${o}.${s}.${l}-${c} <${o}.${+s+1}.0-0`:p=`>=${o}.${s}.${l}-${c} <${+o+1}.0.0-0`):(re("no pr"),o==="0"?s==="0"?p=`>=${o}.${s}.${l}${r} <${o}.${s}.${+l+1}-0`:p=`>=${o}.${s}.${l}${r} <${o}.${+s+1}.0-0`:p=`>=${o}.${s}.${l} <${+o+1}.0.0-0`),re("caret return",p),p})},"replaceCaret"),Px=i((t,e)=>(re("replaceXRanges",t,e),t.split(/\s+/).map(n=>Ex(n,e)).join(" ")),"replaceXRanges"),Ex=i((t,e)=>{t=t.trim();let n=e.loose?Oe[Fe.XRANGELOOSE]:Oe[Fe.XRANGE];return t.replace(n,(r,a,o,s,l,c)=>{re("xRange",t,r,a,o,s,l,c);let p=De(o),d=p||De(s),u=d||De(l),h=u;return a==="="&&h&&(a=""),c=e.includePrerelease?"-0":"",p?a===">"||a==="<"?r="<0.0.0-0":r="*":a&&h?(d&&(s=0),l=0,a===">"?(a=">=",d?(o=+o+1,s=0,l=0):(s=+s+1,l=0)):a==="<="&&(a="<",d?o=+o+1:s=+s+1),a==="<"&&(c="-0"),r=`${a+o}.${s}.${l}${c}`):d?r=`>=${o}.0.0${c} <${+o+1}.0.0-0`:u&&(r=`>=${o}.${s}.0${c} <${o}.${+s+1}.0-0`),re("xRange return",r),r})},"replaceXRange"),Fx=i((t,e)=>(re("replaceStars",t,e),t.trim().replace(Oe[Fe.STAR],"")),"replaceStars"),Ix=i((t,e)=>(re("replaceGTE0",t,e),t.trim().replace(Oe[e.includePrerelease?Fe.GTE0PRE:Fe.GTE0],"")),"replaceGTE0"),zx=i(t=>(e,n,r,a,o,s,l,c,p,d,u,h)=>(De(r)?n="":De(a)?n=`>=${r}.0.0${t?"-0":""}`:De(o)?n=`>=${r}.${a}.0${t?"-0":""}`:s?n=`>=${n}`:n=`>=${n}${t?"-0":""}`,De(p)?c="":De(d)?c=`<${+p+1}.0.0-0`:De(u)?c=`<${p}.${+d+1}.0-0`:h?c=`<=${p}.${d}.${u}-${h}`:t?c=`<${p}.${d}.${+u+1}-0`:c=`<=${c}`,`${n} ${c}`.trim()),"hyphenReplace"),Mx=i((t,e,n)=>{for(let r=0;r<t.length;r++)if(!t[r].test(e))return!1;if(e.prerelease.length&&!n.includePrerelease){for(let r=0;r<t.length;r++)if(re(t[r].semver),t[r].semver!==fc.ANY&&t[r].semver.prerelease.length>0){let a=t[r].semver;if(a.major===e.major&&a.minor===e.minor&&a.patch===e.patch)return!0}return!1}return!0},"testSet")});var Wa=N((K3,Bg)=>{"use strict";var Ja=Symbol("SemVer ANY"),yc=class t{static{i(this,"Comparator")}static get ANY(){return Ja}constructor(e,n){if(n=Rg(n),e instanceof t){if(e.loose===!!n.loose)return e;e=e.value}e=e.trim().split(/\s+/).join(" "),vc("comparator",e,n),this.options=n,this.loose=!!n.loose,this.parse(e),this.semver===Ja?this.value="":this.value=this.operator+this.semver.version,vc("comp",this)}parse(e){let n=this.options.loose?jg[Lg.COMPARATORLOOSE]:jg[Lg.COMPARATOR],r=e.match(n);if(!r)throw new TypeError(`Invalid comparator: ${e}`);this.operator=r[1]!==void 0?r[1]:"",this.operator==="="&&(this.operator=""),r[2]?this.semver=new Og(r[2],this.options.loose):this.semver=Ja}toString(){return this.value}test(e){if(vc("Comparator.test",e,this.options.loose),this.semver===Ja||e===Ja)return!0;if(typeof e=="string")try{e=new Og(e,this.options)}catch{return!1}return kc(e,this.operator,this.semver,this.options)}intersects(e,n){if(!(e instanceof t))throw new TypeError("a Comparator is required");return this.operator===""?this.value===""?!0:new Dg(e.value,n).test(this.value):e.operator===""?e.value===""?!0:new Dg(this.value,n).test(e.semver):(n=Rg(n),n.includePrerelease&&(this.value==="<0.0.0-0"||e.value==="<0.0.0-0")||!n.includePrerelease&&(this.value.startsWith("<0.0.0")||e.value.startsWith("<0.0.0"))?!1:!!(this.operator.startsWith(">")&&e.operator.startsWith(">")||this.operator.startsWith("<")&&e.operator.startsWith("<")||this.semver.version===e.semver.version&&this.operator.includes("=")&&e.operator.includes("=")||kc(this.semver,"<",e.semver,n)&&this.operator.startsWith(">")&&e.operator.startsWith("<")||kc(this.semver,">",e.semver,n)&&this.operator.startsWith("<")&&e.operator.startsWith(">")))}};Bg.exports=yc;var Rg=Vi(),{safeRe:jg,t:Lg}=ia(),kc=mc(),vc=qa(),Og=Ee(),Dg=ot()});var Ha=N((Q3,Ug)=>{"use strict";var Nx=ot(),Rx=i((t,e,n)=>{try{e=new Nx(e,n)}catch{return!1}return e.test(t)},"satisfies");Ug.exports=Rx});var _g=N((X3,Vg)=>{"use strict";var jx=ot(),Lx=i((t,e)=>new jx(t,e).set.map(n=>n.map(r=>r.value).join(" ").trim().split(" ")),"toComparators");Vg.exports=Lx});var qg=N((t4,$g)=>{"use strict";var Ox=Ee(),Dx=ot(),Bx=i((t,e,n)=>{let r=null,a=null,o=null;try{o=new Dx(e,n)}catch{return null}return t.forEach(s=>{o.test(s)&&(!r||a.compare(s)===-1)&&(r=s,a=new Ox(r,n))}),r},"maxSatisfying");$g.exports=Bx});var Wg=N((a4,Gg)=>{"use strict";var Ux=Ee(),Vx=ot(),_x=i((t,e,n)=>{let r=null,a=null,o=null;try{o=new Vx(e,n)}catch{return null}return t.forEach(s=>{o.test(s)&&(!r||a.compare(s)===1)&&(r=s,a=new Ux(r,n))}),r},"minSatisfying");Gg.exports=_x});var Kg=N((i4,Hg)=>{"use strict";var bc=Ee(),$x=ot(),Jg=Ga(),qx=i((t,e)=>{t=new $x(t,e);let n=new bc("0.0.0");if(t.test(n)||(n=new bc("0.0.0-0"),t.test(n)))return n;n=null;for(let r=0;r<t.set.length;++r){let a=t.set[r],o=null;a.forEach(s=>{let l=new bc(s.semver.version);switch(s.operator){case">":l.prerelease.length===0?l.patch++:l.prerelease.push(0),l.raw=l.format();case"":case">=":(!o||Jg(l,o))&&(o=l);break;case"<":case"<=":break;default:throw new Error(`Unexpected operation: ${s.operator}`)}}),o&&(!n||Jg(n,o))&&(n=o)}return n&&t.test(n)?n:null},"minVersion");Hg.exports=qx});var Qg=N((s4,Yg)=>{"use strict";var Gx=ot(),Wx=i((t,e)=>{try{return new Gx(t,e).range||"*"}catch{return null}},"validRange");Yg.exports=Wx});var Zi=N((c4,tf)=>{"use strict";var Jx=Ee(),ef=Wa(),{ANY:Hx}=ef,Kx=ot(),Yx=Ha(),Zg=Ga(),Xg=Ji(),Qx=Ki(),Zx=Hi(),Xx=i((t,e,n,r)=>{t=new Jx(t,r),e=new Kx(e,r);let a,o,s,l,c;switch(n){case">":a=Zg,o=Qx,s=Xg,l=">",c=">=";break;case"<":a=Xg,o=Zx,s=Zg,l="<",c="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(Yx(t,e,r))return!1;for(let p=0;p<e.set.length;++p){let d=e.set[p],u=null,h=null;if(d.forEach(m=>{m.semver===Hx&&(m=new ef(">=0.0.0")),u=u||m,h=h||m,a(m.semver,u.semver,r)?u=m:s(m.semver,h.semver,r)&&(h=m)}),u.operator===l||u.operator===c||(!h.operator||h.operator===l)&&o(t,h.semver))return!1;if(h.operator===c&&s(t,h.semver))return!1}return!0},"outside");tf.exports=Xx});var af=N((d4,nf)=>{"use strict";var eC=Zi(),tC=i((t,e,n)=>eC(t,e,">",n),"gtr");nf.exports=tC});var of=N((m4,rf)=>{"use strict";var nC=Zi(),aC=i((t,e,n)=>nC(t,e,"<",n),"ltr");rf.exports=aC});var cf=N((g4,lf)=>{"use strict";var sf=ot(),rC=i((t,e,n)=>(t=new sf(t,n),e=new sf(e,n),t.intersects(e,n)),"intersects");lf.exports=rC});var df=N((k4,pf)=>{"use strict";var iC=Ha(),oC=it();pf.exports=(t,e,n)=>{let r=[],a=null,o=null,s=t.sort((d,u)=>oC(d,u,n));for(let d of s)iC(d,e,n)?(o=d,a||(a=d)):(o&&r.push([a,o]),o=null,a=null);a&&r.push([a,null]);let l=[];for(let[d,u]of r)d===u?l.push(d):!u&&d===s[0]?l.push("*"):u?d===s[0]?l.push(`<=${u}`):l.push(`${d} - ${u}`):l.push(`>=${d}`);let c=l.join(" || "),p=typeof e.raw=="string"?e.raw:String(e);return c.length<p.length?c:e}});var kf=N((v4,ff)=>{"use strict";var uf=ot(),wc=Wa(),{ANY:Ac}=wc,Ka=Ha(),xc=it(),sC=i((t,e,n={})=>{if(t===e)return!0;t=new uf(t,n),e=new uf(e,n);let r=!1;e:for(let a of t.set){for(let o of e.set){let s=cC(a,o,n);if(r=r||s!==null,s)continue e}if(r)return!1}return!0},"subset"),lC=[new wc(">=0.0.0-0")],mf=[new wc(">=0.0.0")],cC=i((t,e,n)=>{if(t===e)return!0;if(t.length===1&&t[0].semver===Ac){if(e.length===1&&e[0].semver===Ac)return!0;n.includePrerelease?t=lC:t=mf}if(e.length===1&&e[0].semver===Ac){if(n.includePrerelease)return!0;e=mf}let r=new Set,a,o;for(let m of t)m.operator===">"||m.operator===">="?a=hf(a,m,n):m.operator==="<"||m.operator==="<="?o=gf(o,m,n):r.add(m.semver);if(r.size>1)return null;let s;if(a&&o){if(s=xc(a.semver,o.semver,n),s>0)return null;if(s===0&&(a.operator!==">="||o.operator!=="<="))return null}for(let m of r){if(a&&!Ka(m,String(a),n)||o&&!Ka(m,String(o),n))return null;for(let v of e)if(!Ka(m,String(v),n))return!1;return!0}let l,c,p,d,u=o&&!n.includePrerelease&&o.semver.prerelease.length?o.semver:!1,h=a&&!n.includePrerelease&&a.semver.prerelease.length?a.semver:!1;u&&u.prerelease.length===1&&o.operator==="<"&&u.prerelease[0]===0&&(u=!1);for(let m of e){if(d=d||m.operator===">"||m.operator===">=",p=p||m.operator==="<"||m.operator==="<=",a){if(h&&m.semver.prerelease&&m.semver.prerelease.length&&m.semver.major===h.major&&m.semver.minor===h.minor&&m.semver.patch===h.patch&&(h=!1),m.operator===">"||m.operator===">="){if(l=hf(a,m,n),l===m&&l!==a)return!1}else if(a.operator===">="&&!Ka(a.semver,String(m),n))return!1}if(o){if(u&&m.semver.prerelease&&m.semver.prerelease.length&&m.semver.major===u.major&&m.semver.minor===u.minor&&m.semver.patch===u.patch&&(u=!1),m.operator==="<"||m.operator==="<="){if(c=gf(o,m,n),c===m&&c!==o)return!1}else if(o.operator==="<="&&!Ka(o.semver,String(m),n))return!1}if(!m.operator&&(o||a)&&s!==0)return!1}return!(a&&p&&!o&&s!==0||o&&d&&!a&&s!==0||h||u)},"simpleSubset"),hf=i((t,e,n)=>{if(!t)return e;let r=xc(t.semver,e.semver,n);return r>0?t:r<0||e.operator===">"&&t.operator===">="?e:t},"higherGT"),gf=i((t,e,n)=>{if(!t)return e;let r=xc(t.semver,e.semver,n);return r<0?t:r>0||e.operator==="<"&&t.operator==="<="?e:t},"lowerLT");ff.exports=sC});var Af=N((b4,bf)=>{"use strict";var Cc=ia(),vf=$a(),pC=Ee(),yf=lc(),dC=xn(),uC=qh(),mC=Wh(),hC=Kh(),gC=Zh(),fC=eg(),kC=ng(),vC=rg(),yC=og(),bC=it(),AC=pg(),wC=ug(),xC=Wi(),CC=fg(),TC=vg(),SC=Ga(),PC=Ji(),EC=dc(),FC=uc(),IC=Hi(),zC=Ki(),MC=mc(),NC=Pg(),RC=Wa(),jC=ot(),LC=Ha(),OC=_g(),DC=qg(),BC=Wg(),UC=Kg(),VC=Qg(),_C=Zi(),$C=af(),qC=of(),GC=cf(),WC=df(),JC=kf();bf.exports={parse:dC,valid:uC,clean:mC,inc:hC,diff:gC,major:fC,minor:kC,patch:vC,prerelease:yC,compare:bC,rcompare:AC,compareLoose:wC,compareBuild:xC,sort:CC,rsort:TC,gt:SC,lt:PC,eq:EC,neq:FC,gte:IC,lte:zC,cmp:MC,coerce:NC,Comparator:RC,Range:jC,satisfies:LC,toComparators:OC,maxSatisfying:DC,minSatisfying:BC,minVersion:UC,validRange:VC,outside:_C,gtr:$C,ltr:qC,intersects:GC,simplifyRange:WC,subset:JC,SemVer:pC,re:Cc.re,src:Cc.src,tokens:Cc.t,SEMVER_SPEC_VERSION:vf.SEMVER_SPEC_VERSION,RELEASE_TYPES:vf.RELEASE_TYPES,compareIdentifiers:yf.compareIdentifiers,rcompareIdentifiers:yf.rcompareIdentifiers}});var rT={};Oc(rT,{default:()=>aT});module.exports=sk(rT);var Mo=require("electron"),ht=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();function lt(){}i(lt,"noop");async function gt(){}i(gt,"noopAsync");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var da=Number.POSITIVE_INFINITY;function ct(...t){let e=t.filter(o=>!!o);if(typeof AbortSignal.any=="function")return AbortSignal.any(e);if(e.length===0)return Ce();if(e.length===1&&e[0])return e[0];let n=new AbortController;for(let o of e)if(o.aborted)return o;let r=[];for(let o of e)r.push(Uc(o,a));return n.signal;function a(o){for(let s of r)s();n.abort(o.reason)}}i(ct,"abortSignalAny");function Ce(){return new AbortController().signal}i(Ce,"abortSignalNever");function Bc(t){if(t===da)return Ce();if(typeof AbortSignal.timeout=="function")return AbortSignal.timeout(t);let e=new AbortController;return window.setTimeout(()=>{e.abort(new Error(`Timed out in ${String(t)} milliseconds`))},t),e.signal}i(Bc,"abortSignalTimeout");function Uc(t,e){if(t.aborted)return e(t),lt;return t.addEventListener("abort",n,{once:!0}),()=>{t.removeEventListener("abort",n)};function n(r){e(r.target)}i(n,"wrappedCallback")}i(Uc,"onAbort");function Lo(t,e){return new Promise((n,r)=>{Uc(t,()=>{e?r(t.reason):n(t.reason)})})}i(Lo,"waitForAbort");var qo=Mt(Zc(),1);i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();function ua(t,e){let n=t.length,r=0;for(let a=0;a<n;a++){if(!Object.hasOwn(t,a))continue;let o=t[a];e(o,a,t)&&(t[r++]=o)}t.length=r}i(ua,"filterInPlace");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var ft=class{static{i(this,"AsyncEvents")}eventRefsMap=new Map;off(e,n){let r=this.eventRefsMap.get(e);r&&(ua(r,a=>a.callback!==n),r.length===0&&this.eventRefsMap.delete(e))}offref(e){let n=this.eventRefsMap.get(e.name);n&&(ua(n,r=>r!==e),n.length===0&&this.eventRefsMap.delete(e.name))}on(e,n,r){let a=this.eventRefsMap.get(e);a||(a=[],this.eventRefsMap.set(e,a));let o={asyncEvents:this,callback:n,name:e,thisArg:r};return a.push(o),o}once(e,n,r){let a=this.on(e,n,r),o=this.on(e,()=>{this.offref(a),this.offref(o)});return a}trigger(e,...n){let r=this.eventRefsMap.get(e)??[];for(let a of r.slice())this.tryTrigger(a,n)}async triggerAsync(e,...n){let r=this.eventRefsMap.get(e)??[];for(let a of r.slice())await this.tryTriggerAsync(a,n)}tryTrigger(e,n){try{e.callback.apply(e.thisArg,n)}catch(r){window.setTimeout(()=>{throw r},0)}}async tryTriggerAsync(e,n){try{await e.callback.call(e.thisArg,...n)}catch(r){window.setTimeout(()=>{throw r},0)}}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Uo="asyncError",rr=new ft;rr.on(Uo,Mk);var ir="An unhandled error occurred executing async operation",ep=" at",pt=class t extends Error{static{i(this,"CustomStackTraceError")}constructor(e,n,r){super(e,{cause:r}),this.name="CustomStackTraceError",Error.captureStackTrace?.(this,t);let a=r,o=new Set;for(;a instanceof t;){if(o.has(a))throw new Error("Circular cause detected");o.add(a),a=a.cause}let s=(this.stack??"").split(`
|
|
98
|
+
`),l=n.split(`
|
|
99
|
+
`);/^\w*Error(?:: |$)/.test(l[0]??"")&&l.splice(0,1),s.splice(1,s.length-1,...l),this.stack=s.join(`
|
|
100
|
+
`)}},In=class t extends Error{static{i(this,"SilentError")}constructor(e){super(e),this.name="SilentError",Error.captureStackTrace?.(this,t)}};function or(t){rr.trigger(Uo,t)}i(or,"emitAsyncErrorEvent");function sr(t){if(!(t instanceof Error))return String(t);let e=t.stack??`${t.name}: ${t.message}`;if(t.cause!==void 0){let n=sr(t.cause).split(`
|
|
101
|
+
`);e+=`
|
|
102
|
+
${Xc("Caused by:")}`;for(let r of n)r.trim()&&(e+=r.startsWith(ep)?`
|
|
103
|
+
${r}`:`
|
|
104
|
+
${Xc(r)}`)}return e}i(sr,"errorToString");function Me(t=0){return(new Error().stack??"").split(`
|
|
105
|
+
`).slice(t+2).join(`
|
|
106
|
+
`)}i(Me,"getStackTrace");function dt(t,e){e??=globalThis.console,e.error(sr(t))}i(dt,"printError");function tp(t){let e=rr.on(Uo,t);return()=>{rr.offref(e)}}i(tp,"registerAsyncErrorEventHandler");function Xt(t){throw t}i(Xt,"throwExpression");function Xc(t){return`${ep} --- ${t} --- (0)`}i(Xc,"generateStackTraceLine");function Mk(t){dt(t)}i(Mk,"handleAsyncError");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Vo="46.3.2",lr="obsidian-dev-utils",np=`.obsidian-dev-utils.code-highlighter-component textarea, .obsidian-dev-utils.code-highlighter-component pre, .obsidian-dev-utils.code-highlighter-component code {
|
|
107
|
+
font-family: var(--font-monospace);
|
|
108
|
+
line-height: var(--line-height-normal);
|
|
109
|
+
margin: 0;
|
|
110
|
+
}
|
|
111
|
+
.obsidian-dev-utils.code-highlighter-component textarea, .obsidian-dev-utils.code-highlighter-component code {
|
|
112
|
+
font-size: var(--code-size);
|
|
113
|
+
}
|
|
114
|
+
.obsidian-dev-utils.code-highlighter-component textarea {
|
|
115
|
+
background: transparent;
|
|
116
|
+
color: transparent;
|
|
117
|
+
z-index: 2;
|
|
118
|
+
width: 20em;
|
|
119
|
+
height: 10em;
|
|
120
|
+
}
|
|
121
|
+
.obsidian-dev-utils.code-highlighter-component pre {
|
|
122
|
+
position: absolute;
|
|
123
|
+
pointer-events: none;
|
|
124
|
+
border: var(--input-border-width) solid transparent;
|
|
125
|
+
overflow: auto;
|
|
126
|
+
inset: 0;
|
|
127
|
+
padding: var(--size-4-1) var(--size-4-2);
|
|
128
|
+
z-index: 1;
|
|
129
|
+
}
|
|
130
|
+
.obsidian-dev-utils.code-highlighter-component pre::after {
|
|
131
|
+
content: "";
|
|
132
|
+
display: block;
|
|
133
|
+
height: var(--bottom-gap, 0);
|
|
134
|
+
}
|
|
135
|
+
.obsidian-dev-utils.code-highlighter-component pre.is-placeholder {
|
|
136
|
+
opacity: 0.6;
|
|
137
|
+
}
|
|
138
|
+
.obsidian-dev-utils.code-highlighter-component code {
|
|
139
|
+
display: block;
|
|
140
|
+
padding: 0;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.obsidian-dev-utils input[type=url] {
|
|
144
|
+
height: var(--input-height);
|
|
145
|
+
}
|
|
146
|
+
.obsidian-dev-utils input[type=month],
|
|
147
|
+
.obsidian-dev-utils input[type=tel],
|
|
148
|
+
.obsidian-dev-utils input[type=time],
|
|
149
|
+
.obsidian-dev-utils input[type=url],
|
|
150
|
+
.obsidian-dev-utils input[type=week] {
|
|
151
|
+
-webkit-app-region: no-drag;
|
|
152
|
+
background: var(--background-modifier-form-field);
|
|
153
|
+
border: var(--input-border-width) solid var(--background-modifier-border);
|
|
154
|
+
color: var(--text-normal);
|
|
155
|
+
font-family: inherit;
|
|
156
|
+
padding: var(--size-4-1) var(--size-4-2);
|
|
157
|
+
font-size: var(--font-ui-small);
|
|
158
|
+
border-radius: var(--input-radius);
|
|
159
|
+
outline: none;
|
|
160
|
+
}
|
|
161
|
+
@media (hover: hover) {
|
|
162
|
+
.obsidian-dev-utils input[type=month]:hover,
|
|
163
|
+
.obsidian-dev-utils input[type=tel]:hover,
|
|
164
|
+
.obsidian-dev-utils input[type=time]:hover,
|
|
165
|
+
.obsidian-dev-utils input[type=url]:hover,
|
|
166
|
+
.obsidian-dev-utils input[type=week]:hover {
|
|
167
|
+
border-color: var(--background-modifier-border-hover);
|
|
168
|
+
transition: box-shadow 0.15s ease-in-out, border 0.15s ease-in-out;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
.obsidian-dev-utils input[type=month]:active, .obsidian-dev-utils input[type=month]:focus,
|
|
172
|
+
.obsidian-dev-utils input[type=tel]:active,
|
|
173
|
+
.obsidian-dev-utils input[type=tel]:focus,
|
|
174
|
+
.obsidian-dev-utils input[type=time]:active,
|
|
175
|
+
.obsidian-dev-utils input[type=time]:focus,
|
|
176
|
+
.obsidian-dev-utils input[type=url]:active,
|
|
177
|
+
.obsidian-dev-utils input[type=url]:focus,
|
|
178
|
+
.obsidian-dev-utils input[type=week]:active,
|
|
179
|
+
.obsidian-dev-utils input[type=week]:focus {
|
|
180
|
+
border-color: var(--background-modifier-border-focus);
|
|
181
|
+
transition: box-shadow 0.15s ease-in-out, border 0.15s ease-in-out;
|
|
182
|
+
}
|
|
183
|
+
.obsidian-dev-utils input[type=month]:active, .obsidian-dev-utils input[type=month]:focus, .obsidian-dev-utils input[type=month]:focus-visible,
|
|
184
|
+
.obsidian-dev-utils input[type=tel]:active,
|
|
185
|
+
.obsidian-dev-utils input[type=tel]:focus,
|
|
186
|
+
.obsidian-dev-utils input[type=tel]:focus-visible,
|
|
187
|
+
.obsidian-dev-utils input[type=time]:active,
|
|
188
|
+
.obsidian-dev-utils input[type=time]:focus,
|
|
189
|
+
.obsidian-dev-utils input[type=time]:focus-visible,
|
|
190
|
+
.obsidian-dev-utils input[type=url]:active,
|
|
191
|
+
.obsidian-dev-utils input[type=url]:focus,
|
|
192
|
+
.obsidian-dev-utils input[type=url]:focus-visible,
|
|
193
|
+
.obsidian-dev-utils input[type=week]:active,
|
|
194
|
+
.obsidian-dev-utils input[type=week]:focus,
|
|
195
|
+
.obsidian-dev-utils input[type=week]:focus-visible {
|
|
196
|
+
box-shadow: 0 0 0 2px var(--background-modifier-border-focus);
|
|
197
|
+
}
|
|
198
|
+
.obsidian-dev-utils input[type=month]::placeholder,
|
|
199
|
+
.obsidian-dev-utils input[type=tel]::placeholder,
|
|
200
|
+
.obsidian-dev-utils input[type=time]::placeholder,
|
|
201
|
+
.obsidian-dev-utils input[type=url]::placeholder,
|
|
202
|
+
.obsidian-dev-utils input[type=week]::placeholder {
|
|
203
|
+
color: var(--text-faint);
|
|
204
|
+
}
|
|
205
|
+
.mod-rtl input[type=month],
|
|
206
|
+
.mod-rtl input[type=time],
|
|
207
|
+
.mod-rtl input[type=week],
|
|
208
|
+
.is-rtl input[type=month],
|
|
209
|
+
.is-rtl input[type=time],
|
|
210
|
+
.is-rtl input[type=week],
|
|
211
|
+
.rtl input[type=month],
|
|
212
|
+
.rtl input[type=time],
|
|
213
|
+
.rtl input[type=week] {
|
|
214
|
+
direction: rtl;
|
|
215
|
+
}
|
|
216
|
+
.mod-rtl input[type=month]::-webkit-calendar-picker-indicator,
|
|
217
|
+
.mod-rtl input[type=time]::-webkit-calendar-picker-indicator,
|
|
218
|
+
.mod-rtl input[type=week]::-webkit-calendar-picker-indicator,
|
|
219
|
+
.is-rtl input[type=month]::-webkit-calendar-picker-indicator,
|
|
220
|
+
.is-rtl input[type=time]::-webkit-calendar-picker-indicator,
|
|
221
|
+
.is-rtl input[type=week]::-webkit-calendar-picker-indicator,
|
|
222
|
+
.rtl input[type=month]::-webkit-calendar-picker-indicator,
|
|
223
|
+
.rtl input[type=time]::-webkit-calendar-picker-indicator,
|
|
224
|
+
.rtl input[type=week]::-webkit-calendar-picker-indicator {
|
|
225
|
+
right: var(--size-4-1);
|
|
226
|
+
left: auto;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.obsidian-dev-utils input[type=month],
|
|
230
|
+
.obsidian-dev-utils input[type=time],
|
|
231
|
+
.obsidian-dev-utils input[type=week] {
|
|
232
|
+
font-variant-numeric: tabular-nums;
|
|
233
|
+
position: relative;
|
|
234
|
+
}
|
|
235
|
+
.obsidian-dev-utils input[type=month]::-webkit-datetime-edit-text,
|
|
236
|
+
.obsidian-dev-utils input[type=time]::-webkit-datetime-edit-text,
|
|
237
|
+
.obsidian-dev-utils input[type=week]::-webkit-datetime-edit-text {
|
|
238
|
+
color: var(--text-faint);
|
|
239
|
+
padding-inline-end: 0;
|
|
240
|
+
}
|
|
241
|
+
.obsidian-dev-utils input[type=month]::-webkit-calendar-picker-indicator,
|
|
242
|
+
.obsidian-dev-utils input[type=time]::-webkit-calendar-picker-indicator,
|
|
243
|
+
.obsidian-dev-utils input[type=week]::-webkit-calendar-picker-indicator {
|
|
244
|
+
position: absolute;
|
|
245
|
+
left: var(--size-4-1);
|
|
246
|
+
right: auto;
|
|
247
|
+
opacity: 0.5;
|
|
248
|
+
}
|
|
249
|
+
.obsidian-dev-utils input[type=month]::-webkit-datetime-edit-month-field:active, .obsidian-dev-utils input[type=month]::-webkit-datetime-edit-month-field:focus, .obsidian-dev-utils input[type=month]::-webkit-datetime-edit-day-field:active, .obsidian-dev-utils input[type=month]::-webkit-datetime-edit-day-field:focus, .obsidian-dev-utils input[type=month]::-webkit-datetime-edit-year-field:active, .obsidian-dev-utils input[type=month]::-webkit-datetime-edit-year-field:focus,
|
|
250
|
+
.obsidian-dev-utils input[type=time]::-webkit-datetime-edit-month-field:active,
|
|
251
|
+
.obsidian-dev-utils input[type=time]::-webkit-datetime-edit-month-field:focus,
|
|
252
|
+
.obsidian-dev-utils input[type=time]::-webkit-datetime-edit-day-field:active,
|
|
253
|
+
.obsidian-dev-utils input[type=time]::-webkit-datetime-edit-day-field:focus,
|
|
254
|
+
.obsidian-dev-utils input[type=time]::-webkit-datetime-edit-year-field:active,
|
|
255
|
+
.obsidian-dev-utils input[type=time]::-webkit-datetime-edit-year-field:focus,
|
|
256
|
+
.obsidian-dev-utils input[type=week]::-webkit-datetime-edit-month-field:active,
|
|
257
|
+
.obsidian-dev-utils input[type=week]::-webkit-datetime-edit-month-field:focus,
|
|
258
|
+
.obsidian-dev-utils input[type=week]::-webkit-datetime-edit-day-field:active,
|
|
259
|
+
.obsidian-dev-utils input[type=week]::-webkit-datetime-edit-day-field:focus,
|
|
260
|
+
.obsidian-dev-utils input[type=week]::-webkit-datetime-edit-year-field:active,
|
|
261
|
+
.obsidian-dev-utils input[type=week]::-webkit-datetime-edit-year-field:focus {
|
|
262
|
+
background-color: var(--text-selection);
|
|
263
|
+
color: var(--text-normal);
|
|
264
|
+
cursor: text;
|
|
265
|
+
}
|
|
266
|
+
.mod-rtl .obsidian-dev-utils input[type=month], .is-rtl .obsidian-dev-utils input[type=month], .rtl .obsidian-dev-utils input[type=month],
|
|
267
|
+
.mod-rtl .obsidian-dev-utils input[type=time],
|
|
268
|
+
.is-rtl .obsidian-dev-utils input[type=time],
|
|
269
|
+
.rtl .obsidian-dev-utils input[type=time],
|
|
270
|
+
.mod-rtl .obsidian-dev-utils input[type=week],
|
|
271
|
+
.is-rtl .obsidian-dev-utils input[type=week],
|
|
272
|
+
.rtl .obsidian-dev-utils input[type=week] {
|
|
273
|
+
direction: rtl;
|
|
274
|
+
}
|
|
275
|
+
.mod-rtl .obsidian-dev-utils input[type=month]::-webkit-calendar-picker-indicator, .is-rtl .obsidian-dev-utils input[type=month]::-webkit-calendar-picker-indicator, .rtl .obsidian-dev-utils input[type=month]::-webkit-calendar-picker-indicator,
|
|
276
|
+
.mod-rtl .obsidian-dev-utils input[type=time]::-webkit-calendar-picker-indicator,
|
|
277
|
+
.is-rtl .obsidian-dev-utils input[type=time]::-webkit-calendar-picker-indicator,
|
|
278
|
+
.rtl .obsidian-dev-utils input[type=time]::-webkit-calendar-picker-indicator,
|
|
279
|
+
.mod-rtl .obsidian-dev-utils input[type=week]::-webkit-calendar-picker-indicator,
|
|
280
|
+
.is-rtl .obsidian-dev-utils input[type=week]::-webkit-calendar-picker-indicator,
|
|
281
|
+
.rtl .obsidian-dev-utils input[type=week]::-webkit-calendar-picker-indicator {
|
|
282
|
+
left: auto;
|
|
283
|
+
right: var(--size-4-1);
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
body:not(.is-ios):not(.is-android) .obsidian-dev-utils input[type=month],
|
|
287
|
+
body:not(.is-ios):not(.is-android) .obsidian-dev-utils input[type=time],
|
|
288
|
+
body:not(.is-ios):not(.is-android) .obsidian-dev-utils input[type=week] {
|
|
289
|
+
padding-inline-start: var(--size-4-6);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.obsidian-dev-utils input[type=time]::-webkit-calendar-picker-indicator {
|
|
293
|
+
margin-inline-start: 0;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.obsidian-dev-utilsprogress.loop {
|
|
297
|
+
min-width: 200px;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.obsidian-dev-utils.modal-container .ok-button {
|
|
301
|
+
margin-right: 10px;
|
|
302
|
+
margin-top: 20px;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.obsidian-dev-utils .multiple-dropdown-component select,
|
|
306
|
+
.obsidian-dev-utils .multiple-dropdown-component select:focus,
|
|
307
|
+
.obsidian-dev-utils .multiple-dropdown-component .dropdown {
|
|
308
|
+
height: auto;
|
|
309
|
+
padding-top: 3px;
|
|
310
|
+
}
|
|
311
|
+
.obsidian-dev-utils .multiple-dropdown-component select option:checked,
|
|
312
|
+
.obsidian-dev-utils .multiple-dropdown-component select:focus option:checked,
|
|
313
|
+
.obsidian-dev-utils .multiple-dropdown-component .dropdown option:checked {
|
|
314
|
+
background-color: #1967d2;
|
|
315
|
+
color: #fff;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.obsidian-dev-utils.plugin-settings-tab a:focus {
|
|
319
|
+
outline: 2px solid var(--link-color);
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.obsidian-dev-utils.prompt-modal .text-box {
|
|
323
|
+
width: 100%;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.obsidian-dev-utils.tri-state-checkbox-component input[type=checkbox]:indeterminate {
|
|
327
|
+
appearance: checkbox;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.obsidian-dev-utils :invalid {
|
|
331
|
+
box-shadow: 0 0 0 2px var(--text-error);
|
|
332
|
+
}
|
|
333
|
+
.obsidian-dev-utils input.metadata-input-text:active:invalid, .obsidian-dev-utils input.metadata-input-text:focus-visible:invalid, .obsidian-dev-utils input.metadata-input-text:focus:invalid,
|
|
334
|
+
.obsidian-dev-utils input[type=date]:active:invalid,
|
|
335
|
+
.obsidian-dev-utils input[type=date]:focus-visible:invalid,
|
|
336
|
+
.obsidian-dev-utils input[type=date]:focus:invalid,
|
|
337
|
+
.obsidian-dev-utils input[type=datetime-local]:active:invalid,
|
|
338
|
+
.obsidian-dev-utils input[type=datetime-local]:focus-visible:invalid,
|
|
339
|
+
.obsidian-dev-utils input[type=datetime-local]:focus:invalid,
|
|
340
|
+
.obsidian-dev-utils input[type=email]:active:invalid,
|
|
341
|
+
.obsidian-dev-utils input[type=email]:focus-visible:invalid,
|
|
342
|
+
.obsidian-dev-utils input[type=email]:focus:invalid,
|
|
343
|
+
.obsidian-dev-utils input[type=number]:active:invalid,
|
|
344
|
+
.obsidian-dev-utils input[type=number]:focus-visible:invalid,
|
|
345
|
+
.obsidian-dev-utils input[type=number]:focus:invalid,
|
|
346
|
+
.obsidian-dev-utils input[type=password]:active:invalid,
|
|
347
|
+
.obsidian-dev-utils input[type=password]:focus-visible:invalid,
|
|
348
|
+
.obsidian-dev-utils input[type=password]:focus:invalid,
|
|
349
|
+
.obsidian-dev-utils input[type=search]:active:invalid,
|
|
350
|
+
.obsidian-dev-utils input[type=search]:focus-visible:invalid,
|
|
351
|
+
.obsidian-dev-utils input[type=search]:focus:invalid,
|
|
352
|
+
.obsidian-dev-utils input[type=text]:active:invalid,
|
|
353
|
+
.obsidian-dev-utils input[type=text]:focus-visible:invalid,
|
|
354
|
+
.obsidian-dev-utils input[type=text]:focus:invalid,
|
|
355
|
+
.obsidian-dev-utils textarea:active:invalid,
|
|
356
|
+
.obsidian-dev-utils textarea:focus-visible:invalid,
|
|
357
|
+
.obsidian-dev-utils textarea:focus:invalid {
|
|
358
|
+
box-shadow: 0 0 0 2px var(--text-error);
|
|
359
|
+
}
|
|
360
|
+
.obsidian-dev-utils.setting-component-wrapper {
|
|
361
|
+
position: relative;
|
|
362
|
+
display: inline-flex;
|
|
363
|
+
}
|
|
364
|
+
.obsidian-dev-utils.overlay-validator {
|
|
365
|
+
caret-color: transparent;
|
|
366
|
+
cursor: default;
|
|
367
|
+
position: absolute;
|
|
368
|
+
background-color: transparent;
|
|
369
|
+
border: none;
|
|
370
|
+
outline: none;
|
|
371
|
+
pointer-events: none;
|
|
372
|
+
z-index: 9999;
|
|
373
|
+
left: 0;
|
|
374
|
+
top: 0;
|
|
375
|
+
width: 100%;
|
|
376
|
+
height: 100%;
|
|
377
|
+
}
|
|
378
|
+
.obsidian-dev-utils.tooltip.tooltip-validator {
|
|
379
|
+
position: absolute;
|
|
380
|
+
top: calc(100% + 8px);
|
|
381
|
+
width: max-content;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../src/styles/code-highlighter-component.scss%22,%22../src/styles/input.scss%22,%22../src/styles/input-time.scss%22,%22../src/styles/loop.scss%22,%22../src/styles/modal-container.scss%22,%22../src/styles/multiple-dropdown-component.scss%22,%22../src/styles/plugin-settings-tab.scss%22,%22../src/styles/prompt-modal.scss%22,%22../src/styles/tri-state-checkbox-component.scss%22,%22../src/styles/validation.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEI;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;;ACzCJ;EACE;;AAGF;AAAA;AAAA;AAAA;AAAA;EAKE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGE;EACE;AAAA;AAAA;AAAA;AAAA;IACE;IACA,YACE;;;AAMR;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAEE;EACA,YACE;;AAIJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAGE;;AAGF;AAAA;AAAA;AAAA;AAAA;EACE;;AASE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAGE;;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EACE;EACA;;;AC7DV;AAAA;AAAA;EAGE;EACA;;AAEA;AAAA;AAAA;EACE;EACA;;AAGF;AAAA;AAAA;EACE;EACA;EACA;EACA;;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAEE;EACA;EACA;;AAIK;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAGP;;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EACE;EACA;;;AAKF;AAAA;AAAA;EACE;;;AAMJ;EACE;;;ACjDJ;EACE;;;ACAA;EACE;EACA;;;ACFF;AAAA;AAAA;EAGE;EACA;;AAEA;AAAA;AAAA;EACE;EACA;;;ACRJ;EACE;;;ACDF;EACE;;;ACDF;EACE;;;ACEJ;EAJA;;AAoBI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EApBJ;;AA0BA;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA%22,%22file%22:%22styles.css%22,%22sourcesContent%22:%5B%22.obsidian-dev-utils%20%7B%5Cn%20%20&.code-highlighter-component%20%7B%5Cn%20%20%20%20textarea,%20pre,%20code%20%7B%5Cn%20%20%20%20%20%20font-family:%20var(--font-monospace);%5Cn%20%20%20%20%20%20line-height:%20var(--line-height-normal);%5Cn%20%20%20%20%20%20margin:%200;%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20textarea,%20code%20%7B%5Cn%20%20%20%20%20%20font-size:%20var(--code-size);%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20textarea%20%7B%5Cn%20%20%20%20%20%20background:%20transparent;%5Cn%20%20%20%20%20%20color:%20transparent;%5Cn%20%20%20%20%20%20z-index:%202;%5Cn%20%20%20%20%20%20width:%2020em;%5Cn%20%20%20%20%20%20height:%2010em;%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20pre%20%7B%5Cn%20%20%20%20%20%20position:%20absolute;%5Cn%20%20%20%20%20%20pointer-events:%20none;%5Cn%20%20%20%20%20%20border:%20var(--input-border-width)%20solid%20transparent;%5Cn%20%20%20%20%20%20overflow:%20auto;%5Cn%20%20%20%20%20%20inset:%200;%5Cn%20%20%20%20%20%20padding:%20var(--size-4-1)%20var(--size-4-2);%5Cn%20%20%20%20%20%20z-index:%201;%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20pre::after%20%7B%5Cn%20%20%20%20%20%20content:%20%5C%22%5C%22;%5Cn%20%20%20%20%20%20display:%20block;%5Cn%20%20%20%20%20%20height:%20var(--bottom-gap,%200);%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20pre.is-placeholder%20%7B%5Cn%20%20%20%20%20%20opacity:%200.6;%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20code%20%7B%5Cn%20%20%20%20%20%20display:%20block;%5Cn%20%20%20%20%20%20padding:%200;%5Cn%20%20%20%20%7D%5Cn%20%20%7D%5Cn%7D%5Cn%22,%22.obsidian-dev-utils%20%7B%5Cn%20%20input%5Btype='url'%5D%20%7B%5Cn%20%20%20%20height:%20var(--input-height)%5Cn%20%20%7D%5Cn%5Cn%20%20input%5Btype='month'%5D,%5Cn%20%20input%5Btype='tel'%5D,%5Cn%20%20input%5Btype='time'%5D,%5Cn%20%20input%5Btype='url'%5D,%5Cn%20%20input%5Btype='week'%5D%20%7B%5Cn%20%20%20%20-webkit-app-region:%20no-drag;%5Cn%20%20%20%20background:%20var(--background-modifier-form-field);%5Cn%20%20%20%20border:%20var(--input-border-width)%20solid%20var(--background-modifier-border);%5Cn%20%20%20%20color:%20var(--text-normal);%5Cn%20%20%20%20font-family:%20inherit;%5Cn%20%20%20%20padding:%20var(--size-4-1)%20var(--size-4-2);%5Cn%20%20%20%20font-size:%20var(--font-ui-small);%5Cn%20%20%20%20border-radius:%20var(--input-radius);%5Cn%20%20%20%20outline:%20none;%5Cn%5Cn%20%20%20%20@at-root%20%7B%5Cn%20%20%20%20%20%20@media%20(hover:%20hover)%20%7B%5Cn%20%20%20%20%20%20%20%20&:hover%20%7B%5Cn%20%20%20%20%20%20%20%20%20%20border-color:%20var(--background-modifier-border-hover);%5Cn%20%20%20%20%20%20%20%20%20%20transition:%5Cn%20%20%20%20%20%20%20%20%20%20%20%20box-shadow%200.15s%20ease-in-out,%5Cn%20%20%20%20%20%20%20%20%20%20%20%20border%200.15s%20ease-in-out;%5Cn%20%20%20%20%20%20%20%20%7D%5Cn%20%20%20%20%20%20%7D%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20&:active,%5Cn%20%20%20%20&:focus%20%7B%5Cn%20%20%20%20%20%20border-color:%20var(--background-modifier-border-focus);%5Cn%20%20%20%20%20%20transition:%5Cn%20%20%20%20%20%20%20%20box-shadow%200.15s%20ease-in-out,%5Cn%20%20%20%20%20%20%20%20border%200.15s%20ease-in-out;%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20&:active,%5Cn%20%20%20%20&:focus,%5Cn%20%20%20%20&:focus-visible%20%7B%5Cn%20%20%20%20%20%20box-shadow:%200%200%200%202px%20var(--background-modifier-border-focus);%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20&::placeholder%20%7B%5Cn%20%20%20%20%20%20color:%20var(--text-faint);%5Cn%20%20%20%20%7D%5Cn%20%20%7D%5Cn%5Cn%20%20@at-root%20%7B%5Cn%20%20%20%20.mod-rtl,%5Cn%20%20%20%20.is-rtl,%5Cn%20%20%20%20.rtl%20%7B%5Cn%20%20%20%20%20%20&%20%7B%5Cn%20%20%20%20%20%20%20%20input%5Btype='month'%5D,%5Cn%20%20%20%20%20%20%20%20input%5Btype='time'%5D,%5Cn%20%20%20%20%20%20%20%20input%5Btype='week'%5D%20%7B%5Cn%20%20%20%20%20%20%20%20%20%20direction:%20rtl;%5Cn%5Cn%20%20%20%20%20%20%20%20%20%20&::-webkit-calendar-picker-indicator%20%7B%5Cn%20%20%20%20%20%20%20%20%20%20%20%20right:%20var(--size-4-1);%5Cn%20%20%20%20%20%20%20%20%20%20%20%20left:%20auto;%5Cn%20%20%20%20%20%20%20%20%20%20%7D%5Cn%20%20%20%20%20%20%20%20%7D%5Cn%20%20%20%20%20%20%7D%5Cn%20%20%20%20%7D%5Cn%20%20%7D%5Cn%7D%5Cn%22,%22.obsidian-dev-utils%20%7B%5Cn%20%20input%5Btype='month'%5D,%5Cn%20%20input%5Btype='time'%5D,%5Cn%20%20input%5Btype='week'%5D%20%7B%5Cn%20%20%20%20font-variant-numeric:%20tabular-nums;%5Cn%20%20%20%20position:%20relative;%5Cn%5Cn%20%20%20%20&::-webkit-datetime-edit-text%20%7B%5Cn%20%20%20%20%20%20color:%20var(--text-faint);%5Cn%20%20%20%20%20%20padding-inline-end:%200;%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20&::-webkit-calendar-picker-indicator%20%7B%5Cn%20%20%20%20%20%20position:%20absolute;%5Cn%20%20%20%20%20%20left:%20var(--size-4-1);%5Cn%20%20%20%20%20%20right:%20auto;%5Cn%20%20%20%20%20%20opacity:%200.5;%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20&::-webkit-datetime-edit-month-field,%5Cn%20%20%20%20&::-webkit-datetime-edit-day-field,%5Cn%20%20%20%20&::-webkit-datetime-edit-year-field%20%7B%5Cn%20%20%20%20%20%20&:active,%5Cn%20%20%20%20%20%20&:focus%20%7B%5Cn%20%20%20%20%20%20%20%20background-color:%20var(--text-selection);%5Cn%20%20%20%20%20%20%20%20color:%20var(--text-normal);%5Cn%20%20%20%20%20%20%20%20cursor:%20text;%5Cn%20%20%20%20%20%20%7D%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20@at-root%20.mod-rtl%20&,%5Cn%20%20%20%20%20%20.is-rtl%20&,%5Cn%20%20%20%20%20%20.rtl%20&%20%7B%5Cn%20%20%20%20%20%20direction:%20rtl;%5Cn%5Cn%20%20%20%20%20%20&::-webkit-calendar-picker-indicator%20%7B%5Cn%20%20%20%20%20%20%20%20left:%20auto;%5Cn%20%20%20%20%20%20%20%20right:%20var(--size-4-1);%5Cn%20%20%20%20%20%20%7D%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20@at-root%20%7B%5Cn%20%20%20%20%20%20body:not(.is-ios):not(.is-android)%20&%20%7B%5Cn%20%20%20%20%20%20%20%20padding-inline-start:%20var(--size-4-6);%5Cn%20%20%20%20%20%20%7D%5Cn%20%20%20%20%7D%5Cn%20%20%7D%5Cn%5Cn%20%20input%5Btype='time'%5D%20%7B%5Cn%20%20%20%20&::-webkit-calendar-picker-indicator%20%7B%5Cn%20%20%20%20%20%20margin-inline-start:%200;%5Cn%20%20%20%20%7D%5Cn%20%20%7D%5Cn%7D%5Cn%22,%22.obsidian-dev-utils%20%7B%5Cn%20%20&progress.loop%20%7B%5Cn%20%20%20%20min-width:%20200px;%5Cn%20%20%7D%5Cn%7D%5Cn%22,%22.obsidian-dev-utils%20%7B%5Cn%20%20&.modal-container%20%7B%5Cn%20%20%20%20.ok-button%20%7B%5Cn%20%20%20%20%20%20margin-right:%2010px;%5Cn%20%20%20%20%20%20margin-top:%2020px;%5Cn%20%20%20%20%7D%5Cn%20%20%7D%5Cn%7D%5Cn%22,%22.obsidian-dev-utils%20%7B%5Cn%20%20.multiple-dropdown-component%20%7B%5Cn%20%20%20%20select,%5Cn%20%20%20%20select:focus,%5Cn%20%20%20%20.dropdown%20%7B%5Cn%20%20%20%20%20%20height:%20auto;%5Cn%20%20%20%20%20%20padding-top:%203px;%5Cn%5Cn%20%20%20%20%20%20option:checked%20%7B%5Cn%20%20%20%20%20%20%20%20background-color:%20%231967d2;%5Cn%20%20%20%20%20%20%20%20color:%20%23fff;%5Cn%20%20%20%20%20%20%7D%5Cn%20%20%20%20%7D%5Cn%20%20%7D%5Cn%7D%5Cn%22,%22.obsidian-dev-utils%20%7B%5Cn%20%20&.plugin-settings-tab%20%7B%5Cn%20%20%20%20a:focus%20%7B%5Cn%20%20%20%20%20%20outline:%202px%20solid%20var(--link-color);%5Cn%20%20%20%20%7D%5Cn%20%20%7D%5Cn%7D%5Cn%22,%22.obsidian-dev-utils%20%7B%5Cn%20%20&.prompt-modal%20%7B%5Cn%20%20%20%20.text-box%20%7B%5Cn%20%20%20%20%20%20width:%20100%25;%5Cn%20%20%20%20%7D%5Cn%20%20%7D%5Cn%7D%5Cn%22,%22.obsidian-dev-utils%20%7B%5Cr%5Cn%20%20&.tri-state-checkbox-component%20%7B%5Cr%5Cn%20%20%20%20input%5Btype='checkbox'%5D:indeterminate%20%7B%5Cr%5Cn%20%20%20%20%20%20appearance:%20checkbox;%5Cr%5Cn%20%20%20%20%7D%5Cr%5Cn%20%20%7D%5Cr%5Cn%7D%5Cr%5Cn%22,%22@mixin%20invalid%20%7B%5Cn%20%20box-shadow:%200%200%200%202px%20var(--text-error);%5Cn%7D%5Cn%5Cn.obsidian-dev-utils%20%7B%5Cn%20%20:invalid%20%7B%5Cn%20%20%20%20@include%20invalid;%5Cn%20%20%7D%5Cn%5Cn%20%20input.metadata-input-text,%5Cn%20%20input%5Btype='date'%5D,%5Cn%20%20input%5Btype='datetime-local'%5D,%5Cn%20%20input%5Btype='email'%5D,%5Cn%20%20input%5Btype='number'%5D,%5Cn%20%20input%5Btype='password'%5D,%5Cn%20%20input%5Btype='search'%5D,%5Cn%20%20input%5Btype='text'%5D,%5Cn%20%20textarea%20%7B%5Cn%20%20%20%20&:active,%5Cn%20%20%20%20&:focus-visible,%5Cn%20%20%20%20&:focus%20%7B%5Cn%20%20%20%20%20%20&:invalid%20%7B%5Cn%20%20%20%20%20%20%20%20@include%20invalid;%5Cn%20%20%20%20%20%20%7D%5Cn%20%20%20%20%7D%5Cn%20%20%7D%5Cn%5Cn%20%20&.setting-component-wrapper%20%7B%5Cn%20%20%20%20position:%20relative;%5Cn%20%20%20%20display:%20inline-flex;%5Cn%20%20%7D%5Cn%5Cn%20%20&.overlay-validator%20%7B%5Cn%20%20%20%20caret-color:%20transparent;%5Cn%20%20%20%20cursor:%20default;%5Cn%20%20%20%20position:%20absolute;%5Cn%20%20%20%20background-color:%20transparent;%5Cn%20%20%20%20border:%20none;%5Cn%20%20%20%20outline:%20none;%5Cn%20%20%20%20pointer-events:%20none;%5Cn%20%20%20%20z-index:%209999;%5Cn%20%20%20%20left:%200;%5Cn%20%20%20%20top:%200;%5Cn%20%20%20%20width:%20100%25;%5Cn%20%20%20%20height:%20100%25;%5Cn%20%20%7D%5Cn%5Cn%20%20&.tooltip.tooltip-validator%20%7B%5Cn%20%20%20%20position:%20absolute;%5Cn%20%20%20%20top:%20calc(100%25%20+%208px);%5Cn%20%20%20%20width:%20max-content;%5Cn%20%20%7D%5Cn%7D%5Cn%22%5D%7D */
|
|
385
|
+
`;i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var _o=class{static{i(this,"ValueWrapper")}constructor(e){this.value=e}};function Nk(){let t=globalThis.app;if(t)return t;try{return globalThis.require("obsidian/app")}catch{throw new Error("Obsidian App global instance not found")}}i(Nk,"getApp");function Ne(t,e,n){let a=t??Rk()??globalThis;return a.obsidianDevUtilsState??={},a.obsidianDevUtilsState[e]??=new _o(n)}i(Ne,"getObsidianDevUtilsState");function Rk(){return typeof window>"u"?null:Nk()}i(Rk,"getAppOrNull");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var $o="__no-plugin-id-initialized__",ap=$o;function cr(){return ap}i(cr,"getPluginId");function rp(t){t&&(ap=t)}i(rp,"setPluginId");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var ip=",",pr="-";function op(){return{disable:jk,enable:Lk,get:ur,set:ma}}i(op,"getDebugController");function dr(t,e=0){let n=`${t}:${String(e)}`,r=Ne(null,"debuggers",new Map).value,a=r.get(n);return a||(a=ha()(t),a.log=(o,...s)=>{Ok(t,e,o,...s)},r.set(n,a)),a}i(dr,"getDebugger");function ne(t){let e=cr(),n=e===$o?"":`${e}:`;return dr(`${n}${lr}:${t}`)}i(ne,"getLibDebugger");function kt(t,e,n,...r){if(!lp()){t(n,...r);return}t(n,...r,`
|
|
386
|
+
|
|
387
|
+
---
|
|
388
|
+
Context stack trace:
|
|
389
|
+
`,cp(e))}i(kt,"printWithStackTrace");function sp(t){let e=ha().enabled(t),n=e?"enabled":"disabled",r=e?"disable":"enable",a=ur();ma(t),dr(t)(`Debug messages for plugin ${t} are ${n}. See https://github.com/mnaoumov/obsidian-dev-utils/blob/main/docs/debugging.md how to ${r} them.`),ma(a)}i(sp,"showInitialDebugMessage");function jk(t){let e=new Set(ur());for(let n of ga(t)){if(n.startsWith(pr))continue;let r=pr+n;e.has(n)&&e.delete(n),e.add(r)}ma(Array.from(e))}i(jk,"disableNamespaces");function Lk(t){let e=new Set(ur());for(let n of ga(t)){if(!n.startsWith(pr)){let r=pr+n;e.has(r)&&e.delete(r)}e.add(n)}ma(Array.from(e))}i(Lk,"enableNamespaces");function ur(){return ga(ha().load()??"")}i(ur,"getNamespaces");function ha(){return typeof window>"u"?qo.default:Ne(null,"debug",qo.default).value}i(ha,"getSharedDebugLibInstance");function lp(){return typeof window<"u"}i(lp,"isInObsidian");function Ok(t,e,n,...r){if(!ha().enabled(t))return;if(!lp()){console.debug(n,...r);return}let a=4,o=new Error().stack?.split(`
|
|
390
|
+
`)??[];o.splice(0,a+e),console.debug(n,...r,`
|
|
391
|
+
|
|
392
|
+
---
|
|
393
|
+
Logger stack trace:
|
|
394
|
+
`,cp(o.join(`
|
|
395
|
+
`)))}i(Ok,"logWithCaller");function cp(t){return new pt("Debug mode: intentional placeholder error. See https://github.com/mnaoumov/obsidian-dev-utils/blob/main/docs/debugging.md.",t,void 0)}i(cp,"makeStackTraceError");function ma(t){ha().enable(ga(t).join(ip))}i(ma,"setNamespaces");function ga(t){return typeof t=="string"?t.split(ip).filter(Boolean):t.flatMap(ga)}i(ga,"toArray");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();function fa(t){return t.replaceAll(/[.*+?^${}()|[\]\\]/g,"\\$&")}i(fa,"escapeRegExp");function pp(t){try{return new RegExp(t),!0}catch{return!1}}i(pp,"isValidRegExp");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();async function en(t,e,...n){return e??=Ce(),e.throwIfAborted(),Dk(t)?await t(e,...n):t}i(en,"resolveValue");function Dk(t){return typeof t=="function"}i(Dk,"isFunction");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Bk={"\n":"\\n","\r":"\\r"," ":"\\t","\b":"\\b","\f":"\\f","'":"\\'",'"':'\\"',"\\":"\\\\"};var Uk={};for(let[t,e]of Object.entries(Bk))Uk[e]=t;function dp(t,e,n,r){return r??=n,t.slice(0,n)+e+t.slice(r)}i(dp,"insertAt");function ka(t){return ie(t,/\u00A0|\u202F/g," ").normalize("NFC")}i(ka,"normalize");function ie(t,e,n){return typeof n>"u"?t:(e instanceof RegExp&&!e.global&&(e=new RegExp(e.source,`${e.flags}g`)),typeof n=="string"?t.replaceAll(e,n):t.replaceAll(e,(r,...a)=>{let s=typeof a.at(-1)=="object",l=s?a.length-2:a.length-1,c={groups:s?a.at(-1):void 0,missingGroupIndices:[],offset:a.at(l-1),source:a.at(l),substring:r},p=a.slice(0,l-1).map((d,u)=>{if(typeof d=="string")return d;if(typeof d>"u")return c.missingGroupIndices.push(u),"";throw new Error(`Unexpected argument type: ${typeof d}`)});return n(c,...p)??c.substring}))}i(ie,"replaceAll");async function up(t,e,n,r){if(r??=Ce(),r.throwIfAborted(),typeof n=="string")return ie(t,e,n);let a=[];ie(t,e,(s,...l)=>(a.push(()=>en(n,r,s,...l)),""));let o=[];for(let s of a)r.throwIfAborted(),o.push(await s());return r.throwIfAborted(),ie(t,e,s=>o.shift()??s.substring)}i(up,"replaceAllAsync");function vt(t,e,n){if(t.endsWith(e))return t.slice(0,-e.length);if(n)throw new Error(`String ${t} does not end with suffix ${e}`);return t}i(vt,"trimEnd");function zn(t,e,n){if(t.startsWith(e))return t.slice(e.length);if(n)throw new Error(`String ${t} does not start with prefix ${e}`);return t}i(zn,"trimStart");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var mp=".",Vk=[{constructor:ArrayBuffer,equalityComparer:$k},{constructor:Date,equalityComparer:qk},{constructor:RegExp,equalityComparer:Wk},{constructor:Map,equalityComparer:Gk},{constructor:Set,equalityComparer:Jk}];function Qe(t,e){if(t===e)return!0;if(typeof t!="object"||typeof e!="object"||t===null||e===null)return!1;let n=t.constructor,r=e.constructor;if(n!==r)return!1;if(n!==Object){let c=Hk(t,e);if(c!==void 0)return c}let a=Mn(t),o=Mn(e);if(a.length!==o.length)return!1;let s=t,l=e;for(let c of a)if(!o.includes(c)||!Qe(s[c],l[c]))return!1;return!0}i(Qe,"deepEqual");function qe(t){return typeof t!="object"||t===null?t:"default"in t?t.default:t}i(qe,"extractDefaultExportInterop");function Mn(t){let e=[],n=t;for(;n;){let r=Object.getOwnPropertyDescriptors(n);for(let[a,o]of Object.entries(r)){if(a==="__proto__"||typeof o.value=="function")continue;let s=typeof o.get=="function",l=typeof o.set=="function";if(s||l){s&&l&&e.push(a);continue}o.enumerable&&o.writable&&e.push(a)}n=Object.getPrototypeOf(n)}return e.sort()}i(Mn,"getAllKeys");function Bt(t,e){let n=t,r=e.split(mp);for(let a of r){if(n===void 0)return;n=n[a]}return n}i(Bt,"getNestedPropertyValue");function Wo(t){return t==null?t:Object.getPrototypeOf(t)}i(Wo,"getPrototypeOf");function hp(t,e){for(let[n,r]of Object.entries(t))r===void 0&&!e?.includes(n)&&delete t[n];return t}i(hp,"removeUndefinedProperties");function gp(t,e,n){let r=new Error(`Property path ${e} not found`),a=t,o=e.split(mp);for(let l of o.slice(0,-1)){if(a===void 0)throw r;a=a[l]}let s=o.at(-1);if(a===void 0||s===void 0)throw r;a[s]=n}i(gp,"setNestedPropertyValue");function tn(t,e={}){let n={functionHandlingMode:"exclude",maxDepth:-1,shouldCatchToJSONErrors:!1,shouldHandleCircularReferences:!1,shouldHandleErrors:!1,shouldHandleUndefined:!1,shouldSortKeys:!1,space:2,tokenSubstitutions:{circularReference:Go("CircularReference"),maxDepthLimitReached:Go("MaxDepthLimitReached"),toJSONFailed:Go("ToJSONFailed")}},r={...n,...e,tokenSubstitutions:{...n.tokenSubstitutions,...e.tokenSubstitutions}};r.maxDepth===-1&&(r.maxDepth=1/0);let a=[],s=mr(t,"",0,!0,r,a,new WeakSet),l=JSON.stringify(s,null,r.space)??"";return l=ie(l,/"\[\[(?<Key>[A-Za-z]+)(?<Index>\d*)\]\]"/g,(c,p,d)=>_k({functionTexts:a,index:d?parseInt(d,10):0,key:p,substitutions:r.tokenSubstitutions})),l}i(tn,"toJson");function _k(t){switch(t.key){case"CircularReference":return t.substitutions.circularReference;case"Function":return t.functionTexts[t.index]??Xt(new Error(`Function with index ${String(t.index)} not found`));case"MaxDepthLimitReached":return t.substitutions.maxDepthLimitReached;case"MaxDepthLimitReachedArray":return`Array(${String(t.index)})`;case"ToJSONFailed":return t.substitutions.toJSONFailed;case"Undefined":return"undefined";default:break}}i(_k,"applySubstitutions");function $k(t,e){if(t.byteLength!==e.byteLength)return!1;let n=new Uint8Array(t),r=new Uint8Array(e);return Qe(n,r)}i($k,"deepEqualArrayBuffer");function qk(t,e){return t.getTime()===e.getTime()}i(qk,"deepEqualDate");function Gk(t,e){if(t.size!==e.size)return!1;for(let[n,r]of t.entries())if(!e.has(n)||!Qe(r,e.get(n)))return!1;return!0}i(Gk,"deepEqualMap");function Wk(t,e){return t.source===e.source&&t.flags===e.flags}i(Wk,"deepEqualRegExp");function Jk(t,e){if(t.size!==e.size)return!1;for(let n of t){if(e.has(n))continue;let r=!1;for(let a of e)if(Qe(n,a)){r=!0;break}if(!r)return!1}return!0}i(Jk,"deepEqualSet");function Hk(t,e){for(let{constructor:n,equalityComparer:r}of Vk)if(t instanceof n&&e instanceof n)return r(t,e)}i(Hk,"deepEqualTyped");function Kk(t,e,n,r,a,o){return e>r.maxDepth?Nn("MaxDepthLimitReachedArray",t.length):t.map((s,l)=>mr(s,String(l),e+1,n,r,a,o))}i(Kk,"handleArray");function Yk(t,e,n){if(n.shouldHandleCircularReferences)return Nn("CircularReference");let r=t.constructor.name||"Object";throw new TypeError(`Converting circular structure to JSON
|
|
396
|
+
--> starting at object with constructor '${r}'
|
|
397
|
+
--- property '${e}' closes the circle`)}i(Yk,"handleCircularReference");function Qk(t,e,n){if(n.functionHandlingMode==="exclude")return;let r=e.length,a=n.functionHandlingMode==="full"?String(t):`function ${t.name||"anonymous"}() { /* ... */ }`;return e.push(a),Nn("Function",r)}i(Qk,"handleFunction");function Zk(t,e,n,r,a,o,s){if(s.has(t))return Yk(t,e,a);if(s.add(t),r){let l=ev(t,e,n,a,o,s);if(l!==void 0)return l}return Array.isArray(t)?Kk(t,n,r,a,o,s):n>a.maxDepth?Nn("MaxDepthLimitReached"):t instanceof Error&&a.shouldHandleErrors?sr(t):Xk(t,n,r,a,o,s)}i(Zk,"handleObject");function Xk(t,e,n,r,a,o){let s=Object.entries(t);return r.shouldSortKeys&&s.sort(([l],[c])=>l.localeCompare(c)),Object.fromEntries(s.map(([l,c])=>[l,mr(c,l,e+1,n,r,a,o)]))}i(Xk,"handlePlainObject");function Go(t){return`{ "[[${t}]]": null }`}i(Go,"makeObjectTokenSubstitution");function Nn(t,e){return`[[${t}${e?String(e):""}]]`}i(Nn,"makePlaceholder");function mr(t,e,n,r,a,o,s){return t===void 0?n===0||a.shouldHandleUndefined?Nn("Undefined"):void 0:typeof t=="function"?Qk(t,o,a):typeof t!="object"||t===null?t:Zk(t,e,n,r,a,o,s)}i(mr,"toPlainObject");function ev(t,e,n,r,a,o){let s=t.toJSON;if(typeof s=="function")try{let l=s.call(t,e);return mr(l,e,n,!1,r,a,o)}catch(l){if(r.shouldCatchToJSONErrors)return Nn("ToJSONFailed");throw l}}i(ev,"tryHandleToJSON");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();async function Ho(t,e){e??=Me(1);try{await t()}catch(n){let r=new pt(ir,e,n);if(tv(r))return;or(r)}}i(Ho,"addErrorHandler");function Re(t,e){return e??=Me(1),(...n)=>{let r=Me(1);e=`${e??""}
|
|
398
|
+
at --- convertAsyncToSync --- (0)
|
|
399
|
+
${r}`,J(()=>t(...n),e)}}i(Re,"convertAsyncToSync");function tv(t){let e=t;for(;!(e instanceof In);){if(!(e instanceof Error))return!1;e=e.cause}return ne("Async:handleSilentError")(t),!0}i(tv,"handleSilentError");function J(t,e){e??=Me(1),Ho(t,e)}i(J,"invokeAsyncSafely");function fp(t,e=0,n,r){r??=Ce(),r.throwIfAborted(),n??=Me(1),J(async()=>{await Yo(e,r,!0),await t(r)},n)}i(fp,"invokeAsyncSafelyAfterDelay");var nv=new WeakSet;async function kp(){return new Promise(t=>{requestAnimationFrame(()=>{t()})})}i(kp,"requestAnimationFrameAsync");async function vp(t){let e=ne("Async:retryWithTimeout"),n=t.stackTrace??Me(1),a={...{retryDelayInMilliseconds:100,shouldRetryOnError:!1,timeoutInMilliseconds:5e3},...t.retryOptions};a.abortSignal?.throwIfAborted(),await Ko({context:{operationName:t.operationName??"",retryFn:t.operationFn},onTimeout:t.onTimeout,async operationFn(o){let s=ct(a.abortSignal,o);s.throwIfAborted();let l=0;for(;!s.aborted;){l++;let c;try{c=await t.operationFn(s)}catch(p){if(s.aborted||!a.shouldRetryOnError||nv.has(p))throw new pt("retryWithTimeout failed",n,p);dt(p),c=!1}if(c){kt(e,n,`Retry completed successfully after ${String(l)} attempts`,{operationFn:t.operationFn,operationName:t.operationName??""});return}kt(e,n,`Retry attempt ${String(l)} completed unsuccessfully. Trying again in ${String(a.retryDelayInMilliseconds)} milliseconds`,{operationFn:t.operationFn,operationName:t.operationName??""}),await Yo(a.retryDelayInMilliseconds,o)}},operationName:t.operationName??"",stackTrace:n,timeoutInMilliseconds:a.timeoutInMilliseconds})}i(vp,"retryWithTimeout");async function Ko(t){let e=t.stackTrace??Me(1),n=performance.now(),r=new AbortController,a=new AbortController,o=null,s=!1,l=!1,c=ne("Async:runWithTimeout"),p=t.onTimeout??h;if(await Promise.race([d(),u()]),s)return o;throw new pt("Run with timeout failed",e,r.signal.reason);async function d(){try{o=await t.operationFn(r.signal);let m=Math.trunc(performance.now()-n);kt(c,e,`Execution time: ${String(m)} milliseconds`,{context:t.context,operationFn:t.operationFn,operationName:t.operationName??""}),s=!0}catch(m){r.abort(m)}finally{l=!0,a.abort(new Error("Completed"))}}async function u(){if(await Yo(t.timeoutInMilliseconds,a.signal),l)return;let m=Math.trunc(performance.now()-n);kt(c,e,`Timed out after ${String(m)} milliseconds`,{context:t.context,operationFn:t.operationFn,operationName:t.operationName??""});let v={duration:m,onOperationCompleted(A){a.signal.addEventListener("abort",A)},operationName:t.operationName??"",terminateOperation(){let A=new Error(`Timed out after ${String(m)} milliseconds`);r.abort(A),a.abort(A)}};p(v),await Lo(a.signal)}function h(m){m.terminateOperation()}}i(Ko,"runWithTimeout");async function Yo(t,e,n){await Lo(ct(e,Bc(t))),n&&e?.throwIfAborted()}i(Yo,"sleep");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();async function Qo(t){return await new Promise(e=>{let n=new FileReader;n.addEventListener("loadend",r),n.readAsDataURL(t);function r(){e(n.result)}i(r,"handleLoadEnd")})}i(Qo,"blobToDataUrl");async function yp(t,e){let n=await Qo(t);return new Promise(r=>{let a=new Image;a.addEventListener("load",o),a.src=n;function o(){let s=document.createElement("canvas"),l=s.getContext("2d");if(!l)throw new Error("Could not get 2D context.");let c=a.width,p=a.height;s.width=c,s.height=p,l.fillStyle="#fff",l.fillRect(0,0,c,p),l.save();let d=.5;l.translate(c*d,p*d),l.drawImage(a,0,0,c,p,-c*d,-p*d,c,p),l.restore();let u=s.toDataURL("image/jpeg",e),h=av(u);r(h)}i(o,"handleLoad")})}i(yp,"blobToJpegArrayBuffer");function av(t){let n=t.split(";base64,")[1];if(!n)throw new Error("Invalid data URL");let r=window.atob(n),a=r.length,o=new Uint8Array(a);for(let s=0;s<a;s++)o[s]=r.charCodeAt(s);return o.buffer}i(av,"dataUrlToArrayBuffer");var rv=require("obsidian"),Ap=require("obsidian"),wp=require("obsidian"),hS=require("obsidian"),gS=require("obsidian"),sv=require("obsidian"),lv=require("obsidian"),Cp=require("obsidian");var bp=class{static{i(this,"CustomArrayDictImpl")}data=new Map;add(t,e){let n=this.get(t);n||(n=[],this.data.set(t,n)),n.includes(e)||n.push(e)}remove(t,e){let n=this.get(t);n&&(n.remove(e),n.length===0&&this.clear(t))}get(t){return this.data.get(t)||null}keys(){return Array.from(this.data.keys())}clear(t){this.data.delete(t)}clearAll(){this.data.clear()}contains(t,e){return!!this.get(t)?.contains(e)}count(){let t=0;for(let e of this.keys())t+=this.get(e)?.length??0;return t}};var Ze={AudioRecorder:"audio-recorder",Backlink:"backlink",Bases:"bases",Bookmarks:"bookmarks",Canvas:"canvas",CommandPalette:"command-palette",DailyNotes:"daily-notes",EditorStatus:"editor-status",FileExplorer:"file-explorer",FileRecovery:"file-recovery",Footnotes:"footnotes",GlobalSearch:"global-search",Graph:"graph",MarkdownImporter:"markdown-importer",NoteComposer:"note-composer",OutgoingLink:"outgoing-link",Outline:"outline",PagePreview:"page-preview",Properties:"properties",Publish:"publish",RandomNote:"random-note",SlashCommand:"slash-command",Slides:"slides",Switcher:"switcher",Sync:"sync",TagPane:"tag-pane",Templates:"templates",Webviewer:"webviewer",WordCount:"word-count",Workspaces:"workspaces",ZkPrefixer:"zk-prefixer"},nn={AllProperties:"all-properties",Audio:"audio",Backlink:Ze.Backlink,Bases:Ze.Bases,Bookmarks:Ze.Bookmarks,Canvas:Ze.Canvas,Empty:"empty",FileExplorer:Ze.FileExplorer,FileProperties:"file-properties",Graph:Ze.Graph,Image:"image",LocalGraph:"localgraph",Markdown:"markdown",OutgoingLink:Ze.OutgoingLink,Outline:Ze.Outline,Pdf:"pdf",ReleaseNotes:"release-notes",Search:"search",Sync:"sync",Table:"table",Tag:"tag",Video:"video",Webviewer:"webviewer",WebviewerHistory:"webviewer-history"};function iv(){return Ap.TFile}i(iv,"getTFileConstructor");function ov(){return wp.TFolder}i(ov,"getTFolderConstructor");function Ge(t){return t.replace(/\/?[^\/]*$/,"")||"/"}i(Ge,"parentFolderPath");function hr(t,e){let n=t.vault.getFolderByPath(e);return n||(n=new(ov())(t.vault,e),n.parent=hr(t,Ge(e)),n.deleted=!0,n)}i(hr,"createTFolderInstance");function xp(t,e){let n=t.vault.getFileByPath(e);return n||(n=new(iv())(t.vault,e),n.parent=hr(t,Ge(e)),n.deleted=!0,n)}i(xp,"createTFileInstance");async function gr(){return await(0,Cp.loadPrism)()}i(gr,"loadPrism");function We(t){return!!t.position}i(We,"isReferenceCache");function Je(t){return!!t.key}i(Je,"isFrontmatterLinkCache");var Zo=Mt(Pp(),1);i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var pv=/[a-zA-Z]:\/[^:]*$/,bt=Zo.default.posix,xS=bt.delimiter,CS=Zo.default.posix.sep,se=bt.basename,oe=bt.dirname,Ae=bt.extname,TS=bt.format;var le=bt.join,SS=bt.normalize,PS=bt.parse,jn=bt.relative;function Xe(t,e){return e?`${t}.${e}`:t}i(Xe,"makeFileName");function Ep(...t){let e=bt.resolve(...t);return e=dv(e),pv.exec(e)?.[0]??e}i(Ep,"resolve");function dv(t){return ie(t,"\\","/")}i(dv,"toPosixPath");var At=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var uv="base",fr="canvas",va="md";function Xo(t){return t.map(e=>es(e))}i(Xo,"asArrayOfFolders");function es(t){return kr(t)??Xt(new Error("Abstract file is not a folder"))}i(es,"asFolder");function kr(t){if(t===null)return null;if(t instanceof At.TFolder)return t;throw new Error("Abstract file is not a folder")}i(kr,"asFolderOrNull");function ts(t,e,n){if(ce(e))return e.extension===n;if(typeof e=="string"){let r=pe(t,e);return r?r.extension===n:Ae(e).slice(1)===n}return!1}i(ts,"checkExtension");function an(t,e,n){if(e===null)return null;if(Ip(e))return t.vault.fileMap[e.path]??e;let r=Fp(t,e,n);if(r)return r;let a=zp(e);return a===e?null:Fp(t,a,n)}i(an,"getAbstractFileOrNull");function ue(t,e,n,r){let a=pe(t,e,r);if(!a)if(n)a=xp(t,e);else throw new Error(`File not found: ${e}`);return a}i(ue,"getFile");function pe(t,e,n){let r=an(t,e,n);return ce(r)?r:null}i(pe,"getFileOrNull");function Ln(t,e,n,r){let a=ut(t,e,r);if(!a)if(n)a=hr(t,e);else throw new Error(`Folder not found: ${e}`);return a}i(Ln,"getFolder");function ut(t,e,n){let r=an(t,e,n);return wt(r)?r:null}i(ut,"getFolderOrNull");function ee(t,e){if(Ip(e))return e.path;let n=an(t,e);return n?n.path:zp(e)}i(ee,"getPath");function Ip(t){return t instanceof At.TAbstractFile}i(Ip,"isAbstractFile");function mv(t,e){return ts(t,e,uv)}i(mv,"isBaseFile");function Nt(t,e){return ts(t,e,fr)}i(Nt,"isCanvasFile");function ce(t){return t instanceof At.TFile}i(ce,"isFile");function wt(t){return t instanceof At.TFolder}i(wt,"isFolder");function xt(t,e){return ts(t,e,va)}i(xt,"isMarkdownFile");function Ue(t,e){return xt(t,e)||Nt(t,e)||mv(t,e)}i(Ue,"isNote");function Fp(t,e,n){return n?t.vault.getAbstractFileByPathInsensitive(e):t.vault.getAbstractFileByPath(e)}i(Fp,"getFileInternal");function zp(t){return(0,At.normalizePath)(Ep("/",t))}i(zp,"getResolvedPath");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Ut=(t=>(t.DeleteNote="DeleteNote",t.RenameNote="RenameNote",t.Unknown="Unknown",t))(Ut||{}),Ct="__DUMMY__";async function ns(t){let{app:e,notePathOrFile:n,oldAttachmentPathOrFile:r,shouldSkipDuplicateCheck:a}=t,o=ee(e,r),s=Ae(o),l=se(o,s),c=pe(e,o),p=e.vault.getAvailablePathForAttachments.extended;return p?p({attachmentFileBaseName:l,attachmentFileContent:c?await e.vault.readBinary(c):void 0,attachmentFileExtension:s.slice(1),attachmentFileStat:c?.stat,context:t.context,notePathOrFile:n,oldAttachmentPathOrFile:t.oldAttachmentPathOrFile,oldNotePathOrFile:t.oldNotePathOrFile,shouldSkipDuplicateCheck:a,shouldSkipMissingAttachmentFolderCreation:!0}):await as({app:e,attachmentFileBaseName:l,attachmentFileExtension:s.slice(1),notePathOrFile:n,shouldSkipDuplicateCheck:a,shouldSkipMissingAttachmentFolderCreation:!0})}i(ns,"getAttachmentFilePath");async function On(t,e,n="Unknown"){return Ge(await ns({app:t,context:n,notePathOrFile:e,oldAttachmentPathOrFile:Ct,shouldSkipDuplicateCheck:!0}))}i(On,"getAttachmentFolderPath");async function as(t){let{app:e,attachmentFileExtension:n,notePathOrFile:r,shouldSkipDuplicateCheck:a,shouldSkipMissingAttachmentFolderCreation:o}=t,s=e.vault.getConfig("attachmentFolderPath"),l=s==="."||s==="./",c=s.startsWith("./")?zn(s,"./"):null,p=pe(e,r);l?s=p?p.parent?.path??"":"":c&&(s=(p?p.parent?.getParentPrefix()??"":"")+c),s=ka(Mp(s));let d=ka(Mp(t.attachmentFileBaseName)),u=ut(e,s,!0);!u&&c&&(u=o?Ln(e,s,!0):await e.vault.createFolder(s));let h=u?.getParentPrefix()??"";return a?Xe(h+d,n):e.vault.getAvailablePath(h+d,n)}i(as,"getAvailablePathForAttachments");async function rs(t,e,n="Unknown"){let r=await On(t,e,n),a=await On(t,le(oe(e),`${Ct}.${va}`),n);return r!==a}i(rs,"hasOwnAttachmentFolder");function Mp(t){return t=ie(t,/(?:[\\/])+/g,"/"),t=ie(t,/^\/+|\/+$/g,""),t||"/"}i(Mp,"normalizeSlashes");var Kn=require("obsidian");var hv={};function rn(t,e){let n=e||hv,r=typeof n.includeImageAlt=="boolean"?n.includeImageAlt:!0,a=typeof n.includeHtml=="boolean"?n.includeHtml:!0;return Rp(t,r,a)}i(rn,"toString");function Rp(t,e,n){if(gv(t)){if("value"in t)return t.type==="html"&&!n?"":t.value;if(e&&"alt"in t&&t.alt)return t.alt;if("children"in t)return Np(t.children,e,n)}return Array.isArray(t)?Np(t,e,n):""}i(Rp,"one");function Np(t,e,n){let r=[],a=-1;for(;++a<t.length;)r[a]=Rp(t[a],e,n);return r.join("")}i(Np,"all");function gv(t){return!!(t&&typeof t=="object")}i(gv,"node");var jp=document.createElement("i");function Dn(t){let e="&"+t+";";jp.innerHTML=e;let n=jp.textContent;return n.charCodeAt(n.length-1)===59&&t!=="semi"||n===e?!1:n}i(Dn,"decodeNamedCharacterReference");function we(t,e,n,r){let a=t.length,o=0,s;if(e<0?e=-e>a?0:a+e:e=e>a?a:e,n=n>0?n:0,r.length<1e4)s=Array.from(r),s.unshift(e,n),t.splice(...s);else for(n&&t.splice(e,n);o<r.length;)s=r.slice(o,o+1e4),s.unshift(e,0),t.splice(...s),o+=1e4,e+=1e4}i(we,"splice");function je(t,e){return t.length>0?(we(t,t.length,0,e),t):e}i(je,"push");var Lp={}.hasOwnProperty;function Op(t){let e={},n=-1;for(;++n<t.length;)fv(e,t[n]);return e}i(Op,"combineExtensions");function fv(t,e){let n;for(n in e){let a=(Lp.call(t,n)?t[n]:void 0)||(t[n]={}),o=e[n],s;if(o)for(s in o){Lp.call(a,s)||(a[s]=[]);let l=o[s];kv(a[s],Array.isArray(l)?l:l?[l]:[])}}}i(fv,"syntaxExtension");function kv(t,e){let n=-1,r=[];for(;++n<e.length;)(e[n].add==="after"?t:r).push(e[n]);we(t,0,0,r)}i(kv,"constructs");function vr(t,e){let n=Number.parseInt(t,e);return n<9||n===11||n>13&&n<32||n>126&&n<160||n>55295&&n<57344||n>64975&&n<65008||(n&65535)===65535||(n&65535)===65534||n>1114111?"\uFFFD":String.fromCodePoint(n)}i(vr,"decodeNumericCharacterReference");function Rt(t){return t.replace(/[\t\n\r ]+/g," ").replace(/^ | $/g,"").toLowerCase().toUpperCase()}i(Rt,"normalizeIdentifier");var He=Vt(/[A-Za-z]/),Le=Vt(/[\dA-Za-z]/),Dp=Vt(/[#-'*+\--9=?A-Z^-~]/);function ya(t){return t!==null&&(t<32||t===127)}i(ya,"asciiControl");var ba=Vt(/\d/),Bp=Vt(/[\dA-Fa-f]/),Up=Vt(/[!-/:-@[-`{-~]/);function M(t){return t!==null&&t<-2}i(M,"markdownLineEnding");function de(t){return t!==null&&(t<0||t===32)}i(de,"markdownLineEndingOrSpace");function U(t){return t===-2||t===-1||t===32}i(U,"markdownSpace");var Vp=Vt(/\p{P}|\p{S}/u),_p=Vt(/\s/);function Vt(t){return e;function e(n){return n!==null&&n>-1&&t.test(String.fromCharCode(n))}}i(Vt,"regexCheck");function _(t,e,n,r){let a=r?r-1:Number.POSITIVE_INFINITY,o=0;return s;function s(c){return U(c)?(t.enter(n),l(c)):e(c)}function l(c){return U(c)&&o++<a?(t.consume(c),l):(t.exit(n),e(c))}}i(_,"factorySpace");var $p={tokenize:vv};function vv(t){let e=t.attempt(this.parser.constructs.contentInitial,r,a),n;return e;function r(l){if(l===null){t.consume(l);return}return t.enter("lineEnding"),t.consume(l),t.exit("lineEnding"),_(t,e,"linePrefix")}function a(l){return t.enter("paragraph"),o(l)}function o(l){let c=t.enter("chunkText",{contentType:"text",previous:n});return n&&(n.next=c),n=c,s(l)}function s(l){if(l===null){t.exit("chunkText"),t.exit("paragraph"),t.consume(l);return}return M(l)?(t.consume(l),t.exit("chunkText"),o):(t.consume(l),s)}}i(vv,"initializeContent");var Gp={tokenize:yv},qp={tokenize:bv};function yv(t){let e=this,n=[],r=0,a,o,s;return l;function l(T){if(r<n.length){let P=n[r];return e.containerState=P[1],t.attempt(P[0].continuation,c,p)(T)}return p(T)}function c(T){if(r++,e.containerState._closeFlow){e.containerState._closeFlow=void 0,a&&w();let P=e.events.length,j=P,x;for(;j--;)if(e.events[j][0]==="exit"&&e.events[j][1].type==="chunkFlow"){x=e.events[j][1].end;break}y(r);let q=P;for(;q<e.events.length;)e.events[q][1].end={...x},q++;return we(e.events,j+1,0,e.events.slice(P)),e.events.length=q,p(T)}return l(T)}function p(T){if(r===n.length){if(!a)return h(T);if(a.currentConstruct&&a.currentConstruct.concrete)return v(T);e.interrupt=!!(a.currentConstruct&&!a._gfmTableDynamicInterruptHack)}return e.containerState={},t.check(qp,d,u)(T)}function d(T){return a&&w(),y(r),h(T)}function u(T){return e.parser.lazy[e.now().line]=r!==n.length,s=e.now().offset,v(T)}function h(T){return e.containerState={},t.attempt(qp,m,v)(T)}function m(T){return r++,n.push([e.currentConstruct,e.containerState]),h(T)}function v(T){if(T===null){a&&w(),y(0),t.consume(T);return}return a=a||e.parser.flow(e.now()),t.enter("chunkFlow",{_tokenizer:a,contentType:"flow",previous:o}),A(T)}function A(T){if(T===null){b(t.exit("chunkFlow"),!0),y(0),t.consume(T);return}return M(T)?(t.consume(T),b(t.exit("chunkFlow")),r=0,e.interrupt=void 0,l):(t.consume(T),A)}function b(T,P){let j=e.sliceStream(T);if(P&&j.push(null),T.previous=o,o&&(o.next=T),o=T,a.defineSkip(T.start),a.write(j),e.parser.lazy[T.start.line]){let x=a.events.length;for(;x--;)if(a.events[x][1].start.offset<s&&(!a.events[x][1].end||a.events[x][1].end.offset>s))return;let q=e.events.length,Y=q,B,W;for(;Y--;)if(e.events[Y][0]==="exit"&&e.events[Y][1].type==="chunkFlow"){if(B){W=e.events[Y][1].end;break}B=!0}for(y(r),x=q;x<e.events.length;)e.events[x][1].end={...W},x++;we(e.events,Y+1,0,e.events.slice(q)),e.events.length=x}}function y(T){let P=n.length;for(;P-- >T;){let j=n[P];e.containerState=j[1],j[0].exit.call(e,t)}n.length=T}function w(){a.write([null]),o=void 0,a=void 0,e.containerState._closeFlow=void 0}}i(yv,"initializeDocument");function bv(t,e,n){return _(t,t.attempt(this.parser.constructs.document,e,n),"linePrefix",this.parser.constructs.disable.null.includes("codeIndented")?void 0:4)}i(bv,"tokenizeContainer");function Bn(t){if(t===null||de(t)||_p(t))return 1;if(Vp(t))return 2}i(Bn,"classifyCharacter");function Un(t,e,n){let r=[],a=-1;for(;++a<t.length;){let o=t[a].resolveAll;o&&!r.includes(o)&&(e=o(e,n),r.push(o))}return e}i(Un,"resolveAll");var Aa={name:"attention",resolveAll:Av,tokenize:wv};function Av(t,e){let n=-1,r,a,o,s,l,c,p,d;for(;++n<t.length;)if(t[n][0]==="enter"&&t[n][1].type==="attentionSequence"&&t[n][1]._close){for(r=n;r--;)if(t[r][0]==="exit"&&t[r][1].type==="attentionSequence"&&t[r][1]._open&&e.sliceSerialize(t[r][1]).charCodeAt(0)===e.sliceSerialize(t[n][1]).charCodeAt(0)){if((t[r][1]._close||t[n][1]._open)&&(t[n][1].end.offset-t[n][1].start.offset)%3&&!((t[r][1].end.offset-t[r][1].start.offset+t[n][1].end.offset-t[n][1].start.offset)%3))continue;c=t[r][1].end.offset-t[r][1].start.offset>1&&t[n][1].end.offset-t[n][1].start.offset>1?2:1;let u={...t[r][1].end},h={...t[n][1].start};Wp(u,-c),Wp(h,c),s={type:c>1?"strongSequence":"emphasisSequence",start:u,end:{...t[r][1].end}},l={type:c>1?"strongSequence":"emphasisSequence",start:{...t[n][1].start},end:h},o={type:c>1?"strongText":"emphasisText",start:{...t[r][1].end},end:{...t[n][1].start}},a={type:c>1?"strong":"emphasis",start:{...s.start},end:{...l.end}},t[r][1].end={...s.start},t[n][1].start={...l.end},p=[],t[r][1].end.offset-t[r][1].start.offset&&(p=je(p,[["enter",t[r][1],e],["exit",t[r][1],e]])),p=je(p,[["enter",a,e],["enter",s,e],["exit",s,e],["enter",o,e]]),p=je(p,Un(e.parser.constructs.insideSpan.null,t.slice(r+1,n),e)),p=je(p,[["exit",o,e],["enter",l,e],["exit",l,e],["exit",a,e]]),t[n][1].end.offset-t[n][1].start.offset?(d=2,p=je(p,[["enter",t[n][1],e],["exit",t[n][1],e]])):d=0,we(t,r-1,n-r+3,p),n=r+p.length-d-2;break}}for(n=-1;++n<t.length;)t[n][1].type==="attentionSequence"&&(t[n][1].type="data");return t}i(Av,"resolveAllAttention");function wv(t,e){let n=this.parser.constructs.attentionMarkers.null,r=this.previous,a=Bn(r),o;return s;function s(c){return o=c,t.enter("attentionSequence"),l(c)}function l(c){if(c===o)return t.consume(c),l;let p=t.exit("attentionSequence"),d=Bn(c),u=!d||d===2&&a||n.includes(c),h=!a||a===2&&d||n.includes(r);return p._open=!!(o===42?u:u&&(a||!h)),p._close=!!(o===42?h:h&&(d||!u)),e(c)}}i(wv,"tokenizeAttention");function Wp(t,e){t.column+=e,t.offset+=e,t._bufferIndex+=e}i(Wp,"movePoint");var is={name:"autolink",tokenize:xv};function xv(t,e,n){let r=0;return a;function a(m){return t.enter("autolink"),t.enter("autolinkMarker"),t.consume(m),t.exit("autolinkMarker"),t.enter("autolinkProtocol"),o}function o(m){return He(m)?(t.consume(m),s):m===64?n(m):p(m)}function s(m){return m===43||m===45||m===46||Le(m)?(r=1,l(m)):p(m)}function l(m){return m===58?(t.consume(m),r=0,c):(m===43||m===45||m===46||Le(m))&&r++<32?(t.consume(m),l):(r=0,p(m))}function c(m){return m===62?(t.exit("autolinkProtocol"),t.enter("autolinkMarker"),t.consume(m),t.exit("autolinkMarker"),t.exit("autolink"),e):m===null||m===32||m===60||ya(m)?n(m):(t.consume(m),c)}function p(m){return m===64?(t.consume(m),d):Dp(m)?(t.consume(m),p):n(m)}function d(m){return Le(m)?u(m):n(m)}function u(m){return m===46?(t.consume(m),r=0,d):m===62?(t.exit("autolinkProtocol").type="autolinkEmail",t.enter("autolinkMarker"),t.consume(m),t.exit("autolinkMarker"),t.exit("autolink"),e):h(m)}function h(m){if((m===45||Le(m))&&r++<63){let v=m===45?h:u;return t.consume(m),v}return n(m)}}i(xv,"tokenizeAutolink");var _t={partial:!0,tokenize:Cv};function Cv(t,e,n){return r;function r(o){return U(o)?_(t,a,"linePrefix")(o):a(o)}function a(o){return o===null||M(o)?e(o):n(o)}}i(Cv,"tokenizeBlankLine");var yr={continuation:{tokenize:Sv},exit:Pv,name:"blockQuote",tokenize:Tv};function Tv(t,e,n){let r=this;return a;function a(s){if(s===62){let l=r.containerState;return l.open||(t.enter("blockQuote",{_container:!0}),l.open=!0),t.enter("blockQuotePrefix"),t.enter("blockQuoteMarker"),t.consume(s),t.exit("blockQuoteMarker"),o}return n(s)}function o(s){return U(s)?(t.enter("blockQuotePrefixWhitespace"),t.consume(s),t.exit("blockQuotePrefixWhitespace"),t.exit("blockQuotePrefix"),e):(t.exit("blockQuotePrefix"),e(s))}}i(Tv,"tokenizeBlockQuoteStart");function Sv(t,e,n){let r=this;return a;function a(s){return U(s)?_(t,o,"linePrefix",r.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(s):o(s)}function o(s){return t.attempt(yr,e,n)(s)}}i(Sv,"tokenizeBlockQuoteContinuation");function Pv(t){t.exit("blockQuote")}i(Pv,"exit");var br={name:"characterEscape",tokenize:Ev};function Ev(t,e,n){return r;function r(o){return t.enter("characterEscape"),t.enter("escapeMarker"),t.consume(o),t.exit("escapeMarker"),a}function a(o){return Up(o)?(t.enter("characterEscapeValue"),t.consume(o),t.exit("characterEscapeValue"),t.exit("characterEscape"),e):n(o)}}i(Ev,"tokenizeCharacterEscape");var Ar={name:"characterReference",tokenize:Fv};function Fv(t,e,n){let r=this,a=0,o,s;return l;function l(u){return t.enter("characterReference"),t.enter("characterReferenceMarker"),t.consume(u),t.exit("characterReferenceMarker"),c}function c(u){return u===35?(t.enter("characterReferenceMarkerNumeric"),t.consume(u),t.exit("characterReferenceMarkerNumeric"),p):(t.enter("characterReferenceValue"),o=31,s=Le,d(u))}function p(u){return u===88||u===120?(t.enter("characterReferenceMarkerHexadecimal"),t.consume(u),t.exit("characterReferenceMarkerHexadecimal"),t.enter("characterReferenceValue"),o=6,s=Bp,d):(t.enter("characterReferenceValue"),o=7,s=ba,d(u))}function d(u){if(u===59&&a){let h=t.exit("characterReferenceValue");return s===Le&&!Dn(r.sliceSerialize(h))?n(u):(t.enter("characterReferenceMarker"),t.consume(u),t.exit("characterReferenceMarker"),t.exit("characterReference"),e)}return s(u)&&a++<o?(t.consume(u),d):n(u)}}i(Fv,"tokenizeCharacterReference");var Jp={partial:!0,tokenize:zv},wr={concrete:!0,name:"codeFenced",tokenize:Iv};function Iv(t,e,n){let r=this,a={partial:!0,tokenize:j},o=0,s=0,l;return c;function c(x){return p(x)}function p(x){let q=r.events[r.events.length-1];return o=q&&q[1].type==="linePrefix"?q[2].sliceSerialize(q[1],!0).length:0,l=x,t.enter("codeFenced"),t.enter("codeFencedFence"),t.enter("codeFencedFenceSequence"),d(x)}function d(x){return x===l?(s++,t.consume(x),d):s<3?n(x):(t.exit("codeFencedFenceSequence"),U(x)?_(t,u,"whitespace")(x):u(x))}function u(x){return x===null||M(x)?(t.exit("codeFencedFence"),r.interrupt?e(x):t.check(Jp,A,P)(x)):(t.enter("codeFencedFenceInfo"),t.enter("chunkString",{contentType:"string"}),h(x))}function h(x){return x===null||M(x)?(t.exit("chunkString"),t.exit("codeFencedFenceInfo"),u(x)):U(x)?(t.exit("chunkString"),t.exit("codeFencedFenceInfo"),_(t,m,"whitespace")(x)):x===96&&x===l?n(x):(t.consume(x),h)}function m(x){return x===null||M(x)?u(x):(t.enter("codeFencedFenceMeta"),t.enter("chunkString",{contentType:"string"}),v(x))}function v(x){return x===null||M(x)?(t.exit("chunkString"),t.exit("codeFencedFenceMeta"),u(x)):x===96&&x===l?n(x):(t.consume(x),v)}function A(x){return t.attempt(a,P,b)(x)}function b(x){return t.enter("lineEnding"),t.consume(x),t.exit("lineEnding"),y}function y(x){return o>0&&U(x)?_(t,w,"linePrefix",o+1)(x):w(x)}function w(x){return x===null||M(x)?t.check(Jp,A,P)(x):(t.enter("codeFlowValue"),T(x))}function T(x){return x===null||M(x)?(t.exit("codeFlowValue"),w(x)):(t.consume(x),T)}function P(x){return t.exit("codeFenced"),e(x)}function j(x,q,Y){let B=0;return W;function W(O){return x.enter("lineEnding"),x.consume(O),x.exit("lineEnding"),ke}function ke(O){return x.enter("codeFencedFence"),U(O)?_(x,K,"linePrefix",r.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(O):K(O)}function K(O){return O===l?(x.enter("codeFencedFenceSequence"),E(O)):Y(O)}function E(O){return O===l?(B++,x.consume(O),E):B>=s?(x.exit("codeFencedFenceSequence"),U(O)?_(x,L,"whitespace")(O):L(O)):Y(O)}function L(O){return O===null||M(O)?(x.exit("codeFencedFence"),q(O)):Y(O)}}}i(Iv,"tokenizeCodeFenced");function zv(t,e,n){let r=this;return a;function a(s){return s===null?n(s):(t.enter("lineEnding"),t.consume(s),t.exit("lineEnding"),o)}function o(s){return r.parser.lazy[r.now().line]?n(s):e(s)}}i(zv,"tokenizeNonLazyContinuation");var wa={name:"codeIndented",tokenize:Nv},Mv={partial:!0,tokenize:Rv};function Nv(t,e,n){let r=this;return a;function a(p){return t.enter("codeIndented"),_(t,o,"linePrefix",5)(p)}function o(p){let d=r.events[r.events.length-1];return d&&d[1].type==="linePrefix"&&d[2].sliceSerialize(d[1],!0).length>=4?s(p):n(p)}function s(p){return p===null?c(p):M(p)?t.attempt(Mv,s,c)(p):(t.enter("codeFlowValue"),l(p))}function l(p){return p===null||M(p)?(t.exit("codeFlowValue"),s(p)):(t.consume(p),l)}function c(p){return t.exit("codeIndented"),e(p)}}i(Nv,"tokenizeCodeIndented");function Rv(t,e,n){let r=this;return a;function a(s){return r.parser.lazy[r.now().line]?n(s):M(s)?(t.enter("lineEnding"),t.consume(s),t.exit("lineEnding"),a):_(t,o,"linePrefix",5)(s)}function o(s){let l=r.events[r.events.length-1];return l&&l[1].type==="linePrefix"&&l[2].sliceSerialize(l[1],!0).length>=4?e(s):M(s)?a(s):n(s)}}i(Rv,"tokenizeFurtherStart");var os={name:"codeText",previous:Lv,resolve:jv,tokenize:Ov};function jv(t){let e=t.length-4,n=3,r,a;if((t[n][1].type==="lineEnding"||t[n][1].type==="space")&&(t[e][1].type==="lineEnding"||t[e][1].type==="space")){for(r=n;++r<e;)if(t[r][1].type==="codeTextData"){t[n][1].type="codeTextPadding",t[e][1].type="codeTextPadding",n+=2,e-=2;break}}for(r=n-1,e++;++r<=e;)a===void 0?r!==e&&t[r][1].type!=="lineEnding"&&(a=r):(r===e||t[r][1].type==="lineEnding")&&(t[a][1].type="codeTextData",r!==a+2&&(t[a][1].end=t[r-1][1].end,t.splice(a+2,r-a-2),e-=r-a-2,r=a+2),a=void 0);return t}i(jv,"resolveCodeText");function Lv(t){return t!==96||this.events[this.events.length-1][1].type==="characterEscape"}i(Lv,"previous");function Ov(t,e,n){let r=this,a=0,o,s;return l;function l(h){return t.enter("codeText"),t.enter("codeTextSequence"),c(h)}function c(h){return h===96?(t.consume(h),a++,c):(t.exit("codeTextSequence"),p(h))}function p(h){return h===null?n(h):h===32?(t.enter("space"),t.consume(h),t.exit("space"),p):h===96?(s=t.enter("codeTextSequence"),o=0,u(h)):M(h)?(t.enter("lineEnding"),t.consume(h),t.exit("lineEnding"),p):(t.enter("codeTextData"),d(h))}function d(h){return h===null||h===32||h===96||M(h)?(t.exit("codeTextData"),p(h)):(t.consume(h),d)}function u(h){return h===96?(t.consume(h),o++,u):o===a?(t.exit("codeTextSequence"),t.exit("codeText"),e(h)):(s.type="codeTextData",d(h))}}i(Ov,"tokenizeCodeText");var xr=class{static{i(this,"SpliceBuffer")}constructor(e){this.left=e?[...e]:[],this.right=[]}get(e){if(e<0||e>=this.left.length+this.right.length)throw new RangeError("Cannot access index `"+e+"` in a splice buffer of size `"+(this.left.length+this.right.length)+"`");return e<this.left.length?this.left[e]:this.right[this.right.length-e+this.left.length-1]}get length(){return this.left.length+this.right.length}shift(){return this.setCursor(0),this.right.pop()}slice(e,n){let r=n??Number.POSITIVE_INFINITY;return r<this.left.length?this.left.slice(e,r):e>this.left.length?this.right.slice(this.right.length-r+this.left.length,this.right.length-e+this.left.length).reverse():this.left.slice(e).concat(this.right.slice(this.right.length-r+this.left.length).reverse())}splice(e,n,r){let a=n||0;this.setCursor(Math.trunc(e));let o=this.right.splice(this.right.length-a,Number.POSITIVE_INFINITY);return r&&xa(this.left,r),o.reverse()}pop(){return this.setCursor(Number.POSITIVE_INFINITY),this.left.pop()}push(e){this.setCursor(Number.POSITIVE_INFINITY),this.left.push(e)}pushMany(e){this.setCursor(Number.POSITIVE_INFINITY),xa(this.left,e)}unshift(e){this.setCursor(0),this.right.push(e)}unshiftMany(e){this.setCursor(0),xa(this.right,e.reverse())}setCursor(e){if(!(e===this.left.length||e>this.left.length&&this.right.length===0||e<0&&this.left.length===0))if(e<this.left.length){let n=this.left.splice(e,Number.POSITIVE_INFINITY);xa(this.right,n.reverse())}else{let n=this.right.splice(this.left.length+this.right.length-e,Number.POSITIVE_INFINITY);xa(this.left,n.reverse())}}};function xa(t,e){let n=0;if(e.length<1e4)t.push(...e);else for(;n<e.length;)t.push(...e.slice(n,n+1e4)),n+=1e4}i(xa,"chunkedPush");function Cr(t){let e={},n=-1,r,a,o,s,l,c,p,d=new xr(t);for(;++n<d.length;){for(;n in e;)n=e[n];if(r=d.get(n),n&&r[1].type==="chunkFlow"&&d.get(n-1)[1].type==="listItemPrefix"&&(c=r[1]._tokenizer.events,o=0,o<c.length&&c[o][1].type==="lineEndingBlank"&&(o+=2),o<c.length&&c[o][1].type==="content"))for(;++o<c.length&&c[o][1].type!=="content";)c[o][1].type==="chunkText"&&(c[o][1]._isInFirstContentOfListItem=!0,o++);if(r[0]==="enter")r[1].contentType&&(Object.assign(e,Dv(d,n)),n=e[n],p=!0);else if(r[1]._container){for(o=n,a=void 0;o--;)if(s=d.get(o),s[1].type==="lineEnding"||s[1].type==="lineEndingBlank")s[0]==="enter"&&(a&&(d.get(a)[1].type="lineEndingBlank"),s[1].type="lineEnding",a=o);else if(!(s[1].type==="linePrefix"||s[1].type==="listItemIndent"))break;a&&(r[1].end={...d.get(a)[1].start},l=d.slice(a,n),l.unshift(r),d.splice(a,n-a+1,l))}}return we(t,0,Number.POSITIVE_INFINITY,d.slice(0)),!p}i(Cr,"subtokenize");function Dv(t,e){let n=t.get(e)[1],r=t.get(e)[2],a=e-1,o=[],s=n._tokenizer;s||(s=r.parser[n.contentType](n.start),n._contentTypeTextTrailing&&(s._contentTypeTextTrailing=!0));let l=s.events,c=[],p={},d,u,h=-1,m=n,v=0,A=0,b=[A];for(;m;){for(;t.get(++a)[1]!==m;);o.push(a),m._tokenizer||(d=r.sliceStream(m),m.next||d.push(null),u&&s.defineSkip(m.start),m._isInFirstContentOfListItem&&(s._gfmTasklistFirstContentOfListItem=!0),s.write(d),m._isInFirstContentOfListItem&&(s._gfmTasklistFirstContentOfListItem=void 0)),u=m,m=m.next}for(m=n;++h<l.length;)l[h][0]==="exit"&&l[h-1][0]==="enter"&&l[h][1].type===l[h-1][1].type&&l[h][1].start.line!==l[h][1].end.line&&(A=h+1,b.push(A),m._tokenizer=void 0,m.previous=void 0,m=m.next);for(s.events=[],m?(m._tokenizer=void 0,m.previous=void 0):b.pop(),h=b.length;h--;){let y=l.slice(b[h],b[h+1]),w=o.pop();c.push([w,w+y.length-1]),t.splice(w,2,y)}for(c.reverse(),h=-1;++h<c.length;)p[v+c[h][0]]=v+c[h][1],v+=c[h][1]-c[h][0]-1;return p}i(Dv,"subcontent");var ss={resolve:Uv,tokenize:Vv},Bv={partial:!0,tokenize:_v};function Uv(t){return Cr(t),t}i(Uv,"resolveContent");function Vv(t,e){let n;return r;function r(l){return t.enter("content"),n=t.enter("chunkContent",{contentType:"content"}),a(l)}function a(l){return l===null?o(l):M(l)?t.check(Bv,s,o)(l):(t.consume(l),a)}function o(l){return t.exit("chunkContent"),t.exit("content"),e(l)}function s(l){return t.consume(l),t.exit("chunkContent"),n.next=t.enter("chunkContent",{contentType:"content",previous:n}),n=n.next,a}}i(Vv,"tokenizeContent");function _v(t,e,n){let r=this;return a;function a(s){return t.exit("chunkContent"),t.enter("lineEnding"),t.consume(s),t.exit("lineEnding"),_(t,o,"linePrefix")}function o(s){if(s===null||M(s))return n(s);let l=r.events[r.events.length-1];return!r.parser.constructs.disable.null.includes("codeIndented")&&l&&l[1].type==="linePrefix"&&l[2].sliceSerialize(l[1],!0).length>=4?e(s):t.interrupt(r.parser.constructs.flow,n,e)(s)}}i(_v,"tokenizeContinuation");function Tr(t,e,n,r,a,o,s,l,c){let p=c||Number.POSITIVE_INFINITY,d=0;return u;function u(y){return y===60?(t.enter(r),t.enter(a),t.enter(o),t.consume(y),t.exit(o),h):y===null||y===32||y===41||ya(y)?n(y):(t.enter(r),t.enter(s),t.enter(l),t.enter("chunkString",{contentType:"string"}),A(y))}function h(y){return y===62?(t.enter(o),t.consume(y),t.exit(o),t.exit(a),t.exit(r),e):(t.enter(l),t.enter("chunkString",{contentType:"string"}),m(y))}function m(y){return y===62?(t.exit("chunkString"),t.exit(l),h(y)):y===null||y===60||M(y)?n(y):(t.consume(y),y===92?v:m)}function v(y){return y===60||y===62||y===92?(t.consume(y),m):m(y)}function A(y){return!d&&(y===null||y===41||de(y))?(t.exit("chunkString"),t.exit(l),t.exit(s),t.exit(r),e(y)):d<p&&y===40?(t.consume(y),d++,A):y===41?(t.consume(y),d--,A):y===null||y===32||y===40||ya(y)?n(y):(t.consume(y),y===92?b:A)}function b(y){return y===40||y===41||y===92?(t.consume(y),A):A(y)}}i(Tr,"factoryDestination");function Sr(t,e,n,r,a,o){let s=this,l=0,c;return p;function p(m){return t.enter(r),t.enter(a),t.consume(m),t.exit(a),t.enter(o),d}function d(m){return l>999||m===null||m===91||m===93&&!c||m===94&&!l&&"_hiddenFootnoteSupport"in s.parser.constructs?n(m):m===93?(t.exit(o),t.enter(a),t.consume(m),t.exit(a),t.exit(r),e):M(m)?(t.enter("lineEnding"),t.consume(m),t.exit("lineEnding"),d):(t.enter("chunkString",{contentType:"string"}),u(m))}function u(m){return m===null||m===91||m===93||M(m)||l++>999?(t.exit("chunkString"),d(m)):(t.consume(m),c||(c=!U(m)),m===92?h:u)}function h(m){return m===91||m===92||m===93?(t.consume(m),l++,u):u(m)}}i(Sr,"factoryLabel");function Pr(t,e,n,r,a,o){let s;return l;function l(h){return h===34||h===39||h===40?(t.enter(r),t.enter(a),t.consume(h),t.exit(a),s=h===40?41:h,c):n(h)}function c(h){return h===s?(t.enter(a),t.consume(h),t.exit(a),t.exit(r),e):(t.enter(o),p(h))}function p(h){return h===s?(t.exit(o),c(s)):h===null?n(h):M(h)?(t.enter("lineEnding"),t.consume(h),t.exit("lineEnding"),_(t,p,"linePrefix")):(t.enter("chunkString",{contentType:"string"}),d(h))}function d(h){return h===s||h===null||M(h)?(t.exit("chunkString"),p(h)):(t.consume(h),h===92?u:d)}function u(h){return h===s||h===92?(t.consume(h),d):d(h)}}i(Pr,"factoryTitle");function on(t,e){let n;return r;function r(a){return M(a)?(t.enter("lineEnding"),t.consume(a),t.exit("lineEnding"),n=!0,r):U(a)?_(t,r,n?"linePrefix":"lineSuffix")(a):e(a)}}i(on,"factoryWhitespace");var ls={name:"definition",tokenize:qv},$v={partial:!0,tokenize:Gv};function qv(t,e,n){let r=this,a;return o;function o(m){return t.enter("definition"),s(m)}function s(m){return Sr.call(r,t,l,n,"definitionLabel","definitionLabelMarker","definitionLabelString")(m)}function l(m){return a=Rt(r.sliceSerialize(r.events[r.events.length-1][1]).slice(1,-1)),m===58?(t.enter("definitionMarker"),t.consume(m),t.exit("definitionMarker"),c):n(m)}function c(m){return de(m)?on(t,p)(m):p(m)}function p(m){return Tr(t,d,n,"definitionDestination","definitionDestinationLiteral","definitionDestinationLiteralMarker","definitionDestinationRaw","definitionDestinationString")(m)}function d(m){return t.attempt($v,u,u)(m)}function u(m){return U(m)?_(t,h,"whitespace")(m):h(m)}function h(m){return m===null||M(m)?(t.exit("definition"),r.parser.defined.push(a),e(m)):n(m)}}i(qv,"tokenizeDefinition");function Gv(t,e,n){return r;function r(l){return de(l)?on(t,a)(l):n(l)}function a(l){return Pr(t,o,n,"definitionTitle","definitionTitleMarker","definitionTitleString")(l)}function o(l){return U(l)?_(t,s,"whitespace")(l):s(l)}function s(l){return l===null||M(l)?e(l):n(l)}}i(Gv,"tokenizeTitleBefore");var cs={name:"hardBreakEscape",tokenize:Wv};function Wv(t,e,n){return r;function r(o){return t.enter("hardBreakEscape"),t.consume(o),a}function a(o){return M(o)?(t.exit("hardBreakEscape"),e(o)):n(o)}}i(Wv,"tokenizeHardBreakEscape");var ps={name:"headingAtx",resolve:Jv,tokenize:Hv};function Jv(t,e){let n=t.length-2,r=3,a,o;return t[r][1].type==="whitespace"&&(r+=2),n-2>r&&t[n][1].type==="whitespace"&&(n-=2),t[n][1].type==="atxHeadingSequence"&&(r===n-1||n-4>r&&t[n-2][1].type==="whitespace")&&(n-=r+1===n?2:4),n>r&&(a={type:"atxHeadingText",start:t[r][1].start,end:t[n][1].end},o={type:"chunkText",start:t[r][1].start,end:t[n][1].end,contentType:"text"},we(t,r,n-r+1,[["enter",a,e],["enter",o,e],["exit",o,e],["exit",a,e]])),t}i(Jv,"resolveHeadingAtx");function Hv(t,e,n){let r=0;return a;function a(d){return t.enter("atxHeading"),o(d)}function o(d){return t.enter("atxHeadingSequence"),s(d)}function s(d){return d===35&&r++<6?(t.consume(d),s):d===null||de(d)?(t.exit("atxHeadingSequence"),l(d)):n(d)}function l(d){return d===35?(t.enter("atxHeadingSequence"),c(d)):d===null||M(d)?(t.exit("atxHeading"),e(d)):U(d)?_(t,l,"whitespace")(d):(t.enter("atxHeadingText"),p(d))}function c(d){return d===35?(t.consume(d),c):(t.exit("atxHeadingSequence"),l(d))}function p(d){return d===null||d===35||de(d)?(t.exit("atxHeadingText"),l(d)):(t.consume(d),p)}}i(Hv,"tokenizeHeadingAtx");var Hp=["address","article","aside","base","basefont","blockquote","body","caption","center","col","colgroup","dd","details","dialog","dir","div","dl","dt","fieldset","figcaption","figure","footer","form","frame","frameset","h1","h2","h3","h4","h5","h6","head","header","hr","html","iframe","legend","li","link","main","menu","menuitem","nav","noframes","ol","optgroup","option","p","param","search","section","summary","table","tbody","td","tfoot","th","thead","title","tr","track","ul"],ds=["pre","script","style","textarea"];var us={concrete:!0,name:"htmlFlow",resolveTo:Qv,tokenize:Zv},Kv={partial:!0,tokenize:ey},Yv={partial:!0,tokenize:Xv};function Qv(t){let e=t.length;for(;e--&&!(t[e][0]==="enter"&&t[e][1].type==="htmlFlow"););return e>1&&t[e-2][1].type==="linePrefix"&&(t[e][1].start=t[e-2][1].start,t[e+1][1].start=t[e-2][1].start,t.splice(e-2,2)),t}i(Qv,"resolveToHtmlFlow");function Zv(t,e,n){let r=this,a,o,s,l,c;return p;function p(k){return d(k)}function d(k){return t.enter("htmlFlow"),t.enter("htmlFlowData"),t.consume(k),u}function u(k){return k===33?(t.consume(k),h):k===47?(t.consume(k),o=!0,A):k===63?(t.consume(k),a=3,r.interrupt?e:f):He(k)?(t.consume(k),s=String.fromCharCode(k),b):n(k)}function h(k){return k===45?(t.consume(k),a=2,m):k===91?(t.consume(k),a=5,l=0,v):He(k)?(t.consume(k),a=4,r.interrupt?e:f):n(k)}function m(k){return k===45?(t.consume(k),r.interrupt?e:f):n(k)}function v(k){let xe="CDATA[";return k===xe.charCodeAt(l++)?(t.consume(k),l===xe.length?r.interrupt?e:K:v):n(k)}function A(k){return He(k)?(t.consume(k),s=String.fromCharCode(k),b):n(k)}function b(k){if(k===null||k===47||k===62||de(k)){let xe=k===47,Kt=s.toLowerCase();return!xe&&!o&&ds.includes(Kt)?(a=1,r.interrupt?e(k):K(k)):Hp.includes(s.toLowerCase())?(a=6,xe?(t.consume(k),y):r.interrupt?e(k):K(k)):(a=7,r.interrupt&&!r.parser.lazy[r.now().line]?n(k):o?w(k):T(k))}return k===45||Le(k)?(t.consume(k),s+=String.fromCharCode(k),b):n(k)}function y(k){return k===62?(t.consume(k),r.interrupt?e:K):n(k)}function w(k){return U(k)?(t.consume(k),w):W(k)}function T(k){return k===47?(t.consume(k),W):k===58||k===95||He(k)?(t.consume(k),P):U(k)?(t.consume(k),T):W(k)}function P(k){return k===45||k===46||k===58||k===95||Le(k)?(t.consume(k),P):j(k)}function j(k){return k===61?(t.consume(k),x):U(k)?(t.consume(k),j):T(k)}function x(k){return k===null||k===60||k===61||k===62||k===96?n(k):k===34||k===39?(t.consume(k),c=k,q):U(k)?(t.consume(k),x):Y(k)}function q(k){return k===c?(t.consume(k),c=null,B):k===null||M(k)?n(k):(t.consume(k),q)}function Y(k){return k===null||k===34||k===39||k===47||k===60||k===61||k===62||k===96||de(k)?j(k):(t.consume(k),Y)}function B(k){return k===47||k===62||U(k)?T(k):n(k)}function W(k){return k===62?(t.consume(k),ke):n(k)}function ke(k){return k===null||M(k)?K(k):U(k)?(t.consume(k),ke):n(k)}function K(k){return k===45&&a===2?(t.consume(k),G):k===60&&a===1?(t.consume(k),Z):k===62&&a===4?(t.consume(k),ae):k===63&&a===3?(t.consume(k),f):k===93&&a===5?(t.consume(k),ze):M(k)&&(a===6||a===7)?(t.exit("htmlFlowData"),t.check(Kv,ye,E)(k)):k===null||M(k)?(t.exit("htmlFlowData"),E(k)):(t.consume(k),K)}function E(k){return t.check(Yv,L,ye)(k)}function L(k){return t.enter("lineEnding"),t.consume(k),t.exit("lineEnding"),O}function O(k){return k===null||M(k)?E(k):(t.enter("htmlFlowData"),K(k))}function G(k){return k===45?(t.consume(k),f):K(k)}function Z(k){return k===47?(t.consume(k),s="",ve):K(k)}function ve(k){if(k===62){let xe=s.toLowerCase();return ds.includes(xe)?(t.consume(k),ae):K(k)}return He(k)&&s.length<8?(t.consume(k),s+=String.fromCharCode(k),ve):K(k)}function ze(k){return k===93?(t.consume(k),f):K(k)}function f(k){return k===62?(t.consume(k),ae):k===45&&a===2?(t.consume(k),f):K(k)}function ae(k){return k===null||M(k)?(t.exit("htmlFlowData"),ye(k)):(t.consume(k),ae)}function ye(k){return t.exit("htmlFlow"),e(k)}}i(Zv,"tokenizeHtmlFlow");function Xv(t,e,n){let r=this;return a;function a(s){return M(s)?(t.enter("lineEnding"),t.consume(s),t.exit("lineEnding"),o):n(s)}function o(s){return r.parser.lazy[r.now().line]?n(s):e(s)}}i(Xv,"tokenizeNonLazyContinuationStart");function ey(t,e,n){return r;function r(a){return t.enter("lineEnding"),t.consume(a),t.exit("lineEnding"),t.attempt(_t,e,n)}}i(ey,"tokenizeBlankLineBefore");var ms={name:"htmlText",tokenize:ty};function ty(t,e,n){let r=this,a,o,s;return l;function l(f){return t.enter("htmlText"),t.enter("htmlTextData"),t.consume(f),c}function c(f){return f===33?(t.consume(f),p):f===47?(t.consume(f),j):f===63?(t.consume(f),T):He(f)?(t.consume(f),Y):n(f)}function p(f){return f===45?(t.consume(f),d):f===91?(t.consume(f),o=0,v):He(f)?(t.consume(f),w):n(f)}function d(f){return f===45?(t.consume(f),m):n(f)}function u(f){return f===null?n(f):f===45?(t.consume(f),h):M(f)?(s=u,Z(f)):(t.consume(f),u)}function h(f){return f===45?(t.consume(f),m):u(f)}function m(f){return f===62?G(f):f===45?h(f):u(f)}function v(f){let ae="CDATA[";return f===ae.charCodeAt(o++)?(t.consume(f),o===ae.length?A:v):n(f)}function A(f){return f===null?n(f):f===93?(t.consume(f),b):M(f)?(s=A,Z(f)):(t.consume(f),A)}function b(f){return f===93?(t.consume(f),y):A(f)}function y(f){return f===62?G(f):f===93?(t.consume(f),y):A(f)}function w(f){return f===null||f===62?G(f):M(f)?(s=w,Z(f)):(t.consume(f),w)}function T(f){return f===null?n(f):f===63?(t.consume(f),P):M(f)?(s=T,Z(f)):(t.consume(f),T)}function P(f){return f===62?G(f):T(f)}function j(f){return He(f)?(t.consume(f),x):n(f)}function x(f){return f===45||Le(f)?(t.consume(f),x):q(f)}function q(f){return M(f)?(s=q,Z(f)):U(f)?(t.consume(f),q):G(f)}function Y(f){return f===45||Le(f)?(t.consume(f),Y):f===47||f===62||de(f)?B(f):n(f)}function B(f){return f===47?(t.consume(f),G):f===58||f===95||He(f)?(t.consume(f),W):M(f)?(s=B,Z(f)):U(f)?(t.consume(f),B):G(f)}function W(f){return f===45||f===46||f===58||f===95||Le(f)?(t.consume(f),W):ke(f)}function ke(f){return f===61?(t.consume(f),K):M(f)?(s=ke,Z(f)):U(f)?(t.consume(f),ke):B(f)}function K(f){return f===null||f===60||f===61||f===62||f===96?n(f):f===34||f===39?(t.consume(f),a=f,E):M(f)?(s=K,Z(f)):U(f)?(t.consume(f),K):(t.consume(f),L)}function E(f){return f===a?(t.consume(f),a=void 0,O):f===null?n(f):M(f)?(s=E,Z(f)):(t.consume(f),E)}function L(f){return f===null||f===34||f===39||f===60||f===61||f===96?n(f):f===47||f===62||de(f)?B(f):(t.consume(f),L)}function O(f){return f===47||f===62||de(f)?B(f):n(f)}function G(f){return f===62?(t.consume(f),t.exit("htmlTextData"),t.exit("htmlText"),e):n(f)}function Z(f){return t.exit("htmlTextData"),t.enter("lineEnding"),t.consume(f),t.exit("lineEnding"),ve}function ve(f){return U(f)?_(t,ze,"linePrefix",r.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(f):ze(f)}function ze(f){return t.enter("htmlTextData"),s(f)}}i(ty,"tokenizeHtmlText");var sn={name:"labelEnd",resolveAll:iy,resolveTo:oy,tokenize:sy},ny={tokenize:ly},ay={tokenize:cy},ry={tokenize:py};function iy(t){let e=-1,n=[];for(;++e<t.length;){let r=t[e][1];if(n.push(t[e]),r.type==="labelImage"||r.type==="labelLink"||r.type==="labelEnd"){let a=r.type==="labelImage"?4:2;r.type="data",e+=a}}return t.length!==n.length&&we(t,0,t.length,n),t}i(iy,"resolveAllLabelEnd");function oy(t,e){let n=t.length,r=0,a,o,s,l;for(;n--;)if(a=t[n][1],o){if(a.type==="link"||a.type==="labelLink"&&a._inactive)break;t[n][0]==="enter"&&a.type==="labelLink"&&(a._inactive=!0)}else if(s){if(t[n][0]==="enter"&&(a.type==="labelImage"||a.type==="labelLink")&&!a._balanced&&(o=n,a.type!=="labelLink")){r=2;break}}else a.type==="labelEnd"&&(s=n);let c={type:t[o][1].type==="labelLink"?"link":"image",start:{...t[o][1].start},end:{...t[t.length-1][1].end}},p={type:"label",start:{...t[o][1].start},end:{...t[s][1].end}},d={type:"labelText",start:{...t[o+r+2][1].end},end:{...t[s-2][1].start}};return l=[["enter",c,e],["enter",p,e]],l=je(l,t.slice(o+1,o+r+3)),l=je(l,[["enter",d,e]]),l=je(l,Un(e.parser.constructs.insideSpan.null,t.slice(o+r+4,s-3),e)),l=je(l,[["exit",d,e],t[s-2],t[s-1],["exit",p,e]]),l=je(l,t.slice(s+1)),l=je(l,[["exit",c,e]]),we(t,o,t.length,l),t}i(oy,"resolveToLabelEnd");function sy(t,e,n){let r=this,a=r.events.length,o,s;for(;a--;)if((r.events[a][1].type==="labelImage"||r.events[a][1].type==="labelLink")&&!r.events[a][1]._balanced){o=r.events[a][1];break}return l;function l(h){return o?o._inactive?u(h):(s=r.parser.defined.includes(Rt(r.sliceSerialize({start:o.end,end:r.now()}))),t.enter("labelEnd"),t.enter("labelMarker"),t.consume(h),t.exit("labelMarker"),t.exit("labelEnd"),c):n(h)}function c(h){return h===40?t.attempt(ny,d,s?d:u)(h):h===91?t.attempt(ay,d,s?p:u)(h):s?d(h):u(h)}function p(h){return t.attempt(ry,d,u)(h)}function d(h){return e(h)}function u(h){return o._balanced=!0,n(h)}}i(sy,"tokenizeLabelEnd");function ly(t,e,n){return r;function r(u){return t.enter("resource"),t.enter("resourceMarker"),t.consume(u),t.exit("resourceMarker"),a}function a(u){return de(u)?on(t,o)(u):o(u)}function o(u){return u===41?d(u):Tr(t,s,l,"resourceDestination","resourceDestinationLiteral","resourceDestinationLiteralMarker","resourceDestinationRaw","resourceDestinationString",32)(u)}function s(u){return de(u)?on(t,c)(u):d(u)}function l(u){return n(u)}function c(u){return u===34||u===39||u===40?Pr(t,p,n,"resourceTitle","resourceTitleMarker","resourceTitleString")(u):d(u)}function p(u){return de(u)?on(t,d)(u):d(u)}function d(u){return u===41?(t.enter("resourceMarker"),t.consume(u),t.exit("resourceMarker"),t.exit("resource"),e):n(u)}}i(ly,"tokenizeResource");function cy(t,e,n){let r=this;return a;function a(l){return Sr.call(r,t,o,s,"reference","referenceMarker","referenceString")(l)}function o(l){return r.parser.defined.includes(Rt(r.sliceSerialize(r.events[r.events.length-1][1]).slice(1,-1)))?e(l):n(l)}function s(l){return n(l)}}i(cy,"tokenizeReferenceFull");function py(t,e,n){return r;function r(o){return t.enter("reference"),t.enter("referenceMarker"),t.consume(o),t.exit("referenceMarker"),a}function a(o){return o===93?(t.enter("referenceMarker"),t.consume(o),t.exit("referenceMarker"),t.exit("reference"),e):n(o)}}i(py,"tokenizeReferenceCollapsed");var hs={name:"labelStartImage",resolveAll:sn.resolveAll,tokenize:dy};function dy(t,e,n){let r=this;return a;function a(l){return t.enter("labelImage"),t.enter("labelImageMarker"),t.consume(l),t.exit("labelImageMarker"),o}function o(l){return l===91?(t.enter("labelMarker"),t.consume(l),t.exit("labelMarker"),t.exit("labelImage"),s):n(l)}function s(l){return l===94&&"_hiddenFootnoteSupport"in r.parser.constructs?n(l):e(l)}}i(dy,"tokenizeLabelStartImage");var gs={name:"labelStartLink",resolveAll:sn.resolveAll,tokenize:uy};function uy(t,e,n){let r=this;return a;function a(s){return t.enter("labelLink"),t.enter("labelMarker"),t.consume(s),t.exit("labelMarker"),t.exit("labelLink"),o}function o(s){return s===94&&"_hiddenFootnoteSupport"in r.parser.constructs?n(s):e(s)}}i(uy,"tokenizeLabelStartLink");var Ca={name:"lineEnding",tokenize:my};function my(t,e){return n;function n(r){return t.enter("lineEnding"),t.consume(r),t.exit("lineEnding"),_(t,e,"linePrefix")}}i(my,"tokenizeLineEnding");var ln={name:"thematicBreak",tokenize:hy};function hy(t,e,n){let r=0,a;return o;function o(p){return t.enter("thematicBreak"),s(p)}function s(p){return a=p,l(p)}function l(p){return p===a?(t.enter("thematicBreakSequence"),c(p)):r>=3&&(p===null||M(p))?(t.exit("thematicBreak"),e(p)):n(p)}function c(p){return p===a?(t.consume(p),r++,c):(t.exit("thematicBreakSequence"),U(p)?_(t,l,"whitespace")(p):l(p))}}i(hy,"tokenizeThematicBreak");var Te={continuation:{tokenize:vy},exit:by,name:"list",tokenize:ky},gy={partial:!0,tokenize:Ay},fy={partial:!0,tokenize:yy};function ky(t,e,n){let r=this,a=r.events[r.events.length-1],o=a&&a[1].type==="linePrefix"?a[2].sliceSerialize(a[1],!0).length:0,s=0;return l;function l(m){let v=r.containerState.type||(m===42||m===43||m===45?"listUnordered":"listOrdered");if(v==="listUnordered"?!r.containerState.marker||m===r.containerState.marker:ba(m)){if(r.containerState.type||(r.containerState.type=v,t.enter(v,{_container:!0})),v==="listUnordered")return t.enter("listItemPrefix"),m===42||m===45?t.check(ln,n,p)(m):p(m);if(!r.interrupt||m===49)return t.enter("listItemPrefix"),t.enter("listItemValue"),c(m)}return n(m)}function c(m){return ba(m)&&++s<10?(t.consume(m),c):(!r.interrupt||s<2)&&(r.containerState.marker?m===r.containerState.marker:m===41||m===46)?(t.exit("listItemValue"),p(m)):n(m)}function p(m){return t.enter("listItemMarker"),t.consume(m),t.exit("listItemMarker"),r.containerState.marker=r.containerState.marker||m,t.check(_t,r.interrupt?n:d,t.attempt(gy,h,u))}function d(m){return r.containerState.initialBlankLine=!0,o++,h(m)}function u(m){return U(m)?(t.enter("listItemPrefixWhitespace"),t.consume(m),t.exit("listItemPrefixWhitespace"),h):n(m)}function h(m){return r.containerState.size=o+r.sliceSerialize(t.exit("listItemPrefix"),!0).length,e(m)}}i(ky,"tokenizeListStart");function vy(t,e,n){let r=this;return r.containerState._closeFlow=void 0,t.check(_t,a,o);function a(l){return r.containerState.furtherBlankLines=r.containerState.furtherBlankLines||r.containerState.initialBlankLine,_(t,e,"listItemIndent",r.containerState.size+1)(l)}i(a,"onBlank");function o(l){return r.containerState.furtherBlankLines||!U(l)?(r.containerState.furtherBlankLines=void 0,r.containerState.initialBlankLine=void 0,s(l)):(r.containerState.furtherBlankLines=void 0,r.containerState.initialBlankLine=void 0,t.attempt(fy,e,s)(l))}i(o,"notBlank");function s(l){return r.containerState._closeFlow=!0,r.interrupt=void 0,_(t,t.attempt(Te,e,n),"linePrefix",r.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(l)}i(s,"notInCurrentItem")}i(vy,"tokenizeListContinuation");function yy(t,e,n){let r=this;return _(t,a,"listItemIndent",r.containerState.size+1);function a(o){let s=r.events[r.events.length-1];return s&&s[1].type==="listItemIndent"&&s[2].sliceSerialize(s[1],!0).length===r.containerState.size?e(o):n(o)}}i(yy,"tokenizeIndent");function by(t){t.exit(this.containerState.type)}i(by,"tokenizeListEnd");function Ay(t,e,n){let r=this;return _(t,a,"listItemPrefixWhitespace",r.parser.constructs.disable.null.includes("codeIndented")?void 0:5);function a(o){let s=r.events[r.events.length-1];return!U(o)&&s&&s[1].type==="listItemPrefixWhitespace"?e(o):n(o)}}i(Ay,"tokenizeListItemPrefixWhitespace");var Er={name:"setextUnderline",resolveTo:wy,tokenize:xy};function wy(t,e){let n=t.length,r,a,o;for(;n--;)if(t[n][0]==="enter"){if(t[n][1].type==="content"){r=n;break}t[n][1].type==="paragraph"&&(a=n)}else t[n][1].type==="content"&&t.splice(n,1),!o&&t[n][1].type==="definition"&&(o=n);let s={type:"setextHeading",start:{...t[r][1].start},end:{...t[t.length-1][1].end}};return t[a][1].type="setextHeadingText",o?(t.splice(a,0,["enter",s,e]),t.splice(o+1,0,["exit",t[r][1],e]),t[r][1].end={...t[o][1].end}):t[r][1]=s,t.push(["exit",s,e]),t}i(wy,"resolveToSetextUnderline");function xy(t,e,n){let r=this,a;return o;function o(p){let d=r.events.length,u;for(;d--;)if(r.events[d][1].type!=="lineEnding"&&r.events[d][1].type!=="linePrefix"&&r.events[d][1].type!=="content"){u=r.events[d][1].type==="paragraph";break}return!r.parser.lazy[r.now().line]&&(r.interrupt||u)?(t.enter("setextHeadingLine"),a=p,s(p)):n(p)}function s(p){return t.enter("setextHeadingLineSequence"),l(p)}function l(p){return p===a?(t.consume(p),l):(t.exit("setextHeadingLineSequence"),U(p)?_(t,c,"lineSuffix")(p):c(p))}function c(p){return p===null||M(p)?(t.exit("setextHeadingLine"),e(p)):n(p)}}i(xy,"tokenizeSetextUnderline");var Kp={tokenize:Cy};function Cy(t){let e=this,n=t.attempt(_t,r,t.attempt(this.parser.constructs.flowInitial,a,_(t,t.attempt(this.parser.constructs.flow,a,t.attempt(ss,a)),"linePrefix")));return n;function r(o){if(o===null){t.consume(o);return}return t.enter("lineEndingBlank"),t.consume(o),t.exit("lineEndingBlank"),e.currentConstruct=void 0,n}function a(o){if(o===null){t.consume(o);return}return t.enter("lineEnding"),t.consume(o),t.exit("lineEnding"),e.currentConstruct=void 0,n}}i(Cy,"initializeFlow");var Yp={resolveAll:ed()},Qp=Xp("string"),Zp=Xp("text");function Xp(t){return{resolveAll:ed(t==="text"?Ty:void 0),tokenize:e};function e(n){let r=this,a=this.parser.constructs[t],o=n.attempt(a,s,l);return s;function s(d){return p(d)?o(d):l(d)}function l(d){if(d===null){n.consume(d);return}return n.enter("data"),n.consume(d),c}function c(d){return p(d)?(n.exit("data"),o(d)):(n.consume(d),c)}function p(d){if(d===null)return!0;let u=a[d],h=-1;if(u)for(;++h<u.length;){let m=u[h];if(!m.previous||m.previous.call(r,r.previous))return!0}return!1}}}i(Xp,"initializeFactory");function ed(t){return e;function e(n,r){let a=-1,o;for(;++a<=n.length;)o===void 0?n[a]&&n[a][1].type==="data"&&(o=a,a++):(!n[a]||n[a][1].type!=="data")&&(a!==o+2&&(n[o][1].end=n[a-1][1].end,n.splice(o+2,a-o-2),a=o+2),o=void 0);return t?t(n,r):n}}i(ed,"createResolver");function Ty(t,e){let n=0;for(;++n<=t.length;)if((n===t.length||t[n][1].type==="lineEnding")&&t[n-1][1].type==="data"){let r=t[n-1][1],a=e.sliceStream(r),o=a.length,s=-1,l=0,c;for(;o--;){let p=a[o];if(typeof p=="string"){for(s=p.length;p.charCodeAt(s-1)===32;)l++,s--;if(s)break;s=-1}else if(p===-2)c=!0,l++;else if(p!==-1){o++;break}}if(e._contentTypeTextTrailing&&n===t.length&&(l=0),l){let p={type:n===t.length||c||l<2?"lineSuffix":"hardBreakTrailing",start:{_bufferIndex:o?s:r.start._bufferIndex+s,_index:r.start._index+o,line:r.end.line,column:r.end.column-l,offset:r.end.offset-l},end:{...r.end}};r.end={...p.start},r.start.offset===r.end.offset?Object.assign(r,p):(t.splice(n,0,["enter",p,e],["exit",p,e]),n+=2)}n++}return t}i(Ty,"resolveAllLineSuffixes");var fs={};Oc(fs,{attentionMarkers:()=>Ny,contentInitial:()=>Py,disable:()=>Ry,document:()=>Sy,flow:()=>Fy,flowInitial:()=>Ey,insideSpan:()=>My,string:()=>Iy,text:()=>zy});var Sy={42:Te,43:Te,45:Te,48:Te,49:Te,50:Te,51:Te,52:Te,53:Te,54:Te,55:Te,56:Te,57:Te,62:yr},Py={91:ls},Ey={[-2]:wa,[-1]:wa,32:wa},Fy={35:ps,42:ln,45:[Er,ln],60:us,61:Er,95:ln,96:wr,126:wr},Iy={38:Ar,92:br},zy={[-5]:Ca,[-4]:Ca,[-3]:Ca,33:hs,38:Ar,42:Aa,60:[is,ms],91:gs,92:[cs,br],93:sn,95:Aa,96:os},My={null:[Aa,Yp]},Ny={null:[42,95]},Ry={null:[]};function td(t,e,n){let r={_bufferIndex:-1,_index:0,line:n&&n.line||1,column:n&&n.column||1,offset:n&&n.offset||0},a={},o=[],s=[],l=[],c=!0,p={attempt:B(q),check:B(Y),consume:P,enter:j,exit:x,interrupt:B(Y,{interrupt:!0})},d={code:null,containerState:{},defineSkip:y,events:[],now:b,parser:t,previous:null,sliceSerialize:v,sliceStream:A,write:m},u=e.tokenize.call(d,p),h;return e.resolveAll&&o.push(e),d;function m(E){return s=je(s,E),w(),s[s.length-1]!==null?[]:(W(e,0),d.events=Un(o,d.events,d),d.events)}i(m,"write");function v(E,L){return Ly(A(E),L)}i(v,"sliceSerialize");function A(E){return jy(s,E)}i(A,"sliceStream");function b(){let{_bufferIndex:E,_index:L,line:O,column:G,offset:Z}=r;return{_bufferIndex:E,_index:L,line:O,column:G,offset:Z}}i(b,"now");function y(E){a[E.line]=E.column,K()}i(y,"defineSkip");function w(){let E;for(;r._index<s.length;){let L=s[r._index];if(typeof L=="string")for(E=r._index,r._bufferIndex<0&&(r._bufferIndex=0);r._index===E&&r._bufferIndex<L.length;)T(L.charCodeAt(r._bufferIndex));else T(L)}}i(w,"main");function T(E){c=void 0,h=E,u=u(E)}i(T,"go");function P(E){M(E)?(r.line++,r.column=1,r.offset+=E===-3?2:1,K()):E!==-1&&(r.column++,r.offset++),r._bufferIndex<0?r._index++:(r._bufferIndex++,r._bufferIndex===s[r._index].length&&(r._bufferIndex=-1,r._index++)),d.previous=E,c=!0}i(P,"consume");function j(E,L){let O=L||{};return O.type=E,O.start=b(),d.events.push(["enter",O,d]),l.push(O),O}i(j,"enter");function x(E){let L=l.pop();return L.end=b(),d.events.push(["exit",L,d]),L}i(x,"exit");function q(E,L){W(E,L.from)}i(q,"onsuccessfulconstruct");function Y(E,L){L.restore()}i(Y,"onsuccessfulcheck");function B(E,L){return O;function O(G,Z,ve){let ze,f,ae,ye;return Array.isArray(G)?xe(G):"tokenize"in G?xe([G]):k(G);function k(be){return sa;function sa(Ft){let Yt=Ft!==null&&be[Ft],Tn=Ft!==null&&be.null,jo=[...Array.isArray(Yt)?Yt:Yt?[Yt]:[],...Array.isArray(Tn)?Tn:Tn?[Tn]:[]];return xe(jo)(Ft)}}function xe(be){return ze=be,f=0,be.length===0?ve:Kt(be[f])}function Kt(be){return sa;function sa(Ft){return ye=ke(),ae=be,be.partial||(d.currentConstruct=be),be.name&&d.parser.constructs.disable.null.includes(be.name)?Za(Ft):be.tokenize.call(L?Object.assign(Object.create(d),L):d,p,Ro,Za)(Ft)}}function Ro(be){return c=!0,E(ae,ye),Z}function Za(be){return c=!0,ye.restore(),++f<ze.length?Kt(ze[f]):ve}}}i(B,"constructFactory");function W(E,L){E.resolveAll&&!o.includes(E)&&o.push(E),E.resolve&&we(d.events,L,d.events.length-L,E.resolve(d.events.slice(L),d)),E.resolveTo&&(d.events=E.resolveTo(d.events,d))}i(W,"addResult");function ke(){let E=b(),L=d.previous,O=d.currentConstruct,G=d.events.length,Z=Array.from(l);return{from:G,restore:ve};function ve(){r=E,d.previous=L,d.currentConstruct=O,d.events.length=G,l=Z,K()}}i(ke,"store");function K(){r.line in a&&r.column<2&&(r.column=a[r.line],r.offset+=a[r.line]-1)}i(K,"accountForPotentialSkip")}i(td,"createTokenizer");function jy(t,e){let n=e.start._index,r=e.start._bufferIndex,a=e.end._index,o=e.end._bufferIndex,s;if(n===a)s=[t[n].slice(r,o)];else{if(s=t.slice(n,a),r>-1){let l=s[0];typeof l=="string"?s[0]=l.slice(r):s.shift()}o>0&&s.push(t[a].slice(0,o))}return s}i(jy,"sliceChunks");function Ly(t,e){let n=-1,r=[],a;for(;++n<t.length;){let o=t[n],s;if(typeof o=="string")s=o;else switch(o){case-5:{s="\r";break}case-4:{s=`
|
|
400
|
+
`;break}case-3:{s=`\r
|
|
401
|
+
`;break}case-2:{s=e?" ":" ";break}case-1:{if(!e&&a)continue;s=" ";break}default:s=String.fromCharCode(o)}a=o===-2,r.push(s)}return r.join("")}i(Ly,"serializeChunks");function ks(t){let r={constructs:Op([fs,...(t||{}).extensions||[]]),content:a($p),defined:[],document:a(Gp),flow:a(Kp),lazy:{},string:a(Qp),text:a(Zp)};return r;function a(o){return s;function s(l){return td(r,o,l)}}}i(ks,"parse");function vs(t){for(;!Cr(t););return t}i(vs,"postprocess");var nd=/[\0\t\n\r]/g;function ys(){let t=1,e="",n=!0,r;return a;function a(o,s,l){let c=[],p,d,u,h,m;for(o=e+(typeof o=="string"?o.toString():new TextDecoder(s||void 0).decode(o)),u=0,e="",n&&(o.charCodeAt(0)===65279&&u++,n=void 0);u<o.length;){if(nd.lastIndex=u,p=nd.exec(o),h=p&&p.index!==void 0?p.index:o.length,m=o.charCodeAt(h),!p){e=o.slice(u);break}if(m===10&&u===h&&r)c.push(-3),r=void 0;else switch(r&&(c.push(-5),r=void 0),u<h&&(c.push(o.slice(u,h)),t+=h-u),m){case 0:{c.push(65533),t++;break}case 9:{for(d=Math.ceil(t/4)*4,c.push(-2);t++<d;)c.push(-1);break}case 10:{c.push(-4),t=1;break}default:r=!0,t=1}u=h+1}return l&&(r&&c.push(-5),e&&c.push(e),c.push(null)),c}}i(ys,"preprocess");var Oy=/\\([!-/:-@[-`{-~])|&(#(?:\d{1,7}|x[\da-f]{1,6})|[\da-z]{1,31});/gi;function Fr(t){return t.replace(Oy,Dy)}i(Fr,"decodeString");function Dy(t,e,n){if(e)return e;if(n.charCodeAt(0)===35){let a=n.charCodeAt(1),o=a===120||a===88;return vr(n.slice(o?2:1),o?16:10)}return Dn(n)||t}i(Dy,"decode");function $t(t){return!t||typeof t!="object"?"":"position"in t||"type"in t?ad(t.position):"start"in t||"end"in t?ad(t):"line"in t||"column"in t?bs(t):""}i($t,"stringifyPosition");function bs(t){return rd(t&&t.line)+":"+rd(t&&t.column)}i(bs,"point");function ad(t){return bs(t&&t.start)+"-"+bs(t&&t.end)}i(ad,"position");function rd(t){return t&&typeof t=="number"?t:1}i(rd,"index");var od={}.hasOwnProperty;function As(t,e,n){return typeof e!="string"&&(n=e,e=void 0),By(n)(vs(ks(n).document().write(ys()(t,e,!0))))}i(As,"fromMarkdown");function By(t){let e={transforms:[],canContainEols:["emphasis","fragment","heading","paragraph","strong"],enter:{autolink:o(jc),autolinkProtocol:B,autolinkEmail:B,atxHeading:o(Mc),blockQuote:o(Ft),characterEscape:B,characterReference:B,codeFenced:o(Yt),codeFencedFenceInfo:s,codeFencedFenceMeta:s,codeIndented:o(Yt,s),codeText:o(Tn,s),codeTextData:B,data:B,codeFlowValue:B,definition:o(jo),definitionDestinationString:s,definitionLabelString:s,definitionTitleString:s,emphasis:o(Kf),hardBreakEscape:o(Nc),hardBreakTrailing:o(Nc),htmlFlow:o(Rc,s),htmlFlowData:B,htmlText:o(Rc,s),htmlTextData:B,image:o(Yf),label:s,link:o(jc),listItem:o(Qf),listItemValue:h,listOrdered:o(Lc,u),listUnordered:o(Lc),paragraph:o(Zf),reference:k,referenceString:s,resourceDestinationString:s,resourceTitleString:s,setextHeading:o(Mc),strong:o(Xf),thematicBreak:o(tk)},exit:{atxHeading:c(),atxHeadingSequence:j,autolink:c(),autolinkEmail:sa,autolinkProtocol:be,blockQuote:c(),characterEscapeValue:W,characterReferenceMarkerHexadecimal:Kt,characterReferenceMarkerNumeric:Kt,characterReferenceValue:Ro,characterReference:Za,codeFenced:c(b),codeFencedFence:A,codeFencedFenceInfo:m,codeFencedFenceMeta:v,codeFlowValue:W,codeIndented:c(y),codeText:c(O),codeTextData:W,data:W,definition:c(),definitionDestinationString:P,definitionLabelString:w,definitionTitleString:T,emphasis:c(),hardBreakEscape:c(K),hardBreakTrailing:c(K),htmlFlow:c(E),htmlFlowData:W,htmlText:c(L),htmlTextData:W,image:c(Z),label:ze,labelText:ve,lineEnding:ke,link:c(G),listItem:c(),listOrdered:c(),listUnordered:c(),paragraph:c(),referenceString:xe,resourceDestinationString:f,resourceTitleString:ae,resource:ye,setextHeading:c(Y),setextHeadingLineSequence:q,setextHeadingText:x,strong:c(),thematicBreak:c()}};sd(e,(t||{}).mdastExtensions||[]);let n={};return r;function r(C){let S={type:"root",children:[]},V={stack:[S],tokenStack:[],config:e,enter:l,exit:p,buffer:s,resume:d,data:n},H=[],te=-1;for(;++te<C.length;)if(C[te][1].type==="listOrdered"||C[te][1].type==="listUnordered")if(C[te][0]==="enter")H.push(te);else{let st=H.pop();te=a(C,st,te)}for(te=-1;++te<C.length;){let st=e[C[te][0]];od.call(st,C[te][1].type)&&st[C[te][1].type].call(Object.assign({sliceSerialize:C[te][2].sliceSerialize},V),C[te][1])}if(V.tokenStack.length>0){let st=V.tokenStack[V.tokenStack.length-1];(st[1]||id).call(V,void 0,st[0])}for(S.position={start:qt(C.length>0?C[0][1].start:{line:1,column:1,offset:0}),end:qt(C.length>0?C[C.length-2][1].end:{line:1,column:1,offset:0})},te=-1;++te<e.transforms.length;)S=e.transforms[te](S)||S;return S}function a(C,S,V){let H=S-1,te=-1,st=!1,Qt,It,la,ca;for(;++H<=V;){let $e=C[H];switch($e[1].type){case"listUnordered":case"listOrdered":case"blockQuote":{$e[0]==="enter"?te++:te--,ca=void 0;break}case"lineEndingBlank":{$e[0]==="enter"&&(Qt&&!ca&&!te&&!la&&(la=H),ca=void 0);break}case"linePrefix":case"listItemValue":case"listItemMarker":case"listItemPrefix":case"listItemPrefixWhitespace":break;default:ca=void 0}if(!te&&$e[0]==="enter"&&$e[1].type==="listItemPrefix"||te===-1&&$e[0]==="exit"&&($e[1].type==="listUnordered"||$e[1].type==="listOrdered")){if(Qt){let Sn=H;for(It=void 0;Sn--;){let zt=C[Sn];if(zt[1].type==="lineEnding"||zt[1].type==="lineEndingBlank"){if(zt[0]==="exit")continue;It&&(C[It][1].type="lineEndingBlank",st=!0),zt[1].type="lineEnding",It=Sn}else if(!(zt[1].type==="linePrefix"||zt[1].type==="blockQuotePrefix"||zt[1].type==="blockQuotePrefixWhitespace"||zt[1].type==="blockQuoteMarker"||zt[1].type==="listItemIndent"))break}la&&(!It||la<It)&&(Qt._spread=!0),Qt.end=Object.assign({},It?C[It][1].start:$e[1].end),C.splice(It||H,0,["exit",Qt,$e[2]]),H++,V++}if($e[1].type==="listItemPrefix"){let Sn={type:"listItem",_spread:!1,start:Object.assign({},$e[1].start),end:void 0};Qt=Sn,C.splice(H,0,["enter",Sn,$e[2]]),H++,V++,la=void 0,ca=!0}}}return C[S][1]._spread=st,V}function o(C,S){return V;function V(H){l.call(this,C(H),H),S&&S.call(this,H)}}function s(){this.stack.push({type:"fragment",children:[]})}function l(C,S,V){this.stack[this.stack.length-1].children.push(C),this.stack.push(C),this.tokenStack.push([S,V||void 0]),C.position={start:qt(S.start),end:void 0}}function c(C){return S;function S(V){C&&C.call(this,V),p.call(this,V)}}function p(C,S){let V=this.stack.pop(),H=this.tokenStack.pop();if(H)H[0].type!==C.type&&(S?S.call(this,C,H[0]):(H[1]||id).call(this,C,H[0]));else throw new Error("Cannot close `"+C.type+"` ("+$t({start:C.start,end:C.end})+"): it\u2019s not open");V.position.end=qt(C.end)}function d(){return rn(this.stack.pop())}function u(){this.data.expectingFirstListItemValue=!0}function h(C){if(this.data.expectingFirstListItemValue){let S=this.stack[this.stack.length-2];S.start=Number.parseInt(this.sliceSerialize(C),10),this.data.expectingFirstListItemValue=void 0}}function m(){let C=this.resume(),S=this.stack[this.stack.length-1];S.lang=C}function v(){let C=this.resume(),S=this.stack[this.stack.length-1];S.meta=C}function A(){this.data.flowCodeInside||(this.buffer(),this.data.flowCodeInside=!0)}function b(){let C=this.resume(),S=this.stack[this.stack.length-1];S.value=C.replace(/^(\r?\n|\r)|(\r?\n|\r)$/g,""),this.data.flowCodeInside=void 0}function y(){let C=this.resume(),S=this.stack[this.stack.length-1];S.value=C.replace(/(\r?\n|\r)$/g,"")}function w(C){let S=this.resume(),V=this.stack[this.stack.length-1];V.label=S,V.identifier=Rt(this.sliceSerialize(C)).toLowerCase()}function T(){let C=this.resume(),S=this.stack[this.stack.length-1];S.title=C}function P(){let C=this.resume(),S=this.stack[this.stack.length-1];S.url=C}function j(C){let S=this.stack[this.stack.length-1];if(!S.depth){let V=this.sliceSerialize(C).length;S.depth=V}}function x(){this.data.setextHeadingSlurpLineEnding=!0}function q(C){let S=this.stack[this.stack.length-1];S.depth=this.sliceSerialize(C).codePointAt(0)===61?1:2}function Y(){this.data.setextHeadingSlurpLineEnding=void 0}function B(C){let V=this.stack[this.stack.length-1].children,H=V[V.length-1];(!H||H.type!=="text")&&(H=ek(),H.position={start:qt(C.start),end:void 0},V.push(H)),this.stack.push(H)}function W(C){let S=this.stack.pop();S.value+=this.sliceSerialize(C),S.position.end=qt(C.end)}function ke(C){let S=this.stack[this.stack.length-1];if(this.data.atHardBreak){let V=S.children[S.children.length-1];V.position.end=qt(C.end),this.data.atHardBreak=void 0;return}!this.data.setextHeadingSlurpLineEnding&&e.canContainEols.includes(S.type)&&(B.call(this,C),W.call(this,C))}function K(){this.data.atHardBreak=!0}function E(){let C=this.resume(),S=this.stack[this.stack.length-1];S.value=C}function L(){let C=this.resume(),S=this.stack[this.stack.length-1];S.value=C}function O(){let C=this.resume(),S=this.stack[this.stack.length-1];S.value=C}function G(){let C=this.stack[this.stack.length-1];if(this.data.inReference){let S=this.data.referenceType||"shortcut";C.type+="Reference",C.referenceType=S,delete C.url,delete C.title}else delete C.identifier,delete C.label;this.data.referenceType=void 0}function Z(){let C=this.stack[this.stack.length-1];if(this.data.inReference){let S=this.data.referenceType||"shortcut";C.type+="Reference",C.referenceType=S,delete C.url,delete C.title}else delete C.identifier,delete C.label;this.data.referenceType=void 0}function ve(C){let S=this.sliceSerialize(C),V=this.stack[this.stack.length-2];V.label=Fr(S),V.identifier=Rt(S).toLowerCase()}function ze(){let C=this.stack[this.stack.length-1],S=this.resume(),V=this.stack[this.stack.length-1];if(this.data.inReference=!0,V.type==="link"){let H=C.children;V.children=H}else V.alt=S}function f(){let C=this.resume(),S=this.stack[this.stack.length-1];S.url=C}function ae(){let C=this.resume(),S=this.stack[this.stack.length-1];S.title=C}function ye(){this.data.inReference=void 0}function k(){this.data.referenceType="collapsed"}function xe(C){let S=this.resume(),V=this.stack[this.stack.length-1];V.label=S,V.identifier=Rt(this.sliceSerialize(C)).toLowerCase(),this.data.referenceType="full"}function Kt(C){this.data.characterReferenceType=C.type}function Ro(C){let S=this.sliceSerialize(C),V=this.data.characterReferenceType,H;V?(H=vr(S,V==="characterReferenceMarkerNumeric"?10:16),this.data.characterReferenceType=void 0):H=Dn(S);let te=this.stack[this.stack.length-1];te.value+=H}function Za(C){let S=this.stack.pop();S.position.end=qt(C.end)}function be(C){W.call(this,C);let S=this.stack[this.stack.length-1];S.url=this.sliceSerialize(C)}function sa(C){W.call(this,C);let S=this.stack[this.stack.length-1];S.url="mailto:"+this.sliceSerialize(C)}function Ft(){return{type:"blockquote",children:[]}}function Yt(){return{type:"code",lang:null,meta:null,value:""}}function Tn(){return{type:"inlineCode",value:""}}function jo(){return{type:"definition",identifier:"",label:null,title:null,url:""}}function Kf(){return{type:"emphasis",children:[]}}function Mc(){return{type:"heading",depth:0,children:[]}}function Nc(){return{type:"break"}}function Rc(){return{type:"html",value:""}}function Yf(){return{type:"image",title:null,url:"",alt:null}}function jc(){return{type:"link",title:null,url:"",children:[]}}function Lc(C){return{type:"list",ordered:C.type==="listOrdered",start:null,spread:C._spread,children:[]}}function Qf(C){return{type:"listItem",spread:C._spread,checked:null,children:[]}}function Zf(){return{type:"paragraph",children:[]}}function Xf(){return{type:"strong",children:[]}}function ek(){return{type:"text",value:""}}function tk(){return{type:"thematicBreak"}}}i(By,"compiler");function qt(t){return{line:t.line,column:t.column,offset:t.offset}}i(qt,"point");function sd(t,e){let n=-1;for(;++n<e.length;){let r=e[n];Array.isArray(r)?sd(t,r):Uy(t,r)}}i(sd,"configure");function Uy(t,e){let n;for(n in e)if(od.call(e,n))switch(n){case"canContainEols":{let r=e[n];r&&t[n].push(...r);break}case"transforms":{let r=e[n];r&&t[n].push(...r);break}case"enter":case"exit":{let r=e[n];r&&Object.assign(t[n],r);break}}}i(Uy,"extension");function id(t,e){throw t?new Error("Cannot close `"+t.type+"` ("+$t({start:t.start,end:t.end})+"): a different token (`"+e.type+"`, "+$t({start:e.start,end:e.end})+") is open"):new Error("Cannot close document, a token (`"+e.type+"`, "+$t({start:e.start,end:e.end})+") is still open")}i(id,"defaultOnError");function Vn(t){let e=this;e.parser=n;function n(r){return As(r,{...e.data("settings"),...t,extensions:e.data("micromarkExtensions")||[],mdastExtensions:e.data("fromMarkdownExtensions")||[]})}i(n,"parser")}i(Vn,"remarkParse");var ld={}.hasOwnProperty;function cd(t,e){let n=e||{};function r(a,...o){let s=r.invalid,l=r.handlers;if(a&&ld.call(a,t)){let c=String(a[t]);s=ld.call(l,c)?l[c]:r.unknown}if(s)return s.call(this,a,...o)}return i(r,"one"),r.handlers=n.handlers||{},r.invalid=n.invalid,r.unknown=n.unknown,r}i(cd,"zwitch");var Vy={}.hasOwnProperty;function ws(t,e){let n=-1,r;if(e.extensions)for(;++n<e.extensions.length;)ws(t,e.extensions[n]);for(r in e)if(Vy.call(e,r))switch(r){case"extensions":break;case"unsafe":{pd(t[r],e[r]);break}case"join":{pd(t[r],e[r]);break}case"handlers":{_y(t[r],e[r]);break}default:t.options[r]=e[r]}return t}i(ws,"configure");function pd(t,e){e&&t.push(...e)}i(pd,"list");function _y(t,e){e&&Object.assign(t,e)}i(_y,"map");function dd(t,e,n,r){let a=n.enter("blockquote"),o=n.createTracker(r);o.move("> "),o.shift(2);let s=n.indentLines(n.containerFlow(t,o.current()),$y);return a(),s}i(dd,"blockquote");function $y(t,e,n){return">"+(n?"":" ")+t}i($y,"map");function Ir(t,e){return ud(t,e.inConstruct,!0)&&!ud(t,e.notInConstruct,!1)}i(Ir,"patternInScope");function ud(t,e,n){if(typeof e=="string"&&(e=[e]),!e||e.length===0)return n;let r=-1;for(;++r<e.length;)if(t.includes(e[r]))return!0;return!1}i(ud,"listInScope");function xs(t,e,n,r){let a=-1;for(;++a<n.unsafe.length;)if(n.unsafe[a].character===`
|
|
402
|
+
`&&Ir(n.stack,n.unsafe[a]))return/[ \t]/.test(r.before)?"":" ";return`\\
|
|
403
|
+
`}i(xs,"hardBreak");function md(t,e){let n=String(t),r=n.indexOf(e),a=r,o=0,s=0;if(typeof e!="string")throw new TypeError("Expected substring");for(;r!==-1;)r===a?++o>s&&(s=o):o=1,a=r+e.length,r=n.indexOf(e,a);return s}i(md,"longestStreak");function Ta(t,e){return!!(e.options.fences===!1&&t.value&&!t.lang&&/[^ \r\n]/.test(t.value)&&!/^[\t ]*(?:[\r\n]|$)|(?:^|[\r\n])[\t ]*$/.test(t.value))}i(Ta,"formatCodeAsIndented");function hd(t){let e=t.options.fence||"`";if(e!=="`"&&e!=="~")throw new Error("Cannot serialize code with `"+e+"` for `options.fence`, expected `` ` `` or `~`");return e}i(hd,"checkFence");function gd(t,e,n,r){let a=hd(n),o=t.value||"",s=a==="`"?"GraveAccent":"Tilde";if(Ta(t,n)){let u=n.enter("codeIndented"),h=n.indentLines(o,qy);return u(),h}let l=n.createTracker(r),c=a.repeat(Math.max(md(o,a)+1,3)),p=n.enter("codeFenced"),d=l.move(c);if(t.lang){let u=n.enter(`codeFencedLang${s}`);d+=l.move(n.safe(t.lang,{before:d,after:" ",encode:["`"],...l.current()})),u()}if(t.lang&&t.meta){let u=n.enter(`codeFencedMeta${s}`);d+=l.move(" "),d+=l.move(n.safe(t.meta,{before:d,after:`
|
|
404
|
+
`,encode:["`"],...l.current()})),u()}return d+=l.move(`
|
|
405
|
+
`),o&&(d+=l.move(o+`
|
|
406
|
+
`)),d+=l.move(c),p(),d}i(gd,"code");function qy(t,e,n){return(n?"":" ")+t}i(qy,"map");function _n(t){let e=t.options.quote||'"';if(e!=='"'&&e!=="'")throw new Error("Cannot serialize title with `"+e+"` for `options.quote`, expected `\"`, or `'`");return e}i(_n,"checkQuote");function fd(t,e,n,r){let a=_n(n),o=a==='"'?"Quote":"Apostrophe",s=n.enter("definition"),l=n.enter("label"),c=n.createTracker(r),p=c.move("[");return p+=c.move(n.safe(n.associationId(t),{before:p,after:"]",...c.current()})),p+=c.move("]: "),l(),!t.url||/[\0- \u007F]/.test(t.url)?(l=n.enter("destinationLiteral"),p+=c.move("<"),p+=c.move(n.safe(t.url,{before:p,after:">",...c.current()})),p+=c.move(">")):(l=n.enter("destinationRaw"),p+=c.move(n.safe(t.url,{before:p,after:t.title?" ":`
|
|
407
|
+
`,...c.current()}))),l(),t.title&&(l=n.enter(`title${o}`),p+=c.move(" "+a),p+=c.move(n.safe(t.title,{before:p,after:a,...c.current()})),p+=c.move(a),l()),s(),p}i(fd,"definition");function kd(t){let e=t.options.emphasis||"*";if(e!=="*"&&e!=="_")throw new Error("Cannot serialize emphasis with `"+e+"` for `options.emphasis`, expected `*`, or `_`");return e}i(kd,"checkEmphasis");function Ke(t){return"&#x"+t.toString(16).toUpperCase()+";"}i(Ke,"encodeCharacterReference");function $n(t,e,n){let r=Bn(t),a=Bn(e);return r===void 0?a===void 0?n==="_"?{inside:!0,outside:!0}:{inside:!1,outside:!1}:a===1?{inside:!0,outside:!0}:{inside:!1,outside:!0}:r===1?a===void 0?{inside:!1,outside:!1}:a===1?{inside:!0,outside:!0}:{inside:!1,outside:!1}:a===void 0?{inside:!1,outside:!1}:a===1?{inside:!0,outside:!1}:{inside:!1,outside:!1}}i($n,"encodeInfo");Cs.peek=Gy;function Cs(t,e,n,r){let a=kd(n),o=n.enter("emphasis"),s=n.createTracker(r),l=s.move(a),c=s.move(n.containerPhrasing(t,{after:a,before:l,...s.current()})),p=c.charCodeAt(0),d=$n(r.before.charCodeAt(r.before.length-1),p,a);d.inside&&(c=Ke(p)+c.slice(1));let u=c.charCodeAt(c.length-1),h=$n(r.after.charCodeAt(0),u,a);h.inside&&(c=c.slice(0,-1)+Ke(u));let m=s.move(a);return o(),n.attentionEncodeSurroundingInfo={after:h.outside,before:d.outside},l+c+m}i(Cs,"emphasis");function Gy(t,e,n){return n.options.emphasis||"*"}i(Gy,"emphasisPeek");var qn=i((function(t){if(t==null)return Ky;if(typeof t=="function")return zr(t);if(typeof t=="object")return Array.isArray(t)?Wy(t):Jy(t);if(typeof t=="string")return Hy(t);throw new Error("Expected function, string, or object as test")}),"convert");function Wy(t){let e=[],n=-1;for(;++n<t.length;)e[n]=qn(t[n]);return zr(r);function r(...a){let o=-1;for(;++o<e.length;)if(e[o].apply(this,a))return!0;return!1}}i(Wy,"anyFactory");function Jy(t){let e=t;return zr(n);function n(r){let a=r,o;for(o in t)if(a[o]!==e[o])return!1;return!0}}i(Jy,"propertiesFactory");function Hy(t){return zr(e);function e(n){return n&&n.type===t}}i(Hy,"typeFactory");function zr(t){return e;function e(n,r,a){return!!(Yy(n)&&t.call(this,n,typeof r=="number"?r:void 0,a||void 0))}}i(zr,"castFactory");function Ky(){return!0}i(Ky,"ok");function Yy(t){return t!==null&&typeof t=="object"&&"type"in t}i(Yy,"looksLikeANode");function vd(t){return"\x1B[33m"+t+"\x1B[39m"}i(vd,"color");var yd=[],Mr=!0,cn=!1,Nr="skip";function Ts(t,e,n,r){let a;typeof e=="function"&&typeof n!="function"?(r=n,n=e):a=e;let o=qn(a),s=r?-1:1;l(t,void 0,[])();function l(c,p,d){let u=c&&typeof c=="object"?c:{};if(typeof u.type=="string"){let m=typeof u.tagName=="string"?u.tagName:typeof u.name=="string"?u.name:void 0;Object.defineProperty(h,"name",{value:"node ("+vd(c.type+(m?"<"+m+">":""))+")"})}return h;function h(){let m=yd,v,A,b;if((!e||o(c,p,d[d.length-1]||void 0))&&(m=Qy(n(c,d)),m[0]===cn))return m;if("children"in c&&c.children){let y=c;if(y.children&&m[0]!==Nr)for(A=(r?y.children.length:-1)+s,b=d.concat(y);A>-1&&A<y.children.length;){let w=y.children[A];if(v=l(w,A,b)(),v[0]===cn)return v;A=typeof v[1]=="number"?v[1]:A+s}}return m}}i(l,"factory")}i(Ts,"visitParents");function Qy(t){return Array.isArray(t)?t:typeof t=="number"?[Mr,t]:t==null?yd:[t]}i(Qy,"toResult");function Sa(t,e,n,r){let a,o,s;typeof e=="function"&&typeof n!="function"?(o=void 0,s=e,a=n):(o=e,s=n,a=r),Ts(t,o,l,a);function l(c,p){let d=p[p.length-1],u=d?d.children.indexOf(c):void 0;return s(c,u,d)}i(l,"overload")}i(Sa,"visit");function Rr(t,e){let n=!1;return Sa(t,function(r){if("value"in r&&/\r?\n|\r/.test(r.value)||r.type==="break")return n=!0,cn}),!!((!t.depth||t.depth<3)&&rn(t)&&(e.options.setext||n))}i(Rr,"formatHeadingAsSetext");function bd(t,e,n,r){let a=Math.max(Math.min(6,t.depth||1),1),o=n.createTracker(r);if(Rr(t,n)){let d=n.enter("headingSetext"),u=n.enter("phrasing"),h=n.containerPhrasing(t,{...o.current(),before:`
|
|
408
|
+
`,after:`
|
|
409
|
+
`});return u(),d(),h+`
|
|
410
|
+
`+(a===1?"=":"-").repeat(h.length-(Math.max(h.lastIndexOf("\r"),h.lastIndexOf(`
|
|
411
|
+
`))+1))}let s="#".repeat(a),l=n.enter("headingAtx"),c=n.enter("phrasing");o.move(s+" ");let p=n.containerPhrasing(t,{before:"# ",after:`
|
|
412
|
+
`,...o.current()});return/^[\t ]/.test(p)&&(p=Ke(p.charCodeAt(0))+p.slice(1)),p=p?s+" "+p:s,n.options.closeAtx&&(p+=" "+s),c(),l(),p}i(bd,"heading");Ss.peek=Zy;function Ss(t){return t.value||""}i(Ss,"html");function Zy(){return"<"}i(Zy,"htmlPeek");Ps.peek=Xy;function Ps(t,e,n,r){let a=_n(n),o=a==='"'?"Quote":"Apostrophe",s=n.enter("image"),l=n.enter("label"),c=n.createTracker(r),p=c.move("![");return p+=c.move(n.safe(t.alt,{before:p,after:"]",...c.current()})),p+=c.move("]("),l(),!t.url&&t.title||/[\0- \u007F]/.test(t.url)?(l=n.enter("destinationLiteral"),p+=c.move("<"),p+=c.move(n.safe(t.url,{before:p,after:">",...c.current()})),p+=c.move(">")):(l=n.enter("destinationRaw"),p+=c.move(n.safe(t.url,{before:p,after:t.title?" ":")",...c.current()}))),l(),t.title&&(l=n.enter(`title${o}`),p+=c.move(" "+a),p+=c.move(n.safe(t.title,{before:p,after:a,...c.current()})),p+=c.move(a),l()),p+=c.move(")"),s(),p}i(Ps,"image");function Xy(){return"!"}i(Xy,"imagePeek");Es.peek=eb;function Es(t,e,n,r){let a=t.referenceType,o=n.enter("imageReference"),s=n.enter("label"),l=n.createTracker(r),c=l.move("!["),p=n.safe(t.alt,{before:c,after:"]",...l.current()});c+=l.move(p+"]["),s();let d=n.stack;n.stack=[],s=n.enter("reference");let u=n.safe(n.associationId(t),{before:c,after:"]",...l.current()});return s(),n.stack=d,o(),a==="full"||!p||p!==u?c+=l.move(u+"]"):a==="shortcut"?c=c.slice(0,-1):c+=l.move("]"),c}i(Es,"imageReference");function eb(){return"!"}i(eb,"imageReferencePeek");Fs.peek=tb;function Fs(t,e,n){let r=t.value||"",a="`",o=-1;for(;new RegExp("(^|[^`])"+a+"([^`]|$)").test(r);)a+="`";for(/[^ \r\n]/.test(r)&&(/^[ \r\n]/.test(r)&&/[ \r\n]$/.test(r)||/^`|`$/.test(r))&&(r=" "+r+" ");++o<n.unsafe.length;){let s=n.unsafe[o],l=n.compilePattern(s),c;if(s.atBreak)for(;c=l.exec(r);){let p=c.index;r.charCodeAt(p)===10&&r.charCodeAt(p-1)===13&&p--,r=r.slice(0,p)+" "+r.slice(c.index+1)}}return a+r+a}i(Fs,"inlineCode");function tb(){return"`"}i(tb,"inlineCodePeek");function Is(t,e){let n=rn(t);return!!(!e.options.resourceLink&&t.url&&!t.title&&t.children&&t.children.length===1&&t.children[0].type==="text"&&(n===t.url||"mailto:"+n===t.url)&&/^[a-z][a-z+.-]+:/i.test(t.url)&&!/[\0- <>\u007F]/.test(t.url))}i(Is,"formatLinkAsAutolink");zs.peek=nb;function zs(t,e,n,r){let a=_n(n),o=a==='"'?"Quote":"Apostrophe",s=n.createTracker(r),l,c;if(Is(t,n)){let d=n.stack;n.stack=[],l=n.enter("autolink");let u=s.move("<");return u+=s.move(n.containerPhrasing(t,{before:u,after:">",...s.current()})),u+=s.move(">"),l(),n.stack=d,u}l=n.enter("link"),c=n.enter("label");let p=s.move("[");return p+=s.move(n.containerPhrasing(t,{before:p,after:"](",...s.current()})),p+=s.move("]("),c(),!t.url&&t.title||/[\0- \u007F]/.test(t.url)?(c=n.enter("destinationLiteral"),p+=s.move("<"),p+=s.move(n.safe(t.url,{before:p,after:">",...s.current()})),p+=s.move(">")):(c=n.enter("destinationRaw"),p+=s.move(n.safe(t.url,{before:p,after:t.title?" ":")",...s.current()}))),c(),t.title&&(c=n.enter(`title${o}`),p+=s.move(" "+a),p+=s.move(n.safe(t.title,{before:p,after:a,...s.current()})),p+=s.move(a),c()),p+=s.move(")"),l(),p}i(zs,"link");function nb(t,e,n){return Is(t,n)?"<":"["}i(nb,"linkPeek");Ms.peek=ab;function Ms(t,e,n,r){let a=t.referenceType,o=n.enter("linkReference"),s=n.enter("label"),l=n.createTracker(r),c=l.move("["),p=n.containerPhrasing(t,{before:c,after:"]",...l.current()});c+=l.move(p+"]["),s();let d=n.stack;n.stack=[],s=n.enter("reference");let u=n.safe(n.associationId(t),{before:c,after:"]",...l.current()});return s(),n.stack=d,o(),a==="full"||!p||p!==u?c+=l.move(u+"]"):a==="shortcut"?c=c.slice(0,-1):c+=l.move("]"),c}i(Ms,"linkReference");function ab(){return"["}i(ab,"linkReferencePeek");function Gn(t){let e=t.options.bullet||"*";if(e!=="*"&&e!=="+"&&e!=="-")throw new Error("Cannot serialize items with `"+e+"` for `options.bullet`, expected `*`, `+`, or `-`");return e}i(Gn,"checkBullet");function Ad(t){let e=Gn(t),n=t.options.bulletOther;if(!n)return e==="*"?"-":"*";if(n!=="*"&&n!=="+"&&n!=="-")throw new Error("Cannot serialize items with `"+n+"` for `options.bulletOther`, expected `*`, `+`, or `-`");if(n===e)throw new Error("Expected `bullet` (`"+e+"`) and `bulletOther` (`"+n+"`) to be different");return n}i(Ad,"checkBulletOther");function wd(t){let e=t.options.bulletOrdered||".";if(e!=="."&&e!==")")throw new Error("Cannot serialize items with `"+e+"` for `options.bulletOrdered`, expected `.` or `)`");return e}i(wd,"checkBulletOrdered");function jr(t){let e=t.options.rule||"*";if(e!=="*"&&e!=="-"&&e!=="_")throw new Error("Cannot serialize rules with `"+e+"` for `options.rule`, expected `*`, `-`, or `_`");return e}i(jr,"checkRule");function xd(t,e,n,r){let a=n.enter("list"),o=n.bulletCurrent,s=t.ordered?wd(n):Gn(n),l=t.ordered?s==="."?")":".":Ad(n),c=e&&n.bulletLastUsed?s===n.bulletLastUsed:!1;if(!t.ordered){let d=t.children?t.children[0]:void 0;if((s==="*"||s==="-")&&d&&(!d.children||!d.children[0])&&n.stack[n.stack.length-1]==="list"&&n.stack[n.stack.length-2]==="listItem"&&n.stack[n.stack.length-3]==="list"&&n.stack[n.stack.length-4]==="listItem"&&n.indexStack[n.indexStack.length-1]===0&&n.indexStack[n.indexStack.length-2]===0&&n.indexStack[n.indexStack.length-3]===0&&(c=!0),jr(n)===s&&d){let u=-1;for(;++u<t.children.length;){let h=t.children[u];if(h&&h.type==="listItem"&&h.children&&h.children[0]&&h.children[0].type==="thematicBreak"){c=!0;break}}}}c&&(s=l),n.bulletCurrent=s;let p=n.containerFlow(t,r);return n.bulletLastUsed=s,n.bulletCurrent=o,a(),p}i(xd,"list");function Cd(t){let e=t.options.listItemIndent||"one";if(e!=="tab"&&e!=="one"&&e!=="mixed")throw new Error("Cannot serialize items with `"+e+"` for `options.listItemIndent`, expected `tab`, `one`, or `mixed`");return e}i(Cd,"checkListItemIndent");function Td(t,e,n,r){let a=Cd(n),o=n.bulletCurrent||Gn(n);e&&e.type==="list"&&e.ordered&&(o=(typeof e.start=="number"&&e.start>-1?e.start:1)+(n.options.incrementListMarker===!1?0:e.children.indexOf(t))+o);let s=o.length+1;(a==="tab"||a==="mixed"&&(e&&e.type==="list"&&e.spread||t.spread))&&(s=Math.ceil(s/4)*4);let l=n.createTracker(r);l.move(o+" ".repeat(s-o.length)),l.shift(s);let c=n.enter("listItem"),p=n.indentLines(n.containerFlow(t,l.current()),d);return c(),p;function d(u,h,m){return h?(m?"":" ".repeat(s))+u:(m?o:o+" ".repeat(s-o.length))+u}i(d,"map")}i(Td,"listItem");function Sd(t,e,n,r){let a=n.enter("paragraph"),o=n.enter("phrasing"),s=n.containerPhrasing(t,r);return o(),a(),s}i(Sd,"paragraph");var Ns=qn(["break","delete","emphasis","footnote","footnoteReference","image","imageReference","inlineCode","inlineMath","link","linkReference","mdxJsxTextElement","mdxTextExpression","strong","text","textDirective"]);function Pd(t,e,n,r){return(t.children.some(function(s){return Ns(s)})?n.containerPhrasing:n.containerFlow).call(n,t,r)}i(Pd,"root");function Ed(t){let e=t.options.strong||"*";if(e!=="*"&&e!=="_")throw new Error("Cannot serialize strong with `"+e+"` for `options.strong`, expected `*`, or `_`");return e}i(Ed,"checkStrong");Rs.peek=rb;function Rs(t,e,n,r){let a=Ed(n),o=n.enter("strong"),s=n.createTracker(r),l=s.move(a+a),c=s.move(n.containerPhrasing(t,{after:a,before:l,...s.current()})),p=c.charCodeAt(0),d=$n(r.before.charCodeAt(r.before.length-1),p,a);d.inside&&(c=Ke(p)+c.slice(1));let u=c.charCodeAt(c.length-1),h=$n(r.after.charCodeAt(0),u,a);h.inside&&(c=c.slice(0,-1)+Ke(u));let m=s.move(a+a);return o(),n.attentionEncodeSurroundingInfo={after:h.outside,before:d.outside},l+c+m}i(Rs,"strong");function rb(t,e,n){return n.options.strong||"*"}i(rb,"strongPeek");function Fd(t,e,n,r){return n.safe(t.value,r)}i(Fd,"text");function Id(t){let e=t.options.ruleRepetition||3;if(e<3)throw new Error("Cannot serialize rules with repetition `"+e+"` for `options.ruleRepetition`, expected `3` or more");return e}i(Id,"checkRuleRepetition");function zd(t,e,n){let r=(jr(n)+(n.options.ruleSpaces?" ":"")).repeat(Id(n));return n.options.ruleSpaces?r.slice(0,-1):r}i(zd,"thematicBreak");var Md={blockquote:dd,break:xs,code:gd,definition:fd,emphasis:Cs,hardBreak:xs,heading:bd,html:Ss,image:Ps,imageReference:Es,inlineCode:Fs,link:zs,linkReference:Ms,list:xd,listItem:Td,paragraph:Sd,root:Pd,strong:Rs,text:Fd,thematicBreak:zd};var Nd=[ib];function ib(t,e,n,r){if(e.type==="code"&&Ta(e,r)&&(t.type==="list"||t.type===e.type&&Ta(t,r)))return!1;if("spread"in n&&typeof n.spread=="boolean")return t.type==="paragraph"&&(t.type===e.type||e.type==="definition"||e.type==="heading"&&Rr(e,r))?void 0:n.spread?1:0}i(ib,"joinDefaults");var pn=["autolink","destinationLiteral","destinationRaw","reference","titleQuote","titleApostrophe"],Rd=[{character:" ",after:"[\\r\\n]",inConstruct:"phrasing"},{character:" ",before:"[\\r\\n]",inConstruct:"phrasing"},{character:" ",inConstruct:["codeFencedLangGraveAccent","codeFencedLangTilde"]},{character:"\r",inConstruct:["codeFencedLangGraveAccent","codeFencedLangTilde","codeFencedMetaGraveAccent","codeFencedMetaTilde","destinationLiteral","headingAtx"]},{character:`
|
|
413
|
+
`,inConstruct:["codeFencedLangGraveAccent","codeFencedLangTilde","codeFencedMetaGraveAccent","codeFencedMetaTilde","destinationLiteral","headingAtx"]},{character:" ",after:"[\\r\\n]",inConstruct:"phrasing"},{character:" ",before:"[\\r\\n]",inConstruct:"phrasing"},{character:" ",inConstruct:["codeFencedLangGraveAccent","codeFencedLangTilde"]},{character:"!",after:"\\[",inConstruct:"phrasing",notInConstruct:pn},{character:'"',inConstruct:"titleQuote"},{atBreak:!0,character:"#"},{character:"#",inConstruct:"headingAtx",after:`(?:[\r
|
|
414
|
+
]|$)`},{character:"&",after:"[#A-Za-z]",inConstruct:"phrasing"},{character:"'",inConstruct:"titleApostrophe"},{character:"(",inConstruct:"destinationRaw"},{before:"\\]",character:"(",inConstruct:"phrasing",notInConstruct:pn},{atBreak:!0,before:"\\d+",character:")"},{character:")",inConstruct:"destinationRaw"},{atBreak:!0,character:"*",after:`(?:[ \r
|
|
415
|
+
*])`},{character:"*",inConstruct:"phrasing",notInConstruct:pn},{atBreak:!0,character:"+",after:`(?:[ \r
|
|
416
|
+
])`},{atBreak:!0,character:"-",after:`(?:[ \r
|
|
417
|
+
-])`},{atBreak:!0,before:"\\d+",character:".",after:`(?:[ \r
|
|
418
|
+
]|$)`},{atBreak:!0,character:"<",after:"[!/?A-Za-z]"},{character:"<",after:"[!/?A-Za-z]",inConstruct:"phrasing",notInConstruct:pn},{character:"<",inConstruct:"destinationLiteral"},{atBreak:!0,character:"="},{atBreak:!0,character:">"},{character:">",inConstruct:"destinationLiteral"},{atBreak:!0,character:"["},{character:"[",inConstruct:"phrasing",notInConstruct:pn},{character:"[",inConstruct:["label","reference"]},{character:"\\",after:"[\\r\\n]",inConstruct:"phrasing"},{character:"]",inConstruct:["label","reference"]},{atBreak:!0,character:"_"},{character:"_",inConstruct:"phrasing",notInConstruct:pn},{atBreak:!0,character:"`"},{character:"`",inConstruct:["codeFencedLangGraveAccent","codeFencedMetaGraveAccent"]},{character:"`",inConstruct:"phrasing",notInConstruct:pn},{atBreak:!0,character:"~"}];function jd(t){return t.label||!t.identifier?t.label||"":Fr(t.identifier)}i(jd,"association");function Ld(t){if(!t._compiled){let e=(t.atBreak?"[\\r\\n][\\t ]*":"")+(t.before?"(?:"+t.before+")":"");t._compiled=new RegExp((e?"("+e+")":"")+(/[|\\{}()[\]^$+*?.-]/.test(t.character)?"\\":"")+t.character+(t.after?"(?:"+t.after+")":""),"g")}return t._compiled}i(Ld,"compilePattern");function Od(t,e,n){let r=e.indexStack,a=t.children||[],o=[],s=-1,l=n.before,c;r.push(-1);let p=e.createTracker(n);for(;++s<a.length;){let d=a[s],u;if(r[r.length-1]=s,s+1<a.length){let v=e.handle.handlers[a[s+1].type];v&&v.peek&&(v=v.peek),u=v?v(a[s+1],t,e,{before:"",after:"",...p.current()}).charAt(0):""}else u=n.after;o.length>0&&(l==="\r"||l===`
|
|
419
|
+
`)&&d.type==="html"&&(o[o.length-1]=o[o.length-1].replace(/(\r?\n|\r)$/," "),l=" ",p=e.createTracker(n),p.move(o.join("")));let h=e.handle(d,t,e,{...p.current(),after:u,before:l});c&&c===h.slice(0,1)&&(h=Ke(c.charCodeAt(0))+h.slice(1));let m=e.attentionEncodeSurroundingInfo;e.attentionEncodeSurroundingInfo=void 0,c=void 0,m&&(o.length>0&&m.before&&l===o[o.length-1].slice(-1)&&(o[o.length-1]=o[o.length-1].slice(0,-1)+Ke(l.charCodeAt(0))),m.after&&(c=u)),p.move(h),o.push(h),l=h.slice(-1)}return r.pop(),o.join("")}i(Od,"containerPhrasing");function Dd(t,e,n){let r=e.indexStack,a=t.children||[],o=e.createTracker(n),s=[],l=-1;for(r.push(-1);++l<a.length;){let c=a[l];r[r.length-1]=l,s.push(o.move(e.handle(c,t,e,{before:`
|
|
420
|
+
`,after:`
|
|
421
|
+
`,...o.current()}))),c.type!=="list"&&(e.bulletLastUsed=void 0),l<a.length-1&&s.push(o.move(ob(c,a[l+1],t,e)))}return r.pop(),s.join("")}i(Dd,"containerFlow");function ob(t,e,n,r){let a=r.join.length;for(;a--;){let o=r.join[a](t,e,n,r);if(o===!0||o===1)break;if(typeof o=="number")return`
|
|
422
|
+
`.repeat(1+o);if(o===!1)return`
|
|
423
|
+
|
|
424
|
+
<!---->
|
|
425
|
+
|
|
426
|
+
`}return`
|
|
427
|
+
|
|
428
|
+
`}i(ob,"between");var sb=/\r?\n|\r/g;function Bd(t,e){let n=[],r=0,a=0,o;for(;o=sb.exec(t);)s(t.slice(r,o.index)),n.push(o[0]),r=o.index+o[0].length,a++;return s(t.slice(r)),n.join("");function s(l){n.push(e(l,a,!l))}i(s,"one")}i(Bd,"indentLines");function Vd(t,e,n){let r=(n.before||"")+(e||"")+(n.after||""),a=[],o=[],s={},l=-1;for(;++l<t.unsafe.length;){let d=t.unsafe[l];if(!Ir(t.stack,d))continue;let u=t.compilePattern(d),h;for(;h=u.exec(r);){let m="before"in d||!!d.atBreak,v="after"in d,A=h.index+(m?h[1].length:0);a.includes(A)?(s[A].before&&!m&&(s[A].before=!1),s[A].after&&!v&&(s[A].after=!1)):(a.push(A),s[A]={before:m,after:v})}}a.sort(lb);let c=n.before?n.before.length:0,p=r.length-(n.after?n.after.length:0);for(l=-1;++l<a.length;){let d=a[l];d<c||d>=p||d+1<p&&a[l+1]===d+1&&s[d].after&&!s[d+1].before&&!s[d+1].after||a[l-1]===d-1&&s[d].before&&!s[d-1].before&&!s[d-1].after||(c!==d&&o.push(Ud(r.slice(c,d),"\\")),c=d,/[!-/:-@[-`{-~]/.test(r.charAt(d))&&(!n.encode||!n.encode.includes(r.charAt(d)))?o.push("\\"):(o.push(Ke(r.charCodeAt(d))),c++))}return o.push(Ud(r.slice(c,p),n.after)),o.join("")}i(Vd,"safe");function lb(t,e){return t-e}i(lb,"numerical");function Ud(t,e){let n=/\\(?=[!-/:-@[-`{-~])/g,r=[],a=[],o=t+e,s=-1,l=0,c;for(;c=n.exec(o);)r.push(c.index);for(;++s<r.length;)l!==r[s]&&a.push(t.slice(l,r[s])),a.push("\\"),l=r[s];return a.push(t.slice(l)),a.join("")}i(Ud,"escapeBackslashes");function _d(t){let e=t||{},n=e.now||{},r=e.lineShift||0,a=n.line||1,o=n.column||1;return{move:c,current:s,shift:l};function s(){return{now:{line:a,column:o},lineShift:r}}function l(p){r+=p}function c(p){let d=p||"",u=d.split(/\r?\n|\r/g),h=u[u.length-1];return a+=u.length-1,o=u.length===1?o+h.length:1+h.length+r,d}}i(_d,"track");function js(t,e){let n=e||{},r={associationId:jd,containerPhrasing:ub,containerFlow:mb,createTracker:_d,compilePattern:Ld,enter:o,handlers:{...Md},handle:void 0,indentLines:Bd,indexStack:[],join:[...Nd],options:{},safe:hb,stack:[],unsafe:[...Rd]};ws(r,n),r.options.tightDefinitions&&r.join.push(db),r.handle=cd("type",{invalid:cb,unknown:pb,handlers:r.handlers});let a=r.handle(t,void 0,r,{before:`
|
|
429
|
+
`,after:`
|
|
430
|
+
`,now:{line:1,column:1},lineShift:0});return a&&a.charCodeAt(a.length-1)!==10&&a.charCodeAt(a.length-1)!==13&&(a+=`
|
|
431
|
+
`),a;function o(s){return r.stack.push(s),l;function l(){r.stack.pop()}i(l,"exit")}i(o,"enter")}i(js,"toMarkdown");function cb(t){throw new Error("Cannot handle value `"+t+"`, expected node")}i(cb,"invalid");function pb(t){let e=t;throw new Error("Cannot handle unknown node `"+e.type+"`")}i(pb,"unknown");function db(t,e){if(t.type==="definition"&&t.type===e.type)return 0}i(db,"joinDefinition");function ub(t,e){return Od(t,this,e)}i(ub,"containerPhrasingBound");function mb(t,e){return Dd(t,this,e)}i(mb,"containerFlowBound");function hb(t,e){return Vd(this,t,e)}i(hb,"safeBound");function Lr(t){let e=this;e.compiler=n;function n(r){return js(r,{...e.data("settings"),...t,extensions:e.data("toMarkdownExtensions")||[]})}i(n,"compiler")}i(Lr,"remarkStringify");function Ls(t){if(t)throw t}i(Ls,"bail");var Ur=Mt(Qd(),1);function Pa(t){if(typeof t!="object"||t===null)return!1;let e=Object.getPrototypeOf(t);return(e===null||e===Object.prototype||Object.getPrototypeOf(e)===null)&&!(Symbol.toStringTag in t)&&!(Symbol.iterator in t)}i(Pa,"isPlainObject");function Os(){let t=[],e={run:n,use:r};return e;function n(...a){let o=-1,s=a.pop();if(typeof s!="function")throw new TypeError("Expected function as last argument, not "+s);l(null,...a);function l(c,...p){let d=t[++o],u=-1;if(c){s(c);return}for(;++u<a.length;)(p[u]===null||p[u]===void 0)&&(p[u]=a[u]);a=p,d?Zd(d,l)(...p):s(null,...p)}i(l,"next")}function r(a){if(typeof a!="function")throw new TypeError("Expected `middelware` to be a function, not "+a);return t.push(a),e}}i(Os,"trough");function Zd(t,e){let n;return r;function r(...s){let l=t.length>s.length,c;l&&s.push(a);try{c=t.apply(this,s)}catch(p){let d=p;if(l&&n)throw d;return a(d)}l||(c&&c.then&&typeof c.then=="function"?c.then(o,a):c instanceof Error?a(c):o(c))}function a(s,...l){n||(n=!0,e(s,...l))}function o(s){a(null,s)}}i(Zd,"wrap");var ge=class extends Error{static{i(this,"VFileMessage")}constructor(e,n,r){super(),typeof n=="string"&&(r=n,n=void 0);let a="",o={},s=!1;if(n&&("line"in n&&"column"in n?o={place:n}:"start"in n&&"end"in n?o={place:n}:"type"in n?o={ancestors:[n],place:n.position}:o={...n}),typeof e=="string"?a=e:!o.cause&&e&&(s=!0,a=e.message,o.cause=e),!o.ruleId&&!o.source&&typeof r=="string"){let c=r.indexOf(":");c===-1?o.ruleId=r:(o.source=r.slice(0,c),o.ruleId=r.slice(c+1))}if(!o.place&&o.ancestors&&o.ancestors){let c=o.ancestors[o.ancestors.length-1];c&&(o.place=c.position)}let l=o.place&&"start"in o.place?o.place.start:o.place;this.ancestors=o.ancestors||void 0,this.cause=o.cause||void 0,this.column=l?l.column:void 0,this.fatal=void 0,this.file="",this.message=a,this.line=l?l.line:void 0,this.name=$t(o.place)||"1:1",this.place=o.place||void 0,this.reason=this.message,this.ruleId=o.ruleId||void 0,this.source=o.source||void 0,this.stack=s&&o.cause&&typeof o.cause.stack=="string"?o.cause.stack:"",this.actual=void 0,this.expected=void 0,this.note=void 0,this.url=void 0}};ge.prototype.file="";ge.prototype.name="";ge.prototype.reason="";ge.prototype.message="";ge.prototype.stack="";ge.prototype.column=void 0;ge.prototype.line=void 0;ge.prototype.ancestors=void 0;ge.prototype.cause=void 0;ge.prototype.fatal=void 0;ge.prototype.place=void 0;ge.prototype.ruleId=void 0;ge.prototype.source=void 0;var et=Mt(require("node:path"),1);var Ds=Mt(require("node:process"),1);var Bs=require("node:url");function Dr(t){return!!(t!==null&&typeof t=="object"&&"href"in t&&t.href&&"protocol"in t&&t.protocol&&t.auth===void 0)}i(Dr,"isUrl");var Us=["history","path","basename","stem","extname","dirname"],Ea=class{static{i(this,"VFile")}constructor(e){let n;e?Dr(e)?n={path:e}:typeof e=="string"||gb(e)?n={value:e}:n=e:n={},this.cwd="cwd"in n?"":Ds.default.cwd(),this.data={},this.history=[],this.messages=[],this.value,this.map,this.result,this.stored;let r=-1;for(;++r<Us.length;){let o=Us[r];o in n&&n[o]!==void 0&&n[o]!==null&&(this[o]=o==="history"?[...n[o]]:n[o])}let a;for(a in n)Us.includes(a)||(this[a]=n[a])}get basename(){return typeof this.path=="string"?et.default.basename(this.path):void 0}set basename(e){_s(e,"basename"),Vs(e,"basename"),this.path=et.default.join(this.dirname||"",e)}get dirname(){return typeof this.path=="string"?et.default.dirname(this.path):void 0}set dirname(e){Xd(this.basename,"dirname"),this.path=et.default.join(e||"",this.basename)}get extname(){return typeof this.path=="string"?et.default.extname(this.path):void 0}set extname(e){if(Vs(e,"extname"),Xd(this.dirname,"extname"),e){if(e.codePointAt(0)!==46)throw new Error("`extname` must start with `.`");if(e.includes(".",1))throw new Error("`extname` cannot contain multiple dots")}this.path=et.default.join(this.dirname,this.stem+(e||""))}get path(){return this.history[this.history.length-1]}set path(e){Dr(e)&&(e=(0,Bs.fileURLToPath)(e)),_s(e,"path"),this.path!==e&&this.history.push(e)}get stem(){return typeof this.path=="string"?et.default.basename(this.path,this.extname):void 0}set stem(e){_s(e,"stem"),Vs(e,"stem"),this.path=et.default.join(this.dirname||"",e+(this.extname||""))}fail(e,n,r){let a=this.message(e,n,r);throw a.fatal=!0,a}info(e,n,r){let a=this.message(e,n,r);return a.fatal=void 0,a}message(e,n,r){let a=new ge(e,n,r);return this.path&&(a.name=this.path+":"+a.name,a.file=this.path),a.fatal=!1,this.messages.push(a),a}toString(e){return this.value===void 0?"":typeof this.value=="string"?this.value:new TextDecoder(e||void 0).decode(this.value)}};function Vs(t,e){if(t&&t.includes(et.default.sep))throw new Error("`"+e+"` cannot be a path: did not expect `"+et.default.sep+"`")}i(Vs,"assertPart");function _s(t,e){if(!t)throw new Error("`"+e+"` cannot be empty")}i(_s,"assertNonEmpty");function Xd(t,e){if(!t)throw new Error("Setting `"+e+"` requires `path` to be set too")}i(Xd,"assertPath");function gb(t){return!!(t&&typeof t=="object"&&"byteLength"in t&&"byteOffset"in t)}i(gb,"isUint8Array");var eu=i((function(t){let r=this.constructor.prototype,a=r[t],o=i(function(){return a.apply(o,arguments)},"apply");return Object.setPrototypeOf(o,r),o}),"CallableInstance");var fb={}.hasOwnProperty,Ws=class t extends eu{static{i(this,"Processor")}constructor(){super("copy"),this.Compiler=void 0,this.Parser=void 0,this.attachers=[],this.compiler=void 0,this.freezeIndex=-1,this.frozen=void 0,this.namespace={},this.parser=void 0,this.transformers=Os()}copy(){let e=new t,n=-1;for(;++n<this.attachers.length;){let r=this.attachers[n];e.use(...r)}return e.data((0,Ur.default)(!0,{},this.namespace)),e}data(e,n){return typeof e=="string"?arguments.length===2?(Gs("data",this.frozen),this.namespace[e]=n,this):fb.call(this.namespace,e)&&this.namespace[e]||void 0:e?(Gs("data",this.frozen),this.namespace=e,this):this.namespace}freeze(){if(this.frozen)return this;let e=this;for(;++this.freezeIndex<this.attachers.length;){let[n,...r]=this.attachers[this.freezeIndex];if(r[0]===!1)continue;r[0]===!0&&(r[0]=void 0);let a=n.call(e,...r);typeof a=="function"&&this.transformers.use(a)}return this.frozen=!0,this.freezeIndex=Number.POSITIVE_INFINITY,this}parse(e){this.freeze();let n=Br(e),r=this.parser||this.Parser;return $s("parse",r),r(String(n),n)}process(e,n){let r=this;return this.freeze(),$s("process",this.parser||this.Parser),qs("process",this.compiler||this.Compiler),n?a(void 0,n):new Promise(a);function a(o,s){let l=Br(e),c=r.parse(l);r.run(c,l,function(d,u,h){if(d||!u||!h)return p(d);let m=u,v=r.stringify(m,h);vb(v)?h.value=v:h.result=v,p(d,h)});function p(d,u){d||!u?s(d):o?o(u):n(void 0,u)}i(p,"realDone")}i(a,"executor")}processSync(e){let n=!1,r;return this.freeze(),$s("processSync",this.parser||this.Parser),qs("processSync",this.compiler||this.Compiler),this.process(e,a),nu("processSync","process",n),r;function a(o,s){n=!0,Ls(o),r=s}i(a,"realDone")}run(e,n,r){tu(e),this.freeze();let a=this.transformers;return!r&&typeof n=="function"&&(r=n,n=void 0),r?o(void 0,r):new Promise(o);function o(s,l){let c=Br(n);a.run(e,c,p);function p(d,u,h){let m=u||e;d?l(d):s?s(m):r(void 0,m,h)}i(p,"realDone")}i(o,"executor")}runSync(e,n){let r=!1,a;return this.run(e,n,o),nu("runSync","run",r),a;function o(s,l){Ls(s),a=l,r=!0}i(o,"realDone")}stringify(e,n){this.freeze();let r=Br(n),a=this.compiler||this.Compiler;return qs("stringify",a),tu(e),a(e,r)}use(e,...n){let r=this.attachers,a=this.namespace;if(Gs("use",this.frozen),e!=null)if(typeof e=="function")c(e,n);else if(typeof e=="object")Array.isArray(e)?l(e):s(e);else throw new TypeError("Expected usable value, not `"+e+"`");return this;function o(p){if(typeof p=="function")c(p,[]);else if(typeof p=="object")if(Array.isArray(p)){let[d,...u]=p;c(d,u)}else s(p);else throw new TypeError("Expected usable value, not `"+p+"`")}function s(p){if(!("plugins"in p)&&!("settings"in p))throw new Error("Expected usable value but received an empty preset, which is probably a mistake: presets typically come with `plugins` and sometimes with `settings`, but this has neither");l(p.plugins),p.settings&&(a.settings=(0,Ur.default)(!0,a.settings,p.settings))}function l(p){let d=-1;if(p!=null)if(Array.isArray(p))for(;++d<p.length;){let u=p[d];o(u)}else throw new TypeError("Expected a list of plugins, not `"+p+"`")}function c(p,d){let u=-1,h=-1;for(;++u<r.length;)if(r[u][0]===p){h=u;break}if(h===-1)r.push([p,...d]);else if(d.length>0){let[m,...v]=d,A=r[h][1];Pa(A)&&Pa(m)&&(m=(0,Ur.default)(!0,A,m)),r[h]=[p,m,...v]}}}},Js=new Ws().freeze();function $s(t,e){if(typeof e!="function")throw new TypeError("Cannot `"+t+"` without `parser`")}i($s,"assertParser");function qs(t,e){if(typeof e!="function")throw new TypeError("Cannot `"+t+"` without `compiler`")}i(qs,"assertCompiler");function Gs(t,e){if(e)throw new Error("Cannot call `"+t+"` on a frozen processor.\nCreate a new processor first, by calling it: use `processor()` instead of `processor`.")}i(Gs,"assertUnfrozen");function tu(t){if(!Pa(t)||typeof t.type!="string")throw new TypeError("Expected node, got `"+t+"`")}i(tu,"assertNode");function nu(t,e,n){if(!n)throw new Error("`"+t+"` finished async. Use `"+e+"` instead")}i(nu,"assertDone");function Br(t){return kb(t)?t:new Ea(t)}i(Br,"vfile");function kb(t){return!!(t&&typeof t=="object"&&"message"in t&&"messages"in t)}i(kb,"looksLikeAVFile");function vb(t){return typeof t=="string"||yb(t)}i(vb,"looksLikeAValue");function yb(t){return!!(t&&typeof t=="object"&&"byteLength"in t&&"byteOffset"in t)}i(yb,"isUint8Array");var au=Js().use(Vn).use(Lr).freeze();var Ks={d:i((t,e)=>{for(var n in e)Ks.o(e,n)&&!Ks.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},"d"),o:i((t,e)=>Object.prototype.hasOwnProperty.call(t,e),"o")},Ys={};Ks.d(Ys,{Z:i(()=>xb,"Z"),$:i(()=>su,"$")});var Wn={horizontalTab:-2,virtualSpace:-1,nul:0,eof:null,space:32};function ru(t){return t<Wn.nul||t===Wn.space}i(ru,"n");function Hs(t){return t<Wn.horizontalTab}i(Hs,"i");var bb={553:t=>{t.exports=function(e){var n,r;return e._compiled||(n=e.before?"(?:"+e.before+")":"",r=e.after?"(?:"+e.after+")":"",e.atBreak&&(n="[\\r\\n][\\t ]*"+n),e._compiled=new RegExp((n?"("+n+")":"")+(/[|\\{}()[\]^$+*?.-]/.test(e.character)?"\\":"")+e.character+(r||""),"g")),e._compiled}},112:t=>{function e(n,r,a){var o;if(!r)return a;for(typeof r=="string"&&(r=[r]),o=-1;++o<r.length;)if(n.indexOf(r[o])!==-1)return!0;return!1}i(e,"t"),t.exports=function(n,r){return e(n,r.inConstruct,!0)&&!e(n,r.notInConstruct)}},113:(t,e,n)=>{t.exports=function(l,c,p){for(var d,u,h,m,v,A,b,y,w=(p.before||"")+(c||"")+(p.after||""),T=[],P=[],j={},x=-1;++x<l.unsafe.length;)if(m=l.unsafe[x],a(l.stack,m))for(v=r(m);A=v.exec(w);)d="before"in m||m.atBreak,u="after"in m,h=A.index+(d?A[1].length:0),T.indexOf(h)===-1?(T.push(h),j[h]={before:d,after:u}):(j[h].before&&!d&&(j[h].before=!1),j[h].after&&!u&&(j[h].after=!1));for(T.sort(o),b=p.before?p.before.length:0,y=w.length-(p.after?p.after.length:0),x=-1;++x<T.length;)(h=T[x])<b||h>=y||h+1<y&&T[x+1]===h+1&&j[h].after&&!j[h+1].before&&!j[h+1].after||(b!==h&&P.push(s(w.slice(b,h),"\\")),b=h,!/[!-/:-@[-`{-~]/.test(w.charAt(h))||p.encode&&p.encode.indexOf(w.charAt(h))!==-1?(P.push("&#x"+w.charCodeAt(h).toString(16).toUpperCase()+";"),b++):P.push("\\"));return P.push(s(w.slice(b,y),p.after)),P.join("")};var r=n(553),a=n(112);function o(l,c){return l-c}i(o,"a");function s(l,c){for(var p,d=/\\(?=[!-/:-@[-`{-~])/g,u=[],h=[],m=-1,v=0,A=l+c;p=d.exec(A);)u.push(p.index);for(;++m<u.length;)v!==u[m]&&h.push(l.slice(v,u[m])),h.push("\\"),v=u[m];return h.push(l.slice(v)),h.join("")}i(s,"o")}},iu={};function Tt(t){var e=iu[t];if(e!==void 0)return e.exports;var n=iu[t]={exports:{}};return bb[t](n,n.exports,Tt),n.exports}i(Tt,"s");Tt.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return Tt.d(e,{a:e}),e},Tt.d=(t,e)=>{for(var n in e)Tt.o(e,n)&&!Tt.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},Tt.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var Qs={};(()=>{function t(a={}){let o=a.permalinks||[],s=a.pageResolver||(h=>[h.replace(/ /g,"_").toLowerCase()]),l=a.newClassName||"new",c=a.wikiLinkClassName||"internal",p=a.hrefTemplate||(h=>`#/page/${h}`),d;function u(h){return h[h.length-1]}return i(u,"s"),{enter:{wikiLink:i(function(h){d={type:"wikiLink",value:null,data:{alias:null,permalink:null,exists:null}},this.enter(d,h)},"wikiLink")},exit:{wikiLinkTarget:i(function(h){let m=this.sliceSerialize(h);u(this.stack).value=m},"wikiLinkTarget"),wikiLinkAlias:i(function(h){let m=this.sliceSerialize(h);u(this.stack).data.alias=m},"wikiLinkAlias"),wikiLink:i(function(h){this.exit(h);let m=d,v=s(m.value),A=v.find((P=>o.indexOf(P)!==-1)),b=A!==void 0,y;y=b?A:v[0]||"";let w=m.value;m.data.alias&&(w=m.data.alias);let T=c;b||(T+=" "+l),m.data.alias=w,m.data.permalink=y,m.data.exists=b,m.data.hName="a",m.data.hProperties={className:T,href:p(y)},m.data.hChildren=[{type:"text",value:w}]},"wikiLink")}}}i(t,"e"),Tt.d(Qs,{V:i(()=>t,"V"),x:i(()=>r,"x")});var e=Tt(113),n=Tt.n(e);function r(a={}){let o=a.aliasDivider||":";return{unsafe:[{character:"[",inConstruct:["phrasing","label","reference"]},{character:"]",inConstruct:["label","reference"]}],handlers:{wikiLink:i(function(s,l,c){let p=c.enter("wikiLink"),d=n()(c,s.value,{before:"[",after:"]"}),u=n()(c,s.data.alias,{before:"[",after:"]"}),h;return h=u!==d?`[[${d}${o}${u}]]`:`[[${d}]]`,p(),h},"wikiLink")}}}i(r,"n")})();var Ab=Qs.V,wb=Qs.x,ou=!1;function su(t={}){let e=this.data();function n(r,a){e[r]?e[r].push(a):e[r]=[a]}i(n,"a"),!ou&&(this.Parser&&this.Parser.prototype&&this.Parser.prototype.blockTokenizers||this.Compiler&&this.Compiler.prototype&&this.Compiler.prototype.visitors)&&(ou=!0,console.warn("[remark-wiki-link] Warning: please upgrade to remark 13 to use this plugin")),n("micromarkExtensions",(function(){var r=(arguments.length>0&&arguments[0]!==void 0?arguments[0]:{}).aliasDivider||":",a="]]";return{text:{91:{tokenize:i(function(o,s,l){var c,p,d=0,u=0,h=0;return function(w){return w!=="[[".charCodeAt(u)?l(w):(o.enter("wikiLink"),o.enter("wikiLinkMarker"),m(w))};function m(w){return u===2?(o.exit("wikiLinkMarker"),(function(T){return Hs(T)||T===Wn.eof?l(T):(o.enter("wikiLinkData"),o.enter("wikiLinkTarget"),v(T))})(w)):w!=="[[".charCodeAt(u)?l(w):(o.consume(w),u++,m)}function v(w){return w===r.charCodeAt(d)?c?(o.exit("wikiLinkTarget"),o.enter("wikiLinkAliasMarker"),A(w)):l(w):w===a.charCodeAt(h)?c?(o.exit("wikiLinkTarget"),o.exit("wikiLinkData"),o.enter("wikiLinkMarker"),y(w)):l(w):Hs(w)||w===Wn.eof?l(w):(ru(w)||(c=!0),o.consume(w),v)}function A(w){return d===r.length?(o.exit("wikiLinkAliasMarker"),o.enter("wikiLinkAlias"),b(w)):w!==r.charCodeAt(d)?l(w):(o.consume(w),d++,A)}function b(w){return w===a.charCodeAt(h)?p?(o.exit("wikiLinkAlias"),o.exit("wikiLinkData"),o.enter("wikiLinkMarker"),y(w)):l(w):Hs(w)||w===Wn.eof?l(w):(ru(w)||(p=!0),o.consume(w),b)}function y(w){return h===2?(o.exit("wikiLinkMarker"),o.exit("wikiLink"),s(w)):w!==a.charCodeAt(h)?l(w):(o.consume(w),h++,y)}},"tokenize")}}}})(t)),n("fromMarkdownExtensions",Ab(t)),n("toMarkdownExtensions",wb(t))}i(su,"k");var xb=su,TM=Ys.Z,lu=Ys.$;i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Cb=/^[A-Za-z][A-Za-z0-9+\-.]*:\S+$/;function Zs(t){if(/\s/.test(t))return!1;if(t.includes("://"))try{return new URL(t),!0}catch{return!1}return Cb.test(t)}i(Zs,"isUrl");var dn=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();function Vr(t){let e=(0,dn.getFrontMatterInfo)(t);return(0,dn.parseYaml)(e.frontmatter)??{}}i(Vr,"parseFrontmatter");function cu(t,e){let n=(0,dn.getFrontMatterInfo)(t);if(Object.keys(e).length===0)return t.slice(n.contentStart);let r=(0,dn.stringifyYaml)(e);return n.exists?dp(t,r,n.from,n.to):`---
|
|
432
|
+
${r}---
|
|
433
|
+
${t}`}i(cu,"setFrontmatter");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();function Ve(t){if(!Je(t))return!1;let e=t;return e.startOffset!==void 0&&e.endOffset!==void 0}i(Ve,"isFrontmatterLinkCacheWithOffsets");function _r(t){return Ve(t)?t:{...t,endOffset:t.original.length,startOffset:0}}i(_r,"toFrontmatterLinkCacheWithOffsets");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();function pu(t){return Xs(t)&&t.type==="file"}i(pu,"isCanvasFileNodeReference");function Xs(t){return Je(t)&&!!t.isCanvas}i(Xs,"isCanvasReference");function $r(t,e){return Ve(t)?{newContent:e,oldContent:t.original.slice(t.startOffset,t.endOffset),reference:t}:{newContent:e,oldContent:t.original,reference:t}}i($r,"referenceToFileChange");function du(t){return t.sort((e,n)=>{if(Je(e)&&Je(n)){let r=Ve(e)?e.startOffset:0,a=Ve(n)?n.startOffset:0;return e.key.localeCompare(n.key)||Number(Ve(n))-Number(Ve(e))||r-a}return We(e)&&We(n)?e.position.start.offset-n.position.start.offset:Je(e)?1:-1})}i(du,"sortReferences");var Na=require("obsidian");var Fu=require("obsidian");var D=i(t=>typeof t=="string","isString"),Fa=i(()=>{let t,e,n=new Promise((r,a)=>{t=r,e=a});return n.resolve=t,n.reject=e,n},"defer"),uu=i(t=>t==null?"":""+t,"makeString"),Tb=i((t,e,n)=>{t.forEach(r=>{e[r]&&(n[r]=e[r])})},"copy"),Sb=/###/g,mu=i(t=>t&&t.indexOf("###")>-1?t.replace(Sb,"."):t,"cleanKey"),hu=i(t=>!t||D(t),"canNotTraverseDeeper"),Ia=i((t,e,n)=>{let r=D(e)?e.split("."):e,a=0;for(;a<r.length-1;){if(hu(t))return{};let o=mu(r[a]);!t[o]&&n&&(t[o]=new n),Object.prototype.hasOwnProperty.call(t,o)?t=t[o]:t={},++a}return hu(t)?{}:{obj:t,k:mu(r[a])}},"getLastOfPath"),gu=i((t,e,n)=>{let{obj:r,k:a}=Ia(t,e,Object);if(r!==void 0||e.length===1){r[a]=n;return}let o=e[e.length-1],s=e.slice(0,e.length-1),l=Ia(t,s,Object);for(;l.obj===void 0&&s.length;)o=`${s[s.length-1]}.${o}`,s=s.slice(0,s.length-1),l=Ia(t,s,Object),l?.obj&&typeof l.obj[`${l.k}.${o}`]<"u"&&(l.obj=void 0);l.obj[`${l.k}.${o}`]=n},"setPath"),Pb=i((t,e,n,r)=>{let{obj:a,k:o}=Ia(t,e,Object);a[o]=a[o]||[],a[o].push(n)},"pushPath"),Gr=i((t,e)=>{let{obj:n,k:r}=Ia(t,e);if(n&&Object.prototype.hasOwnProperty.call(n,r))return n[r]},"getPath"),Eb=i((t,e,n)=>{let r=Gr(t,n);return r!==void 0?r:Gr(e,n)},"getPathWithDefaults"),xu=i((t,e,n)=>{for(let r in e)r!=="__proto__"&&r!=="constructor"&&(r in t?D(t[r])||t[r]instanceof String||D(e[r])||e[r]instanceof String?n&&(t[r]=e[r]):xu(t[r],e[r],n):t[r]=e[r]);return t},"deepExtend"),Jn=i(t=>t.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&"),"regexEscape"),Fb={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/"},Ib=i(t=>D(t)?t.replace(/[&<>"'\/]/g,e=>Fb[e]):t,"escape"),nl=class{static{i(this,"RegExpCache")}constructor(e){this.capacity=e,this.regExpMap=new Map,this.regExpQueue=[]}getRegExp(e){let n=this.regExpMap.get(e);if(n!==void 0)return n;let r=new RegExp(e);return this.regExpQueue.length===this.capacity&&this.regExpMap.delete(this.regExpQueue.shift()),this.regExpMap.set(e,r),this.regExpQueue.push(e),r}},zb=[" ",",","?","!",";"],Mb=new nl(20),Nb=i((t,e,n)=>{e=e||"",n=n||"";let r=zb.filter(s=>e.indexOf(s)<0&&n.indexOf(s)<0);if(r.length===0)return!0;let a=Mb.getRegExp(`(${r.map(s=>s==="?"?"\\?":s).join("|")})`),o=!a.test(t);if(!o){let s=t.indexOf(n);s>0&&!a.test(t.substring(0,s))&&(o=!0)}return o},"looksLikeObjectPath"),al=i((t,e,n=".")=>{if(!t)return;if(t[e])return Object.prototype.hasOwnProperty.call(t,e)?t[e]:void 0;let r=e.split(n),a=t;for(let o=0;o<r.length;){if(!a||typeof a!="object")return;let s,l="";for(let c=o;c<r.length;++c)if(c!==o&&(l+=n),l+=r[c],s=a[l],s!==void 0){if(["string","number","boolean"].indexOf(typeof s)>-1&&c<r.length-1)continue;o+=c-o+1;break}a=s}return a},"deepFind"),za=i(t=>t?.replace("_","-"),"getCleanedCode"),Rb={type:"logger",log(t){this.output("log",t)},warn(t){this.output("warn",t)},error(t){this.output("error",t)},output(t,e){console?.[t]?.apply?.(console,e)}},rl=class t{static{i(this,"Logger")}constructor(e,n={}){this.init(e,n)}init(e,n={}){this.prefix=n.prefix||"i18next:",this.logger=e||Rb,this.options=n,this.debug=n.debug}log(...e){return this.forward(e,"log","",!0)}warn(...e){return this.forward(e,"warn","",!0)}error(...e){return this.forward(e,"error","")}deprecate(...e){return this.forward(e,"warn","WARNING DEPRECATED: ",!0)}forward(e,n,r,a){return a&&!this.debug?null:(D(e[0])&&(e[0]=`${r}${this.prefix} ${e[0]}`),this.logger[n](e))}create(e){return new t(this.logger,{prefix:`${this.prefix}:${e}:`,...this.options})}clone(e){return e=e||this.options,e.prefix=e.prefix||this.prefix,new t(this.logger,e)}},St=new rl,Hn=class{static{i(this,"EventEmitter")}constructor(){this.observers={}}on(e,n){return e.split(" ").forEach(r=>{this.observers[r]||(this.observers[r]=new Map);let a=this.observers[r].get(n)||0;this.observers[r].set(n,a+1)}),this}off(e,n){if(this.observers[e]){if(!n){delete this.observers[e];return}this.observers[e].delete(n)}}emit(e,...n){this.observers[e]&&Array.from(this.observers[e].entries()).forEach(([a,o])=>{for(let s=0;s<o;s++)a(...n)}),this.observers["*"]&&Array.from(this.observers["*"].entries()).forEach(([a,o])=>{for(let s=0;s<o;s++)a.apply(a,[e,...n])})}},Wr=class extends Hn{static{i(this,"ResourceStore")}constructor(e,n={ns:["translation"],defaultNS:"translation"}){super(),this.data=e||{},this.options=n,this.options.keySeparator===void 0&&(this.options.keySeparator="."),this.options.ignoreJSONStructure===void 0&&(this.options.ignoreJSONStructure=!0)}addNamespaces(e){this.options.ns.indexOf(e)<0&&this.options.ns.push(e)}removeNamespaces(e){let n=this.options.ns.indexOf(e);n>-1&&this.options.ns.splice(n,1)}getResource(e,n,r,a={}){let o=a.keySeparator!==void 0?a.keySeparator:this.options.keySeparator,s=a.ignoreJSONStructure!==void 0?a.ignoreJSONStructure:this.options.ignoreJSONStructure,l;e.indexOf(".")>-1?l=e.split("."):(l=[e,n],r&&(Array.isArray(r)?l.push(...r):D(r)&&o?l.push(...r.split(o)):l.push(r)));let c=Gr(this.data,l);return!c&&!n&&!r&&e.indexOf(".")>-1&&(e=l[0],n=l[1],r=l.slice(2).join(".")),c||!s||!D(r)?c:al(this.data?.[e]?.[n],r,o)}addResource(e,n,r,a,o={silent:!1}){let s=o.keySeparator!==void 0?o.keySeparator:this.options.keySeparator,l=[e,n];r&&(l=l.concat(s?r.split(s):r)),e.indexOf(".")>-1&&(l=e.split("."),a=n,n=l[1]),this.addNamespaces(n),gu(this.data,l,a),o.silent||this.emit("added",e,n,r,a)}addResources(e,n,r,a={silent:!1}){for(let o in r)(D(r[o])||Array.isArray(r[o]))&&this.addResource(e,n,o,r[o],{silent:!0});a.silent||this.emit("added",e,n,r)}addResourceBundle(e,n,r,a,o,s={silent:!1,skipCopy:!1}){let l=[e,n];e.indexOf(".")>-1&&(l=e.split("."),a=r,r=n,n=l[1]),this.addNamespaces(n);let c=Gr(this.data,l)||{};s.skipCopy||(r=JSON.parse(JSON.stringify(r))),a?xu(c,r,o):c={...c,...r},gu(this.data,l,c),s.silent||this.emit("added",e,n,r)}removeResourceBundle(e,n){this.hasResourceBundle(e,n)&&delete this.data[e][n],this.removeNamespaces(n),this.emit("removed",e,n)}hasResourceBundle(e,n){return this.getResource(e,n)!==void 0}getResourceBundle(e,n){return n||(n=this.options.defaultNS),this.getResource(e,n)}getDataByLanguage(e){return this.data[e]}hasLanguageSomeTranslations(e){let n=this.getDataByLanguage(e);return!!(n&&Object.keys(n)||[]).find(a=>n[a]&&Object.keys(n[a]).length>0)}toJSON(){return this.data}},Cu={processors:{},addPostProcessor(t){this.processors[t.name]=t},handle(t,e,n,r,a){return t.forEach(o=>{e=this.processors[o]?.process(e,n,r,a)??e}),e}},Tu=Symbol("i18next/PATH_KEY");function jb(){let t=[],e=Object.create(null),n;return e.get=(r,a)=>(n?.revoke?.(),a===Tu?t:(t.push(a),n=Proxy.revocable(r,e),n.proxy)),Proxy.revocable(Object.create(null),e).proxy}i(jb,"createProxy");function il(t,e){let{[Tu]:n}=t(jb());return n.join(e?.keySeparator??".")}i(il,"keysFromSelector");var fu={},el=i(t=>!D(t)&&typeof t!="boolean"&&typeof t!="number","shouldHandleAsObject"),Jr=class t extends Hn{static{i(this,"Translator")}constructor(e,n={}){super(),Tb(["resourceStore","languageUtils","pluralResolver","interpolator","backendConnector","i18nFormat","utils"],e,this),this.options=n,this.options.keySeparator===void 0&&(this.options.keySeparator="."),this.logger=St.create("translator")}changeLanguage(e){e&&(this.language=e)}exists(e,n={interpolation:{}}){let r={...n};if(e==null)return!1;let a=this.resolve(e,r);if(a?.res===void 0)return!1;let o=el(a.res);return!(r.returnObjects===!1&&o)}extractFromKey(e,n){let r=n.nsSeparator!==void 0?n.nsSeparator:this.options.nsSeparator;r===void 0&&(r=":");let a=n.keySeparator!==void 0?n.keySeparator:this.options.keySeparator,o=n.ns||this.options.defaultNS||[],s=r&&e.indexOf(r)>-1,l=!this.options.userDefinedKeySeparator&&!n.keySeparator&&!this.options.userDefinedNsSeparator&&!n.nsSeparator&&!Nb(e,r,a);if(s&&!l){let c=e.match(this.interpolator.nestingRegexp);if(c&&c.length>0)return{key:e,namespaces:D(o)?[o]:o};let p=e.split(r);(r!==a||r===a&&this.options.ns.indexOf(p[0])>-1)&&(o=p.shift()),e=p.join(a)}return{key:e,namespaces:D(o)?[o]:o}}translate(e,n,r){let a=typeof n=="object"?{...n}:n;if(typeof a!="object"&&this.options.overloadTranslationOptionHandler&&(a=this.options.overloadTranslationOptionHandler(arguments)),typeof a=="object"&&(a={...a}),a||(a={}),e==null)return"";typeof e=="function"&&(e=il(e,{...this.options,...a})),Array.isArray(e)||(e=[String(e)]);let o=a.returnDetails!==void 0?a.returnDetails:this.options.returnDetails,s=a.keySeparator!==void 0?a.keySeparator:this.options.keySeparator,{key:l,namespaces:c}=this.extractFromKey(e[e.length-1],a),p=c[c.length-1],d=a.nsSeparator!==void 0?a.nsSeparator:this.options.nsSeparator;d===void 0&&(d=":");let u=a.lng||this.language,h=a.appendNamespaceToCIMode||this.options.appendNamespaceToCIMode;if(u?.toLowerCase()==="cimode")return h?o?{res:`${p}${d}${l}`,usedKey:l,exactUsedKey:l,usedLng:u,usedNS:p,usedParams:this.getUsedParamsDetails(a)}:`${p}${d}${l}`:o?{res:l,usedKey:l,exactUsedKey:l,usedLng:u,usedNS:p,usedParams:this.getUsedParamsDetails(a)}:l;let m=this.resolve(e,a),v=m?.res,A=m?.usedKey||l,b=m?.exactUsedKey||l,y=["[object Number]","[object Function]","[object RegExp]"],w=a.joinArrays!==void 0?a.joinArrays:this.options.joinArrays,T=!this.i18nFormat||this.i18nFormat.handleAsObject,P=a.count!==void 0&&!D(a.count),j=t.hasDefaultValue(a),x=P?this.pluralResolver.getSuffix(u,a.count,a):"",q=a.ordinal&&P?this.pluralResolver.getSuffix(u,a.count,{ordinal:!1}):"",Y=P&&!a.ordinal&&a.count===0,B=Y&&a[`defaultValue${this.options.pluralSeparator}zero`]||a[`defaultValue${x}`]||a[`defaultValue${q}`]||a.defaultValue,W=v;T&&!v&&j&&(W=B);let ke=el(W),K=Object.prototype.toString.apply(W);if(T&&W&&ke&&y.indexOf(K)<0&&!(D(w)&&Array.isArray(W))){if(!a.returnObjects&&!this.options.returnObjects){this.options.returnedObjectHandler||this.logger.warn("accessing an object - but returnObjects options is not enabled!");let E=this.options.returnedObjectHandler?this.options.returnedObjectHandler(A,W,{...a,ns:c}):`key '${l} (${this.language})' returned an object instead of string.`;return o?(m.res=E,m.usedParams=this.getUsedParamsDetails(a),m):E}if(s){let E=Array.isArray(W),L=E?[]:{},O=E?b:A;for(let G in W)if(Object.prototype.hasOwnProperty.call(W,G)){let Z=`${O}${s}${G}`;j&&!v?L[G]=this.translate(Z,{...a,defaultValue:el(B)?B[G]:void 0,joinArrays:!1,ns:c}):L[G]=this.translate(Z,{...a,joinArrays:!1,ns:c}),L[G]===Z&&(L[G]=W[G])}v=L}}else if(T&&D(w)&&Array.isArray(v))v=v.join(w),v&&(v=this.extendTranslation(v,e,a,r));else{let E=!1,L=!1;!this.isValidLookup(v)&&j&&(E=!0,v=B),this.isValidLookup(v)||(L=!0,v=l);let G=(a.missingKeyNoValueFallbackToKey||this.options.missingKeyNoValueFallbackToKey)&&L?void 0:v,Z=j&&B!==v&&this.options.updateMissing;if(L||E||Z){if(this.logger.log(Z?"updateKey":"missingKey",u,p,l,Z?B:v),s){let ae=this.resolve(l,{...a,keySeparator:!1});ae&&ae.res&&this.logger.warn("Seems the loaded translations were in flat JSON format instead of nested. Either set keySeparator: false on init or make sure your translations are published in nested format.")}let ve=[],ze=this.languageUtils.getFallbackCodes(this.options.fallbackLng,a.lng||this.language);if(this.options.saveMissingTo==="fallback"&&ze&&ze[0])for(let ae=0;ae<ze.length;ae++)ve.push(ze[ae]);else this.options.saveMissingTo==="all"?ve=this.languageUtils.toResolveHierarchy(a.lng||this.language):ve.push(a.lng||this.language);let f=i((ae,ye,k)=>{let xe=j&&k!==v?k:G;this.options.missingKeyHandler?this.options.missingKeyHandler(ae,p,ye,xe,Z,a):this.backendConnector?.saveMissing&&this.backendConnector.saveMissing(ae,p,ye,xe,Z,a),this.emit("missingKey",ae,p,ye,v)},"send");this.options.saveMissing&&(this.options.saveMissingPlurals&&P?ve.forEach(ae=>{let ye=this.pluralResolver.getSuffixes(ae,a);Y&&a[`defaultValue${this.options.pluralSeparator}zero`]&&ye.indexOf(`${this.options.pluralSeparator}zero`)<0&&ye.push(`${this.options.pluralSeparator}zero`),ye.forEach(k=>{f([ae],l+k,a[`defaultValue${k}`]||B)})}):f(ve,l,B))}v=this.extendTranslation(v,e,a,m,r),L&&v===l&&this.options.appendNamespaceToMissingKey&&(v=`${p}${d}${l}`),(L||E)&&this.options.parseMissingKeyHandler&&(v=this.options.parseMissingKeyHandler(this.options.appendNamespaceToMissingKey?`${p}${d}${l}`:l,E?v:void 0,a))}return o?(m.res=v,m.usedParams=this.getUsedParamsDetails(a),m):v}extendTranslation(e,n,r,a,o){if(this.i18nFormat?.parse)e=this.i18nFormat.parse(e,{...this.options.interpolation.defaultVariables,...r},r.lng||this.language||a.usedLng,a.usedNS,a.usedKey,{resolved:a});else if(!r.skipInterpolation){r.interpolation&&this.interpolator.init({...r,interpolation:{...this.options.interpolation,...r.interpolation}});let c=D(e)&&(r?.interpolation?.skipOnVariables!==void 0?r.interpolation.skipOnVariables:this.options.interpolation.skipOnVariables),p;if(c){let u=e.match(this.interpolator.nestingRegexp);p=u&&u.length}let d=r.replace&&!D(r.replace)?r.replace:r;if(this.options.interpolation.defaultVariables&&(d={...this.options.interpolation.defaultVariables,...d}),e=this.interpolator.interpolate(e,d,r.lng||this.language||a.usedLng,r),c){let u=e.match(this.interpolator.nestingRegexp),h=u&&u.length;p<h&&(r.nest=!1)}!r.lng&&a&&a.res&&(r.lng=this.language||a.usedLng),r.nest!==!1&&(e=this.interpolator.nest(e,(...u)=>o?.[0]===u[0]&&!r.context?(this.logger.warn(`It seems you are nesting recursively key: ${u[0]} in key: ${n[0]}`),null):this.translate(...u,n),r)),r.interpolation&&this.interpolator.reset()}let s=r.postProcess||this.options.postProcess,l=D(s)?[s]:s;return e!=null&&l?.length&&r.applyPostProcessor!==!1&&(e=Cu.handle(l,e,n,this.options&&this.options.postProcessPassResolved?{i18nResolved:{...a,usedParams:this.getUsedParamsDetails(r)},...r}:r,this)),e}resolve(e,n={}){let r,a,o,s,l;return D(e)&&(e=[e]),e.forEach(c=>{if(this.isValidLookup(r))return;let p=this.extractFromKey(c,n),d=p.key;a=d;let u=p.namespaces;this.options.fallbackNS&&(u=u.concat(this.options.fallbackNS));let h=n.count!==void 0&&!D(n.count),m=h&&!n.ordinal&&n.count===0,v=n.context!==void 0&&(D(n.context)||typeof n.context=="number")&&n.context!=="",A=n.lngs?n.lngs:this.languageUtils.toResolveHierarchy(n.lng||this.language,n.fallbackLng);u.forEach(b=>{this.isValidLookup(r)||(l=b,!fu[`${A[0]}-${b}`]&&this.utils?.hasLoadedNamespace&&!this.utils?.hasLoadedNamespace(l)&&(fu[`${A[0]}-${b}`]=!0,this.logger.warn(`key "${a}" for languages "${A.join(", ")}" won't get resolved as namespace "${l}" was not yet loaded`,"This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!")),A.forEach(y=>{if(this.isValidLookup(r))return;s=y;let w=[d];if(this.i18nFormat?.addLookupKeys)this.i18nFormat.addLookupKeys(w,d,y,b,n);else{let P;h&&(P=this.pluralResolver.getSuffix(y,n.count,n));let j=`${this.options.pluralSeparator}zero`,x=`${this.options.pluralSeparator}ordinal${this.options.pluralSeparator}`;if(h&&(n.ordinal&&P.indexOf(x)===0&&w.push(d+P.replace(x,this.options.pluralSeparator)),w.push(d+P),m&&w.push(d+j)),v){let q=`${d}${this.options.contextSeparator||"_"}${n.context}`;w.push(q),h&&(n.ordinal&&P.indexOf(x)===0&&w.push(q+P.replace(x,this.options.pluralSeparator)),w.push(q+P),m&&w.push(q+j))}}let T;for(;T=w.pop();)this.isValidLookup(r)||(o=T,r=this.getResource(y,b,T,n))}))})}),{res:r,usedKey:a,exactUsedKey:o,usedLng:s,usedNS:l}}isValidLookup(e){return e!==void 0&&!(!this.options.returnNull&&e===null)&&!(!this.options.returnEmptyString&&e==="")}getResource(e,n,r,a={}){return this.i18nFormat?.getResource?this.i18nFormat.getResource(e,n,r,a):this.resourceStore.getResource(e,n,r,a)}getUsedParamsDetails(e={}){let n=["defaultValue","ordinal","context","replace","lng","lngs","fallbackLng","ns","keySeparator","nsSeparator","returnObjects","returnDetails","joinArrays","postProcess","interpolation"],r=e.replace&&!D(e.replace),a=r?e.replace:e;if(r&&typeof e.count<"u"&&(a.count=e.count),this.options.interpolation.defaultVariables&&(a={...this.options.interpolation.defaultVariables,...a}),!r){a={...a};for(let o of n)delete a[o]}return a}static hasDefaultValue(e){let n="defaultValue";for(let r in e)if(Object.prototype.hasOwnProperty.call(e,r)&&n===r.substring(0,n.length)&&e[r]!==void 0)return!0;return!1}},Hr=class{static{i(this,"LanguageUtil")}constructor(e){this.options=e,this.supportedLngs=this.options.supportedLngs||!1,this.logger=St.create("languageUtils")}getScriptPartFromCode(e){if(e=za(e),!e||e.indexOf("-")<0)return null;let n=e.split("-");return n.length===2||(n.pop(),n[n.length-1].toLowerCase()==="x")?null:this.formatLanguageCode(n.join("-"))}getLanguagePartFromCode(e){if(e=za(e),!e||e.indexOf("-")<0)return e;let n=e.split("-");return this.formatLanguageCode(n[0])}formatLanguageCode(e){if(D(e)&&e.indexOf("-")>-1){let n;try{n=Intl.getCanonicalLocales(e)[0]}catch{}return n&&this.options.lowerCaseLng&&(n=n.toLowerCase()),n||(this.options.lowerCaseLng?e.toLowerCase():e)}return this.options.cleanCode||this.options.lowerCaseLng?e.toLowerCase():e}isSupportedCode(e){return(this.options.load==="languageOnly"||this.options.nonExplicitSupportedLngs)&&(e=this.getLanguagePartFromCode(e)),!this.supportedLngs||!this.supportedLngs.length||this.supportedLngs.indexOf(e)>-1}getBestMatchFromCodes(e){if(!e)return null;let n;return e.forEach(r=>{if(n)return;let a=this.formatLanguageCode(r);(!this.options.supportedLngs||this.isSupportedCode(a))&&(n=a)}),!n&&this.options.supportedLngs&&e.forEach(r=>{if(n)return;let a=this.getScriptPartFromCode(r);if(this.isSupportedCode(a))return n=a;let o=this.getLanguagePartFromCode(r);if(this.isSupportedCode(o))return n=o;n=this.options.supportedLngs.find(s=>{if(s===o)return s;if(!(s.indexOf("-")<0&&o.indexOf("-")<0)&&(s.indexOf("-")>0&&o.indexOf("-")<0&&s.substring(0,s.indexOf("-"))===o||s.indexOf(o)===0&&o.length>1))return s})}),n||(n=this.getFallbackCodes(this.options.fallbackLng)[0]),n}getFallbackCodes(e,n){if(!e)return[];if(typeof e=="function"&&(e=e(n)),D(e)&&(e=[e]),Array.isArray(e))return e;if(!n)return e.default||[];let r=e[n];return r||(r=e[this.getScriptPartFromCode(n)]),r||(r=e[this.formatLanguageCode(n)]),r||(r=e[this.getLanguagePartFromCode(n)]),r||(r=e.default),r||[]}toResolveHierarchy(e,n){let r=this.getFallbackCodes((n===!1?[]:n)||this.options.fallbackLng||[],e),a=[],o=i(s=>{s&&(this.isSupportedCode(s)?a.push(s):this.logger.warn(`rejecting language code not found in supportedLngs: ${s}`))},"addCode");return D(e)&&(e.indexOf("-")>-1||e.indexOf("_")>-1)?(this.options.load!=="languageOnly"&&o(this.formatLanguageCode(e)),this.options.load!=="languageOnly"&&this.options.load!=="currentOnly"&&o(this.getScriptPartFromCode(e)),this.options.load!=="currentOnly"&&o(this.getLanguagePartFromCode(e))):D(e)&&o(this.formatLanguageCode(e)),r.forEach(s=>{a.indexOf(s)<0&&o(this.formatLanguageCode(s))}),a}},ku={zero:0,one:1,two:2,few:3,many:4,other:5},vu={select:i(t=>t===1?"one":"other","select"),resolvedOptions:i(()=>({pluralCategories:["one","other"]}),"resolvedOptions")},ol=class{static{i(this,"PluralResolver")}constructor(e,n={}){this.languageUtils=e,this.options=n,this.logger=St.create("pluralResolver"),this.pluralRulesCache={}}addRule(e,n){this.rules[e]=n}clearCache(){this.pluralRulesCache={}}getRule(e,n={}){let r=za(e==="dev"?"en":e),a=n.ordinal?"ordinal":"cardinal",o=JSON.stringify({cleanedCode:r,type:a});if(o in this.pluralRulesCache)return this.pluralRulesCache[o];let s;try{s=new Intl.PluralRules(r,{type:a})}catch{if(!Intl)return this.logger.error("No Intl support, please use an Intl polyfill!"),vu;if(!e.match(/-|_/))return vu;let c=this.languageUtils.getLanguagePartFromCode(e);s=this.getRule(c,n)}return this.pluralRulesCache[o]=s,s}needsPlural(e,n={}){let r=this.getRule(e,n);return r||(r=this.getRule("dev",n)),r?.resolvedOptions().pluralCategories.length>1}getPluralFormsOfKey(e,n,r={}){return this.getSuffixes(e,r).map(a=>`${n}${a}`)}getSuffixes(e,n={}){let r=this.getRule(e,n);return r||(r=this.getRule("dev",n)),r?r.resolvedOptions().pluralCategories.sort((a,o)=>ku[a]-ku[o]).map(a=>`${this.options.prepend}${n.ordinal?`ordinal${this.options.prepend}`:""}${a}`):[]}getSuffix(e,n,r={}){let a=this.getRule(e,r);return a?`${this.options.prepend}${r.ordinal?`ordinal${this.options.prepend}`:""}${a.select(n)}`:(this.logger.warn(`no plural rule found for: ${e}`),this.getSuffix("dev",n,r))}},yu=i((t,e,n,r=".",a=!0)=>{let o=Eb(t,e,n);return!o&&a&&D(n)&&(o=al(t,n,r),o===void 0&&(o=al(e,n,r))),o},"deepFindWithDefaults"),tl=i(t=>t.replace(/\$/g,"$$$$"),"regexSafe"),Kr=class{static{i(this,"Interpolator")}constructor(e={}){this.logger=St.create("interpolator"),this.options=e,this.format=e?.interpolation?.format||(n=>n),this.init(e)}init(e={}){e.interpolation||(e.interpolation={escapeValue:!0});let{escape:n,escapeValue:r,useRawValueToEscape:a,prefix:o,prefixEscaped:s,suffix:l,suffixEscaped:c,formatSeparator:p,unescapeSuffix:d,unescapePrefix:u,nestingPrefix:h,nestingPrefixEscaped:m,nestingSuffix:v,nestingSuffixEscaped:A,nestingOptionsSeparator:b,maxReplaces:y,alwaysFormat:w}=e.interpolation;this.escape=n!==void 0?n:Ib,this.escapeValue=r!==void 0?r:!0,this.useRawValueToEscape=a!==void 0?a:!1,this.prefix=o?Jn(o):s||"{{",this.suffix=l?Jn(l):c||"}}",this.formatSeparator=p||",",this.unescapePrefix=d?"":u||"-",this.unescapeSuffix=this.unescapePrefix?"":d||"",this.nestingPrefix=h?Jn(h):m||Jn("$t("),this.nestingSuffix=v?Jn(v):A||Jn(")"),this.nestingOptionsSeparator=b||",",this.maxReplaces=y||1e3,this.alwaysFormat=w!==void 0?w:!1,this.resetRegExp()}reset(){this.options&&this.init(this.options)}resetRegExp(){let e=i((n,r)=>n?.source===r?(n.lastIndex=0,n):new RegExp(r,"g"),"getOrResetRegExp");this.regexp=e(this.regexp,`${this.prefix}(.+?)${this.suffix}`),this.regexpUnescape=e(this.regexpUnescape,`${this.prefix}${this.unescapePrefix}(.+?)${this.unescapeSuffix}${this.suffix}`),this.nestingRegexp=e(this.nestingRegexp,`${this.nestingPrefix}((?:[^()"']+|"[^"]*"|'[^']*'|\\((?:[^()]|"[^"]*"|'[^']*')*\\))*?)${this.nestingSuffix}`)}interpolate(e,n,r,a){let o,s,l,c=this.options&&this.options.interpolation&&this.options.interpolation.defaultVariables||{},p=i(m=>{if(m.indexOf(this.formatSeparator)<0){let y=yu(n,c,m,this.options.keySeparator,this.options.ignoreJSONStructure);return this.alwaysFormat?this.format(y,void 0,r,{...a,...n,interpolationkey:m}):y}let v=m.split(this.formatSeparator),A=v.shift().trim(),b=v.join(this.formatSeparator).trim();return this.format(yu(n,c,A,this.options.keySeparator,this.options.ignoreJSONStructure),b,r,{...a,...n,interpolationkey:A})},"handleFormat");this.resetRegExp();let d=a?.missingInterpolationHandler||this.options.missingInterpolationHandler,u=a?.interpolation?.skipOnVariables!==void 0?a.interpolation.skipOnVariables:this.options.interpolation.skipOnVariables;return[{regex:this.regexpUnescape,safeValue:i(m=>tl(m),"safeValue")},{regex:this.regexp,safeValue:i(m=>this.escapeValue?tl(this.escape(m)):tl(m),"safeValue")}].forEach(m=>{for(l=0;o=m.regex.exec(e);){let v=o[1].trim();if(s=p(v),s===void 0)if(typeof d=="function"){let b=d(e,o,a);s=D(b)?b:""}else if(a&&Object.prototype.hasOwnProperty.call(a,v))s="";else if(u){s=o[0];continue}else this.logger.warn(`missed to pass in variable ${v} for interpolating ${e}`),s="";else!D(s)&&!this.useRawValueToEscape&&(s=uu(s));let A=m.safeValue(s);if(e=e.replace(o[0],A),u?(m.regex.lastIndex+=s.length,m.regex.lastIndex-=o[0].length):m.regex.lastIndex=0,l++,l>=this.maxReplaces)break}}),e}nest(e,n,r={}){let a,o,s,l=i((c,p)=>{let d=this.nestingOptionsSeparator;if(c.indexOf(d)<0)return c;let u=c.split(new RegExp(`${d}[ ]*{`)),h=`{${u[1]}`;c=u[0],h=this.interpolate(h,s);let m=h.match(/'/g),v=h.match(/"/g);((m?.length??0)%2===0&&!v||v.length%2!==0)&&(h=h.replace(/'/g,'"'));try{s=JSON.parse(h),p&&(s={...p,...s})}catch(A){return this.logger.warn(`failed parsing options string in nesting for key ${c}`,A),`${c}${d}${h}`}return s.defaultValue&&s.defaultValue.indexOf(this.prefix)>-1&&delete s.defaultValue,c},"handleHasOptions");for(;a=this.nestingRegexp.exec(e);){let c=[];s={...r},s=s.replace&&!D(s.replace)?s.replace:s,s.applyPostProcessor=!1,delete s.defaultValue;let p=/{.*}/.test(a[1])?a[1].lastIndexOf("}")+1:a[1].indexOf(this.formatSeparator);if(p!==-1&&(c=a[1].slice(p).split(this.formatSeparator).map(d=>d.trim()).filter(Boolean),a[1]=a[1].slice(0,p)),o=n(l.call(this,a[1].trim(),s),s),o&&a[0]===e&&!D(o))return o;D(o)||(o=uu(o)),o||(this.logger.warn(`missed to resolve ${a[1]} for nesting ${e}`),o=""),c.length&&(o=c.reduce((d,u)=>this.format(d,u,r.lng,{...r,interpolationkey:a[1].trim()}),o.trim())),e=e.replace(a[0],o),this.regexp.lastIndex=0}return e}},Lb=i(t=>{let e=t.toLowerCase().trim(),n={};if(t.indexOf("(")>-1){let r=t.split("(");e=r[0].toLowerCase().trim();let a=r[1].substring(0,r[1].length-1);e==="currency"&&a.indexOf(":")<0?n.currency||(n.currency=a.trim()):e==="relativetime"&&a.indexOf(":")<0?n.range||(n.range=a.trim()):a.split(";").forEach(s=>{if(s){let[l,...c]=s.split(":"),p=c.join(":").trim().replace(/^'+|'+$/g,""),d=l.trim();n[d]||(n[d]=p),p==="false"&&(n[d]=!1),p==="true"&&(n[d]=!0),isNaN(p)||(n[d]=parseInt(p,10))}})}return{formatName:e,formatOptions:n}},"parseFormatStr"),bu=i(t=>{let e={};return(n,r,a)=>{let o=a;a&&a.interpolationkey&&a.formatParams&&a.formatParams[a.interpolationkey]&&a[a.interpolationkey]&&(o={...o,[a.interpolationkey]:void 0});let s=r+JSON.stringify(o),l=e[s];return l||(l=t(za(r),a),e[s]=l),l(n)}},"createCachedFormatter"),Ob=i(t=>(e,n,r)=>t(za(n),r)(e),"createNonCachedFormatter"),sl=class{static{i(this,"Formatter")}constructor(e={}){this.logger=St.create("formatter"),this.options=e,this.init(e)}init(e,n={interpolation:{}}){this.formatSeparator=n.interpolation.formatSeparator||",";let r=n.cacheInBuiltFormats?bu:Ob;this.formats={number:r((a,o)=>{let s=new Intl.NumberFormat(a,{...o});return l=>s.format(l)}),currency:r((a,o)=>{let s=new Intl.NumberFormat(a,{...o,style:"currency"});return l=>s.format(l)}),datetime:r((a,o)=>{let s=new Intl.DateTimeFormat(a,{...o});return l=>s.format(l)}),relativetime:r((a,o)=>{let s=new Intl.RelativeTimeFormat(a,{...o});return l=>s.format(l,o.range||"day")}),list:r((a,o)=>{let s=new Intl.ListFormat(a,{...o});return l=>s.format(l)})}}add(e,n){this.formats[e.toLowerCase().trim()]=n}addCached(e,n){this.formats[e.toLowerCase().trim()]=bu(n)}format(e,n,r,a={}){let o=n.split(this.formatSeparator);if(o.length>1&&o[0].indexOf("(")>1&&o[0].indexOf(")")<0&&o.find(l=>l.indexOf(")")>-1)){let l=o.findIndex(c=>c.indexOf(")")>-1);o[0]=[o[0],...o.splice(1,l)].join(this.formatSeparator)}return o.reduce((l,c)=>{let{formatName:p,formatOptions:d}=Lb(c);if(this.formats[p]){let u=l;try{let h=a?.formatParams?.[a.interpolationkey]||{},m=h.locale||h.lng||a.locale||a.lng||r;u=this.formats[p](l,m,{...d,...a,...h})}catch(h){this.logger.warn(h)}return u}else this.logger.warn(`there was no format function for ${p}`);return l},e)}},Db=i((t,e)=>{t.pending[e]!==void 0&&(delete t.pending[e],t.pendingCount--)},"removePending"),ll=class extends Hn{static{i(this,"Connector")}constructor(e,n,r,a={}){super(),this.backend=e,this.store=n,this.services=r,this.languageUtils=r.languageUtils,this.options=a,this.logger=St.create("backendConnector"),this.waitingReads=[],this.maxParallelReads=a.maxParallelReads||10,this.readingCalls=0,this.maxRetries=a.maxRetries>=0?a.maxRetries:5,this.retryTimeout=a.retryTimeout>=1?a.retryTimeout:350,this.state={},this.queue=[],this.backend?.init?.(r,a.backend,a)}queueLoad(e,n,r,a){let o={},s={},l={},c={};return e.forEach(p=>{let d=!0;n.forEach(u=>{let h=`${p}|${u}`;!r.reload&&this.store.hasResourceBundle(p,u)?this.state[h]=2:this.state[h]<0||(this.state[h]===1?s[h]===void 0&&(s[h]=!0):(this.state[h]=1,d=!1,s[h]===void 0&&(s[h]=!0),o[h]===void 0&&(o[h]=!0),c[u]===void 0&&(c[u]=!0)))}),d||(l[p]=!0)}),(Object.keys(o).length||Object.keys(s).length)&&this.queue.push({pending:s,pendingCount:Object.keys(s).length,loaded:{},errors:[],callback:a}),{toLoad:Object.keys(o),pending:Object.keys(s),toLoadLanguages:Object.keys(l),toLoadNamespaces:Object.keys(c)}}loaded(e,n,r){let a=e.split("|"),o=a[0],s=a[1];n&&this.emit("failedLoading",o,s,n),!n&&r&&this.store.addResourceBundle(o,s,r,void 0,void 0,{skipCopy:!0}),this.state[e]=n?-1:2,n&&r&&(this.state[e]=0);let l={};this.queue.forEach(c=>{Pb(c.loaded,[o],s),Db(c,e),n&&c.errors.push(n),c.pendingCount===0&&!c.done&&(Object.keys(c.loaded).forEach(p=>{l[p]||(l[p]={});let d=c.loaded[p];d.length&&d.forEach(u=>{l[p][u]===void 0&&(l[p][u]=!0)})}),c.done=!0,c.errors.length?c.callback(c.errors):c.callback())}),this.emit("loaded",l),this.queue=this.queue.filter(c=>!c.done)}read(e,n,r,a=0,o=this.retryTimeout,s){if(!e.length)return s(null,{});if(this.readingCalls>=this.maxParallelReads){this.waitingReads.push({lng:e,ns:n,fcName:r,tried:a,wait:o,callback:s});return}this.readingCalls++;let l=i((p,d)=>{if(this.readingCalls--,this.waitingReads.length>0){let u=this.waitingReads.shift();this.read(u.lng,u.ns,u.fcName,u.tried,u.wait,u.callback)}if(p&&d&&a<this.maxRetries){setTimeout(()=>{this.read.call(this,e,n,r,a+1,o*2,s)},o);return}s(p,d)},"resolver"),c=this.backend[r].bind(this.backend);if(c.length===2){try{let p=c(e,n);p&&typeof p.then=="function"?p.then(d=>l(null,d)).catch(l):l(null,p)}catch(p){l(p)}return}return c(e,n,l)}prepareLoading(e,n,r={},a){if(!this.backend)return this.logger.warn("No backend was added via i18next.use. Will not load resources."),a&&a();D(e)&&(e=this.languageUtils.toResolveHierarchy(e)),D(n)&&(n=[n]);let o=this.queueLoad(e,n,r,a);if(!o.toLoad.length)return o.pending.length||a(),null;o.toLoad.forEach(s=>{this.loadOne(s)})}load(e,n,r){this.prepareLoading(e,n,{},r)}reload(e,n,r){this.prepareLoading(e,n,{reload:!0},r)}loadOne(e,n=""){let r=e.split("|"),a=r[0],o=r[1];this.read(a,o,"read",void 0,void 0,(s,l)=>{s&&this.logger.warn(`${n}loading namespace ${o} for language ${a} failed`,s),!s&&l&&this.logger.log(`${n}loaded namespace ${o} for language ${a}`,l),this.loaded(e,s,l)})}saveMissing(e,n,r,a,o,s={},l=()=>{}){if(this.services?.utils?.hasLoadedNamespace&&!this.services?.utils?.hasLoadedNamespace(n)){this.logger.warn(`did not save key "${r}" as the namespace "${n}" was not yet loaded`,"This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!");return}if(!(r==null||r==="")){if(this.backend?.create){let c={...s,isUpdate:o},p=this.backend.create.bind(this.backend);if(p.length<6)try{let d;p.length===5?d=p(e,n,r,a,c):d=p(e,n,r,a),d&&typeof d.then=="function"?d.then(u=>l(null,u)).catch(l):l(null,d)}catch(d){l(d)}else p(e,n,r,a,l,c)}!e||!e[0]||this.store.addResource(e[0],n,r,a)}}},Au=i(()=>({debug:!1,initAsync:!0,ns:["translation"],defaultNS:["translation"],fallbackLng:["dev"],fallbackNS:!1,supportedLngs:!1,nonExplicitSupportedLngs:!1,load:"all",preload:!1,simplifyPluralSuffix:!0,keySeparator:".",nsSeparator:":",pluralSeparator:"_",contextSeparator:"_",partialBundledLanguages:!1,saveMissing:!1,updateMissing:!1,saveMissingTo:"fallback",saveMissingPlurals:!0,missingKeyHandler:!1,missingInterpolationHandler:!1,postProcess:!1,postProcessPassResolved:!1,returnNull:!1,returnEmptyString:!0,returnObjects:!1,joinArrays:!1,returnedObjectHandler:!1,parseMissingKeyHandler:!1,appendNamespaceToMissingKey:!1,appendNamespaceToCIMode:!1,overloadTranslationOptionHandler:i(t=>{let e={};if(typeof t[1]=="object"&&(e=t[1]),D(t[1])&&(e.defaultValue=t[1]),D(t[2])&&(e.tDescription=t[2]),typeof t[2]=="object"||typeof t[3]=="object"){let n=t[3]||t[2];Object.keys(n).forEach(r=>{e[r]=n[r]})}return e},"overloadTranslationOptionHandler"),interpolation:{escapeValue:!0,format:i(t=>t,"format"),prefix:"{{",suffix:"}}",formatSeparator:",",unescapePrefix:"-",nestingPrefix:"$t(",nestingSuffix:")",nestingOptionsSeparator:",",maxReplaces:1e3,skipOnVariables:!0},cacheInBuiltFormats:!0}),"get"),wu=i(t=>(D(t.ns)&&(t.ns=[t.ns]),D(t.fallbackLng)&&(t.fallbackLng=[t.fallbackLng]),D(t.fallbackNS)&&(t.fallbackNS=[t.fallbackNS]),t.supportedLngs?.indexOf?.("cimode")<0&&(t.supportedLngs=t.supportedLngs.concat(["cimode"])),typeof t.initImmediate=="boolean"&&(t.initAsync=t.initImmediate),t),"transformOptions"),qr=i(()=>{},"noop"),Bb=i(t=>{Object.getOwnPropertyNames(Object.getPrototypeOf(t)).forEach(n=>{typeof t[n]=="function"&&(t[n]=t[n].bind(t))})},"bindMemberFunctions"),cl=class t extends Hn{static{i(this,"I18n")}constructor(e={},n){if(super(),this.options=wu(e),this.services={},this.logger=St,this.modules={external:[]},Bb(this),n&&!this.isInitialized&&!e.isClone){if(!this.options.initAsync)return this.init(e,n),this;setTimeout(()=>{this.init(e,n)},0)}}init(e={},n){this.isInitializing=!0,typeof e=="function"&&(n=e,e={}),e.defaultNS==null&&e.ns&&(D(e.ns)?e.defaultNS=e.ns:e.ns.indexOf("translation")<0&&(e.defaultNS=e.ns[0]));let r=Au();this.options={...r,...this.options,...wu(e)},this.options.interpolation={...r.interpolation,...this.options.interpolation},e.keySeparator!==void 0&&(this.options.userDefinedKeySeparator=e.keySeparator),e.nsSeparator!==void 0&&(this.options.userDefinedNsSeparator=e.nsSeparator),typeof this.options.overloadTranslationOptionHandler!="function"&&(this.options.overloadTranslationOptionHandler=r.overloadTranslationOptionHandler);let a=i(p=>p?typeof p=="function"?new p:p:null,"createClassOnDemand");if(!this.options.isClone){this.modules.logger?St.init(a(this.modules.logger),this.options):St.init(null,this.options);let p;this.modules.formatter?p=this.modules.formatter:p=sl;let d=new Hr(this.options);this.store=new Wr(this.options.resources,this.options);let u=this.services;u.logger=St,u.resourceStore=this.store,u.languageUtils=d,u.pluralResolver=new ol(d,{prepend:this.options.pluralSeparator,simplifyPluralSuffix:this.options.simplifyPluralSuffix}),this.options.interpolation.format&&this.options.interpolation.format!==r.interpolation.format&&this.logger.deprecate("init: you are still using the legacy format function, please use the new approach: https://www.i18next.com/translation-function/formatting"),p&&(!this.options.interpolation.format||this.options.interpolation.format===r.interpolation.format)&&(u.formatter=a(p),u.formatter.init&&u.formatter.init(u,this.options),this.options.interpolation.format=u.formatter.format.bind(u.formatter)),u.interpolator=new Kr(this.options),u.utils={hasLoadedNamespace:this.hasLoadedNamespace.bind(this)},u.backendConnector=new ll(a(this.modules.backend),u.resourceStore,u,this.options),u.backendConnector.on("*",(m,...v)=>{this.emit(m,...v)}),this.modules.languageDetector&&(u.languageDetector=a(this.modules.languageDetector),u.languageDetector.init&&u.languageDetector.init(u,this.options.detection,this.options)),this.modules.i18nFormat&&(u.i18nFormat=a(this.modules.i18nFormat),u.i18nFormat.init&&u.i18nFormat.init(this)),this.translator=new Jr(this.services,this.options),this.translator.on("*",(m,...v)=>{this.emit(m,...v)}),this.modules.external.forEach(m=>{m.init&&m.init(this)})}if(this.format=this.options.interpolation.format,n||(n=qr),this.options.fallbackLng&&!this.services.languageDetector&&!this.options.lng){let p=this.services.languageUtils.getFallbackCodes(this.options.fallbackLng);p.length>0&&p[0]!=="dev"&&(this.options.lng=p[0])}!this.services.languageDetector&&!this.options.lng&&this.logger.warn("init: no languageDetector is used and no lng is defined"),["getResource","hasResourceBundle","getResourceBundle","getDataByLanguage"].forEach(p=>{this[p]=(...d)=>this.store[p](...d)}),["addResource","addResources","addResourceBundle","removeResourceBundle"].forEach(p=>{this[p]=(...d)=>(this.store[p](...d),this)});let l=Fa(),c=i(()=>{let p=i((d,u)=>{this.isInitializing=!1,this.isInitialized&&!this.initializedStoreOnce&&this.logger.warn("init: i18next is already initialized. You should call init just once!"),this.isInitialized=!0,this.options.isClone||this.logger.log("initialized",this.options),this.emit("initialized",this.options),l.resolve(u),n(d,u)},"finish");if(this.languages&&!this.isInitialized)return p(null,this.t.bind(this));this.changeLanguage(this.options.lng,p)},"load");return this.options.resources||!this.options.initAsync?c():setTimeout(c,0),l}loadResources(e,n=qr){let r=n,a=D(e)?e:this.language;if(typeof e=="function"&&(r=e),!this.options.resources||this.options.partialBundledLanguages){if(a?.toLowerCase()==="cimode"&&(!this.options.preload||this.options.preload.length===0))return r();let o=[],s=i(l=>{if(!l||l==="cimode")return;this.services.languageUtils.toResolveHierarchy(l).forEach(p=>{p!=="cimode"&&o.indexOf(p)<0&&o.push(p)})},"append");a?s(a):this.services.languageUtils.getFallbackCodes(this.options.fallbackLng).forEach(c=>s(c)),this.options.preload?.forEach?.(l=>s(l)),this.services.backendConnector.load(o,this.options.ns,l=>{!l&&!this.resolvedLanguage&&this.language&&this.setResolvedLanguage(this.language),r(l)})}else r(null)}reloadResources(e,n,r){let a=Fa();return typeof e=="function"&&(r=e,e=void 0),typeof n=="function"&&(r=n,n=void 0),e||(e=this.languages),n||(n=this.options.ns),r||(r=qr),this.services.backendConnector.reload(e,n,o=>{a.resolve(),r(o)}),a}use(e){if(!e)throw new Error("You are passing an undefined module! Please check the object you are passing to i18next.use()");if(!e.type)throw new Error("You are passing a wrong module! Please check the object you are passing to i18next.use()");return e.type==="backend"&&(this.modules.backend=e),(e.type==="logger"||e.log&&e.warn&&e.error)&&(this.modules.logger=e),e.type==="languageDetector"&&(this.modules.languageDetector=e),e.type==="i18nFormat"&&(this.modules.i18nFormat=e),e.type==="postProcessor"&&Cu.addPostProcessor(e),e.type==="formatter"&&(this.modules.formatter=e),e.type==="3rdParty"&&this.modules.external.push(e),this}setResolvedLanguage(e){if(!(!e||!this.languages)&&!(["cimode","dev"].indexOf(e)>-1)){for(let n=0;n<this.languages.length;n++){let r=this.languages[n];if(!(["cimode","dev"].indexOf(r)>-1)&&this.store.hasLanguageSomeTranslations(r)){this.resolvedLanguage=r;break}}!this.resolvedLanguage&&this.languages.indexOf(e)<0&&this.store.hasLanguageSomeTranslations(e)&&(this.resolvedLanguage=e,this.languages.unshift(e))}}changeLanguage(e,n){this.isLanguageChangingTo=e;let r=Fa();this.emit("languageChanging",e);let a=i(l=>{this.language=l,this.languages=this.services.languageUtils.toResolveHierarchy(l),this.resolvedLanguage=void 0,this.setResolvedLanguage(l)},"setLngProps"),o=i((l,c)=>{c?this.isLanguageChangingTo===e&&(a(c),this.translator.changeLanguage(c),this.isLanguageChangingTo=void 0,this.emit("languageChanged",c),this.logger.log("languageChanged",c)):this.isLanguageChangingTo=void 0,r.resolve((...p)=>this.t(...p)),n&&n(l,(...p)=>this.t(...p))},"done"),s=i(l=>{!e&&!l&&this.services.languageDetector&&(l=[]);let c=D(l)?l:l&&l[0],p=this.store.hasLanguageSomeTranslations(c)?c:this.services.languageUtils.getBestMatchFromCodes(D(l)?[l]:l);p&&(this.language||a(p),this.translator.language||this.translator.changeLanguage(p),this.services.languageDetector?.cacheUserLanguage?.(p)),this.loadResources(p,d=>{o(d,p)})},"setLng");return!e&&this.services.languageDetector&&!this.services.languageDetector.async?s(this.services.languageDetector.detect()):!e&&this.services.languageDetector&&this.services.languageDetector.async?this.services.languageDetector.detect.length===0?this.services.languageDetector.detect().then(s):this.services.languageDetector.detect(s):s(e),r}getFixedT(e,n,r){let a=i((o,s,...l)=>{let c;typeof s!="object"?c=this.options.overloadTranslationOptionHandler([o,s].concat(l)):c={...s},c.lng=c.lng||a.lng,c.lngs=c.lngs||a.lngs,c.ns=c.ns||a.ns,c.keyPrefix!==""&&(c.keyPrefix=c.keyPrefix||r||a.keyPrefix);let p=this.options.keySeparator||".",d;return c.keyPrefix&&Array.isArray(o)?d=o.map(u=>(typeof u=="function"&&(u=il(u,{...this.options,...s})),`${c.keyPrefix}${p}${u}`)):(typeof o=="function"&&(o=il(o,{...this.options,...s})),d=c.keyPrefix?`${c.keyPrefix}${p}${o}`:o),this.t(d,c)},"fixedT");return D(e)?a.lng=e:a.lngs=e,a.ns=n,a.keyPrefix=r,a}t(...e){return this.translator?.translate(...e)}exists(...e){return this.translator?.exists(...e)}setDefaultNamespace(e){this.options.defaultNS=e}hasLoadedNamespace(e,n={}){if(!this.isInitialized)return this.logger.warn("hasLoadedNamespace: i18next was not initialized",this.languages),!1;if(!this.languages||!this.languages.length)return this.logger.warn("hasLoadedNamespace: i18n.languages were undefined or empty",this.languages),!1;let r=n.lng||this.resolvedLanguage||this.languages[0],a=this.options?this.options.fallbackLng:!1,o=this.languages[this.languages.length-1];if(r.toLowerCase()==="cimode")return!0;let s=i((l,c)=>{let p=this.services.backendConnector.state[`${l}|${c}`];return p===-1||p===0||p===2},"loadNotPending");if(n.precheck){let l=n.precheck(this,s);if(l!==void 0)return l}return!!(this.hasResourceBundle(r,e)||!this.services.backendConnector.backend||this.options.resources&&!this.options.partialBundledLanguages||s(r,e)&&(!a||s(o,e)))}loadNamespaces(e,n){let r=Fa();return this.options.ns?(D(e)&&(e=[e]),e.forEach(a=>{this.options.ns.indexOf(a)<0&&this.options.ns.push(a)}),this.loadResources(a=>{r.resolve(),n&&n(a)}),r):(n&&n(),Promise.resolve())}loadLanguages(e,n){let r=Fa();D(e)&&(e=[e]);let a=this.options.preload||[],o=e.filter(s=>a.indexOf(s)<0&&this.services.languageUtils.isSupportedCode(s));return o.length?(this.options.preload=a.concat(o),this.loadResources(s=>{r.resolve(),n&&n(s)}),r):(n&&n(),Promise.resolve())}dir(e){if(e||(e=this.resolvedLanguage||(this.languages?.length>0?this.languages[0]:this.language)),!e)return"rtl";try{let a=new Intl.Locale(e);if(a&&a.getTextInfo){let o=a.getTextInfo();if(o&&o.direction)return o.direction}}catch{}let n=["ar","shu","sqr","ssh","xaa","yhd","yud","aao","abh","abv","acm","acq","acw","acx","acy","adf","ads","aeb","aec","afb","ajp","apc","apd","arb","arq","ars","ary","arz","auz","avl","ayh","ayl","ayn","ayp","bbz","pga","he","iw","ps","pbt","pbu","pst","prp","prd","ug","ur","ydd","yds","yih","ji","yi","hbo","men","xmn","fa","jpr","peo","pes","prs","dv","sam","ckb"],r=this.services?.languageUtils||new Hr(Au());return e.toLowerCase().indexOf("-latn")>1?"ltr":n.indexOf(r.getLanguagePartFromCode(e))>-1||e.toLowerCase().indexOf("-arab")>1?"rtl":"ltr"}static createInstance(e={},n){let r=new t(e,n);return r.createInstance=t.createInstance,r}cloneInstance(e={},n=qr){let r=e.forkResourceStore;r&&delete e.forkResourceStore;let a={...this.options,...e,isClone:!0},o=new t(a);if((e.debug!==void 0||e.prefix!==void 0)&&(o.logger=o.logger.clone(e)),["store","services","language"].forEach(l=>{o[l]=this[l]}),o.services={...this.services},o.services.utils={hasLoadedNamespace:o.hasLoadedNamespace.bind(o)},r){let l=Object.keys(this.store.data).reduce((c,p)=>(c[p]={...this.store.data[p]},c[p]=Object.keys(c[p]).reduce((d,u)=>(d[u]={...c[p][u]},d),c[p]),c),{});o.store=new Wr(l,a),o.services.resourceStore=o.store}return e.interpolation&&(o.services.interpolator=new Kr(a)),o.translator=new Jr(o.services,a),o.translator.on("*",(l,...c)=>{o.emit(l,...c)}),o.init(a,n),o.translator.options=a,o.translator.backendConnector.services.utils={hasLoadedNamespace:o.hasLoadedNamespace.bind(o)},o}toJSON(){return{options:this.options,store:this.store,language:this.language,languages:this.languages,resolvedLanguage:this.resolvedLanguage}}},Se=cl.createInstance(),UM=Se.createInstance,VM=Se.dir,Su=Se.init,_M=Se.loadResources,$M=Se.reloadResources,qM=Se.use,GM=Se.changeLanguage,WM=Se.getFixedT,jt=Se.t,JM=Se.exists,HM=Se.setDefaultNamespace,KM=Se.hasLoadedNamespace,YM=Se.loadNamespaces,QM=Se.loadLanguages;var Eu=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Yr={obsidianDevUtils:{asyncWithNotice:{milliseconds:"milliseconds...",operation:"Operation",runningFor:"Running for",terminateOperation:"You can terminate the operation by clicking the button below, but be aware it might leave the vault in an inconsistent state.",timedOut:"The operation timed out after {{duration}} milliseconds."},buttons:{cancel:"Cancel",ok:"OK"},callout:{loadContent:"Load content for callout"},dataview:{itemsPerPage:"Items per page:",jumpToPage:"Jump to page:",pageHeader:"Page {{pageNumber}} of {{totalPages}}, Total items: {{totalItems}}"},metadataCache:{getBacklinksForFilePath:"Get backlinks for {{filePath}}"},notices:{attachmentIsStillUsed:"Attachment {{attachmentPath}} is still used by other notes. It will not be deleted.",unhandledError:"An unhandled error occurred. Please check the console for more information."},queue:{flushQueue:"Flush queue"},renameDeleteHandler:{handleDelete:"Handle delete: {{filePath}}",handleOrphanedRenames:"Handle orphaned renames",handleRename:"Handle rename: {{oldPath}} -> {{newPath}}",updatedLinks:"Updated {{linksCount}} links in {{filesCount}} files."},vault:{processFile:"Process file {{filePath}}"}}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var pl="en",Ub={en:Yr},Qr=Ub;i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Pu="translation",dl=!1;async function ul(t,e=!0){dl||(dl=!0,await Su({fallbackLng:pl,initAsync:e,interpolation:{escapeValue:!1},lng:(0,Eu.getLanguage)(),resources:Object.fromEntries(Object.entries(t).map(([n,r])=>[n,{[Pu]:r}])),returnEmptyString:!1,returnNull:!1}),Se.addResourceBundle(pl,Pu,Yr,!0,!1))}i(ul,"initI18N");function Vb(t,e){return dl||(console.warn("I18N was not initialized, initializing default obsidian-dev-utils translations"),J(()=>ul(Qr,!1))),jt(t,e)}i(Vb,"tImpl");var g=Vb;i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();async function Zr(t){return vp({...t,onTimeout:zu})}i(Zr,"retryWithTimeoutNotice");async function Iu(t){return Ko({...t,onTimeout:zu})}i(Iu,"runWithTimeoutNotice");function zu(t){let e=Math.trunc(performance.now()-t.duration),n,r,a=1e3,o=new Fu.Notice(createFragment(l=>{t.operationName&&(l.appendText(g(p=>p.obsidianDevUtils.asyncWithNotice.operation)),l.appendText(": "),l.appendText(t.operationName),l.createEl("br")),l.appendText(g(p=>p.obsidianDevUtils.asyncWithNotice.timedOut,{duration:t.duration})),l.createEl("br"),l.appendText(g(p=>p.obsidianDevUtils.asyncWithNotice.runningFor)),l.appendText(" "),n=l.createSpan(),l.appendText(" "),l.appendText(g(p=>p.obsidianDevUtils.asyncWithNotice.milliseconds)),l.createEl("br"),l.appendText(g(p=>p.obsidianDevUtils.asyncWithNotice.terminateOperation)),l.createEl("br"),l.createEl("button",{text:g(p=>p.obsidianDevUtils.buttons.cancel)}).addEventListener("click",()=>{t.terminateOperation(),clearInterval(r),o.hide()})}));s(),r=window.setInterval(s,a),t.onOperationCompleted(()=>{clearInterval(r),o.hide()});function s(){let l=Math.max(t.duration,Math.round((performance.now()-e)/a)*a);n.textContent=String(l)}i(s,"updateRunningTime")}i(zu,"onTimeoutNotice");var Ma=require("@codemirror/state"),ml=require("@codemirror/view");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Mu=new WeakMap;function hl(t){let e=Ru(t);t.cm.dispatch({effects:e.reconfigure([Ma.EditorState.readOnly.of(!0),ml.EditorView.editable.of(!1)])})}i(hl,"lockEditor");function Nu(t){let e=Ru(t);t.cm.dispatch({effects:e.reconfigure([Ma.EditorState.readOnly.of(!1),ml.EditorView.editable.of(!0)])})}i(Nu,"unlockEditor");function Ru(t){let e=Mu.get(t);return e||(e=new Ma.Compartment,Mu.set(t,e)),e}i(Ru,"ensureCompartment");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();async function Xr(t,e,n){let r=ue(t,e);if(r.path===n)return n;let a=Ge(n);await ei(t,a);let o=ju(t,n);try{await t.vault.copy(r,o)}catch(s){if(!await t.vault.exists(o))throw s}return o}i(Xr,"copySafe");async function ei(t,e){if(await t.vault.adapter.exists(e))return!1;try{return await t.vault.createFolder(e),!0}catch(n){if(!await t.vault.exists(e))throw n;return!0}}i(ei,"createFolderSafe");function ju(t,e){let n=Ae(e);return t.vault.getAvailablePath(le(oe(e),se(e,n)),n.slice(1))}i(ju,"getAvailablePath");function gl(t,e,n){let r=ee(t,e);if(t.vault.adapter.insensitive){let a=oe(n),o=se(n),s;for(;s=ut(t,a,!0),!s;)o=le(se(a),o),a=oe(a);n=le(s.getParentPrefix(),o)}return r.toLowerCase()===n.toLowerCase()?n:ju(t,n)}i(gl,"getSafeRenamePath");async function ti(t,e){let n=await fl(t,ee(t,e));return n.files.length===0&&n.folders.length===0}i(ti,"isEmptyFolder");async function fl(t,e){let n=ee(t,e),r={files:[],folders:[]};if((await t.vault.adapter.stat(n))?.type!=="folder")return r;try{return await t.vault.adapter.list(n)}catch(a){if(await t.vault.exists(n))throw a;return r}}i(fl,"listSafe");async function Lu(t,e,n,r={}){let o={...{shouldFailOnMissingFile:!0,shouldLockEditorWhileProcessing:!0,timeoutInMilliseconds:500},...r},s=new AbortController;o.abortSignal=ct(o.abortSignal,s.signal);let l=ee(t,e),c=null;if(o.shouldLockEditorWhileProcessing){for(let p of t.workspace.getLeavesOfType(nn.Markdown))p.view instanceof Na.MarkdownView&&p.view.file?.path===l&&hl(p.view.editor);c=t.workspace.on("active-leaf-change",p=>{p?.view instanceof Na.MarkdownView&&p.view.file?.path===l&&hl(p.view.editor)})}try{await Zr({async operationFn(p){p.throwIfAborted();let d=await kl(t,e);if(p.throwIfAborted(),d===null)return v();let u=await en(n,p,d);if(p.throwIfAborted(),u===null)return!1;let h=!0;if(!await Ou(t,e,async A=>{p.throwIfAborted(),await t.vault.process(A,b=>(p.throwIfAborted(),b!==d?(ne("Vault:process")("Content has changed since it was read. Retrying...",{actualContent:b,expectedContent:d,path:A.path}),h=!1,b):u)),p.throwIfAborted()}))return v();return h;function v(){if(o.shouldFailOnMissingFile)throw new Error(`File '${l}' not found`);return!0}},operationName:g(p=>p.obsidianDevUtils.vault.processFile,{filePath:l}),retryOptions:o})}finally{c?.e.offref(c);for(let p of t.workspace.getLeavesOfType(nn.Markdown))p.view instanceof Na.MarkdownView&&p.view.file?.path===l&&Nu(p.view.editor)}}i(Lu,"process");async function kl(t,e){let n=null;return await Ou(t,e,async r=>{await ai(t,r),n=await t.vault.read(r)}),n}i(kl,"readSafe");async function ni(t,e,n){let r=ue(t,e,!1,!0),a=gl(t,e,n);if(r.path.toLowerCase()===a.toLowerCase())return r.path!==n&&await t.vault.rename(r,a),a;let o=Ge(a);await ei(t,o);try{await t.vault.rename(r,a)}catch(s){if(!await t.vault.exists(a)||await t.vault.exists(r.path))throw s}return a}i(ni,"renameSafe");async function ai(t,e){if(!xt(t,e))return;let n=ee(t,e);for(let r of t.workspace.getLeavesOfType(nn.Markdown))r.view instanceof Na.MarkdownView&&r.view.file?.path===n&&r.view.dirty&&await r.view.save()}i(ai,"saveNote");async function Ou(t,e,n){let r=ee(t,e),a=pe(t,r);if(!a||a.deleted)return!1;try{return await n(a),!0}catch(o){if(a=pe(t,r),!a||a.deleted)return!1;throw o}}i(Ou,"invokeFileActionSafe");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();async function oi(t,e,n,r,a=!0){t.throwIfAborted();let o=await en(r,t,e);if(t.throwIfAborted(),o===null)return null;let{frontmatter:s,hasFrontmatterError:l}=Kb(e,n);if(!Zb(o,e,s,n))return a?null:e;o=Qb(o);let{frontmatterChanged:c,newContent:p}=Wb(o,e,l,n);return await Jb(t,s,c,n),t.throwIfAborted(),Hb(p,s,c)}i(oi,"applyContentChanges");async function Du(t,e,n,r={},a=!0){await Lu(t,e,async(o,s)=>Nt(t,e)?await Gb(o,s,ee(t,e),n,a):await oi(o,s,ee(t,e),n,a),r)}i(Du,"applyFileChanges");function Ra(t){return Xs(t.reference)}i(Ra,"isCanvasChange");function _b(t){return Ra(t)&&t.reference.type==="file"}i(_b,"isCanvasFileNodeChange");function $b(t){return Ra(t)&&t.reference.type==="text"}i($b,"isCanvasTextNodeChange");function un(t){return We(t.reference)}i(un,"isContentChange");function ri(t){return Je(t.reference)}i(ri,"isFrontmatterChange");function ii(t){return Ve(t.reference)}i(ii,"isFrontmatterChangeWithOffsets");function qb(t){return ii(t)?t:{...t,reference:_r(t.reference)}}i(qb,"toFrontmatterChangeWithOffsets");async function Gb(t,e,n,r,a=!0){let o=await en(r,t,e);if(t.throwIfAborted(),o===null)return null;let s=Yb(e),l=new Map;for(let c of o){if(!Ra(c)){let d="Only canvas changes are supported for canvas files";throw console.error(d,{change:c,path:n}),new Error(d)}let p=s.nodes[c.reference.nodeIndex];if(!p){let d="Node not found";throw console.error(d,{nodeIndex:c.reference.nodeIndex,path:n}),new Error(d)}if(_b(c)){if(p.file!==c.oldContent)return ne("FileChange:applyCanvasChanges")("Content mismatch",{actualContent:p.file,expectedContent:c.oldContent,nodeIndex:c.reference.nodeIndex,path:n,type:"file"}),null;p.file=c.newContent}else if($b(c)){let d=l.get(c.reference.nodeIndex);d||(d=[],l.set(c.reference.nodeIndex,d)),d.push(c)}}for(let[c,p]of l.entries()){let d=s.nodes[c];if(!d){let h="Node not found";throw console.error(h,{nodeIndex:c,path:n}),new Error(h)}if(typeof d.text!="string"){let h="Node text is not a string";throw console.error(h,{nodeIndex:c,path:n}),new Error(h)}let u=p.map(h=>$r(h.reference.originalReference,h.newContent));d.text=await oi(t,d.text,`${n}.node${String(c)}.VIRTUAL_FILE.md`,u,a)}return JSON.stringify(s,null," ")}i(Gb,"applyCanvasChanges");function Wb(t,e,n,r){let a="",o=0,s={newContent:"",oldContent:"",reference:{link:"",original:"",position:{end:{col:0,line:0,offset:0},start:{col:0,line:0,offset:0}}}},l=new Map;for(let c of t)if(un(c))if(o<=c.reference.position.start.offset)a+=e.slice(o,c.reference.position.start.offset),a+=c.newContent,o=c.reference.position.end.offset,s=c;else{let p=c.reference.position.start.offset-s.reference.position.start.offset,d=c.reference.position.end.offset-s.reference.position.start.offset;if(s.newContent.slice(p,d)!==c.oldContent){let h="Overlapping changes";throw console.error(h,{change:c,lastContentChange:s}),new Error(h)}a=a.slice(0,a.length-s.newContent.length)+s.newContent.slice(0,p)+c.newContent+s.newContent.slice(d)}else if(ri(c))if(n)console.error(`Cannot apply frontmatter change in ${r}, because frontmatter parsing failed`,{change:c});else{let p=l.get(c.reference.key);p||(p=[],l.set(c.reference.key,p)),p.push(qb(c))}return a+=e.slice(o),{frontmatterChanged:l,newContent:a}}i(Wb,"applyContentChangesToText");async function Jb(t,e,n,r){for(let[a,o]of n.entries()){let s=Bt(e,a);if(typeof s!="string")return;let l=o.map(p=>({newContent:p.newContent,oldContent:p.oldContent,reference:{link:"",original:"",position:{end:{col:p.reference.endOffset,line:0,offset:p.reference.endOffset},start:{col:p.reference.startOffset,line:0,offset:p.reference.startOffset}}}})),c=await oi(t,s,`${r}.frontmatter.${a}.VIRTUAL_FILE.md`,l);if(c===null)return;gp(e,a,c)}}i(Jb,"applyFrontmatterChangesWithOffsets");function Hb(t,e,n){return n.size>0?cu(t,e):t}i(Hb,"buildFinalContent");function Kb(t,e){let n={},r=!1;try{n=Vr(t)}catch(a){dt(new Error(`Frontmatter parsing failed in ${e}`,{cause:a})),r=!0}return{frontmatter:n,hasFrontmatterError:r}}i(Kb,"parseFrontmatterSafely");function Yb(t){let e;try{e=JSON.parse(t)}catch{e=null}return(e===null||typeof e!="object")&&(e={}),e}i(Yb,"parseJsonSafe");function Qb(t){return t.sort((e,n)=>un(e)&&un(n)?e.reference.position.start.offset-n.reference.position.start.offset:ii(e)&&ii(n)?e.reference.key.localeCompare(n.reference.key)||e.reference.startOffset-n.reference.startOffset:ri(e)&&ri(n)?e.reference.key.localeCompare(n.reference.key):un(e)?-1:1),t.filter((e,n)=>e.oldContent===e.newContent?!1:n===0?!0:!Qe(e,t[n-1]))}i(Qb,"sortAndFilterChanges");function Zb(t,e,n,r){let a=ne("FileChange:validateChanges");for(let o of t)if(un(o)){let s=o.reference.position.start.offset,l=o.reference.position.end.offset,c=e.slice(s,l);if(c!==o.oldContent)return a("Content mismatch",{actualContent:c,endOffset:l,expectedContent:o.oldContent,path:r,startOffset:s}),!1}else if(ii(o)){let s=Bt(n,o.reference.key);if(typeof s!="string")return a("Property value is not a string",{frontmatterKey:o.reference.key,path:r,propertyValue:s}),!1;let l=s.slice(o.reference.startOffset,o.reference.endOffset);if(l!==o.oldContent)return a("Content mismatch",{actualContent:l,expectedContent:o.oldContent,frontmatterKey:o.reference.key,path:r,startOffset:o.reference.startOffset}),!1}else if(ri(o)){let s=Bt(n,o.reference.key);if(s!==o.oldContent)return a("Content mismatch",{actualContent:s,expectedContent:o.oldContent,frontmatterKey:o.reference.key,path:r}),!1}return!0}i(Zb,"validateChanges");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();async function Bu(t){await new Promise(e=>{t.metadataCache.onCleanCache(e)})}i(Bu,"ensureMetadataCacheReady");function tt(t){let e=[];return t.links&&e.push(...t.links),t.embeds&&e.push(...t.embeds),t.frontmatterLinks&&e.push(...t.frontmatterLinks),du(e),e=e.filter((n,r)=>{if(r===0)return!0;let a=e[r-1];if(!a)return!0;if(We(n)&&We(a))return n.position.start.offset!==a.position.start.offset;if(Je(n)&&Je(a)){let o=Ve(n)?n.startOffset:0,s=Ve(a)?a.startOffset:0;return n.key!==a.key||Ve(n)!==Ve(a)||o!==s}return!0}),e}i(tt,"getAllLinks");function vl(t,e){let n=ue(t,e,!0);return ja(t,[n],()=>t.metadataCache.getBacklinksForFile(n))}i(vl,"getBacklinksForFileOrPath");async function nt(t,e,n={}){let r=t.metadataCache.getBacklinksForFile.safe;if(r)return r(e);let a=new bp;return await Zr({async operationFn(o){o.throwIfAborted();let s=ue(t,e);await Bu(t),o.throwIfAborted(),a=vl(t,s);for(let l of a.keys()){o.throwIfAborted();let c=pe(t,l);if(!c)return!1;await ai(t,c),o.throwIfAborted();let p=await kl(t,c);if(o.throwIfAborted(),!p)return!1;let d=Vr(p),u=a.get(l);if(!u)return!1;for(let h of u){let m;if(We(h))m=p.slice(h.position.start.offset,h.position.end.offset);else if(Je(h)){let v=Bt(d,h.key);if(typeof v!="string")return!1;let A=_r(h);m=v.slice(A.startOffset,A.endOffset)}else return!0;if(m!==h.original)return!1}}return!0},operationName:g(o=>o.obsidianDevUtils.metadataCache.getBacklinksForFilePath,{filePath:ee(t,e)}),retryOptions:n}),a}i(nt,"getBacklinksForFileSafe");async function Lt(t,e){let n=pe(t,e);try{if(!n)return null;if(n.deleted)return t.metadataCache.getFileCache(n);await ai(t,n);let r=t.metadataCache.fileCache[n.path];return r&&r.mtime===n.stat.mtime&&r.size===n.stat.size&&t.metadataCache.metadataCache[r.hash]||(await t.metadataCache.computeFileMetadataAsync(n),await Bu(t)),t.metadataCache.getFileCache(n)}catch(r){if(!n||n.deleted)return null;throw r}}i(Lt,"getCacheSafe");function Uu(t,e,n){let r=ue(t,e,!0);if(!r.deleted)throw new Error("File is existing");t.metadataCache.fileCache[r.path]={hash:r.path,mtime:0,size:0},t.metadataCache.metadataCache[r.path]=n}i(Uu,"registerFileCacheForNonExistingFile");function Vu(t,e){let n=Gu(t);for(let r of e)for(;r.deleted;){let a=n.get(r.path)??0;a++,n.set(r.path,a),t.vault.fileMap[r.path]=r,ce(r)&&t.metadataCache.uniqueFileLookup.add(r.name.toLowerCase(),r),r=Ln(t,Ge(r.path),!0)}}i(Vu,"registerFiles");function ja(t,e,n){try{return Vu(t,e),n()}finally{qu(t,e)}}i(ja,"tempRegisterFilesAndRun");async function _u(t,e,n){try{return Vu(t,e),await n()}finally{qu(t,e)}}i(_u,"tempRegisterFilesAndRunAsync");function $u(t,e){let n=ue(t,e,!0);if(!n.deleted)throw new Error("File is existing");delete t.metadataCache.fileCache[n.path],delete t.metadataCache.metadataCache[n.path]}i($u,"unregisterFileCacheForNonExistingFile");function qu(t,e){let n=Gu(t);for(let r of e)for(;r.deleted;){let a=n.get(r.path)??1;a--,n.set(r.path,a),a===0&&(n.delete(r.path),delete t.vault.fileMap[r.path],ce(r)&&t.metadataCache.uniqueFileLookup.remove(r.name.toLowerCase(),r)),r=Ln(t,Ge(r.path),!0)}}i(qu,"unregisterFiles");function Gu(t){return Ne(t,"registeredFilesCounts",new Map).value}i(Gu,"getRegisteredFilesCounts");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();function Wu(t){return t.vault.getConfig("newLinkFormat")}i(Wu,"getNewLinkFormat");function yl(t){return!t.vault.getConfig("useMarkdownLinks")}i(yl,"shouldUseWikilinks");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Xb="\\|",eA=/[\\\x00\x08\x0B\x0C\x0E-\x1F ]/g,tA=/[\\[\]<>_*~=`$]/g,Hu=/(?<!\\)\|/g,Ku="|";var Al=(t=>(t.Markdown="Markdown",t.ObsidianSettingsDefault="ObsidianSettingsDefault",t.PreserveExisting="PreserveExisting",t.Wikilink="Wikilink",t))(Al||{});function nA(t){let e=mt(t.app,t.link,t.oldSourcePathOrFile??t.newSourcePathOrFile);return e?hn({app:t.app,link:t.link,linkStyle:t.linkStyle,newSourcePathOrFile:t.newSourcePathOrFile,newTargetPathOrFile:e,oldSourcePathOrFile:t.oldSourcePathOrFile,shouldUpdateFileNameAlias:t.shouldUpdateFileNameAlias}):t.link.original}i(nA,"convertLink");async function mn(t,e,n,r={}){await Du(t,e,async(a,o)=>{let s=await Lt(t,e);a.throwIfAborted();let l=ue(t,e),c=await t.vault.cachedRead(l);return a.throwIfAborted(),o!==c?null:await gA(s,Nt(t,e),n,a)},r)}i(mn,"editLinks");function La(t){return ie(t,eA,({substring:e})=>encodeURIComponent(e))}i(La,"encodeUrl");function aA(t){return ie(t,tA,"\\$&")}i(aA,"escapeAlias");function mt(t,e,n,r=!1){let{linkPath:a}=Yu(e.link),o=ee(t,n),s=t.metadataCache.getFirstLinkpathDest(a,o);if(s)return s;if(!r)return null;if(a.startsWith("/"))return ue(t,a,!0);let l=le(oe(o),`./${a}`);return l.startsWith("../")?null:ue(t,l,!0)}i(mt,"extractLinkFile");function wl(t){let{app:e}=t,n={isEmptyEmbedAliasAllowed:!0},r=kA(e).map(o=>o());t=Object.assign({},n,...r,t);let a=ue(e,t.targetPathOrFile,t.isNonExistingFileAllowed);return ja(e,[a],()=>uA(t))}i(wl,"generateMarkdownLink");function bl(t){let e=t.isEmbed?"!":"";if(t.isWikilink){let l=t.alias?`|${t.alias}`:"";return`${e}[[${t.url}${l}]]`}let n=t.alias??"",a=t.shouldEscapeAlias??!1?aA(n):n,o=t.shouldUseAngleBrackets?`<${t.url}>`:La(t.url),s=t.title?` ${JSON.stringify(t.title)}`:"";return`${e}[${a}](${o}${s})`}i(bl,"generateRawMarkdownLink");function Yn(t){let e=rA(t);return e[0]?.raw===t?e[0]:null}i(Yn,"parseLink");function rA(t){let e=new Set,n="![",r="@[",a="@",s=ie(t,/\[(?<LinkAlias>!\[.*?\]\(.+?\))\]\((?<Link>.+?)\)/g,(m,v,A)=>`[${a.repeat(v.length)}](${A})`),l=ie(s,n,m=>(e.add(m.offset),r)),p=au().use(Vn).use(lu,{aliasDivider:Ku}).parse(l),d=[],u=[];Sa(p,m=>{let v;switch(m.type){case"link":v=bA(m,t);break;case"wikiLink":v=AA(m,t);break;default:return}e.has(v.startOffset-1)&&(v.isEmbed=!0,v.startOffset--,v.raw=`!${v.raw}`),d.push(v)}),d.sort((m,v)=>m.startOffset-v.startOffset);let h=0;for(let m of d)Ju(t,h,m.startOffset-1,u),h=m.endOffset+1;return Ju(t,h,t.length-1,u),d.push(...u),d.sort((m,v)=>m.startOffset-v.startOffset),d}i(rA,"parseLinks");function iA(t){let{app:e,displayText:n,isWikilink:r,newSourcePathOrFile:a,oldSourcePathOrFile:o,oldTargetPath:s,targetPathOrFile:l}=t;if(r===!1)return!1;if(!n)return!0;let c=ue(e,l,!0),p=ee(e,a),d=ee(e,o??a),u=oe(p),h=oe(d),m=new Set;for(let A of[c.path,s]){if(!A)continue;let b=ee(e,A);m.add(b),m.add(se(b)),m.add(jn(u,b)),m.add(jn(h,b))}for(let A of[d,p])m.add(e.metadataCache.fileToLinktext(c,A,!1));let v=ie((0,Kn.normalizePath)(n.split(" > ")[0]??""),/^\.\//g,"").toLowerCase();for(let A of m){if(A.toLowerCase()===v)return!0;let b=oe(A),y=se(A,Ae(A));if(le(b,y).toLowerCase()===v)return!0}return!1}i(iA,"shouldResetAlias");function Yu(t){let e=(0,Kn.parseLinktext)(ka(t));return{linkPath:e.path,subpath:e.subpath}}i(Yu,"splitSubpath");function xl(t){return Yn(t)?.hasAngleBrackets??!1}i(xl,"testAngleBrackets");function Qu(t){return Yn(t)?.isEmbed??!1}i(Qu,"testEmbed");function oA(t){return Yn(t)?.url.startsWith("./")??!1}i(oA,"testLeadingDot");function sA(t){return Yn(t)?.url.startsWith("/")??!1}i(sA,"testLeadingSlash");function Cl(t){return Yn(t)?.isWikilink??!1}i(Cl,"testWikilink");function lA(t){return ie(t,/(?<Backslashes>\\+)(?<SpecialCharacter>[!"#$%&'()*+,-./:;<=>?@[\\\]^_`{|}~])/g,(e,n,r)=>{let o=n.length,s=Math.floor(o/2);return"\\".repeat(s)+r})}i(lA,"unescapeAlias");function hn(t){let{app:e,link:n,linkStyle:r,newSourcePathOrFile:a,newTargetPathOrFile:o,oldSourcePathOrFile:s,oldTargetPathOrFile:l,shouldUpdateFileNameAlias:c}=t;if(!o)return n.original;let p=ue(e,o,!0),d=ee(e,s??a),u=ee(e,l??o),h=em(e,n.original,r),{subpath:m}=Yu(n.link),v=!c;if(Nt(e,a)&&pu(n))return p.path+m;let A=Yn(n.original),b;return h&&A?.alias&&(b=A.alias,v=!0),b??=iA({app:e,displayText:n.displayText,isWikilink:h,newSourcePathOrFile:a,oldSourcePathOrFile:s,oldTargetPath:u,targetPathOrFile:p})?void 0:A?.alias,v||(b===se(u,Ae(u))?b=p.basename:b===se(u)&&(b=p.name)),wl({alias:b,app:e,isSingleSubpathAllowed:d===u&&!!A?.alias,linkStyle:r,originalLink:n.original,sourcePathOrFile:a,subpath:m,targetPathOrFile:p})}i(hn,"updateLink");async function Zu(t){let{app:e,linkStyle:n,newSourcePathOrFile:r,oldSourcePathOrFile:a,shouldUpdateEmbedOnlyLinks:o,shouldUpdateFileNameAlias:s}=t;Nt(e,r)&&!e.internalPlugins.getEnabledPluginById(Ze.Canvas)||await mn(e,r,l=>{let c=Qu(l.original);if(!(o!==void 0&&o!==c))return nA({app:e,link:l,linkStyle:n,newSourcePathOrFile:r,oldSourcePathOrFile:a,shouldUpdateFileNameAlias:s})},t)}i(Zu,"updateLinksInFile");function cA(t,e,n){if(e||n)return t;try{return decodeURIComponent(t)}catch(r){return console.error(`Failed to decode URL ${t}`,r),t}}i(cA,"decodeUrlSafely");function pA(t,e,n){return e<n?t.slice(e,n):void 0}i(pA,"extractAlias");function Ju(t,e,n,r){if(e>n)return;let a=t.slice(e,n+1);ie(a,/(?<Url>\S+)/g,(o,s)=>{Zs(s)&&r.push({encodedUrl:La(s),endOffset:e+o.offset+s.length,hasAngleBrackets:!1,isEmbed:!1,isExternal:!0,isWikilink:!1,raw:s,startOffset:e+o.offset,url:s})})}i(Ju,"extractTextLinks");function dA(t,e,n,r,a){n==="/"&&(n="");let o;if(e.path===n&&r&&a.isSingleSubpathAllowed)o="";else switch(a.linkPathStyle){case"AbsolutePathInVault":o=e.path,a.shouldUseLeadingSlashForAbsolutePaths&&!o.startsWith("/")&&(o=`/${o}`);break;case"RelativePathToTheNote":o=jn(oe(n),e.path),a.shouldUseLeadingDotForRelativePaths&&!o.startsWith(".")&&(o=`./${o}`);break;case"ShortestPathWhenPossible":{let s=xt(t,e)?e.basename:e.name,l=t.metadataCache.getLinkpathDest(s,n);o=l.length===1&&l[0]===e?e.name:e.path;break}default:throw new Error(`Invalid link path style: ${a.linkPathStyle}.`)}return o=a.isWikilink?vt(o,`.${va}`):o,o+=r,o}i(dA,"generateLinkText");function uA(t){let{app:e}=t,n=ue(e,t.targetPathOrFile,t.isNonExistingFileAllowed),r=ee(e,t.sourcePathOrFile),a=t.subpath??"",o=vA(t,n),s=dA(e,n,r,a,o);return o.isWikilink?hA(s,t.alias,o.isEmbed):mA(s,n,t,o)}i(uA,"generateMarkdownLinkImpl");function mA(t,e,n,r){let{app:a}=n,o=n.alias??"";return!o&&(xt(a,e)||!n.isEmptyEmbedAliasAllowed)&&(o=!n.shouldIncludeAttachmentExtensionToEmbedAlias||xt(a,e)?e.basename:e.name,n.shouldEscapeAlias=!0),bl({alias:o,isEmbed:r.isEmbed,isWikilink:!1,shouldEscapeAlias:n.shouldEscapeAlias??!1,shouldUseAngleBrackets:r.shouldUseAngleBrackets,url:t})}i(mA,"generateMarkdownStyleLink");function hA(t,e,n){return e?.toLowerCase()===t.toLowerCase()?bl({isEmbed:n,isWikilink:!0,url:e}):bl({alias:e,isEmbed:n,isWikilink:!0,url:t})}i(hA,"generateWikiLink");async function gA(t,e,n,r){if(r??=Ce(),r.throwIfAborted(),!t)return[];let a=[],o=(t.sections??[]).filter(s=>s.type==="table").map(s=>({end:s.position.end.offset,start:s.position.start.offset}));for(let s of tt(t)){r.throwIfAborted();let l=await n(s,r);if(r.throwIfAborted(),l===void 0)continue;let c=$r(s,l);if(e)if(Ra(c))a.push(c);else{let p="Unsupported file change";throw console.error(p,c),new Error(p)}else wA(c,o)&&(c.newContent=c.newContent.replaceAll(Hu,Xb)),a.push(c)}return a}i(gA,"getFileChanges");function fA(t,e){switch(e??"ObsidianSettingsDefault"){case"AbsolutePathInVault":return"AbsolutePathInVault";case"RelativePathToTheSource":return"RelativePathToTheNote";case"ShortestPathWhenPossible":return"ShortestPathWhenPossible";case"ObsidianSettingsDefault":{let n=Wu(t);switch(n){case"absolute":return"AbsolutePathInVault";case"relative":return"RelativePathToTheNote";case"shortest":return"ShortestPathWhenPossible";default:throw new Error(`Invalid link format: ${n}.`)}}default:throw new Error(`Invalid link path style: ${e}.`)}}i(fA,"getFinalLinkPathStyle");function kA(t){return Ne(t,"generateMarkdownLinkDefaultOptionsFns",[]).value}i(kA,"getGenerateMarkdownLinkDefaultOptionsFns");function vA(t,e){let{app:n}=t;return{isEmbed:t.isEmbed??(t.originalLink?Qu(t.originalLink):void 0)??(!(0,Kn.requireApiVersion)("1.10.0")&&!xt(n,e)),isSingleSubpathAllowed:t.isSingleSubpathAllowed??!0,isWikilink:em(n,t.originalLink,t.linkStyle),linkPathStyle:fA(n,t.linkPathStyle),shouldUseAngleBrackets:t.shouldUseAngleBrackets??(t.originalLink?xl(t.originalLink):void 0)??!1,shouldUseLeadingDotForRelativePaths:t.shouldUseLeadingDotForRelativePaths??(t.originalLink?oA(t.originalLink):void 0)??!1,shouldUseLeadingSlashForAbsolutePaths:t.shouldUseLeadingSlashForAbsolutePaths??(t.originalLink?sA(t.originalLink):void 0)??!1}}i(vA,"getLinkConfig");function Xu(t,e){return e.slice(t.position?.start.offset??0,t.position?.end.offset??0)}i(Xu,"getRawLink");function yA(t,e){return t.startsWith("<")||e.startsWith("<")}i(yA,"hasAngleBracketsInLink");function bA(t,e){let a=Xu(t,e),o=t.children[0]?.position?.start.offset??1,s=t.children.at(-1)?.position?.end.offset??1,l=e.slice(s+2,(t.position?.end.offset??0)-1),c=yA(a,l),p=Zs(t.url),d=cA(t.url,p,c),u=pA(e,o,s);return{alias:u,encodedUrl:p?La(d):void 0,endOffset:t.position?.end.offset??0,hasAngleBrackets:c,isEmbed:!1,isExternal:p,isWikilink:!1,raw:a,startOffset:t.position?.start.offset??0,title:t.title??void 0,unescapedAlias:u===void 0?void 0:lA(u),url:d}}i(bA,"parseLinkNode");function AA(t,e){return{alias:e.includes(Ku)?t.data.alias:void 0,endOffset:t.position?.end.offset??0,isEmbed:!1,isExternal:!1,isWikilink:!0,raw:Xu(t,e),startOffset:t.position?.start.offset??0,url:t.value}}i(AA,"parseWikilinkNode");function wA(t,e){return!un(t)||!Hu.test(t.newContent)?!1:e.some(n=>n.start<=t.reference.position.start.offset&&t.reference.position.end.offset<=n.end)}i(wA,"shouldEscapeWikilinkDivider");function em(t,e,n){switch(n??"PreserveExisting"){case"Markdown":return!1;case"ObsidianSettingsDefault":return yl(t);case"PreserveExisting":return e===void 0?yl(t):Cl(e);case"Wikilink":return!0;default:throw new Error(`Invalid link style: ${n}.`)}}i(em,"shouldUseWikilinkStyle");function tm(t,e){let n=Object.keys(e).map(r=>xA(t,r,e[r]));return n.length===1?n[0]:function(){n.forEach(r=>r())}}i(tm,"around");function xA(t,e,n){let r=t[e],a=t.hasOwnProperty(e),o=a?r:function(){return Object.getPrototypeOf(t)[e].apply(this,arguments)},s=n(o);return r&&Object.setPrototypeOf(s,r),Object.setPrototypeOf(l,s),t[e]=l,c;function l(...p){return s===o&&t[e]===l&&c(),s.apply(this,p)}i(l,"wrapper");function c(){t[e]===l&&(a?t[e]=o:delete t[e]),s!==o&&(s=o,Object.setPrototypeOf(l,r||Function))}i(c,"remove")}i(xA,"around1");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();function nm(t,e){return tm(t,e)}i(nm,"around");async function Tl(t,e,n){let r=nm(t,e);try{return await n()}finally{r()}}i(Tl,"invokeWithPatchAsync");function Pt(t,e,n){let r=nm(e,n),a=!1;function o(){if(!a)try{r()}finally{a=!0}}return i(o,"uninstallerWrapper"),t.register(o),r}i(Pt,"registerPatch");var di=require("obsidian");var am=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var si=class extends am.Component{static{i(this,"AsyncEventsComponent")}registerAsyncEvent(e){li(this,e)}};function li(t,e){t.register(()=>{e.asyncEvents.offref(e)})}i(li,"registerAsyncEvent");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();function CA(t){let e=new Set;return t.workspace.iterateAllLeaves(n=>{e.add(n.getContainer())}),Array.from(e)}i(CA,"getAllContainers");function rm(t){return CA(t).map(e=>e.win)}i(rm,"getAllDomWindows");var lm=Mt(om(),1);i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var z=(t=>(t.AlertModal="alert-modal",t.CancelButton="cancel-button",t.CheckboxComponent="checkbox-component",t.CodeHighlighterComponent="code-highlighter-component",t.ConfirmModal="confirm-modal",t.DateComponent="date-component",t.DateTimeComponent="datetime-component",t.EmailComponent="email-component",t.FileComponent="file-component",t.IsPlaceholder="is-placeholder",t.LibraryName="obsidian-dev-utils",t.MonthComponent="month-component",t.MultipleDropdownComponent="multiple-dropdown-component",t.MultipleEmailComponent="multiple-email-component",t.MultipleFileComponent="multiple-file-component",t.MultipleTextComponent="multiple-text-component",t.NumberComponent="number-component",t.OkButton="ok-button",t.OverlayValidator="overlay-validator",t.PasswordComponent="password-component",t.PluginSettingsTab="plugin-settings-tab",t.PromptModal="prompt-modal",t.SelectItemModal="select-item-modal",t.SettingComponentWrapper="setting-component-wrapper",t.TelephoneComponent="telephone-component",t.TextBox="text-box",t.TimeComponent="time-component",t.Tooltip="tooltip",t.TooltipArrow="tooltip-arrow",t.TooltipValidator="tooltip-validator",t.TriStateCheckboxComponent="tri-state-checkbox-component",t.TypedDropdownComponent="typed-dropdown-component",t.TypedMultipleDropdownComponent="typed-multiple-dropdown-component",t.UrlComponent="url-component",t.WeekComponent="week-component",t))(z||{});i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var sm=`${lr}-styles`;function Q(t,...e){t.addClass(z.LibraryName,cr(),...e)}i(Q,"addPluginCssClasses");function cm(t){let e=t;e.DEBUG=op()}i(cm,"initDebugController");function pm(t,e){rp(e),sp(e);let n=Ne(t,"lastLibraryVersion","0.0.0");(0,lm.compareVersions)(Vo,n.value)<=0||(n.value=Vo,document.head.querySelector(`#${sm}`)?.remove(),document.head.createEl("style",{attr:{id:sm},text:np}))}i(pm,"initPluginContext");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var pi=class extends di.Plugin{static{i(this,"PluginBase")}events=new ft;get abortSignal(){if(!this._abortSignal)throw new Error("Abort signal not defined");return this._abortSignal}get settings(){return this.settingsManager.settingsWrapper.safeSettings}get settingsManager(){if(!this._settingsManager)throw new Error("Settings manager not defined");return this._settingsManager}get settingsTab(){if(!this._settingsTab)throw new Error("Settings tab not defined");return this._settingsTab}_abortSignal;_settingsManager=null;_settingsTab=null;lifecycleEventNames=new Set;notice;consoleDebug(e,...n){dr(this.manifest.id,1)(e,...n)}async onExternalSettingsChange(){await super.onExternalSettingsChange?.(),await this._settingsManager?.loadFromFile(!1)}async onload(){await super.onload(),await this.onloadImpl(),fp(this.afterLoad.bind(this))}onunload(){super.onunload(),J(async()=>{try{await this.onunloadImpl()}finally{await this.triggerLifecycleEvent("unload")}})}registerDomWindowHandler(e){let n=window;e(n),this.app.workspace.onLayoutReady(()=>{for(let r of rm(this.app))r!==n&&e(r);this.registerEvent(this.app.workspace.on("window-open",r=>{e(r.win)}))})}registerForLifecycleEvent(e,n){J(async()=>{await this.waitForLifecycleEvent(e),await n()})}registerPopupDocumentDomEvent(e,n,r){this.registerDomWindowHandler(a=>{this.registerDomEvent(a.document,e,n,r)})}registerPopupWindowDomEvent(e,n,r){this.registerDomWindowHandler(a=>{this.registerDomEvent(a,e,n,r)})}async waitForLifecycleEvent(e){this.lifecycleEventNames.has(e)||await new Promise(n=>{this.events.once(e,()=>{n()})})}createSettingsManager(){return null}createSettingsTab(){return null}createTranslationsMap(){return Qr}handleAsyncError(e){this.showNotice(g(n=>n.obsidianDevUtils.notices.unhandledError))}async onLayoutReady(){await gt()}async onloadImpl(){pm(this.app,this.manifest.id),this.registerDomWindowHandler(n=>{cm(n)}),await ul(this.createTranslationsMap()),this.register(tp(this.handleAsyncError.bind(this))),this._settingsManager=this.createSettingsManager(),this._settingsManager&&(li(this,this._settingsManager.on("loadSettings",this.onLoadSettings.bind(this))),li(this,this._settingsManager.on("saveSettings",this.onSaveSettings.bind(this)))),await this._settingsManager?.loadFromFile(!0),this._settingsTab=this.createSettingsTab(),this._settingsTab&&this.addSettingTab(this._settingsTab);let e=new AbortController;this._abortSignal=e.signal,this.register(()=>{e.abort(new In(`Plugin ${this.manifest.id} had been unloaded`))})}async onLoadSettings(e,n){await gt()}async onSaveSettings(e,n,r){await gt()}async onunloadImpl(){await gt()}showNotice(e){this.notice&&this.notice.hide(),this.notice=new di.Notice(`${this.manifest.name}
|
|
434
|
+
${e}`)}async afterLoad(){this.abortSignal.aborted||(await this.triggerLifecycleEvent("load"),this.app.workspace.onLayoutReady(Re(this.onLayoutReadyBase.bind(this))))}async onLayoutReadyBase(){try{await this.onLayoutReady()}finally{await this.triggerLifecycleEvent("layoutReady")}}async triggerLifecycleEvent(e){this.lifecycleEventNames.add(e),await this.events.triggerAsync(e)}};var ui=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();async function dm(t,e,n,r){n.throwIfAborted();let a=ne("Logger:invokeAsyncAndLog"),o=performance.now();r??=Me(1),kt(a,r,`${t}:start`,{fn:e,timestampStart:o});try{await e(n);let s=performance.now(),l=Math.trunc(s-o);n.aborted&&(kt(a,r,`${t}:aborted`,{abortReason:n.reason,duration:l,fn:e,timestampEnd:s,timestampStart:o}),n.throwIfAborted()),kt(a,r,`${t}:end`,{duration:l,fn:e,timestampEnd:s,timestampStart:o})}catch(s){let l=performance.now();throw kt(a,r,`${t}:error`,{duration:Math.trunc(l-o),error:s,fn:e,timestampEnd:l,timestampStart:o}),s}}i(dm,"invokeAsyncAndLog");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();function gn(t){let e=t.stackTrace??Me(1);J(()=>TA(t),e)}i(gn,"addToQueue");async function TA(t){let e=t.abortSignal??Ce();e.throwIfAborted();let r=t.timeoutInMilliseconds??6e4,a=t.stackTrace??Me(1),o=t.operationName??"",s=um(t.app).value;s.items.push({abortSignal:e,operationFn:t.operationFn,operationName:o,stackTrace:a,timeoutInMilliseconds:r}),s.promise=s.promise.then(()=>mm(t.app)),await s.promise}i(TA,"addToQueueAndWait");function um(t){return Ne(t,"queue",{items:[],promise:Promise.resolve()})}i(um,"getQueue");async function mm(t){let e=um(t).value,n=e.items[0];n&&(await Ho(()=>Iu({context:{queuedFn:n.operationFn},async operationFn(r){await dm(n.operationName||mm.name,n.operationFn,ct(r,n.abortSignal),n.stackTrace)},operationName:n.operationName,stackTrace:n.stackTrace,timeoutInMilliseconds:n.timeoutInMilliseconds})),e.items.shift())}i(mm,"processNextQueueItem");var hm=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();async function Sl(t,e){let n=ut(t,e);n&&await ti(t,n)&&await fn(t,n)}i(Sl,"deleteEmptyFolder");async function gm(t,e){let n=ut(t,e);for(;n;){if(!await ti(t,n))return;let r=n.parent;await Sl(t,n),n=r}}i(gm,"deleteEmptyFolderHierarchy");async function fn(t,e,n,r,a){let o=an(t,e);if(!o)return!1;let s=ce(o)||(a??!0);if(ce(o)){let l=await nt(t,o);n&&l.clear(n),l.count()!==0&&(r&&new hm.Notice(g(c=>c.obsidianDevUtils.notices.attachmentIsStillUsed,{attachmentPath:o.path})),s=!1)}else if(wt(o)){let l=await fl(t,o);for(let c of[...l.files,...l.folders])s&&=await fn(t,c,n,r);s&&=await ti(t,o)}if(s)try{await t.fileManager.trashFile(o)}catch(l){await t.vault.exists(o.path)&&(dt(new Error(`Failed to delete ${o.path}`,{cause:l})),s=!1)}return s}i(fn,"deleteSafe");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var at=(t=>(t.Delete="Delete",t.DeleteWithEmptyParents="DeleteWithEmptyParents",t.Keep="Keep",t))(at||{}),Pl=class{static{i(this,"DeleteHandler")}constructor(e,n,r,a,o){this.app=e,this.file=n,this.abortSignal=r,this.settingsManager=a,this.deletedMetadataCacheMap=o}async handle(){if(this.abortSignal.throwIfAborted(),ne("RenameDeleteHandler:handleDelete")(`Handle Delete ${this.file.path}`),!Ue(this.app,this.file))return;let e=this.settingsManager.getSettings();if(!e.shouldHandleDeletions)return;if(e.isPathIgnored?.(this.file.path)){ne("RenameDeleteHandler:handleDelete")(`Skipping delete handler of ${this.file.path} as the path is ignored.`);return}let n=this.deletedMetadataCacheMap.get(this.file.path);this.deletedMetadataCacheMap.delete(this.file.path);let r=new Set;if(n){let s=tt(n);for(let l of s){let c=mt(this.app,l,this.file.path);c&&(this.settingsManager.isNoteEx(c.path)||(r.add(c.parent?.path??""),await fn(this.app,c,this.file.path,!1,e.emptyAttachmentFolderBehavior!=="Keep")))}}await km(this.app,this.settingsManager.getSettings(),Array.from(r)),this.abortSignal.throwIfAborted();let a=await On(this.app,this.file.path,Ut.DeleteNote),o=ut(this.app,a);o&&await rs(this.app,this.file.path,Ut.DeleteNote)&&(this.abortSignal.throwIfAborted(),await fn(this.app,o,this.file.path,!1,e.emptyAttachmentFolderBehavior!=="Keep"),this.abortSignal.throwIfAborted())}},El=class{static{i(this,"HandledRenames")}map=new Map;add(e,n){this.map.set(this.keyToString(e,n),{newPath:n,oldPath:e})}delete(e,n){this.map.delete(this.keyToString(e,n))}has(e,n){return this.map.has(this.keyToString(e,n))}keys(){return this.map.values()}keyToString(e,n){return`${e} -> ${n}`}},Fl=class{static{i(this,"MetadataDeletedHandler")}constructor(e,n,r,a,o){this.app=e,this.file=n,this.prevCache=r,this.settingsManager=a,this.deletedMetadataCacheMap=o}handle(){let e=this.settingsManager.getSettings();if(e.shouldHandleDeletions){if(e.isPathIgnored?.(this.file.path)){ne("RenameDeleteHandler:handleMetadataDeleted")(`Skipping metadata delete handler of ${this.file.path} as the path is ignored.`);return}xt(this.app,this.file)&&this.prevCache&&this.deletedMetadataCacheMap.set(this.file.path,this.prevCache)}}},Il=class{static{i(this,"Registry")}constructor(e,n,r){this.plugin=e,this.settingsBuilder=n,this.settingsManager=r,this.app=e.app,this.pluginId=e.manifest.id,this.abortSignal=e.abortSignal??Ce()}abortSignal;app;deletedMetadataCacheMap=new Map;handledRenames=new El;interruptedRenamesMap=new Map;pluginId;register(){let e=this.settingsManager.renameDeleteHandlersMap;e.set(this.pluginId,this.settingsBuilder),this.logRegisteredHandlers(),this.plugin.register(()=>{e.delete(this.pluginId),this.logRegisteredHandlers()}),this.plugin.registerEvent(this.app.vault.on("delete",this.handleDelete.bind(this))),this.plugin.registerEvent(this.app.vault.on("rename",this.handleRename.bind(this))),this.plugin.registerEvent(this.app.metadataCache.on("deleted",this.handleMetadataDeleted.bind(this))),Pt(this.plugin,this.app.fileManager,{runAsyncLinkUpdate:i(n=>Object.assign(r=>this.runAsyncLinkUpdate(n,r),{renameDeleteHandlerPatched:!0}),"runAsyncLinkUpdate")})}handleDelete(e){this.shouldInvokeHandler()&&gn({app:this.app,operationFn:i(n=>new Pl(this.app,e,n,this.settingsManager,this.deletedMetadataCacheMap).handle(),"operationFn"),operationName:jt(n=>n.obsidianDevUtils.renameDeleteHandler.handleDelete,{filePath:e.path})})}handleMetadataDeleted(e,n){this.shouldInvokeHandler()&&new Fl(this.app,e,n,this.settingsManager,this.deletedMetadataCacheMap).handle()}handleRename(e,n){if(!this.shouldInvokeHandler()||!ce(e))return;let r=e.path;if(ne("RenameDeleteHandler:handleRename")(`Handle Rename ${n} -> ${r}`),this.handledRenames.has(n,r)){this.handledRenames.delete(n,r);return}let a=this.settingsManager.getSettings();if(!a.shouldHandleRenames)return;if(a.isPathIgnored?.(n)){ne("RenameDeleteHandler:handleRename")(`Skipping rename handler of old path ${n} as the path is ignored.`);return}if(a.isPathIgnored?.(r)){ne("RenameDeleteHandler:handleRename")(`Skipping rename handler of new path ${r} as the path is ignored.`);return}let o=this.app.metadataCache.getCache(n)??this.app.metadataCache.getCache(r),s=vl(this.app,n).data;gn({abortSignal:this.abortSignal,app:this.app,operationFn:i(l=>new zl({abortSignal:l,app:this.app,handledRenames:this.handledRenames,interruptedRenamesMap:this.interruptedRenamesMap,newPath:r,oldCache:o,oldPath:n,oldPathBacklinksMap:s,settingsManager:this.settingsManager}).handle(),"operationFn"),operationName:jt(l=>l.obsidianDevUtils.renameDeleteHandler.handleRename,{newPath:r,oldPath:n})})}logRegisteredHandlers(){let e=this.settingsManager.renameDeleteHandlersMap;ne("RenameDeleteHandler:logRegisteredHandlers")(`Plugins with registered rename/delete handlers: ${JSON.stringify(Array.from(e.keys()))}`)}async runAsyncLinkUpdate(e,n){if(e.renameDeleteHandlerPatched){await e.call(this.app.fileManager,n);return}await e.call(this.app.fileManager,r=>this.wrapLinkUpdatesHandler(r,n))}shouldInvokeHandler(){let e=this.plugin.manifest.id,n=this.settingsManager.renameDeleteHandlersMap;return Array.from(n.keys())[0]===e}async wrapLinkUpdatesHandler(e,n){let r=!1,a=this.app.vault.on("rename",()=>{r=!0});try{await n(e)}finally{this.app.vault.offref(a)}let o=this.settingsManager.getSettings();!r||!o.shouldHandleRenames||ua(e,s=>o.isPathIgnored?.(s.sourceFile.path)?(ne("RenameDeleteHandler:runAsyncLinkUpdate")(`Roll back to default link update of source file ${s.sourceFile.path} as the path is ignored.`),!0):o.isPathIgnored?.(s.resolvedFile.path)?(ne("RenameDeleteHandler:runAsyncLinkUpdate")(`Roll back to default link update of resolved file ${s.resolvedFile.path} as the path is ignored.`),!0):!this.app.internalPlugins.getEnabledPluginById(Ze.Canvas)||this.app.plugins.getPlugin("backlink-cache")?!1:s.sourceFile.extension===fr||s.resolvedFile.extension===fr)}},zl=class t{static{i(this,"RenameHandler")}abortSignal;app;handledRenames;interruptedCombinedBacklinksMap;interruptedRenamesMap;newPath;oldCache;oldPath;oldPathBacklinksMap;oldPathLinks;settingsManager;constructor(e){this.app=e.app,this.oldPath=e.oldPath,this.newPath=e.newPath,this.oldPathBacklinksMap=e.oldPathBacklinksMap,this.oldCache=e.oldCache,this.abortSignal=e.abortSignal,this.settingsManager=e.settingsManager,this.interruptedRenamesMap=e.interruptedRenamesMap,this.oldPathLinks=this.oldCache?tt(this.oldCache):[],this.handledRenames=e.handledRenames,this.interruptedCombinedBacklinksMap=e.interruptedCombinedBacklinksMap??new Map}async handle(){if(this.abortSignal.throwIfAborted(),await this.continueInterruptedRenames(),this.abortSignal.throwIfAborted(),await this.refreshLinks(),this.abortSignal.throwIfAborted(),await this.handleCaseCollision())return;this.abortSignal.throwIfAborted();let e=Ne(this.app,"renamedFilePaths",new Set).value,n=Ne(this.app,"renamedLinkPaths",new Set).value;try{let r=new Ml({abortSignal:this.abortSignal,app:this.app,newPath:this.newPath,oldCache:this.oldCache,oldPath:this.oldPath,settingsManager:this.settingsManager});await r.fill(),this.abortSignal.throwIfAborted();let a=new Map;r.initOriginalLinksMap(a),r.initBacklinksMap(this.oldPathBacklinksMap,a,this.oldPath);for(let l of r.keys()){if(l===this.oldPath)continue;let c=(await nt(this.app,l)).data;this.abortSignal.throwIfAborted(),r.initBacklinksMap(c,a,l)}let o=new Set;for(let[l,c]of r.entries()){if(l!==this.oldPath){let p=await this.renameHandled(l,c);this.abortSignal.throwIfAborted(),r.set(l,p)}this.settingsManager.isNoteEx(l)||o.add(oe(l))}await km(this.app,this.settingsManager.getSettings(),Array.from(o)),this.abortSignal.throwIfAborted();let s=this.settingsManager.getSettings();for(let[l,c]of Array.from(a.entries()).concat(Array.from(this.interruptedCombinedBacklinksMap.entries()))){let p=0;await mn(this.app,l,d=>{p++;let u=c.get(tn(d));if(!u)return;let h=r.get(u);if(h)return e.add(l),n.add(`${l}//${String(p)}`),hn({app:this.app,link:d,newSourcePathOrFile:l,newTargetPathOrFile:h,oldTargetPathOrFile:u,shouldUpdateFileNameAlias:s.shouldUpdateFileNameAliases})},{shouldFailOnMissingFile:!1}),this.abortSignal.throwIfAborted()}if(Ue(this.app,this.newPath)&&(await Zu({app:this.app,newSourcePathOrFile:this.newPath,oldSourcePathOrFile:this.oldPath,shouldFailOnMissingFile:!1,shouldUpdateFileNameAlias:s.shouldUpdateFileNameAliases}),this.abortSignal.throwIfAborted()),!pe(this.app,this.newPath)){let l=this.interruptedRenamesMap.get(this.newPath);l||(l=[],this.interruptedRenamesMap.set(this.newPath,l)),l.push({combinedBacklinksMap:a,oldPath:this.oldPath})}}finally{let r=Array.from(this.handledRenames.keys());gn({abortSignal:this.abortSignal,app:this.app,operationFn:i(()=>{for(let a of r)this.handledRenames.delete(a.oldPath,a.newPath);n.size!==0&&(new ui.Notice(jt(a=>a.obsidianDevUtils.renameDeleteHandler.updatedLinks,{filesCount:e.size,linksCount:n.size})),e.clear(),n.clear())},"operationFn"),operationName:jt(a=>a.obsidianDevUtils.renameDeleteHandler.handleOrphanedRenames)})}}async continueInterruptedRenames(){let e=this.interruptedRenamesMap.get(this.oldPath);if(e){this.interruptedRenamesMap.delete(this.oldPath);for(let n of e)await new t({abortSignal:this.abortSignal,app:this.app,handledRenames:this.handledRenames,interruptedCombinedBacklinksMap:n.combinedBacklinksMap,interruptedRenamesMap:this.interruptedRenamesMap,newPath:this.newPath,oldCache:this.oldCache,oldPath:n.oldPath,oldPathBacklinksMap:this.oldPathBacklinksMap,settingsManager:this.settingsManager}).handle()}}async handleCaseCollision(){if(!this.app.vault.adapter.insensitive||this.oldPath.toLowerCase()!==this.newPath.toLowerCase())return!1;let e=le(oe(this.newPath),`__temp__${se(this.newPath)}`);return await this.renameHandled(this.newPath,e),await new t({abortSignal:this.abortSignal,app:this.app,handledRenames:this.handledRenames,interruptedRenamesMap:this.interruptedRenamesMap,newPath:e,oldCache:this.oldCache,oldPath:this.oldPath,oldPathBacklinksMap:this.oldPathBacklinksMap,settingsManager:this.settingsManager}).handle(),await this.app.vault.rename(ue(this.app,e),this.newPath),!0}async refreshLinks(){let e=this.app.metadataCache.getCache(this.oldPath)??this.app.metadataCache.getCache(this.newPath),n=e?tt(e):[],r=ue(this.app,this.oldPath,!0),a=new Map;await ja(this.app,[r],async()=>{a=(await nt(this.app,r)).data});for(let o of n)this.oldPathLinks.includes(o)||this.oldPathLinks.push(o);for(let[o,s]of a.entries()){let l=this.oldPathBacklinksMap.get(o);l||(l=[],this.oldPathBacklinksMap.set(o,l));for(let c of s)l.includes(c)||l.push(c)}}async renameHandled(e,n){return n=gl(this.app,e,n),e===n||(this.handledRenames.add(e,n),n=await ni(this.app,e,n)),n}},Ml=class{static{i(this,"RenameMap")}abortSignal;app;map=new Map;newPath;oldCache;oldPath;oldPathLinks;settingsManager;constructor(e){this.abortSignal=e.abortSignal,this.app=e.app,this.settingsManager=e.settingsManager,this.oldCache=e.oldCache,this.oldPath=e.oldPath,this.newPath=e.newPath,this.oldPathLinks=this.oldCache?tt(this.oldCache):[]}entries(){return this.map.entries()}async fill(){if(this.abortSignal.throwIfAborted(),this.map.set(this.oldPath,this.newPath),!Ue(this.app,this.oldPath))return;let e=this.settingsManager.getSettings(),n=ue(this.app,this.oldPath,!0),r="";await _u(this.app,[n],async()=>{let c=this.oldCache&&n.deleted;c&&Uu(this.app,n,this.oldCache);try{r=await On(this.app,this.oldPath,Ut.RenameNote)}finally{c&&$u(this.app,n)}});let a=e.shouldRenameAttachmentFolder?await On(this.app,this.newPath,Ut.RenameNote):r,o=r==="/",s=ut(this.app,r);if(!s||r===a&&!e.shouldRenameAttachmentFiles)return;let l=[];if(await rs(this.app,this.oldPath,Ut.RenameNote))ui.Vault.recurseChildren(s,c=>{this.abortSignal.throwIfAborted(),ce(c)&&l.push(c)});else for(let c of this.oldPathLinks){this.abortSignal.throwIfAborted();let p=mt(this.app,c,this.oldPath);if(p&&(o||p.path.startsWith(r))){let d=await nt(this.app,p);this.abortSignal.throwIfAborted();let u=new Set(d.keys());u.delete(this.oldPath),u.delete(this.newPath),u.size===0&&l.push(p)}}for(let c of l){if(this.abortSignal.throwIfAborted(),this.settingsManager.isNoteEx(c.path))continue;let p;if(e.shouldRenameAttachmentFiles)p=await ns({app:this.app,context:Ut.RenameNote,notePathOrFile:this.newPath,oldAttachmentPathOrFile:c,oldNotePathOrFile:this.oldPath,shouldSkipDuplicateCheck:!0}),this.abortSignal.throwIfAborted();else{let d=o?c.path:jn(r,c.path),u=le(a,oe(d));p=le(u,c.name)}if(c.path!==p){if(e.shouldDeleteConflictingAttachments){let d=pe(this.app,p);d&&(ne("RenameDeleteHandler:fillRenameMap")(`Removing conflicting attachment ${d.path}.`),await this.app.fileManager.trashFile(d),this.abortSignal.throwIfAborted())}else{let d=oe(p),u=Ae(p),h=se(p,u);p=this.app.vault.getAvailablePath(le(d,h),u.slice(1))}this.map.set(c.path,p)}}}get(e){return this.map.get(e)}initBacklinksMap(e,n,r){for(let[a,o]of e.entries()){let s=this.map.get(a)??a,l=n.get(s)??new Map;n.set(s,l);for(let c of o)l.set(tn(c),r)}}initOriginalLinksMap(e){for(let n of this.oldPathLinks){let r=mt(this.app,n,this.oldPath);if(!r)continue;let a=new Map;a.set(this.newPath,[n]),this.initBacklinksMap(a,e,r.path)}}keys(){return this.map.keys()}set(e,n){this.map.set(e,n)}},Nl=class{static{i(this,"SettingsManager")}constructor(e){this.app=e,this.renameDeleteHandlersMap=Ne(e,"renameDeleteHandlersMap",new Map).value}renameDeleteHandlersMap;getSettings(){let e=Array.from(this.renameDeleteHandlersMap.values()).reverse(),n={};n.isNote=r=>Ue(this.app,r),n.isPathIgnored=()=>!1;for(let r of e){let a=r();n.shouldDeleteConflictingAttachments||=a.shouldDeleteConflictingAttachments??!1,a.emptyAttachmentFolderBehavior&&(n.emptyAttachmentFolderBehavior??=a.emptyAttachmentFolderBehavior),n.shouldHandleDeletions||=a.shouldHandleDeletions??!1,n.shouldHandleRenames||=a.shouldHandleRenames??!1,n.shouldRenameAttachmentFiles||=a.shouldRenameAttachmentFiles??!1,n.shouldRenameAttachmentFolder||=a.shouldRenameAttachmentFolder??!1,n.shouldUpdateFileNameAliases||=a.shouldUpdateFileNameAliases??!1;let o=n.isPathIgnored;n.isPathIgnored=l=>o(l)||(a.isPathIgnored?.(l)??!1);let s=n.isNote;n.isNote=l=>s(l)&&(a.isNote?.(l)??!0)}return n.emptyAttachmentFolderBehavior??="Keep",n}isNoteEx(e){return this.getSettings().isNote?.(e)??!1}};function fm(t,e){new Il(t,e,new Nl(t.app)).register()}i(fm,"registerRenameDeleteHandlers");async function km(t,e,n){if(e.emptyAttachmentFolderBehavior!=="Keep")for(let r of n)switch(e.emptyAttachmentFolderBehavior){case"Delete":await Sl(t,r);break;case"DeleteWithEmptyParents":await gm(t,r);break;default:break}}i(km,"cleanupParentFolders");var bn=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();function R(t,e){t.createEl("strong",{cls:"markdown-rendered code"},n=>{n.createEl("code",{text:e})})}i(R,"appendCodeBlock");async function Rl(t,e,n){let r=createEl(t,e);return await n?.(r),r}i(Rl,"createElAsync");async function mi(t){let e=createFragment();return await t?.(e),e}i(mi,"createFragmentAsync");function vm(t){let e=t;for(;e;){let n=getComputedStyle(e).zIndex,r=Number.parseInt(n,10);if(!Number.isNaN(r))return r;e=e.parentElement}return 0}i(vm,"getZIndex");function ym(t){return`${String(t)}px`}i(ym,"toPx");var bm=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();async function hi(t){let n={...{abortSignal:Ce(),buildNoticeMessage(){throw new Error("buildNoticeMessage is required")},items:[],noticeBeforeShownTimeoutInMilliseconds:500,noticeMinTimeoutInMilliseconds:2e3,processItem:lt,progressBarTitle:"",shouldContinueOnError:!0,shouldShowProgressBar:!0,uiUpdateThresholdInMilliseconds:100},...t},r=Me(1),a=n.items,o=0,s=null,l=!1;J(()=>u());let c=sleep(n.noticeMinTimeoutInMilliseconds),p=createEl("progress");Q(p,"loop"),p.max=a.length;let d=performance.now();for(let h of a){if(n.abortSignal.aborted){s?.hide();return}o++;let m=`# ${String(o)} / ${String(a.length)}`,v=n.buildNoticeMessage(h,m);n.shouldShowProgressBar||s?.setMessage(v),ne("Loop")(v);try{performance.now()-d>n.uiUpdateThresholdInMilliseconds&&(await kp(),d=performance.now()),await n.processItem(h)}catch(A){if(console.error("Error processing item",h),!n.shouldContinueOnError)throw s?.hide(),new pt("loop failed",r,A);or(new pt(ir,r,A))}p.value++}s&&await c,s?.hide(),l=!0;async function u(){if(await sleep(n.noticeBeforeShownTimeoutInMilliseconds),l||(s=new bm.Notice("",0),!n.shouldShowProgressBar))return;let h=createFragment();h.createDiv({text:n.progressBarTitle}),h.appendChild(p),s.setMessage(h)}i(u,"showNotice")}i(hi,"loop");var jl=require("obsidian");var Am=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Qn=class extends Am.Modal{static{i(this,"ModalBase")}constructor(e,n,r){super(e.app),this.resolve=n,Q(this.containerEl,r),e.cssClass&&this.containerEl.addClass(e.cssClass)}};async function gi(t){return await new Promise(e=>{t(e).open()})}i(gi,"showModal");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Ll=class extends Qn{static{i(this,"ConfirmModal")}isConfirmed=!1;options;constructor(e,n){super(e,n,z.ConfirmModal);let r={app:e.app,cancelButtonText:g(a=>a.obsidianDevUtils.buttons.cancel),cssClass:"",message:e.message,okButtonText:g(a=>a.obsidianDevUtils.buttons.ok),title:""};this.options={...r,...e}}onClose(){super.onClose(),this.resolve(this.isConfirmed)}onOpen(){super.onOpen(),this.titleEl.setText(this.options.title),this.contentEl.createEl("p",{text:this.options.message});let e=new jl.ButtonComponent(this.contentEl);e.setButtonText(this.options.okButtonText),e.setCta(),e.onClick(()=>{this.isConfirmed=!0,this.close()}),e.setClass(z.OkButton);let n=new jl.ButtonComponent(this.contentEl);n.setButtonText(this.options.cancelButtonText),n.onClick(this.close.bind(this)),n.setClass(z.CancelButton)}};async function fi(t){return await gi(e=>new Ll(t,e))}i(fi,"confirm");var Ba=require("obsidian");var EA=Mt(require("obsidian"),1),Em=require("obsidian");var wm=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();function xm(t){return t.validationMessage!==void 0}i(xm,"isValidationMessageHolder");var SA=/[*\\/<>:|?"]/g,PA=/[\0/]/g;function ki(t){return t??=wm.Platform.isWin,t?SA:PA}i(ki,"getOsUnsafePathCharsRegExp");var Fm=Mt(Cm(),1);var Ot=require("obsidian");var Bl=class extends Ot.Modal{constructor(n){super(n.ctx.app);this.options=n;Q(this.containerEl,"preview-modal")}static{i(this,"PreviewModal")}embedComponent;tempFile;onClose(){super.onClose(),this.embedComponent?.unload(),J(async()=>{this.tempFile&&await this.app.fileManager.trashFile(this.tempFile)})}onOpen(){super.onOpen(),J(this.onOpenAsync.bind(this))}async onOpenAsync(){let n=this.app.embedRegistry.embedByExtension[this.options.ctx.originalAttachmentFileExtension];if(!n||!this.options.ctx.attachmentFileContent)return;let r=`${this.options.ctx.originalAttachmentFileName}.${this.options.ctx.originalAttachmentFileExtension}`;this.titleEl.setText(g(s=>s.promptWithPreviewModal.previewModal.title,{fullFileName:r}));let a=`__temp${String(Date.now())}__${r}`;this.tempFile=await this.app.vault.createBinary(a,this.options.ctx.attachmentFileContent);let o=this.contentEl.createDiv("preview-container");this.embedComponent=n({app:this.app,containerEl:o},this.tempFile),this.embedComponent.load(),this.embedComponent.loadFile()}},Ul=class extends Ot.Modal{constructor(n,r){super(n.ctx.app);this.options=n;this.resolve=r;Q(this.containerEl,z.PromptModal),this.value=n.ctx.originalAttachmentFileName}static{i(this,"PromptWithPreviewModal")}isOkClicked=!1;value;onClose(){super.onClose(),this.resolve(this.isOkClicked?this.value:null)}onOpen(){super.onOpen();let n=createFragment(d=>{d.appendText(g(u=>u.promptWithPreviewModal.title)),d.createEl("br"),d.appendText(this.options.ctx.fullTemplate.slice(0,this.options.ctx.tokenStartOffset)),d.createSpan({cls:"highlighted-token",text:this.options.ctx.tokenWithFormat}),d.appendText(this.options.ctx.fullTemplate.slice(this.options.ctx.tokenEndOffset))});this.titleEl.setText(n);let r=new Ot.TextComponent(this.contentEl),a=r.inputEl,o=i(async()=>{let d=await this.options.valueValidator(a.value);a.setCustomValidity(d??""),a.reportValidity()},"validate");r.setValue(this.value),r.setPlaceholder(g(d=>d.promptWithPreviewModal.title)),a.addClass(z.TextBox),r.onChange(d=>{this.value=d}),a.addEventListener("keydown",d=>{d.key==="Enter"?this.handleOk(d,r):d.key==="Escape"&&this.close()}),a.addEventListener("input",Re(o)),a.addEventListener("focus",Re(o)),J(o);let s=new Ot.ButtonComponent(this.contentEl);s.setButtonText(g(d=>d.obsidianDevUtils.buttons.ok)),s.setCta(),s.onClick(d=>{this.handleOk(d,r)}),s.setClass(z.OkButton);let l=new Ot.ButtonComponent(this.contentEl);l.setButtonText(g(d=>d.obsidianDevUtils.buttons.cancel)),l.onClick(this.close.bind(this)),l.setClass(z.CancelButton);let c=new Ot.ButtonComponent(this.contentEl);c.setButtonText(g(d=>d.buttons.previewAttachmentFile)),c.onClick(this.preview.bind(this));let p=this.app.embedRegistry.embedByExtension[this.options.ctx.originalAttachmentFileExtension];(!this.options.ctx.attachmentFileContent||!p)&&c.setDisabled(!0)}handleOk(n,r){n.preventDefault(),r.inputEl.checkValidity()&&(this.isOkClicked=!0,this.close())}preview(){new Bl(this.options).open()}};function Tm(t){return new Promise(e=>{new Ul(t,e).open()})}i(Tm,"promptWithPreview");var FA=qe(Fm.default),yi=qe(Em.moment),IA=["1","2","3","4","5","6","any"],zA=/^\.{3,}$/,MA=/\.+$/,Oa=/\${(?<Token>.+?)(?::(?<Format>.*?))?}/g;function Vl(t){let e=new Map;try{return new Function("registerCustomToken",t)(n),e}catch(r){return dt(new Error("Error registering custom tokens",{cause:r})),null}function n(r,a){e.set(r,a)}i(n,"registerCustomToken")}i(Vl,"parseCustomTokens");function Sm(t,e){let n=",default=now",r=",default=empty",a="empty";return e.endsWith(n)?(e=vt(e,n),a="now"):e.endsWith(r)&&(e=vt(e,r),a="empty"),t?yi(t).format(e):a==="now"?yi().format(e):""}i(Sm,"formatAttachmentFileDate");function NA(t){return yi().format(t)}i(NA,"formatDate");function Pm(t,e,n,r){let a=pe(t,e);return a?yi(r(a)).format(n):""}i(Pm,"formatFileDate");function RA(t,e){let{base:a,parameter:o}=Ai(e);switch(a){case"":case"B":return t.toFixed(o??0);case"KB":return(t/1024).toFixed(o??0);case"MB":return(t/1048576).toFixed(o??0);default:throw new Error(`Invalid file size format: ${e}`)}}i(RA,"formatFileSize");function jA(t,e){let n=t.split("/"),r=n.length-1,a=e.indexOf(",");a===-1&&(a=e.length);let s=e.slice(0,a),l=e.slice(a+1),c=Ai(s);switch(c.base){case"indexFromEnd":r=n.length-1-(c.parameter??0);break;case"indexFromStart":r=c.parameter??0;break;default:if(l)throw new Error(`Invalid format: ${s}`);return kn(n[r]??"",s)}let p=n[r]??"";return kn(p,l)}i(jA,"formatFolderName");function kn(t,e){let{base:n,parameter:r}=Ai(e);switch(n){case"":return t;case"left":return t.slice(0,r??1);case"lower":return t.toLowerCase();case"right":return t.slice(-(r??1));case"slug":return UA(t);case"upper":return t.toUpperCase();default:throw new Error(`Invalid file name format: ${e}`)}}i(kn,"formatString");function LA(t){if(t==="uuid")return crypto.randomUUID();let{base:e,parameter:n}=Ai(t),r;switch(e){case"D":r="0123456789";break;case"DL":r="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";break;case"L":r="ABCDEFGHIJKLMNOPQRSTUVWXYZ";break;default:throw new Error(`Invalid random value format: ${t}`)}let a="";for(let o=0;o<(n??1);o++)a+=DA(r);return a}i(LA,"generateRandomValue");function OA(t,e,n){let r=pe(t,e);if(!r)return"";let a=t.metadataCache.getFileCache(r);if(!a?.frontmatter)return"";let o=Bt(a.frontmatter,n)??"";return String(o)}i(OA,"getFrontmatterValue");var Pe=class t{static{i(this,"Substitutions")}static evaluators=new Map;static{this.registerCustomTokens("")}actionContext;noteFolderPath;app;attachmentFileContent;attachmentFileStat;cursorLine;generatedAttachmentFileName;generatedAttachmentFilePath;headingsInfo=null;noteFileName;noteFilePath;noteFolderName;oldNoteFileName;oldNoteFilePath;oldNoteFolderName;oldNoteFolderPath;originalAttachmentFileExtension;originalAttachmentFileName;plugin;sequenceNumber;constructor(e){this.plugin=e.plugin,this.app=e.plugin.app,this.actionContext=e.actionContext,this.noteFilePath=e.noteFilePath,this.noteFileName=se(this.noteFilePath,Ae(this.noteFilePath)),this.noteFolderName=vi(se(oe(this.noteFilePath))),this.noteFolderPath=vi(oe(this.noteFilePath)),this.oldNoteFilePath=e.oldNoteFilePath??"",this.oldNoteFileName=se(this.oldNoteFilePath,Ae(this.oldNoteFilePath)),this.oldNoteFolderName=vi(se(oe(this.oldNoteFilePath))),this.oldNoteFolderPath=vi(oe(this.oldNoteFilePath));let n=e.originalAttachmentFileName??"",r=Ae(n);if(this.originalAttachmentFileName=se(n,r),this.originalAttachmentFileExtension=r.slice(1),this.attachmentFileContent=e.attachmentFileContent,this.attachmentFileStat=e.attachmentFileStat,this.generatedAttachmentFileName=e.generatedAttachmentFileName??"",this.generatedAttachmentFilePath=e.generatedAttachmentFilePath??"",e.cursorLine===void 0){if(this.cursorLine=null,this.app.workspace.activeEditor?.file?.path===this.noteFilePath){let a=this.app.workspace.activeEditor.editor?.getCursor();a&&(this.cursorLine=a.line)}}else this.cursorLine=e.cursorLine}static isRegisteredToken(e){return t.evaluators.has(e.toLowerCase())}static registerCustomTokens(e){this.evaluators.clear(),this.registerToken("date",r=>NA(r.format)),this.registerToken("noteFileCreationDate",r=>Pm(r.app,r.noteFilePath,r.format,a=>a.stat.ctime)),this.registerToken("noteFileModificationDate",r=>Pm(r.app,r.noteFilePath,r.format,a=>a.stat.mtime)),this.registerToken("originalAttachmentFileCreationDate",r=>Sm(r.attachmentFileStat?.ctime,r.format)),this.registerToken("originalAttachmentFileModificationDate",r=>Sm(r.attachmentFileStat?.mtime,r.format)),this.registerToken("noteFileName",r=>kn(r.noteFileName,r.format)),this.registerToken("noteFilePath",r=>r.noteFilePath),this.registerToken("noteFolderName",r=>jA(r.noteFolderPath,r.format)),this.registerToken("noteFolderPath",r=>r.noteFolderPath),this.registerToken("frontmatter",r=>OA(r.app,r.noteFilePath,r.format)),this.registerToken("originalAttachmentFileExtension",r=>r.originalAttachmentFileExtension),this.registerToken("originalAttachmentFileName",r=>kn(r.originalAttachmentFileName,r.format)),this.registerToken("prompt",(r,a)=>a.prompt(r)),this.registerToken("random",r=>LA(r.format)),this.registerToken("attachmentFileSize",r=>RA(r.attachmentFileContent?.byteLength??0,r.format)),this.registerToken("generatedAttachmentFileName",r=>kn(r.generatedAttachmentFileName,r.format)),this.registerToken("generatedAttachmentFilePath",r=>r.generatedAttachmentFilePath),this.registerToken("heading",async(r,a)=>a.getHeading(r.format)),this.registerToken("sequenceNumber",r=>{let a=Number(r.format);return(Number.isNaN(a)||a<1)&&(a=1),String(r.sequenceNumber).padStart(a,"0")});let n=Vl(e)??new Map;for(let[r,a]of n.entries())this.registerToken(r,a)}static registerToken(e,n){this.evaluators.set(e.toLowerCase(),n)}async fillTemplate(e){return await up(e,Oa,async(n,r,a,o)=>{n.throwIfAborted();let s=t.evaluators.get(a.toLowerCase());if(!s)throw new Error(`Unknown token '${a}'.`);let l={abortSignal:n,actionContext:this.actionContext,app:this.app,attachmentFileContent:this.attachmentFileContent,attachmentFileStat:this.attachmentFileStat,fillTemplate:this.fillTemplate.bind(this),format:o,fullTemplate:e,generatedAttachmentFileName:this.generatedAttachmentFileName,generatedAttachmentFilePath:this.generatedAttachmentFilePath,noteFileName:this.noteFileName,noteFilePath:this.noteFilePath,noteFolderName:this.noteFolderName,noteFolderPath:this.noteFolderPath,obsidian:EA,oldNoteFileName:this.oldNoteFileName,oldNoteFilePath:this.oldNoteFilePath,oldNoteFolderName:this.oldNoteFolderName,oldNoteFolderPath:this.oldNoteFolderPath,originalAttachmentFileExtension:this.originalAttachmentFileExtension,originalAttachmentFileName:this.originalAttachmentFileName,sequenceNumber:this.sequenceNumber??0,token:a,tokenEndOffset:r.offset+r.substring.length,tokenStartOffset:r.offset,tokenWithFormat:r.substring};try{let c=await s(l,this);if(n.throwIfAborted(),typeof c!="string")throw console.error("Token returned non-string value.",{ctx:l,result:c}),new Error("Token returned non-string value");return c}catch(c){throw new Error(`Error formatting token \${${a}}`,{cause:c})}})}async prompt(e){if(kn("",e.format),e.actionContext==="ValidateTokens"||e.originalAttachmentFileName===Ct)return Ct;let n=await Tm({ctx:e,valueValidator:i(r=>vn({areTokensAllowed:!1,path:r,plugin:this.plugin}),"valueValidator")});if(n===null)throw new Error("Prompt cancelled");return kn(n,e.format)}async getHeading(e){if(e||="any",!IA.includes(e))throw new Error(`Invalid heading level: ${e}`);let r=(await this.initHeadings()).get(e)??"";return this.plugin.replaceSpecialCharacters(r)}async initHeadings(){if(this.headingsInfo)return this.headingsInfo;if(this.headingsInfo=new Map,!this.cursorLine)return this.headingsInfo;let e=await Lt(this.app,this.noteFilePath);if(!e?.headings)return this.headingsInfo;let n=new Map;for(let r of e.headings){if(r.position.start.line>this.cursorLine)continue;let a=String(r.level),o=n.get(a)??-1;r.position.start.line>o&&(this.headingsInfo.set(a,r.heading),n.set(a,r.position.start.line),r.position.start.line>(n.get("any")??-1)&&(n.set("any",r.position.start.line),this.headingsInfo.set("any",r.heading)))}return this.headingsInfo}};function _l(t){return Im(t).some(e=>e.token==="prompt")}i(_l,"hasPromptToken");async function Da(t){switch(t.tokenValidationMode){case"Error":{if(t.fileName.match(Oa))return"Tokens are not allowed in file name";break}case"Skip":break;case"Validate":{let n=await zm(t.plugin,t.fileName);if(n)return n;break}default:throw new Error(`Invalid token validation mode: ${t.tokenValidationMode}`)}let e=BA(t.fileName);return e==="."||e===".."?t.areSingleDotsAllowed?"":"Single dots are not allowed in file name":e?ki().test(e)?`File name "${t.fileName}" contains invalid symbols`:zA.test(e)?`File name "${t.fileName}" contains more than two dots`:MA.test(e)?`File name "${t.fileName}" contains trailing dots`:"":t.isEmptyAllowed?"":"File name is empty"}i(Da,"validateFileName");async function vn(t){if(t.areTokensAllowed){let r=await zm(t.plugin,t.path);if(r)return`Unknown token: ${r}`}else if(t.path.match(Oa))return"Tokens are not allowed in path";let e=zn(t.path,"/");if(e=vt(e,"/"),e==="")return"";let n=e.split("/");for(let r of n){let a=await Da({areSingleDotsAllowed:!0,fileName:r,isEmptyAllowed:!0,plugin:t.plugin,tokenValidationMode:"Skip"});if(a)return a}return""}i(vn,"validatePath");function vi(t){return t==="."?"":t}i(vi,"dotToEmpty");function Im(t){let e=t.matchAll(Oa);return Array.from(e).map(n=>({format:n.groups?.Format??"",token:n.groups?.Token??""}))}i(Im,"extractTokens");function DA(t){return t[Math.floor(Math.random()*t.length)]??""}i(DA,"generateRandomSymbol");function Ai(t){let e=/^(?<Base>\w*?)(?<Parameter>\d*)$/.exec(t);if(!e)throw new Error(`Invalid format: ${t}`);let n=e.groups?.Base??"",r=e.groups?.Parameter,a=r?parseInt(r,10):void 0;return{base:n,parameter:a}}i(Ai,"parseFormatWithParameter");function BA(t){return ie(t,Oa,(e,n,r)=>`_${n}_${r}_`)}i(BA,"removeTokens");function UA(t){return FA(t,{lower:!0})}i(UA,"slugifyEx");async function zm(t,e){let n=new Pe({actionContext:"ValidateTokens",noteFilePath:Ct,originalAttachmentFileName:Ct,plugin:t}),r=Im(e);for(let a of r){if(!Pe.isRegisteredToken(a.token))return`Unknown token '${a.token}'.`;let o=a.format.split(",");for(let s of o)try{await n.fillTemplate(`\${${a.token}:${s}}`)}catch{return`Token '${a.token}' is used with unknown format '${s}'.`}}return null}i(zm,"validateTokens");async function Ua(t,e,n,r,a,o,s){return await $A(t,new Pe({actionContext:e,attachmentFileContent:o,attachmentFileStat:s,noteFilePath:n,oldNoteFilePath:a,originalAttachmentFileName:r,plugin:t}))}i(Ua,"getAttachmentFolderFullPathForPath");async function Zn(t,e){let n;switch(e.actionContext){case"CollectAttachments":n=t.settings.collectedAttachmentFileName;break;case"RenameNote":n=t.settings.renamedAttachmentFileName;break;default:n=t.settings.generatedAttachmentFileName;break}n||=t.settings.generatedAttachmentFileName;let r=await Nm(t,n,e,!0),a=await vn({areTokensAllowed:!1,path:r,plugin:t});if(!a){let s=r.split("/").at(-1)??"";a=await Da({areSingleDotsAllowed:!1,fileName:s,isEmptyAllowed:!1,plugin:t,tokenValidationMode:"Error"})}if(a){new Ba.Notice(createFragment(s=>{s.appendText(g(l=>l.notice.generatedAttachmentFileNameIsInvalid.part1,{path:r,validationMessage:a})),s.appendText(" "),R(s,g(l=>l.pluginSettingsTab.generatedAttachmentFileName.name)),s.appendText(" "),s.appendText(g(l=>l.notice.generatedAttachmentFileNameIsInvalid.part2))}));let o=`Generated attachment file name "${r}" is invalid.
|
|
435
|
+
${a}
|
|
436
|
+
Check your 'Generated attachment file name' setting.`;throw console.error(o,e),new Error(o)}return r}i(Zn,"getGeneratedAttachmentFileBaseName");function _A(t,e){let n=e.trimEnd();return n==="."||n===".."||(n=n.replace(/[\s.]+$/,""),n=t.replaceSpecialCharacters(n)),n}i(_A,"cleanFilePathPart");async function $A(t,e){return await Nm(t,t.settings.attachmentFolderPath,e,!1)}i($A,"getAttachmentFolderPath");function Mm(t){return t==="."||t.startsWith("./")||t===".."||t.startsWith("../")}i(Mm,"isRelativePath");async function Nm(t,e,n,r){try{let a=await n.fillTemplate(e);a=a.split("/").map(l=>_A(t,l)).join("/");let s=await vn({areTokensAllowed:!1,path:a,plugin:t});if(s)throw new Error(`Resolved path ${a} is invalid: ${s}`);if(r||(Mm(a)&&(a=le(n.noteFolderPath,a)),a=(0,Ba.normalizePath)(a)),a==="."&&(a=""),Mm(a))throw new Error("Resolved path should be absolute");return a}catch(a){throw new Ba.Notice(g(o=>o.notice.couldNotResolveTemplatePath,{template:e})),console.error("Could not resolve template path",{substitutions:n,template:e}),dt(a),a}}i(Nm,"resolvePathTemplate");var ea=require("obsidian");var yn=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Rm=null,$l=class{static{i(this,"FixedZIndexDomEventsHandlersInfo")}constructor(e,n,r){this.app=e,this.path=n,r.isConnected?this.updateZIndex(r):r.onNodeInserted(()=>{this.updateZIndex(r)})}get hoverPopover(){return this._hoverPopover}set hoverPopover(e){this._hoverPopover=e,e&&this.zIndex!==void 0&&e.hoverEl.setCssStyles({zIndex:String(this.zIndex)})}_hoverPopover=null;zIndex;updateZIndex(e){this.zIndex=vm(e)+1}};async function qA(t){let e=t.sourcePath??"/",n=!1,r;t.component?r=t.component:(r=new yn.Component,r.load(),n=!0),await Tl(t.app.embedRegistry.embedByExtension,{md:i(a=>(o,s,l)=>(o.displayMode=!1,a(o,s,l)),"md")},async()=>{await yn.MarkdownRenderer.render(t.app,t.markdown,t.el,e,r)}),n&&r.unload(),t.shouldRegisterLinkHandlers&&await jm(t.app,t.el,t.sourcePath)}i(qA,"fullRender");async function jm(t,e,n){Rm??=await GA(t),yn.MarkdownPreviewRenderer.registerDomEvents(e,new Rm(new $l(t,n??"",e)))}i(jm,"registerLinkHandlers");async function Xn(t,e,n){let r=ee(t,e);n??=r;let a=createSpan();await qA({app:t,el:a,markdown:`[[${r}|${n}]]`});let o=a.find("a");return await jm(t,o),o}i(Xn,"renderInternalLink");async function GA(t){let e=t.vault.getMarkdownFiles()[0],n=!1;e||(e=await t.vault.create("__temp.md",""),n=!0);let r=null;try{if(await Tl(yn.MarkdownPreviewRenderer,{registerDomEvents:i(a=>(o,s,l)=>{r=s.constructor,a(o,s,l)},"registerDomEvents")},async()=>{let a=t.workspace.getLeaf(!0);await a.openLinkText(e.path,""),a.detach()}),!r)throw new Error("Failed to get register dom events handlers constructor");return r}finally{n&&await t.fileManager.trashFile(e)}}i(GA,"getDomEventsHandlersConstructor");var Gl=`registerCustomToken('foo', (ctx) => {
|
|
437
|
+
return ctx.noteFileName + ctx.app.appId + ctx.format + ctx.obsidian.apiVersion;
|
|
438
|
+
});
|
|
439
|
+
|
|
440
|
+
registerCustomToken('bar', async (ctx) => {
|
|
441
|
+
await sleep(100);
|
|
442
|
+
return ctx.noteFileName + ctx.app.appId + ctx.format + ctx.obsidian.apiVersion;
|
|
443
|
+
});
|
|
444
|
+
|
|
445
|
+
registerCustomToken('baz', async (ctx) => {
|
|
446
|
+
return ctx.noteFileName + await ctx.fillTemplate('corge \${grault} garply \${waldo:fred} plugh');
|
|
447
|
+
});
|
|
448
|
+
`,Lm=/(?:)/,wi=/$./;var xi=class{static{i(this,"PluginSettings")}attachmentFolderPath="./assets/${noteFileName}";attachmentRenameMode="Only pasted images";collectAttachmentUsedByMultipleNotesMode="Skip";collectedAttachmentFileName="";convertImagesToJpegMode="None";defaultImageSize="";defaultImageSizeDimension="width";duplicateNameSeparator=" ";emptyAttachmentFolderBehavior=at.DeleteWithEmptyParents;generatedAttachmentFileName="file-${date:YYYYMMDDHHmmssSSS}";jpegQuality=.8;markdownUrlFormat="";moveAttachmentToProperFolderUsedByMultipleNotesMode="CopyAll";renamedAttachmentFileName="";shouldDeleteOrphanAttachments=!1;shouldHandleRenames=!0;shouldRenameAttachmentFiles=!1;shouldRenameAttachmentFolder=!0;shouldRenameCollectedAttachments=!1;specialCharacters="#^[]|*\\<>:?/";specialCharactersReplacement="-";timeoutInSeconds=5;treatAsAttachmentExtensions=[".excalidraw.md"];version="";get customTokensStr(){return this._customTokensStr}set customTokensStr(e){this._customTokensStr=e}get excludePaths(){return this._excludePaths}set excludePaths(e){this._excludePaths=e.filter(Boolean),this._excludePathsRegExp=ql(this._excludePaths,wi)}get excludePathsFromAttachmentCollecting(){return this._excludePathsFromAttachmentCollecting}set excludePathsFromAttachmentCollecting(e){this._excludePathsFromAttachmentCollecting=e.filter(Boolean),this._excludePathsFromAttachmentCollectingRegExp=ql(this._excludePathsFromAttachmentCollecting,wi)}get includePaths(){return this._includePaths}set includePaths(e){this._includePaths=e.filter(Boolean),this._includePathsRegExp=ql(this._includePaths,Lm)}get specialCharactersRegExp(){return new RegExp(`[${fa(this.specialCharacters)}]+`,"gu")}_customTokensStr="";_excludePaths=[];_excludePathsFromAttachmentCollecting=[];_excludePathsFromAttachmentCollectingRegExp=wi;_excludePathsRegExp=wi;_includePaths=[];_includePathsRegExp=Lm;getTimeoutInMilliseconds(){return this.timeoutInSeconds===0?da:this.timeoutInSeconds*1e3}isExcludedFromAttachmentCollecting(e){return this._excludePathsFromAttachmentCollectingRegExp.test(e)}isPathIgnored(e){return!this._includePathsRegExp.test(e)||this._excludePathsRegExp.test(e)}};function ql(t,e){if(t.length===0)return e;let n=t.map(r=>r==="/"?e.source:r.startsWith("/")&&r.endsWith("/")?r.slice(1,-1):r.endsWith("/")?`^${fa(r)}`:`^${fa(r)}(/|$)`).map(r=>`(${r})`).join("|");return new RegExp(n)}i(ql,"makeRegExp");var Wl=class extends ea.Modal{constructor(n,r,a,o,s){super(n);this.attachmentPath=r;this.backlinks=a;this.resolve=o;this.isCancelMode=s}static{i(this,"CollectAttachmentUsedByMultipleNotesModal")}isSelected=!1;onClose(){this.isSelected||this.select("Cancel",!1)}onOpen(){super.onOpen(),J(()=>this.onOpenAsync())}async onOpenAsync(){super.onOpen(),new ea.Setting(this.contentEl).setName(g(a=>a.collectAttachmentUsedByMultipleNotesModal.heading)).setHeading(),this.contentEl.appendChild(await mi(async a=>{a.appendText(g(o=>o.collectAttachmentUsedByMultipleNotesModal.content.part1)),a.appendText(" "),a.appendChild(await Xn(this.app,this.attachmentPath)),a.appendText(" "),a.appendText(g(o=>o.collectAttachmentUsedByMultipleNotesModal.content.part2)),a.appendChild(await Rl("ul",{},async o=>{for(let s of this.backlinks)o.appendChild(await Rl("li",{},async l=>{l.appendChild(await Xn(this.app,s))}))}))}));let n=!1;this.isCancelMode||new ea.Setting(this.contentEl).setName(g(a=>a.collectAttachmentUsedByMultipleNotesModal.shouldUseSameActionForOtherProblematicAttachmentsToggle)).addToggle(a=>{a.setValue(!1),a.onChange(o=>{n=o})});let r=new ea.Setting(this.contentEl);this.isCancelMode||r.addButton(a=>{a.setButtonText(g(o=>o.buttons.skip)),a.onClick(()=>{this.select("Skip",n)})}).addButton(a=>{a.setButtonText(g(o=>o.buttons.move)),a.onClick(()=>{this.select("Move",n)})}).addButton(a=>{a.setButtonText(g(o=>o.buttons.copy)),a.onClick(()=>{this.select("Copy",n)})}),r.addButton(a=>{a.setButtonText(g(o=>o.obsidianDevUtils.buttons.cancel)),a.onClick(()=>{this.select("Cancel",n)})})}select(n,r){this.isSelected=!0,this.resolve({mode:n,shouldUseSameActionForOtherProblematicAttachments:r}),this.close()}};function Hl(t,e,n,r){return new Promise(a=>{new Wl(t,e,n,a,r??!1).open()})}i(Hl,"selectMode");async function WA(t,e,n,r){r.throwIfAborted();let a=t.app;if(n.isAborted)return;let o=new bn.Notice(g(s=>s.notice.collectingAttachments,{noteFilePath:e.path}),0);try{let s=Nt(a,e),l=new Set,c=await Lt(a,e);if(r.throwIfAborted(),n.isAborted||!c)return;let p=s?await JA(a,e):tt(c);r.throwIfAborted();for(let d of p){if(n.isAborted)return;let u=await HA(t,d,e.path,e.path,l);if(r.throwIfAborted(),!u)continue;if(t.settings.isExcludedFromAttachmentCollecting(u.oldAttachmentPath)){console.warn(`Skipping collecting attachment ${u.oldAttachmentPath} as it is excluded from attachment collecting.`);continue}let h=await nt(a,u.oldAttachmentPath,{timeoutInMilliseconds:t.settings.getTimeoutInMilliseconds()});if(r.throwIfAborted(),h.keys().length>1){let v=h.keys().sort((y,w)=>y.localeCompare(w)),A=v.map(y=>`- ${y}`).join(`
|
|
449
|
+
`);async function b(y){if(r.throwIfAborted(),!u)return!1;switch(y){case"Cancel":return console.error(`Cancelling collecting attachments, as attachment ${u.oldAttachmentPath} is referenced by multiple notes.
|
|
450
|
+
${A}`),t.settings.collectAttachmentUsedByMultipleNotesMode==="Cancel"&&await Hl(a,u.oldAttachmentPath,v,!0),n.isAborted=!0,!1;case"Copy":if(!u.newAttachmentPath)return console.warn(`Skipping collecting attachment ${u.oldAttachmentPath} as it is already in the destination folder.`),!1;u.newAttachmentPath=await Xr(a,u.oldAttachmentPath,u.newAttachmentPath),await mn(a,e,w=>{if(mt(a,w,e)?.path===u.oldAttachmentPath)return hn({app:a,link:w,newSourcePathOrFile:e,newTargetPathOrFile:u.newAttachmentPath??"",oldSourcePathOrFile:e,oldTargetPathOrFile:u.oldAttachmentPath})});break;case"Move":if(!u.newAttachmentPath)return console.warn(`Skipping collecting attachment ${u.oldAttachmentPath} as it is already in the destination folder.`),!1;await m(),r.throwIfAborted();break;case"Prompt":{let{mode:w,shouldUseSameActionForOtherProblematicAttachments:T}=await Hl(a,u.oldAttachmentPath,v);return T&&(n.collectAttachmentUsedByMultipleNotesMode=w),b(w)}case"Skip":return console.warn(`Skipping collecting attachment ${u.oldAttachmentPath} as it is referenced by multiple notes.
|
|
451
|
+
${A}`),!1;default:throw new Error(`Unknown collect attachment used by multiple notes mode: ${t.settings.collectAttachmentUsedByMultipleNotesMode}`)}return!0}if(i(b,"applyCollectAttachmentUsedByMultipleNotesMode"),!await b(n.collectAttachmentUsedByMultipleNotesMode??t.settings.collectAttachmentUsedByMultipleNotesMode)){r.throwIfAborted();continue}}else r.throwIfAborted(),await m(),r.throwIfAborted();async function m(){r.throwIfAborted(),u?.newAttachmentPath&&(u.newAttachmentPath=await ni(a,u.oldAttachmentPath,u.newAttachmentPath))}i(m,"registerMoveAttachment")}}finally{o.hide()}}i(WA,"collectAttachments");function Om(t){gn({abortSignal:t.abortSignal,app:t.app,operationFn:i(e=>Dm(t,[t.app.vault.getRoot()],e),"operationFn"),operationName:g(e=>e.commands.collectAttachmentsEntireVault),timeoutInMilliseconds:Bm(t)})}i(Om,"collectAttachmentsEntireVault");function Ci(t,e){gn({abortSignal:t.abortSignal,app:t.app,operationFn:i(n=>Dm(t,e,n),"operationFn"),operationName:g(n=>n.menuItems.collectAttachmentsInFile),timeoutInMilliseconds:Bm(t)})}i(Ci,"collectAttachmentsInAbstractFiles");async function Kl(t){let e=await t.plugin.app.vault.readBinary(t.attachmentFile),n=t.plugin.settings.shouldRenameCollectedAttachments?Xe(await Zn(t.plugin,new Pe({actionContext:t.actionContext,attachmentFileContent:e,attachmentFileStat:t.attachmentFile.stat,cursorLine:We(t.reference)?t.reference.position.start.line:0,noteFilePath:t.noteFilePath,originalAttachmentFileName:t.attachmentFile.name,plugin:t.plugin})),t.attachmentFile.extension):t.attachmentFile.name,r=await Ua(t.plugin,t.actionContext,t.noteFilePath,n,void 0,e,t.attachmentFile.stat),a=le(r,n);return t.attachmentFile.path===a?null:a}i(Kl,"getProperAttachmentPath");function An(t,e){if(!e||!Ue(t.app,e))return!1;let n=ee(t.app,e);return t.settings.treatAsAttachmentExtensions.every(r=>!n.endsWith(r))}i(An,"isNoteEx");async function Dm(t,e,n){n.throwIfAborted();let r=e.length===1&&ce(e[0])?e[0]:null;if(r&&t.settings.isPathIgnored(r.path)){new bn.Notice(g(d=>d.notice.notePathIsIgnored)),console.warn(`Cannot collect attachments in the note as note path is ignored: ${r.path}.`);return}if(!(!!r||await fi({app:t.app,cancelButtonText:g(d=>d.obsidianDevUtils.buttons.cancel),message:createFragment(d=>{d.appendText(g(u=>u.attachmentCollector.confirm.part1)),d.createEl("br"),d.createEl("ul",{},u=>{for(let h of e)u.createEl("li",{},m=>{R(m,h.path)})}),d.createEl("br"),d.appendText(g(u=>u.attachmentCollector.confirm.part2))}),okButtonText:g(d=>d.obsidianDevUtils.buttons.ok),title:createFragment(d=>{(0,bn.setIcon)(d.createSpan(),"lucide-alert-triangle"),d.appendText(" "),d.appendText(g(u=>u.menuItems.collectAttachmentsInFiles))})}))){n.throwIfAborted();return}t.consoleDebug(`Collect attachments in files:
|
|
452
|
+
${e.map(d=>d.path).join(`
|
|
453
|
+
`)}`);let o=new Set;for(let d of e)ce(d)&&Ue(t.app,d)&&o.add(d),wt(d)&&bn.Vault.recurseChildren(d,u=>{ce(u)&&Ue(t.app,u)&&o.add(u)});let s=Array.from(o);s.sort((d,u)=>d.path.localeCompare(u.path));let l={},c=new AbortController,p=ct(c.signal,t.abortSignal);await hi({abortSignal:p,buildNoticeMessage:i((d,u)=>g(h=>h.attachmentCollector.progressBar.message,{iterationStr:u,noteFilePath:d.path}),"buildNoticeMessage"),items:s,processItem:i(async d=>{if(p.throwIfAborted(),t.settings.isPathIgnored(d.path)){console.warn(`Cannot collect attachments in the note as note path is ignored: ${d.path}.`);return}await WA(t,d,l,p),p.throwIfAborted(),l.isAborted&&c.abort()},"processItem"),progressBarTitle:`${t.manifest.name}: ${g(d=>d.attachmentCollector.progressBar.title)}`,shouldContinueOnError:!0,shouldShowProgressBar:!0})}i(Dm,"collectAttachmentsInAbstractFilesImpl");async function JA(t,e){return(await t.vault.readJson(e.path)).nodes.filter(a=>a.type==="file").map(a=>a.file).map(a=>({link:a,original:a,position:{end:{col:0,line:0,loc:0,offset:0},start:{col:0,line:0,loc:0,offset:0}}}))}i(JA,"getCanvasLinks");function Bm(t){return t.settings.collectAttachmentUsedByMultipleNotesMode==="Prompt"||_l(t.settings.attachmentFolderPath)||_l(t.settings.generatedAttachmentFileName)?da:t.settings.getTimeoutInMilliseconds()}i(Bm,"getTimeoutInMilliseconds");async function HA(t,e,n,r,a){let o=t.app,s=mt(o,e,r,!0);return!s||An(t,s)||a.has(s.path)?null:(a.add(s.path),s.deleted?(console.warn(`Skipping collecting attachment ${e.link} as it could not be resolved.`),null):{newAttachmentPath:await Kl({actionContext:"CollectAttachments",attachmentFile:s,noteFilePath:n,plugin:t,reference:e}),oldAttachmentPath:s.path})}i(HA,"prepareAttachmentToMove");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Ti=class{static{i(this,"CommandBase")}icon;id;name;app;originalId;originalName;plugin;constructor(e){this.id=e.id,this.name=e.name,this.icon=e.icon,this.plugin=e.plugin,this.app=this.plugin.app,this.originalId=this.id,this.originalName=this.name}register(){this.plugin.addCommand(this)}},wn=class{static{i(this,"CommandInvocationBase")}constructor(e){this.plugin=e,this.app=e.app}app;lastCanExecuteResult;invoke(e){return this.lastCanExecuteResult=this.canExecute(),!e&&this.lastCanExecuteResult&&J(()=>this.execute()),this.lastCanExecuteResult}async invokeAsync(e){this.lastCanExecuteResult=this.canExecute(),!e&&this.lastCanExecuteResult&&await this.execute()}canExecute(){return!0}async execute(){if(this.lastCanExecuteResult===void 0)throw new Error("canExecute() must be called before execute()");if(!this.lastCanExecuteResult)throw new Error("canExecute() must return true before execute()");await Promise.resolve()}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var ta=class extends Ti{static{i(this,"NonEditorCommandBase")}checkCallback(e){return this.createCommandInvocation().invoke(e)}};var Yl=class extends wn{static{i(this,"CollectAttachmentsEntireVaultCommandInvocation")}constructor(e){super(e)}async execute(){Om(this.plugin),await Promise.resolve()}},Si=class extends ta{static{i(this,"CollectAttachmentsEntireVaultCommand")}constructor(e){super({icon:"download",id:"collect-attachments-entire-vault",name:g(n=>n.commands.collectAttachmentsEntireVault),plugin:e})}createCommandInvocation(){return new Yl(this.plugin)}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Gt=class extends ta{static{i(this,"AbstractFileCommandBase")}fileMenuItemName;fileMenuSection;filesMenuItemName;filesMenuSection;checkCallback(e){return this.shouldAddToCommandPalette()?super.checkCallback(e):!1}register(){super.register(),this.plugin.registerEvent(this.app.workspace.on("file-menu",this.handleAbstractFileMenu.bind(this))),this.plugin.registerEvent(this.app.workspace.on("files-menu",this.handleAbstractFilesMenu.bind(this)))}createCommandInvocation(e){return this.createCommandInvocationForAbstractFile(e??this.app.workspace.getActiveFile())}createCommandInvocationForAbstractFiles(e){return new Ql(this.plugin,e,this.createCommandInvocationForAbstractFile.bind(this))}shouldAddToAbstractFileMenu(e,n,r){return!1}shouldAddToAbstractFilesMenu(e,n,r){for(let a of e)if(!this.shouldAddToAbstractFileMenu(a,n,r))return!1;return!0}shouldAddToCommandPalette(){return!0}handleAbstractFileMenu(e,n,r,a){this.shouldAddToAbstractFileMenu(n,r,a)&&this.createCommandInvocation(n).invoke(!0)&&e.addItem(o=>{o.setTitle(this.fileMenuItemName??this.originalName).setIcon(this.icon).setSection(this.fileMenuSection??"").onClick(()=>this.createCommandInvocation(n).invoke(!1))})}handleAbstractFilesMenu(e,n,r,a){this.shouldAddToAbstractFilesMenu(n,r,a)&&this.createCommandInvocationForAbstractFiles(n).invoke(!0)&&e.addItem(o=>{o.setTitle(this.filesMenuItemName??this.fileMenuItemName??this.originalName).setIcon(this.icon).setSection(this.filesMenuSection??this.fileMenuSection??"").onClick(()=>this.createCommandInvocationForAbstractFiles(n).invoke(!1))})}},Va=class extends wn{static{i(this,"AbstractFileCommandInvocationBase")}_abstractFile;get abstractFile(){if(!this._abstractFile)throw new Error("Abstract file not set");return this._abstractFile}constructor(e,n){super(e),this._abstractFile=n}canExecute(){return super.canExecute()&&!!this._abstractFile}},Dt=class extends wn{static{i(this,"AbstractFilesCommandInvocationBase")}constructor(e,n){super(e),this.abstractFiles=n}},na=class extends Va{static{i(this,"ArrayDelegatingAbstractFileCommandInvocation")}constructor(e,n,r){super(e,n),this.createCommandInvocationForFiles=r}canExecute(){return super.canExecute()&&this.createCommandInvocationForFiles([this.abstractFile]).invoke(!0)}async execute(){await this.createCommandInvocationForFiles([this.abstractFile]).invokeAsync(!1)}},Ql=class extends Dt{static{i(this,"SequentialAbstractFilesCommandInvocationBase")}constructor(e,n,r){super(e,n),this.createCommandInvocationForFile=r}canExecute(){return super.canExecute()&&this.abstractFiles.length>0&&this.abstractFiles.every(e=>this.createCommandInvocationForFile(e).invoke(!0))}async execute(){for(let e of this.abstractFiles)await this.createCommandInvocationForFile(e).invokeAsync(!1)}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Pi=class extends Va{static{i(this,"FolderCommandInvocationBase")}get folder(){return es(this._abstractFile)}canExecute(){return super.canExecute()&&!!this.folder}};var Ei=class extends Gt{static{i(this,"FolderCommandBase")}createCommandInvocation(e){let n=kr(e??null)??this.app.workspace.getActiveFile()?.parent??null;return this.createCommandInvocationForFolder(n)}createCommandInvocationForAbstractFile(e){return this.createCommandInvocationForFolder(kr(e))}createCommandInvocationForAbstractFiles(e){return this.createCommandInvocationForFolders(Xo(e))}createCommandInvocationForFolders(e){return new Xl(this.plugin,e,this.createCommandInvocationForFolder.bind(this))}shouldAddToAbstractFileMenu(e,n,r){return wt(e)?this.shouldAddToFolderMenu(e,n,r):!1}shouldAddToAbstractFilesMenu(e,n,r){return e.every(a=>wt(a))?this.shouldAddToFoldersMenu(Xo(e),n,r):!1}shouldAddToFolderMenu(e,n,r){return!1}shouldAddToFoldersMenu(e,n,r){return!1}},Zl=class extends Dt{static{i(this,"FoldersCommandInvocationBase")}constructor(e,n){super(e,n),this.folders=n}},Xl=class extends Zl{static{i(this,"SequentialFoldersCommandInvocationBase")}constructor(e,n,r){super(e,n),this.createCommandInvocationForFolder=r}canExecute(){return super.canExecute()&&this.folders.length>0&&this.folders.every(e=>this.createCommandInvocationForFolder(e).invoke(!0))}async execute(){for(let e of this.folders)await this.createCommandInvocationForFolder(e).invokeAsync(!1)}};var ec=class extends Pi{static{i(this,"CollectAttachmentsInFolderCommandInvocation")}constructor(e,n){super(e,n)}async execute(){Ci(this.plugin,[this.folder]),await Promise.resolve()}},Fi=class extends Ei{static{i(this,"CollectAttachmentsInCurrentFolderCommand")}constructor(e){super({icon:"download",id:"collect-attachments-in-current-folder",name:g(n=>n.commands.collectAttachmentsCurrentFolder),plugin:e})}createCommandInvocationForFolder(e){return new ec(this.plugin,e)}};var tc=class extends Dt{static{i(this,"CollectAttachmentsInFilesCommandInvocation")}constructor(e,n){super(e,n)}canExecute(){if(!super.canExecute())return!1;for(let e of this.abstractFiles)if(ce(e)&&!Ue(this.app,e))return!1;return!0}async execute(){Ci(this.plugin,this.abstractFiles)}},Ii=class extends Gt{static{i(this,"CollectAttachmentsInFileCommand")}fileMenuItemName=g(e=>e.menuItems.collectAttachmentsInFile);filesMenuItemName=g(e=>e.menuItems.collectAttachmentsInFiles);constructor(e){super({icon:"download",id:"collect-attachments-in-file",name:g(n=>n.commands.collectAttachmentsCurrentNote),plugin:e})}createCommandInvocationForAbstractFile(e){return new na(this.plugin,e,this.createCommandInvocationForAbstractFiles.bind(this))}createCommandInvocationForAbstractFiles(e){return new tc(this.plugin,e)}shouldAddToAbstractFileMenu(){return!0}shouldAddToAbstractFilesMenu(){return!0}};var Mi=require("obsidian");var aa=require("obsidian");var nc=class extends aa.Modal{constructor(n,r,a,o,s){super(n);this.attachmentPath=r;this.backlinks=a;this.resolve=o;this.isCancelMode=s}static{i(this,"MoveAttachmentToProperFolderUsedByMultipleNotesModal")}isSelected=!1;selectedBacklinks=new Set;onClose(){this.isSelected||this.select("Cancel",!1)}onOpen(){super.onOpen(),J(()=>this.onOpenAsync())}async onOpenAsync(){new aa.Setting(this.contentEl).setName(g(a=>a.moveAttachmentToProperFolderUsedByMultipleNotesModal.heading)).setHeading(),this.contentEl.appendChild(await mi(async a=>{a.appendText(g(o=>o.moveAttachmentToProperFolderUsedByMultipleNotesModal.content.part1)),a.appendText(" "),a.appendChild(await Xn(this.app,this.attachmentPath)),a.appendText(" "),a.appendText(g(o=>o.moveAttachmentToProperFolderUsedByMultipleNotesModal.content.part2)),a.createEl("br"),a.appendText(g(o=>o.moveAttachmentToProperFolderUsedByMultipleNotesModal.content.part3)),a.createEl("br");for(let o of this.backlinks)this.selectedBacklinks.add(o),a.createEl("br"),a.createEl("input",{attr:{checked:!0},type:"checkbox"}),a.appendChild(await Xn(this.app,o));a.createEl("br"),a.createEl("br")}));let n=!1;this.isCancelMode||new aa.Setting(this.contentEl).setName(g(a=>a.moveAttachmentToProperFolderUsedByMultipleNotesModal.shouldUseSameActionForOtherProblematicAttachmentsToggle)).addToggle(a=>{a.setValue(!1),a.onChange(o=>{n=o})});let r=new aa.Setting(this.contentEl);this.isCancelMode||r.addButton(a=>{a.setButtonText(g(o=>o.buttons.skip)),a.onClick(()=>{this.select("Skip",n)})}).addButton(a=>{a.setButtonText(g(o=>o.buttons.copyAll)),a.onClick(()=>{this.select("CopyAll",n)})}).addButton(a=>{a.setButtonText(g(o=>o.buttons.select)),a.onClick(()=>{this.select("Prompt",n)})}),r.addButton(a=>{a.setButtonText(g(o=>o.obsidianDevUtils.buttons.cancel)),a.onClick(()=>{this.select("Cancel",n)})})}select(n,r){this.isSelected=!0,this.resolve({backlinksToCopy:Array.from(this.selectedBacklinks).sort((a,o)=>a.localeCompare(o)),mode:n,shouldUseSameActionForOtherProblematicAttachments:r}),this.close()}};function ac(t,e,n,r){return new Promise(a=>{new nc(t,e,n,a,r??!1).open()})}i(ac,"selectMode");var rc=class extends Dt{static{i(this,"MoveAttachmentToProperFolderCommandInvocation")}constructor(e,n){super(e,n)}canExecute(){if(!super.canExecute())return!1;for(let e of this.abstractFiles)if(ce(e)&&An(this.plugin,e))return!1;return!0}async execute(){let e=new Set;for(let s of this.abstractFiles)ce(s)&&!An(this.plugin,s)&&e.add(s),wt(s)&&Mi.Vault.recurseChildren(s,l=>{ce(l)&&!An(this.plugin,l)&&e.add(l)});let n=Array.from(e);n.sort((s,l)=>s.path.localeCompare(l.path));let r=new AbortController,a=ct(r.signal,this.plugin.abortSignal),o={};await hi({abortSignal:a,buildNoticeMessage:i((s,l)=>g(c=>c.moveAttachmentToProperFolder.progressBar.message,{attachmentFilePath:s.path,iterationStr:l}),"buildNoticeMessage"),items:n,processItem:i(async s=>{if(a.throwIfAborted(),this.plugin.settings.isPathIgnored(s.path)){console.warn(`Cannot move attachment to proper folder as attachment path is ignored: ${s.path}.`);return}await this.moveAttachmentToProperFolder(s,o)&&a.throwIfAborted()},"processItem"),progressBarTitle:`${this.plugin.manifest.name}: ${g(s=>s.moveAttachmentToProperFolder.progressBar.title)}`,shouldContinueOnError:!0,shouldShowProgressBar:!0})}async moveAttachmentToProperFolder(e,n){let r=await nt(this.plugin.app,e);if(r.keys().length===0)return new Mi.Notice(g(l=>l.moveAttachmentToProperFolder.unusedAttachment,{attachmentPath:e.path})),!0;let a=[],o=this;if(r.keys().length>1&&!await s(n.mode??this.plugin.settings.moveAttachmentToProperFolderUsedByMultipleNotesMode))return!1;for(let l of a){let c=this.plugin.app.vault.getFileByPath(l);if(!c)continue;let p=r.get(l)?.[0];if(!p)continue;let d=await Kl({actionContext:"MoveAttachmentToProperFolder",attachmentFile:e,noteFilePath:l,plugin:this.plugin,reference:p});if(!d){console.warn(`Skipping moving attachment ${e.path} to proper folder as it is already in the destination folder.`);continue}let u=new Set((r.get(l)??[]).map(h=>tn(h)));await Xr(this.plugin.app,e,d),await mn(this.plugin.app,c,h=>{let m=tn(h);if(u.has(m))return hn({app:this.plugin.app,link:h,newSourcePathOrFile:c,newTargetPathOrFile:d,oldTargetPathOrFile:e})})}return r=await nt(this.plugin.app,e),r.keys().length===0&&await fn(this.plugin.app,e),!0;async function s(l){switch(l){case"Cancel":return o.plugin.settings.moveAttachmentToProperFolderUsedByMultipleNotesMode==="Cancel"&&await ac(o.plugin.app,e.path,Array.from(r.keys()),!0),!1;case"CopyAll":return a=Array.from(r.keys()),!0;case"Prompt":{let{backlinksToCopy:c,mode:p,shouldUseSameActionForOtherProblematicAttachments:d}=await ac(o.plugin.app,e.path,Array.from(r.keys()));return d&&(n.mode=p),p==="Prompt"?(a=c,!0):s(p)}case"Skip":return a=[],!0;default:return!1}}i(s,"handleMode")}},zi=class extends Gt{static{i(this,"MoveAttachmentToProperFolderCommand")}constructor(e){super({icon:"move",id:"move-attachment-to-proper-folder",name:g(n=>n.commands.moveAttachmentToProperFolder),plugin:e})}createCommandInvocationForAbstractFile(e){return new na(this.plugin,e,this.createCommandInvocationForAbstractFiles.bind(this))}createCommandInvocationForAbstractFiles(e){return new rc(this.plugin,e)}shouldAddToAbstractFileMenu(){return!0}shouldAddToAbstractFilesMenu(){return!0}};var Vm={attachmentCollector:{confirm:{part1:"\u1260\u12A0\u1243\u134A\u12CE\u127D \u12CD\u1235\u1325 \u120B\u1209 \u1201\u1209\u121D \u121B\u1235\u1273\u12C8\u123B\u12CE\u127D \u1270\u12EB\u12EB\u12E5 \u134B\u12ED\u120E\u127D\u1295 \u1260\u1270\u12F0\u130B\u130B\u121A \u1218\u1230\u1265\u1230\u1265 \u1275\u1348\u120D\u130B\u1208\u1205?",part2:"\u12ED\u1205 \u12A5\u122D\u121D\u1303 \u1218\u1218\u1208\u1235 \u12A0\u12ED\u127B\u120D\u121D\u1362"},progressBar:{message:"\u1270\u12EB\u12EB\u12E5 \u134B\u12ED\u120E\u127D\u1295 \u1260\u1218\u1230\u1265\u1230\u1265 \u120B\u12ED {{iterationStr}} - '{{noteFilePath}}'\u1362",title:"\u1270\u12EB\u12EB\u12E5 \u134B\u12ED\u120E\u127D\u1295 \u1260\u1218\u1230\u1265\u1230\u1265 \u120B\u12ED..."}},buttons:{copy:"\u1218\u1245\u12F3\u1275",move:"\u1218\u12CD\u1230\u12F5",previewAttachmentFile:"\u1270\u12EB\u12EB\u12E5 \u134B\u12ED\u120D \u1245\u12F5\u1218 \u12A5\u12ED\u1273",skip:"\u1218\u12DD\u1208\u134D"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"\u1270\u12EB\u12EB\u12E5",part2:"\u1260\u1260\u122D\u12AB\u1273 \u121B\u1235\u1273\u12C8\u123B\u12CE\u127D \u12ED\u1320\u1240\u1233\u120D\u1362"},heading:"\u1260\u1260\u122D\u12AB\u1273 \u121B\u1235\u1273\u12C8\u123B\u12CE\u127D \u12E8\u121A\u1320\u1240\u121D \u1270\u12EB\u12EB\u12E5 \u1218\u1230\u1265\u1230\u1265",shouldUseSameActionForOtherProblematicAttachmentsToggle:"\u1208\u120C\u120E\u127D \u127D\u130D\u122D \u12EB\u120B\u1278\u12CD \u1270\u12EB\u12EB\u12E6\u127D \u1270\u1218\u1233\u1233\u12ED \u12A5\u122D\u121D\u1303 \u1218\u1320\u1240\u121D \u12A0\u1208\u1260\u1275"},commands:{collectAttachmentsCurrentFolder:"\u1260\u12A0\u1201\u1291 \u134E\u120D\u12F0\u122D \u12CD\u1235\u1325 \u1270\u12EB\u12EB\u12E6\u127D\u1295 \u1218\u1230\u1265\u1230\u1265",collectAttachmentsCurrentNote:"\u1260\u12A0\u1201\u1291 \u121B\u1235\u1273\u12C8\u123B \u12CD\u1235\u1325 \u1270\u12EB\u12EB\u12E6\u127D\u1295 \u1218\u1230\u1265\u1230\u1265",collectAttachmentsEntireVault:"\u1260\u1219\u1209 \u126B\u12CD\u120D\u1275 \u12CD\u1235\u1325 \u1270\u12EB\u12EB\u12E6\u127D\u1295 \u1218\u1230\u1265\u1230\u1265"},menuItems:{collectAttachmentsInFile:"\u1260\u134B\u12ED\u120D \u12CD\u1235\u1325 \u1270\u12EB\u12EB\u12E5 \u134B\u12ED\u120E\u127D\u1295 \u1230\u1265\u1235\u1265",collectAttachmentsInFiles:"\u1260\u134B\u12ED\u120E\u127D \u12CD\u1235\u1325 \u1270\u12EB\u12EB\u12E5 \u134B\u12ED\u120E\u127D\u1295 \u1230\u1265\u1235\u1265"},notice:{collectingAttachments:"\u1208 '{{noteFilePath}}' \u1270\u12EB\u12EB\u12E6\u127D\u1295 \u1260\u1218\u1230\u1265\u1230\u1265 \u120B\u12ED",collectingAttachmentsCancelled:"\u1270\u12EB\u12EB\u12E6\u127D\u1295 \u1218\u1230\u1265\u1230\u1265 \u1270\u1230\u122D\u12DF\u120D\u1362 \u1208\u12DD\u122D\u12DD\u122E\u127D \u12AE\u1295\u1236\u120D \u12ED\u1218\u120D\u12A8\u1271\u1362",generatedAttachmentFileNameIsInvalid:{part1:`\u12E8\u1270\u1348\u1320\u1228\u12CD \u1270\u12EB\u12EB\u12E5 \u134B\u12ED\u120D \u1235\u121D '{{path}}' \u12E8\u121B\u12ED\u1230\u122B \u1290\u12CD\u1362
|
|
454
|
+
{{validationMessage}}
|
|
455
|
+
\u12E8\u12A5\u122D\u1235\u12CE\u1295`,part2:"\u1245\u1295\u1265\u122D \u12ED\u1348\u1275\u1239\u1362"},notePathIsIgnored:"\u12E8\u121B\u1235\u1273\u12C8\u123B \u1218\u1295\u1308\u12F5 \u127D\u120B \u1270\u1265\u120F\u120D"},obsidianDevUtils:{buttons:{cancel:"\u1218\u1230\u1228\u12DD",ok:"\u12A5\u123A"},dataview:{itemsPerPage:"\u1260\u12A0\u1295\u12F5 \u1308\u133D \u12CD\u1235\u1325 \u12EB\u1209 \u1295\u1325\u120E\u127D:",jumpToPage:"\u12C8\u12F0 \u1308\u133D \u1218\u12DD\u1208\u134D:"},notices:{attachmentIsStillUsed:"\u1270\u12EB\u12EB\u12E5 {{attachmentPath}} \u12A0\u1201\u1295\u121D \u1260\u120C\u120E\u127D \u121B\u1235\u1273\u12C8\u123B\u12CE\u127D \u12ED\u1320\u1240\u121B\u120D\u1362 \u12A0\u12ED\u1230\u1228\u12DD\u121D\u1362",unhandledError:"\u12EB\u120D\u1270\u1246\u1323\u1320\u1228 \u1235\u1205\u1270\u1275 \u1270\u12A8\u1235\u1277\u120D\u1362 \u1208\u1270\u1328\u121B\u122A \u1218\u1228\u1303 \u12AE\u1295\u1236\u120D \u12ED\u1348\u1275\u1239\u1362"}},pluginSettings:{attachmentRenameMode:{all:{description:"\u1201\u1209\u121D \u134B\u12ED\u120E\u127D \u12ED\u1230\u12E8\u121B\u1209\u1362",displayText:"\u1201\u1209\u121D"},none:{description:"\u1235\u121E\u127B\u1278\u12CD \u12ED\u1320\u1260\u1243\u1209\u1362",displayText:"\u121D\u1295\u121D"},onlyPastedImages:{description:"\u12E8\u1270\u1323\u1260\u1241 \u121D\u1235\u120E\u127D \u1265\u127B \u12ED\u1230\u12E8\u121B\u1209\u1362 \u12E8 PNG \u121D\u1235\u120D \u12ED\u12D8\u1275 \u12A8\u12AD\u120A\u1355\u1266\u122D\u12F5 \u1260\u1240\u1325\u1273 \u1232\u1323\u1260\u1245 \u1265\u127B \u12ED\u1270\u1308\u1260\u122B\u120D\u1362 \u1260\u1270\u1208\u121D\u12F6\u1363 \u1235\u12AD\u122A\u1295\u123E\u127D\u1295 \u1208\u1218\u1323\u1260\u1245\u1362",displayText:"\u12E8\u1270\u1323\u1260\u1241 \u121D\u1235\u120E\u127D \u1265\u127B"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"\u1270\u12EB\u12EB\u12E5 \u1218\u1230\u1265\u1230\u1265 \u1218\u1230\u1228\u12DD\u1362",displayText:"\u1218\u1230\u1228\u12DD"},copy:{description:"\u1270\u12EB\u12EB\u12E5\u1295 \u12C8\u12F0 \u12A0\u12F2\u1231 \u1266\u1273 \u1218\u1245\u12F3\u1275\u1362",displayText:"\u1218\u1245\u12F3\u1275"},move:{description:"\u1270\u12EB\u12EB\u12E5\u1295 \u12C8\u12F0 \u12A0\u12F2\u1231 \u1266\u1273 \u1218\u12CD\u1230\u12F5\u1362",displayText:"\u1218\u12CD\u1230\u12F5"},prompt:{description:"\u1270\u1320\u1243\u121A\u12CD\u1295 \u12A5\u122D\u121D\u1303 \u12A5\u1295\u12F2\u1218\u122D\u1325 \u121B\u1235\u1320\u1295\u1240\u1245\u1362",displayText:"\u121B\u1235\u1320\u1295\u1240\u1245"},skip:{description:"\u1270\u12EB\u12EB\u12E5\u1295 \u1218\u12DD\u1208\u134D \u12A5\u1293 \u12C8\u12F0 \u1240\u1323\u12E9 \u1218\u1240\u1320\u120D\u1362",displayText:"\u1218\u12DD\u1208\u134D"}},defaultImageSizeDimension:{height:"\u12A5\u122D\u12DD\u1218\u1275",width:"\u1235\u134B\u1275"},emptyAttachmentFolderBehavior:{delete:{description:"\u1263\u12F6\u12CD\u1295 \u1270\u12EB\u12EB\u12E5 \u134E\u120D\u12F0\u122D \u12ED\u1230\u122D\u12DB\u120D\u1362",displayText:"\u1218\u1230\u1228\u12DD"},deleteWithEmptyParents:{description:"\u1263\u12F6\u12CD\u1295 \u1270\u12EB\u12EB\u12E5 \u134E\u120D\u12F0\u122D \u12A5\u1293 \u1263\u12F6\u12CE\u1279\u1295 \u12E8\u12C8\u120B\u1305 \u134E\u120D\u12F0\u122E\u127D \u12ED\u1230\u122D\u12DB\u120D\u1362",displayText:"\u1263\u12F6 \u12C8\u120B\u1306\u127D \u130B\u122D \u1218\u1230\u1228\u12DD"},keep:{description:"\u1263\u12F6\u12CD\u1295 \u1270\u12EB\u12EB\u12E5 \u134E\u120D\u12F0\u122D \u12ED\u1320\u1265\u1243\u120D\u1362",displayText:"\u1218\u1320\u1260\u1245"}}},pluginSettingsManager:{customToken:{codeComment:`// \u12E8\u1270\u1208\u1218\u12F1 \u1276\u12A8\u1296\u127D \u1260\u1355\u120B\u130A\u1295 \u1225\u122A\u1275 9.0.0 \u12CD\u1235\u1325 \u12E8\u1270\u12CB\u12C8\u1240\u12CD\u1295 \u12A0\u12F2\u1235 \u1245\u122D\u1338\u1275 \u121B\u12D8\u1218\u1295 \u1235\u1208\u121A\u12EB\u1235\u1348\u120D\u130B\u1278\u12CD \u1270\u1230\u12ED\u1218\u12CB\u120D\u1362
|
|
456
|
+
// \u1208\u1270\u1328\u121B\u122A \u1218\u1228\u1303 \u1230\u1290\u12F1\u1295 \u12ED\u1218\u120D\u12A8\u1271 (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens)\u1362`,deprecated:{part1:"\u1260\u1355\u120B\u130A\u1295 \u1225\u122A\u1275 9.0.0 \u12CD\u1235\u1325\u1363 \u12E8\u1270\u1208\u1218\u12F1 \u1276\u12A8\u1295 \u121D\u12DD\u1308\u1263 \u1245\u122D\u1338\u1275 \u1270\u1208\u12C8\u1320\u1362 \u12A5\u1263\u12AD\u12CE \u1276\u12A8\u1296\u127D\u12CE\u1295 \u1260\u12DA\u1201 \u1218\u1230\u1228\u1275 \u12EB\u12D8\u121D\u1291\u1362 \u12C8\u12F0",part2:"\u1230\u1290\u12F5",part3:"\u1208\u1270\u1328\u121B\u122A \u1218\u1228\u1303 \u12ED\u1218\u120D\u12A8\u1271"}},legacyRenameAttachmentsToLowerCase:{part1:"\u1260\u1355\u120B\u130A\u1295 \u1225\u122A\u1275 9.0.0 \u12CD\u1235\u1325\u1363",part2:"\u1245\u1295\u1265\u122D \u1270\u1230\u122D\u12DF\u120D\u1362 \u1260\u121D\u1275\u12A9",part3:"\u1245\u122D\u1338\u1275 \u12ED\u1320\u1240\u1219\u1362 \u12ED\u1218\u120D\u12A8\u1271",part4:"\u1230\u1290\u12F5",part5:"\u1208\u1270\u1328\u121B\u122A \u1218\u1228\u1303"},markdownUrlFormat:{deprecated:{part1:"\u1208",part2:"\u1245\u122D\u1338\u1275 \u121D\u1293\u120D\u1263\u1275 \u12E8\u121B\u12ED\u1230\u122B \u12A5\u1234\u1275 \u12A0\u1235\u1240\u1218\u1325\u12CE\u1273\u120D\u1362 \u12A5\u1263\u12AD\u12CE \u12C8\u12F0",part3:"\u1230\u1290\u12F5",part4:"\u1208\u1270\u1328\u121B\u122A \u1218\u1228\u1303 \u12ED\u1218\u120D\u12A8\u1271",part5:"\u12ED\u1205 \u1218\u120D\u12D5\u12AD\u1275 \u12A5\u1295\u12F0\u1308\u1293 \u12A0\u12ED\u1273\u12ED\u121D\u1362"}},specialCharacters:{part1:"\u1260\u1355\u120B\u130A\u1295 \u1225\u122A\u1275 9.16.0 \u12CD\u1235\u1325\u1363",part2:"\u12E8\u1218\u1230\u1228\u1275 \u1245\u1295\u1265\u122D \u12A5\u1234\u1275 \u1270\u1208\u12C8\u1320\u1362 \u12E8\u12A5\u122D\u1235\u12CE \u1245\u1295\u1265\u122D \u12A5\u1234\u1275 \u12C8\u12F0 \u12A0\u12F2\u1231 \u12E8\u1218\u1230\u1228\u1275 \u12A5\u1234\u1275 \u1270\u12D8\u1218\u1290\u1362"},validation:{defaultImageSizeMustBePercentageOrPixels:"\u1290\u1263\u122A \u12E8\u121D\u1235\u120D \u1218\u1320\u1295 \u1260\u1352\u12AD\u1235\u120D \u12C8\u12ED\u121D \u1260\u1218\u1276\u129B \u1218\u1206\u1295 \u12A0\u1208\u1260\u1275",invalidCustomTokensCode:"\u12E8\u121B\u12ED\u1230\u122B \u12E8\u1270\u1208\u1218\u12F1 \u1276\u12A8\u1296\u127D \u12AE\u12F5",invalidRegularExpression:"\u12E8\u121B\u12ED\u1230\u122B \u1218\u12F0\u1260\u129B \u12A0\u1308\u120B\u1208\u133D {{regExp}}",specialCharactersMustNotContainSlash:"\u120D\u12E9 \u1241\u121D\u134A\u12CE\u127D / \u1218\u12EB\u12DD \u12E8\u1208\u1263\u1278\u12CD\u121D",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"\u120D\u12E9 \u1241\u121D\u134A \u1218\u1270\u12AB\u1275 \u12E8\u121B\u12ED\u1230\u122B \u12E8\u134B\u12ED\u120D \u1235\u121D \u1218\u1295\u1308\u12F5 \u1241\u121D\u134A\u12CE\u127D \u1218\u12EB\u12DD \u12E8\u1208\u1263\u1278\u12CD\u121D\u1362"},version:{part1:"\u12E8\u12A5\u122D\u1235\u12CE \u1245\u1295\u1265\u122D \u134B\u12ED\u120D ",part2:"\u1225\u122A\u1275 \u12A0\u1208\u12CD",part3:"\u12A5\u1231\u121D \u12A8\u12A0\u1201\u1291 \u1355\u120B\u130A\u1295 \u1225\u122A\u1275 \u12E8\u1260\u1208\u1320 \u12A0\u12F2\u1235 \u1290\u12CD",part4:"\u1355\u120B\u130A\u1291 \u12A5\u1295\u12F0\u121A\u1320\u1260\u1240\u12CD \u120B\u12ED\u1230\u122B \u12ED\u127D\u120B\u120D\u1362 \u12A5\u1263\u12AD\u12CE \u1355\u120B\u130A\u1291\u1295 \u12C8\u12F0 \u12E8\u1245\u122D\u1265 \u130A\u12DC \u1225\u122A\u1275 \u12EB\u12D8\u121D\u1291 \u12C8\u12ED\u121D \u1245\u1295\u1265\u122E\u1279 \u1275\u12AD\u12AD\u120D \u1218\u1206\u1293\u1278\u12CD\u1295 \u12EB\u1228\u130B\u130D\u1321\u1362"}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"\u134B\u12ED\u120E\u127D \u1232\u1323\u1260\u1241:"},name:"\u1270\u12EB\u12EB\u12E5 \u1235\u121D \u1218\u1208\u12C8\u132B \u1201\u1290\u1273"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"\u12E8\u1270\u1230\u1260\u1230\u1260\u12CD \u1270\u12EB\u12EB\u12E5 \u1260\u1260\u122D\u12AB\u1273 \u121B\u1235\u1273\u12C8\u123B\u12CE\u127D \u1232\u1320\u1240\u121D:"},name:"\u1260\u1260\u122D\u12AB\u1273 \u121B\u1235\u1273\u12C8\u123B\u12CE\u127D \u12E8\u121A\u1320\u1240\u121D \u1270\u12EB\u12EB\u12E5 \u1218\u1230\u1265\u1230\u1265 \u1201\u1290\u1273"},collectedAttachmentFileName:{description:{part1:"\u12E8\u121A\u1308\u1299",part2:"\u1276\u12A8\u1296\u127D\u1295 \u12ED\u1218\u120D\u12A8\u1271",part3:"\u1263\u12F6 \u12ED\u1270\u12CD",part4:"\u1245\u1295\u1265\u122D\u1295 \u1260\u121D\u1275\u12A9 \u1208\u1218\u1320\u1240\u121D\u1362"},name:"\u12E8\u1270\u1230\u1260\u1230\u1260 \u1270\u12EB\u12EB\u12E5 \u134B\u12ED\u120D \u1235\u121D"},customTokens:{description:{part1:"\u12E8\u121A\u1320\u1240\u1219 \u12E8\u1270\u1208\u1218\u12F1 \u1276\u12A8\u1296\u127D\u1362",part2:"\u12ED\u1218\u120D\u12A8\u1271",part3:"\u1230\u1290\u12F5",part4:"\u1208\u1270\u1328\u121B\u122A \u1218\u1228\u1303\u1362",part5:"\u26A0\uFE0F \u12E8\u1270\u1208\u1218\u12F1 \u1276\u12A8\u1296\u127D \u12E8\u12D8\u1348\u1240\u12F0 JavaScript \u12AE\u12F5 \u120A\u1206\u1291 \u12ED\u127D\u120B\u1209\u1362 \u1260\u1218\u1325\u134E \u1201\u1294\u1273 \u12A8\u1270\u133B\u1349\u1363 \u12E8\u1218\u1228\u1303 \u12AA\u1233\u122B \u120A\u12EB\u1235\u12A8\u1275\u1209 \u12ED\u127D\u120B\u1209\u1362 \u1260\u122B\u1235\u12CE \u12A0\u12F0\u130B \u12ED\u1320\u1240\u1219\u1275\u1362"},name:"\u12E8\u1270\u1208\u1218\u12F1 \u1276\u12A8\u1296\u127D"},defaultImageSize:{description:{part1:"\u1290\u1263\u122A \u12E8\u121D\u1235\u120D \u1218\u1320\u1295\u1362",part2:"\u1260\u1352\u12AD\u1235\u120D \u1218\u12C8\u1230\u1295 \u12ED\u127D\u120B\u120D",part3:"\u12C8\u12ED\u121D \u12A8\u1219\u1209 \u12E8\u121D\u1235\u120D \u1218\u1320\u1295 \u1218\u1276\u129B",part4:"\u12A6\u122A\u1305\u1293\u120D \u1218\u1320\u1295 \u1208\u1218\u1320\u1240\u121D \u1263\u12F6 \u12ED\u1270\u12CD\u1362"},name:"\u1290\u1263\u122A \u12E8\u121D\u1235\u120D \u1218\u1320\u1295"},duplicateNameSeparator:{description:{part1:"\u12A8\u1290\u1263\u122D \u134B\u12ED\u120D \u1270\u1218\u1233\u1233\u12ED \u1235\u121D \u12EB\u1208\u12CD \u134B\u12ED\u120D \u1232\u1323\u1260\u1245/\u1232\u130E\u1270\u1275\u1363 \u12ED\u1205 \u1218\u1208\u12EB\u12EB \u12C8\u12F0 \u134B\u12ED\u120D \u1235\u121D \u12ED\u1328\u1218\u122B\u120D\u1362",part2:"\u1208\u121D\u1233\u120C\u1363 \u134B\u12ED\u120D",part3:"\u1295 \u1232\u130E\u1270\u1271\u1363 \u12C8\u12F0",part4:"\u12ED\u1230\u12E8\u121B\u120D\u1363 \u12C8\u12D8\u1270\u1363 \u12E8\u1218\u1300\u1218\u122A\u12EB\u12CD\u1295 \u12E8\u121A\u1308\u129D \u1235\u121D \u1260\u121B\u130D\u1298\u1275\u1362"},name:"\u12E8\u1270\u12F0\u130B\u130B\u121A \u1235\u121D \u1218\u1208\u12EB\u12EB"},emptyAttachmentFolderBehavior:{description:{part1:"\u1270\u12EB\u12EB\u12E5 \u134E\u120D\u12F0\u122D \u1263\u12F6 \u1232\u1206\u1295:"},name:"\u1263\u12F6 \u1270\u12EB\u12EB\u12E5 \u134E\u120D\u12F0\u122D \u12A0\u1230\u122B\u122D"},excludePaths:{description:{part1:"\u12A8\u121A\u12A8\u1270\u1209\u1275 \u1218\u1295\u1308\u12F6\u127D \u121B\u1235\u1273\u12C8\u123B\u12CE\u127D\u1295 \u12A0\u1235\u12C8\u130D\u12F5\u1362",part2:"\u12A5\u12EB\u1295\u12F3\u1295\u12F1\u1295 \u1218\u1295\u1308\u12F5 \u1260\u12A0\u12F2\u1235 \u1218\u1235\u1218\u122D \u12EB\u1235\u1308\u1261\u1362",part3:"\u12E8\u1218\u1295\u1308\u12F5 \u1215\u1265\u1228\u1241\u121D\u134A \u12C8\u12ED\u121D",part4:"\u1245\u1295\u1265\u1229 \u1263\u12F6 \u12A8\u1206\u1290\u1363 \u121D\u1295\u121D \u121B\u1235\u1273\u12C8\u123B \u12A0\u12ED\u1308\u1208\u120D\u121D\u1362"},name:"\u1218\u1295\u1308\u12F6\u127D\u1295 \u121B\u1235\u12C8\u1308\u12F5"},excludePathsFromAttachmentCollecting:{description:{part1:"\u12A8\u121A\u12A8\u1270\u1209\u1275 \u1218\u1295\u1308\u12F6\u127D \u1270\u12EB\u12EB\u12E6\u127D\u1295 \u12A0\u1235\u12C8\u130D\u12F5 \u12E8\u121A\u1206\u1290\u12CD",part2:"\u1270\u12EB\u12EB\u12E6\u127D\u1295 \u1218\u1230\u1265\u1230\u1265",part3:"\u1275\u12D5\u12DB\u12DD \u1232\u1348\u1338\u121D\u1362",part4:"\u12A5\u12EB\u1295\u12F3\u1295\u12F1\u1295 \u1218\u1295\u1308\u12F5 \u1260\u12A0\u12F2\u1235 \u1218\u1235\u1218\u122D \u12EB\u1235\u1308\u1261\u1362",part5:"\u12E8\u1218\u1295\u1308\u12F5 \u1215\u1265\u1228\u1241\u121D\u134A \u12C8\u12ED\u121D",part6:"\u1245\u1295\u1265\u1229 \u1263\u12F6 \u12A8\u1206\u1290\u1363 \u121D\u1295\u121D \u1218\u1295\u1308\u12F5 \u12A8\u1270\u12EB\u12EB\u12E5 \u1218\u1230\u1265\u1230\u1265 \u12A0\u12ED\u1308\u1208\u120D\u121D\u1362"},name:"\u12A8\u1270\u12EB\u12EB\u12E5 \u1218\u1230\u1265\u1230\u1265 \u1218\u1295\u1308\u12F6\u127D\u1295 \u121B\u1235\u12C8\u1308\u12F5"},generatedAttachmentFileName:{description:{part1:"\u12E8\u121A\u1308\u1299",part2:"\u1276\u12A8\u1296\u127D\u1295 \u12ED\u1218\u120D\u12A8\u1271"},name:"\u12E8\u1270\u1348\u1320\u1228 \u1270\u12EB\u12EB\u12E5 \u134B\u12ED\u120D \u1235\u121D"},includePaths:{description:{part1:"\u12A8\u121A\u12A8\u1270\u1209\u1275 \u1218\u1295\u1308\u12F6\u127D \u121B\u1235\u1273\u12C8\u123B\u12CE\u127D\u1295 \u12EB\u12AB\u1270\u1271\u1362",part2:"\u12A5\u12EB\u1295\u12F3\u1295\u12F1\u1295 \u1218\u1295\u1308\u12F5 \u1260\u12A0\u12F2\u1235 \u1218\u1235\u1218\u122D \u12EB\u1235\u1308\u1261\u1362",part3:"\u12E8\u1218\u1295\u1308\u12F5 \u1215\u1265\u1228\u1241\u121D\u134A \u12C8\u12ED\u121D",part4:"\u1245\u1295\u1265\u1229 \u1263\u12F6 \u12A8\u1206\u1290\u1363 \u1201\u1209\u121D \u121B\u1235\u1273\u12C8\u123B\u12CE\u127D \u12ED\u12AB\u1270\u1273\u1209\u1362"},name:"\u1218\u1295\u1308\u12F6\u127D\u1295 \u121B\u12AB\u1270\u1275"},jpegQuality:{description:"\u1325\u122B\u1271 \u12EB\u1290\u1230\u1363 \u12E8\u1218\u1328\u1218\u1242\u12EB \u1325\u121D\u122D\u1273 \u12ED\u1260\u120D\u1323\u120D\u1362",name:"JPEG \u1325\u122B\u1275"},locationForNewAttachments:{description:{part1:"\u12A8",part2:"\u1300\u121D\u122E \u12A0\u1295\u133B\u122B\u12CA \u1218\u1295\u1308\u12F5 \u1208\u1218\u1320\u1240\u121D\u1362",part3:"\u12E8\u121A\u1308\u1299",part4:"\u1276\u12A8\u1296\u127D\u1295 \u12ED\u1218\u120D\u12A8\u1271",part5:"\u12A5\u1295\u12F0",part6:"\u12EB\u1209 \u12F6\u1275-\u134E\u120D\u12F0\u122E\u127D \u12A0\u12ED\u1218\u12A8\u1229\u121D\u1363 \u121D\u12AD\u1295\u12EB\u1271\u121D Obsidian \u12A0\u12ED\u12A8\u1273\u1270\u120B\u1278\u12CD\u121D\u1362 \u1208\u121B\u1235\u1270\u12F3\u12F0\u122D",part7:"\u1355\u120B\u130A\u1295 \u1218\u1320\u1240\u121D \u120A\u12EB\u1235\u1348\u120D\u130D\u12CE \u12ED\u127D\u120B\u120D\u1362"},name:"\u1208\u12A0\u12F2\u1235 \u1270\u12EB\u12EB\u12E6\u127D \u1266\u1273"},markdownUrlFormat:{description:{part1:"\u12C8\u12F0 Markdown \u12CD\u1235\u1325 \u12E8\u121A\u1308\u1263\u12CD URL \u1245\u122D\u1338\u1275\u1362",part2:"\u12E8\u121A\u1308\u1299",part3:"\u1276\u12A8\u1296\u127D\u1295 \u12ED\u1218\u120D\u12A8\u1271",part4:"\u12E8\u1218\u1230\u1228\u1275 \u1245\u122D\u1338\u1275\u1295 \u1208\u1218\u1320\u1240\u121D \u1263\u12F6 \u12ED\u1270\u12C9\u1362"},name:"Markdown URL \u1245\u122D\u1338\u1275"},renameAttachmentsToLowerCase:"\u1270\u12EB\u12EB\u12E6\u127D\u1295 \u12C8\u12F0 \u1275\u1295\u123D \u134A\u12F0\u120D \u1218\u1208\u12C8\u1325",renamedAttachmentFileName:{description:{part1:"\u12E8\u121A\u1308\u1299",part2:"\u1276\u12A8\u1296\u127D\u1295 \u12ED\u1218\u120D\u12A8\u1271",part3:"\u1263\u12F6 \u12ED\u1270\u12CD",part4:"\u1245\u1295\u1265\u122D\u1295 \u1260\u121D\u1275\u12A9 \u1208\u1218\u1320\u1240\u121D\u1362"},name:"\u12E8\u1270\u1230\u12E8\u1218 \u1270\u12EB\u12EB\u12E5 \u134B\u12ED\u120D \u1235\u121D"},resetToSampleCustomTokens:{message:"\u12E8\u1270\u1208\u1218\u12F1 \u1276\u12A8\u1296\u127D\u1295 \u12C8\u12F0 \u1293\u1219\u1293 \u12E8\u1270\u1208\u1218\u12F1 \u1276\u12A8\u1296\u127D \u121B\u12F3\u12A8\u121D \u12A5\u122D\u130D\u1320\u129B \u1290\u12CE\u1275? \u12E8\u12A5\u122D\u1235\u12CE \u1208\u12CD\u1326\u127D \u12ED\u1320\u134B\u1209\u1362",title:"\u12C8\u12F0 \u1293\u1219\u1293 \u12E8\u1270\u1208\u1218\u12F1 \u1276\u12A8\u1296\u127D \u1218\u1208\u1235"},shouldConvertPastedImagesToJpeg:{description:"\u12E8\u1270\u1323\u1260\u1241 \u121D\u1235\u120E\u127D\u1295 \u12C8\u12F0 JPEG \u1218\u1240\u12E8\u122D \u12A0\u1208\u1260\u1275 \u12A5\u1295\u12F0\u1206\u1290\u1362 \u12E8 PNG \u121D\u1235\u120D \u12ED\u12D8\u1275 \u12A8\u12AD\u120A\u1355\u1266\u122D\u12F5 \u1260\u1240\u1325\u1273 \u1232\u1323\u1260\u1245 \u1265\u127B \u12ED\u1270\u1308\u1260\u122B\u120D\u1362 \u1260\u1270\u1208\u121D\u12F6\u1363 \u1235\u12AD\u122A\u1295\u123E\u127D\u1295 \u1208\u1218\u1323\u1260\u1245\u1362",name:"\u12E8\u1270\u1323\u1260\u1241 \u121D\u1235\u120E\u127D\u1295 \u12C8\u12F0 JPEG \u1218\u1240\u12E8\u122D \u12A0\u1208\u1260\u1275"},shouldDeleteOrphanAttachments:{description:"\u12A8\u1270\u1295\u1243\u1363 \u121B\u1235\u1273\u12C8\u123B \u1232\u1230\u1228\u12DD\u1363 \u12E8\u122B\u1231 \u12E8\u1206\u1291 \u1270\u12EB\u12EB\u12E6\u127D\u121D \u12ED\u1230\u1228\u12DB\u1209\u1362",name:"\u12E8\u122B\u1231 \u12E8\u1206\u1291 \u1270\u12EB\u12EB\u12E6\u127D\u1295 \u1218\u1230\u1228\u12DD \u12A0\u1208\u1260\u1275"},shouldRenameAttachmentFiles:{description:{part1:"\u12A8\u1270\u1295\u1243\u1363 \u121B\u1235\u1273\u12C8\u123B \u1232\u1230\u12E8\u121D \u12C8\u12ED\u121D \u1232\u12C8\u1230\u12F5\u1363 \u1270\u12EB\u12EB\u12E6\u1279 \u1260",part2:"\u1245\u1295\u1265\u122D \u1218\u1230\u1228\u1275 \u12ED\u1230\u12E8\u121B\u1209\u1362"},name:"\u1270\u12EB\u12EB\u12E5 \u134B\u12ED\u120E\u127D\u1295 \u1218\u1230\u12E8\u121D \u12A0\u1208\u1260\u1275"},shouldRenameAttachmentFolders:{description:"\u121B\u1235\u1273\u12C8\u123B \u1232\u1230\u12E8\u121D \u12C8\u12ED\u121D \u1232\u12C8\u1230\u12F5\u1363 \u1270\u12EB\u12EB\u12E5 \u134E\u120D\u12F0\u122E\u127D\u1295 \u1218\u1230\u12E8\u121D \u12A0\u1208\u1260\u1275\u1362",name:"\u1270\u12EB\u12EB\u12E5 \u134E\u120D\u12F0\u122E\u127D\u1295 \u1218\u1230\u12E8\u121D \u12A0\u1208\u1260\u1275"},shouldRenameCollectedAttachments:{description:{part1:"\u12A8\u1270\u1295\u1243\u1363 \u1260",part2:"\u1270\u12EB\u12EB\u12E6\u127D\u1295 \u1218\u1230\u1265\u1230\u1265",part3:"\u1275\u12D5\u12DB\u12DE\u127D \u12E8\u1270\u1230\u1229 \u1270\u12EB\u12EB\u12E6\u127D \u1260",part4:"\u1245\u1295\u1265\u122D \u1218\u1230\u1228\u1275 \u12ED\u1230\u12E8\u121B\u1209\u1362"},name:"\u12E8\u1270\u1230\u1260\u1230\u1261 \u1270\u12EB\u12EB\u12E6\u127D\u1295 \u1218\u1230\u12E8\u121D \u12A0\u1208\u1260\u1275"},specialCharacters:{description:{part1:"\u1260\u1270\u12EB\u12EB\u12E5 \u134E\u120D\u12F0\u122D \u12A5\u1293 \u134B\u12ED\u120D \u1235\u121D \u12CD\u1235\u1325 \u12E8\u121A\u1270\u12A9 \u12C8\u12ED\u121D \u12E8\u121A\u12C8\u1308\u12F1 \u120D\u12E9 \u1241\u121D\u134A\u12CE\u127D\u1362",part2:"\u120D\u12E9 \u1241\u121D\u134A\u12CE\u127D\u1295 \u1208\u1218\u1320\u1260\u1245 \u1263\u12F6 \u12ED\u1270\u12C9\u1362"},name:"\u120D\u12E9 \u1241\u121D\u134A\u12CE\u127D"},specialCharactersReplacement:{description:{part1:"\u1260\u1270\u12EB\u12EB\u12E5 \u134E\u120D\u12F0\u122D \u12A5\u1293 \u134B\u12ED\u120D \u1235\u121D \u12CD\u1235\u1325 \u1208\u120D\u12E9 \u1241\u121D\u134A\u12CE\u127D \u12E8\u1218\u1270\u12AB\u1275 \u1215\u1265\u1228\u1241\u121D\u134A\u1362",part2:"\u120D\u12E9 \u1241\u121D\u134A\u12CE\u127D\u1295 \u1208\u121B\u1235\u12C8\u1308\u12F5 \u1263\u12F6 \u12ED\u1270\u12C9\u1362"},name:"\u120D\u12E9 \u1241\u121D\u134A\u12CE\u127D \u1218\u1270\u12AB\u1275"},timeoutInSeconds:{description:{part1:"\u1208\u1201\u1209\u121D \u1235\u122B\u12CE\u127D \u1260\u1230\u12A8\u1295\u12F5 \u12E8\u121A\u1246\u12ED \u130A\u12DC\u1362",part2:"\u12A8\u1206\u1290",part3:"\u1270\u12CB\u1240\u1228\u1363 \u12E8\u1235\u122B\u12CE\u127D \u12A0\u1348\u133B\u1338\u121D \u130A\u12DC \u12ED\u1230\u1228\u12DB\u120D\u1362"},name:"\u1260\u1230\u12A8\u1295\u12F5 \u12E8\u121A\u1246\u12ED \u130A\u12DC"},treatAsAttachmentExtensions:{description:{part1:"\u12A8\u1290\u12DA\u1205 \u121B\u1235\u134B\u134A\u12EB\u12CE\u127D \u130B\u122D \u12EB\u1209 \u134B\u12ED\u120E\u127D\u1295 \u12A5\u1295\u12F0 \u1270\u12EB\u12EB\u12E6\u127D \u12A0\u1235\u1261\u1362",part2:"\u1260\u1218\u1230\u1228\u1271",part3:"\u12A5\u1293",part4:"\u12E8\u1270\u1308\u1293\u1299 \u134B\u12ED\u120E\u127D \u12A5\u1295\u12F0 \u1270\u12EB\u12EB\u12E6\u127D \u12A0\u12ED\u1246\u1320\u1229\u121D \u12A5\u1293 \u12A8\u121B\u1235\u1273\u12C8\u123B \u130B\u122D \u12A0\u12ED\u12C8\u1230\u12F1\u121D\u1362",part5:"\u12E8\u1270\u1208\u1218\u12F1 \u121B\u1235\u134B\u134A\u12EB\u12CE\u127D \u121B\u12A8\u120D \u12ED\u127D\u120B\u1209\u1363 \u1208\u121D\u1233\u120C",part6:"\u1363 \u12ED\u1205\u1295\u1295 \u12A0\u1230\u122B\u122D \u1208\u121B\u1235\u12C8\u1308\u12F5\u1362"},name:"\u12A5\u1295\u12F0 \u1270\u12EB\u12EB\u12E5 \u121B\u1235\u134B\u134A\u12EB\u12CE\u127D \u12A0\u1235\u1261"}},promptWithPreviewModal:{previewModal:{title:"\u1270\u12EB\u12EB\u12E5 \u134B\u12ED\u120D \u1245\u12F5\u1218 \u12A5\u12ED\u1273 '{{fullFileName}}'"},title:"\u1208\u121B\u1235\u1320\u1295\u1240\u1242\u12EB \u1276\u12A8\u1295 \u12A5\u1234\u1275 \u12ED\u1235\u1321"},regularExpression:"/\u1218\u12F0\u1260\u129B \u12A0\u1308\u120B\u1208\u133D/"};var _m={attachmentCollector:{confirm:{part1:"\u0647\u0644 \u062A\u0631\u064A\u062F \u062C\u0645\u0639 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0644\u0643\u0644 \u0627\u0644\u0645\u0644\u0627\u062D\u0638\u0627\u062A \u062F\u0627\u062E\u0644 \u0627\u0644\u0645\u062C\u0644\u062F\u0627\u062A \u0628\u0634\u0643\u0644\u064D \u0645\u062A\u0643\u0631\u0631\u061F",part2:"\u0644\u0627 \u064A\u0645\u0643\u0646 \u0627\u0644\u062A\u0631\u0627\u062C\u0639 \u0639\u0646 \u0647\u0630\u0647 \u0627\u0644\u0639\u0645\u0644\u064A\u0629."},progressBar:{message:"\u062C\u0645\u0639 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A {{iterationStr}} - '{{noteFilePath}}'.",title:"\u062C\u0645\u0639 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A..."}},buttons:{copy:"\u0646\u0633\u062E",move:"\u0646\u0642\u0644",previewAttachmentFile:"\u0645\u0639\u0627\u064A\u0646\u0629 \u0645\u0644\u0641 \u0627\u0644\u0645\u0631\u0641\u0642",skip:"\u062A\u062E\u0637\u064A"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"\u0627\u0644\u0645\u0631\u0641\u0642",part2:"\u064A\u062A\u0645 \u0627\u0644\u0631\u062C\u0648\u0639 \u0625\u0644\u064A\u0647 \u0645\u0646 \u0639\u062F\u0629 \u0645\u0644\u0627\u062D\u0638\u0627\u062A."},heading:"\u062C\u0645\u0639 \u0627\u0644\u0645\u0631\u0641\u0642 \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 \u0645\u0646 \u0639\u062F\u0629 \u0645\u0644\u0627\u062D\u0638\u0627\u062A",shouldUseSameActionForOtherProblematicAttachmentsToggle:"\u064A\u062C\u0628 \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0646\u0641\u0633 \u0627\u0644\u0625\u062C\u0631\u0627\u0621 \u0644\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0627\u0644\u0645\u0634\u0643\u0648\u0643 \u0641\u064A\u0647\u0627 \u0627\u0644\u0623\u062E\u0631\u0649"},commands:{collectAttachmentsCurrentFolder:"\u062C\u0645\u0639 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0641\u064A \u0627\u0644\u0645\u062C\u0644\u062F \u0627\u0644\u062D\u0627\u0644\u064A",collectAttachmentsCurrentNote:"\u062C\u0645\u0639 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0641\u064A \u0627\u0644\u0645\u0644\u0627\u062D\u0638\u0629 \u0627\u0644\u062D\u0627\u0644\u064A\u0629",collectAttachmentsEntireVault:"\u062C\u0645\u0639 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0641\u064A \u0627\u0644\u062E\u0632\u0627\u0646\u0629 \u0628\u0623\u0643\u0645\u0644\u0647\u0627"},menuItems:{collectAttachmentsInFile:"\u062C\u0645\u0639 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0641\u064A \u0627\u0644\u0645\u0644\u0641",collectAttachmentsInFiles:"\u062C\u0645\u0639 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0641\u064A \u0627\u0644\u0645\u0644\u0641\u0627\u062A"},notice:{collectingAttachments:"\u062C\u0645\u0639 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0644\u0640 '{{noteFilePath}}'",collectingAttachmentsCancelled:"\u062A\u0645 \u0625\u0644\u063A\u0627\u0621 \u062C\u0645\u0639 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A. \u0631\u0627\u062C\u0639 \u0648\u062D\u062F\u0629 \u0627\u0644\u062A\u062D\u0643\u0645 \u0644\u0644\u062A\u0641\u0627\u0635\u064A\u0644.",generatedAttachmentFileNameIsInvalid:{part1:`\u0627\u0633\u0645 \u0645\u0644\u0641 \u0627\u0644\u0645\u0631\u0641\u0642 \u0627\u0644\u0645\u064F\u0648\u0644\u062F '{{path}}' \u063A\u064A\u0631 \u0635\u0627\u0644\u062D.
|
|
457
|
+
{{validationMessage}}
|
|
458
|
+
\u062A\u062D\u0642\u0642 \u0645\u0646`,part2:"\u0627\u0644\u0625\u0639\u062F\u0627\u062F."},notePathIsIgnored:"\u0645\u0633\u0627\u0631 \u0627\u0644\u0645\u0644\u0627\u062D\u0638\u0629 \u0645\u064F\u062A\u062C\u0627\u0647\u0644"},obsidianDevUtils:{buttons:{cancel:"\u0625\u0644\u063A\u0627\u0621",ok:"\u0645\u0648\u0627\u0641\u0642"},dataview:{itemsPerPage:"\u0627\u0644\u0639\u0646\u0627\u0635\u0631 \u0641\u064A \u0627\u0644\u0635\u0641\u062D\u0629:",jumpToPage:"\u0627\u0644\u0627\u0646\u062A\u0642\u0627\u0644 \u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062D\u0629:"},notices:{attachmentIsStillUsed:"\u0627\u0644\u0645\u0631\u0641\u0642 {{attachmentPath}} \u0644\u0627 \u064A\u0632\u0627\u0644 \u0645\u0633\u062A\u062E\u062F\u0645\u0627\u064B \u0645\u0646 \u0645\u0644\u0627\u062D\u0638\u0627\u062A \u0623\u062E\u0631\u0649. \u0644\u0646 \u064A\u062A\u0645 \u062D\u0630\u0641\u0647.",unhandledError:"\u062D\u062F\u062B \u062E\u0637\u0623 \u063A\u064A\u0631 \u0645\u0639\u0627\u0644\u062C. \u064A\u0631\u062C\u0649 \u0627\u0644\u062A\u062D\u0642\u0642 \u0645\u0646 \u0648\u062D\u062F\u0629 \u0627\u0644\u062A\u062D\u0643\u0645 \u0644\u0645\u0632\u064A\u062F \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062A."}},pluginSettings:{attachmentRenameMode:{all:{description:"\u062C\u0645\u064A\u0639 \u0627\u0644\u0645\u0644\u0641\u0627\u062A \u064A\u062A\u0645 \u0625\u0639\u0627\u062F\u0629 \u062A\u0633\u0645\u064A\u062A\u0647\u0627.",displayText:"\u0627\u0644\u0643\u0644"},none:{description:"\u0623\u0633\u0645\u0627\u0624\u0647\u0627 \u0645\u062D\u0641\u0648\u0638\u0629.",displayText:"\u0644\u0627 \u0634\u064A\u0621"},onlyPastedImages:{description:"\u0627\u0644\u0635\u0648\u0631 \u0627\u0644\u0645\u064F\u0644\u0635\u0642\u0629 \u0641\u0642\u0637 \u064A\u062A\u0645 \u0625\u0639\u0627\u062F\u0629 \u062A\u0633\u0645\u064A\u062A\u0647\u0627. \u064A\u0646\u0637\u0628\u0642 \u0641\u0642\u0637 \u0639\u0646\u062F \u0644\u0635\u0642 \u0645\u062D\u062A\u0648\u0649 \u0635\u0648\u0631\u0629 PNG \u0645\u0628\u0627\u0634\u0631\u0629 \u0645\u0646 \u0627\u0644\u062D\u0627\u0641\u0638\u0629. \u0639\u0627\u062F\u0629\u060C \u0644\u0644\u0635\u0642 \u0644\u0642\u0637\u0627\u062A \u0627\u0644\u0634\u0627\u0634\u0629.",displayText:"\u0627\u0644\u0635\u0648\u0631 \u0627\u0644\u0645\u064F\u0644\u0635\u0642\u0629 \u0641\u0642\u0637"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"\u0625\u0644\u063A\u0627\u0621 \u062C\u0645\u0639 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A.",displayText:"\u0625\u0644\u063A\u0627\u0621"},copy:{description:"\u0646\u0633\u062E \u0627\u0644\u0645\u0631\u0641\u0642 \u0625\u0644\u0649 \u0627\u0644\u0645\u0648\u0642\u0639 \u0627\u0644\u062C\u062F\u064A\u062F.",displayText:"\u0646\u0633\u062E"},move:{description:"\u0646\u0642\u0644 \u0627\u0644\u0645\u0631\u0641\u0642 \u0625\u0644\u0649 \u0627\u0644\u0645\u0648\u0642\u0639 \u0627\u0644\u062C\u062F\u064A\u062F.",displayText:"\u0646\u0642\u0644"},prompt:{description:"\u0645\u0637\u0627\u0644\u0628\u0629 \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 \u0628\u0627\u062E\u062A\u064A\u0627\u0631 \u0627\u0644\u0625\u062C\u0631\u0627\u0621.",displayText:"\u0645\u0637\u0627\u0644\u0628\u0629"},skip:{description:"\u062A\u062E\u0637\u064A \u0627\u0644\u0645\u0631\u0641\u0642 \u0648\u0627\u0644\u0645\u062A\u0627\u0628\u0639\u0629 \u0625\u0644\u0649 \u0627\u0644\u062A\u0627\u0644\u064A.",displayText:"\u062A\u062E\u0637\u064A"}},defaultImageSizeDimension:{height:"\u0627\u0644\u0627\u0631\u062A\u0641\u0627\u0639",width:"\u0627\u0644\u0639\u0631\u0636"},emptyAttachmentFolderBehavior:{delete:{description:"\u0633\u064A\u062D\u0630\u0641 \u0645\u062C\u0644\u062F \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0627\u0644\u0641\u0627\u0631\u063A.",displayText:"\u062D\u0630\u0641"},deleteWithEmptyParents:{description:"\u0633\u064A\u062D\u0630\u0641 \u0645\u062C\u0644\u062F \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0627\u0644\u0641\u0627\u0631\u063A \u0648\u0645\u062C\u0644\u062F\u0627\u062A\u0647 \u0627\u0644\u0623\u0635\u0644\u064A\u0629 \u0627\u0644\u0641\u0627\u0631\u063A\u0629.",displayText:"\u062D\u0630\u0641 \u0645\u0639 \u0627\u0644\u0645\u062C\u0644\u062F\u0627\u062A \u0627\u0644\u0623\u0635\u0644\u064A\u0629 \u0627\u0644\u0641\u0627\u0631\u063A\u0629"},keep:{description:"\u0633\u064A\u062D\u062A\u0641\u0638 \u0628\u0645\u062C\u0644\u062F \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0627\u0644\u0641\u0627\u0631\u063A.",displayText:"\u0627\u0644\u0627\u062D\u062A\u0641\u0627\u0638"}}},pluginSettingsManager:{customToken:{codeComment:`// \u062A\u0645 \u062A\u0639\u0644\u064A\u0642 \u0627\u0644\u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u062E\u0635\u0635\u0629 \u0644\u0623\u0646\u0647\u0627 \u062A\u062D\u062A\u0627\u062C \u0625\u0644\u0649 \u062A\u062D\u062F\u064A\u062B \u0644\u0644\u062A\u0646\u0633\u064A\u0642 \u0627\u0644\u062C\u062F\u064A\u062F \u0627\u0644\u0645\u064F\u0642\u062F\u0645 \u0641\u064A \u0625\u0635\u062F\u0627\u0631 \u0627\u0644\u0625\u0636\u0627\u0641\u0629 9.0.0.
|
|
459
|
+
// \u0631\u0627\u062C\u0639 \u0627\u0644\u0648\u062B\u0627\u0626\u0642 (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) \u0644\u0645\u0632\u064A\u062F \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062A.`,deprecated:{part1:"\u0641\u064A \u0625\u0635\u062F\u0627\u0631 \u0627\u0644\u0625\u0636\u0627\u0641\u0629 9.0.0\u060C \u062A\u063A\u064A\u0631 \u062A\u0646\u0633\u064A\u0642 \u062A\u0633\u062C\u064A\u0644 \u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0645\u062E\u0635\u0635. \u064A\u0631\u062C\u0649 \u062A\u062D\u062F\u064A\u062B \u0631\u0645\u0648\u0632\u0643 \u0648\u0641\u0642\u0627\u064B \u0644\u0630\u0644\u0643. \u0631\u0627\u062C\u0639",part2:"\u0627\u0644\u0648\u062B\u0627\u0626\u0642",part3:"\u0644\u0645\u0632\u064A\u062F \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062A"}},legacyRenameAttachmentsToLowerCase:{part1:"\u0641\u064A \u0625\u0635\u062F\u0627\u0631 \u0627\u0644\u0625\u0636\u0627\u0641\u0629 9.0.0\u060C",part2:"\u0627\u0644\u0625\u0639\u062F\u0627\u062F \u0645\u064F\u0647\u0645\u0644. \u0627\u0633\u062A\u062E\u062F\u0645",part3:"\u0627\u0644\u062A\u0646\u0633\u064A\u0642 \u0628\u062F\u0644\u0627\u064B \u0645\u0646 \u0630\u0644\u0643. \u0627\u0646\u0638\u0631",part4:"\u0627\u0644\u0648\u062B\u0627\u0626\u0642",part5:"\u0644\u0645\u0632\u064A\u062F \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062A"},markdownUrlFormat:{deprecated:{part1:"\u0644\u062F\u064A\u0643 \u0642\u064A\u0645\u0629 \u0645\u062D\u062A\u0645\u0644\u0629 \u063A\u064A\u0631 \u0635\u062D\u064A\u062D\u0629 \u0645\u064F\u0639\u064A\u0646\u0629 \u0644\u0640",part2:"\u0627\u0644\u062A\u0646\u0633\u064A\u0642. \u064A\u0631\u062C\u0649 \u0627\u0644\u0631\u062C\u0648\u0639 \u0625\u0644\u0649",part3:"\u0627\u0644\u0648\u062B\u0627\u0626\u0642",part4:"\u0644\u0645\u0632\u064A\u062F \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062A",part5:"\u0644\u0646 \u062A\u0638\u0647\u0631 \u0647\u0630\u0647 \u0627\u0644\u0631\u0633\u0627\u0644\u0629 \u0645\u0631\u0629 \u0623\u062E\u0631\u0649."}},specialCharacters:{part1:"\u0641\u064A \u0625\u0635\u062F\u0627\u0631 \u0627\u0644\u0625\u0636\u0627\u0641\u0629 9.16.0\u060C",part2:"\u062A\u0645 \u062A\u063A\u064A\u064A\u0631 \u0642\u064A\u0645\u0629 \u0627\u0644\u0625\u0639\u062F\u0627\u062F \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A\u0629. \u062A\u0645 \u062A\u062D\u062F\u064A\u062B \u0642\u064A\u0645\u0629 \u0625\u0639\u062F\u0627\u062F\u0643 \u0625\u0644\u0649 \u0627\u0644\u0642\u064A\u0645\u0629 \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A\u0629 \u0627\u0644\u062C\u062F\u064A\u062F\u0629."},validation:{defaultImageSizeMustBePercentageOrPixels:"\u064A\u062C\u0628 \u0623\u0646 \u064A\u0643\u0648\u0646 \u062D\u062C\u0645 \u0627\u0644\u0635\u0648\u0631\u0629 \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A \u0628\u0627\u0644\u0628\u0643\u0633\u0644 \u0623\u0648 \u0628\u0627\u0644\u0646\u0633\u0628\u0629 \u0627\u0644\u0645\u0626\u0648\u064A\u0629",invalidCustomTokensCode:"\u0643\u0648\u062F \u0627\u0644\u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u062E\u0635\u0635\u0629 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D",invalidRegularExpression:"\u0627\u0644\u062A\u0639\u0628\u064A\u0631 \u0627\u0644\u0646\u0645\u0637\u064A \u063A\u064A\u0631 \u0635\u0627\u0644\u062D {{regExp}}",specialCharactersMustNotContainSlash:"\u0627\u0644\u0623\u062D\u0631\u0641 \u0627\u0644\u062E\u0627\u0635\u0629 \u064A\u062C\u0628 \u0623\u0644\u0627 \u062A\u062D\u062A\u0648\u064A \u0639\u0644\u0649 /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"\u0627\u0633\u062A\u0628\u062F\u0627\u0644 \u0627\u0644\u0623\u062D\u0631\u0641 \u0627\u0644\u062E\u0627\u0635\u0629 \u064A\u062C\u0628 \u0623\u0644\u0627 \u064A\u062D\u062A\u0648\u064A \u0639\u0644\u0649 \u0623\u062D\u0631\u0641 \u0645\u0633\u0627\u0631 \u0627\u0633\u0645 \u0645\u0644\u0641 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629."},version:{part1:"\u0645\u0644\u0641 \u0625\u0639\u062F\u0627\u062F\u0627\u062A\u0643 ",part2:"\u0644\u0647 \u0625\u0635\u062F\u0627\u0631",part3:"\u0623\u062D\u062F\u062B \u0645\u0646 \u0625\u0635\u062F\u0627\u0631 \u0627\u0644\u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u062D\u0627\u0644\u064A",part4:"\u0642\u062F \u0644\u0627 \u062A\u0639\u0645\u0644 \u0627\u0644\u0625\u0636\u0627\u0641\u0629 \u0643\u0645\u0627 \u0647\u0648 \u0645\u062A\u0648\u0642\u0639. \u064A\u0631\u062C\u0649 \u062A\u062D\u062F\u064A\u062B \u0627\u0644\u0625\u0636\u0627\u0641\u0629 \u0625\u0644\u0649 \u0623\u062D\u062F\u062B \u0625\u0635\u062F\u0627\u0631 \u0623\u0648 \u0627\u0644\u062A\u0623\u0643\u062F \u0645\u0646 \u0635\u062D\u0629 \u0627\u0644\u0625\u0639\u062F\u0627\u062F\u0627\u062A."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"\u0639\u0646\u062F \u0625\u0631\u0641\u0627\u0642 \u0627\u0644\u0645\u0644\u0641\u0627\u062A:"},name:"\u0648\u0636\u0639 \u0625\u0639\u0627\u062F\u0629 \u062A\u0633\u0645\u064A\u0629 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"\u0639\u0646\u062F\u0645\u0627 \u064A\u062A\u0645 \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u0645\u0631\u0641\u0642 \u0627\u0644\u0645\u062C\u0645\u0648\u0639 \u0645\u0646 \u0639\u062F\u0629 \u0645\u0644\u0627\u062D\u0638\u0627\u062A:"},name:"\u0648\u0636\u0639 \u062C\u0645\u0639 \u0627\u0644\u0645\u0631\u0641\u0642 \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 \u0645\u0646 \u0639\u062F\u0629 \u0645\u0644\u0627\u062D\u0638\u0627\u062A"},collectedAttachmentFileName:{description:{part1:"\u0627\u0646\u0638\u0631",part2:"\u0627\u0644\u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u062A\u0627\u062D\u0629",part3:"\u0627\u062A\u0631\u0643\u0647 \u0641\u0627\u0631\u063A\u0627\u064B \u0644\u0627\u0633\u062A\u062E\u062F\u0627\u0645",part4:"\u0627\u0644\u0625\u0639\u062F\u0627\u062F \u0628\u062F\u0644\u0627\u064B \u0645\u0646 \u0630\u0644\u0643."},name:"\u0627\u0633\u0645 \u0645\u0644\u0641 \u0627\u0644\u0645\u0631\u0641\u0642 \u0627\u0644\u0645\u062C\u0645\u0648\u0639"},customTokens:{description:{part1:"\u0627\u0644\u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u062E\u0635\u0635\u0629 \u0627\u0644\u0645\u0631\u0627\u062F \u0627\u0633\u062A\u062E\u062F\u0627\u0645\u0647\u0627.",part2:"\u0627\u0646\u0638\u0631",part3:"\u0627\u0644\u0648\u062B\u0627\u0626\u0642",part4:"\u0644\u0645\u0632\u064A\u062F \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062A.",part5:"\u26A0\uFE0F \u064A\u0645\u0643\u0646 \u0623\u0646 \u062A\u0643\u0648\u0646 \u0627\u0644\u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u062E\u0635\u0635\u0629 \u0643\u0648\u062F JavaScript \u0639\u0634\u0648\u0627\u0626\u064A. \u0625\u0630\u0627 \u0643\u0627\u0646\u062A \u0645\u0643\u062A\u0648\u0628\u0629 \u0628\u0634\u0643\u0644 \u0633\u064A\u0621\u060C \u064A\u0645\u0643\u0646 \u0623\u0646 \u062A\u0633\u0628\u0628 \u0641\u0642\u062F\u0627\u0646 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A. \u0627\u0633\u062A\u062E\u062F\u0645\u0647\u0627 \u0639\u0644\u0649 \u0645\u0633\u0624\u0648\u0644\u064A\u062A\u0643 \u0627\u0644\u062E\u0627\u0635\u0629."},name:"\u0627\u0644\u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u062E\u0635\u0635\u0629"},defaultImageSize:{description:{part1:"\u0627\u0644\u062D\u062C\u0645 \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A \u0644\u0644\u0635\u0648\u0631\u0629.",part2:"\u064A\u0645\u0643\u0646 \u062A\u062D\u062F\u064A\u062F\u0647 \u0628\u0627\u0644\u0628\u0643\u0633\u0644",part3:"\u0623\u0648 \u0643\u0646\u0633\u0628\u0629 \u0645\u0626\u0648\u064A\u0629 \u0645\u0646 \u0627\u0644\u062D\u062C\u0645 \u0627\u0644\u0643\u0627\u0645\u0644 \u0644\u0644\u0635\u0648\u0631\u0629",part4:"\u0627\u062A\u0631\u0643\u0647 \u0641\u0627\u0631\u063A\u064B\u0627 \u0644\u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u062D\u062C\u0645 \u0627\u0644\u0623\u0635\u0644\u064A."},name:"\u0627\u0644\u062D\u062C\u0645 \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A \u0644\u0644\u0635\u0648\u0631\u0629"},duplicateNameSeparator:{description:{part1:"\u0639\u0646\u062F\u0645\u0627 \u062A\u0642\u0648\u0645 \u0628\u0644\u0635\u0642/\u0633\u062D\u0628 \u0645\u0644\u0641 \u0628\u0646\u0641\u0633 \u0627\u0633\u0645 \u0645\u0644\u0641 \u0645\u0648\u062C\u0648\u062F\u060C \u0633\u064A\u062A\u0645 \u0625\u0636\u0627\u0641\u0629 \u0647\u0630\u0627 \u0627\u0644\u0641\u0627\u0635\u0644 \u0625\u0644\u0649 \u0627\u0633\u0645 \u0627\u0644\u0645\u0644\u0641.",part2:"\u0645\u062B\u0644\u0627\u064B\u060C \u0639\u0646\u062F\u0645\u0627 \u062A\u0633\u062D\u0628 \u0627\u0644\u0645\u0644\u0641",part3:"\u060C \u0633\u064A\u062A\u0645 \u0625\u0639\u0627\u062F\u0629 \u062A\u0633\u0645\u064A\u062A\u0647 \u0625\u0644\u0649",part4:"\u060C \u0625\u0644\u062E\u060C \u0644\u0644\u062D\u0635\u0648\u0644 \u0639\u0644\u0649 \u0623\u0648\u0644 \u0627\u0633\u0645 \u0645\u062A\u0627\u062D."},name:"\u0641\u0627\u0635\u0644 \u0627\u0644\u0623\u0633\u0645\u0627\u0621 \u0627\u0644\u0645\u0643\u0631\u0631\u0629"},emptyAttachmentFolderBehavior:{description:{part1:"\u0639\u0646\u062F\u0645\u0627 \u064A\u0635\u0628\u062D \u0645\u062C\u0644\u062F \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0641\u0627\u0631\u063A\u0627\u064B:"},name:"\u0633\u0644\u0648\u0643 \u0645\u062C\u0644\u062F \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0627\u0644\u0641\u0627\u0631\u063A"},excludePaths:{description:{part1:"\u0627\u0633\u062A\u0628\u0639\u0627\u062F \u0627\u0644\u0645\u0644\u0627\u062D\u0638\u0627\u062A \u0645\u0646 \u0627\u0644\u0645\u0633\u0627\u0631\u0627\u062A \u0627\u0644\u062A\u0627\u0644\u064A\u0629.",part2:"\u0623\u062F\u062E\u0644 \u0643\u0644 \u0645\u0633\u0627\u0631 \u0641\u064A \u0633\u0637\u0631 \u062C\u062F\u064A\u062F.",part3:"\u064A\u0645\u0643\u0646\u0643 \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0633\u0644\u0633\u0644\u0629 \u0627\u0644\u0645\u0633\u0627\u0631 \u0623\u0648",part4:"\u0625\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u0625\u0639\u062F\u0627\u062F \u0641\u0627\u0631\u063A\u0627\u064B\u060C \u0644\u0646 \u064A\u062A\u0645 \u0627\u0633\u062A\u0628\u0639\u0627\u062F \u0623\u064A \u0645\u0644\u0627\u062D\u0638\u0627\u062A."},name:"\u0627\u0633\u062A\u0628\u0639\u0627\u062F \u0627\u0644\u0645\u0633\u0627\u0631\u0627\u062A"},excludePathsFromAttachmentCollecting:{description:{part1:"\u0627\u0633\u062A\u0628\u0639\u0627\u062F \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0645\u0646 \u0627\u0644\u0645\u0633\u0627\u0631\u0627\u062A \u0627\u0644\u062A\u0627\u0644\u064A\u0629 \u0639\u0646\u062F",part2:"\u062C\u0645\u0639 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A",part3:"\u062A\u0646\u0641\u064A\u0630 \u0627\u0644\u0623\u0645\u0631.",part4:"\u0623\u062F\u062E\u0644 \u0643\u0644 \u0645\u0633\u0627\u0631 \u0641\u064A \u0633\u0637\u0631 \u062C\u062F\u064A\u062F.",part5:"\u064A\u0645\u0643\u0646\u0643 \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0633\u0644\u0633\u0644\u0629 \u0627\u0644\u0645\u0633\u0627\u0631 \u0623\u0648",part6:"\u0625\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u0625\u0639\u062F\u0627\u062F \u0641\u0627\u0631\u063A\u0627\u064B\u060C \u0644\u0646 \u064A\u062A\u0645 \u0627\u0633\u062A\u0628\u0639\u0627\u062F \u0623\u064A \u0645\u0633\u0627\u0631\u0627\u062A \u0645\u0646 \u062C\u0645\u0639 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A."},name:"\u0627\u0633\u062A\u0628\u0639\u0627\u062F \u0627\u0644\u0645\u0633\u0627\u0631\u0627\u062A \u0645\u0646 \u062C\u0645\u0639 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A"},generatedAttachmentFileName:{description:{part1:"\u0627\u0646\u0638\u0631",part2:"\u0627\u0644\u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u062A\u0627\u062D\u0629"},name:"\u0627\u0633\u0645 \u0645\u0644\u0641 \u0627\u0644\u0645\u0631\u0641\u0642 \u0627\u0644\u0645\u064F\u0648\u0644\u062F"},includePaths:{description:{part1:"\u062A\u0636\u0645\u064A\u0646 \u0627\u0644\u0645\u0644\u0627\u062D\u0638\u0627\u062A \u0645\u0646 \u0627\u0644\u0645\u0633\u0627\u0631\u0627\u062A \u0627\u0644\u062A\u0627\u0644\u064A\u0629.",part2:"\u0623\u062F\u062E\u0644 \u0643\u0644 \u0645\u0633\u0627\u0631 \u0641\u064A \u0633\u0637\u0631 \u062C\u062F\u064A\u062F.",part3:"\u064A\u0645\u0643\u0646\u0643 \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0633\u0644\u0633\u0644\u0629 \u0627\u0644\u0645\u0633\u0627\u0631 \u0623\u0648",part4:"\u0625\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u0625\u0639\u062F\u0627\u062F \u0641\u0627\u0631\u063A\u0627\u064B\u060C \u0633\u062A\u062A\u0645 \u062A\u0636\u0645\u064A\u0646 \u062C\u0645\u064A\u0639 \u0627\u0644\u0645\u0644\u0627\u062D\u0638\u0627\u062A."},name:"\u062A\u0636\u0645\u064A\u0646 \u0627\u0644\u0645\u0633\u0627\u0631\u0627\u062A"},jpegQuality:{description:"\u0643\u0644\u0645\u0627 \u0642\u0644 \u0627\u0644\u062C\u0648\u062F\u0629\u060C \u0632\u0627\u062F\u062A \u0646\u0633\u0628\u0629 \u0627\u0644\u0636\u063A\u0637.",name:"\u062C\u0648\u062F\u0629 JPEG"},locationForNewAttachments:{description:{part1:"\u0627\u0628\u062F\u0623 \u0628\u0640",part2:"\u0644\u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u0645\u0633\u0627\u0631 \u0627\u0644\u0646\u0633\u0628\u064A.",part3:"\u0627\u0646\u0638\u0631",part4:"\u0627\u0644\u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u062A\u0627\u062D\u0629",part5:"\u0627\u0644\u0645\u062C\u0644\u062F\u0627\u062A \u0627\u0644\u0646\u0642\u0637\u064A\u0629 \u0645\u062B\u0644",part6:"\u063A\u064A\u0631 \u0645\u0648\u0635\u0649 \u0628\u0647\u0627\u060C \u0644\u0623\u0646 Obsidian \u0644\u0627 \u064A\u062A\u062A\u0628\u0639\u0647\u0627. \u0642\u062F \u062A\u062D\u062A\u0627\u062C \u0625\u0644\u0649 \u0627\u0633\u062A\u062E\u062F\u0627\u0645",part7:"\u0625\u0636\u0627\u0641\u0629 \u0644\u0625\u062F\u0627\u0631\u062A\u0647\u0627."},name:"\u0645\u0648\u0642\u0639 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0627\u0644\u062C\u062F\u064A\u062F\u0629"},markdownUrlFormat:{description:{part1:"\u062A\u0646\u0633\u064A\u0642 \u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u0630\u064A \u0633\u064A\u062A\u0645 \u0625\u062F\u0631\u0627\u062C\u0647 \u0641\u064A Markdown.",part2:"\u0627\u0646\u0638\u0631",part3:"\u0627\u0644\u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u062A\u0627\u062D\u0629",part4:"\u0627\u062A\u0631\u0643\u0647 \u0641\u0627\u0631\u063A\u0627\u064B \u0644\u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u062A\u0646\u0633\u064A\u0642 \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A."},name:"\u062A\u0646\u0633\u064A\u0642 \u0631\u0627\u0628\u0637 Markdown"},renameAttachmentsToLowerCase:"\u0625\u0639\u0627\u062F\u0629 \u062A\u0633\u0645\u064A\u0629 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0628\u0623\u062D\u0631\u0641 \u0635\u063A\u064A\u0631\u0629",renamedAttachmentFileName:{description:{part1:"\u0627\u0646\u0638\u0631",part2:"\u0627\u0644\u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u062A\u0627\u062D\u0629",part3:"\u0627\u062A\u0631\u0643\u0647 \u0641\u0627\u0631\u063A\u0627\u064B \u0644\u0627\u0633\u062A\u062E\u062F\u0627\u0645",part4:"\u0627\u0644\u0625\u0639\u062F\u0627\u062F \u0628\u062F\u0644\u0627\u064B \u0645\u0646 \u0630\u0644\u0643."},name:"\u0627\u0633\u0645 \u0645\u0644\u0641 \u0627\u0644\u0645\u0631\u0641\u0642 \u0627\u0644\u0645\u064F\u0639\u0627\u062F \u062A\u0633\u0645\u064A\u062A\u0647"},resetToSampleCustomTokens:{message:"\u0647\u0644 \u0623\u0646\u062A \u0645\u062A\u0623\u0643\u062F \u0645\u0646 \u0623\u0646\u0643 \u062A\u0631\u064A\u062F \u0625\u0639\u0627\u062F\u0629 \u062A\u0639\u064A\u064A\u0646 \u0627\u0644\u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u062E\u0635\u0635\u0629 \u0625\u0644\u0649 \u0627\u0644\u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u062E\u0635\u0635\u0629 \u0627\u0644\u0646\u0645\u0648\u0630\u062C\u064A\u0629\u061F \u0633\u062A\u0636\u064A\u0639 \u062A\u063A\u064A\u064A\u0631\u0627\u062A\u0643.",title:"\u0625\u0639\u0627\u062F\u0629 \u062A\u0639\u064A\u064A\u0646 \u0625\u0644\u0649 \u0627\u0644\u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u062E\u0635\u0635\u0629 \u0627\u0644\u0646\u0645\u0648\u0630\u062C\u064A\u0629"},shouldConvertPastedImagesToJpeg:{description:"\u0645\u0627 \u0625\u0630\u0627 \u0643\u0627\u0646 \u064A\u062C\u0628 \u062A\u062D\u0648\u064A\u0644 \u0627\u0644\u0635\u0648\u0631 \u0627\u0644\u0645\u064F\u0644\u0635\u0642\u0629 \u0625\u0644\u0649 JPEG. \u064A\u0646\u0637\u0628\u0642 \u0641\u0642\u0637 \u0639\u0646\u062F \u0644\u0635\u0642 \u0645\u062D\u062A\u0648\u0649 \u0635\u0648\u0631\u0629 PNG \u0645\u0628\u0627\u0634\u0631\u0629 \u0645\u0646 \u0627\u0644\u062D\u0627\u0641\u0638\u0629. \u0639\u0627\u062F\u0629\u060C \u0644\u0644\u0635\u0642 \u0644\u0642\u0637\u0627\u062A \u0627\u0644\u0634\u0627\u0634\u0629.",name:"\u064A\u062C\u0628 \u062A\u062D\u0648\u064A\u0644 \u0627\u0644\u0635\u0648\u0631 \u0627\u0644\u0645\u064F\u0644\u0635\u0642\u0629 \u0625\u0644\u0649 JPEG"},shouldDeleteOrphanAttachments:{description:"\u0625\u0630\u0627 \u062A\u0645 \u062A\u0641\u0639\u064A\u0644\u0647\u060C \u0639\u0646\u062F \u062D\u0630\u0641 \u0627\u0644\u0645\u0644\u0627\u062D\u0638\u0629\u060C \u0633\u064A\u062A\u0645 \u062D\u0630\u0641 \u0645\u0631\u0641\u0642\u0627\u062A\u0647\u0627 \u0627\u0644\u064A\u062A\u064A\u0645\u0629 \u0623\u064A\u0636\u0627\u064B.",name:"\u064A\u062C\u0628 \u062D\u0630\u0641 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0627\u0644\u064A\u062A\u064A\u0645\u0629"},shouldRenameAttachmentFiles:{description:{part1:"\u0625\u0630\u0627 \u062A\u0645 \u062A\u0641\u0639\u064A\u0644\u0647\u060C \u0639\u0646\u062F \u0625\u0639\u0627\u062F\u0629 \u062A\u0633\u0645\u064A\u0629 \u0623\u0648 \u0646\u0642\u0644 \u0627\u0644\u0645\u0644\u0627\u062D\u0638\u0629\u060C \u0633\u064A\u062A\u0645 \u0625\u0639\u0627\u062F\u0629 \u062A\u0633\u0645\u064A\u0629 \u0645\u0631\u0641\u0642\u0627\u062A\u0647\u0627 \u0648\u0641\u0642\u0627\u064B \u0644\u0640",part2:"\u0627\u0644\u0625\u0639\u062F\u0627\u062F."},name:"\u064A\u062C\u0628 \u0625\u0639\u0627\u062F\u0629 \u062A\u0633\u0645\u064A\u0629 \u0645\u0644\u0641\u0627\u062A \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A"},shouldRenameAttachmentFolders:{description:"\u0645\u0627 \u0625\u0630\u0627 \u0643\u0627\u0646 \u064A\u062C\u0628 \u0625\u0639\u0627\u062F\u0629 \u062A\u0633\u0645\u064A\u0629 \u0645\u062C\u0644\u062F\u0627\u062A \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0639\u0646\u062F \u0625\u0639\u0627\u062F\u0629 \u062A\u0633\u0645\u064A\u0629 \u0623\u0648 \u0646\u0642\u0644 \u0627\u0644\u0645\u0644\u0627\u062D\u0638\u0629.",name:"\u064A\u062C\u0628 \u0625\u0639\u0627\u062F\u0629 \u062A\u0633\u0645\u064A\u0629 \u0645\u062C\u0644\u062F\u0627\u062A \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A"},shouldRenameCollectedAttachments:{description:{part1:"\u0625\u0630\u0627 \u062A\u0645 \u062A\u0641\u0639\u064A\u0644\u0647\u060C \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0627\u0644\u0645\u0639\u0627\u0644\u062C\u0629 \u0639\u0628\u0631",part2:"\u062C\u0645\u0639 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A",part3:"\u0627\u0644\u0623\u0648\u0627\u0645\u0631 \u0633\u064A\u062A\u0645 \u0625\u0639\u0627\u062F\u0629 \u062A\u0633\u0645\u064A\u062A\u0647\u0627 \u0648\u0641\u0642\u0627\u064B \u0644\u0640",part4:"\u0627\u0644\u0625\u0639\u062F\u0627\u062F."},name:"\u064A\u062C\u0628 \u0625\u0639\u0627\u062F\u0629 \u062A\u0633\u0645\u064A\u0629 \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0627\u0644\u0645\u062C\u0645\u0648\u0639\u0629"},specialCharacters:{description:{part1:"\u0627\u0644\u0623\u062D\u0631\u0641 \u0627\u0644\u062E\u0627\u0635\u0629 \u0641\u064A \u0645\u062C\u0644\u062F \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0648\u0627\u0633\u0645 \u0627\u0644\u0645\u0644\u0641 \u0627\u0644\u0645\u0631\u0627\u062F \u0627\u0633\u062A\u0628\u062F\u0627\u0644\u0647\u0627 \u0623\u0648 \u0625\u0632\u0627\u0644\u062A\u0647\u0627.",part2:"\u0627\u062A\u0631\u0643\u0647 \u0641\u0627\u0631\u063A\u0627\u064B \u0644\u0644\u062D\u0641\u0627\u0638 \u0639\u0644\u0649 \u0627\u0644\u0623\u062D\u0631\u0641 \u0627\u0644\u062E\u0627\u0635\u0629."},name:"\u0627\u0644\u0623\u062D\u0631\u0641 \u0627\u0644\u062E\u0627\u0635\u0629"},specialCharactersReplacement:{description:{part1:"\u0633\u0644\u0633\u0644\u0629 \u0627\u0644\u0627\u0633\u062A\u0628\u062F\u0627\u0644 \u0644\u0644\u0623\u062D\u0631\u0641 \u0627\u0644\u062E\u0627\u0635\u0629 \u0641\u064A \u0645\u062C\u0644\u062F \u0627\u0644\u0645\u0631\u0641\u0642\u0627\u062A \u0648\u0627\u0633\u0645 \u0627\u0644\u0645\u0644\u0641.",part2:"\u0627\u062A\u0631\u0643\u0647 \u0641\u0627\u0631\u063A\u0627\u064B \u0644\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0623\u062D\u0631\u0641 \u0627\u0644\u062E\u0627\u0635\u0629."},name:"\u0627\u0633\u062A\u0628\u062F\u0627\u0644 \u0627\u0644\u0623\u062D\u0631\u0641 \u0627\u0644\u062E\u0627\u0635\u0629"},timeoutInSeconds:{description:{part1:"\u0645\u0647\u0644\u0629 \u0627\u0644\u0648\u0642\u062A \u0628\u0627\u0644\u062B\u0648\u0627\u0646\u064A \u0644\u062C\u0645\u064A\u0639 \u0627\u0644\u0639\u0645\u0644\u064A\u0627\u062A.",part2:"\u0625\u0630\u0627 \u062A\u0645 \u062A\u0639\u064A\u064A\u0646",part3:"\u060C \u064A\u062A\u0645 \u062A\u0639\u0637\u064A\u0644 \u0645\u0647\u0644\u0629 \u062A\u0646\u0641\u064A\u0630 \u0627\u0644\u0639\u0645\u0644\u064A\u0627\u062A."},name:"\u0645\u0647\u0644\u0629 \u0627\u0644\u0648\u0642\u062A \u0628\u0627\u0644\u062B\u0648\u0627\u0646\u064A"},treatAsAttachmentExtensions:{description:{part1:"\u0627\u0639\u062A\u0628\u0631 \u0627\u0644\u0645\u0644\u0641\u0627\u062A \u0628\u0647\u0630\u0647 \u0627\u0644\u0627\u0645\u062A\u062F\u0627\u062F\u0627\u062A \u0643\u0645\u0631\u0641\u0642\u0627\u062A.",part2:"\u0627\u0641\u062A\u0631\u0627\u0636\u064A\u0627\u064B",part3:"\u0648",part4:"\u0627\u0644\u0645\u0644\u0641\u0627\u062A \u0627\u0644\u0645\u0631\u062A\u0628\u0637\u0629 \u0644\u0627 \u062A\u064F\u0639\u062A\u0628\u0631 \u0645\u0631\u0641\u0642\u0627\u062A \u0648\u0644\u0627 \u064A\u062A\u0645 \u0646\u0642\u0644\u0647\u0627 \u0645\u0639 \u0627\u0644\u0645\u0644\u0627\u062D\u0638\u0629.",part5:"\u064A\u0645\u0643\u0646\u0643 \u0625\u0636\u0627\u0641\u0629 \u0627\u0645\u062A\u062F\u0627\u062F\u0627\u062A \u0645\u062E\u0635\u0635\u0629\u060C \u0645\u062B\u0644\u0627\u064B",part6:"\u060C \u0644\u062A\u062C\u0627\u0648\u0632 \u0647\u0630\u0627 \u0627\u0644\u0633\u0644\u0648\u0643."},name:"\u0627\u0639\u062A\u0628\u0627\u0631 \u0643\u0627\u0645\u062A\u062F\u0627\u062F\u0627\u062A \u0645\u0631\u0641\u0642\u0627\u062A"}},promptWithPreviewModal:{previewModal:{title:"\u0645\u0639\u0627\u064A\u0646\u0629 \u0645\u0644\u0641 \u0627\u0644\u0645\u0631\u0641\u0642 '{{fullFileName}}'"},title:"\u0642\u062F\u0645 \u0642\u064A\u0645\u0629 \u0644\u0644\u0631\u0645\u0632 \u0627\u0644\u0645\u0637\u0627\u0644\u0628\u0629"},regularExpression:"/\u0627\u0644\u062A\u0639\u0628\u064A\u0631 \u0627\u0644\u0646\u0645\u0637\u064A/"};var $m={attachmentCollector:{confirm:{part1:"\u0421\u0430\u0431\u0440\u0430\u0446\u044C \u0443\u043A\u043B\u0430\u0434\u0430\u043D\u043D\u0456 \u0434\u043B\u044F \u045E\u0441\u0456\u0445 \u043D\u0430\u0442\u0430\u0442\u0430\u043A \u0443 \u043F\u0430\u043F\u043A\u0430\u0445 \u0440\u044D\u043A\u0443\u0440\u0441\u0456\u045E\u043D\u0430?",part2:"\u0413\u044D\u0442\u0443\u044E \u0430\u043F\u0435\u0440\u0430\u0446\u044B\u044E \u043D\u0435\u043B\u044C\u0433\u0430 \u0430\u0434\u043C\u044F\u043D\u0456\u0446\u044C."},progressBar:{message:"\u0417\u0431\u043E\u0440 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E {{iterationStr}} - '{{noteFilePath}}'.",title:"\u0417\u0431\u043E\u0440 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E..."}},buttons:{copy:"\u041A\u0430\u043F\u0456\u044F\u0432\u0430\u0446\u044C",move:"\u041F\u0435\u0440\u0430\u043C\u044F\u0441\u0446\u0456\u0446\u044C",previewAttachmentFile:"\u041F\u0440\u0430\u0433\u043B\u044F\u0434\u0437\u0435\u0446\u044C \u0444\u0430\u0439\u043B \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F",skip:"\u041F\u0440\u0430\u043F\u0443\u0441\u0446\u0456\u0446\u044C"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"\u0414\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0435",part2:"\u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u043E\u045E\u0432\u0430\u0435\u0446\u0446\u0430 \u043D\u0435\u043A\u0430\u043B\u044C\u043A\u0456\u043C\u0456 \u043D\u0430\u0442\u0430\u0442\u043A\u0430\u043C\u0456."},heading:"\u0417\u0431\u043E\u0440 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F, \u044F\u043A\u043E\u0435 \u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u043E\u045E\u0432\u0430\u0435\u0446\u0446\u0430 \u043D\u0435\u043A\u0430\u043B\u044C\u043A\u0456\u043C\u0456 \u043D\u0430\u0442\u0430\u0442\u043A\u0430\u043C\u0456",shouldUseSameActionForOtherProblematicAttachmentsToggle:"\u0426\u0456 \u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u043E\u045E\u0432\u0430\u0446\u044C \u0442\u043E\u0435 \u0436 \u0434\u0437\u0435\u044F\u043D\u043D\u0435 \u0434\u043B\u044F \u0456\u043D\u0448\u044B\u0445 \u043F\u0440\u0430\u0431\u043B\u0435\u043C\u043D\u044B\u0445 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E"},commands:{collectAttachmentsCurrentFolder:"\u0421\u0430\u0431\u0440\u0430\u0446\u044C \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0456 \u045E \u0431\u044F\u0433\u0443\u0447\u0430\u0439 \u043F\u0430\u043F\u0446\u044B",collectAttachmentsCurrentNote:"\u0421\u0430\u0431\u0440\u0430\u0446\u044C \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0456 \u045E \u0431\u044F\u0433\u0443\u0447\u0430\u0439 \u043D\u0430\u0442\u0430\u0442\u0446\u044B",collectAttachmentsEntireVault:"\u0421\u0430\u0431\u0440\u0430\u0446\u044C \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0456 \u0432\u0430 \u045E\u0441\u0451\u0439 \u0441\u0445\u043E\u0432\u0456\u0448\u0447\u044B"},menuItems:{collectAttachmentsInFile:"\u0421\u0430\u0431\u0440\u0430\u0446\u044C \u0443\u043A\u043B\u0430\u0434\u0430\u043D\u043D\u0456 \u045E \u0444\u0430\u0439\u043B\u0435",collectAttachmentsInFiles:"\u0421\u0430\u0431\u0440\u0430\u0446\u044C \u0443\u043A\u043B\u0430\u0434\u0430\u043D\u043D\u0456 \u045E \u0444\u0430\u0439\u043B\u0430\u0445"},notice:{collectingAttachments:"\u0417\u0431\u043E\u0440 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E \u0434\u043B\u044F '{{noteFilePath}}'",collectingAttachmentsCancelled:"\u0417\u0431\u043E\u0440 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E \u0430\u0434\u043C\u0435\u043D\u0435\u043D\u044B. \u0413\u043B\u044F\u0434\u0437\u0456\u0446\u0435 \u043A\u0430\u043D\u0441\u043E\u043B\u044C \u0434\u043B\u044F \u043F\u0430\u0434\u0440\u0430\u0431\u044F\u0437\u043D\u0430\u0441\u0446\u0435\u0439.",generatedAttachmentFileNameIsInvalid:{part1:`\u0417\u0433\u0435\u043D\u0435\u0440\u0430\u0432\u0430\u043D\u0430\u0435 \u0456\u043C\u044F \u0444\u0430\u0439\u043B\u0430 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F '{{path}}' \u043D\u0435\u0434\u0430\u043F\u0443\u0448\u0447\u0430\u043B\u044C\u043D\u0430\u0435.
|
|
460
|
+
{{validationMessage}}
|
|
461
|
+
\u041F\u0440\u0430\u0432\u0435\u0440\u0446\u0435 \u0432\u0430\u0448`,part2:"\u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440."},notePathIsIgnored:"\u0428\u043B\u044F\u0445 \u043D\u0430\u0442\u0430\u0442\u043A\u0456 \u0456\u0433\u043D\u0430\u0440\u0443\u0435\u0446\u0446\u0430"},obsidianDevUtils:{buttons:{cancel:"\u0410\u0434\u043C\u0435\u043D\u0430",ok:"\u041E\u041A"},dataview:{itemsPerPage:"\u042D\u043B\u0435\u043C\u0435\u043D\u0442\u0430\u045E \u043D\u0430 \u0441\u0442\u0430\u0440\u043E\u043D\u0446\u044B:",jumpToPage:"\u041F\u0435\u0440\u0430\u0439\u0441\u0446\u0456 \u043D\u0430 \u0441\u0442\u0430\u0440\u043E\u043D\u043A\u0443:"},notices:{attachmentIsStillUsed:"\u0414\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0435 {{attachmentPath}} \u0443\u0441\u0451 \u044F\u0448\u0447\u044D \u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u043E\u045E\u0432\u0430\u0435\u0446\u0446\u0430 \u0456\u043D\u0448\u044B\u043C\u0456 \u043D\u0430\u0442\u0430\u0442\u043A\u0430\u043C\u0456. \u042F\u043D\u043E \u043D\u0435 \u0431\u0443\u0434\u0437\u0435 \u0432\u044B\u0434\u0430\u043B\u0435\u043D\u0430.",unhandledError:"\u0410\u0434\u0431\u044B\u043B\u0430\u0441\u044F \u043D\u0435\u0430\u043F\u0440\u0430\u0446\u0430\u0432\u0430\u043D\u0430\u044F \u043F\u0430\u043C\u044B\u043B\u043A\u0430. \u041A\u0430\u043B\u0456 \u043B\u0430\u0441\u043A\u0430, \u043F\u0440\u0430\u0432\u0435\u0440\u0446\u0435 \u043A\u0430\u043D\u0441\u043E\u043B\u044C \u0434\u043B\u044F \u0430\u0442\u0440\u044B\u043C\u0430\u043D\u043D\u044F \u0434\u0430\u0434\u0430\u0442\u043A\u043E\u0432\u0430\u0439 \u0456\u043D\u0444\u0430\u0440\u043C\u0430\u0446\u044B\u0456."}},pluginSettings:{attachmentRenameMode:{all:{description:"\u0443\u0441\u0435 \u0444\u0430\u0439\u043B\u044B \u043F\u0435\u0440\u0430\u0439\u043C\u0435\u043D\u0430\u0432\u0430\u043D\u044B.",displayText:"\u0423\u0441\u0435"},none:{description:"\u0456\u0445 \u043D\u0430\u0437\u0432\u044B \u0437\u0430\u0445\u0430\u0432\u0430\u043D\u044B.",displayText:"\u041D\u0456\u0432\u043E\u0434\u043D\u044B"},onlyPastedImages:{description:"\u043F\u0435\u0440\u0430\u0439\u043C\u0435\u043D\u0430\u0432\u0430\u043D\u044B \u0442\u043E\u043B\u044C\u043A\u0456 \u045E\u0441\u0442\u0430\u045E\u043B\u0435\u043D\u044B\u044F \u0432\u044B\u044F\u0432\u044B. \u0423\u0436\u044B\u0432\u0430\u0435\u0446\u0446\u0430 \u0442\u043E\u043B\u044C\u043A\u0456 \u043A\u0430\u043B\u0456 \u0437\u043C\u0435\u0441\u0446\u0456\u0432\u0430 PNG \u0432\u044B\u044F\u0432\u044B \u045E\u0441\u0442\u0430\u045E\u043B\u044F\u0435\u0446\u0446\u0430 \u043D\u0435\u043F\u0430\u0441\u0440\u044D\u0434\u043D\u0430 \u0437 \u0431\u0443\u0444\u0435\u0440\u0430 \u0430\u0431\u043C\u0435\u043D\u0443. \u0417\u0432\u044B\u0447\u0430\u0439\u043D\u0430 \u0434\u043B\u044F \u045E\u0441\u0442\u0430\u045E\u043A\u0456 \u0441\u043A\u0440\u044B\u043D\u0448\u043E\u0442\u0430\u045E.",displayText:"\u0422\u043E\u043B\u044C\u043A\u0456 \u045E\u0441\u0442\u0430\u045E\u043B\u0435\u043D\u044B\u044F \u0432\u044B\u044F\u0432\u044B"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"\u0430\u0434\u043C\u044F\u043D\u0456\u0446\u044C \u0437\u0431\u043E\u0440 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E.",displayText:"\u0410\u0434\u043C\u0435\u043D\u0430"},copy:{description:"\u0441\u043A\u0430\u043F\u0456\u044F\u0432\u0430\u0446\u044C \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0435 \u045E \u043D\u043E\u0432\u0443\u044E \u043C\u0435\u0441\u0446\u0430\u0437\u043D\u0430\u0445\u043E\u0434\u0436\u0430\u043D\u043D\u0435.",displayText:"\u041A\u0430\u043F\u0456\u044F\u0432\u0430\u0446\u044C"},move:{description:"\u043F\u0435\u0440\u0430\u043C\u044F\u0441\u0446\u0456\u0446\u044C \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0435 \u045E \u043D\u043E\u0432\u0443\u044E \u043C\u0435\u0441\u0446\u0430\u0437\u043D\u0430\u0445\u043E\u0434\u0436\u0430\u043D\u043D\u0435.",displayText:"\u041F\u0435\u0440\u0430\u043C\u044F\u0441\u0446\u0456\u0446\u044C"},prompt:{description:"\u0437\u0430\u043F\u044B\u0442\u0430\u0446\u044C \u043A\u0430\u0440\u044B\u0441\u0442\u0430\u043B\u044C\u043D\u0456\u043A\u0430 \u0432\u044B\u0431\u0440\u0430\u0446\u044C \u0434\u0437\u0435\u044F\u043D\u043D\u0435.",displayText:"\u0417\u0430\u043F\u044B\u0442"},skip:{description:"\u043F\u0440\u0430\u043F\u0443\u0441\u0446\u0456\u0446\u044C \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0435 \u0456 \u043F\u0435\u0440\u0430\u0439\u0441\u0446\u0456 \u0434\u0430 \u043D\u0430\u0441\u0442\u0443\u043F\u043D\u0430\u0433\u0430.",displayText:"\u041F\u0440\u0430\u043F\u0443\u0441\u0446\u0456\u0446\u044C"}},defaultImageSizeDimension:{height:"\u0412\u044B\u0448\u044B\u043D\u044F",width:"\u0428\u044B\u0440\u044B\u043D\u044F"},emptyAttachmentFolderBehavior:{delete:{description:"\u0432\u044B\u0434\u0430\u043B\u0456\u0446\u044C \u043F\u0443\u0441\u0442\u0443\u044E \u043F\u0430\u043F\u043A\u0443 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E.",displayText:"\u0412\u044B\u0434\u0430\u043B\u0456\u0446\u044C"},deleteWithEmptyParents:{description:"\u0432\u044B\u0434\u0430\u043B\u0456\u0446\u044C \u043F\u0443\u0441\u0442\u0443\u044E \u043F\u0430\u043F\u043A\u0443 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E \u0456 \u044F\u0435 \u043F\u0443\u0441\u0442\u044B\u044F \u0431\u0430\u0446\u044C\u043A\u043E\u045E\u0441\u043A\u0456\u044F \u043F\u0430\u043F\u043A\u0456.",displayText:"\u0412\u044B\u0434\u0430\u043B\u0456\u0446\u044C \u0437 \u043F\u0443\u0441\u0442\u044B\u043C\u0456 \u0431\u0430\u0446\u044C\u043A\u043E\u045E\u0441\u043A\u0456\u043C\u0456"},keep:{description:"\u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044C \u043F\u0443\u0441\u0442\u0443\u044E \u043F\u0430\u043F\u043A\u0443 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E.",displayText:"\u0417\u0430\u0445\u0430\u0432\u0430\u0446\u044C"}}},pluginSettingsManager:{customToken:{codeComment:`// \u041A\u0430\u0440\u044B\u0441\u0442\u0430\u043B\u044C\u043D\u0456\u0446\u043A\u0456\u044F \u0442\u043E\u043A\u0435\u043D\u044B \u0431\u044B\u043B\u0456 \u0437\u0430\u043A\u0430\u043C\u0435\u043D\u0442\u0430\u0432\u0430\u043D\u044B, \u043F\u0430\u043A\u043E\u043B\u044C\u043A\u0456 \u044F\u043D\u044B \u043F\u0430\u0432\u0456\u043D\u043D\u044B \u0431\u044B\u0446\u044C \u0430\u0431\u043D\u043E\u045E\u043B\u0435\u043D\u044B \u0434\u0430 \u043D\u043E\u0432\u0430\u0433\u0430 \u0444\u0430\u0440\u043C\u0430\u0442\u0443, \u0443\u0432\u0435\u0434\u0437\u0435\u043D\u0430\u0433\u0430 \u045E \u0432\u0435\u0440\u0441\u0456\u0456 \u043F\u043B\u0430\u0433\u0456\u043D\u0430 9.0.0.
|
|
462
|
+
// \u0417\u0432\u044F\u0440\u043D\u0456\u0446\u0435\u0441\u044F \u0434\u0430 \u0434\u0430\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u044B\u0456 (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) \u0434\u043B\u044F \u0430\u0442\u0440\u044B\u043C\u0430\u043D\u043D\u044F \u0434\u0430\u0434\u0430\u0442\u043A\u043E\u0432\u0430\u0439 \u0456\u043D\u0444\u0430\u0440\u043C\u0430\u0446\u044B\u0456.`,deprecated:{part1:"\u0423 \u0432\u0435\u0440\u0441\u0456\u0456 \u043F\u043B\u0430\u0433\u0456\u043D\u0430 9.0.0 \u0444\u0430\u0440\u043C\u0430\u0442 \u0440\u044D\u0433\u0456\u0441\u0442\u0440\u0430\u0446\u044B\u0456 \u043A\u0430\u0440\u044B\u0441\u0442\u0430\u043B\u044C\u043D\u0456\u0446\u043A\u0456\u0445 \u0442\u043E\u043A\u0435\u043D\u0430\u045E \u0437\u043C\u044F\u043D\u0456\u045E\u0441\u044F. \u041A\u0430\u043B\u0456 \u043B\u0430\u0441\u043A\u0430, \u0430\u0431\u043D\u0430\u0432\u0456\u0446\u0435 \u0432\u0430\u0448\u044B \u0442\u043E\u043A\u0435\u043D\u044B \u0430\u0434\u043F\u0430\u0432\u0435\u0434\u043D\u0430. \u0417\u0432\u044F\u0440\u043D\u0456\u0446\u0435\u0441\u044F \u0434\u0430",part2:"\u0434\u0430\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u044B\u0456",part3:"\u0434\u043B\u044F \u0430\u0442\u0440\u044B\u043C\u0430\u043D\u043D\u044F \u0434\u0430\u0434\u0430\u0442\u043A\u043E\u0432\u0430\u0439 \u0456\u043D\u0444\u0430\u0440\u043C\u0430\u0446\u044B\u0456"}},legacyRenameAttachmentsToLowerCase:{part1:"\u0423 \u0432\u0435\u0440\u0441\u0456\u0456 \u043F\u043B\u0430\u0433\u0456\u043D\u0430 9.0.0",part2:"\u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440 \u0441\u0430\u0441\u0442\u0430\u0440\u044D\u043B\u044B. \u0412\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u043E\u045E\u0432\u0430\u0439\u0446\u0435",part3:"\u0444\u0430\u0440\u043C\u0430\u0442 \u0437\u0430\u043C\u0435\u0441\u0442 \u0433\u044D\u0442\u0430\u0433\u0430. \u0413\u043B\u044F\u0434\u0437\u0456\u0446\u0435",part4:"\u0434\u0430\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u044B\u044E",part5:"\u0434\u043B\u044F \u0430\u0442\u0440\u044B\u043C\u0430\u043D\u043D\u044F \u0434\u0430\u0434\u0430\u0442\u043A\u043E\u0432\u0430\u0439 \u0456\u043D\u0444\u0430\u0440\u043C\u0430\u0446\u044B\u0456"},markdownUrlFormat:{deprecated:{part1:"\u0423 \u0432\u0430\u0441 \u043F\u0430\u0442\u044D\u043D\u0446\u044B\u0439\u043D\u0430 \u043D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u0430\u0435 \u0437\u043D\u0430\u0447\u044D\u043D\u043D\u0435 \u0434\u043B\u044F",part2:"\u0444\u0430\u0440\u043C\u0430\u0442\u0443. \u041A\u0430\u043B\u0456 \u043B\u0430\u0441\u043A\u0430, \u0437\u0432\u044F\u0440\u043D\u0456\u0446\u0435\u0441\u044F \u0434\u0430",part3:"\u0434\u0430\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u044B\u0456",part4:"\u0434\u043B\u044F \u0430\u0442\u0440\u044B\u043C\u0430\u043D\u043D\u044F \u0434\u0430\u0434\u0430\u0442\u043A\u043E\u0432\u0430\u0439 \u0456\u043D\u0444\u0430\u0440\u043C\u0430\u0446\u044B\u0456",part5:"\u0413\u044D\u0442\u0430 \u043F\u0430\u0432\u0435\u0434\u0430\u043C\u043B\u0435\u043D\u043D\u0435 \u0431\u043E\u043B\u044C\u0448 \u043D\u0435 \u0431\u0443\u0434\u0437\u0435 \u043F\u0430\u043A\u0430\u0437\u0430\u043D\u0430."}},specialCharacters:{part1:"\u0423 \u0432\u0435\u0440\u0441\u0456\u0456 \u043F\u043B\u0430\u0433\u0456\u043D\u0430 9.16.0",part2:"\u0437\u043D\u0430\u0447\u044D\u043D\u043D\u0435 \u043F\u0430 \u0437\u043C\u0430\u045E\u0447\u0430\u043D\u043D\u0456 \u0431\u044B\u043B\u043E \u0437\u043C\u0435\u043D\u0435\u043D\u0430. \u0412\u0430\u0448\u0430 \u0437\u043D\u0430\u0447\u044D\u043D\u043D\u0435 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0430 \u0431\u044B\u043B\u043E \u0430\u0431\u043D\u043E\u045E\u043B\u0435\u043D\u0430 \u0434\u0430 \u043D\u043E\u0432\u0430\u0433\u0430 \u0437\u043D\u0430\u0447\u044D\u043D\u043D\u044F \u043F\u0430 \u0437\u043C\u0430\u045E\u0447\u0430\u043D\u043D\u0456."},validation:{defaultImageSizeMustBePercentageOrPixels:"\u041F\u0440\u0430\u0434\u0432\u044B\u0437\u043D\u0430\u0447\u0430\u043D\u044B \u043F\u0430\u043C\u0435\u0440 \u0432\u044B\u044F\u0432\u044B \u043F\u0430\u0432\u0456\u043D\u0435\u043D \u0431\u044B\u0446\u044C \u0443 \u043F\u0456\u043A\u0441\u0435\u043B\u044F\u0445 \u0430\u0431\u043E \u045E \u043F\u0440\u0430\u0446\u044D\u043D\u0442\u0430\u0445",invalidCustomTokensCode:"\u041D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u044B \u043A\u043E\u0434 \u043A\u0430\u0440\u044B\u0441\u0442\u0430\u043B\u044C\u043D\u0456\u0446\u043A\u0456\u0445 \u0442\u043E\u043A\u0435\u043D\u0430\u045E",invalidRegularExpression:"\u041D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u044B \u0440\u044D\u0433\u0443\u043B\u044F\u0440\u043D\u044B \u0432\u044B\u0440\u0430\u0437 {{regExp}}",specialCharactersMustNotContainSlash:"\u0421\u043F\u0435\u0446\u044B\u044F\u043B\u044C\u043D\u044B\u044F \u0441\u0456\u043C\u0432\u0430\u043B\u044B \u043D\u0435 \u043F\u0430\u0432\u0456\u043D\u043D\u044B \u0437\u043C\u044F\u0448\u0447\u0430\u0446\u044C /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"\u0417\u0430\u043C\u0435\u043D\u0430 \u0441\u043F\u0435\u0446\u044B\u044F\u043B\u044C\u043D\u044B\u0445 \u0441\u0456\u043C\u0432\u0430\u043B\u0430\u045E \u043D\u0435 \u043F\u0430\u0432\u0456\u043D\u043D\u0430 \u0437\u043C\u044F\u0448\u0447\u0430\u0446\u044C \u043D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u044B\u044F \u0441\u0456\u043C\u0432\u0430\u043B\u044B \u0448\u043B\u044F\u0445\u0443 \u0456\u043C\u044F \u0444\u0430\u0439\u043B\u0430."},version:{part1:"\u0412\u0430\u0448 \u0444\u0430\u0439\u043B \u043D\u0430\u043B\u0430\u0434\u043E\u043A ",part2:"\u043C\u0430\u0435 \u0432\u0435\u0440\u0441\u0456\u044E",part3:"\u044F\u043A\u0430\u044F \u043D\u0430\u0432\u0435\u0439\u0448\u0430\u044F \u0437\u0430 \u0431\u044F\u0433\u0443\u0447\u0443\u044E \u0432\u0435\u0440\u0441\u0456\u044E \u043F\u043B\u0430\u0433\u0456\u043D\u0430",part4:"\u041F\u043B\u0430\u0433\u0456\u043D \u043C\u043E\u0436\u0430 \u043F\u0440\u0430\u0446\u0430\u0432\u0430\u0446\u044C \u043D\u0435 \u0442\u0430\u043A, \u044F\u043A \u0447\u0430\u043A\u0430\u0435\u0446\u0446\u0430. \u041A\u0430\u043B\u0456 \u043B\u0430\u0441\u043A\u0430, \u0430\u0431\u043D\u0430\u0432\u0456\u0446\u0435 \u043F\u043B\u0430\u0433\u0456\u043D \u0434\u0430 \u0430\u043F\u043E\u0448\u043D\u044F\u0439 \u0432\u0435\u0440\u0441\u0456\u0456 \u0430\u0431\u043E \u043F\u0435\u0440\u0430\u043A\u0430\u043D\u0430\u0439\u0446\u0435\u0441\u044F, \u0448\u0442\u043E \u043D\u0430\u043B\u0430\u0434\u044B \u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u044B\u044F."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"\u041F\u0440\u044B \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0456 \u0444\u0430\u0439\u043B\u0430\u045E:"},name:"\u0420\u044D\u0436\u044B\u043C \u043F\u0435\u0440\u0430\u0439\u043C\u0435\u043D\u0430\u0432\u0430\u043D\u043D\u044F \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"\u041A\u0430\u043B\u0456 \u0441\u0430\u0431\u0440\u0430\u043D\u0430\u0435 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0435 \u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u043E\u045E\u0432\u0430\u0435\u0446\u0446\u0430 \u043D\u0435\u043A\u0430\u043B\u044C\u043A\u0456\u043C\u0456 \u043D\u0430\u0442\u0430\u0442\u043A\u0430\u043C\u0456:"},name:"\u0420\u044D\u0436\u044B\u043C \u0437\u0431\u043E\u0440\u0443 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F, \u044F\u043A\u043E\u0435 \u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u043E\u045E\u0432\u0430\u0435\u0446\u0446\u0430 \u043D\u0435\u043A\u0430\u043B\u044C\u043A\u0456\u043C\u0456 \u043D\u0430\u0442\u0430\u0442\u043A\u0430\u043C\u0456"},collectedAttachmentFileName:{description:{part1:"\u0413\u043B\u044F\u0434\u0437\u0456\u0446\u0435 \u0434\u0430\u0441\u0442\u0443\u043F\u043D\u044B\u044F",part2:"\u0442\u043E\u043A\u0435\u043D\u044B",part3:"\u041F\u0430\u043A\u0456\u043D\u044C\u0446\u0435 \u043F\u0443\u0441\u0442\u0430, \u043A\u0430\u0431 \u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u043E\u045E\u0432\u0430\u0446\u044C",part4:"\u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440 \u0437\u0430\u043C\u0435\u0441\u0442 \u0433\u044D\u0442\u0430\u0433\u0430."},name:"\u0406\u043C\u044F \u0444\u0430\u0439\u043B\u0430 \u0441\u0430\u0431\u0440\u0430\u043D\u0430\u0433\u0430 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F"},customTokens:{description:{part1:"\u041A\u0430\u0440\u044B\u0441\u0442\u0430\u043B\u044C\u043D\u0456\u0446\u043A\u0456\u044F \u0442\u043E\u043A\u0435\u043D\u044B \u0434\u043B\u044F \u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u0430\u043D\u043D\u044F.",part2:"\u0413\u043B\u044F\u0434\u0437\u0456\u0446\u0435",part3:"\u0434\u0430\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u044B\u044E",part4:"\u0434\u043B\u044F \u0430\u0442\u0440\u044B\u043C\u0430\u043D\u043D\u044F \u0434\u0430\u0434\u0430\u0442\u043A\u043E\u0432\u0430\u0439 \u0456\u043D\u0444\u0430\u0440\u043C\u0430\u0446\u044B\u0456.",part5:"\u26A0\uFE0F \u041A\u0430\u0440\u044B\u0441\u0442\u0430\u043B\u044C\u043D\u0456\u0446\u043A\u0456\u044F \u0442\u043E\u043A\u0435\u043D\u044B \u043C\u043E\u0433\u0443\u0446\u044C \u0431\u044B\u0446\u044C \u0430\u0434\u0432\u043E\u043B\u044C\u043D\u044B\u043C JavaScript \u043A\u043E\u0434\u0430\u043C. \u041A\u0430\u043B\u0456 \u044F\u043D\u044B \u0434\u0440\u044D\u043D\u043D\u0430 \u043D\u0430\u043F\u0456\u0441\u0430\u043D\u044B, \u0433\u044D\u0442\u0430 \u043C\u043E\u0436\u0430 \u043F\u0440\u044B\u0432\u0435\u0441\u0446\u0456 \u0434\u0430 \u0441\u0442\u0440\u0430\u0442\u044B \u0434\u0430\u043D\u044B\u0445. \u0412\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u043E\u045E\u0432\u0430\u0439\u0446\u0435 \u043D\u0430 \u0441\u0432\u043E\u0439 \u0440\u044B\u0437\u044B\u043A\u0443."},name:"\u041A\u0430\u0440\u044B\u0441\u0442\u0430\u043B\u044C\u043D\u0456\u0446\u043A\u0456\u044F \u0442\u043E\u043A\u0435\u043D\u044B"},defaultImageSize:{description:{part1:"\u041F\u0440\u0430\u0434\u0432\u044B\u0437\u043D\u0430\u0447\u0430\u043D\u044B \u043F\u0430\u043C\u0435\u0440 \u0432\u044B\u044F\u0432\u044B.",part2:"\u041C\u043E\u0436\u0430 \u0431\u044B\u0446\u044C \u0443\u043A\u0430\u0437\u0430\u043D\u044B \u045E \u043F\u0456\u043A\u0441\u0435\u043B\u044F\u0445",part3:"\u0430\u0431\u043E \u045E \u043F\u0440\u0430\u0446\u044D\u043D\u0442\u0430\u0445 \u043F\u043E\u045E\u043D\u0430\u0433\u0430 \u043F\u0430\u043C\u0435\u0440\u0443 \u0432\u044B\u044F\u0432\u044B",part4:"\u041F\u0430\u043A\u0456\u043D\u044C\u0446\u0435 \u043F\u0443\u0441\u0442\u0430, \u043A\u0430\u0431 \u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u043E\u045E\u0432\u0430\u0446\u044C \u0430\u0440\u044B\u0433\u0456\u043D\u0430\u043B\u044C\u043D\u044B \u043F\u0430\u043C\u0435\u0440."},name:"\u041F\u0440\u0430\u0434\u0432\u044B\u0437\u043D\u0430\u0447\u0430\u043D\u044B \u043F\u0430\u043C\u0435\u0440 \u0432\u044B\u044F\u0432\u044B"},duplicateNameSeparator:{description:{part1:"\u041A\u0430\u043B\u0456 \u0432\u044B \u045E\u0441\u0442\u0430\u045E\u043B\u044F\u0435\u0446\u0435/\u043F\u0435\u0440\u0430\u0446\u044F\u0433\u0432\u0430\u0435\u0446\u0435 \u0444\u0430\u0439\u043B \u0437 \u0442\u044B\u043C \u0436\u0430 \u0456\u043C\u0435\u043C, \u0448\u0442\u043E \u0456 \u0456\u0441\u043D\u0443\u044E\u0447\u044B \u0444\u0430\u0439\u043B, \u0433\u044D\u0442\u044B \u0440\u0430\u0437\u0434\u0437\u044F\u043B\u044F\u043B\u044C\u043D\u0456\u043A \u0431\u0443\u0434\u0437\u0435 \u0434\u0430\u0434\u0430\u0434\u0437\u0435\u043D\u044B \u0434\u0430 \u0456\u043C\u044F \u0444\u0430\u0439\u043B\u0430.",part2:"\u041D\u0430\u043F\u0440\u044B\u043A\u043B\u0430\u0434, \u043A\u0430\u043B\u0456 \u0432\u044B \u043F\u0435\u0440\u0430\u0446\u044F\u0433\u0432\u0430\u0435\u0446\u0435 \u0444\u0430\u0439\u043B",part3:", \u0451\u043D \u0431\u0443\u0434\u0437\u0435 \u043F\u0435\u0440\u0430\u0439\u043C\u0435\u043D\u0430\u0432\u0430\u043D\u044B \u045E",part4:", \u0456 \u0433.\u0434., \u0430\u0442\u0440\u044B\u043C\u043B\u0456\u0432\u0430\u044E\u0447\u044B \u043F\u0435\u0440\u0448\u0430\u0435 \u0434\u0430\u0441\u0442\u0443\u043F\u043D\u0430\u0435 \u0456\u043C\u044F."},name:"\u0420\u0430\u0437\u0434\u0437\u044F\u043B\u044F\u043B\u044C\u043D\u0456\u043A \u0434\u0443\u0431\u043B\u0456\u043A\u0430\u0442\u0430\u045E \u0456\u043C\u0451\u043D\u0430\u045E"},emptyAttachmentFolderBehavior:{description:{part1:"\u041A\u0430\u043B\u0456 \u043F\u0430\u043F\u043A\u0430 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E \u0441\u0442\u0430\u043D\u043E\u0432\u0456\u0446\u0446\u0430 \u043F\u0443\u0441\u0442\u043E\u0439:"},name:"\u041F\u043E\u0432\u0435\u0434\u0437\u0456\u043D\u043A\u0430 \u043F\u0443\u0441\u0442\u043E\u0439 \u043F\u0430\u043F\u043A\u0456 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E"},excludePaths:{description:{part1:"\u0412\u044B\u043A\u043B\u044E\u0447\u044B\u0446\u044C \u043D\u0430\u0442\u0430\u0442\u043A\u0456 \u0437 \u043D\u0430\u0441\u0442\u0443\u043F\u043D\u044B\u0445 \u0448\u043B\u044F\u0445\u043E\u045E.",part2:"\u0423\u0441\u0442\u0430\u045E\u0446\u0435 \u043A\u043E\u0436\u043D\u044B \u0448\u043B\u044F\u0445 \u043D\u0430 \u043D\u043E\u0432\u044B \u0440\u0430\u0434\u043E\u043A.",part3:"\u0412\u044B \u043C\u043E\u0436\u0430\u0446\u0435 \u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u043E\u045E\u0432\u0430\u0446\u044C \u0440\u0430\u0434\u043E\u043A \u0448\u043B\u044F\u0445\u0443 \u0430\u0431\u043E",part4:"\u041A\u0430\u043B\u0456 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440 \u043F\u0443\u0441\u0442\u044B, \u043D\u0456\u044F\u043A\u0456\u044F \u043D\u0430\u0442\u0430\u0442\u043A\u0456 \u043D\u0435 \u0432\u044B\u043A\u043B\u044E\u0447\u0430\u044E\u0446\u0446\u0430."},name:"\u0412\u044B\u043A\u043B\u044E\u0447\u044B\u0446\u044C \u0448\u043B\u044F\u0445\u0456"},excludePathsFromAttachmentCollecting:{description:{part1:"\u0412\u044B\u043A\u043B\u044E\u0447\u044B\u0446\u044C \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0456 \u0437 \u043D\u0430\u0441\u0442\u0443\u043F\u043D\u044B\u0445 \u0448\u043B\u044F\u0445\u043E\u045E \u043A\u0430\u043B\u0456",part2:"\u0417\u0431\u043E\u0440 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E",part3:"\u043A\u0430\u043C\u0430\u043D\u0434\u0430 \u0432\u044B\u043A\u043E\u043D\u0432\u0430\u0435\u0446\u0446\u0430.",part4:"\u0423\u0441\u0442\u0430\u045E\u0446\u0435 \u043A\u043E\u0436\u043D\u044B \u0448\u043B\u044F\u0445 \u043D\u0430 \u043D\u043E\u0432\u044B \u0440\u0430\u0434\u043E\u043A.",part5:"\u0412\u044B \u043C\u043E\u0436\u0430\u0446\u0435 \u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u043E\u045E\u0432\u0430\u0446\u044C \u0440\u0430\u0434\u043E\u043A \u0448\u043B\u044F\u0445\u0443 \u0430\u0431\u043E",part6:"\u041A\u0430\u043B\u0456 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440 \u043F\u0443\u0441\u0442\u044B, \u043D\u0456\u044F\u043A\u0456\u044F \u0448\u043B\u044F\u0445\u0456 \u043D\u0435 \u0432\u044B\u043A\u043B\u044E\u0447\u0430\u044E\u0446\u0446\u0430 \u0437 \u0437\u0431\u043E\u0440\u0443 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E."},name:"\u0412\u044B\u043A\u043B\u044E\u0447\u044B\u0446\u044C \u0448\u043B\u044F\u0445\u0456 \u0437 \u0437\u0431\u043E\u0440\u0443 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E"},generatedAttachmentFileName:{description:{part1:"\u0413\u043B\u044F\u0434\u0437\u0456\u0446\u0435 \u0434\u0430\u0441\u0442\u0443\u043F\u043D\u044B\u044F",part2:"\u0442\u043E\u043A\u0435\u043D\u044B"},name:"\u0417\u0433\u0435\u043D\u0435\u0440\u0430\u0432\u0430\u043D\u0430\u0435 \u0456\u043C\u044F \u0444\u0430\u0439\u043B\u0430 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F"},includePaths:{description:{part1:"\u0423\u043A\u043B\u044E\u0447\u044B\u0446\u044C \u043D\u0430\u0442\u0430\u0442\u043A\u0456 \u0437 \u043D\u0430\u0441\u0442\u0443\u043F\u043D\u044B\u0445 \u0448\u043B\u044F\u0445\u043E\u045E.",part2:"\u0423\u0441\u0442\u0430\u045E\u0446\u0435 \u043A\u043E\u0436\u043D\u044B \u0448\u043B\u044F\u0445 \u043D\u0430 \u043D\u043E\u0432\u044B \u0440\u0430\u0434\u043E\u043A.",part3:"\u0412\u044B \u043C\u043E\u0436\u0430\u0446\u0435 \u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u043E\u045E\u0432\u0430\u0446\u044C \u0440\u0430\u0434\u043E\u043A \u0448\u043B\u044F\u0445\u0443 \u0430\u0431\u043E",part4:"\u041A\u0430\u043B\u0456 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440 \u043F\u0443\u0441\u0442\u044B, \u0443\u0441\u0435 \u043D\u0430\u0442\u0430\u0442\u043A\u0456 \u045E\u043A\u043B\u044E\u0447\u0430\u044E\u0446\u0446\u0430."},name:"\u0423\u043A\u043B\u044E\u0447\u044B\u0446\u044C \u0448\u043B\u044F\u0445\u0456"},jpegQuality:{description:"\u0427\u044B\u043C \u043C\u0435\u043D\u0448 \u044F\u043A\u0430\u0441\u0446\u044C, \u0442\u044B\u043C \u0431\u043E\u043B\u044C\u0448 \u043A\u0430\u044D\u0444\u0456\u0446\u044B\u0435\u043D\u0442 \u0441\u0446\u0456\u0441\u043A\u0443.",name:"\u042F\u043A\u0430\u0441\u0446\u044C JPEG"},locationForNewAttachments:{description:{part1:"\u041F\u0430\u0447\u043D\u0456\u0446\u0435 \u0437",part2:"\u0434\u043B\u044F \u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u0430\u043D\u043D\u044F \u0430\u0434\u043D\u043E\u0441\u043D\u0430\u0433\u0430 \u0448\u043B\u044F\u0445\u0443.",part3:"\u0413\u043B\u044F\u0434\u0437\u0456\u0446\u0435 \u0434\u0430\u0441\u0442\u0443\u043F\u043D\u044B\u044F",part4:"\u0442\u043E\u043A\u0435\u043D\u044B",part5:"\u041A\u0440\u043E\u043F\u043A\u0430\u0432\u044B\u044F \u043F\u0430\u043F\u043A\u0456 \u044F\u043A",part6:"\u043D\u0435 \u0440\u044D\u043A\u0430\u043C\u0435\u043D\u0434\u0443\u044E\u0446\u0446\u0430, \u043F\u0430\u043A\u043E\u043B\u044C\u043A\u0456 Obsidian \u043D\u0435 \u0430\u0434\u0441\u043E\u0447\u0432\u0430\u0435 \u0456\u0445. \u0412\u0430\u043C \u043C\u043E\u0436\u0430 \u0441\u043F\u0430\u0442\u0440\u044D\u0431\u0456\u0446\u0446\u0430 \u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u043E\u045E\u0432\u0430\u0446\u044C",part7:"\u041F\u043B\u0430\u0433\u0456\u043D \u0434\u043B\u044F \u043A\u0456\u0440\u0430\u0432\u0430\u043D\u043D\u044F \u0456\u043C\u0456."},name:"\u041C\u0435\u0441\u0446\u0430\u0437\u043D\u0430\u0445\u043E\u0434\u0436\u0430\u043D\u043D\u0435 \u0434\u043B\u044F \u043D\u043E\u0432\u044B\u0445 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E"},markdownUrlFormat:{description:{part1:"\u0424\u0430\u0440\u043C\u0430\u0442 \u0434\u043B\u044F URL, \u044F\u043A\u0456 \u0431\u0443\u0434\u0437\u0435 \u045E\u0441\u0442\u0430\u045E\u043B\u0435\u043D\u044B \u045E Markdown.",part2:"\u0413\u043B\u044F\u0434\u0437\u0456\u0446\u0435 \u0434\u0430\u0441\u0442\u0443\u043F\u043D\u044B\u044F",part3:"\u0442\u043E\u043A\u0435\u043D\u044B",part4:"\u041F\u0430\u043A\u0456\u043D\u044C\u0446\u0435 \u043F\u0443\u0441\u0442\u044B\u043C \u0434\u043B\u044F \u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u0430\u043D\u043D\u044F \u0444\u0430\u0440\u043C\u0430\u0442\u0443 \u043F\u0430 \u0437\u043C\u0430\u045E\u0447\u0430\u043D\u043D\u0456."},name:"\u0424\u0430\u0440\u043C\u0430\u0442 URL Markdown"},renameAttachmentsToLowerCase:"\u041F\u0435\u0440\u0430\u0439\u043C\u0435\u043D\u0430\u0432\u0430\u0446\u044C \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0456 \u045E \u043D\u0456\u0436\u043D\u0456 \u0440\u044D\u0433\u0456\u0441\u0442\u0440",renamedAttachmentFileName:{description:{part1:"\u0413\u043B\u044F\u0434\u0437\u0456\u0446\u0435 \u0434\u0430\u0441\u0442\u0443\u043F\u043D\u044B\u044F",part2:"\u0442\u043E\u043A\u0435\u043D\u044B",part3:"\u041F\u0430\u043A\u0456\u043D\u044C\u0446\u0435 \u043F\u0443\u0441\u0442\u0430, \u043A\u0430\u0431 \u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u043E\u045E\u0432\u0430\u0446\u044C",part4:"\u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440 \u0437\u0430\u043C\u0435\u0441\u0442 \u0433\u044D\u0442\u0430\u0433\u0430."},name:"\u0406\u043C\u044F \u043F\u0435\u0440\u0430\u0439\u043C\u0435\u043D\u0430\u0432\u0430\u043D\u0430\u0433\u0430 \u0444\u0430\u0439\u043B\u0430 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F"},resetToSampleCustomTokens:{message:"\u0412\u044B \u045E\u043F\u044D\u045E\u043D\u0435\u043D\u044B, \u0448\u0442\u043E \u0445\u043E\u0447\u0430\u0446\u0435 \u0441\u043A\u0456\u043D\u0443\u0446\u044C \u043A\u0430\u0440\u044B\u0441\u0442\u0430\u043B\u044C\u043D\u0456\u0446\u043A\u0456\u044F \u0442\u043E\u043A\u0435\u043D\u044B \u0434\u0430 \u045E\u0437\u043E\u0440\u043D\u044B\u0445 \u043A\u0430\u0440\u044B\u0441\u0442\u0430\u043B\u044C\u043D\u0456\u0446\u043A\u0456\u0445 \u0442\u043E\u043A\u0435\u043D\u0430\u045E? \u0412\u0430\u0448\u044B \u0437\u043C\u0435\u043D\u044B \u0431\u0443\u0434\u0443\u0446\u044C \u0441\u0442\u0440\u0430\u0447\u0430\u043D\u044B.",title:"\u0421\u043A\u0456\u043D\u0443\u0446\u044C \u0434\u0430 \u045E\u0437\u043E\u0440\u043D\u044B\u0445 \u043A\u0430\u0440\u044B\u0441\u0442\u0430\u043B\u044C\u043D\u0456\u0446\u043A\u0456\u0445 \u0442\u043E\u043A\u0435\u043D\u0430\u045E"},shouldConvertPastedImagesToJpeg:{description:"\u0426\u0456 \u043A\u0430\u043D\u0432\u0435\u0440\u0442\u0430\u0432\u0430\u0446\u044C \u0443\u0441\u0442\u0430\u045E\u043B\u0435\u043D\u044B\u044F \u0432\u044B\u044F\u0432\u044B \u045E JPEG. \u0423\u0436\u044B\u0432\u0430\u0435\u0446\u0446\u0430 \u0442\u043E\u043B\u044C\u043A\u0456 \u043A\u0430\u043B\u0456 \u0437\u043C\u0435\u0441\u0446\u0456\u0432\u0430 PNG \u0432\u044B\u044F\u0432\u044B \u045E\u0441\u0442\u0430\u045E\u043B\u044F\u0435\u0446\u0446\u0430 \u043D\u0435\u043F\u0430\u0441\u0440\u044D\u0434\u043D\u0430 \u0437 \u0431\u0443\u0444\u0435\u0440\u0430 \u0430\u0431\u043C\u0435\u043D\u0443. \u0417\u0432\u044B\u0447\u0430\u0439\u043D\u0430 \u0434\u043B\u044F \u045E\u0441\u0442\u0430\u045E\u043A\u0456 \u0441\u043A\u0440\u044B\u043D\u0448\u043E\u0442\u0430\u045E.",name:"\u0426\u0456 \u043A\u0430\u043D\u0432\u0435\u0440\u0442\u0430\u0432\u0430\u0446\u044C \u0443\u0441\u0442\u0430\u045E\u043B\u0435\u043D\u044B\u044F \u0432\u044B\u044F\u0432\u044B \u045E JPEG"},shouldDeleteOrphanAttachments:{description:"\u041A\u0430\u043B\u0456 \u045E\u043A\u043B\u044E\u0447\u0430\u043D\u0430, \u043A\u0430\u043B\u0456 \u043D\u0430\u0442\u0430\u0442\u043A\u0430 \u0432\u044B\u0434\u0430\u043B\u044F\u0435\u0446\u0446\u0430, \u044F\u0435 \u0441\u0456\u0440\u043E\u0446\u043A\u0456\u044F \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0456 \u0442\u0430\u043A\u0441\u0430\u043C\u0430 \u0432\u044B\u0434\u0430\u043B\u044F\u044E\u0446\u0446\u0430.",name:"\u0426\u0456 \u0432\u044B\u0434\u0430\u043B\u044F\u0446\u044C \u0441\u0456\u0440\u043E\u0446\u043A\u0456\u044F \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0456"},shouldRenameAttachmentFiles:{description:{part1:"\u041A\u0430\u043B\u0456 \u045E\u043A\u043B\u044E\u0447\u0430\u043D\u0430, \u043A\u0430\u043B\u0456 \u043D\u0430\u0442\u0430\u0442\u043A\u0430 \u043F\u0435\u0440\u0430\u0439\u043C\u0435\u043D\u0430\u0432\u0430\u043D\u0430 \u0430\u0431\u043E \u043F\u0435\u0440\u0430\u043C\u0435\u0448\u0447\u0430\u043D\u0430, \u044F\u0435 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0456 \u0431\u0443\u0434\u0443\u0446\u044C \u043F\u0435\u0440\u0430\u0439\u043C\u0435\u043D\u0430\u0432\u0430\u043D\u044B \u0437\u0433\u043E\u0434\u043D\u0430 \u0437",part2:"\u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0430\u043C."},name:"\u0426\u0456 \u043F\u0435\u0440\u0430\u0439\u043C\u0435\u043D\u0430\u0432\u0430\u0446\u044C \u0444\u0430\u0439\u043B\u044B \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E"},shouldRenameAttachmentFolders:{description:"\u0426\u0456 \u043F\u0435\u0440\u0430\u0439\u043C\u0435\u043D\u0430\u0432\u0430\u0446\u044C \u043F\u0430\u043F\u043A\u0456 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E \u043A\u0430\u043B\u0456 \u043D\u0430\u0442\u0430\u0442\u043A\u0430 \u043F\u0435\u0440\u0430\u0439\u043C\u0435\u043D\u0430\u0432\u0430\u043D\u0430 \u0430\u0431\u043E \u043F\u0435\u0440\u0430\u043C\u0435\u0448\u0447\u0430\u043D\u0430.",name:"\u0426\u0456 \u043F\u0435\u0440\u0430\u0439\u043C\u0435\u043D\u0430\u0432\u0430\u0446\u044C \u043F\u0430\u043F\u043A\u0456 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E"},shouldRenameCollectedAttachments:{description:{part1:"\u041A\u0430\u043B\u0456 \u045E\u043A\u043B\u044E\u0447\u0430\u043D\u0430, \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0456 \u0430\u043F\u0440\u0430\u0446\u0430\u0432\u0430\u043D\u044B\u044F \u043F\u0440\u0430\u0437",part2:"\u0417\u0431\u043E\u0440 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E",part3:"\u043A\u0430\u043C\u0430\u043D\u0434\u044B \u0431\u0443\u0434\u0443\u0446\u044C \u043F\u0435\u0440\u0430\u0439\u043C\u0435\u043D\u0430\u0432\u0430\u043D\u044B \u0437\u0433\u043E\u0434\u043D\u0430 \u0437",part4:"\u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0430\u043C."},name:"\u0426\u0456 \u043F\u0435\u0440\u0430\u0439\u043C\u0435\u043D\u0430\u0432\u0430\u0446\u044C \u0441\u0430\u0431\u0440\u0430\u043D\u044B\u044F \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0456"},specialCharacters:{description:{part1:"\u0421\u043F\u0435\u0446\u044B\u044F\u043B\u044C\u043D\u044B\u044F \u0441\u0456\u043C\u0432\u0430\u043B\u044B \u045E \u043F\u0430\u043F\u0446\u044B \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E \u0456 \u0456\u043C\u0435\u043D\u0456 \u0444\u0430\u0439\u043B\u0430 \u0434\u043B\u044F \u0437\u0430\u043C\u0435\u043D\u044B \u0430\u0431\u043E \u0432\u044B\u0434\u0430\u043B\u0435\u043D\u043D\u044F.",part2:"\u041F\u0430\u043A\u0456\u043D\u044C\u0446\u0435 \u043F\u0443\u0441\u0442\u044B\u043C \u0434\u043B\u044F \u0437\u0430\u0445\u0430\u0432\u0430\u043D\u043D\u044F \u0441\u043F\u0435\u0446\u044B\u044F\u043B\u044C\u043D\u044B\u0445 \u0441\u0456\u043C\u0432\u0430\u043B\u0430\u045E."},name:"\u0421\u043F\u0435\u0446\u044B\u044F\u043B\u044C\u043D\u044B\u044F \u0441\u0456\u043C\u0432\u0430\u043B\u044B"},specialCharactersReplacement:{description:{part1:"\u0420\u0430\u0434\u043E\u043A \u0437\u0430\u043C\u0435\u043D\u044B \u0434\u043B\u044F \u0441\u043F\u0435\u0446\u044B\u044F\u043B\u044C\u043D\u044B\u0445 \u0441\u0456\u043C\u0432\u0430\u043B\u0430\u045E \u0443 \u043F\u0430\u043F\u0446\u044B \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E \u0456 \u0456\u043C\u0435\u043D\u0456 \u0444\u0430\u0439\u043B\u0430.",part2:"\u041F\u0430\u043A\u0456\u043D\u044C\u0446\u0435 \u043F\u0443\u0441\u0442\u044B\u043C \u0434\u043B\u044F \u0432\u044B\u0434\u0430\u043B\u0435\u043D\u043D\u044F \u0441\u043F\u0435\u0446\u044B\u044F\u043B\u044C\u043D\u044B\u0445 \u0441\u0456\u043C\u0432\u0430\u043B\u0430\u045E."},name:"\u0417\u0430\u043C\u0435\u043D\u0430 \u0441\u043F\u0435\u0446\u044B\u044F\u043B\u044C\u043D\u044B\u0445 \u0441\u0456\u043C\u0432\u0430\u043B\u0430\u045E"},timeoutInSeconds:{description:{part1:"\u0422\u0430\u0439\u043C-\u0430\u045E\u0442 \u0443 \u0441\u0435\u043A\u0443\u043D\u0434\u0430\u0445 \u0434\u043B\u044F \u045E\u0441\u0456\u0445 \u0430\u043F\u0435\u0440\u0430\u0446\u044B\u0439.",part2:"\u041A\u0430\u043B\u0456",part3:"\u0443\u0441\u0442\u0430\u043D\u043E\u045E\u043B\u0435\u043D\u044B, \u0442\u0430\u0439\u043C-\u0430\u045E\u0442 \u0432\u044B\u043A\u0430\u043D\u0430\u043D\u043D\u044F \u0430\u043F\u0435\u0440\u0430\u0446\u044B\u0439 \u0430\u0434\u043A\u043B\u044E\u0447\u0430\u043D\u044B."},name:"\u0422\u0430\u0439\u043C-\u0430\u045E\u0442 \u0443 \u0441\u0435\u043A\u0443\u043D\u0434\u0430\u0445"},treatAsAttachmentExtensions:{description:{part1:"\u0410\u0434\u043D\u043E\u0441\u0456\u0446\u0446\u0430 \u0434\u0430 \u0444\u0430\u0439\u043B\u0430\u045E \u0437 \u0433\u044D\u0442\u044B\u043C\u0456 \u043F\u0430\u0448\u044B\u0440\u044D\u043D\u043D\u044F\u043C\u0456 \u044F\u043A \u0434\u0430 \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E.",part2:"\u041F\u0430 \u0437\u043C\u0430\u045E\u0447\u0430\u043D\u043D\u0456",part3:"\u0456",part4:"\u0437\u0432\u044F\u0437\u0430\u043D\u044B\u044F \u0444\u0430\u0439\u043B\u044B \u043D\u0435 \u0440\u0430\u0437\u0433\u043B\u044F\u0434\u0430\u044E\u0446\u0446\u0430 \u044F\u043A \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0456 \u0456 \u043D\u0435 \u043F\u0435\u0440\u0430\u043C\u044F\u0448\u0447\u0430\u044E\u0446\u0446\u0430 \u0437 \u043D\u0430\u0442\u0430\u0442\u043A\u0430\u0439.",part5:"\u0412\u044B \u043C\u043E\u0436\u0430\u0446\u0435 \u0434\u0430\u0434\u0430\u0446\u044C \u043A\u0430\u0440\u044B\u0441\u0442\u0430\u043B\u044C\u043D\u0456\u0446\u043A\u0456\u044F \u043F\u0430\u0448\u044B\u0440\u044D\u043D\u043D\u0456, \u043D\u0430\u043F\u0440.",part6:", \u043A\u0430\u0431 \u043F\u0435\u0440\u0430\u0430\u0437\u043D\u0430\u0447\u044B\u0446\u044C \u0433\u044D\u0442\u0443\u044E \u043F\u0430\u0432\u043E\u0434\u0437\u0456\u043D\u044B."},name:"\u0410\u0434\u043D\u043E\u0441\u0456\u0446\u0446\u0430 \u044F\u043A \u0434\u0430 \u043F\u0430\u0448\u044B\u0440\u044D\u043D\u043D\u044F\u045E \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F\u045E"}},promptWithPreviewModal:{previewModal:{title:"\u041F\u0440\u0430\u0433\u043B\u044F\u0434\u0437\u0435\u0446\u044C \u0444\u0430\u0439\u043B \u0434\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u044F '{{fullFileName}}'"},title:"\u0423\u043A\u0430\u0436\u044B\u0446\u0435 \u0437\u043D\u0430\u0447\u044D\u043D\u043D\u0435 \u0434\u043B\u044F \u0442\u043E\u043A\u0435\u043D\u0430 \u0437\u0430\u043F\u044B\u0442\u0443"},regularExpression:"/\u0440\u044D\u0433\u0443\u043B\u044F\u0440\u043D\u044B \u0432\u044B\u0440\u0430\u0437/"};var qm={attachmentCollector:{confirm:{part1:"Vols recopilar els adjunts de totes les notes de les carpetes de manera recursiva?",part2:"Aquesta operaci\xF3 no es pot desfer."},progressBar:{message:"Recollint adjunts {{iterationStr}} - '{{noteFilePath}}'.",title:"Recollint adjunts..."}},buttons:{copy:"Copiar",move:"Moure",previewAttachmentFile:"Previsualitzar fitxer adjunt",skip:"Ometre"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"L'adjunt",part2:"\xE9s referenciat per m\xFAltiples notes."},heading:"Recollint adjunt utilitzat per m\xFAltiples notes",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Ha d'utilitzar la mateixa acci\xF3 per a altres adjunts problem\xE0tics"},commands:{collectAttachmentsCurrentFolder:"Recollir adjunts a la carpeta actual",collectAttachmentsCurrentNote:"Recollir adjunts a la nota actual",collectAttachmentsEntireVault:"Recollir adjunts a tot el dip\xF2sit"},menuItems:{collectAttachmentsInFile:"Recopila els adjunts al fitxer",collectAttachmentsInFiles:"Recopila els adjunts als fitxers"},notice:{collectingAttachments:"Recollint adjunts per a '{{noteFilePath}}'",collectingAttachmentsCancelled:"Recollida d'adjunts cancel\xB7lada. Vegeu la consola per a detalls.",generatedAttachmentFileNameIsInvalid:{part1:`El nom del fitxer adjunt generat '{{path}}' no \xE9s v\xE0lid.
|
|
463
|
+
{{validationMessage}}
|
|
464
|
+
Comproveu la vostra`,part2:"configuraci\xF3."},notePathIsIgnored:"El cam\xED de la nota s'ignora"},obsidianDevUtils:{buttons:{cancel:"Cancel\xB7lar",ok:"D'acord"},dataview:{itemsPerPage:"Elements per p\xE0gina:",jumpToPage:"Saltar a la p\xE0gina:"},notices:{attachmentIsStillUsed:"L'adjunt {{attachmentPath}} encara s'utilitza per altres notes. No s'esborrar\xE0.",unhandledError:"S'ha produ\xEFt un error no gestionat. Si us plau, comproveu la consola per a m\xE9s informaci\xF3."}},pluginSettings:{attachmentRenameMode:{all:{description:"tots els fitxers es reanomenen.",displayText:"Tots"},none:{description:"els seus noms es preserven.",displayText:"Cap"},onlyPastedImages:{description:"nom\xE9s les imatges enganxades es reanomenen. S'aplica nom\xE9s quan el contingut de la imatge PNG s'enganxa directament des del porta-retalls. T\xEDpicament, per enganxar captures de pantalla.",displayText:"Nom\xE9s imatges enganxades"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"cancel\xB7lar la recollida d'adjunts.",displayText:"Cancel\xB7lar"},copy:{description:"copiar l'adjunt a la nova ubicaci\xF3.",displayText:"Copiar"},move:{description:"moure l'adjunt a la nova ubicaci\xF3.",displayText:"Moure"},prompt:{description:"preguntar a l'usuari per triar l'acci\xF3.",displayText:"Preguntar"},skip:{description:"ometre l'adjunt i procedir al seg\xFCent.",displayText:"Ometre"}},defaultImageSizeDimension:{height:"Al\xE7ada",width:"Amplada"},emptyAttachmentFolderBehavior:{delete:{description:"esborrar\xE0 la carpeta d'adjunts buida.",displayText:"Esborrar"},deleteWithEmptyParents:{description:"esborrar\xE0 la carpeta d'adjunts buida i les seves carpetes pare buides.",displayText:"Esborrar amb pares buits"},keep:{description:"mantindr\xE0 la carpeta d'adjunts buida.",displayText:"Mantenir"}}},pluginSettingsManager:{customToken:{codeComment:`// Els tokens personalitzats van ser comentats ja que han de ser actualitzats al nou format introdu\xEFt a la versi\xF3 del plugin 9.0.0.
|
|
465
|
+
// Consulteu la documentaci\xF3 (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) per a m\xE9s informaci\xF3.`,deprecated:{part1:"A la versi\xF3 del plugin 9.0.0, el format de registre de tokens personalitzats va canviar. Si us plau, actualitzeu els vostres tokens en conseq\xFC\xE8ncia. Consulteu la",part2:"documentaci\xF3",part3:"per a m\xE9s informaci\xF3"}},legacyRenameAttachmentsToLowerCase:{part1:"A la versi\xF3 del plugin 9.0.0, la",part2:"configuraci\xF3 est\xE0 obsoleta. Utilitzeu el",part3:"format en lloc d'aix\xF2. Vegeu la",part4:"documentaci\xF3",part5:"per a m\xE9s informaci\xF3"},markdownUrlFormat:{deprecated:{part1:"Teniu un valor potencialment incorrecte establert per al",part2:"format. Si us plau, consulteu la",part3:"documentaci\xF3",part4:"per a m\xE9s informaci\xF3",part5:"Aquest missatge no es mostrar\xE0 de nou."}},specialCharacters:{part1:"A la versi\xF3 del plugin 9.16.0, el",part2:"valor de configuraci\xF3 per defecte va canviar. El vostre valor de configuraci\xF3 va ser actualitzat al nou valor per defecte."},validation:{defaultImageSizeMustBePercentageOrPixels:"La mida predeterminada de la imatge s'ha d'expressar en p\xEDxels o percentatge",invalidCustomTokensCode:"Codi de tokens personalitzats no v\xE0lid",invalidRegularExpression:"Expressi\xF3 regular no v\xE0lida {{regExp}}",specialCharactersMustNotContainSlash:"Els car\xE0cters especials no han de contenir /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"El reempla\xE7ament de car\xE0cters especials no ha de contenir car\xE0cters de cam\xED de nom de fitxer no v\xE0lids."},version:{part1:"El vostre fitxer de configuraci\xF3 ",part2:"t\xE9 la versi\xF3",part3:"que \xE9s m\xE9s nova que la versi\xF3 actual del plugin",part4:"El plugin podria no funcionar com s'espera. Si us plau, actualitzeu el plugin a la darrera versi\xF3 o assegureu-vos que les configuracions siguin correctes."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"Quan s'adjunten fitxers:"},name:"Mode de reanomenament d'adjunts"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Quan l'adjunt recollit \xE9s utilitzat per m\xFAltiples notes:"},name:"Mode de recollida d'adjunt utilitzat per m\xFAltiples notes"},collectedAttachmentFileName:{description:{part1:"Vegeu els",part2:"tokens disponibles",part3:"Deixeu buit per utilitzar la",part4:"configuraci\xF3 en lloc d'aix\xF2."},name:"Nom de fitxer adjunt recollit"},customTokens:{description:{part1:"Tokens personalitzats a utilitzar.",part2:"Vegeu la",part3:"documentaci\xF3",part4:"per a m\xE9s informaci\xF3.",part5:"\u26A0\uFE0F Els tokens personalitzats poden ser codi JavaScript arbitrari. Si estan mal escrits, poden causar p\xE8rdua de dades. Utilitzeu-los sota la vostra responsabilitat."},name:"Tokens personalitzats"},defaultImageSize:{description:{part1:"La mida predeterminada de la imatge.",part2:"Es pot especificar en p\xEDxels",part3:"o en percentatge de la mida completa de la imatge",part4:"Deixa-ho en blanc per utilitzar la mida original de la imatge."},name:"Mida predeterminada de la imatge"},duplicateNameSeparator:{description:{part1:"Quan enganxeu/arrossegueu un fitxer amb el mateix nom que un fitxer existent, aquest separador s'afegir\xE0 al nom del fitxer.",part2:"Per exemple, quan arrossegueu el fitxer",part3:", es reanomenar\xE0 a",part4:", etc., obtenint el primer nom disponible."},name:"Separador de noms duplicats"},emptyAttachmentFolderBehavior:{description:{part1:"Quan la carpeta d'adjunts es buida:"},name:"Comportament de carpeta d'adjunts buida"},excludePaths:{description:{part1:"Excloure notes dels seg\xFCents camins.",part2:"Inseriu cada cam\xED en una l\xEDnia nova.",part3:"Podeu utilitzar cadena de cam\xED o",part4:"Si la configuraci\xF3 est\xE0 buida, cap nota no s'exclou."},name:"Excloure camins"},excludePathsFromAttachmentCollecting:{description:{part1:"Excloure adjunts dels seg\xFCents camins quan",part2:"Recollir adjunts",part3:"s'executa la comanda.",part4:"Inseriu cada cam\xED en una l\xEDnia nova.",part5:"Podeu utilitzar cadena de cam\xED o",part6:"Si la configuraci\xF3 est\xE0 buida, cap cam\xED no s'exclou de la recollida d'adjunts."},name:"Excloure camins de la recollida d'adjunts"},generatedAttachmentFileName:{description:{part1:"Vegeu els",part2:"tokens disponibles"},name:"Nom de fitxer adjunt generat"},includePaths:{description:{part1:"Incloure notes dels seg\xFCents camins.",part2:"Inseriu cada cam\xED en una l\xEDnia nova.",part3:"Podeu utilitzar cadena de cam\xED o",part4:"Si la configuraci\xF3 est\xE0 buida, totes les notes s'inclouen."},name:"Incloure camins"},jpegQuality:{description:"Com m\xE9s petita la qualitat, m\xE9s gran la relaci\xF3 de compressi\xF3.",name:"Qualitat JPEG"},locationForNewAttachments:{description:{part1:"Comen\xE7ar amb",part2:"per utilitzar cam\xED relatiu.",part3:"Vegeu els",part4:"tokens disponibles",part5:"Les carpetes amb punt com",part6:"no es recomanen, perqu\xE8 Obsidian no les rastreja. Potser necessiteu utilitzar un",part7:"Plugin per gestionar-les."},name:"Ubicaci\xF3 per a nous adjunts"},markdownUrlFormat:{description:{part1:"Format per a l'URL que s'inserir\xE0 a Markdown.",part2:"Vegeu els",part3:"tokens disponibles",part4:"Deixeu buit per utilitzar el format per defecte."},name:"Format URL Markdown"},renameAttachmentsToLowerCase:"Reanomenar adjunts a min\xFAscules",renamedAttachmentFileName:{description:{part1:"Vegeu els",part2:"tokens disponibles",part3:"Deixeu buit per utilitzar la",part4:"configuraci\xF3 en lloc d'aix\xF2."},name:"Nom de fitxer adjunt reanomenat"},resetToSampleCustomTokens:{message:"Esteu segurs que voleu restablir els tokens personalitzats als tokens personalitzats de mostra? Les vostres canvis es perdran.",title:"Restablir als tokens personalitzats de mostra"},shouldConvertPastedImagesToJpeg:{description:"Si convertir les imatges enganxades a JPEG. S'aplica nom\xE9s quan el contingut de la imatge PNG s'enganxa directament des del porta-retalls. T\xEDpicament, per enganxar captures de pantalla.",name:"Si convertir les imatges enganxades a JPEG"},shouldDeleteOrphanAttachments:{description:"Si est\xE0 habilitat, quan la nota s'esborra, els seus adjunts \xF2rfes tamb\xE9 s'esborren.",name:"Si esborrar adjunts \xF2rfes"},shouldRenameAttachmentFiles:{description:{part1:"Si est\xE0 habilitat, quan una nota es reanomena o es mou, els seus adjunts es reanomenaran segons la",part2:"configuraci\xF3."},name:"Si reanomenar fitxers adjunts"},shouldRenameAttachmentFolders:{description:"Si reanomenar carpetes adjunts quan una nota es reanomena o es mou.",name:"Si reanomenar carpetes adjunts"},shouldRenameCollectedAttachments:{description:{part1:"Si est\xE0 habilitat, els adjunts processats via",part2:"Recollir adjunts",part3:"les comandes es reanomenaran segons la",part4:"configuraci\xF3."},name:"Si reanomenar adjunts recollits"},specialCharacters:{description:{part1:"Car\xE0cters especials a la carpeta d'adjunts i nom del fitxer per ser reempla\xE7ats o eliminats.",part2:"Deixeu buit per preservar car\xE0cters especials."},name:"Car\xE0cters especials"},specialCharactersReplacement:{description:{part1:"Cadena de reempla\xE7ament per car\xE0cters especials a la carpeta d'adjunts i nom del fitxer.",part2:"Deixeu buit per eliminar car\xE0cters especials."},name:"Reempla\xE7ament de car\xE0cters especials"},timeoutInSeconds:{description:{part1:"El temps d'espera en segons per a totes les operacions.",part2:"Si",part3:"est\xE0 establert, el temps d'espera d'execuci\xF3 d'operacions est\xE0 deshabilitat."},name:"Temps d'espera en segons"},treatAsAttachmentExtensions:{description:{part1:"Tractar fitxers amb aquestes extensions com adjunts.",part2:"Per defecte",part3:"i",part4:"els fitxers enlla\xE7ats no es tracten com adjunts i no es mouen amb la nota.",part5:"Podeu afegir extensions personalitzades, p. ex.",part6:", per sobreescriure aquest comportament."},name:"Tractar com extensions d'adjunts"}},promptWithPreviewModal:{previewModal:{title:"Previsualitzar fitxer adjunt '{{fullFileName}}'"},title:"Proporcioneu un valor per al token de sol\xB7licitud"},regularExpression:"/expressi\xF3 regular/"};var Gm={attachmentCollector:{confirm:{part1:"Chcete shrom\xE1\u017Edit p\u0159\xEDlohy pro v\u0161echny pozn\xE1mky ve slo\u017Ek\xE1ch rekurzivn\u011B?",part2:"Tuto operaci nelze vr\xE1tit zp\u011Bt."},progressBar:{message:"Shroma\u017E\u010Fov\xE1n\xED p\u0159\xEDloh {{iterationStr}} - '{{noteFilePath}}'.",title:"Shroma\u017E\u010Fov\xE1n\xED p\u0159\xEDloh..."}},buttons:{copy:"Kop\xEDrovat",move:"P\u0159esunout",previewAttachmentFile:"N\xE1hled souboru p\u0159\xEDlohy",skip:"P\u0159esko\u010Dit"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"P\u0159\xEDloha",part2:"je odkazov\xE1na v\xEDce pozn\xE1mkami."},heading:"Shroma\u017E\u010Fov\xE1n\xED p\u0159\xEDlohy pou\u017E\xEDvan\xE9 v\xEDce pozn\xE1mkami",shouldUseSameActionForOtherProblematicAttachmentsToggle:"M\u011Bla by se pou\u017E\xEDt stejn\xE1 akce pro jin\xE9 problematick\xE9 p\u0159\xEDlohy"},commands:{collectAttachmentsCurrentFolder:"Shrom\xE1\u017Edit p\u0159\xEDlohy v aktu\xE1ln\xED slo\u017Ece",collectAttachmentsCurrentNote:"Shrom\xE1\u017Edit p\u0159\xEDlohy v aktu\xE1ln\xED pozn\xE1mce",collectAttachmentsEntireVault:"Shrom\xE1\u017Edit p\u0159\xEDlohy v cel\xE9m \xFAlo\u017Ei\u0161ti"},menuItems:{collectAttachmentsInFile:"Shrom\xE1\u017Edit p\u0159\xEDlohy v souboru",collectAttachmentsInFiles:"Shrom\xE1\u017Edit p\u0159\xEDlohy v souborech"},notice:{collectingAttachments:"Shroma\u017E\u010Fov\xE1n\xED p\u0159\xEDloh pro '{{noteFilePath}}'",collectingAttachmentsCancelled:"Shroma\u017E\u010Fov\xE1n\xED p\u0159\xEDloh zru\u0161eno. Podrobnosti viz konzole.",generatedAttachmentFileNameIsInvalid:{part1:`Vygenerovan\xE9 jm\xE9no souboru p\u0159\xEDlohy '{{path}}' je neplatn\xE9.
|
|
466
|
+
{{validationMessage}}
|
|
467
|
+
Zkontrolujte va\u0161e`,part2:"nastaven\xED."},notePathIsIgnored:"Cesta pozn\xE1mky je ignorov\xE1na"},obsidianDevUtils:{buttons:{cancel:"Zru\u0161it",ok:"OK"},dataview:{itemsPerPage:"Polo\u017Eek na str\xE1nku:",jumpToPage:"P\u0159ej\xEDt na str\xE1nku:"},notices:{attachmentIsStillUsed:"P\u0159\xEDloha {{attachmentPath}} je st\xE1le pou\u017E\xEDv\xE1na jin\xFDmi pozn\xE1mkami. Nebude smaz\xE1na.",unhandledError:"Do\u0161lo k neo\u0161et\u0159en\xE9 chyb\u011B. Zkontrolujte pros\xEDm konzoli pro v\xEDce informac\xED."}},pluginSettings:{attachmentRenameMode:{all:{description:"v\u0161echny soubory jsou p\u0159ejmenov\xE1ny.",displayText:"V\u0161echny"},none:{description:"jejich n\xE1zvy jsou zachov\xE1ny.",displayText:"\u017D\xE1dn\xE9"},onlyPastedImages:{description:"p\u0159ejmenov\xE1ny jsou pouze vlo\u017Een\xE9 obr\xE1zky. Plat\xED pouze kdy\u017E je obsah PNG obr\xE1zku vlo\u017Een p\u0159\xEDmo ze schr\xE1nky. Typicky pro vkl\xE1d\xE1n\xED sn\xEDmk\u016F obrazovky.",displayText:"Pouze vlo\u017Een\xE9 obr\xE1zky"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"zru\u0161it shroma\u017E\u010Fov\xE1n\xED p\u0159\xEDloh.",displayText:"Zru\u0161it"},copy:{description:"zkop\xEDrovat p\u0159\xEDlohu na nov\xE9 um\xEDst\u011Bn\xED.",displayText:"Kop\xEDrovat"},move:{description:"p\u0159esunout p\u0159\xEDlohu na nov\xE9 um\xEDst\u011Bn\xED.",displayText:"P\u0159esunout"},prompt:{description:"vyzvat u\u017Eivatele k v\xFDb\u011Bru akce.",displayText:"V\xFDzva"},skip:{description:"p\u0159esko\u010Dit p\u0159\xEDlohu a pokra\u010Dovat k dal\u0161\xED.",displayText:"P\u0159esko\u010Dit"}},defaultImageSizeDimension:{height:"V\xFD\u0161ka",width:"\u0160\xED\u0159ka"},emptyAttachmentFolderBehavior:{delete:{description:"sma\u017Ee pr\xE1zdnou slo\u017Eku p\u0159\xEDloh.",displayText:"Smazat"},deleteWithEmptyParents:{description:"sma\u017Ee pr\xE1zdnou slo\u017Eku p\u0159\xEDloh a jej\xED pr\xE1zdn\xE9 nad\u0159azen\xE9 slo\u017Eky.",displayText:"Smazat s pr\xE1zdn\xFDmi nad\u0159azen\xFDmi"},keep:{description:"zachov\xE1 pr\xE1zdnou slo\u017Eku p\u0159\xEDloh.",displayText:"Zachovat"}}},pluginSettingsManager:{customToken:{codeComment:`// Vlastn\xED tokeny byly zakomentov\xE1ny, proto\u017Ee mus\xED b\xFDt aktualizov\xE1ny na nov\xFD form\xE1t zaveden\xFD ve verzi pluginu 9.0.0.
|
|
468
|
+
// Odkazujte na dokumentaci (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) pro v\xEDce informac\xED.`,deprecated:{part1:"Ve verzi pluginu 9.0.0 se zm\u011Bnil form\xE1t registrace vlastn\xEDch token\u016F. Aktualizujte pros\xEDm sv\xE9 tokeny odpov\xEDdaj\xEDc\xEDm zp\u016Fsobem. Odkazujte na",part2:"dokumentaci",part3:"pro v\xEDce informac\xED"}},legacyRenameAttachmentsToLowerCase:{part1:"Ve verzi pluginu 9.0.0 je",part2:"nastaven\xED zastaral\xE9. Pou\u017Eijte",part3:"form\xE1t m\xEDsto toho. Viz",part4:"dokumentace",part5:"pro v\xEDce informac\xED"},markdownUrlFormat:{deprecated:{part1:"M\xE1te potenci\xE1ln\u011B nespr\xE1vnou hodnotu nastavenou pro",part2:"form\xE1t. Odkazujte pros\xEDm na",part3:"dokumentaci",part4:"pro v\xEDce informac\xED",part5:"Tato zpr\xE1va se ji\u017E nebude zobrazovat."}},specialCharacters:{part1:"Ve verzi pluginu 9.16.0 se",part2:"v\xFDchoz\xED hodnota nastaven\xED zm\u011Bnila. Va\u0161e hodnota nastaven\xED byla aktualizov\xE1na na novou v\xFDchoz\xED hodnotu."},validation:{defaultImageSizeMustBePercentageOrPixels:"V\xFDchoz\xED velikost obr\xE1zku mus\xED b\xFDt v pixelech nebo procentech",invalidCustomTokensCode:"Neplatn\xFD k\xF3d vlastn\xEDch token\u016F",invalidRegularExpression:"Neplatn\xFD regul\xE1rn\xED v\xFDraz {{regExp}}",specialCharactersMustNotContainSlash:"Speci\xE1ln\xED znaky nesm\xED obsahovat /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"N\xE1hrada speci\xE1ln\xEDch znak\u016F nesm\xED obsahovat neplatn\xE9 znaky cesty n\xE1zvu souboru."},version:{part1:"V\xE1\u0161 soubor nastaven\xED ",part2:"m\xE1 verzi",part3:"kter\xE1 je nov\u011Bj\u0161\xED ne\u017E aktu\xE1ln\xED verze pluginu",part4:"Plugin nemus\xED fungovat podle o\u010Dek\xE1v\xE1n\xED. Aktualizujte pros\xEDm plugin na nejnov\u011Bj\u0161\xED verzi nebo se ujist\u011Bte, \u017Ee nastaven\xED jsou spr\xE1vn\xE1."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"P\u0159i p\u0159ipojov\xE1n\xED soubor\u016F:"},name:"Re\u017Eim p\u0159ejmenov\xE1n\xED p\u0159\xEDloh"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Kdy\u017E je shrom\xE1\u017Ed\u011Bn\xE1 p\u0159\xEDloha pou\u017E\xEDv\xE1na v\xEDce pozn\xE1mkami:"},name:"Re\u017Eim shroma\u017E\u010Fov\xE1n\xED p\u0159\xEDlohy pou\u017E\xEDvan\xE9 v\xEDce pozn\xE1mkami"},collectedAttachmentFileName:{description:{part1:"Viz dostupn\xE9",part2:"tokeny",part3:"Ponechte pr\xE1zdn\xE9, chcete-li pou\u017E\xEDt",part4:"nastaven\xED m\xEDsto toho."},name:"Jm\xE9no souboru shrom\xE1\u017Ed\u011Bn\xE9 p\u0159\xEDlohy"},customTokens:{description:{part1:"Vlastn\xED tokeny k pou\u017Eit\xED.",part2:"Viz",part3:"dokumentace",part4:"pro v\xEDce informac\xED.",part5:"\u26A0\uFE0F Vlastn\xED tokeny mohou b\xFDt libovoln\xFD JavaScript k\xF3d. Pokud jsou \u0161patn\u011B napsan\xE9, mohou zp\u016Fsobit ztr\xE1tu dat. Pou\u017E\xEDvejte je na vlastn\xED riziko."},name:"Vlastn\xED tokeny"},defaultImageSize:{description:{part1:"V\xFDchoz\xED velikost obr\xE1zku.",part2:"Lze zadat v pixelech",part3:"nebo jako procento z pln\xE9 velikosti obr\xE1zku",part4:"Ponechte pr\xE1zdn\xE9, chcete-li pou\u017E\xEDt p\u016Fvodn\xED velikost obr\xE1zku."},name:"V\xFDchoz\xED velikost obr\xE1zku"},duplicateNameSeparator:{description:{part1:"Kdy\u017E vkl\xE1d\xE1te/p\u0159etahujete soubor se stejn\xFDm n\xE1zvem jako existuj\xEDc\xED soubor, tento odd\u011Blova\u010D bude p\u0159id\xE1n k n\xE1zvu souboru.",part2:"Nap\u0159., kdy\u017E p\u0159etahujete soubor",part3:", bude p\u0159ejmenov\xE1n na",part4:", atd., z\xEDsk\xE1n\xEDm prvn\xEDho dostupn\xE9ho n\xE1zvu."},name:"Odd\u011Blova\u010D duplicitn\xEDch n\xE1zv\u016F"},emptyAttachmentFolderBehavior:{description:{part1:"Kdy\u017E se slo\u017Eka p\u0159\xEDloh stane pr\xE1zdnou:"},name:"Chov\xE1n\xED pr\xE1zdn\xE9 slo\u017Eky p\u0159\xEDloh"},excludePaths:{description:{part1:"Vylou\u010Dit pozn\xE1mky z n\xE1sleduj\xEDc\xEDch cest.",part2:"Vlo\u017Ete ka\u017Edou cestu na nov\xFD \u0159\xE1dek.",part3:"M\u016F\u017Eete pou\u017E\xEDt \u0159et\u011Bzec cesty nebo",part4:"Pokud je nastaven\xED pr\xE1zdn\xE9, \u017E\xE1dn\xE9 pozn\xE1mky nejsou vylou\u010Deny."},name:"Vylou\u010Dit cesty"},excludePathsFromAttachmentCollecting:{description:{part1:"Vylou\u010Dit p\u0159\xEDlohy z n\xE1sleduj\xEDc\xEDch cest kdy\u017E",part2:"Shrom\xE1\u017Edit p\u0159\xEDlohy",part3:"p\u0159\xEDkaz je spu\u0161t\u011Bn.",part4:"Vlo\u017Ete ka\u017Edou cestu na nov\xFD \u0159\xE1dek.",part5:"M\u016F\u017Eete pou\u017E\xEDt \u0159et\u011Bzec cesty nebo",part6:"Pokud je nastaven\xED pr\xE1zdn\xE9, \u017E\xE1dn\xE9 cesty nejsou vylou\u010Deny ze shroma\u017E\u010Fov\xE1n\xED p\u0159\xEDloh."},name:"Vylou\u010Dit cesty ze shroma\u017E\u010Fov\xE1n\xED p\u0159\xEDloh"},generatedAttachmentFileName:{description:{part1:"Viz dostupn\xE9",part2:"tokeny"},name:"Vygenerovan\xE9 jm\xE9no souboru p\u0159\xEDlohy"},includePaths:{description:{part1:"Zahrnout pozn\xE1mky z n\xE1sleduj\xEDc\xEDch cest.",part2:"Vlo\u017Ete ka\u017Edou cestu na nov\xFD \u0159\xE1dek.",part3:"M\u016F\u017Eete pou\u017E\xEDt \u0159et\u011Bzec cesty nebo",part4:"Pokud je nastaven\xED pr\xE1zdn\xE9, v\u0161echny pozn\xE1mky jsou zahrnuty."},name:"Zahrnout cesty"},jpegQuality:{description:"\u010C\xEDm men\u0161\xED kvalita, t\xEDm v\u011Bt\u0161\xED kompresn\xED pom\u011Br.",name:"Kvalita JPEG"},locationForNewAttachments:{description:{part1:"Za\u010D\xEDt s",part2:"pro pou\u017Eit\xED relativn\xED cesty.",part3:"Viz dostupn\xE9",part4:"tokeny",part5:"Te\u010Dkov\xE9 slo\u017Eky jako",part6:"nejsou doporu\u010Deny, proto\u017Ee Obsidian je nesleduje. Mo\u017En\xE1 budete muset pou\u017E\xEDt",part7:"Plugin pro jejich spr\xE1vu."},name:"Um\xEDst\u011Bn\xED pro nov\xE9 p\u0159\xEDlohy"},markdownUrlFormat:{description:{part1:"Form\xE1t pro URL, kter\xE9 bude vlo\u017Eeno do Markdown.",part2:"Viz dostupn\xE9",part3:"tokeny",part4:"Ponechte pr\xE1zdn\xE9 pro pou\u017Eit\xED v\xFDchoz\xEDho form\xE1tu."},name:"Form\xE1t URL Markdown"},renameAttachmentsToLowerCase:"P\u0159ejmenovat p\u0159\xEDlohy na mal\xE1 p\xEDsmena",renamedAttachmentFileName:{description:{part1:"Viz dostupn\xE9",part2:"tokeny",part3:"Ponechte pr\xE1zdn\xE9, chcete-li pou\u017E\xEDt",part4:"nastaven\xED m\xEDsto toho."},name:"Jm\xE9no souboru p\u0159ejmenovan\xE9 p\u0159\xEDlohy"},resetToSampleCustomTokens:{message:"Jste si jisti, \u017Ee chcete resetovat vlastn\xED tokeny na uk\xE1zkov\xE9 vlastn\xED tokeny? Va\u0161e zm\u011Bny budou ztraceny.",title:"Resetovat na uk\xE1zkov\xE9 vlastn\xED tokeny"},shouldConvertPastedImagesToJpeg:{description:"Zda p\u0159ev\xE9st vlo\u017Een\xE9 obr\xE1zky na JPEG. Plat\xED pouze kdy\u017E je obsah PNG obr\xE1zku vlo\u017Een p\u0159\xEDmo ze schr\xE1nky. Typicky pro vkl\xE1d\xE1n\xED sn\xEDmk\u016F obrazovky.",name:"Zda p\u0159ev\xE9st vlo\u017Een\xE9 obr\xE1zky na JPEG"},shouldDeleteOrphanAttachments:{description:"Pokud je povoleno, kdy\u017E je pozn\xE1mka smaz\xE1na, jej\xED sirot\u010D\xED p\u0159\xEDlohy jsou tak\xE9 smaz\xE1ny.",name:"Zda smazat sirot\u010D\xED p\u0159\xEDlohy"},shouldRenameAttachmentFiles:{description:{part1:"Pokud je povoleno, kdy\u017E je pozn\xE1mka p\u0159ejmenov\xE1na nebo p\u0159esunuta, jej\xED p\u0159\xEDlohy budou p\u0159ejmenov\xE1ny podle",part2:"nastaven\xED."},name:"Zda p\u0159ejmenovat soubory p\u0159\xEDloh"},shouldRenameAttachmentFolders:{description:"Zda p\u0159ejmenovat slo\u017Eky p\u0159\xEDloh kdy\u017E je pozn\xE1mka p\u0159ejmenov\xE1na nebo p\u0159esunuta.",name:"Zda p\u0159ejmenovat slo\u017Eky p\u0159\xEDloh"},shouldRenameCollectedAttachments:{description:{part1:"Pokud je povoleno, p\u0159\xEDlohy zpracovan\xE9 p\u0159es",part2:"Shrom\xE1\u017Edit p\u0159\xEDlohy",part3:"p\u0159\xEDkazy budou p\u0159ejmenov\xE1ny podle",part4:"nastaven\xED."},name:"Zda p\u0159ejmenovat shrom\xE1\u017Ed\u011Bn\xE9 p\u0159\xEDlohy"},specialCharacters:{description:{part1:"Speci\xE1ln\xED znaky ve slo\u017Ece p\u0159\xEDloh a n\xE1zvu souboru k nahrazen\xED nebo odstran\u011Bn\xED.",part2:"Ponechte pr\xE1zdn\xE9 pro zachov\xE1n\xED speci\xE1ln\xEDch znak\u016F."},name:"Speci\xE1ln\xED znaky"},specialCharactersReplacement:{description:{part1:"N\xE1hradn\xED \u0159et\u011Bzec pro speci\xE1ln\xED znaky ve slo\u017Ece p\u0159\xEDloh a n\xE1zvu souboru.",part2:"Ponechte pr\xE1zdn\xE9 pro odstran\u011Bn\xED speci\xE1ln\xEDch znak\u016F."},name:"N\xE1hrada speci\xE1ln\xEDch znak\u016F"},timeoutInSeconds:{description:{part1:"\u010Casov\xFD limit v sekund\xE1ch pro v\u0161echny operace.",part2:"Pokud je",part3:"nastaveno, \u010Dasov\xFD limit prov\xE1d\u011Bn\xED operac\xED je zak\xE1z\xE1n."},name:"\u010Casov\xFD limit v sekund\xE1ch"},treatAsAttachmentExtensions:{description:{part1:"Zach\xE1zet se soubory s t\u011Bmito p\u0159\xEDponami jako s p\u0159\xEDlohami.",part2:"Ve v\xFDchoz\xEDm nastaven\xED",part3:"a",part4:"propojen\xE9 soubory nejsou pova\u017Eov\xE1ny za p\u0159\xEDlohy a nejsou p\u0159esunov\xE1ny s pozn\xE1mkou.",part5:"M\u016F\u017Eete p\u0159idat vlastn\xED p\u0159\xEDpony, nap\u0159.",part6:", pro p\u0159eps\xE1n\xED tohoto chov\xE1n\xED."},name:"Zach\xE1zet jako s p\u0159\xEDponami p\u0159\xEDloh"}},promptWithPreviewModal:{previewModal:{title:"N\xE1hled souboru p\u0159\xEDlohy '{{fullFileName}}'"},title:"Poskytn\u011Bte hodnotu pro token v\xFDzvy"},regularExpression:"/regul\xE1rn\xED v\xFDraz/"};var Wm={attachmentCollector:{confirm:{part1:"Vil du indsamle vedh\xE6ftninger for alle noter i mapper rekursivt?",part2:"Denne handling kan ikke fortrydes."},progressBar:{message:"Samler vedh\xE6ftninger {{iterationStr}} - '{{noteFilePath}}'.",title:"Samler vedh\xE6ftninger..."}},buttons:{copy:"Kopier",move:"Flyt",previewAttachmentFile:"Forh\xE5ndsvis vedh\xE6ftningsfil",skip:"Spring over"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"Vedh\xE6ftning",part2:"refereres af flere noter."},heading:"Samler vedh\xE6ftning brugt af flere noter",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Skal bruge samme handling for andre problematiske vedh\xE6ftninger"},commands:{collectAttachmentsCurrentFolder:"Saml vedh\xE6ftninger i nuv\xE6rende mappe",collectAttachmentsCurrentNote:"Saml vedh\xE6ftninger i nuv\xE6rende note",collectAttachmentsEntireVault:"Saml vedh\xE6ftninger i hele vault"},menuItems:{collectAttachmentsInFile:"Indsaml vedh\xE6ftninger i fil",collectAttachmentsInFiles:"Indsaml vedh\xE6ftninger i filer"},notice:{collectingAttachments:"Samler vedh\xE6ftninger for '{{noteFilePath}}'",collectingAttachmentsCancelled:"Samling af vedh\xE6ftninger annulleret. Se konsol for detaljer.",generatedAttachmentFileNameIsInvalid:{part1:`Genereret vedh\xE6ftningsfilnavn '{{path}}' er ugyldigt.
|
|
469
|
+
{{validationMessage}}
|
|
470
|
+
Tjek din`,part2:"indstilling."},notePathIsIgnored:"Notesti er ignoreret"},obsidianDevUtils:{buttons:{cancel:"Annuller",ok:"OK"},dataview:{itemsPerPage:"Elementer per side:",jumpToPage:"Hop til side:"},notices:{attachmentIsStillUsed:"Vedh\xE6ftning {{attachmentPath}} bruges stadig af andre noter. Den vil ikke blive slettet.",unhandledError:"Der opstod en ubehandlet fejl. Tjek venligst konsollen for flere oplysninger."}},pluginSettings:{attachmentRenameMode:{all:{description:"alle filer omd\xF8bes.",displayText:"Alle"},none:{description:"deres navne bevares.",displayText:"Ingen"},onlyPastedImages:{description:"kun indsatte billeder omd\xF8bes. G\xE6lder kun n\xE5r PNG-billedindholdet inds\xE6ttes direkte fra udklipsholderen. Typisk til inds\xE6ttelse af sk\xE6rmbilleder.",displayText:"Kun indsatte billeder"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"annuller samling af vedh\xE6ftninger.",displayText:"Annuller"},copy:{description:"kopier vedh\xE6ftningen til den nye placering.",displayText:"Kopier"},move:{description:"flyt vedh\xE6ftningen til den nye placering.",displayText:"Flyt"},prompt:{description:"bed brugeren om at v\xE6lge handlingen.",displayText:"Anmodning"},skip:{description:"spring vedh\xE6ftningen over og forts\xE6t til den n\xE6ste.",displayText:"Spring over"}},defaultImageSizeDimension:{height:"H\xF8jde",width:"Bredde"},emptyAttachmentFolderBehavior:{delete:{description:"vil slette den tomme vedh\xE6ftningsmappe.",displayText:"Slet"},deleteWithEmptyParents:{description:"vil slette den tomme vedh\xE6ftningsmappe og dens tomme overordnede mapper.",displayText:"Slet med tomme overordnede"},keep:{description:"vil bevare den tomme vedh\xE6ftningsmappe.",displayText:"Bevar"}}},pluginSettingsManager:{customToken:{codeComment:`// Brugerdefinerede tokens blev kommenteret ud, da de skal opdateres til det nye format introduceret i plugin version 9.0.0.
|
|
471
|
+
// Se dokumentationen (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) for flere oplysninger.`,deprecated:{part1:"I plugin version 9.0.0 \xE6ndrede formatet for brugerdefineret token-registrering sig. Opdater venligst dine tokens i overensstemmelse hermed. Se",part2:"dokumentationen",part3:"for flere oplysninger"}},legacyRenameAttachmentsToLowerCase:{part1:"I plugin version 9.0.0 er",part2:"indstillingen for\xE6ldet. Brug",part3:"format i stedet. Se",part4:"dokumentationen",part5:"for flere oplysninger"},markdownUrlFormat:{deprecated:{part1:"Du har potentielt forkert v\xE6rdi sat for",part2:"formatet. Se venligst",part3:"dokumentationen",part4:"for flere oplysninger",part5:"Denne besked vil ikke blive vist igen."}},specialCharacters:{part1:"I plugin version 9.16.0 blev",part2:"standardindstillingsv\xE6rdien \xE6ndret. Din indstillingsv\xE6rdi blev opdateret til den nye standardv\xE6rdi."},validation:{defaultImageSizeMustBePercentageOrPixels:"Standardbilledst\xF8rrelsen skal angives i pixels eller procent",invalidCustomTokensCode:"Ugyldig brugerdefineret tokens-kode",invalidRegularExpression:"Ugyldigt regul\xE6rt udtryk {{regExp}}",specialCharactersMustNotContainSlash:"S\xE6rlige tegn m\xE5 ikke indeholde /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"Erstatning af s\xE6rlige tegn m\xE5 ikke indeholde ugyldige filnavnsti-tegn."},version:{part1:"Din indstillingsfil ",part2:"har version",part3:"som er nyere end den nuv\xE6rende plugin-version",part4:"Pluginet fungerer muligvis ikke som forventet. Opdater venligst pluginet til den seneste version eller s\xF8rg for, at indstillingerne er korrekte."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"N\xE5r der vedh\xE6ftes filer:"},name:"Vedh\xE6ftningsomd\xF8bningstilstand"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"N\xE5r den samlede vedh\xE6ftning bruges af flere noter:"},name:"Saml vedh\xE6ftning brugt af flere noter tilstand"},collectedAttachmentFileName:{description:{part1:"Se tilg\xE6ngelige",part2:"tokens",part3:"Lad st\xE5 tomt for at bruge",part4:"indstillingen i stedet."},name:"Samlet vedh\xE6ftningsfilnavn"},customTokens:{description:{part1:"Brugerdefinerede tokens der skal bruges.",part2:"Se",part3:"dokumentationen",part4:"for flere oplysninger.",part5:"\u26A0\uFE0F Brugerdefinerede tokens kan v\xE6re vilk\xE5rlig JavaScript-kode. Hvis de er d\xE5rligt skrevet, kan de for\xE5rsage datatab. Brug dem p\xE5 egen risiko."},name:"Brugerdefinerede tokens"},defaultImageSize:{description:{part1:"Standardbilledst\xF8rrelsen.",part2:"Kan angives i pixels",part3:"eller i procent af den fulde billedst\xF8rrelse",part4:"Lad st\xE5 tomt for at bruge den originale billedst\xF8rrelse."},name:"Standardbilledst\xF8rrelse"},duplicateNameSeparator:{description:{part1:"N\xE5r du inds\xE6tter/tr\xE6kker en fil med samme navn som en eksisterende fil, vil denne separator blive tilf\xF8jet til filnavnet.",part2:"F.eks., n\xE5r du tr\xE6kker fil",part3:", vil den blive omd\xF8bt til",part4:", osv., og f\xE5 det f\xF8rste tilg\xE6ngelige navn."},name:"Duplikatnavnseparator"},emptyAttachmentFolderBehavior:{description:{part1:"N\xE5r vedh\xE6ftningsmappen bliver tom:"},name:"Tom vedh\xE6ftningsmappeadf\xE6rd"},excludePaths:{description:{part1:"Udeluk noter fra f\xF8lgende stier.",part2:"Inds\xE6t hver sti p\xE5 en ny linje.",part3:"Du kan bruge stistreng eller",part4:"Hvis indstillingen er tom, udelukkes ingen noter."},name:"Udeluk stier"},excludePathsFromAttachmentCollecting:{description:{part1:"Udeluk vedh\xE6ftninger fra f\xF8lgende stier n\xE5r",part2:"Saml vedh\xE6ftninger",part3:"kommandoen udf\xF8res.",part4:"Inds\xE6t hver sti p\xE5 en ny linje.",part5:"Du kan bruge stistreng eller",part6:"Hvis indstillingen er tom, udelukkes ingen stier fra vedh\xE6ftningssamling."},name:"Udeluk stier fra vedh\xE6ftningssamling"},generatedAttachmentFileName:{description:{part1:"Se tilg\xE6ngelige",part2:"tokens"},name:"Genereret vedh\xE6ftningsfilnavn"},includePaths:{description:{part1:"Inkluder noter fra f\xF8lgende stier.",part2:"Inds\xE6t hver sti p\xE5 en ny linje.",part3:"Du kan bruge stistreng eller",part4:"Hvis indstillingen er tom, inkluderes alle noter."},name:"Inkluder stier"},jpegQuality:{description:"Jo mindre kvaliteten, jo st\xF8rre kompressionsforhold.",name:"JPEG-kvalitet"},locationForNewAttachments:{description:{part1:"Start med",part2:"for at bruge relativ sti.",part3:"Se tilg\xE6ngelige",part4:"tokens",part5:"Punktmapper som",part6:"anbefales ikke, fordi Obsidian ikke sporer dem. Du skal muligvis bruge et",part7:"Plugin til at administrere dem."},name:"Placering for nye vedh\xE6ftninger"},markdownUrlFormat:{description:{part1:"Format for URL'en der vil blive indsat i Markdown.",part2:"Se tilg\xE6ngelige",part3:"tokens",part4:"Lad st\xE5 tomt for at bruge standardformatet."},name:"Markdown URL-format"},renameAttachmentsToLowerCase:"Omd\xF8b vedh\xE6ftninger til sm\xE5 bogstaver",renamedAttachmentFileName:{description:{part1:"Se tilg\xE6ngelige",part2:"tokens",part3:"Lad st\xE5 tomt for at bruge",part4:"indstillingen i stedet."},name:"Omd\xF8bt vedh\xE6ftningsfilnavn"},resetToSampleCustomTokens:{message:"Er du sikker p\xE5, at du vil nulstille de brugerdefinerede tokens til de eksempel-brugerdefinerede tokens? Dine \xE6ndringer vil g\xE5 tabt.",title:"Nulstil til eksempel-brugerdefinerede tokens"},shouldConvertPastedImagesToJpeg:{description:"Om indsatte billeder skal konverteres til JPEG. G\xE6lder kun n\xE5r PNG-billedindholdet inds\xE6ttes direkte fra udklipsholderen. Typisk til inds\xE6ttelse af sk\xE6rmbilleder.",name:"Skal konvertere indsatte billeder til JPEG"},shouldDeleteOrphanAttachments:{description:"Hvis aktiveret, n\xE5r noten slettes, slettes dens for\xE6ldrel\xF8se vedh\xE6ftninger ogs\xE5.",name:"Skal slette for\xE6ldrel\xF8se vedh\xE6ftninger"},shouldRenameAttachmentFiles:{description:{part1:"Hvis aktiveret, n\xE5r en note omd\xF8bes eller flyttes, vil dens vedh\xE6ftninger blive omd\xF8bt i henhold til",part2:"indstillingen."},name:"Skal omd\xF8be vedh\xE6ftningsfiler"},shouldRenameAttachmentFolders:{description:"Om vedh\xE6ftningsmapper skal omd\xF8bes n\xE5r en note omd\xF8bes eller flyttes.",name:"Skal omd\xF8be vedh\xE6ftningsmapper"},shouldRenameCollectedAttachments:{description:{part1:"Hvis aktiveret, vedh\xE6ftninger behandlet via",part2:"Saml vedh\xE6ftninger",part3:"kommandoer vil blive omd\xF8bt i henhold til",part4:"indstillingen."},name:"Skal omd\xF8be samlede vedh\xE6ftninger"},specialCharacters:{description:{part1:"S\xE6rlige tegn i vedh\xE6ftningsmappe og filnavn der skal erstattes eller fjernes.",part2:"Lad st\xE5 tomt for at bevare s\xE6rlige tegn."},name:"S\xE6rlige tegn"},specialCharactersReplacement:{description:{part1:"Erstatningsstreng for s\xE6rlige tegn i vedh\xE6ftningsmappe og filnavn.",part2:"Lad st\xE5 tomt for at fjerne s\xE6rlige tegn."},name:"S\xE6rlige tegn-erstatning"},timeoutInSeconds:{description:{part1:"Timeout i sekunder for alle operationer.",part2:"Hvis",part3:"er sat, er operationernes udf\xF8relsestimeout deaktiveret."},name:"Timeout i sekunder"},treatAsAttachmentExtensions:{description:{part1:"Behandl filer med disse udvidelser som vedh\xE6ftninger.",part2:"Som standard",part3:"og",part4:"linkede filer behandles ikke som vedh\xE6ftninger og flyttes ikke med noten.",part5:"Du kan tilf\xF8je brugerdefinerede udvidelser, f.eks.",part6:", for at tilsides\xE6tte denne adf\xE6rd."},name:"Behandl som vedh\xE6ftningsudvidelser"}},promptWithPreviewModal:{previewModal:{title:"Forh\xE5ndsvis vedh\xE6ftningsfil '{{fullFileName}}'"},title:"Angiv en v\xE6rdi for prompt-tokenet"},regularExpression:"/regul\xE6rt udtryk/"};var Jm={attachmentCollector:{confirm:{part1:"M\xF6chten Sie Anh\xE4nge f\xFCr alle Notizen in Ordnern rekursiv sammeln?",part2:"Dieser Vorgang kann nicht r\xFCckg\xE4ngig gemacht werden."},progressBar:{message:"Sammle Anh\xE4nge {{iterationStr}} - '{{noteFilePath}}'.",title:"Sammle Anh\xE4nge..."}},buttons:{copy:"Kopieren",move:"Verschieben",previewAttachmentFile:"Anhang-Datei anzeigen",skip:"\xDCberspringen"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"Anhang",part2:"wird von mehreren Notizen referenziert."},heading:"Sammle Anhang, der von mehreren Notizen verwendet wird",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Sollte dieselbe Aktion f\xFCr andere problematische Anh\xE4nge verwenden"},commands:{collectAttachmentsCurrentFolder:"Sammle Anh\xE4nge im aktuellen Ordner",collectAttachmentsCurrentNote:"Sammle Anh\xE4nge in der aktuellen Notiz",collectAttachmentsEntireVault:"Sammle Anh\xE4nge im gesamten Vault"},menuItems:{collectAttachmentsInFile:"Anh\xE4nge in Datei sammeln",collectAttachmentsInFiles:"Anh\xE4nge in Dateien sammeln"},notice:{collectingAttachments:"Sammle Anh\xE4nge f\xFCr '{{noteFilePath}}'",collectingAttachmentsCancelled:"Sammeln von Anh\xE4ngen abgebrochen. Siehe Konsole f\xFCr Details.",generatedAttachmentFileNameIsInvalid:{part1:`Generierter Anhang-Dateiname '{{path}}' ist ung\xFCltig.
|
|
472
|
+
{{validationMessage}}
|
|
473
|
+
\xDCberpr\xFCfen Sie Ihre`,part2:"Einstellung."},notePathIsIgnored:"Notiz-Pfad wird ignoriert"},obsidianDevUtils:{buttons:{cancel:"Abbrechen",ok:"OK"},dataview:{itemsPerPage:"Elemente pro Seite:",jumpToPage:"Springe zu Seite:"},notices:{attachmentIsStillUsed:"Anhang {{attachmentPath}} wird noch von anderen Notizen verwendet. Er wird nicht gel\xF6scht.",unhandledError:"Ein unbehandelter Fehler ist aufgetreten. Bitte \xFCberpr\xFCfen Sie die Konsole f\xFCr weitere Informationen."}},pluginSettings:{attachmentRenameMode:{all:{description:"alle Dateien werden umbenannt.",displayText:"Alle"},none:{description:"ihre Namen werden beibehalten.",displayText:"Keine"},onlyPastedImages:{description:"nur eingef\xFCgte Bilder werden umbenannt. Gilt nur, wenn der PNG-Bildinhalt direkt aus der Zwischenablage eingef\xFCgt wird. Typischerweise f\xFCr das Einf\xFCgen von Screenshots.",displayText:"Nur eingef\xFCgte Bilder"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"das Sammeln von Anh\xE4ngen abbrechen.",displayText:"Abbrechen"},copy:{description:"den Anhang an den neuen Speicherort kopieren.",displayText:"Kopieren"},move:{description:"den Anhang an den neuen Speicherort verschieben.",displayText:"Verschieben"},prompt:{description:"den Benutzer zur Auswahl der Aktion auffordern.",displayText:"Auffordern"},skip:{description:"den Anhang \xFCberspringen und zum n\xE4chsten fortfahren.",displayText:"\xDCberspringen"}},defaultImageSizeDimension:{height:"H\xF6he",width:"Breite"},emptyAttachmentFolderBehavior:{delete:{description:"wird den leeren Anhang-Ordner l\xF6schen.",displayText:"L\xF6schen"},deleteWithEmptyParents:{description:"wird den leeren Anhang-Ordner und seine leeren \xFCbergeordneten Ordner l\xF6schen.",displayText:"Mit leeren \xFCbergeordneten l\xF6schen"},keep:{description:"wird den leeren Anhang-Ordner behalten.",displayText:"Behalten"}}},pluginSettingsManager:{customToken:{codeComment:`// Benutzerdefinierte Tokens wurden auskommentiert, da sie auf das neue Format aktualisiert werden m\xFCssen, das in Plugin-Version 9.0.0 eingef\xFChrt wurde.
|
|
474
|
+
// Siehe Dokumentation (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) f\xFCr weitere Informationen.`,deprecated:{part1:"In Plugin-Version 9.0.0 hat sich das Format der benutzerdefinierten Token-Registrierung ge\xE4ndert. Bitte aktualisieren Sie Ihre Tokens entsprechend. Siehe",part2:"Dokumentation",part3:"f\xFCr weitere Informationen"}},legacyRenameAttachmentsToLowerCase:{part1:"In Plugin-Version 9.0.0 ist die",part2:"Einstellung veraltet. Verwenden Sie stattdessen das",part3:"Format. Siehe",part4:"Dokumentation",part5:"f\xFCr weitere Informationen"},markdownUrlFormat:{deprecated:{part1:"Sie haben m\xF6glicherweise einen falschen Wert f\xFCr das",part2:"Format gesetzt. Bitte siehe",part3:"Dokumentation",part4:"f\xFCr weitere Informationen",part5:"Diese Nachricht wird nicht erneut angezeigt."}},specialCharacters:{part1:"In Plugin-Version 9.16.0 wurde der",part2:"Standard-Einstellungswert ge\xE4ndert. Ihr Einstellungswert wurde auf den neuen Standardwert aktualisiert."},validation:{defaultImageSizeMustBePercentageOrPixels:"Die Standardbildgr\xF6\xDFe muss in Pixel oder Prozent angegeben werden",invalidCustomTokensCode:"Ung\xFCltiger benutzerdefinierter Token-Code",invalidRegularExpression:"Ung\xFCltiger regul\xE4rer Ausdruck {{regExp}}",specialCharactersMustNotContainSlash:"Sonderzeichen d\xFCrfen nicht / enthalten",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"Sonderzeichen-Ersetzung darf keine ung\xFCltigen Dateiname-Pfad-Zeichen enthalten."},version:{part1:"Ihre Einstellungsdatei ",part2:"hat Version",part3:"die neuer ist als die aktuelle Plugin-Version",part4:"Das Plugin funktioniert m\xF6glicherweise nicht wie erwartet. Bitte aktualisieren Sie das Plugin auf die neueste Version oder stellen Sie sicher, dass die Einstellungen korrekt sind."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"Beim Anh\xE4ngen von Dateien:"},name:"Anhang-Umbenennungsmodus"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Wenn der gesammelte Anhang von mehreren Notizen verwendet wird:"},name:"Sammle Anhang, der von mehreren Notizen verwendet wird - Modus"},collectedAttachmentFileName:{description:{part1:"Siehe verf\xFCgbare",part2:"Tokens",part3:"Leer lassen, um",part4:"Einstellung zu verwenden."},name:"Gesammelter Anhang-Dateiname"},customTokens:{description:{part1:"Zu verwendende benutzerdefinierte Tokens.",part2:"Siehe",part3:"Dokumentation",part4:"f\xFCr weitere Informationen.",part5:"\u26A0\uFE0F Benutzerdefinierte Tokens k\xF6nnen beliebiger JavaScript-Code sein. Wenn sie schlecht geschrieben sind, k\xF6nnen sie Datenverlust verursachen. Verwenden Sie sie auf eigene Gefahr."},name:"Benutzerdefinierte Tokens"},defaultImageSize:{description:{part1:"Die Standardbildgr\xF6\xDFe.",part2:"Kann in Pixel angegeben werden",part3:"oder als Prozentsatz der vollen Bildgr\xF6\xDFe",part4:"Frei lassen, um die Originalgr\xF6\xDFe zu verwenden."},name:"Standardbildgr\xF6\xDFe"},duplicateNameSeparator:{description:{part1:"Wenn Sie eine Datei mit demselben Namen wie eine bestehende Datei einf\xFCgen/ziehen, wird dieser Separator zum Dateinamen hinzugef\xFCgt.",part2:"Z.B., wenn Sie die Datei",part3:"ziehen, wird sie umbenannt zu",part4:", usw., um den ersten verf\xFCgbaren Namen zu erhalten."},name:"Duplikat-Namen-Separator"},emptyAttachmentFolderBehavior:{description:{part1:"Wenn der Anhang-Ordner leer wird:"},name:"Verhalten bei leerem Anhang-Ordner"},excludePaths:{description:{part1:"Notizen von den folgenden Pfaden ausschlie\xDFen.",part2:"Jeden Pfad in eine neue Zeile einf\xFCgen.",part3:"Sie k\xF6nnen Pfad-String oder",part4:"Wenn die Einstellung leer ist, werden keine Notizen ausgeschlossen."},name:"Pfade ausschlie\xDFen"},excludePathsFromAttachmentCollecting:{description:{part1:"Anh\xE4nge von den folgenden Pfaden ausschlie\xDFen, wenn",part2:"Anh\xE4nge sammeln",part3:"Befehl ausgef\xFChrt wird.",part4:"Jeden Pfad in eine neue Zeile einf\xFCgen.",part5:"Sie k\xF6nnen Pfad-String oder",part6:"Wenn die Einstellung leer ist, werden keine Pfade vom Sammeln von Anh\xE4ngen ausgeschlossen."},name:"Pfade vom Sammeln von Anh\xE4ngen ausschlie\xDFen"},generatedAttachmentFileName:{description:{part1:"Siehe verf\xFCgbare",part2:"Tokens"},name:"Generierter Anhang-Dateiname"},includePaths:{description:{part1:"Notizen von den folgenden Pfaden einschlie\xDFen.",part2:"Jeden Pfad in eine neue Zeile einf\xFCgen.",part3:"Sie k\xF6nnen Pfad-String oder",part4:"Wenn die Einstellung leer ist, werden alle Notizen eingeschlossen."},name:"Pfade einschlie\xDFen"},jpegQuality:{description:"Je kleiner die Qualit\xE4t, desto gr\xF6\xDFer das Kompressionsverh\xE4ltnis.",name:"JPEG-Qualit\xE4t"},locationForNewAttachments:{description:{part1:"Beginnen Sie mit",part2:"um relativen Pfad zu verwenden.",part3:"Siehe verf\xFCgbare",part4:"Tokens",part5:"Punkt-Ordner wie",part6:"werden nicht empfohlen, da Obsidian sie nicht verfolgt. Sie m\xFCssen m\xF6glicherweise ein",part7:"Plugin verwenden, um sie zu verwalten."},name:"Speicherort f\xFCr neue Anh\xE4nge"},markdownUrlFormat:{description:{part1:"Format f\xFCr die URL, die in Markdown eingef\xFCgt wird.",part2:"Siehe verf\xFCgbare",part3:"Tokens",part4:"Leer lassen, um das Standardformat zu verwenden."},name:"Markdown URL-Format"},renameAttachmentsToLowerCase:"Anh\xE4nge in Kleinbuchstaben umbenennen",renamedAttachmentFileName:{description:{part1:"Siehe verf\xFCgbare",part2:"Tokens",part3:"Leer lassen, um",part4:"Einstellung zu verwenden."},name:"Umbenannter Anhang-Dateiname"},resetToSampleCustomTokens:{message:"Sind Sie sicher, dass Sie die benutzerdefinierten Tokens auf die Beispiel-Tokens zur\xFCcksetzen m\xF6chten? Ihre \xC4nderungen gehen verloren.",title:"Auf Beispiel-Tokens zur\xFCcksetzen"},shouldConvertPastedImagesToJpeg:{description:"Ob eingef\xFCgte Bilder in JPEG konvertiert werden sollen. Gilt nur, wenn der PNG-Bildinhalt direkt aus der Zwischenablage eingef\xFCgt wird. Typischerweise f\xFCr das Einf\xFCgen von Screenshots.",name:"Soll eingef\xFCgte Bilder in JPEG konvertieren"},shouldDeleteOrphanAttachments:{description:"Wenn aktiviert, werden beim L\xF6schen der Notiz auch ihre verwaisten Anh\xE4nge gel\xF6scht.",name:"Soll verwaiste Anh\xE4nge l\xF6schen"},shouldRenameAttachmentFiles:{description:{part1:"Wenn aktiviert, werden beim Umbenennen oder Verschieben einer Notiz ihre Anh\xE4nge entsprechend der",part2:"Einstellung umbenannt."},name:"Soll Anhang-Dateien umbenennen"},shouldRenameAttachmentFolders:{description:"Ob Anhang-Ordner umbenannt werden sollen, wenn eine Notiz umbenannt oder verschoben wird.",name:"Soll Anhang-Ordner umbenennen"},shouldRenameCollectedAttachments:{description:{part1:"Wenn aktiviert, werden Anh\xE4nge, die \xFCber",part2:"Anh\xE4nge sammeln",part3:"Befehle verarbeitet werden, entsprechend der",part4:"Einstellung umbenannt."},name:"Soll gesammelte Anh\xE4nge umbenennen"},specialCharacters:{description:{part1:"Sonderzeichen in Anhang-Ordner und Dateiname, die ersetzt oder entfernt werden sollen.",part2:"Leer lassen, um Sonderzeichen zu erhalten."},name:"Sonderzeichen"},specialCharactersReplacement:{description:{part1:"Ersetzungsstring f\xFCr Sonderzeichen in Anhang-Ordner und Dateiname.",part2:"Leer lassen, um Sonderzeichen zu entfernen."},name:"Sonderzeichen-Ersetzung"},timeoutInSeconds:{description:{part1:"Das Timeout in Sekunden f\xFCr alle Operationen.",part2:"Wenn",part3:"gesetzt ist, ist das Ausf\xFChrungs-Timeout f\xFCr Operationen deaktiviert."},name:"Timeout in Sekunden"},treatAsAttachmentExtensions:{description:{part1:"Dateien mit diesen Erweiterungen als Anh\xE4nge behandeln.",part2:"Standardm\xE4\xDFig",part3:"und",part4:"verkn\xFCpfte Dateien werden nicht als Anh\xE4nge behandelt und nicht mit der Notiz verschoben.",part5:"Sie k\xF6nnen benutzerdefinierte Erweiterungen hinzuf\xFCgen, z.B.",part6:", um dieses Verhalten zu \xFCberschreiben."},name:"Als Anhang-Erweiterungen behandeln"}},promptWithPreviewModal:{previewModal:{title:"Anhang-Datei anzeigen '{{fullFileName}}'"},title:"Geben Sie einen Wert f\xFCr den Prompt-Token an"},regularExpression:"/regul\xE4rer Ausdruck/"};var Hm={attachmentCollector:{confirm:{part1:"Do you want to collect attachments for all notes in folders recursively?",part2:"This operation cannot be undone."},progressBar:{message:"Collecting attachments {{iterationStr}} - '{{noteFilePath}}'.",title:"Collecting attachments..."}},buttons:{copy:"Copy",move:"Move",previewAttachmentFile:"Preview attachment file",skip:"Skip"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"Attachment",part2:"is referenced by multiple notes."},heading:"Collecting attachment used by multiple notes",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Should use the same action for other problematic attachments"},commands:{collectAttachmentsCurrentFolder:"Collect attachments in current folder",collectAttachmentsCurrentNote:"Collect attachments in current note",collectAttachmentsEntireVault:"Collect attachments in entire vault"},menuItems:{collectAttachmentsInFile:"Collect attachments in file",collectAttachmentsInFiles:"Collect attachments in files"},notice:{collectingAttachments:"Collecting attachments for '{{noteFilePath}}'",collectingAttachmentsCancelled:"Collecting attachments cancelled. See console for details.",generatedAttachmentFileNameIsInvalid:{part1:`Generated attachment file name '{{path}}' is invalid.
|
|
475
|
+
{{validationMessage}}
|
|
476
|
+
Check your`,part2:"setting."},notePathIsIgnored:"Note path is ignored"},obsidianDevUtils:{buttons:{cancel:"Cancel",ok:"OK"},dataview:{itemsPerPage:"Items per page:",jumpToPage:"Jump to page:"},notices:{attachmentIsStillUsed:"Attachment {{attachmentPath}} is still used by other notes. It will not be deleted.",unhandledError:"An unhandled error occurred. Please check the console for more information."}},pluginSettings:{attachmentRenameMode:{all:{description:"all files are renamed.",displayText:"All"},none:{description:"their names are preserved.",displayText:"None"},onlyPastedImages:{description:"only pasted images are renamed. Applies only when the PNG image content is pasted from the clipboard directly. Typically, for pasting screenshots.",displayText:"Only pasted images"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"cancel the attachment collecting.",displayText:"Cancel"},copy:{description:"copy the attachment to the new location.",displayText:"Copy"},move:{description:"move the attachment to the new location.",displayText:"Move"},prompt:{description:"prompt the user to choose the action.",displayText:"Prompt"},skip:{description:"skip the attachment and proceed to the next one.",displayText:"Skip"}},defaultImageSizeDimension:{height:"Height",width:"Width"},emptyAttachmentFolderBehavior:{delete:{description:"will delete the empty attachment folder.",displayText:"Delete"},deleteWithEmptyParents:{description:"will delete the empty attachment folder and its empty parent folders.",displayText:"Delete with empty parents"},keep:{description:"will keep the empty attachment folder.",displayText:"Keep"}}},pluginSettingsManager:{customToken:{codeComment:`// Custom tokens were commented out as they have to be updated to the new format introduced in plugin version 9.0.0.
|
|
477
|
+
// Refer to the documentation (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) for more information.`,deprecated:{part1:"In plugin version 9.0.0, the format of custom token registration changed. Please update your tokens accordingly. Refer to the",part2:"documentation",part3:"for more information"}},legacyRenameAttachmentsToLowerCase:{part1:"In plugin version 9.0.0, the",part2:"setting is deprecated. Use",part3:"format instead. See",part4:"documentation",part5:"for more information"},markdownUrlFormat:{deprecated:{part1:"You have potentially incorrect value set for the",part2:"format. Please refer to the",part3:"documentation",part4:"for more information",part5:"This message will not be shown again."}},specialCharacters:{part1:"In plugin version 9.16.0, the",part2:"default setting value was changed. Your setting value was updated to the new default value."},validation:{defaultImageSizeMustBePercentageOrPixels:"The default image size must be in pixels or percentage",invalidCustomTokensCode:"Invalid custom tokens code",invalidRegularExpression:"Invalid regular expression {{regExp}}",specialCharactersMustNotContainSlash:"Special characters must not contain /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"Special character replacement must not contain invalid file name path characters."},version:{part1:"Your settings file ",part2:"has version",part3:"which is newer than the current plugin version",part4:"The plugin might not work as expected. Please update the plugin to the latest version or ensure that the settings are correct."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"When attaching files:"},name:"Attachment rename mode"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"When the collected attachment is used by multiple notes:"},name:"Collect attachment used by multiple notes mode"},collectedAttachmentFileName:{description:{part1:"See available",part2:"tokens",part3:"Leave blank to use",part4:"setting instead."},name:"Collected attachment file name"},customTokens:{description:{part1:"Custom tokens to be used.",part2:"See",part3:"documentation",part4:"for more information.",part5:"\u26A0\uFE0F Custom tokens can be an arbitrary JavaScript code. If poorly written, it can cause the data loss. Use it at your own risk."},name:"Custom tokens"},defaultImageSize:{description:{part1:"The default image size.",part2:"Can be specified in pixels",part3:"or percentage of the full image size",part4:"Leave blank to use the original image size."},name:"Default image size"},duplicateNameSeparator:{description:{part1:"When you are pasting/dragging a file with the same name as an existing file, this separator will be added to the file name.",part2:"E.g., when you are dragging file",part3:", it will be renamed to ",part4:", etc, getting the first name available."},name:"Duplicate name separator"},emptyAttachmentFolderBehavior:{description:{part1:"When the attachment folder becomes empty:"},name:"Empty attachment folder behaviour"},excludePaths:{description:{part1:"Exclude notes from the following paths.",part2:"Insert each path on a new line.",part3:"You can use path string or",part4:"If the setting is empty, no notes are excluded."},name:"Exclude paths"},excludePathsFromAttachmentCollecting:{description:{part1:"Exclude attachments from the following paths when",part2:"Collect attachments",part3:"command is executed.",part4:"Insert each path on a new line.",part5:"You can use path string or",part6:"If the setting is empty, no paths are excluded from attachment collecting."},name:"Exclude paths from attachment collecting"},generatedAttachmentFileName:{description:{part1:"See available",part2:"tokens"},name:"Generated attachment file name"},includePaths:{description:{part1:"Include notes from the following paths.",part2:"Insert each path on a new line.",part3:"You can use path string or",part4:"If the setting is empty, all notes are included."},name:"Include paths"},jpegQuality:{description:"The smaller the quality, the greater the compression ratio.",name:"JPEG Quality"},locationForNewAttachments:{description:{part1:"Start with",part2:"to use relative path.",part3:"See available",part4:"tokens",part5:"Dot-folders like",part6:"are not recommended, because Obsidian does not track them. You might need to use",part7:"Plugin to manage them."},name:"Location for new attachments"},markdownUrlFormat:{description:{part1:"Format for the URL that will be inserted into Markdown.",part2:"See available",part3:"tokens",part4:"Leave blank to use the default format."},name:"Markdown URL format"},renameAttachmentsToLowerCase:"Rename attachments to lower case",renamedAttachmentFileName:{description:{part1:"See available",part2:"tokens",part3:"Leave blank to use",part4:"setting instead."},name:"Renamed attachment file name"},resetToSampleCustomTokens:{message:"Are you sure you want to reset the custom tokens to the sample custom tokens? Your changes will be lost.",title:"Reset to sample custom tokens"},shouldConvertPastedImagesToJpeg:{description:"Whether to convert pasted images to JPEG. Applies only when the PNG image content is pasted from the clipboard directly. Typically, for pasting screenshots.",name:"Should convert pasted images to JPEG"},shouldDeleteOrphanAttachments:{description:"If enabled, when the note is deleted, its orphan attachments are deleted as well.",name:"Should delete orphan attachments"},shouldRenameAttachmentFiles:{description:{part1:"If enabled, when a note is renamed or moved, its attachments will be renamed according to the",part2:"setting."},name:"Should rename attachment files"},shouldRenameAttachmentFolders:{description:"Whether to rename attachment folders when a note is renamed or moved.",name:"Should rename attachment folders"},shouldRenameCollectedAttachments:{description:{part1:"If enabled, attachments processed via",part2:"Collect attachments",part3:"commands will be renamed according to the",part4:"setting."},name:"Should rename collected attachments"},specialCharacters:{description:{part1:"Special characters in attachment folder and file name to be replaced or removed.",part2:"Leave blank to preserve special characters."},name:"Special characters"},specialCharactersReplacement:{description:{part1:"Replacement string for special characters in attachment folder and file name.",part2:"Leave blank to remove special characters."},name:"Special characters replacement"},timeoutInSeconds:{description:{part1:"The timeout in seconds for all operations.",part2:"If",part3:"is set, the operations execution timeout is disabled."},name:"Timeout in seconds"},treatAsAttachmentExtensions:{description:{part1:"Treat files with these extensions as attachments.",part2:"By default",part3:"and",part4:"linked files are not treated as attachments and are not moved with the note.",part5:"You can add custom extensions, e.g.",part6:", to override this behavior."},name:"Treat as attachment extensions"}},promptWithPreviewModal:{previewModal:{title:"Preview attachment file '{{fullFileName}}'"},title:"Provide a value for the prompt token"},regularExpression:"/regular expression/"};var Km={attachmentCollector:{confirm:{part1:"Do you want to collect attachments for all notes in folders recursively?",part2:"This operation cannot be undone."},progressBar:{message:"Collecting attachments {{iterationStr}} - '{{noteFilePath}}'.",title:"Collecting attachments..."}},buttons:{copy:"Copy",copyAll:"Copy all",move:"Move",previewAttachmentFile:"Preview attachment file",select:"Select",skip:"Skip"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"Attachment",part2:"is referenced by multiple notes."},heading:"Collecting attachment used by multiple notes",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Should use the same action for other problematic attachments"},commands:{collectAttachmentsCurrentFolder:"Collect attachments in current folder",collectAttachmentsCurrentNote:"Collect attachments in current note",collectAttachmentsEntireVault:"Collect attachments in entire vault",moveAttachmentToProperFolder:"Move attachment to proper folder"},menuItems:{collectAttachmentsInFile:"Collect attachments in file",collectAttachmentsInFiles:"Collect attachments in files"},moveAttachmentToProperFolder:{progressBar:{message:"Moving attachment to proper folder {{iterationStr}} - '{{attachmentFilePath}}'.",title:"Moving attachment to proper folder..."},unusedAttachment:"Attachment {{attachmentPath}} is not used by any note. It will not be moved."},moveAttachmentToProperFolderUsedByMultipleNotesModal:{content:{part1:"Attachment",part2:"is referenced by multiple notes.",part3:"Select notes to copy the attachment to."},heading:"Collecting attachment used by multiple notes",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Should use the same action for other problematic attachments"},notice:{collectingAttachments:"Collecting attachments for '{{noteFilePath}}'",collectingAttachmentsCancelled:"Collecting attachments cancelled. See console for details.",couldNotResolveTemplatePath:"Could not resolve template path '{{template}}'. See console for details.",generatedAttachmentFileNameIsInvalid:{part1:`Generated attachment file name '{{path}}' is invalid.
|
|
478
|
+
{{validationMessage}}
|
|
479
|
+
Check your`,part2:"setting."},notePathIsIgnored:"Note path is ignored"},obsidianDevUtils:{buttons:{cancel:"Cancel",ok:"OK"},dataview:{itemsPerPage:"Items per page:",jumpToPage:"Jump to page:"},notices:{attachmentIsStillUsed:"Attachment {{attachmentPath}} is still used by other notes. It will not be deleted.",unhandledError:"An unhandled error occurred. Please check the console for more information."}},pluginSettings:{attachmentRenameMode:{all:{description:"all files are renamed.",displayText:"All"},none:{description:"their names are preserved.",displayText:"None"},onlyPastedImages:{description:"only pasted images are renamed. Applies only when the PNG image content is pasted from the clipboard directly. Typically, for pasting screenshots.",displayText:"Only pasted images"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"cancel the attachment collecting.",displayText:"Cancel"},copy:{description:"copy the attachment to the new location.",displayText:"Copy"},move:{description:"move the attachment to the new location.",displayText:"Move"},prompt:{description:"prompt the user to choose the action.",displayText:"Prompt"},skip:{description:"skip the attachment and proceed to the next one.",displayText:"Skip"}},convertImagesToJpegMode:{allImages:{description:"all images are converted to JPEG.",displayText:"All images"},allImagesExceptAlreadyJpeg:{description:"all images except already JPEG files are converted to JPEG.",displayText:"All images except already JPEG"},none:{description:"do not convert images to JPEG.",displayText:"None"},onlyPastedClipboardPngImages:{description:"only convert pasted clipboard PNG images to JPEG.",displayText:"Only pasted clipboard PNG images"}},defaultImageSizeDimension:{height:"Height",width:"Width"},emptyAttachmentFolderBehavior:{delete:{description:"will delete the empty attachment folder.",displayText:"Delete"},deleteWithEmptyParents:{description:"will delete the empty attachment folder and its empty parent folders.",displayText:"Delete with empty parents"},keep:{description:"will keep the empty attachment folder.",displayText:"Keep"}},moveAttachmentToProperFolderUsedByMultipleNotesMode:{cancel:{description:"cancel the attachment collecting.",displayText:"Cancel"},copyAll:{description:"copy the attachment to the new location for all notes.",displayText:"Copy all"},prompt:{description:"prompt the user to choose the action.",displayText:"Prompt"},skip:{description:"skip the attachment and proceed to the next one.",displayText:"Skip"}}},pluginSettingsManager:{customToken:{codeComment:`// Custom tokens were commented out as they have to be updated to the new format introduced in plugin version 9.0.0.
|
|
480
|
+
// Refer to the documentation (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) for more information.`,deprecated:{part1:"In plugin version 9.0.0, the format of custom token registration changed. Please update your tokens accordingly. Refer to the",part2:"documentation",part3:"for more information"}},legacyRenameAttachmentsToLowerCase:{part1:"In plugin version 9.0.0, the",part2:"setting is deprecated. Use",part3:"format instead. See",part4:"documentation",part5:"for more information"},markdownUrlFormat:{deprecated:{part1:"You have potentially incorrect value set for the",part2:"format. Please refer to the",part3:"documentation",part4:"for more information",part5:"This message will not be shown again."}},specialCharacters:{part1:"In plugin version 9.16.0, the",part2:"default setting value was changed. Your setting value was updated to the new default value."},validation:{defaultImageSizeMustBePercentageOrPixels:"Default image size must be in pixels or percentage",invalidCustomTokensCode:"Invalid custom tokens code",invalidRegularExpression:"Invalid regular expression {{regExp}}",specialCharactersMustNotContainSlash:"Special characters must not contain /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"Special character replacement must not contain invalid file name path characters."},version:{part1:"Your settings file ",part2:"has version",part3:"which is newer than the current plugin version",part4:"The plugin might not work as expected. Please update the plugin to the latest version or ensure that the settings are correct."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"When attaching files:"},name:"Attachment rename mode"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"When the collected attachment is used by multiple notes:"},name:"Collect attachment used by multiple notes mode"},collectedAttachmentFileName:{description:{part1:"See available",part2:"tokens",part3:"Leave empty to use",part4:"setting instead."},name:"Collected attachment file name"},convertImagesToJpegMode:{description:{part1:"Which images to convert to JPEG:"},name:"Convert images to JPEG mode"},customTokens:{description:{part1:"Custom tokens to be used.",part2:"See",part3:"documentation",part4:"for more information.",part5:"\u26A0\uFE0F Custom tokens can be an arbitrary JavaScript code. If poorly written, it can cause the data loss. Use it at your own risk."},name:"Custom tokens"},defaultImageSize:{description:{part1:"The default image size.",part2:"Can be specified in pixels",part3:"or percentage of the full image size",part4:"Leave blank to use the original image size."},name:"Default image size"},duplicateNameSeparator:{description:{part1:"When you are pasting/dragging a file with the same name as an existing file, this separator will be added to the file name.",part2:"E.g., when you are dragging file",part3:", it will be renamed to ",part4:", etc, getting the first name available."},name:"Duplicate name separator"},emptyAttachmentFolderBehavior:{description:{part1:"When the attachment folder becomes empty:"},name:"Empty attachment folder behavior"},excludePaths:{description:{part1:"Exclude notes from the following paths.",part2:"Insert each path on a new line.",part3:"You can use path string or",part4:"If the setting is empty, no notes are excluded."},name:"Exclude paths"},excludePathsFromAttachmentCollecting:{description:{part1:"Exclude attachments from the following paths when",part2:"Collect attachments",part3:"command is executed.",part4:"Insert each path on a new line.",part5:"You can use path string or",part6:"If the setting is empty, no paths are excluded from attachment collecting."},name:"Exclude paths from attachment collecting"},generatedAttachmentFileName:{description:{part1:"See available",part2:"tokens"},name:"Generated attachment file name"},includePaths:{description:{part1:"Include notes from the following paths.",part2:"Insert each path on a new line.",part3:"You can use path string or",part4:"If the setting is empty, all notes are included."},name:"Include paths"},jpegQuality:{description:"The smaller the quality, the greater the compression ratio.",name:"JPEG Quality"},locationForNewAttachments:{description:{part1:"Start with",part2:"for paths relative to parent folder of note.",part3:"See available",part4:"tokens",part5:"Dot-folders like",part6:"are not recommended, because Obsidian does not track them. You might need to use",part7:"Plugin to manage them."},name:"Location for new attachments"},markdownUrlFormat:{description:{part1:"Format for the URL that will be inserted into Markdown.",part2:"See available",part3:"tokens",part4:"Leave blank to use the default format."},name:"Markdown URL format"},moveAttachmentToProperFolderUsedByMultipleNotesMode:{description:{part1:"When the attachment is used by multiple notes:"},name:"Move attachment to proper folder used by multiple notes mode"},renameAttachmentsToLowerCase:"Rename attachments to lower case",renamedAttachmentFileName:{description:{part1:"See available",part2:"tokens",part3:"Leave empty to use",part4:"setting instead."},name:"Renamed attachment file name"},resetToSampleCustomTokens:{message:"Are you sure you want to reset the custom tokens to the sample custom tokens? Your changes will be lost.",title:"Reset to sample custom tokens"},shouldConvertPastedImagesToJpeg:{description:"Whether to convert pasted images to JPEG. Applies only when the PNG image content is pasted from the clipboard directly. Typically, for pasting screenshots.",name:"Should convert pasted images to JPEG"},shouldDeleteOrphanAttachments:{description:"If enabled, when the note is deleted, its orphan attachments are deleted as well.",name:"Should delete orphan attachments"},shouldHandleRenames:{description:"Whether to handle renames.",name:"Should handle renames"},shouldRenameAttachmentFiles:{description:{part1:"If enabled, when a note is renamed or moved, its attachments will be renamed according to the",part2:"setting."},name:"Should rename attachment files"},shouldRenameAttachmentFolders:{description:"Whether to rename attachment folders when a note is renamed or moved.",name:"Should rename attachment folders"},shouldRenameCollectedAttachments:{description:{part1:"If enabled, attachments processed via",part2:"Collect attachments",part3:"commands will be renamed according to the",part4:"setting."},name:"Should rename collected attachments"},specialCharacters:{description:{part1:"Special characters in attachment folder and file name to be replaced or removed.",part2:"Leave blank to preserve special characters."},name:"Special characters"},specialCharactersReplacement:{description:{part1:"Replacement string for special characters in attachment folder and file name.",part2:"Leave blank to remove special characters."},name:"Special characters replacement"},timeoutInSeconds:{description:{part1:"The timeout in seconds for all operations.",part2:"If",part3:"is set, the operations execution timeout is disabled."},name:"Timeout in seconds"},treatAsAttachmentExtensions:{description:{part1:"Treat files with these extensions as attachments.",part2:"By default",part3:"and",part4:"linked files are not treated as attachments and are not moved with the note.",part5:"You can add custom extensions, e.g.",part6:", to override this behavior.",part7:"Insert each extension on a new line."},name:"Treat as attachment extensions"}},promptWithPreviewModal:{previewModal:{title:"Preview attachment file '{{fullFileName}}'"},title:"Provide a value for the prompt token"},regularExpression:"/regular expression/"};var Ym=Km;var Qm={attachmentCollector:{confirm:{part1:"\xBFQuieres recopilar los archivos adjuntos de todas las notas en las carpetas de forma recursiva?",part2:"Esta operaci\xF3n no se puede deshacer."},progressBar:{message:"Recopilando archivos adjuntos {{iterationStr}} - '{{noteFilePath}}'.",title:"Recopilando archivos adjuntos..."}},buttons:{copy:"Copiar",move:"Mover",previewAttachmentFile:"Vista previa del archivo adjunto",skip:"Omitir"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"El archivo adjunto",part2:"es referenciado por m\xFAltiples notas."},heading:"Recopilando archivo adjunto usado por m\xFAltiples notas",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Deber\xEDa usar la misma acci\xF3n para otros archivos adjuntos problem\xE1ticos"},commands:{collectAttachmentsCurrentFolder:"Recopilar archivos adjuntos en la carpeta actual",collectAttachmentsCurrentNote:"Recopilar archivos adjuntos en la nota actual",collectAttachmentsEntireVault:"Recopilar archivos adjuntos en toda la b\xF3veda"},menuItems:{collectAttachmentsInFile:"Recopilar adjuntos en el archivo",collectAttachmentsInFiles:"Recopilar adjuntos en los archivos"},notice:{collectingAttachments:"Recopilando archivos adjuntos para '{{noteFilePath}}'",collectingAttachmentsCancelled:"Recopilaci\xF3n de archivos adjuntos cancelada. Ver consola para detalles.",generatedAttachmentFileNameIsInvalid:{part1:`El nombre del archivo adjunto generado '{{path}}' es inv\xE1lido.
|
|
481
|
+
{{validationMessage}}
|
|
482
|
+
Revisa tu`,part2:"configuraci\xF3n."},notePathIsIgnored:"La ruta de la nota es ignorada"},obsidianDevUtils:{buttons:{cancel:"Cancelar",ok:"OK"},dataview:{itemsPerPage:"Elementos por p\xE1gina:",jumpToPage:"Ir a p\xE1gina:"},notices:{attachmentIsStillUsed:"El archivo adjunto {{attachmentPath}} a\xFAn es usado por otras notas. No ser\xE1 eliminado.",unhandledError:"Ocurri\xF3 un error no manejado. Por favor revisa la consola para m\xE1s informaci\xF3n."}},pluginSettings:{attachmentRenameMode:{all:{description:"todos los archivos son renombrados.",displayText:"Todos"},none:{description:"sus nombres son preservados.",displayText:"Ninguno"},onlyPastedImages:{description:"solo las im\xE1genes pegadas son renombradas. Se aplica solo cuando el contenido de imagen PNG se pega directamente desde el portapapeles. T\xEDpicamente, para pegar capturas de pantalla.",displayText:"Solo im\xE1genes pegadas"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"cancelar la recopilaci\xF3n de archivos adjuntos.",displayText:"Cancelar"},copy:{description:"copiar el archivo adjunto a la nueva ubicaci\xF3n.",displayText:"Copiar"},move:{description:"mover el archivo adjunto a la nueva ubicaci\xF3n.",displayText:"Mover"},prompt:{description:"solicitar al usuario que elija la acci\xF3n.",displayText:"Solicitar"},skip:{description:"omitir el archivo adjunto y proceder al siguiente.",displayText:"Omitir"}},defaultImageSizeDimension:{height:"Altura",width:"Ancho"},emptyAttachmentFolderBehavior:{delete:{description:"eliminar\xE1 la carpeta de archivos adjuntos vac\xEDa.",displayText:"Eliminar"},deleteWithEmptyParents:{description:"eliminar\xE1 la carpeta de archivos adjuntos vac\xEDa y sus carpetas padre vac\xEDas.",displayText:"Eliminar con padres vac\xEDos"},keep:{description:"mantendr\xE1 la carpeta de archivos adjuntos vac\xEDa.",displayText:"Mantener"}}},pluginSettingsManager:{customToken:{codeComment:`// Los tokens personalizados fueron comentados ya que deben ser actualizados al nuevo formato introducido en la versi\xF3n del plugin 9.0.0.
|
|
483
|
+
// Consulta la documentaci\xF3n (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) para m\xE1s informaci\xF3n.`,deprecated:{part1:"En la versi\xF3n del plugin 9.0.0, el formato de registro de tokens personalizados cambi\xF3. Por favor actualiza tus tokens en consecuencia. Consulta la",part2:"documentaci\xF3n",part3:"para m\xE1s informaci\xF3n"}},legacyRenameAttachmentsToLowerCase:{part1:"En la versi\xF3n del plugin 9.0.0, la",part2:"configuraci\xF3n est\xE1 obsoleta. Usa el",part3:"formato en su lugar. Ver",part4:"documentaci\xF3n",part5:"para m\xE1s informaci\xF3n"},markdownUrlFormat:{deprecated:{part1:"Tienes un valor potencialmente incorrecto establecido para el",part2:"formato. Por favor consulta la",part3:"documentaci\xF3n",part4:"para m\xE1s informaci\xF3n",part5:"Este mensaje no se mostrar\xE1 de nuevo."}},specialCharacters:{part1:"En la versi\xF3n del plugin 9.16.0, el",part2:"valor de configuraci\xF3n por defecto fue cambiado. Tu valor de configuraci\xF3n fue actualizado al nuevo valor por defecto."},validation:{defaultImageSizeMustBePercentageOrPixels:"El tama\xF1o de imagen predeterminado debe estar en p\xEDxeles o porcentaje",invalidCustomTokensCode:"C\xF3digo de tokens personalizados inv\xE1lido",invalidRegularExpression:"Expresi\xF3n regular inv\xE1lida {{regExp}}",specialCharactersMustNotContainSlash:"Los caracteres especiales no deben contener /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"El reemplazo de caracteres especiales no debe contener caracteres de ruta de nombre de archivo inv\xE1lidos."},version:{part1:"Tu archivo de configuraci\xF3n ",part2:"tiene la versi\xF3n",part3:"que es m\xE1s nueva que la versi\xF3n actual del plugin",part4:"El plugin podr\xEDa no funcionar como se espera. Por favor actualiza el plugin a la \xFAltima versi\xF3n o aseg\xFArate de que la configuraci\xF3n sea correcta."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"Al adjuntar archivos:"},name:"Modo de renombrado de archivos adjuntos"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Cuando el archivo adjunto recopilado es usado por m\xFAltiples notas:"},name:"Modo de recopilar archivo adjunto usado por m\xFAltiples notas"},collectedAttachmentFileName:{description:{part1:"Ver",part2:"tokens disponibles",part3:"Dejar en blanco para usar",part4:"configuraci\xF3n en su lugar."},name:"Nombre de archivo adjunto recopilado"},customTokens:{description:{part1:"Tokens personalizados a usar.",part2:"Ver",part3:"documentaci\xF3n",part4:"para m\xE1s informaci\xF3n.",part5:"\u26A0\uFE0F Los tokens personalizados pueden ser c\xF3digo JavaScript arbitrario. Si est\xE1n mal escritos, pueden causar p\xE9rdida de datos. \xDAsalos bajo tu propio riesgo."},name:"Tokens personalizados"},defaultImageSize:{description:{part1:"El tama\xF1o de imagen predeterminado.",part2:"Puede especificarse en p\xEDxeles",part3:"o como porcentaje del tama\xF1o total de la imagen",part4:"D\xE9jalo en blanco para usar el tama\xF1o original de la imagen."},name:"Tama\xF1o de imagen predeterminado"},duplicateNameSeparator:{description:{part1:"Cuando est\xE1s pegando/arrastrando un archivo con el mismo nombre que un archivo existente, este separador ser\xE1 a\xF1adido al nombre del archivo.",part2:"Por ejemplo, cuando arrastras el archivo",part3:", ser\xE1 renombrado a",part4:", etc., obteniendo el primer nombre disponible."},name:"Separador de nombres duplicados"},emptyAttachmentFolderBehavior:{description:{part1:"Cuando la carpeta de archivos adjuntos se vac\xEDa:"},name:"Comportamiento de carpeta de archivos adjuntos vac\xEDa"},excludePaths:{description:{part1:"Excluir notas de las siguientes rutas.",part2:"Inserta cada ruta en una nueva l\xEDnea.",part3:"Puedes usar cadena de ruta o",part4:"Si la configuraci\xF3n est\xE1 vac\xEDa, no se excluyen notas."},name:"Excluir rutas"},excludePathsFromAttachmentCollecting:{description:{part1:"Excluir archivos adjuntos de las siguientes rutas cuando",part2:"Recopilar archivos adjuntos",part3:"comando es ejecutado.",part4:"Inserta cada ruta en una nueva l\xEDnea.",part5:"Puedes usar cadena de ruta o",part6:"Si la configuraci\xF3n est\xE1 vac\xEDa, no se excluyen rutas de la recopilaci\xF3n de archivos adjuntos."},name:"Excluir rutas de la recopilaci\xF3n de archivos adjuntos"},generatedAttachmentFileName:{description:{part1:"Ver",part2:"tokens disponibles"},name:"Nombre de archivo adjunto generado"},includePaths:{description:{part1:"Incluir notas de las siguientes rutas.",part2:"Inserta cada ruta en una nueva l\xEDnea.",part3:"Puedes usar cadena de ruta o",part4:"Si la configuraci\xF3n est\xE1 vac\xEDa, todas las notas est\xE1n incluidas."},name:"Incluir rutas"},jpegQuality:{description:"Cuanto menor la calidad, mayor la relaci\xF3n de compresi\xF3n.",name:"Calidad JPEG"},locationForNewAttachments:{description:{part1:"Comenzar con",part2:"para usar ruta relativa.",part3:"Ver",part4:"tokens disponibles",part5:"Carpetas con punto como",part6:"no son recomendadas, porque Obsidian no las rastrea. Podr\xEDas necesitar usar un",part7:"Plugin para gestionarlas."},name:"Ubicaci\xF3n para nuevos archivos adjuntos"},markdownUrlFormat:{description:{part1:"Formato para la URL que ser\xE1 insertada en Markdown.",part2:"Ver",part3:"tokens disponibles",part4:"Dejar en blanco para usar el formato por defecto."},name:"Formato de URL Markdown"},renameAttachmentsToLowerCase:"Renombrar archivos adjuntos a min\xFAsculas",renamedAttachmentFileName:{description:{part1:"Ver",part2:"tokens disponibles",part3:"Dejar en blanco para usar",part4:"configuraci\xF3n en su lugar."},name:"Nombre de archivo adjunto renombrado"},resetToSampleCustomTokens:{message:"\xBFEst\xE1s seguro de que quieres resetear los tokens personalizados a los tokens personalizados de muestra? Tus cambios se perder\xE1n.",title:"Resetear a tokens personalizados de muestra"},shouldConvertPastedImagesToJpeg:{description:"Si convertir im\xE1genes pegadas a JPEG. Se aplica solo cuando el contenido de imagen PNG se pega directamente desde el portapapeles. T\xEDpicamente, para pegar capturas de pantalla.",name:"Si convertir im\xE1genes pegadas a JPEG"},shouldDeleteOrphanAttachments:{description:"Si est\xE1 habilitado, cuando la nota es eliminada, sus archivos adjuntos hu\xE9rfanos tambi\xE9n son eliminados.",name:"Si eliminar archivos adjuntos hu\xE9rfanos"},shouldRenameAttachmentFiles:{description:{part1:"Si est\xE1 habilitado, cuando una nota es renombrada o movida, sus archivos adjuntos ser\xE1n renombrados seg\xFAn la",part2:"configuraci\xF3n."},name:"Si renombrar archivos adjuntos"},shouldRenameAttachmentFolders:{description:"Si renombrar carpetas de archivos adjuntos cuando una nota es renombrada o movida.",name:"Si renombrar carpetas de archivos adjuntos"},shouldRenameCollectedAttachments:{description:{part1:"Si est\xE1 habilitado, archivos adjuntos procesados v\xEDa",part2:"Recopilar archivos adjuntos",part3:"comandos ser\xE1n renombrados seg\xFAn la",part4:"configuraci\xF3n."},name:"Si renombrar archivos adjuntos recopilados"},specialCharacters:{description:{part1:"Caracteres especiales en carpeta de archivos adjuntos y nombre de archivo a ser reemplazados o removidos.",part2:"Dejar en blanco para preservar caracteres especiales."},name:"Caracteres especiales"},specialCharactersReplacement:{description:{part1:"Cadena de reemplazo para caracteres especiales en carpeta de archivos adjuntos y nombre de archivo.",part2:"Dejar en blanco para remover caracteres especiales."},name:"Reemplazo de caracteres especiales"},timeoutInSeconds:{description:{part1:"El timeout en segundos para todas las operaciones.",part2:"Si",part3:"est\xE1 establecido, el timeout de ejecuci\xF3n de operaciones est\xE1 deshabilitado."},name:"Timeout en segundos"},treatAsAttachmentExtensions:{description:{part1:"Tratar archivos con estas extensiones como archivos adjuntos.",part2:"Por defecto",part3:"y",part4:"archivos enlazados no son tratados como archivos adjuntos y no son movidos con la nota.",part5:"Puedes a\xF1adir extensiones personalizadas, ej.",part6:", para sobrescribir este comportamiento."},name:"Tratar como extensiones de archivos adjuntos"}},promptWithPreviewModal:{previewModal:{title:"Vista previa del archivo adjunto '{{fullFileName}}'"},title:"Proporciona un valor para el token de solicitud"},regularExpression:"/expresi\xF3n regular/"};var Zm={attachmentCollector:{confirm:{part1:"\u0622\u06CC\u0627 \u0645\u06CC\u200C\u062E\u0648\u0627\u0647\u06CC\u062F \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627\u06CC \u0647\u0645\u0647\u0654 \u06CC\u0627\u062F\u062F\u0627\u0634\u062A\u200C\u0647\u0627 \u0631\u0627 \u062F\u0631 \u067E\u0648\u0634\u0647\u200C\u0647\u0627 \u0628\u0647\u200C\u0635\u0648\u0631\u062A \u0628\u0627\u0632\u06AF\u0634\u062A\u06CC \u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u06A9\u0646\u06CC\u062F\u061F",part2:"\u0627\u06CC\u0646 \u0639\u0645\u0644\u06CC\u0627\u062A \u0642\u0627\u0628\u0644 \u0628\u0627\u0632\u06AF\u0634\u062A \u0646\u06CC\u0633\u062A."},progressBar:{message:"\u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627 {{iterationStr}} - '{{noteFilePath}}'.",title:"\u062F\u0631 \u062D\u0627\u0644 \u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627..."}},buttons:{copy:"\u06A9\u067E\u06CC",move:"\u0627\u0646\u062A\u0642\u0627\u0644",previewAttachmentFile:"\u067E\u06CC\u0634\u200C\u0646\u0645\u0627\u06CC\u0634 \u0641\u0627\u06CC\u0644 \u067E\u06CC\u0648\u0633\u062A",skip:"\u0631\u062F \u06A9\u0631\u062F\u0646"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"\u067E\u06CC\u0648\u0633\u062A",part2:"\u062A\u0648\u0633\u0637 \u0686\u0646\u062F\u06CC\u0646 \u06CC\u0627\u062F\u062F\u0627\u0634\u062A \u0627\u0631\u062C\u0627\u0639 \u062F\u0627\u062F\u0647 \u0634\u062F\u0647 \u0627\u0633\u062A."},heading:"\u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u067E\u06CC\u0648\u0633\u062A \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0634\u062F\u0647 \u062A\u0648\u0633\u0637 \u0686\u0646\u062F\u06CC\u0646 \u06CC\u0627\u062F\u062F\u0627\u0634\u062A",shouldUseSameActionForOtherProblematicAttachmentsToggle:"\u0627\u0632 \u0647\u0645\u0627\u0646 \u0639\u0645\u0644\u06CC\u0627\u062A \u0628\u0631\u0627\u06CC \u0633\u0627\u06CC\u0631 \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627\u06CC \u0645\u0634\u06A9\u0644\u200C\u062F\u0627\u0631 \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0634\u0648\u062F"},commands:{collectAttachmentsCurrentFolder:"\u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627 \u062F\u0631 \u067E\u0648\u0634\u0647 \u0641\u0639\u0644\u06CC",collectAttachmentsCurrentNote:"\u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627 \u062F\u0631 \u06CC\u0627\u062F\u062F\u0627\u0634\u062A \u0641\u0639\u0644\u06CC",collectAttachmentsEntireVault:"\u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627 \u062F\u0631 \u06A9\u0644 \u062E\u0632\u0627\u0646\u0647"},menuItems:{collectAttachmentsInFile:"\u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627 \u062F\u0631 \u0641\u0627\u06CC\u0644",collectAttachmentsInFiles:"\u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627 \u062F\u0631 \u0641\u0627\u06CC\u0644\u200C\u0647\u0627"},notice:{collectingAttachments:"\u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627 \u0628\u0631\u0627\u06CC '{{noteFilePath}}'",collectingAttachmentsCancelled:"\u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627 \u0644\u063A\u0648 \u0634\u062F. \u0628\u0631\u0627\u06CC \u062C\u0632\u0626\u06CC\u0627\u062A \u06A9\u0646\u0633\u0648\u0644 \u0631\u0627 \u0628\u0628\u06CC\u0646\u06CC\u062F.",generatedAttachmentFileNameIsInvalid:{part1:`\u0646\u0627\u0645 \u0641\u0627\u06CC\u0644 \u067E\u06CC\u0648\u0633\u062A \u062A\u0648\u0644\u06CC\u062F \u0634\u062F\u0647 '{{path}}' \u0646\u0627\u0645\u0639\u062A\u0628\u0631 \u0627\u0633\u062A.
|
|
484
|
+
{{validationMessage}}
|
|
485
|
+
\u062A\u0646\u0638\u06CC\u0645\u0627\u062A`,part2:"\u062E\u0648\u062F \u0631\u0627 \u0628\u0631\u0631\u0633\u06CC \u06A9\u0646\u06CC\u062F."},notePathIsIgnored:"\u0645\u0633\u06CC\u0631 \u06CC\u0627\u062F\u062F\u0627\u0634\u062A \u0646\u0627\u062F\u06CC\u062F\u0647 \u06AF\u0631\u0641\u062A\u0647 \u0634\u062F\u0647 \u0627\u0633\u062A"},obsidianDevUtils:{buttons:{cancel:"\u0644\u063A\u0648",ok:"\u062A\u0623\u06CC\u06CC\u062F"},dataview:{itemsPerPage:"\u0622\u06CC\u062A\u0645 \u062F\u0631 \u0647\u0631 \u0635\u0641\u062D\u0647:",jumpToPage:"\u0631\u0641\u062A\u0646 \u0628\u0647 \u0635\u0641\u062D\u0647:"},notices:{attachmentIsStillUsed:"\u067E\u06CC\u0648\u0633\u062A {{attachmentPath}} \u0647\u0646\u0648\u0632 \u062A\u0648\u0633\u0637 \u06CC\u0627\u062F\u062F\u0627\u0634\u062A\u200C\u0647\u0627\u06CC \u062F\u06CC\u06AF\u0631 \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0645\u06CC\u200C\u0634\u0648\u062F. \u062D\u0630\u0641 \u0646\u062E\u0648\u0627\u0647\u062F \u0634\u062F.",unhandledError:"\u062E\u0637\u0627\u06CC \u063A\u06CC\u0631\u0642\u0627\u0628\u0644 \u0645\u062F\u06CC\u0631\u06CC\u062A \u0631\u062E \u062F\u0627\u062F. \u0644\u0637\u0641\u0627\u064B \u06A9\u0646\u0633\u0648\u0644 \u0631\u0627 \u0628\u0631\u0627\u06CC \u0627\u0637\u0644\u0627\u0639\u0627\u062A \u0628\u06CC\u0634\u062A\u0631 \u0628\u0631\u0631\u0633\u06CC \u06A9\u0646\u06CC\u062F."}},pluginSettings:{attachmentRenameMode:{all:{description:"\u0647\u0645\u0647 \u0641\u0627\u06CC\u0644\u200C\u0647\u0627 \u062A\u063A\u06CC\u06CC\u0631 \u0646\u0627\u0645 \u062F\u0627\u062F\u0647 \u0645\u06CC\u200C\u0634\u0648\u0646\u062F.",displayText:"\u0647\u0645\u0647"},none:{description:"\u0646\u0627\u0645\u200C\u0647\u0627\u06CC \u0622\u0646\u200C\u0647\u0627 \u062D\u0641\u0638 \u0645\u06CC\u200C\u0634\u0648\u062F.",displayText:"\u0647\u06CC\u0686\u06A9\u062F\u0627\u0645"},onlyPastedImages:{description:"\u0641\u0642\u0637 \u062A\u0635\u0627\u0648\u06CC\u0631 \u0642\u0631\u0627\u0631\u062F\u0627\u062F\u0647 \u0634\u062F\u0647 \u062A\u063A\u06CC\u06CC\u0631 \u0646\u0627\u0645 \u062F\u0627\u062F\u0647 \u0645\u06CC\u200C\u0634\u0648\u0646\u062F. \u0641\u0642\u0637 \u0632\u0645\u0627\u0646\u06CC \u0627\u0639\u0645\u0627\u0644 \u0645\u06CC\u200C\u0634\u0648\u062F \u06A9\u0647 \u0645\u062D\u062A\u0648\u0627\u06CC \u062A\u0635\u0648\u06CC\u0631 PNG \u0645\u0633\u062A\u0642\u06CC\u0645\u0627\u064B \u0627\u0632 \u06A9\u0644\u06CC\u067E\u200C\u0628\u0648\u0631\u062F \u0642\u0631\u0627\u0631\u062F\u0627\u062F\u0647 \u0634\u0648\u062F. \u0645\u0639\u0645\u0648\u0644\u0627\u064B \u0628\u0631\u0627\u06CC \u0642\u0631\u0627\u0631\u062F\u0627\u062F\u0646 \u0639\u06A9\u0633\u200C\u0647\u0627\u06CC \u0635\u0641\u062D\u0647.",displayText:"\u0641\u0642\u0637 \u062A\u0635\u0627\u0648\u06CC\u0631 \u0642\u0631\u0627\u0631\u062F\u0627\u062F\u0647 \u0634\u062F\u0647"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"\u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627 \u0631\u0627 \u0644\u063A\u0648 \u06A9\u0646\u062F.",displayText:"\u0644\u063A\u0648"},copy:{description:"\u067E\u06CC\u0648\u0633\u062A \u0631\u0627 \u0628\u0647 \u0645\u06A9\u0627\u0646 \u062C\u062F\u06CC\u062F \u06A9\u067E\u06CC \u06A9\u0646\u062F.",displayText:"\u06A9\u067E\u06CC"},move:{description:"\u067E\u06CC\u0648\u0633\u062A \u0631\u0627 \u0628\u0647 \u0645\u06A9\u0627\u0646 \u062C\u062F\u06CC\u062F \u0627\u0646\u062A\u0642\u0627\u0644 \u062F\u0647\u062F.",displayText:"\u0627\u0646\u062A\u0642\u0627\u0644"},prompt:{description:"\u0627\u0632 \u06A9\u0627\u0631\u0628\u0631 \u0628\u067E\u0631\u0633\u062F \u06A9\u0647 \u0639\u0645\u0644\u06CC\u0627\u062A \u0645\u0648\u0631\u062F \u0646\u0638\u0631 \u0631\u0627 \u0627\u0646\u062A\u062E\u0627\u0628 \u06A9\u0646\u062F.",displayText:"\u067E\u0631\u0633\u0634"},skip:{description:"\u067E\u06CC\u0648\u0633\u062A \u0631\u0627 \u0631\u062F \u06A9\u0646\u062F \u0648 \u0628\u0647 \u0645\u0648\u0631\u062F \u0628\u0639\u062F\u06CC \u0628\u0631\u0648\u062F.",displayText:"\u0631\u062F \u06A9\u0631\u062F\u0646"}},defaultImageSizeDimension:{height:"\u0627\u0631\u062A\u0641\u0627\u0639",width:"\u0639\u0631\u0636"},emptyAttachmentFolderBehavior:{delete:{description:"\u067E\u0648\u0634\u0647 \u062E\u0627\u0644\u06CC \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627 \u0631\u0627 \u062D\u0630\u0641 \u062E\u0648\u0627\u0647\u062F \u06A9\u0631\u062F.",displayText:"\u062D\u0630\u0641"},deleteWithEmptyParents:{description:"\u067E\u0648\u0634\u0647 \u062E\u0627\u0644\u06CC \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627 \u0648 \u067E\u0648\u0634\u0647\u200C\u0647\u0627\u06CC \u0648\u0627\u0644\u062F \u062E\u0627\u0644\u06CC \u0622\u0646 \u0631\u0627 \u062D\u0630\u0641 \u062E\u0648\u0627\u0647\u062F \u06A9\u0631\u062F.",displayText:"\u062D\u0630\u0641 \u0628\u0627 \u0648\u0627\u0644\u062F\u06CC\u0646 \u062E\u0627\u0644\u06CC"},keep:{description:"\u067E\u0648\u0634\u0647 \u062E\u0627\u0644\u06CC \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627 \u0631\u0627 \u0646\u06AF\u0647 \u062E\u0648\u0627\u0647\u062F \u062F\u0627\u0634\u062A.",displayText:"\u0646\u06AF\u0647\u062F\u0627\u0631\u06CC"}}},pluginSettingsManager:{customToken:{codeComment:`// \u0646\u0634\u0627\u0646\u200C\u0647\u0627\u06CC \u0633\u0641\u0627\u0631\u0634\u06CC \u06A9\u0627\u0645\u0646\u062A \u0634\u062F\u0647 \u0632\u06CC\u0631\u0627 \u0628\u0627\u06CC\u062F \u0628\u0647 \u0641\u0631\u0645\u062A \u062C\u062F\u06CC\u062F \u0645\u0639\u0631\u0641\u06CC \u0634\u062F\u0647 \u062F\u0631 \u0646\u0633\u062E\u0647 9.0.0 \u067E\u0644\u0627\u06AF\u06CC\u0646 \u0628\u0647\u200C\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06CC \u0634\u0648\u0646\u062F.
|
|
486
|
+
// \u0628\u0631\u0627\u06CC \u0627\u0637\u0644\u0627\u0639\u0627\u062A \u0628\u06CC\u0634\u062A\u0631 \u0628\u0647 \u0645\u0633\u062A\u0646\u062F\u0627\u062A (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) \u0645\u0631\u0627\u062C\u0639\u0647 \u06A9\u0646\u06CC\u062F.`,deprecated:{part1:"\u062F\u0631 \u0646\u0633\u062E\u0647 9.0.0 \u067E\u0644\u0627\u06AF\u06CC\u0646\u060C \u0641\u0631\u0645\u062A \u062B\u0628\u062A \u0646\u0634\u0627\u0646\u200C\u0647\u0627\u06CC \u0633\u0641\u0627\u0631\u0634\u06CC \u062A\u063A\u06CC\u06CC\u0631 \u06A9\u0631\u062F\u0647 \u0627\u0633\u062A. \u0644\u0637\u0641\u0627\u064B \u0646\u0634\u0627\u0646\u200C\u0647\u0627\u06CC \u062E\u0648\u062F \u0631\u0627 \u0628\u0647 \u062A\u0646\u0627\u0633\u0628 \u0628\u0647\u200C\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06CC \u06A9\u0646\u06CC\u062F. \u0628\u0647",part2:"\u0645\u0633\u062A\u0646\u062F\u0627\u062A",part3:"\u0628\u0631\u0627\u06CC \u0627\u0637\u0644\u0627\u0639\u0627\u062A \u0628\u06CC\u0634\u062A\u0631 \u0645\u0631\u0627\u062C\u0639\u0647 \u06A9\u0646\u06CC\u062F"}},legacyRenameAttachmentsToLowerCase:{part1:"\u062F\u0631 \u0646\u0633\u062E\u0647 9.0.0 \u067E\u0644\u0627\u06AF\u06CC\u0646\u060C \u062A\u0646\u0638\u06CC\u0645",part2:"\u0645\u0646\u0633\u0648\u062E \u0634\u062F\u0647 \u0627\u0633\u062A. \u0628\u0647 \u062C\u0627\u06CC \u0622\u0646 \u0627\u0632",part3:"\u0641\u0631\u0645\u062A \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u06A9\u0646\u06CC\u062F.",part4:"\u0645\u0633\u062A\u0646\u062F\u0627\u062A",part5:"\u0628\u0631\u0627\u06CC \u0627\u0637\u0644\u0627\u0639\u0627\u062A \u0628\u06CC\u0634\u062A\u0631 \u0631\u0627 \u0628\u0628\u06CC\u0646\u06CC\u062F"},markdownUrlFormat:{deprecated:{part1:"\u0628\u0647 \u0627\u062D\u062A\u0645\u0627\u0644 \u0632\u06CC\u0627\u062F \u0645\u0642\u062F\u0627\u0631 \u0646\u0627\u062F\u0631\u0633\u062A\u06CC \u0628\u0631\u0627\u06CC",part2:"\u0641\u0631\u0645\u062A \u062A\u0646\u0638\u06CC\u0645 \u06A9\u0631\u062F\u0647\u200C\u0627\u06CC\u062F. \u0644\u0637\u0641\u0627\u064B \u0628\u0647",part3:"\u0645\u0633\u062A\u0646\u062F\u0627\u062A",part4:"\u0628\u0631\u0627\u06CC \u0627\u0637\u0644\u0627\u0639\u0627\u062A \u0628\u06CC\u0634\u062A\u0631 \u0645\u0631\u0627\u062C\u0639\u0647 \u06A9\u0646\u06CC\u062F",part5:"\u0627\u06CC\u0646 \u067E\u06CC\u0627\u0645 \u062F\u06CC\u06AF\u0631 \u0646\u0634\u0627\u0646 \u062F\u0627\u062F\u0647 \u0646\u062E\u0648\u0627\u0647\u062F \u0634\u062F."}},specialCharacters:{part1:"\u062F\u0631 \u0646\u0633\u062E\u0647 9.16.0 \u067E\u0644\u0627\u06AF\u06CC\u0646\u060C",part2:"\u0645\u0642\u062F\u0627\u0631 \u067E\u06CC\u0634\u200C\u0641\u0631\u0636 \u062A\u0646\u0638\u06CC\u0645\u0627\u062A \u062A\u063A\u06CC\u06CC\u0631 \u06A9\u0631\u062F\u0647 \u0627\u0633\u062A. \u0645\u0642\u062F\u0627\u0631 \u062A\u0646\u0638\u06CC\u0645\u0627\u062A \u0634\u0645\u0627 \u0628\u0647 \u0645\u0642\u062F\u0627\u0631 \u067E\u06CC\u0634\u200C\u0641\u0631\u0636 \u062C\u062F\u06CC\u062F \u0628\u0647\u200C\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06CC \u0634\u062F."},validation:{defaultImageSizeMustBePercentageOrPixels:"\u0627\u0646\u062F\u0627\u0632\u0647 \u067E\u06CC\u0634\u200C\u0641\u0631\u0636 \u062A\u0635\u0648\u06CC\u0631 \u0628\u0627\u06CC\u062F \u0628\u0631 \u062D\u0633\u0628 \u067E\u06CC\u06A9\u0633\u0644 \u06CC\u0627 \u062F\u0631\u0635\u062F \u0628\u0627\u0634\u062F",invalidCustomTokensCode:"\u06A9\u062F \u0646\u0634\u0627\u0646\u200C\u0647\u0627\u06CC \u0633\u0641\u0627\u0631\u0634\u06CC \u0646\u0627\u0645\u0639\u062A\u0628\u0631",invalidRegularExpression:"\u0639\u0628\u0627\u0631\u062A \u0642\u0627\u0646\u0648\u0646\u06CC \u0646\u0627\u0645\u0639\u062A\u0628\u0631 {{regExp}}",specialCharactersMustNotContainSlash:"\u06A9\u0631\u0627\u06A9\u062A\u0631\u0647\u0627\u06CC \u0648\u06CC\u0698\u0647 \u0646\u0628\u0627\u06CC\u062F \u062D\u0627\u0648\u06CC / \u0628\u0627\u0634\u0646\u062F",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"\u062C\u0627\u06CC\u06AF\u0632\u06CC\u0646 \u06A9\u0631\u0627\u06A9\u062A\u0631\u0647\u0627\u06CC \u0648\u06CC\u0698\u0647 \u0646\u0628\u0627\u06CC\u062F \u062D\u0627\u0648\u06CC \u06A9\u0631\u0627\u06A9\u062A\u0631\u0647\u0627\u06CC \u0646\u0627\u0645\u0639\u062A\u0628\u0631 \u0645\u0633\u06CC\u0631 \u0646\u0627\u0645 \u0641\u0627\u06CC\u0644 \u0628\u0627\u0634\u062F."},version:{part1:"\u0641\u0627\u06CC\u0644 \u062A\u0646\u0638\u06CC\u0645\u0627\u062A \u0634\u0645\u0627 ",part2:"\u0646\u0633\u062E\u0647",part3:"\u0631\u0627 \u062F\u0627\u0631\u062F \u06A9\u0647 \u062C\u062F\u06CC\u062F\u062A\u0631 \u0627\u0632 \u0646\u0633\u062E\u0647 \u0641\u0639\u0644\u06CC \u067E\u0644\u0627\u06AF\u06CC\u0646 \u0627\u0633\u062A",part4:"\u067E\u0644\u0627\u06AF\u06CC\u0646 \u0645\u0645\u06A9\u0646 \u0627\u0633\u062A \u0637\u0628\u0642 \u0627\u0646\u062A\u0638\u0627\u0631 \u06A9\u0627\u0631 \u0646\u06A9\u0646\u062F. \u0644\u0637\u0641\u0627\u064B \u067E\u0644\u0627\u06AF\u06CC\u0646 \u0631\u0627 \u0628\u0647 \u0622\u062E\u0631\u06CC\u0646 \u0646\u0633\u062E\u0647 \u0628\u0647\u200C\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06CC \u06A9\u0646\u06CC\u062F \u06CC\u0627 \u0627\u0637\u0645\u06CC\u0646\u0627\u0646 \u062D\u0627\u0635\u0644 \u06A9\u0646\u06CC\u062F \u06A9\u0647 \u062A\u0646\u0638\u06CC\u0645\u0627\u062A \u0635\u062D\u06CC\u062D \u0647\u0633\u062A\u0646\u062F."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"\u0647\u0646\u06AF\u0627\u0645 \u0636\u0645\u06CC\u0645\u0647 \u06A9\u0631\u062F\u0646 \u0641\u0627\u06CC\u0644\u200C\u0647\u0627:"},name:"\u062D\u0627\u0644\u062A \u062A\u063A\u06CC\u06CC\u0631 \u0646\u0627\u0645 \u067E\u06CC\u0648\u0633\u062A"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"\u0632\u0645\u0627\u0646\u06CC \u06A9\u0647 \u067E\u06CC\u0648\u0633\u062A \u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u0634\u062F\u0647 \u062A\u0648\u0633\u0637 \u0686\u0646\u062F\u06CC\u0646 \u06CC\u0627\u062F\u062F\u0627\u0634\u062A \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0645\u06CC\u200C\u0634\u0648\u062F:"},name:"\u062D\u0627\u0644\u062A \u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u067E\u06CC\u0648\u0633\u062A \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0634\u062F\u0647 \u062A\u0648\u0633\u0637 \u0686\u0646\u062F\u06CC\u0646 \u06CC\u0627\u062F\u062F\u0627\u0634\u062A"},collectedAttachmentFileName:{description:{part1:"\u0646\u0634\u0627\u0646\u200C\u0647\u0627\u06CC \u0645\u0648\u062C\u0648\u062F",part2:"\u0631\u0627 \u0628\u0628\u06CC\u0646\u06CC\u062F",part3:"\u0628\u0631\u0627\u06CC \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0627\u0632",part4:"\u062A\u0646\u0638\u06CC\u0645\u0627\u062A \u062E\u0627\u0644\u06CC \u0628\u06AF\u0630\u0627\u0631\u06CC\u062F."},name:"\u0646\u0627\u0645 \u0641\u0627\u06CC\u0644 \u067E\u06CC\u0648\u0633\u062A \u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u0634\u062F\u0647"},customTokens:{description:{part1:"\u0646\u0634\u0627\u0646\u200C\u0647\u0627\u06CC \u0633\u0641\u0627\u0631\u0634\u06CC \u06A9\u0647 \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u062E\u0648\u0627\u0647\u0646\u062F \u0634\u062F.",part2:"\u0628\u0631\u0627\u06CC \u0627\u0637\u0644\u0627\u0639\u0627\u062A \u0628\u06CC\u0634\u062A\u0631",part3:"\u0645\u0633\u062A\u0646\u062F\u0627\u062A",part4:"\u0631\u0627 \u0628\u0628\u06CC\u0646\u06CC\u062F.",part5:"\u26A0\uFE0F \u0646\u0634\u0627\u0646\u200C\u0647\u0627\u06CC \u0633\u0641\u0627\u0631\u0634\u06CC \u0645\u06CC\u200C\u062A\u0648\u0627\u0646\u0646\u062F \u06A9\u062F JavaScript \u062F\u0644\u062E\u0648\u0627\u0647\u06CC \u0628\u0627\u0634\u0646\u062F. \u0627\u06AF\u0631 \u0628\u062F \u0646\u0648\u0634\u062A\u0647 \u0634\u0648\u0646\u062F\u060C \u0645\u06CC\u200C\u062A\u0648\u0627\u0646\u0646\u062F \u0628\u0627\u0639\u062B \u0627\u0632 \u062F\u0633\u062A \u0631\u0641\u062A\u0646 \u062F\u0627\u062F\u0647\u200C\u0647\u0627 \u0634\u0648\u0646\u062F. \u0628\u0647 \u0639\u0647\u062F\u0647 \u062E\u0648\u062F\u062A\u0627\u0646 \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u06A9\u0646\u06CC\u062F."},name:"\u0646\u0634\u0627\u0646\u200C\u0647\u0627\u06CC \u0633\u0641\u0627\u0631\u0634\u06CC"},defaultImageSize:{description:{part1:"\u0627\u0646\u062F\u0627\u0632\u0647 \u067E\u06CC\u0634\u200C\u0641\u0631\u0636 \u062A\u0635\u0648\u06CC\u0631.",part2:"\u0645\u06CC\u200C\u062A\u0648\u0627\u0646\u062F \u0628\u0631 \u062D\u0633\u0628 \u067E\u06CC\u06A9\u0633\u0644 \u0645\u0634\u062E\u0635 \u0634\u0648\u062F",part3:"\u06CC\u0627 \u0628\u0631 \u062D\u0633\u0628 \u062F\u0631\u0635\u062F\u06CC \u0627\u0632 \u0627\u0646\u062F\u0627\u0632\u0647 \u06A9\u0627\u0645\u0644 \u062A\u0635\u0648\u06CC\u0631",part4:"\u0628\u0631\u0627\u06CC \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0627\u0632 \u0627\u0646\u062F\u0627\u0632\u0647 \u0627\u0635\u0644\u06CC \u062E\u0627\u0644\u06CC \u0628\u06AF\u0630\u0627\u0631\u06CC\u062F."},name:"\u0627\u0646\u062F\u0627\u0632\u0647 \u067E\u06CC\u0634\u200C\u0641\u0631\u0636 \u062A\u0635\u0648\u06CC\u0631"},duplicateNameSeparator:{description:{part1:"\u0632\u0645\u0627\u0646\u06CC \u06A9\u0647 \u0641\u0627\u06CC\u0644\u06CC \u0628\u0627 \u0647\u0645\u0627\u0646 \u0646\u0627\u0645 \u0641\u0627\u06CC\u0644 \u0645\u0648\u062C\u0648\u062F \u0631\u0627 \u0642\u0631\u0627\u0631\u062F\u0627\u062F\u0647/\u06A9\u0634\u06CC\u062F\u0647 \u0645\u06CC\u200C\u06A9\u0646\u06CC\u062F\u060C \u0627\u06CC\u0646 \u062C\u062F\u0627\u06A9\u0646\u0646\u062F\u0647 \u0628\u0647 \u0646\u0627\u0645 \u0641\u0627\u06CC\u0644 \u0627\u0641\u0632\u0648\u062F\u0647 \u062E\u0648\u0627\u0647\u062F \u0634\u062F.",part2:"\u0645\u062B\u0644\u0627\u064B\u060C \u0632\u0645\u0627\u0646\u06CC \u06A9\u0647 \u0641\u0627\u06CC\u0644",part3:"\u0631\u0627 \u0645\u06CC\u200C\u06A9\u0634\u06CC\u062F\u060C \u0628\u0647 ",part4:"\u0648 \u063A\u06CC\u0631\u0647 \u062A\u063A\u06CC\u06CC\u0631 \u0646\u0627\u0645 \u062E\u0648\u0627\u0647\u062F \u06CC\u0627\u0641\u062A\u060C \u062A\u0627 \u0627\u0648\u0644\u06CC\u0646 \u0646\u0627\u0645 \u0645\u0648\u062C\u0648\u062F \u0631\u0627 \u0628\u06CC\u0627\u0628\u062F."},name:"\u062C\u062F\u0627\u06A9\u0646\u0646\u062F\u0647 \u0646\u0627\u0645 \u062A\u06A9\u0631\u0627\u0631\u06CC"},emptyAttachmentFolderBehavior:{description:{part1:"\u0632\u0645\u0627\u0646\u06CC \u06A9\u0647 \u067E\u0648\u0634\u0647 \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627 \u062E\u0627\u0644\u06CC \u0645\u06CC\u200C\u0634\u0648\u062F:"},name:"\u0631\u0641\u062A\u0627\u0631 \u067E\u0648\u0634\u0647 \u062E\u0627\u0644\u06CC \u067E\u06CC\u0648\u0633\u062A"},excludePaths:{description:{part1:"\u06CC\u0627\u062F\u062F\u0627\u0634\u062A\u200C\u0647\u0627\u06CC \u0645\u0648\u062C\u0648\u062F \u062F\u0631 \u0645\u0633\u06CC\u0631\u0647\u0627\u06CC \u0632\u06CC\u0631 \u0631\u0627 \u0627\u0632 \u062F\u0631 \u0646\u0638\u0631 \u06AF\u06CC\u0631\u06CC \u0646\u0627\u062F\u06CC\u062F\u0647 \u0628\u06AF\u06CC\u0631\u06CC\u062F.",part2:"\u0647\u0631 \u0645\u0633\u06CC\u0631 \u0631\u0627 \u062F\u0631 \u06CC\u06A9 \u062E\u0637 \u062C\u062F\u06CC\u062F \u0648\u0627\u0631\u062F \u06A9\u0646\u06CC\u062F.",part3:"\u0645\u06CC\u200C\u062A\u0648\u0627\u0646\u06CC\u062F \u0627\u0632 \u0631\u0634\u062A\u0647 \u0645\u0633\u06CC\u0631 \u06CC\u0627",part4:"\u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u06A9\u0646\u06CC\u062F. \u0627\u06AF\u0631 \u062A\u0646\u0638\u06CC\u0645 \u062E\u0627\u0644\u06CC \u0628\u0627\u0634\u062F\u060C \u0647\u06CC\u0686 \u06CC\u0627\u062F\u062F\u0627\u0634\u062A\u06CC \u0646\u0627\u062F\u06CC\u062F\u0647 \u06AF\u0631\u0641\u062A\u0647 \u0646\u0645\u06CC\u200C\u0634\u0648\u062F."},name:"\u0645\u0633\u06CC\u0631\u0647\u0627\u06CC \u0646\u0627\u062F\u06CC\u062F\u0647 \u06AF\u0631\u0641\u062A\u0647 \u0634\u062F\u0647"},excludePathsFromAttachmentCollecting:{description:{part1:"\u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627\u06CC \u0645\u0648\u062C\u0648\u062F \u062F\u0631 \u0645\u0633\u06CC\u0631\u0647\u0627\u06CC \u0632\u06CC\u0631 \u0631\u0627 \u0632\u0645\u0627\u0646\u06CC \u06A9\u0647 \u0641\u0631\u0645\u0627\u0646",part2:"\u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627",part3:"\u0627\u062C\u0631\u0627 \u0645\u06CC\u200C\u0634\u0648\u062F\u060C \u0627\u0632 \u062F\u0631 \u0646\u0638\u0631 \u06AF\u06CC\u0631\u06CC \u0646\u0627\u062F\u06CC\u062F\u0647 \u0628\u06AF\u06CC\u0631\u06CC\u062F.",part4:"\u0647\u0631 \u0645\u0633\u06CC\u0631 \u0631\u0627 \u062F\u0631 \u06CC\u06A9 \u062E\u0637 \u062C\u062F\u06CC\u062F \u0648\u0627\u0631\u062F \u06A9\u0646\u06CC\u062F.",part5:"\u0645\u06CC\u200C\u062A\u0648\u0627\u0646\u06CC\u062F \u0627\u0632 \u0631\u0634\u062A\u0647 \u0645\u0633\u06CC\u0631 \u06CC\u0627",part6:"\u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u06A9\u0646\u06CC\u062F. \u0627\u06AF\u0631 \u062A\u0646\u0638\u06CC\u0645 \u062E\u0627\u0644\u06CC \u0628\u0627\u0634\u062F\u060C \u0647\u06CC\u0686 \u0645\u0633\u06CC\u0631\u06CC \u0627\u0632 \u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u067E\u06CC\u0648\u0633\u062A \u0646\u0627\u062F\u06CC\u062F\u0647 \u06AF\u0631\u0641\u062A\u0647 \u0646\u0645\u06CC\u200C\u0634\u0648\u062F."},name:"\u0645\u0633\u06CC\u0631\u0647\u0627\u06CC \u0646\u0627\u062F\u06CC\u062F\u0647 \u06AF\u0631\u0641\u062A\u0647 \u0634\u062F\u0647 \u0627\u0632 \u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u067E\u06CC\u0648\u0633\u062A"},generatedAttachmentFileName:{description:{part1:"\u0646\u0634\u0627\u0646\u200C\u0647\u0627\u06CC \u0645\u0648\u062C\u0648\u062F",part2:"\u0631\u0627 \u0628\u0628\u06CC\u0646\u06CC\u062F"},name:"\u0646\u0627\u0645 \u0641\u0627\u06CC\u0644 \u067E\u06CC\u0648\u0633\u062A \u062A\u0648\u0644\u06CC\u062F \u0634\u062F\u0647"},includePaths:{description:{part1:"\u06CC\u0627\u062F\u062F\u0627\u0634\u062A\u200C\u0647\u0627\u06CC \u0645\u0648\u062C\u0648\u062F \u062F\u0631 \u0645\u0633\u06CC\u0631\u0647\u0627\u06CC \u0632\u06CC\u0631 \u0631\u0627 \u062F\u0631 \u0646\u0638\u0631 \u0628\u06AF\u06CC\u0631\u06CC\u062F.",part2:"\u0647\u0631 \u0645\u0633\u06CC\u0631 \u0631\u0627 \u062F\u0631 \u06CC\u06A9 \u062E\u0637 \u062C\u062F\u06CC\u062F \u0648\u0627\u0631\u062F \u06A9\u0646\u06CC\u062F.",part3:"\u0645\u06CC\u200C\u062A\u0648\u0627\u0646\u06CC\u062F \u0627\u0632 \u0631\u0634\u062A\u0647 \u0645\u0633\u06CC\u0631 \u06CC\u0627",part4:"\u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u06A9\u0646\u06CC\u062F. \u0627\u06AF\u0631 \u062A\u0646\u0638\u06CC\u0645 \u062E\u0627\u0644\u06CC \u0628\u0627\u0634\u062F\u060C \u0647\u0645\u0647 \u06CC\u0627\u062F\u062F\u0627\u0634\u062A\u200C\u0647\u0627 \u062F\u0631 \u0646\u0638\u0631 \u06AF\u0631\u0641\u062A\u0647 \u0645\u06CC\u200C\u0634\u0648\u0646\u062F."},name:"\u0645\u0633\u06CC\u0631\u0647\u0627\u06CC \u062F\u0631 \u0646\u0638\u0631 \u06AF\u0631\u0641\u062A\u0647 \u0634\u062F\u0647"},jpegQuality:{description:"\u0647\u0631 \u0686\u0647 \u06A9\u06CC\u0641\u06CC\u062A \u06A9\u0645\u062A\u0631 \u0628\u0627\u0634\u062F\u060C \u0646\u0633\u0628\u062A \u0641\u0634\u0631\u062F\u0647\u200C\u0633\u0627\u0632\u06CC \u0628\u06CC\u0634\u062A\u0631 \u0627\u0633\u062A.",name:"\u06A9\u06CC\u0641\u06CC\u062A JPEG"},locationForNewAttachments:{description:{part1:"\u0628\u0627",part2:"\u0634\u0631\u0648\u0639 \u06A9\u0646\u06CC\u062F \u062A\u0627 \u0627\u0632 \u0645\u0633\u06CC\u0631 \u0646\u0633\u0628\u06CC \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u06A9\u0646\u06CC\u062F.",part3:"\u0646\u0634\u0627\u0646\u200C\u0647\u0627\u06CC \u0645\u0648\u062C\u0648\u062F",part4:"\u0631\u0627 \u0628\u0628\u06CC\u0646\u06CC\u062F",part5:"\u067E\u0648\u0634\u0647\u200C\u0647\u0627\u06CC \u0646\u0642\u0637\u0647\u200C\u0627\u06CC \u0645\u0627\u0646\u0646\u062F",part6:"\u062A\u0648\u0635\u06CC\u0647 \u0646\u0645\u06CC\u200C\u0634\u0648\u0646\u062F\u060C \u0632\u06CC\u0631\u0627 Obsidian \u0622\u0646\u200C\u0647\u0627 \u0631\u0627 \u0631\u062F\u06CC\u0627\u0628\u06CC \u0646\u0645\u06CC\u200C\u06A9\u0646\u062F. \u0645\u0645\u06A9\u0646 \u0627\u0633\u062A \u0646\u06CC\u0627\u0632 \u0628\u0647 \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0627\u0632",part7:"\u067E\u0644\u0627\u06AF\u06CC\u0646 \u0628\u0631\u0627\u06CC \u0645\u062F\u06CC\u0631\u06CC\u062A \u0622\u0646\u200C\u0647\u0627 \u062F\u0627\u0634\u062A\u0647 \u0628\u0627\u0634\u06CC\u062F."},name:"\u0645\u06A9\u0627\u0646 \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627\u06CC \u062C\u062F\u06CC\u062F"},markdownUrlFormat:{description:{part1:"\u0641\u0631\u0645\u062A URL \u06A9\u0647 \u062F\u0631 Markdown \u0648\u0627\u0631\u062F \u062E\u0648\u0627\u0647\u062F \u0634\u062F.",part2:"\u0646\u0634\u0627\u0646\u200C\u0647\u0627\u06CC \u0645\u0648\u062C\u0648\u062F",part3:"\u0631\u0627 \u0628\u0628\u06CC\u0646\u06CC\u062F",part4:"\u0628\u0631\u0627\u06CC \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0627\u0632 \u0641\u0631\u0645\u062A \u067E\u06CC\u0634\u200C\u0641\u0631\u0636 \u062E\u0627\u0644\u06CC \u0628\u06AF\u0630\u0627\u0631\u06CC\u062F."},name:"\u0641\u0631\u0645\u062A URL Markdown"},renameAttachmentsToLowerCase:"\u062A\u063A\u06CC\u06CC\u0631 \u0646\u0627\u0645 \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627 \u0628\u0647 \u062D\u0631\u0648\u0641 \u06A9\u0648\u0686\u06A9",renamedAttachmentFileName:{description:{part1:"\u0646\u0634\u0627\u0646\u200C\u0647\u0627\u06CC \u0645\u0648\u062C\u0648\u062F",part2:"\u0631\u0627 \u0628\u0628\u06CC\u0646\u06CC\u062F",part3:"\u0628\u0631\u0627\u06CC \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0627\u0632",part4:"\u062A\u0646\u0638\u06CC\u0645\u0627\u062A \u062E\u0627\u0644\u06CC \u0628\u06AF\u0630\u0627\u0631\u06CC\u062F."},name:"\u0646\u0627\u0645 \u0641\u0627\u06CC\u0644 \u067E\u06CC\u0648\u0633\u062A \u062A\u063A\u06CC\u06CC\u0631 \u0646\u0627\u0645 \u06CC\u0627\u0641\u062A\u0647"},resetToSampleCustomTokens:{message:"\u0622\u06CC\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062A\u06CC\u062F \u06A9\u0647 \u0645\u06CC\u200C\u062E\u0648\u0627\u0647\u06CC\u062F \u0646\u0634\u0627\u0646\u200C\u0647\u0627\u06CC \u0633\u0641\u0627\u0631\u0634\u06CC \u0631\u0627 \u0628\u0647 \u0646\u0634\u0627\u0646\u200C\u0647\u0627\u06CC \u0633\u0641\u0627\u0631\u0634\u06CC \u0646\u0645\u0648\u0646\u0639 \u0628\u0627\u0632\u0646\u0634\u0627\u0646\u06CC \u06A9\u0646\u06CC\u062F\u061F \u062A\u063A\u06CC\u06CC\u0631\u0627\u062A \u0634\u0645\u0627 \u0627\u0632 \u062F\u0633\u062A \u062E\u0648\u0627\u0647\u062F \u0631\u0641\u062A.",title:"\u0628\u0627\u0632\u0646\u0634\u0627\u0646\u06CC \u0628\u0647 \u0646\u0634\u0627\u0646\u200C\u0647\u0627\u06CC \u0633\u0641\u0627\u0631\u0634\u06CC \u0646\u0645\u0648\u0646\u0647"},shouldConvertPastedImagesToJpeg:{description:"\u0622\u06CC\u0627 \u062A\u0635\u0627\u0648\u06CC\u0631 \u0642\u0631\u0627\u0631\u062F\u0627\u062F\u0647 \u0634\u062F\u0647 \u0628\u0647 JPEG \u062A\u0628\u062F\u06CC\u0644 \u0634\u0648\u0646\u062F. \u0641\u0642\u0637 \u0632\u0645\u0627\u0646\u06CC \u0627\u0639\u0645\u0627\u0644 \u0645\u06CC\u200C\u0634\u0648\u062F \u06A9\u0647 \u0645\u062D\u062A\u0648\u0627\u06CC \u062A\u0635\u0648\u06CC\u0631 PNG \u0645\u0633\u062A\u0642\u06CC\u0645\u0627\u064B \u0627\u0632 \u06A9\u0644\u06CC\u067E\u200C\u0628\u0648\u0631\u062F \u0642\u0631\u0627\u0631\u062F\u0627\u062F\u0647 \u0634\u0648\u062F. \u0645\u0639\u0645\u0648\u0644\u0627\u064B \u0628\u0631\u0627\u06CC \u0642\u0631\u0627\u0631\u062F\u0627\u062F\u0646 \u0639\u06A9\u0633\u200C\u0647\u0627\u06CC \u0635\u0641\u062D\u0647.",name:"\u0622\u06CC\u0627 \u062A\u0635\u0627\u0648\u06CC\u0631 \u0642\u0631\u0627\u0631\u062F\u0627\u062F\u0647 \u0634\u062F\u0647 \u0628\u0647 JPEG \u062A\u0628\u062F\u06CC\u0644 \u0634\u0648\u0646\u062F"},shouldDeleteOrphanAttachments:{description:"\u0627\u06AF\u0631 \u0641\u0639\u0627\u0644 \u0628\u0627\u0634\u062F\u060C \u0632\u0645\u0627\u0646\u06CC \u06A9\u0647 \u06CC\u0627\u062F\u062F\u0627\u0634\u062A \u062D\u0630\u0641 \u0645\u06CC\u200C\u0634\u0648\u062F\u060C \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627\u06CC \u06CC\u062A\u06CC\u0645 \u0622\u0646 \u0646\u06CC\u0632 \u062D\u0630\u0641 \u0645\u06CC\u200C\u0634\u0648\u0646\u062F.",name:"\u0622\u06CC\u0627 \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627\u06CC \u06CC\u062A\u06CC\u0645 \u062D\u0630\u0641 \u0634\u0648\u0646\u062F"},shouldRenameAttachmentFiles:{description:{part1:"\u0627\u06AF\u0631 \u0641\u0639\u0627\u0644 \u0628\u0627\u0634\u062F\u060C \u0632\u0645\u0627\u0646\u06CC \u06A9\u0647 \u06CC\u0627\u062F\u062F\u0627\u0634\u062A \u062A\u063A\u06CC\u06CC\u0631 \u0646\u0627\u0645 \u06CC\u0627 \u0627\u0646\u062A\u0642\u0627\u0644 \u067E\u06CC\u062F\u0627 \u0645\u06CC\u200C\u06A9\u0646\u062F\u060C \u0641\u0627\u06CC\u0644\u200C\u0647\u0627\u06CC \u067E\u06CC\u0648\u0633\u062A \u0628\u0631 \u0627\u0633\u0627\u0633",part2:"\u062A\u0646\u0638\u06CC\u0645\u0627\u062A \u062A\u063A\u06CC\u06CC\u0631 \u0646\u0627\u0645 \u062E\u0648\u0627\u0647\u0646\u062F \u06CC\u0627\u0641\u062A."},name:"\u0622\u06CC\u0627 \u0641\u0627\u06CC\u0644\u200C\u0647\u0627\u06CC \u067E\u06CC\u0648\u0633\u062A \u062A\u063A\u06CC\u06CC\u0631 \u0646\u0627\u0645 \u067E\u06CC\u062F\u0627 \u06A9\u0646\u0646\u062F"},shouldRenameAttachmentFolders:{description:"\u0622\u06CC\u0627 \u0632\u0645\u0627\u0646\u06CC \u06A9\u0647 \u06CC\u0627\u062F\u062F\u0627\u0634\u062A \u062A\u063A\u06CC\u06CC\u0631 \u0646\u0627\u0645 \u06CC\u0627 \u0627\u0646\u062A\u0642\u0627\u0644 \u067E\u06CC\u062F\u0627 \u0645\u06CC\u200C\u06A9\u0646\u062F\u060C \u067E\u0648\u0634\u0647\u200C\u0647\u0627\u06CC \u067E\u06CC\u0648\u0633\u062A \u0646\u06CC\u0632 \u062A\u063A\u06CC\u06CC\u0631 \u0646\u0627\u0645 \u067E\u06CC\u062F\u0627 \u06A9\u0646\u0646\u062F.",name:"\u0622\u06CC\u0627 \u067E\u0648\u0634\u0647\u200C\u0647\u0627\u06CC \u067E\u06CC\u0648\u0633\u062A \u062A\u063A\u06CC\u06CC\u0631 \u0646\u0627\u0645 \u067E\u06CC\u062F\u0627 \u06A9\u0646\u0646\u062F"},shouldRenameCollectedAttachments:{description:{part1:"\u0627\u06AF\u0631 \u0641\u0639\u0627\u0644 \u0628\u0627\u0634\u062F\u060C \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627\u06CC \u067E\u0631\u062F\u0627\u0632\u0634 \u0634\u062F\u0647 \u0627\u0632 \u0637\u0631\u06CC\u0642",part2:"\u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627",part3:"\u0641\u0631\u0645\u0627\u0646\u200C\u0647\u0627 \u0628\u0631 \u0627\u0633\u0627\u0633 \u062A\u0646\u0638\u06CC\u0645",part4:"\u062A\u063A\u06CC\u06CC\u0631 \u0646\u0627\u0645 \u062E\u0648\u0627\u0647\u0646\u062F \u06CC\u0627\u0641\u062A."},name:"\u0622\u06CC\u0627 \u067E\u06CC\u0648\u0633\u062A\u200C\u0647\u0627\u06CC \u062C\u0645\u0639\u200C\u0622\u0648\u0631\u06CC \u0634\u062F\u0647 \u062A\u063A\u06CC\u06CC\u0631 \u0646\u0627\u0645 \u067E\u06CC\u062F\u0627 \u06A9\u0646\u0646\u062F"},specialCharacters:{description:{part1:"\u06A9\u0631\u0627\u06A9\u062A\u0631\u0647\u0627\u06CC \u0648\u06CC\u0698\u0647 \u062F\u0631 \u067E\u0648\u0634\u0647 \u067E\u06CC\u0648\u0633\u062A \u0648 \u0646\u0627\u0645 \u0641\u0627\u06CC\u0644 \u06A9\u0647 \u0628\u0627\u06CC\u062F \u062C\u0627\u06CC\u06AF\u0632\u06CC\u0646 \u06CC\u0627 \u062D\u0630\u0641 \u0634\u0648\u0646\u062F.",part2:"\u0628\u0631\u0627\u06CC \u062D\u0641\u0638 \u06A9\u0631\u0627\u06A9\u062A\u0631\u0647\u0627\u06CC \u0648\u06CC\u0698\u0647 \u062E\u0627\u0644\u06CC \u0628\u06AF\u0630\u0627\u0631\u06CC\u062F."},name:"\u06A9\u0631\u0627\u06A9\u062A\u0631\u0647\u0627\u06CC \u0648\u06CC\u0698\u0647"},specialCharactersReplacement:{description:{part1:"\u0631\u0634\u062A\u0647 \u062C\u0627\u06CC\u06AF\u0632\u06CC\u0646 \u0628\u0631\u0627\u06CC \u06A9\u0631\u0627\u06A9\u062A\u0631\u0647\u0627\u06CC \u0648\u06CC\u0698\u0647 \u062F\u0631 \u067E\u0648\u0634\u0647 \u067E\u06CC\u0648\u0633\u062A \u0648 \u0646\u0627\u0645 \u0641\u0627\u06CC\u0644.",part2:"\u0628\u0631\u0627\u06CC \u062D\u0630\u0641 \u06A9\u0631\u0627\u06A9\u062A\u0631\u0647\u0627\u06CC \u0648\u06CC\u0698\u0647 \u062E\u0627\u0644\u06CC \u0628\u06AF\u0630\u0627\u0631\u06CC\u062F."},name:"\u062C\u0627\u06CC\u06AF\u0632\u06CC\u0646 \u06A9\u0631\u0627\u06A9\u062A\u0631\u0647\u0627\u06CC \u0648\u06CC\u0698\u0647"},timeoutInSeconds:{description:{part1:"\u0632\u0645\u0627\u0646 \u0627\u0646\u0642\u0636\u0627 \u0628\u0647 \u062B\u0627\u0646\u06CC\u0647 \u0628\u0631\u0627\u06CC \u0647\u0645\u0647 \u0639\u0645\u0644\u06CC\u0627\u062A.",part2:"\u0627\u06AF\u0631",part3:"\u062A\u0646\u0638\u06CC\u0645 \u0634\u0648\u062F\u060C \u0632\u0645\u0627\u0646 \u0627\u0646\u0642\u0636\u0627 \u0627\u062C\u0631\u0627\u06CC \u0639\u0645\u0644\u06CC\u0627\u062A \u063A\u06CC\u0631\u0641\u0639\u0627\u0644 \u0645\u06CC\u200C\u0634\u0648\u062F."},name:"\u0632\u0645\u0627\u0646 \u0627\u0646\u0642\u0636\u0627 \u0628\u0647 \u062B\u0627\u0646\u06CC\u0647"},treatAsAttachmentExtensions:{description:{part1:"\u0641\u0627\u06CC\u0644\u200C\u0647\u0627\u06CC \u0628\u0627 \u0627\u06CC\u0646 \u067E\u0633\u0648\u0646\u062F\u0647\u0627 \u0631\u0627 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u067E\u06CC\u0648\u0633\u062A \u062F\u0631 \u0646\u0638\u0631 \u0628\u06AF\u06CC\u0631\u06CC\u062F.",part2:"\u0628\u0647 \u0637\u0648\u0631 \u067E\u06CC\u0634\u200C\u0641\u0631\u0636",part3:"\u0648",part4:"\u0641\u0627\u06CC\u0644\u200C\u0647\u0627\u06CC \u0644\u06CC\u0646\u06A9 \u0634\u062F\u0647 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u067E\u06CC\u0648\u0633\u062A \u062F\u0631 \u0646\u0638\u0631 \u06AF\u0631\u0641\u062A\u0647 \u0646\u0645\u06CC\u200C\u0634\u0648\u0646\u062F \u0648 \u0628\u0627 \u06CC\u0627\u062F\u062F\u0627\u0634\u062A \u0627\u0646\u062A\u0642\u0627\u0644 \u067E\u06CC\u062F\u0627 \u0646\u0645\u06CC\u200C\u06A9\u0646\u0646\u062F.",part5:"\u0645\u06CC\u200C\u062A\u0648\u0627\u0646\u06CC\u062F \u067E\u0633\u0648\u0646\u062F\u0647\u0627\u06CC \u0633\u0641\u0627\u0631\u0634\u06CC \u0627\u0636\u0627\u0641\u0647 \u06A9\u0646\u06CC\u062F\u060C \u0645\u062B\u0644\u0627\u064B",part6:"\u060C \u062A\u0627 \u0627\u06CC\u0646 \u0631\u0641\u062A\u0627\u0631 \u0631\u0627 \u0628\u0627\u0632\u0646\u0648\u06CC\u0633\u06CC \u06A9\u0646\u06CC\u062F."},name:"\u067E\u0633\u0648\u0646\u062F\u0647\u200C\u0647\u0627\u06CC \u062F\u0631 \u0646\u0638\u0631 \u06AF\u0631\u0641\u062A\u0647 \u0634\u062F\u0647 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u067E\u06CC\u0648\u0633\u062A"}},promptWithPreviewModal:{previewModal:{title:"\u067E\u06CC\u0634\u200C\u0646\u0645\u0627\u06CC\u0634 \u0641\u0627\u06CC\u0644 \u067E\u06CC\u0648\u0633\u062A '{{fullFileName}}'"},title:"\u0645\u0642\u062F\u0627\u0631\u06CC \u0628\u0631\u0627\u06CC \u0646\u0634\u0627\u0646 \u062F\u0631\u062E\u0648\u0627\u0633\u062A \u0627\u0631\u0627\u0626\u0647 \u062F\u0647\u06CC\u062F"},regularExpression:"/\u0639\u0628\u0627\u0631\u062A \u0642\u0627\u0646\u0648\u0646\u06CC/"};var Xm={attachmentCollector:{confirm:{part1:"Voulez-vous collecter les pi\xE8ces jointes pour toutes les notes dans les dossiers de mani\xE8re r\xE9cursive ?",part2:"Cette op\xE9ration ne peut pas \xEAtre annul\xE9e."},progressBar:{message:"Collecte des pi\xE8ces jointes {{iterationStr}} - '{{noteFilePath}}'.",title:"Collecte des pi\xE8ces jointes..."}},buttons:{copy:"Copier",move:"D\xE9placer",previewAttachmentFile:"Aper\xE7u du fichier joint",skip:"Ignorer"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"La pi\xE8ce jointe",part2:"est r\xE9f\xE9renc\xE9e par plusieurs notes."},heading:"Collecte de pi\xE8ce jointe utilis\xE9e par plusieurs notes",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Utiliser la m\xEAme action pour les autres pi\xE8ces jointes probl\xE9matiques"},commands:{collectAttachmentsCurrentFolder:"Collecter les pi\xE8ces jointes dans le dossier actuel",collectAttachmentsCurrentNote:"Collecter les pi\xE8ces jointes dans la note actuelle",collectAttachmentsEntireVault:"Collecter les pi\xE8ces jointes dans tout le coffre"},menuItems:{collectAttachmentsInFile:"Collecter les pi\xE8ces jointes dans le fichier",collectAttachmentsInFiles:"Collecter les pi\xE8ces jointes dans les fichiers"},notice:{collectingAttachments:"Collecte des pi\xE8ces jointes pour '{{noteFilePath}}'",collectingAttachmentsCancelled:"Collecte des pi\xE8ces jointes annul\xE9e. Voir la console pour plus de d\xE9tails.",generatedAttachmentFileNameIsInvalid:{part1:`Le nom de fichier de pi\xE8ce jointe g\xE9n\xE9r\xE9 '{{path}}' est invalide.
|
|
487
|
+
{{validationMessage}}
|
|
488
|
+
V\xE9rifiez votre`,part2:"param\xE8tre."},notePathIsIgnored:"Le chemin de la note est ignor\xE9"},obsidianDevUtils:{buttons:{cancel:"Annuler",ok:"OK"},dataview:{itemsPerPage:"\xC9l\xE9ments par page :",jumpToPage:"Aller \xE0 la page :"},notices:{attachmentIsStillUsed:"La pi\xE8ce jointe {{attachmentPath}} est encore utilis\xE9e par d'autres notes. Elle ne sera pas supprim\xE9e.",unhandledError:"Une erreur non g\xE9r\xE9e s'est produite. Veuillez v\xE9rifier la console pour plus d'informations."}},pluginSettings:{attachmentRenameMode:{all:{description:"tous les fichiers sont renomm\xE9s.",displayText:"Tous"},none:{description:"leurs noms sont pr\xE9serv\xE9s.",displayText:"Aucun"},onlyPastedImages:{description:"seules les images coll\xE9es sont renomm\xE9es. S'applique uniquement lorsque le contenu d'image PNG est coll\xE9 directement depuis le presse-papiers. Typiquement, pour coller des captures d'\xE9cran.",displayText:"Images coll\xE9es uniquement"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"annuler la collecte de pi\xE8ces jointes.",displayText:"Annuler"},copy:{description:"copier la pi\xE8ce jointe vers le nouvel emplacement.",displayText:"Copier"},move:{description:"d\xE9placer la pi\xE8ce jointe vers le nouvel emplacement.",displayText:"D\xE9placer"},prompt:{description:"demander \xE0 l'utilisateur de choisir l'action.",displayText:"Demander"},skip:{description:"ignorer la pi\xE8ce jointe et passer \xE0 la suivante.",displayText:"Ignorer"}},defaultImageSizeDimension:{height:"Hauteur",width:"Largeur"},emptyAttachmentFolderBehavior:{delete:{description:"supprimera le dossier de pi\xE8ces jointes vide.",displayText:"Supprimer"},deleteWithEmptyParents:{description:"supprimera le dossier de pi\xE8ces jointes vide et ses dossiers parents vides.",displayText:"Supprimer avec parents vides"},keep:{description:"conservera le dossier de pi\xE8ces jointes vide.",displayText:"Conserver"}}},pluginSettingsManager:{customToken:{codeComment:`// Les jetons personnalis\xE9s ont \xE9t\xE9 comment\xE9s car ils doivent \xEAtre mis \xE0 jour vers le nouveau format introduit dans la version 9.0.0 du plugin.
|
|
489
|
+
// Consultez la documentation (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) pour plus d'informations.`,deprecated:{part1:"Dans la version 9.0.0 du plugin, le format d'enregistrement des jetons personnalis\xE9s a chang\xE9. Veuillez mettre \xE0 jour vos jetons en cons\xE9quence. Consultez la",part2:"documentation",part3:"pour plus d'informations"}},legacyRenameAttachmentsToLowerCase:{part1:"Dans la version 9.0.0 du plugin, le param\xE8tre",part2:"est obsol\xE8te. Utilisez le",part3:"format \xE0 la place. Voir la",part4:"documentation",part5:"pour plus d'informations"},markdownUrlFormat:{deprecated:{part1:"Vous avez potentiellement une valeur incorrecte d\xE9finie pour le",part2:"format. Veuillez vous r\xE9f\xE9rer \xE0 la",part3:"documentation",part4:"pour plus d'informations",part5:"Ce message ne sera plus affich\xE9."}},specialCharacters:{part1:"Dans la version 9.16.0 du plugin, la",part2:"valeur de param\xE8tre par d\xE9faut a \xE9t\xE9 modifi\xE9e. Votre valeur de param\xE8tre a \xE9t\xE9 mise \xE0 jour vers la nouvelle valeur par d\xE9faut."},validation:{defaultImageSizeMustBePercentageOrPixels:"La taille d'image par d\xE9faut doit \xEAtre en pixels ou en pourcentage",invalidCustomTokensCode:"Code de jetons personnalis\xE9s invalide",invalidRegularExpression:"Expression r\xE9guli\xE8re invalide {{regExp}}",specialCharactersMustNotContainSlash:"Les caract\xE8res sp\xE9ciaux ne doivent pas contenir /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"Le remplacement des caract\xE8res sp\xE9ciaux ne doit pas contenir de caract\xE8res de chemin de fichier invalides."},version:{part1:"Votre fichier de param\xE8tres ",part2:"a la version",part3:"qui est plus r\xE9cente que la version actuelle du plugin",part4:"Le plugin pourrait ne pas fonctionner comme attendu. Veuillez mettre \xE0 jour le plugin vers la derni\xE8re version ou vous assurer que les param\xE8tres sont corrects."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"Lors de l'ajout de fichiers :"},name:"Mode de renommage des pi\xE8ces jointes"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Lorsque la pi\xE8ce jointe collect\xE9e est utilis\xE9e par plusieurs notes :"},name:"Mode de collecte de pi\xE8ce jointe utilis\xE9e par plusieurs notes"},collectedAttachmentFileName:{description:{part1:"Voir les",part2:"jetons disponibles",part3:"Laisser vide pour utiliser le param\xE8tre",part4:"\xE0 la place."},name:"Nom de fichier de pi\xE8ce jointe collect\xE9e"},customTokens:{description:{part1:"Jetons personnalis\xE9s \xE0 utiliser.",part2:"Voir la",part3:"documentation",part4:"pour plus d'informations.",part5:"\u26A0\uFE0F Les jetons personnalis\xE9s peuvent \xEAtre du code JavaScript arbitraire. S'ils sont mal \xE9crits, ils peuvent causer une perte de donn\xE9es. Utilisez-les \xE0 vos propres risques."},name:"Jetons personnalis\xE9s"},defaultImageSize:{description:{part1:"La taille d'image par d\xE9faut.",part2:"Peut \xEAtre sp\xE9cifi\xE9e en pixels",part3:"ou en pourcentage de la taille totale de l'image",part4:"Laissez vide pour utiliser la taille originale."},name:"Taille d'image par d\xE9faut"},duplicateNameSeparator:{description:{part1:"Lorsque vous collez/glissez un fichier avec le m\xEAme nom qu'un fichier existant, ce s\xE9parateur sera ajout\xE9 au nom du fichier.",part2:"Par exemple, lorsque vous glissez le fichier",part3:", il sera renomm\xE9 en ",part4:", etc, obtenant le premier nom disponible."},name:"S\xE9parateur de nom dupliqu\xE9"},emptyAttachmentFolderBehavior:{description:{part1:"Lorsque le dossier de pi\xE8ces jointes devient vide :"},name:"Comportement du dossier de pi\xE8ces jointes vide"},excludePaths:{description:{part1:"Exclure les notes des chemins suivants.",part2:"Ins\xE9rez chaque chemin sur une nouvelle ligne.",part3:"Vous pouvez utiliser une cha\xEEne de chemin ou",part4:"Si le param\xE8tre est vide, aucune note n'est exclue."},name:"Chemins exclus"},excludePathsFromAttachmentCollecting:{description:{part1:"Exclure les pi\xE8ces jointes des chemins suivants lorsque la commande",part2:"Collecter les pi\xE8ces jointes",part3:"est ex\xE9cut\xE9e.",part4:"Ins\xE9rez chaque chemin sur une nouvelle ligne.",part5:"Vous pouvez utiliser une cha\xEEne de chemin ou",part6:"Si le param\xE8tre est vide, aucun chemin n'est exclu de la collecte de pi\xE8ces jointes."},name:"Chemins exclus de la collecte de pi\xE8ces jointes"},generatedAttachmentFileName:{description:{part1:"Voir les",part2:"jetons disponibles"},name:"Nom de fichier de pi\xE8ce jointe g\xE9n\xE9r\xE9"},includePaths:{description:{part1:"Inclure les notes des chemins suivants.",part2:"Ins\xE9rez chaque chemin sur une nouvelle ligne.",part3:"Vous pouvez utiliser une cha\xEEne de chemin ou",part4:"Si le param\xE8tre est vide, toutes les notes sont incluses."},name:"Chemins inclus"},jpegQuality:{description:"Plus la qualit\xE9 est faible, plus le taux de compression est \xE9lev\xE9.",name:"Qualit\xE9 JPEG"},locationForNewAttachments:{description:{part1:"Commencer par",part2:"pour utiliser un chemin relatif.",part3:"Voir les",part4:"jetons disponibles",part5:"Les dossiers point comme",part6:"ne sont pas recommand\xE9s, car Obsidian ne les suit pas. Vous pourriez avoir besoin d'utiliser le",part7:"Plugin pour les g\xE9rer."},name:"Emplacement des nouvelles pi\xE8ces jointes"},markdownUrlFormat:{description:{part1:"Format pour l'URL qui sera ins\xE9r\xE9e dans Markdown.",part2:"Voir les",part3:"jetons disponibles",part4:"Laisser vide pour utiliser le format par d\xE9faut."},name:"Format d'URL Markdown"},renameAttachmentsToLowerCase:"Renommer les pi\xE8ces jointes en minuscules",renamedAttachmentFileName:{description:{part1:"Voir les",part2:"jetons disponibles",part3:"Laisser vide pour utiliser le param\xE8tre",part4:"\xE0 la place."},name:"Nom de fichier de pi\xE8ce jointe renomm\xE9e"},resetToSampleCustomTokens:{message:"\xCAtes-vous s\xFBr de vouloir r\xE9initialiser les jetons personnalis\xE9s aux jetons personnalis\xE9s d'exemple ? Vos modifications seront perdues.",title:"R\xE9initialiser aux jetons personnalis\xE9s d'exemple"},shouldConvertPastedImagesToJpeg:{description:"Convertir les images coll\xE9es en JPEG. S'applique uniquement lorsque le contenu d'image PNG est coll\xE9 directement depuis le presse-papiers. Typiquement, pour coller des captures d'\xE9cran.",name:"Convertir les images coll\xE9es en JPEG"},shouldDeleteOrphanAttachments:{description:"Si activ\xE9, lorsque la note est supprim\xE9e, ses pi\xE8ces jointes orphelines sont \xE9galement supprim\xE9es.",name:"Supprimer les pi\xE8ces jointes orphelines"},shouldRenameAttachmentFiles:{description:{part1:"Si activ\xE9, lorsqu'une note est renomm\xE9e ou d\xE9plac\xE9e, ses fichiers de pi\xE8ces jointes seront renomm\xE9s selon le param\xE8tre",part2:"."},name:"Renommer les fichiers de pi\xE8ces jointes"},shouldRenameAttachmentFolders:{description:"Renommer les dossiers de pi\xE8ces jointes lorsqu'une note est renomm\xE9e ou d\xE9plac\xE9e.",name:"Renommer les dossiers de pi\xE8ces jointes"},shouldRenameCollectedAttachments:{description:{part1:"Si activ\xE9, les pi\xE8ces jointes trait\xE9es via les commandes",part2:"Collecter les pi\xE8ces jointes",part3:"seront renomm\xE9es selon le param\xE8tre",part4:"."},name:"Renommer les pi\xE8ces jointes collect\xE9es"},specialCharacters:{description:{part1:"Caract\xE8res sp\xE9ciaux dans le dossier de pi\xE8ces jointes et le nom de fichier \xE0 remplacer ou supprimer.",part2:"Laisser vide pour pr\xE9server les caract\xE8res sp\xE9ciaux."},name:"Caract\xE8res sp\xE9ciaux"},specialCharactersReplacement:{description:{part1:"Cha\xEEne de remplacement pour les caract\xE8res sp\xE9ciaux dans le dossier de pi\xE8ces jointes et le nom de fichier.",part2:"Laisser vide pour supprimer les caract\xE8res sp\xE9ciaux."},name:"Remplacement des caract\xE8res sp\xE9ciaux"},timeoutInSeconds:{description:{part1:"Le d\xE9lai d'expiration en secondes pour toutes les op\xE9rations.",part2:"Si",part3:"est d\xE9fini, le d\xE9lai d'expiration de l'ex\xE9cution des op\xE9rations est d\xE9sactiv\xE9."},name:"D\xE9lai d'expiration en secondes"},treatAsAttachmentExtensions:{description:{part1:"Traiter les fichiers avec ces extensions comme des pi\xE8ces jointes.",part2:"Par d\xE9faut",part3:"et",part4:"les fichiers li\xE9s ne sont pas trait\xE9s comme des pi\xE8ces jointes et ne sont pas d\xE9plac\xE9s avec la note.",part5:"Vous pouvez ajouter des extensions personnalis\xE9es, par ex.",part6:", pour remplacer ce comportement."},name:"Extensions trait\xE9es comme pi\xE8ces jointes"}},promptWithPreviewModal:{previewModal:{title:"Aper\xE7u du fichier de pi\xE8ce jointe '{{fullFileName}}'"},title:"Fournir une valeur pour le jeton de saisie"},regularExpression:"/expression r\xE9guli\xE8re/"};var eh={attachmentCollector:{confirm:{part1:"Ar mhaith leat na ceangalt\xE1in a bhaili\xFA do gach n\xF3ta i bhfillte\xE1in go hathch\xFArsach?",part2:"N\xED f\xE9idir an oibr\xEDocht seo a cheal\xFA."},progressBar:{message:"Ag baili\xFA ceangalt\xE1n {{iterationStr}} - '{{noteFilePath}}'.",title:"Ag baili\xFA ceangalt\xE1n..."}},buttons:{copy:"C\xF3ipe\xE1il",move:"Bog",previewAttachmentFile:"R\xE9amhamharc comhad ceangalt\xE1in",skip:"L\xE9im thar"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"T\xE1 an ceangalt\xE1n",part2:"in \xFAs\xE1id ag n\xF3ta\xED iomad\xFAla."},heading:"Ag baili\xFA ceangalt\xE1in at\xE1 in \xFAs\xE1id ag n\xF3ta\xED iomad\xFAla",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Ba ch\xF3ir an gn\xEDomh c\xE9anna a \xFAs\xE1id do cheangalt\xE1in fhadhbach eile"},commands:{collectAttachmentsCurrentFolder:"Bailigh ceangalt\xE1in san fhillte\xE1n reatha",collectAttachmentsCurrentNote:"Bailigh ceangalt\xE1in sa n\xF3ta reatha",collectAttachmentsEntireVault:"Bailigh ceangalt\xE1in sa taisc iompl\xE1n"},menuItems:{collectAttachmentsInFile:"Bailigh ceangalt\xE1in sa chomhad",collectAttachmentsInFiles:"Bailigh ceangalt\xE1in sna comhaid"},notice:{collectingAttachments:"Ag baili\xFA ceangalt\xE1n do '{{noteFilePath}}'",collectingAttachmentsCancelled:"Cealaigh baili\xFA ceangalt\xE1n. F\xE9ach ar an cons\xF3l le haghaidh sonra\xED.",generatedAttachmentFileNameIsInvalid:{part1:`T\xE1 ainm comhad ceangalt\xE1in ginte '{{path}}' neamhbhail\xED.
|
|
490
|
+
{{validationMessage}}
|
|
491
|
+
Seice\xE1il do`,part2:"socruithe."},notePathIsIgnored:"T\xE1 conair an n\xF3ta \xE1 neamhaird"},obsidianDevUtils:{buttons:{cancel:"Cealaigh",ok:"T\xE1 go maith"},dataview:{itemsPerPage:"M\xEDreanna in aghaidh na leathanach:",jumpToPage:"L\xE9im chuig leathanach:"},notices:{attachmentIsStillUsed:"T\xE1 ceangalt\xE1n {{attachmentPath}} f\xF3s in \xFAs\xE1id ag n\xF3ta\xED eile. N\xED scriosfar \xE9.",unhandledError:"Tharla earr\xE1id n\xE1r l\xE1imhse\xE1ladh. Seice\xE1il an cons\xF3l le haghaidh tuilleadh eolais."}},pluginSettings:{attachmentRenameMode:{all:{description:"t\xE1 na comhaid go l\xE9ir athainmnithe.",displayText:"Uile"},none:{description:"t\xE1 a n-ainmneacha caomhnaithe.",displayText:"Dada"},onlyPastedImages:{description:"n\xED athainmn\xEDtear ach \xEDomh\xE1nna greamaithe. Bainean seo leis nuair a ghreamaitear \xE1bhair \xEDomh\xE1 PNG \xF3n ghearrt\xE1isce go d\xEDreach. Go t\xEDp\xFAl, chun gr\xEAnghrafa\xED a ghreamadh.",displayText:"\xCDomh\xE1nna greamaithe amh\xE1in"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"cealaigh baili\xFA ceangalt\xE1n.",displayText:"Cealaigh"},copy:{description:"c\xF3ipe\xE1il an ceangalt\xE1n chuig an su\xEDomh nua.",displayText:"C\xF3ipe\xE1il"},move:{description:"bog an ceangalt\xE1n chuig an su\xEDomh nua.",displayText:"Bog"},prompt:{description:"cuir an t-\xFAs\xE1ideoir faoi deara an gn\xEDomh a roghn\xFA.",displayText:"Cuir faoi deara"},skip:{description:"l\xE9im thar an ceangalt\xE1n agus lean ar aghaidh chuig an ch\xE9ad cheann eile.",displayText:"L\xE9im thar"}},defaultImageSizeDimension:{height:"Airde",width:"Leithead"},emptyAttachmentFolderBehavior:{delete:{description:"scriosfaidh an fhillte\xE1n ceangalt\xE1n folamh.",displayText:"Scrios"},deleteWithEmptyParents:{description:"scriosfaidh an fhillte\xE1n ceangalt\xE1n folamh agus a chuid fhillte\xE1n tuismitheora folamh.",displayText:"Scrios le tuismitheoir\xED folamh"},keep:{description:"coime\xE1dfaidh an fhillte\xE1n ceangalt\xE1n folamh.",displayText:"Coime\xE1d"}}},pluginSettingsManager:{customToken:{codeComment:`// Cuireadh comhartha\xED saincheaptha i gcomhr\xE1 mar gheall ar g\xE1 iad a nuashonr\xFA chuig an fhorm\xE1id nua a tugadh isteach i leagan 9.0.0 an phlugain.
|
|
492
|
+
// F\xE9ach ar an doicim\xE9ad\xFA (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) le haghaidh tuilleadh eolais.`,deprecated:{part1:"I leagan 9.0.0 an phlugain, d'athraigh form\xE1id chl\xE1r\xFAch\xE1in comhartha\xED saincheaptha. Nuashonraigh do chomhartha\xED d\xE1 r\xE9ir. F\xE9ach ar an",part2:"doicim\xE9ad\xFA",part3:"le haghaidh tuilleadh eolais"}},legacyRenameAttachmentsToLowerCase:{part1:"I leagan 9.0.0 an phlugain, t\xE1 an",part2:"socr\xFA as feidhm. \xDAs\xE1id an",part3:"form\xE1id ina ionad. F\xE9ach ar an",part4:"doicim\xE9ad\xFA",part5:"le haghaidh tuilleadh eolais"},markdownUrlFormat:{deprecated:{part1:"T\xE1 luach neamhcheart agat ar an",part2:"form\xE1id. F\xE9ach ar an",part3:"doicim\xE9ad\xFA",part4:"le haghaidh tuilleadh eolais",part5:"N\xED thaispe\xE1nfar an teachtaireacht seo ar\xEDs."}},specialCharacters:{part1:"I leagan 9.16.0 an phlugain, d'athraigh an",part2:"luach socr\xFA r\xE9amhshocraithe. Nuashonra\xEDodh do luach socr\xFA chuig an luach r\xE9amhshocraithe nua."},validation:{defaultImageSizeMustBePercentageOrPixels:"Caithfidh m\xE9id r\xE9amhshocraithe na h\xEDomh\xE1 a bheith i bpicteil\xEDn\xED n\xF3 i gc\xE9atad\xE1n",invalidCustomTokensCode:"C\xF3d comhartha\xED saincheaptha neamhbhail\xED",invalidRegularExpression:"Slonn rialta neamhbhail\xED {{regExp}}",specialCharactersMustNotContainSlash:"N\xEDor cheart go mbeadh / sna carachtair speisialta",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"N\xEDor cheart go mbeadh carachtair conair ainm comhaid neamhbhail\xED in ionad\xFA carachtar speisialta."},version:{part1:"T\xE1 leagan",part2:"ag do chomhad socruithe",part3:"at\xE1 n\xEDos nua n\xE1 leagan reatha an phlugain",part4:"D'fh\xE9adfadh nach n-oibreodh an plugan mar a bh\xEDothas ag s\xFAil. Nuashonraigh an plugan chuig an leagan is d\xE9ana\xED n\xF3 d\xE9an cinnte go bhfuil na socruithe ceart."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"Nuair a bh\xEDonn comhaid \xE1 gceangal:"},name:"M\xF3d athainmnithe ceangalt\xE1n"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Nuair a bh\xEDonn an ceangalt\xE1n bailithe in \xFAs\xE1id ag n\xF3ta\xED iomad\xFAla:"},name:"M\xF3d baili\xFA ceangalt\xE1n at\xE1 in \xFAs\xE1id ag n\xF3ta\xED iomad\xFAla"},collectedAttachmentFileName:{description:{part1:"F\xE9ach ar na",part2:"comhartha\xED at\xE1 ar f\xE1il",part3:"F\xE1g folamh chun",part4:"a \xFAs\xE1id ina ionad."},name:"Ainm comhad ceangalt\xE1n bailithe"},customTokens:{description:{part1:"Comhartha\xED saincheaptha le h\xFAs\xE1id.",part2:"F\xE9ach ar an",part3:"doicim\xE9ad\xFA",part4:"le haghaidh tuilleadh eolais.",part5:"\u26A0\uFE0F Is f\xE9idir le comhartha\xED saincheaptha a bheith ina ch\xF3d JavaScript treallach. M\xE1 t\xE1 siad drochscr\xEDofa, is f\xE9idir leo cailli\xFAint sonra\xED a chur faoi deara. \xDAs\xE1id iad ar do riosca f\xE9in."},name:"Comhartha\xED saincheaptha"},defaultImageSize:{description:{part1:"M\xE9id r\xE9amhshocraithe na h\xEDomh\xE1.",part2:"Is f\xE9idir a shonr\xFA i bpicteil\xEDn\xED",part3:"n\xF3 i gc\xE9atad\xE1n de mh\xE9id na h\xEDomh\xE1 ioml\xE1ine",part4:"F\xE1g folamh chun an m\xE9id bunaidh a \xFAs\xE1id."},name:"M\xE9id r\xE9amhshocraithe na h\xEDomh\xE1"},duplicateNameSeparator:{description:{part1:"Nuair a bh\xEDonn t\xFA ag greamadh/tarraint comhad leis an ainm c\xE9anna le comhad at\xE1 ann cheana, cuirfear an deighilteoir seo leis an ainm comhaid.",part2:"M.sh., nuair a bh\xEDonn t\xFA ag tarraint an chomhaid",part3:", athainmneofar \xE9 go",part4:", srl., ag f\xE1il an ch\xE9ad ainm at\xE1 ar f\xE1il."},name:"Deighilteoir ainm d\xFAbailte"},emptyAttachmentFolderBehavior:{description:{part1:"Nuair a bh\xEDonn an fhillte\xE1n ceangalt\xE1n folamh:"},name:"Iompar fhillte\xE1n ceangalt\xE1n folamh"},excludePaths:{description:{part1:"Eisigh n\xF3ta\xED \xF3 na conair\xED seo a leanas.",part2:"Cuir isteach gach conair ar l\xEDne nua.",part3:"Is f\xE9idir leat teaghr\xE1n conair n\xF3",part4:"a \xFAs\xE1id. M\xE1 t\xE1 an socr\xFA folamh, n\xED eis\xEDtear aon n\xF3ta\xED."},name:"Conair\xED a eis\xEDomh"},excludePathsFromAttachmentCollecting:{description:{part1:"Eisigh ceangalt\xE1in \xF3 na conair\xED seo a leanas nuair a",part2:"Bailigh ceangalt\xE1in",part3:"a fhorghn\xEDomha\xEDtear an t-ord\xFA.",part4:"Cuir isteach gach conair ar l\xEDne nua.",part5:"Is f\xE9idir leat teaghr\xE1n conair n\xF3",part6:"a \xFAs\xE1id. M\xE1 t\xE1 an socr\xFA folamh, n\xED eis\xEDtear aon chonair\xED \xF3 bhaili\xFA ceangalt\xE1n."},name:"Conair\xED a eis\xEDomh \xF3 bhaili\xFA ceangalt\xE1n"},generatedAttachmentFileName:{description:{part1:"F\xE9ach ar na",part2:"comhartha\xED at\xE1 ar f\xE1il"},name:"Ainm comhad ceangalt\xE1n ginte"},includePaths:{description:{part1:"Cuir n\xF3ta\xED \xF3 na conair\xED seo a leanas san \xE1ireamh.",part2:"Cuir isteach gach conair ar l\xEDne nua.",part3:"Is f\xE9idir leat teaghr\xE1n conair n\xF3",part4:"a \xFAs\xE1id. M\xE1 t\xE1 an socr\xFA folamh, cuirtear gach n\xF3ta san \xE1ireamh."},name:"Conair\xED a chur san \xE1ireamh"},jpegQuality:{description:"D\xE1 laghad an c\xE1il\xEDocht, is m\xF3 an c\xF3imheas comhbhr\xFA.",name:"C\xE1il\xEDocht JPEG"},locationForNewAttachments:{description:{part1:"Tosaigh le",part2:"chun conair choibhneasta a \xFAs\xE1id.",part3:"F\xE9ach ar na",part4:"comhartha\xED at\xE1 ar f\xE1il",part5:"N\xED mholtar fhillte\xE1in ponc mar",part6:"mar n\xED dh\xE9anann Obsidian iad a rian\xFA. D'fh\xE9adfadh gur g\xE1 duit",part7:"Plugan a \xFAs\xE1id chun iad a bhainisti\xFA."},name:"Su\xEDomh do cheangalt\xE1in nua"},markdownUrlFormat:{description:{part1:"Form\xE1id don URL a chuirfear isteach i Markdown.",part2:"F\xE9ach ar na",part3:"comhartha\xED at\xE1 ar f\xE1il",part4:"F\xE1g b\xE1n chun an fhorm\xE1id r\xE9amhshocraithe a \xFAs\xE1id."},name:"Form\xE1id URL Markdown"},renameAttachmentsToLowerCase:"Athainmnigh ceangalt\xE1in go litreacha beaga",renamedAttachmentFileName:{description:{part1:"F\xE9ach ar na",part2:"comhartha\xED at\xE1 ar f\xE1il",part3:"F\xE1g folamh chun",part4:"a \xFAs\xE1id ina ionad."},name:"Ainm comhad ceangalt\xE1n athainmnithe"},resetToSampleCustomTokens:{message:"An bhfuil t\xFA cinnte gur mhaith leat na comhartha\xED saincheaptha a athshocr\xFA chuig na comhartha\xED saincheaptha samplacha? Caillfear do athruithe.",title:"Athshocraigh chuig comhartha\xED saincheaptha samplacha"},shouldConvertPastedImagesToJpeg:{description:"Cib\xE9 an gcaithfear \xEDomh\xE1nna greamaithe a thiont\xFA go JPEG. Baineann seo leis nuair a ghreamaitear \xE1bhair \xEDomh\xE1 PNG \xF3n ghearrt\xE1isce go d\xEDreach. Go t\xEDp\xFAl, chun gr\xEAnghrafa\xED a ghreamadh.",name:"An gcaithfear \xEDomh\xE1nna greamaithe a thiont\xFA go JPEG"},shouldDeleteOrphanAttachments:{description:"M\xE1 t\xE1 s\xE9 cumasaithe, nuair a scriostar an n\xF3ta, scriostar a cheangalt\xE1in d\xEDlleachta freisin.",name:"An gcaithfear ceangalt\xE1in d\xEDlleachta a scriosadh"},shouldRenameAttachmentFiles:{description:{part1:"M\xE1 t\xE1 s\xE9 cumasaithe, nuair a athainmn\xEDtear n\xF3 a aistr\xEDtear n\xF3ta, athainmneofar a chomhaid ceangalt\xE1n de r\xE9ir an",part2:"socraithe."},name:"An gcaithfear comhaid ceangalt\xE1n a athainmni\xFA"},shouldRenameAttachmentFolders:{description:"Cib\xE9 an gcaithfear fhillte\xE1in ceangalt\xE1n a athainmni\xFA nuair a athainmn\xEDtear n\xF3 a aistr\xEDtear n\xF3ta.",name:"An gcaithfear fhillte\xE1in ceangalt\xE1n a athainmni\xFA"},shouldRenameCollectedAttachments:{description:{part1:"M\xE1 t\xE1 s\xE9 cumasaithe, athainmneofar ceangalt\xE1in a phr\xF3ise\xE1ladh tr\xED",part2:"Bailigh ceangalt\xE1in",part3:"orduithe de r\xE9ir an",part4:"socraithe."},name:"An gcaithfear ceangalt\xE1in bailithe a athainmni\xFA"},specialCharacters:{description:{part1:"Carachtair speisialta i bhfillte\xE1n ceangalt\xE1n agus ainm comhaid le cur in ionad n\xF3 a bhaint.",part2:"F\xE1g b\xE1n chun carachtair speisialta a chaomhn\xFA."},name:"Carachtair speisialta"},specialCharactersReplacement:{description:{part1:"Teaghr\xE1n ionada\xEDochta do charachtair speisialta i bhfillte\xE1n ceangalt\xE1n agus ainm comhaid.",part2:"F\xE1g b\xE1n chun carachtair speisialta a bhaint."},name:"Ionad\xFA carachtar speisialta"},timeoutInSeconds:{description:{part1:"An t-am amach i soicind\xED do gach oibr\xEDocht.",part2:"M\xE1 t\xE1",part3:"socraithe, t\xE1 t-am amach fhorghn\xEDomhaithe oibr\xEDochta\xED d\xEDchumasaithe."},name:"T-am amach i soicind\xED"},treatAsAttachmentExtensions:{description:{part1:"D\xE9ile\xE1il le comhaid leis na s\xEDnt\xED seo mar cheangalt\xE1in.",part2:"De r\xE9ir r\xE9amhshocraithe, n\xED dh\xE9antar",part3:"agus",part4:"comhaid nasctha a thabhairt mar cheangalt\xE1in agus n\xED aistr\xEDtear iad leis an n\xF3ta.",part5:"Is f\xE9idir leat s\xEDnt\xED saincheaptha a chur leis, m.sh.",part6:", chun an t-iompar seo a sh\xE1r\xFA."},name:"D\xE9ile\xE1il mar sh\xEDnt\xED ceangalt\xE1n"}},promptWithPreviewModal:{previewModal:{title:"R\xE9amhamharc comhad ceangalt\xE1in '{{fullFileName}}'"},title:"Sol\xE1thair luach don chomhartha cuir faoi deara"},regularExpression:"/slonn rialta/"};var th={attachmentCollector:{confirm:{part1:"\u05D4\u05D0\u05DD \u05D1\u05E8\u05E6\u05D5\u05E0\u05DA \u05DC\u05D0\u05E1\u05D5\u05E3 \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05DC\u05DB\u05DC \u05D4\u05D4\u05E2\u05E8\u05D5\u05EA \u05D1\u05EA\u05D9\u05E7\u05D9\u05D5\u05EA \u05D1\u05D0\u05D5\u05E4\u05DF \u05E8\u05E7\u05D5\u05E8\u05E1\u05D9\u05D1\u05D9?",part2:"\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D1\u05D8\u05DC \u05E4\u05E2\u05D5\u05DC\u05D4 \u05D6\u05D5."},progressBar:{message:"\u05D0\u05D5\u05E1\u05E3 \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD {{iterationStr}} - '{{noteFilePath}}'.",title:"\u05D0\u05D5\u05E1\u05E3 \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD..."}},buttons:{copy:"\u05D4\u05E2\u05EA\u05E7",move:"\u05D4\u05E2\u05D1\u05E8",previewAttachmentFile:"\u05EA\u05E6\u05D5\u05D2\u05D4 \u05DE\u05E7\u05D3\u05D9\u05DE\u05D4 \u05E9\u05DC \u05E7\u05D5\u05D1\u05E5 \u05DE\u05E6\u05D5\u05E8\u05E3",skip:"\u05D3\u05DC\u05D2"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"\u05E7\u05D5\u05D1\u05E5 \u05DE\u05E6\u05D5\u05E8\u05E3",part2:"\u05DE\u05E9\u05D5\u05DE\u05E9 \u05E2\u05DC \u05D9\u05D3\u05D9 \u05DE\u05E1\u05E4\u05E8 \u05E8\u05E9\u05D9\u05DE\u05D5\u05EA."},heading:"\u05D0\u05D9\u05E1\u05D5\u05E3 \u05E7\u05D5\u05D1\u05E5 \u05DE\u05E6\u05D5\u05E8\u05E3 \u05D4\u05DE\u05E9\u05D5\u05DE\u05E9 \u05E2\u05DC \u05D9\u05D3\u05D9 \u05DE\u05E1\u05E4\u05E8 \u05E8\u05E9\u05D9\u05DE\u05D5\u05EA",shouldUseSameActionForOtherProblematicAttachmentsToggle:"\u05D9\u05E9 \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05D0\u05D5\u05EA\u05D4 \u05E4\u05E2\u05D5\u05DC\u05D4 \u05E2\u05D1\u05D5\u05E8 \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D1\u05E2\u05D9\u05D9\u05EA\u05D9\u05D9\u05DD \u05D0\u05D7\u05E8\u05D9\u05DD"},commands:{collectAttachmentsCurrentFolder:"\u05D0\u05E1\u05D5\u05E3 \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D1\u05EA\u05D9\u05E7\u05D9\u05D9\u05D4 \u05D4\u05E0\u05D5\u05DB\u05D7\u05D9\u05EA",collectAttachmentsCurrentNote:"\u05D0\u05E1\u05D5\u05E3 \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D1\u05E8\u05E9\u05D9\u05DE\u05D4 \u05D4\u05E0\u05D5\u05DB\u05D7\u05D9\u05EA",collectAttachmentsEntireVault:"\u05D0\u05E1\u05D5\u05E3 \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D1\u05DB\u05DC \u05D4\u05DB\u05E1\u05E4\u05EA"},menuItems:{collectAttachmentsInFile:"\u05D0\u05D9\u05E1\u05D5\u05E3 \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D1\u05E7\u05D5\u05D1\u05E5",collectAttachmentsInFiles:"\u05D0\u05D9\u05E1\u05D5\u05E3 \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D1\u05E7\u05D1\u05E6\u05D9\u05DD"},notice:{collectingAttachments:"\u05D0\u05D5\u05E1\u05E3 \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05E2\u05D1\u05D5\u05E8 '{{noteFilePath}}'",collectingAttachmentsCancelled:"\u05D0\u05D9\u05E1\u05D5\u05E3 \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D1\u05D5\u05D8\u05DC. \u05E8\u05D0\u05D4 \u05E7\u05D5\u05E0\u05E1\u05D5\u05DC \u05DC\u05E4\u05E8\u05D8\u05D9\u05DD.",generatedAttachmentFileNameIsInvalid:{part1:`\u05E9\u05DD \u05E7\u05D5\u05D1\u05E5 \u05DE\u05E6\u05D5\u05E8\u05E3 \u05E9\u05E0\u05D5\u05E6\u05E8 '{{path}}' \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3.
|
|
493
|
+
{{validationMessage}}
|
|
494
|
+
\u05D1\u05D3\u05D5\u05E7 \u05D0\u05EA`,part2:"\u05D4\u05D4\u05D2\u05D3\u05E8\u05D4 \u05E9\u05DC\u05DA."},notePathIsIgnored:"\u05E0\u05EA\u05D9\u05D1 \u05E8\u05E9\u05D9\u05DE\u05D4 \u05DE\u05EA\u05E2\u05DC\u05DD"},obsidianDevUtils:{buttons:{cancel:"\u05D1\u05D9\u05D8\u05D5\u05DC",ok:"\u05D0\u05D9\u05E9\u05D5\u05E8"},dataview:{itemsPerPage:"\u05E4\u05E8\u05D9\u05D8\u05D9\u05DD \u05DC\u05E2\u05DE\u05D5\u05D3:",jumpToPage:"\u05E7\u05E4\u05D5\u05E5 \u05DC\u05E2\u05DE\u05D5\u05D3:"},notices:{attachmentIsStillUsed:"\u05E7\u05D1\u05E5 \u05DE\u05E6\u05D5\u05E8\u05E3 {{attachmentPath}} \u05E2\u05D3\u05D9\u05D9\u05DF \u05DE\u05E9\u05D5\u05DE\u05E9 \u05E2\u05DC \u05D9\u05D3\u05D9 \u05E8\u05E9\u05D9\u05DE\u05D5\u05EA \u05D0\u05D7\u05E8\u05D5\u05EA. \u05D4\u05D5\u05D0 \u05DC\u05D0 \u05D9\u05DE\u05D7\u05E7.",unhandledError:"\u05D0\u05D9\u05E8\u05E2\u05D4 \u05E9\u05D2\u05D9\u05D0\u05D4 \u05DC\u05D0 \u05DE\u05D8\u05D5\u05E4\u05DC\u05EA. \u05D0\u05E0\u05D0 \u05D1\u05D3\u05D5\u05E7 \u05D0\u05EA \u05D4\u05E7\u05D5\u05E0\u05E1\u05D5\u05DC \u05DC\u05DE\u05D9\u05D3\u05E2 \u05E0\u05D5\u05E1\u05E3."}},pluginSettings:{attachmentRenameMode:{all:{description:"\u05DB\u05DC \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD \u05D9\u05E7\u05D1\u05DC\u05D5 \u05E9\u05DE\u05D5\u05EA \u05D7\u05D3\u05E9\u05D9\u05DD.",displayText:"\u05D4\u05DB\u05DC"},none:{description:"\u05D4\u05E9\u05DE\u05D5\u05EA \u05E9\u05DC\u05D4\u05DD \u05E0\u05E9\u05DE\u05E8\u05D9\u05DD.",displayText:"\u05DB\u05DC\u05D5\u05DD"},onlyPastedImages:{description:"\u05E8\u05E7 \u05EA\u05DE\u05D5\u05E0\u05D5\u05EA \u05E9\u05D4\u05D5\u05D3\u05D1\u05E7\u05D5 \u05D9\u05E7\u05D1\u05DC\u05D5 \u05E9\u05DE\u05D5\u05EA \u05D7\u05D3\u05E9\u05D9\u05DD. \u05D7\u05DC \u05E8\u05E7 \u05DB\u05D0\u05E9\u05E8 \u05EA\u05D5\u05DB\u05DF \u05EA\u05DE\u05D5\u05E0\u05EA PNG \u05DE\u05D5\u05D3\u05D1\u05E7 \u05D9\u05E9\u05D9\u05E8\u05D5\u05EA \u05DE\u05D4\u05DC\u05D5\u05D7. \u05D1\u05D3\u05E8\u05DA \u05DB\u05DC\u05DC, \u05DC\u05D4\u05D3\u05D1\u05E7\u05EA \u05E6\u05D9\u05DC\u05D5\u05DE\u05D9 \u05DE\u05E1\u05DA.",displayText:"\u05E8\u05E7 \u05EA\u05DE\u05D5\u05E0\u05D5\u05EA \u05E9\u05D4\u05D5\u05D3\u05D1\u05E7\u05D5"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"\u05D1\u05D8\u05DC \u05D0\u05EA \u05D0\u05D9\u05E1\u05D5\u05E3 \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD \u05D4\u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD.",displayText:"\u05D1\u05D9\u05D8\u05D5\u05DC"},copy:{description:"\u05D4\u05E2\u05EA\u05E7 \u05D0\u05EA \u05D4\u05E7\u05D5\u05D1\u05E5 \u05D4\u05DE\u05E6\u05D5\u05E8\u05E3 \u05DC\u05DE\u05D9\u05E7\u05D5\u05DD \u05D4\u05D7\u05D3\u05E9.",displayText:"\u05D4\u05E2\u05EA\u05E7\u05D4"},move:{description:"\u05D4\u05E2\u05D1\u05E8 \u05D0\u05EA \u05D4\u05E7\u05D5\u05D1\u05E5 \u05D4\u05DE\u05E6\u05D5\u05E8\u05E3 \u05DC\u05DE\u05D9\u05E7\u05D5\u05DD \u05D4\u05D7\u05D3\u05E9.",displayText:"\u05D4\u05E2\u05D1\u05E8\u05D4"},prompt:{description:"\u05D4\u05E0\u05D7\u05D4 \u05D0\u05EA \u05D4\u05DE\u05E9\u05EA\u05DE\u05E9 \u05DC\u05D1\u05D7\u05D5\u05E8 \u05D0\u05EA \u05D4\u05E4\u05E2\u05D5\u05DC\u05D4.",displayText:"\u05D4\u05E0\u05D7\u05D9\u05D4"},skip:{description:"\u05D3\u05DC\u05D2 \u05E2\u05DC \u05D4\u05E7\u05D5\u05D1\u05E5 \u05D4\u05DE\u05E6\u05D5\u05E8\u05E3 \u05D5\u05D4\u05DE\u05E9\u05DA \u05DC\u05D1\u05D0.",displayText:"\u05D3\u05D9\u05DC\u05D5\u05D2"}},defaultImageSizeDimension:{height:"\u05D2\u05D5\u05D1\u05D4",width:"\u05E8\u05D5\u05D7\u05D1"},emptyAttachmentFolderBehavior:{delete:{description:"\u05D9\u05DE\u05D7\u05E7 \u05D0\u05EA \u05EA\u05D9\u05E7\u05D9\u05D9\u05EA \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD \u05D4\u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D4\u05E8\u05D9\u05E7\u05D4.",displayText:"\u05DE\u05D7\u05D9\u05E7\u05D4"},deleteWithEmptyParents:{description:"\u05D9\u05DE\u05D7\u05E7 \u05D0\u05EA \u05EA\u05D9\u05E7\u05D9\u05D9\u05EA \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD \u05D4\u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D4\u05E8\u05D9\u05E7\u05D4 \u05D5\u05D0\u05EA \u05EA\u05D9\u05E7\u05D9\u05D5\u05EA \u05D4\u05D0\u05D1 \u05D4\u05E8\u05D9\u05E7\u05D5\u05EA \u05E9\u05DC\u05D4.",displayText:"\u05DE\u05D7\u05D9\u05E7\u05D4 \u05E2\u05DD \u05D0\u05D1\u05D5\u05EA \u05E8\u05D9\u05E7\u05D9\u05DD"},keep:{description:"\u05D9\u05E9\u05DE\u05D5\u05E8 \u05D0\u05EA \u05EA\u05D9\u05E7\u05D9\u05D9\u05EA \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD \u05D4\u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D4\u05E8\u05D9\u05E7\u05D4.",displayText:"\u05E9\u05DE\u05D9\u05E8\u05D4"}}},pluginSettingsManager:{customToken:{codeComment:`// \u05D8\u05D5\u05E7\u05E0\u05D9\u05DD \u05DE\u05D5\u05EA\u05D0\u05DE\u05D9\u05DD \u05D0\u05D9\u05E9\u05D9\u05D9\u05DD \u05D4\u05D5\u05E2\u05D1\u05E8\u05D5 \u05DC\u05D4\u05E2\u05E8\u05D4 \u05DE\u05DB\u05D9\u05D5\u05D5\u05DF \u05E9\u05D4\u05DD \u05E6\u05E8\u05D9\u05DB\u05D9\u05DD \u05DC\u05D4\u05D9\u05D5\u05EA \u05DE\u05E2\u05D5\u05D3\u05DB\u05E0\u05D9\u05DD \u05DC\u05E4\u05D5\u05E8\u05DE\u05D8 \u05D4\u05D7\u05D3\u05E9 \u05E9\u05D4\u05D5\u05E6\u05D2 \u05D1\u05D2\u05E8\u05E1\u05EA \u05EA\u05D5\u05E1\u05E3 9.0.0.
|
|
495
|
+
// \u05E4\u05E0\u05D4 \u05DC\u05EA\u05D9\u05E2\u05D5\u05D3 (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) \u05DC\u05DE\u05D9\u05D3\u05E2 \u05E0\u05D5\u05E1\u05E3.`,deprecated:{part1:"\u05D1\u05D2\u05E8\u05E1\u05EA \u05EA\u05D5\u05E1\u05E3 9.0.0, \u05D4\u05E4\u05D5\u05E8\u05DE\u05D8 \u05E9\u05DC \u05E8\u05D9\u05E9\u05D5\u05DD \u05D8\u05D5\u05E7\u05E0\u05D9\u05DD \u05DE\u05D5\u05EA\u05D0\u05DE\u05D9\u05DD \u05D0\u05D9\u05E9\u05D9\u05D9\u05DD \u05D4\u05E9\u05EA\u05E0\u05D4. \u05D0\u05E0\u05D0 \u05E2\u05D3\u05DB\u05DF \u05D0\u05EA \u05D4\u05D8\u05D5\u05E7\u05E0\u05D9\u05DD \u05E9\u05DC\u05DA \u05D1\u05D4\u05EA\u05D0\u05DD. \u05E4\u05E0\u05D4 \u05DC",part2:"\u05EA\u05D9\u05E2\u05D5\u05D3",part3:"\u05DC\u05DE\u05D9\u05D3\u05E2 \u05E0\u05D5\u05E1\u05E3"}},legacyRenameAttachmentsToLowerCase:{part1:"\u05D1\u05D2\u05E8\u05E1\u05EA \u05EA\u05D5\u05E1\u05E3 9.0.0, \u05D4\u05D4\u05D2\u05D3\u05E8\u05D4",part2:"\u05D4\u05D9\u05D0 \u05DE\u05D9\u05D5\u05E9\u05E0\u05EA. \u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1",part3:"\u05E4\u05D5\u05E8\u05DE\u05D8 \u05D1\u05DE\u05E7\u05D5\u05DD. \u05E8\u05D0\u05D4",part4:"\u05EA\u05D9\u05E2\u05D5\u05D3",part5:"\u05DC\u05DE\u05D9\u05D3\u05E2 \u05E0\u05D5\u05E1\u05E3"},markdownUrlFormat:{deprecated:{part1:"\u05D9\u05E9 \u05DC\u05DA \u05E2\u05E8\u05DA \u05E4\u05D5\u05D8\u05E0\u05E6\u05D9\u05D0\u05DC\u05D9\u05EA \u05E9\u05D2\u05D5\u05D9 \u05E2\u05D1\u05D5\u05E8",part2:"\u05D4\u05E4\u05D5\u05E8\u05DE\u05D8. \u05D0\u05E0\u05D0 \u05E4\u05E0\u05D4 \u05DC",part3:"\u05EA\u05D9\u05E2\u05D5\u05D3",part4:"\u05DC\u05DE\u05D9\u05D3\u05E2 \u05E0\u05D5\u05E1\u05E3",part5:"\u05D4\u05D5\u05D3\u05E2\u05D4 \u05D6\u05D5 \u05DC\u05D0 \u05EA\u05D5\u05E6\u05D2 \u05E9\u05D5\u05D1."}},specialCharacters:{part1:"\u05D1\u05D2\u05E8\u05E1\u05EA \u05EA\u05D5\u05E1\u05E3 9.16.0, \u05E2\u05E8\u05DA",part2:"\u05D4\u05D4\u05D2\u05D3\u05E8\u05D4 \u05D1\u05E8\u05D9\u05E8\u05EA \u05D4\u05DE\u05D7\u05D3\u05DC \u05D4\u05E9\u05EA\u05E0\u05D4. \u05E2\u05E8\u05DA \u05D4\u05D4\u05D2\u05D3\u05E8\u05D4 \u05E9\u05DC\u05DA \u05E2\u05D5\u05D3\u05DB\u05DF \u05DC\u05E2\u05E8\u05DA \u05D1\u05E8\u05D9\u05E8\u05EA \u05D4\u05DE\u05D7\u05D3\u05DC \u05D4\u05D7\u05D3\u05E9."},validation:{defaultImageSizeMustBePercentageOrPixels:"\u05D2\u05D5\u05D3\u05DC \u05D4\u05EA\u05DE\u05D5\u05E0\u05D4 \u05D1\u05E8\u05D9\u05E8\u05EA \u05D4\u05DE\u05D7\u05D3\u05DC \u05D7\u05D9\u05D9\u05D1 \u05DC\u05D4\u05D9\u05D5\u05EA \u05D1\u05E4\u05D9\u05E7\u05E1\u05DC\u05D9\u05DD \u05D0\u05D5 \u05D1\u05D0\u05D7\u05D5\u05D6\u05D9\u05DD",invalidCustomTokensCode:"\u05E7\u05D5\u05D3 \u05D8\u05D5\u05E7\u05E0\u05D9\u05DD \u05DE\u05D5\u05EA\u05D0\u05DE\u05D9\u05DD \u05D0\u05D9\u05E9\u05D9\u05D9\u05DD \u05DC\u05D0 \u05EA\u05E7\u05E3",invalidRegularExpression:"\u05D1\u05D9\u05D8\u05D5\u05D9 \u05E8\u05D2\u05D5\u05DC\u05E8\u05D9 \u05DC\u05D0 \u05EA\u05E7\u05E3 {{regExp}}",specialCharactersMustNotContainSlash:"\u05EA\u05D5\u05D5\u05D9\u05DD \u05DE\u05D9\u05D5\u05D7\u05D3\u05D9\u05DD \u05DC\u05D0 \u05D9\u05DB\u05D5\u05DC\u05D9\u05DD \u05DC\u05D4\u05DB\u05D9\u05DC /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"\u05D4\u05D7\u05DC\u05E4\u05EA \u05EA\u05D5\u05D5\u05D9\u05DD \u05DE\u05D9\u05D5\u05D7\u05D3\u05D9\u05DD \u05DC\u05D0 \u05D9\u05DB\u05D5\u05DC\u05D4 \u05DC\u05D4\u05DB\u05D9\u05DC \u05EA\u05D5\u05D5\u05D9\u05DD \u05DC\u05D0 \u05EA\u05E7\u05E4\u05D9\u05DD \u05E9\u05DC \u05E0\u05EA\u05D9\u05D1 \u05E9\u05DD \u05E7\u05D5\u05D1\u05E5."},version:{part1:"\u05E7\u05D5\u05D1\u05E5 \u05D4\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05E9\u05DC\u05DA ",part2:"\u05D9\u05E9 \u05D2\u05E8\u05E1\u05D4",part3:"\u05E9\u05D4\u05D9\u05D0 \u05D7\u05D3\u05E9\u05D4 \u05D9\u05D5\u05EA\u05E8 \u05DE\u05D2\u05E8\u05E1\u05EA \u05D4\u05EA\u05D5\u05E1\u05E3 \u05D4\u05E0\u05D5\u05DB\u05D7\u05D9\u05EA",part4:"\u05D4\u05EA\u05D5\u05E1\u05E3 \u05E2\u05DC\u05D5\u05DC \u05DC\u05D0 \u05DC\u05E2\u05D1\u05D5\u05D3 \u05DB\u05E6\u05E4\u05D5\u05D9. \u05D0\u05E0\u05D0 \u05E2\u05D3\u05DB\u05DF \u05D0\u05EA \u05D4\u05EA\u05D5\u05E1\u05E3 \u05DC\u05D2\u05E8\u05E1\u05D4 \u05D4\u05D0\u05D7\u05E8\u05D5\u05E0\u05D4 \u05D0\u05D5 \u05D5\u05D5\u05D3\u05D0 \u05E9\u05D4\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05E0\u05DB\u05D5\u05E0\u05D5\u05EA."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"\u05DB\u05D0\u05E9\u05E8 \u05DE\u05E6\u05E8\u05E4\u05D9\u05DD \u05E7\u05D1\u05E6\u05D9\u05DD:"},name:"\u05DE\u05E6\u05D1 \u05E9\u05D9\u05E0\u05D5\u05D9 \u05E9\u05DD \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"\u05DB\u05D0\u05E9\u05E8 \u05D4\u05E7\u05D5\u05D1\u05E5 \u05D4\u05DE\u05E6\u05D5\u05E8\u05E3 \u05E9\u05E0\u05D0\u05E1\u05E3 \u05DE\u05E9\u05DE\u05E9 \u05DE\u05E1\u05E4\u05E8 \u05E8\u05E9\u05D9\u05DE\u05D5\u05EA:"},name:"\u05DE\u05E6\u05D1 \u05D0\u05D9\u05E1\u05D5\u05E3 \u05E7\u05D5\u05D1\u05E5 \u05DE\u05E6\u05D5\u05E8\u05E3 \u05D4\u05DE\u05E9\u05DE\u05E9 \u05DE\u05E1\u05E4\u05E8 \u05E8\u05E9\u05D9\u05DE\u05D5\u05EA"},collectedAttachmentFileName:{description:{part1:"\u05E8\u05D0\u05D4",part2:"\u05D8\u05D5\u05E7\u05E0\u05D9\u05DD \u05D6\u05DE\u05D9\u05E0\u05D9\u05DD",part3:"\u05D4\u05E9\u05D0\u05E8 \u05E8\u05D9\u05E7 \u05DC\u05E9\u05D9\u05DE\u05D5\u05E9 \u05D1\u05D4\u05D2\u05D3\u05E8\u05EA",part4:"\u05D1\u05DE\u05E7\u05D5\u05DD."},name:"\u05E9\u05DD \u05E7\u05D5\u05D1\u05E5 \u05DE\u05E6\u05D5\u05E8\u05E3 \u05E9\u05E0\u05D0\u05E1\u05E3"},customTokens:{description:{part1:"\u05D8\u05D5\u05E7\u05E0\u05D9\u05DD \u05DE\u05D5\u05EA\u05D0\u05DE\u05D9\u05DD \u05D0\u05D9\u05E9\u05D9\u05D9\u05DD \u05DC\u05E9\u05D9\u05DE\u05D5\u05E9.",part2:"\u05E8\u05D0\u05D4",part3:"\u05EA\u05D9\u05E2\u05D5\u05D3",part4:"\u05DC\u05DE\u05D9\u05D3\u05E2 \u05E0\u05D5\u05E1\u05E3.",part5:"\u26A0\uFE0F \u05D8\u05D5\u05E7\u05E0\u05D9\u05DD \u05DE\u05D5\u05EA\u05D0\u05DE\u05D9\u05DD \u05D0\u05D9\u05E9\u05D9\u05D9\u05DD \u05D9\u05DB\u05D5\u05DC\u05D9\u05DD \u05DC\u05D4\u05D9\u05D5\u05EA \u05E7\u05D5\u05D3 JavaScript \u05E9\u05E8\u05D9\u05E8\u05D5\u05EA\u05D9. \u05D0\u05DD \u05D4\u05DD \u05DB\u05EA\u05D5\u05D1\u05D9\u05DD \u05D1\u05E6\u05D5\u05E8\u05D4 \u05D2\u05E8\u05D5\u05E2\u05D4, \u05D4\u05DD \u05E2\u05DC\u05D5\u05DC\u05D9\u05DD \u05DC\u05D2\u05E8\u05D5\u05DD \u05DC\u05D0\u05D5\u05D1\u05D3\u05DF \u05E0\u05EA\u05D5\u05E0\u05D9\u05DD. \u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05D4\u05DD \u05E2\u05DC \u05D0\u05D7\u05E8\u05D9\u05D5\u05EA\u05DA."},name:"\u05D8\u05D5\u05E7\u05E0\u05D9\u05DD \u05DE\u05D5\u05EA\u05D0\u05DE\u05D9\u05DD \u05D0\u05D9\u05E9\u05D9\u05D9\u05DD"},defaultImageSize:{description:{part1:"\u05D2\u05D5\u05D3\u05DC \u05D4\u05EA\u05DE\u05D5\u05E0\u05D4 \u05D1\u05E8\u05D9\u05E8\u05EA \u05D4\u05DE\u05D7\u05D3\u05DC.",part2:"\u05E0\u05D9\u05EA\u05DF \u05DC\u05E6\u05D9\u05D9\u05DF \u05D1\u05E4\u05D9\u05E7\u05E1\u05DC\u05D9\u05DD",part3:"\u05D0\u05D5 \u05D1\u05D0\u05D7\u05D5\u05D6 \u05DE\u05D2\u05D5\u05D3\u05DC \u05D4\u05EA\u05DE\u05D5\u05E0\u05D4 \u05D4\u05DE\u05DC\u05D0",part4:"\u05D4\u05E9\u05D0\u05E8 \u05E8\u05D9\u05E7 \u05DB\u05D3\u05D9 \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05D2\u05D5\u05D3\u05DC \u05D4\u05DE\u05E7\u05D5\u05E8\u05D9."},name:"\u05D2\u05D5\u05D3\u05DC \u05D4\u05EA\u05DE\u05D5\u05E0\u05D4 \u05D1\u05E8\u05D9\u05E8\u05EA \u05D4\u05DE\u05D7\u05D3\u05DC"},duplicateNameSeparator:{description:{part1:"\u05DB\u05D0\u05E9\u05E8 \u05D0\u05EA\u05D4 \u05DE\u05D3\u05D1\u05D9\u05E7/\u05D2\u05D5\u05E8\u05E8 \u05E7\u05D5\u05D1\u05E5 \u05E2\u05DD \u05D0\u05D5\u05EA\u05D5 \u05E9\u05DD \u05DB\u05DE\u05D5 \u05E7\u05D5\u05D1\u05E5 \u05E7\u05D9\u05D9\u05DD, \u05D4\u05DE\u05E4\u05E8\u05D9\u05D3 \u05D4\u05D6\u05D4 \u05D9\u05EA\u05D5\u05D5\u05E1\u05E3 \u05DC\u05E9\u05DD \u05D4\u05E7\u05D5\u05D1\u05E5.",part2:"\u05DC\u05D3\u05D5\u05D2\u05DE\u05D4, \u05DB\u05D0\u05E9\u05E8 \u05D0\u05EA\u05D4 \u05D2\u05D5\u05E8\u05E8 \u05E7\u05D5\u05D1\u05E5",part3:", \u05D4\u05D5\u05D0 \u05D9\u05E7\u05D1\u05DC \u05E9\u05DD \u05D7\u05D3\u05E9 \u05DC",part4:", \u05D5\u05DB\u05D5, \u05DC\u05E7\u05D1\u05DC\u05EA \u05D4\u05E9\u05DD \u05D4\u05E8\u05D0\u05E9\u05D5\u05DF \u05D4\u05D6\u05DE\u05D9\u05DF."},name:"\u05DE\u05E4\u05E8\u05D9\u05D3 \u05E9\u05DE\u05D5\u05EA \u05DB\u05E4\u05D5\u05DC\u05D9\u05DD"},emptyAttachmentFolderBehavior:{description:{part1:"\u05DB\u05D0\u05E9\u05E8 \u05EA\u05D9\u05E7\u05D9\u05D9\u05EA \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD \u05D4\u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D4\u05D5\u05E4\u05DB\u05EA \u05E8\u05D9\u05E7\u05D4:"},name:"\u05D4\u05EA\u05E0\u05D4\u05D2\u05D5\u05EA \u05EA\u05D9\u05E7\u05D9\u05D9\u05EA \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05E8\u05D9\u05E7\u05D4"},excludePaths:{description:{part1:"\u05D4\u05D3\u05E8 \u05E8\u05E9\u05D9\u05DE\u05D5\u05EA \u05DE\u05D4\u05E0\u05EA\u05D9\u05D1\u05D9\u05DD \u05D4\u05D1\u05D0\u05D9\u05DD.",part2:"\u05D4\u05DB\u05E0\u05E1 \u05DB\u05DC \u05E0\u05EA\u05D9\u05D1 \u05D1\u05E9\u05D5\u05E8\u05D4 \u05D7\u05D3\u05E9\u05D4.",part3:"\u05D0\u05EA\u05D4 \u05D9\u05DB\u05D5\u05DC \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA \u05E0\u05EA\u05D9\u05D1 \u05D0\u05D5",part4:"\u05D0\u05DD \u05D4\u05D4\u05D2\u05D3\u05E8\u05D4 \u05E8\u05D9\u05E7\u05D4, \u05D0\u05E3 \u05E8\u05E9\u05D9\u05DE\u05D4 \u05DC\u05D0 \u05DE\u05D5\u05D3\u05E8\u05EA."},name:"\u05D4\u05D3\u05E8 \u05E0\u05EA\u05D9\u05D1\u05D9\u05DD"},excludePathsFromAttachmentCollecting:{description:{part1:"\u05D4\u05D3\u05E8 \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05DE\u05D4\u05E0\u05EA\u05D9\u05D1\u05D9\u05DD \u05D4\u05D1\u05D0\u05D9\u05DD \u05DB\u05D0\u05E9\u05E8",part2:"\u05D0\u05E1\u05D5\u05E3 \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD",part3:"\u05D4\u05E4\u05E7\u05D5\u05D3\u05D4 \u05DE\u05D1\u05D5\u05E6\u05E2\u05EA.",part4:"\u05D4\u05DB\u05E0\u05E1 \u05DB\u05DC \u05E0\u05EA\u05D9\u05D1 \u05D1\u05E9\u05D5\u05E8\u05D4 \u05D7\u05D3\u05E9\u05D4.",part5:"\u05D0\u05EA\u05D4 \u05D9\u05DB\u05D5\u05DC \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA \u05E0\u05EA\u05D9\u05D1 \u05D0\u05D5",part6:"\u05D0\u05DD \u05D4\u05D4\u05D2\u05D3\u05E8\u05D4 \u05E8\u05D9\u05E7\u05D4, \u05D0\u05E3 \u05E0\u05EA\u05D9\u05D1 \u05DC\u05D0 \u05DE\u05D5\u05D3\u05E8 \u05DE\u05D0\u05D9\u05E1\u05D5\u05E3 \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD."},name:"\u05D4\u05D3\u05E8 \u05E0\u05EA\u05D9\u05D1\u05D9\u05DD \u05DE\u05D0\u05D9\u05E1\u05D5\u05E3 \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD"},generatedAttachmentFileName:{description:{part1:"\u05E8\u05D0\u05D4",part2:"\u05D8\u05D5\u05E7\u05E0\u05D9\u05DD \u05D6\u05DE\u05D9\u05E0\u05D9\u05DD"},name:"\u05E9\u05DD \u05E7\u05D5\u05D1\u05E5 \u05DE\u05E6\u05D5\u05E8\u05E3 \u05E9\u05E0\u05D5\u05E6\u05E8"},includePaths:{description:{part1:"\u05DB\u05DC\u05D5\u05DC \u05E8\u05E9\u05D9\u05DE\u05D5\u05EA \u05DE\u05D4\u05E0\u05EA\u05D9\u05D1\u05D9\u05DD \u05D4\u05D1\u05D0\u05D9\u05DD.",part2:"\u05D4\u05DB\u05E0\u05E1 \u05DB\u05DC \u05E0\u05EA\u05D9\u05D1 \u05D1\u05E9\u05D5\u05E8\u05D4 \u05D7\u05D3\u05E9\u05D4.",part3:"\u05D0\u05EA\u05D4 \u05D9\u05DB\u05D5\u05DC \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA \u05E0\u05EA\u05D9\u05D1 \u05D0\u05D5",part4:"\u05D0\u05DD \u05D4\u05D4\u05D2\u05D3\u05E8\u05D4 \u05E8\u05D9\u05E7\u05D4, \u05DB\u05DC \u05D4\u05E8\u05E9\u05D9\u05DE\u05D5\u05EA \u05DB\u05DC\u05D5\u05DC\u05D5\u05EA."},name:"\u05DB\u05DC\u05D5\u05DC \u05E0\u05EA\u05D9\u05D1\u05D9\u05DD"},jpegQuality:{description:"\u05DB\u05DB\u05DC \u05E9\u05D4\u05D0\u05D9\u05DB\u05D5\u05EA \u05E7\u05D8\u05E0\u05D4 \u05D9\u05D5\u05EA\u05E8, \u05D9\u05D7\u05E1 \u05D4\u05D3\u05D7\u05D9\u05E1\u05D4 \u05D2\u05D3\u05D5\u05DC \u05D9\u05D5\u05EA\u05E8.",name:"\u05D0\u05D9\u05DB\u05D5\u05EA JPEG"},locationForNewAttachments:{description:{part1:"\u05D4\u05EA\u05D7\u05DC \u05E2\u05DD",part2:"\u05DC\u05E9\u05D9\u05DE\u05D5\u05E9 \u05D1\u05E0\u05EA\u05D9\u05D1 \u05D9\u05D7\u05E1\u05D9.",part3:"\u05E8\u05D0\u05D4",part4:"\u05D8\u05D5\u05E7\u05E0\u05D9\u05DD \u05D6\u05DE\u05D9\u05E0\u05D9\u05DD",part5:"\u05EA\u05D9\u05E7\u05D9\u05D5\u05EA \u05E0\u05E7\u05D5\u05D3\u05D4 \u05DB\u05DE\u05D5",part6:"\u05DC\u05D0 \u05DE\u05D5\u05DE\u05DC\u05E6\u05D5\u05EA, \u05DB\u05D9 Obsidian \u05DC\u05D0 \u05E2\u05D5\u05E7\u05D1 \u05D0\u05D7\u05E8\u05D9\u05D4\u05DF. \u05D9\u05D9\u05EA\u05DB\u05DF \u05E9\u05EA\u05E6\u05D8\u05E8\u05DA \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1",part7:"\u05EA\u05D5\u05E1\u05E3 \u05DC\u05E0\u05D9\u05D4\u05D5\u05DC \u05D0\u05D5\u05EA\u05DF."},name:"\u05DE\u05D9\u05E7\u05D5\u05DD \u05DC\u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D7\u05D3\u05E9\u05D9\u05DD"},markdownUrlFormat:{description:{part1:"\u05E4\u05D5\u05E8\u05DE\u05D8 \u05E2\u05D1\u05D5\u05E8 \u05D4-URL \u05E9\u05D9\u05D5\u05DB\u05E0\u05E1 \u05DC-Markdown.",part2:"\u05E8\u05D0\u05D4",part3:"\u05D8\u05D5\u05E7\u05E0\u05D9\u05DD \u05D6\u05DE\u05D9\u05E0\u05D9\u05DD",part4:"\u05D4\u05E9\u05D0\u05E8 \u05E8\u05D9\u05E7 \u05DC\u05E9\u05D9\u05DE\u05D5\u05E9 \u05D1\u05E4\u05D5\u05E8\u05DE\u05D8 \u05D1\u05E8\u05D9\u05E8\u05EA \u05D4\u05DE\u05D7\u05D3\u05DC."},name:"\u05E4\u05D5\u05E8\u05DE\u05D8 URL Markdown"},renameAttachmentsToLowerCase:"\u05E9\u05E0\u05D4 \u05E9\u05DE\u05D5\u05EA \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05DC\u05D0\u05D5\u05EA\u05D9\u05D5\u05EA \u05E7\u05D8\u05E0\u05D5\u05EA",renamedAttachmentFileName:{description:{part1:"\u05E8\u05D0\u05D4",part2:"\u05D8\u05D5\u05E7\u05E0\u05D9\u05DD \u05D6\u05DE\u05D9\u05E0\u05D9\u05DD",part3:"\u05D4\u05E9\u05D0\u05E8 \u05E8\u05D9\u05E7 \u05DC\u05E9\u05D9\u05DE\u05D5\u05E9 \u05D1\u05D4\u05D2\u05D3\u05E8\u05EA",part4:"\u05D1\u05DE\u05E7\u05D5\u05DD."},name:"\u05E9\u05DD \u05E7\u05D5\u05D1\u05E5 \u05DE\u05E6\u05D5\u05E8\u05E3 \u05E9\u05E9\u05DE\u05D5 \u05E9\u05D5\u05E0\u05D4"},resetToSampleCustomTokens:{message:"\u05D4\u05D0\u05DD \u05D0\u05EA\u05D4 \u05D1\u05D8\u05D5\u05D7 \u05E9\u05D1\u05E8\u05E6\u05D5\u05E0\u05DA \u05DC\u05D0\u05E4\u05E1 \u05D0\u05EA \u05D4\u05D8\u05D5\u05E7\u05E0\u05D9\u05DD \u05D4\u05DE\u05D5\u05EA\u05D0\u05DE\u05D9\u05DD \u05D0\u05D9\u05E9\u05D9\u05D9\u05DD \u05DC\u05D8\u05D5\u05E7\u05E0\u05D9\u05DD \u05D4\u05DE\u05D5\u05EA\u05D0\u05DE\u05D9\u05DD \u05D0\u05D9\u05E9\u05D9\u05D9\u05DD \u05DC\u05D3\u05D5\u05D2\u05DE\u05D4? \u05D4\u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD \u05E9\u05DC\u05DA \u05D9\u05D0\u05D1\u05D3\u05D5.",title:"\u05D0\u05E4\u05E1 \u05DC\u05D8\u05D5\u05E7\u05E0\u05D9\u05DD \u05DE\u05D5\u05EA\u05D0\u05DE\u05D9\u05DD \u05D0\u05D9\u05E9\u05D9\u05D9\u05DD \u05DC\u05D3\u05D5\u05D2\u05DE\u05D4"},shouldConvertPastedImagesToJpeg:{description:"\u05D4\u05D0\u05DD \u05DC\u05D4\u05DE\u05D9\u05E8 \u05EA\u05DE\u05D5\u05E0\u05D5\u05EA \u05E9\u05D4\u05D5\u05D3\u05D1\u05E7\u05D5 \u05DC-JPEG. \u05D7\u05DC \u05E8\u05E7 \u05DB\u05D0\u05E9\u05E8 \u05EA\u05D5\u05DB\u05DF \u05EA\u05DE\u05D5\u05E0\u05EA PNG \u05DE\u05D5\u05D3\u05D1\u05E7 \u05D9\u05E9\u05D9\u05E8\u05D5\u05EA \u05DE\u05D4\u05DC\u05D5\u05D7. \u05D1\u05D3\u05E8\u05DA \u05DB\u05DC\u05DC, \u05DC\u05D4\u05D3\u05D1\u05E7\u05EA \u05E6\u05D9\u05DC\u05D5\u05DE\u05D9 \u05DE\u05E1\u05DA.",name:"\u05D4\u05D0\u05DD \u05DC\u05D4\u05DE\u05D9\u05E8 \u05EA\u05DE\u05D5\u05E0\u05D5\u05EA \u05E9\u05D4\u05D5\u05D3\u05D1\u05E7\u05D5 \u05DC-JPEG"},shouldDeleteOrphanAttachments:{description:"\u05D0\u05DD \u05DE\u05D5\u05E4\u05E2\u05DC, \u05DB\u05D0\u05E9\u05E8 \u05D4\u05E8\u05E9\u05D9\u05DE\u05D4 \u05E0\u05DE\u05D7\u05E7\u05EA, \u05D4\u05E7\u05D1\u05E6\u05D9\u05DD \u05D4\u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D4\u05D9\u05EA\u05D5\u05DE\u05D9\u05DD \u05E9\u05DC\u05D4 \u05E0\u05DE\u05D7\u05E7\u05D9\u05DD \u05D2\u05DD \u05DB\u05DF.",name:"\u05D4\u05D0\u05DD \u05DC\u05DE\u05D7\u05D5\u05E7 \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D9\u05EA\u05D5\u05DE\u05D9\u05DD"},shouldRenameAttachmentFiles:{description:{part1:"\u05D0\u05DD \u05DE\u05D5\u05E4\u05E2\u05DC, \u05DB\u05D0\u05E9\u05E8 \u05E8\u05E9\u05D9\u05DE\u05D4 \u05DE\u05E7\u05D1\u05DC\u05EA \u05E9\u05DD \u05D7\u05D3\u05E9 \u05D0\u05D5 \u05DE\u05D5\u05E2\u05D1\u05E8\u05EA, \u05E7\u05D1\u05E6\u05D9 \u05D4\u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05E9\u05DC\u05D4 \u05D9\u05E7\u05D1\u05DC\u05D5 \u05E9\u05DE\u05D5\u05EA \u05D7\u05D3\u05E9\u05D9\u05DD \u05DC\u05E4\u05D9 \u05D4\u05D2\u05D3\u05E8\u05EA",part2:"."},name:"\u05D4\u05D0\u05DD \u05DC\u05E9\u05E0\u05D5\u05EA \u05E9\u05DE\u05D5\u05EA \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD"},shouldRenameAttachmentFolders:{description:"\u05D4\u05D0\u05DD \u05DC\u05E9\u05E0\u05D5\u05EA \u05E9\u05DE\u05D5\u05EA \u05EA\u05D9\u05E7\u05D9\u05D5\u05EA \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05DB\u05D0\u05E9\u05E8 \u05E8\u05E9\u05D9\u05DE\u05D4 \u05DE\u05E7\u05D1\u05DC\u05EA \u05E9\u05DD \u05D7\u05D3\u05E9 \u05D0\u05D5 \u05DE\u05D5\u05E2\u05D1\u05E8\u05EA.",name:"\u05D4\u05D0\u05DD \u05DC\u05E9\u05E0\u05D5\u05EA \u05E9\u05DE\u05D5\u05EA \u05EA\u05D9\u05E7\u05D9\u05D5\u05EA \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD"},shouldRenameCollectedAttachments:{description:{part1:"\u05D0\u05DD \u05DE\u05D5\u05E4\u05E2\u05DC, \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D4\u05DE\u05E2\u05D5\u05D1\u05D3\u05D9\u05DD \u05D3\u05E8\u05DA",part2:"\u05D0\u05E1\u05D5\u05E3 \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD",part3:"\u05E4\u05E7\u05D5\u05D3\u05D5\u05EA \u05D9\u05E7\u05D1\u05DC\u05D5 \u05E9\u05DE\u05D5\u05EA \u05D7\u05D3\u05E9\u05D9\u05DD \u05DC\u05E4\u05D9",part4:"\u05D4\u05D4\u05D2\u05D3\u05E8\u05D4."},name:"\u05D4\u05D0\u05DD \u05DC\u05E9\u05E0\u05D5\u05EA \u05E9\u05DE\u05D5\u05EA \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05E9\u05E0\u05D0\u05E1\u05E4\u05D5"},specialCharacters:{description:{part1:"\u05EA\u05D5\u05D5\u05D9\u05DD \u05DE\u05D9\u05D5\u05D7\u05D3\u05D9\u05DD \u05D1\u05EA\u05D9\u05E7\u05D9\u05D9\u05EA \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D5\u05E9\u05DD \u05E7\u05D5\u05D1\u05E5 \u05DC\u05D4\u05D7\u05DC\u05E4\u05D4 \u05D0\u05D5 \u05D4\u05E1\u05E8\u05D4.",part2:"\u05D4\u05E9\u05D0\u05E8 \u05E8\u05D9\u05E7 \u05DC\u05E9\u05D9\u05DE\u05D5\u05E8 \u05EA\u05D5\u05D5\u05D9\u05DD \u05DE\u05D9\u05D5\u05D7\u05D3\u05D9\u05DD."},name:"\u05EA\u05D5\u05D5\u05D9\u05DD \u05DE\u05D9\u05D5\u05D7\u05D3\u05D9\u05DD"},specialCharactersReplacement:{description:{part1:"\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA \u05D4\u05D7\u05DC\u05E4\u05D4 \u05E2\u05D1\u05D5\u05E8 \u05EA\u05D5\u05D5\u05D9\u05DD \u05DE\u05D9\u05D5\u05D7\u05D3\u05D9\u05DD \u05D1\u05EA\u05D9\u05E7\u05D9\u05D9\u05EA \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D5\u05E9\u05DD \u05E7\u05D5\u05D1\u05E5.",part2:"\u05D4\u05E9\u05D0\u05E8 \u05E8\u05D9\u05E7 \u05DC\u05D4\u05E1\u05E8\u05EA \u05EA\u05D5\u05D5\u05D9\u05DD \u05DE\u05D9\u05D5\u05D7\u05D3\u05D9\u05DD."},name:"\u05D4\u05D7\u05DC\u05E4\u05EA \u05EA\u05D5\u05D5\u05D9\u05DD \u05DE\u05D9\u05D5\u05D7\u05D3\u05D9\u05DD"},timeoutInSeconds:{description:{part1:"\u05D4\u05D6\u05DE\u05DF \u05D4\u05E7\u05E6\u05D5\u05D1 \u05D1\u05E9\u05E0\u05D9\u05D5\u05EA \u05E2\u05D1\u05D5\u05E8 \u05DB\u05DC \u05D4\u05E4\u05E2\u05D5\u05DC\u05D5\u05EA.",part2:"\u05D0\u05DD",part3:"\u05DE\u05D5\u05D2\u05D3\u05E8, \u05D6\u05DE\u05DF \u05D4\u05E7\u05E6\u05D5\u05D1 \u05DC\u05D1\u05D9\u05E6\u05D5\u05E2 \u05E4\u05E2\u05D5\u05DC\u05D5\u05EA \u05DE\u05D1\u05D5\u05D8\u05DC."},name:"\u05D6\u05DE\u05DF \u05E7\u05E6\u05D5\u05D1 \u05D1\u05E9\u05E0\u05D9\u05D5\u05EA"},treatAsAttachmentExtensions:{description:{part1:"\u05D4\u05EA\u05D9\u05D9\u05D7\u05E1 \u05DC\u05E7\u05D1\u05E6\u05D9\u05DD \u05E2\u05DD \u05D4\u05E1\u05D9\u05D5\u05DE\u05D5\u05EA \u05D4\u05D0\u05DC\u05D4 \u05DB\u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD.",part2:"\u05D1\u05E8\u05D9\u05E8\u05EA \u05DE\u05D7\u05D3\u05DC",part3:"\u05D5",part4:"\u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E7\u05D5\u05E9\u05E8\u05D9\u05DD \u05DC\u05D0 \u05DE\u05D8\u05D5\u05E4\u05DC\u05D9\u05DD \u05DB\u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD \u05D5\u05DC\u05D0 \u05DE\u05D5\u05E2\u05D1\u05E8\u05D9\u05DD \u05E2\u05DD \u05D4\u05E8\u05E9\u05D9\u05DE\u05D4.",part5:"\u05D0\u05EA\u05D4 \u05D9\u05DB\u05D5\u05DC \u05DC\u05D4\u05D5\u05E1\u05D9\u05E3 \u05E1\u05D9\u05D5\u05DE\u05D5\u05EA \u05DE\u05D5\u05EA\u05D0\u05DE\u05D5\u05EA \u05D0\u05D9\u05E9\u05D9\u05EA, \u05DC\u05DE\u05E9\u05DC",part6:", \u05DB\u05D3\u05D9 \u05DC\u05E2\u05E7\u05D5\u05E3 \u05D4\u05EA\u05E0\u05D4\u05D2\u05D5\u05EA \u05D6\u05D5."},name:"\u05D4\u05EA\u05D9\u05D9\u05D7\u05E1 \u05DB\u05E1\u05D9\u05D5\u05DE\u05D5\u05EA \u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD"}},promptWithPreviewModal:{previewModal:{title:"\u05EA\u05E6\u05D5\u05D2\u05D4 \u05DE\u05E7\u05D3\u05D9\u05DE\u05D4 \u05E9\u05DC \u05E7\u05D5\u05D1\u05E5 \u05DE\u05E6\u05D5\u05E8\u05E3 '{{fullFileName}}'"},title:"\u05E1\u05E4\u05E7 \u05E2\u05E8\u05DA \u05E2\u05D1\u05D5\u05E8 \u05D8\u05D5\u05E7\u05DF \u05D4\u05D4\u05E0\u05D7\u05D9\u05D4"},regularExpression:"/\u05D1\u05D9\u05D8\u05D5\u05D9 \u05E8\u05D2\u05D5\u05DC\u05E8\u05D9/"};var nh={attachmentCollector:{confirm:{part1:"Szeretn\xE9d \xF6sszegy\u0171jteni a mell\xE9kleteket a mapp\xE1kban l\xE9v\u0151 \xF6sszes jegyzethez rekurz\xEDvan?",part2:"Ez a m\u0171velet nem vonhat\xF3 vissza."},progressBar:{message:"Mell\xE9kletek \xF6sszegy\u0171jt\xE9se {{iterationStr}} - '{{noteFilePath}}'.",title:"Mell\xE9kletek \xF6sszegy\u0171jt\xE9se..."}},buttons:{copy:"M\xE1sol\xE1s",move:"\xC1thelyez\xE9s",previewAttachmentFile:"Mell\xE9klet f\xE1jl el\u0151n\xE9zete",skip:"Kihagy\xE1s"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"Mell\xE9klet",part2:"t\xF6bb jegyzet hivatkozik r\xE1."},heading:"T\xF6bb jegyzet \xE1ltal haszn\xE1lt mell\xE9klet gy\u0171jt\xE9se",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Ugyanazt a m\u0171veletet kell haszn\xE1lni m\xE1s probl\xE9m\xE1s mell\xE9kletek eset\xE9ben"},commands:{collectAttachmentsCurrentFolder:"Mell\xE9kletek gy\u0171jt\xE9se a jelenlegi mapp\xE1b\xF3l",collectAttachmentsCurrentNote:"Mell\xE9kletek gy\u0171jt\xE9se a jelenlegi jegyzetb\u0151l",collectAttachmentsEntireVault:"Mell\xE9kletek gy\u0171jt\xE9se a teljes t\xE1rol\xF3b\xF3l"},menuItems:{collectAttachmentsInFile:"Mell\xE9kletek \xF6sszegy\u0171jt\xE9se a f\xE1jlban",collectAttachmentsInFiles:"Mell\xE9kletek \xF6sszegy\u0171jt\xE9se a f\xE1jlokban"},notice:{collectingAttachments:"Mell\xE9kletek gy\u0171jt\xE9se a k\xF6vetkez\u0151h\xF6z: '{{noteFilePath}}'",collectingAttachmentsCancelled:"Mell\xE9klet gy\u0171jt\xE9s megszak\xEDtva. R\xE9szletek\xE9rt l\xE1sd a konzolt.",generatedAttachmentFileNameIsInvalid:{part1:`A gener\xE1lt mell\xE9klet f\xE1jln\xE9v '{{path}}' \xE9rv\xE9nytelen.
|
|
496
|
+
{{validationMessage}}
|
|
497
|
+
Ellen\u0151rizd a`,part2:"be\xE1ll\xEDt\xE1sodat."},notePathIsIgnored:"A jegyzet el\xE9r\xE9si \xFAtja figyelmen k\xEDv\xFCl marad"},obsidianDevUtils:{buttons:{cancel:"M\xE9gse",ok:"OK"},dataview:{itemsPerPage:"Elemek oldalank\xE9nt:",jumpToPage:"Ugr\xE1s az oldalra:"},notices:{attachmentIsStillUsed:"A {{attachmentPath}} mell\xE9kletet m\xE9g mindig m\xE1s jegyzetek haszn\xE1lj\xE1k. Nem lesz t\xF6r\xF6lve.",unhandledError:"Nem kezelt hiba t\xF6rt\xE9nt. Tov\xE1bbi inform\xE1ci\xF3\xE9rt ellen\u0151rizd a konzolt."}},pluginSettings:{attachmentRenameMode:{all:{description:"minden f\xE1jl \xE1tnevez\xE9sre ker\xFCl.",displayText:"Minden"},none:{description:"neveik megmaradnak.",displayText:"Egyik sem"},onlyPastedImages:{description:"csak a beillesztett k\xE9pek ker\xFClnek \xE1tnevez\xE9sre. Csak akkor \xE9rv\xE9nyes, amikor a PNG k\xE9p tartalma k\xF6zvetlen\xFCl a v\xE1g\xF3lapr\xF3l van beillesztve. Jellemz\u0151en k\xE9perny\u0151k\xE9pek beilleszt\xE9s\xE9n\xE9l.",displayText:"Csak beillesztett k\xE9pek"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"mell\xE9klet gy\u0171jt\xE9s megszak\xEDt\xE1sa.",displayText:"M\xE9gse"},copy:{description:"mell\xE9klet m\xE1sol\xE1sa az \xFAj helyre.",displayText:"M\xE1sol\xE1s"},move:{description:"mell\xE9klet \xE1thelyez\xE9se az \xFAj helyre.",displayText:"\xC1thelyez\xE9s"},prompt:{description:"felhaszn\xE1l\xF3 k\xE9r\xE9se a m\u0171velet kiv\xE1laszt\xE1s\xE1ra.",displayText:"K\xE9r\xE9s"},skip:{description:"mell\xE9klet kihagy\xE1sa \xE9s folytat\xE1s a k\xF6vetkez\u0151vel.",displayText:"Kihagy\xE1s"}},defaultImageSizeDimension:{height:"Magass\xE1g",width:"Sz\xE9less\xE9g"},emptyAttachmentFolderBehavior:{delete:{description:"t\xF6rli az \xFCres mell\xE9klet mapp\xE1t.",displayText:"T\xF6rl\xE9s"},deleteWithEmptyParents:{description:"t\xF6rli az \xFCres mell\xE9klet mapp\xE1t \xE9s az \xFCres sz\xFCl\u0151 mapp\xE1it.",displayText:"T\xF6rl\xE9s \xFCres sz\xFCl\u0151kkel"},keep:{description:"megtartja az \xFCres mell\xE9klet mapp\xE1t.",displayText:"Megtart\xE1s"}}},pluginSettingsManager:{customToken:{codeComment:`// Az egy\xE9ni tokenek kommentbe ker\xFCltek, mert friss\xEDteni kell \u0151ket a 9.0.0 verzi\xF3ban bevezetett \xFAj form\xE1tumra.
|
|
498
|
+
// Tov\xE1bbi inform\xE1ci\xF3\xE9rt l\xE1sd a dokument\xE1ci\xF3t (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens).`,deprecated:{part1:"A 9.0.0 verzi\xF3ban az egy\xE9ni token regisztr\xE1ci\xF3 form\xE1tuma megv\xE1ltozott. K\xE9rj\xFCk, friss\xEDtsd a tokenjeidet ennek megfelel\u0151en. L\xE1sd a",part2:"dokument\xE1ci\xF3t",part3:"tov\xE1bbi inform\xE1ci\xF3\xE9rt"}},legacyRenameAttachmentsToLowerCase:{part1:"A 9.0.0 verzi\xF3ban a",part2:"be\xE1ll\xEDt\xE1s elavult. Haszn\xE1ld a",part3:"form\xE1tumot helyette. L\xE1sd a",part4:"dokument\xE1ci\xF3t",part5:"tov\xE1bbi inform\xE1ci\xF3\xE9rt"},markdownUrlFormat:{deprecated:{part1:"Lehet, hogy hib\xE1s \xE9rt\xE9ket \xE1ll\xEDtott\xE1l be a",part2:"form\xE1tumhoz. K\xE9rj\xFCk, l\xE1sd a",part3:"dokument\xE1ci\xF3t",part4:"tov\xE1bbi inform\xE1ci\xF3\xE9rt",part5:"Ez az \xFCzenet nem jelenik meg \xFAjra."}},specialCharacters:{part1:"A 9.16.0 verzi\xF3ban a",part2:"alap\xE9rtelmezett be\xE1ll\xEDt\xE1si \xE9rt\xE9k megv\xE1ltozott. A be\xE1ll\xEDt\xE1si \xE9rt\xE9ked friss\xEDt\xE9sre ker\xFClt az \xFAj alap\xE9rtelmezett \xE9rt\xE9kre."},validation:{defaultImageSizeMustBePercentageOrPixels:"Az alap\xE9rtelmezett k\xE9pm\xE9retnek pixelben vagy sz\xE1zal\xE9kban kell megadva lennie",invalidCustomTokensCode:"\xC9rv\xE9nytelen egy\xE9ni token k\xF3d",invalidRegularExpression:"\xC9rv\xE9nytelen regul\xE1ris kifejez\xE9s {{regExp}}",specialCharactersMustNotContainSlash:"A speci\xE1lis karakterek nem tartalmazhatnak / jelet",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"A speci\xE1lis karakterek helyettes\xEDt\xE9se nem tartalmazhat \xE9rv\xE9nytelen f\xE1jln\xE9v el\xE9r\xE9si \xFAt karaktereket."},version:{part1:"A be\xE1ll\xEDt\xE1si f\xE1jlod ",part2:"verzi\xF3ja",part3:"\xFAjabb, mint a jelenlegi b\u0151v\xEDtm\xE9ny verzi\xF3",part4:"A b\u0151v\xEDtm\xE9ny nem a v\xE1rt m\xF3don m\u0171k\xF6dhet. K\xE9rj\xFCk, friss\xEDtsd a b\u0151v\xEDtm\xE9nyt a leg\xFAjabb verzi\xF3ra vagy gy\u0151z\u0151dj meg r\xF3la, hogy a be\xE1ll\xEDt\xE1sok helyesek."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"F\xE1jlok csatol\xE1sakor:"},name:"Mell\xE9klet \xE1tnevez\xE9si m\xF3d"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Amikor a gy\u0171jt\xF6tt mell\xE9kletet t\xF6bb jegyzet haszn\xE1lja:"},name:"T\xF6bb jegyzet \xE1ltal haszn\xE1lt mell\xE9klet gy\u0171jt\xE9si m\xF3d"},collectedAttachmentFileName:{description:{part1:"L\xE1sd az el\xE9rhet\u0151",part2:"tokeneket",part3:"Hagyd \xFCresen, hogy a",part4:"be\xE1ll\xEDt\xE1st haszn\xE1ld helyette."},name:"Gy\u0171jt\xF6tt mell\xE9klet f\xE1jln\xE9v"},customTokens:{description:{part1:"Haszn\xE1land\xF3 egy\xE9ni tokenek.",part2:"L\xE1sd a",part3:"dokument\xE1ci\xF3t",part4:"tov\xE1bbi inform\xE1ci\xF3\xE9rt.",part5:"\u26A0\uFE0F Az egy\xE9ni tokenek tetsz\u0151leges JavaScript k\xF3d lehetnek. Ha rosszul \xEDrt\xE1k, adatveszt\xE9st okozhatnak. Saj\xE1t felel\u0151ss\xE9gre haszn\xE1ld."},name:"Egy\xE9ni tokenek"},defaultImageSize:{description:{part1:"Az alap\xE9rtelmezett k\xE9pm\xE9ret.",part2:"Meghat\xE1rozhat\xF3 pixelben",part3:"vagy a teljes k\xE9pm\xE9ret sz\xE1zal\xE9k\xE1ban",part4:"Hagyja \xFCresen az eredeti m\xE9ret haszn\xE1lat\xE1hoz."},name:"Alap\xE9rtelmezett k\xE9pm\xE9ret"},duplicateNameSeparator:{description:{part1:"Amikor egy megl\xE9v\u0151 f\xE1jllal azonos nev\u0171 f\xE1jlt illesztesz be/h\xFAzol, ez az elv\xE1laszt\xF3 ker\xFCl hozz\xE1ad\xE1sra a f\xE1jln\xE9vhez.",part2:"Pl. amikor a f\xE1jlt",part3:"h\xFAzod, \xE1tnevez\xE9sre ker\xFCl",part4:"stb., az els\u0151 el\xE9rhet\u0151 nevet kapva."},name:"Duplik\xE1lt n\xE9v elv\xE1laszt\xF3"},emptyAttachmentFolderBehavior:{description:{part1:"Amikor a mell\xE9klet mappa \xFCres lesz:"},name:"\xDCres mell\xE9klet mappa viselked\xE9s"},excludePaths:{description:{part1:"Jegyzetek kiz\xE1r\xE1sa a k\xF6vetkez\u0151 \xFAtvonalakb\xF3l.",part2:"Minden \xFAtvonalat \xFAj sorba \xEDrj.",part3:"Haszn\xE1lhatsz \xFAtvonal stringet vagy",part4:"Ha a be\xE1ll\xEDt\xE1s \xFCres, egyetlen jegyzet sem ker\xFCl kiz\xE1r\xE1sra."},name:"\xDAtvonalak kiz\xE1r\xE1sa"},excludePathsFromAttachmentCollecting:{description:{part1:"Mell\xE9kletek kiz\xE1r\xE1sa a k\xF6vetkez\u0151 \xFAtvonalakb\xF3l, amikor a",part2:"Mell\xE9kletek gy\u0171jt\xE9se",part3:"parancs v\xE9grehajt\xF3dik.",part4:"Minden \xFAtvonalat \xFAj sorba \xEDrj.",part5:"Haszn\xE1lhatsz \xFAtvonal stringet vagy",part6:"Ha a be\xE1ll\xEDt\xE1s \xFCres, egyetlen \xFAtvonal sem ker\xFCl kiz\xE1r\xE1sra a mell\xE9klet gy\u0171jt\xE9sb\u0151l."},name:"\xDAtvonalak kiz\xE1r\xE1sa a mell\xE9klet gy\u0171jt\xE9sb\u0151l"},generatedAttachmentFileName:{description:{part1:"L\xE1sd az el\xE9rhet\u0151",part2:"tokeneket"},name:"Gener\xE1lt mell\xE9klet f\xE1jln\xE9v"},includePaths:{description:{part1:"Jegyzetek belefoglal\xE1sa a k\xF6vetkez\u0151 \xFAtvonalakb\xF3l.",part2:"Minden \xFAtvonalat \xFAj sorba \xEDrj.",part3:"Haszn\xE1lhatsz \xFAtvonal stringet vagy",part4:"Ha a be\xE1ll\xEDt\xE1s \xFCres, minden jegyzet bele van foglalva."},name:"\xDAtvonalak belefoglal\xE1sa"},jpegQuality:{description:"Min\xE9l kisebb a min\u0151s\xE9g, ann\xE1l nagyobb a t\xF6m\xF6r\xEDt\xE9si ar\xE1ny.",name:"JPEG min\u0151s\xE9g"},locationForNewAttachments:{description:{part1:"Kezdd a",part2:"jel\xF6l\xE9ssel relat\xEDv \xFAtvonal haszn\xE1lat\xE1hoz.",part3:"L\xE1sd az el\xE9rhet\u0151",part4:"tokeneket",part5:"Pont mapp\xE1k, mint a",part6:"nem aj\xE1nlottak, mert az Obsidian nem k\xF6veti \u0151ket. Sz\xFCks\xE9ged lehet",part7:"b\u0151v\xEDtm\xE9nyre a kezel\xE9s\xFCkh\xF6z."},name:"\xDAj mell\xE9kletek helye"},markdownUrlFormat:{description:{part1:"Form\xE1tum a Markdown-ba beillesztend\u0151 URL-hez.",part2:"L\xE1sd az el\xE9rhet\u0151",part3:"tokeneket",part4:"Hagyd \xFCresen az alap\xE9rtelmezett form\xE1tum haszn\xE1lat\xE1hoz."},name:"Markdown URL form\xE1tum"},renameAttachmentsToLowerCase:"Mell\xE9kletek \xE1tnevez\xE9se kisbet\u0171re",renamedAttachmentFileName:{description:{part1:"L\xE1sd az el\xE9rhet\u0151",part2:"tokeneket",part3:"Hagyd \xFCresen, hogy a",part4:"be\xE1ll\xEDt\xE1st haszn\xE1ld helyette."},name:"\xC1tnevezett mell\xE9klet f\xE1jln\xE9v"},resetToSampleCustomTokens:{message:"Biztosan vissza\xE1ll\xEDtod az egy\xE9ni tokeneket a minta egy\xE9ni tokenekre? A v\xE1ltoztat\xE1said elvesznek.",title:"Vissza\xE1ll\xEDt\xE1s minta egy\xE9ni tokenekre"},shouldConvertPastedImagesToJpeg:{description:"Beillesztett k\xE9pek JPEG-re konvert\xE1l\xE1sa. Csak akkor \xE9rv\xE9nyes, amikor a PNG k\xE9p tartalma k\xF6zvetlen\xFCl a v\xE1g\xF3lapr\xF3l van beillesztve. Jellemz\u0151en k\xE9perny\u0151k\xE9pek beilleszt\xE9s\xE9n\xE9l.",name:"Beillesztett k\xE9pek JPEG-re konvert\xE1l\xE1sa"},shouldDeleteOrphanAttachments:{description:"Ha enged\xE9lyezve, amikor a jegyzet t\xF6rl\xE9sre ker\xFCl, az \xE1rva mell\xE9kletei is t\xF6rl\xE9sre ker\xFClnek.",name:"\xC1rva mell\xE9kletek t\xF6rl\xE9se"},shouldRenameAttachmentFiles:{description:{part1:"Ha enged\xE9lyezve, amikor egy jegyzet \xE1tnevez\xE9sre ker\xFCl vagy \xE1thelyez\xE9sre, a mell\xE9klet f\xE1jljai \xE1tnevez\xE9sre ker\xFClnek a",part2:"be\xE1ll\xEDt\xE1s szerint."},name:"Mell\xE9klet f\xE1jlok \xE1tnevez\xE9se"},shouldRenameAttachmentFolders:{description:"Mell\xE9klet mapp\xE1k \xE1tnevez\xE9se, amikor egy jegyzet \xE1tnevez\xE9sre ker\xFCl vagy \xE1thelyez\xE9sre.",name:"Mell\xE9klet mapp\xE1k \xE1tnevez\xE9se"},shouldRenameCollectedAttachments:{description:{part1:"Ha enged\xE9lyezve, a",part2:"Mell\xE9kletek gy\u0171jt\xE9se",part3:"parancsokon kereszt\xFCl feldolgozott mell\xE9kletek \xE1tnevez\xE9sre ker\xFClnek a",part4:"be\xE1ll\xEDt\xE1s szerint."},name:"Gy\u0171jt\xF6tt mell\xE9kletek \xE1tnevez\xE9se"},specialCharacters:{description:{part1:"Speci\xE1lis karakterek a mell\xE9klet mapp\xE1ban \xE9s f\xE1jln\xE9vben cser\xE9lend\u0151 vagy elt\xE1vol\xEDtand\xF3.",part2:"Hagyd \xFCresen a speci\xE1lis karakterek meg\u0151rz\xE9s\xE9hez."},name:"Speci\xE1lis karakterek"},specialCharactersReplacement:{description:{part1:"Helyettes\xEDt\u0151 string a speci\xE1lis karakterekhez a mell\xE9klet mapp\xE1ban \xE9s f\xE1jln\xE9vben.",part2:"Hagyd \xFCresen a speci\xE1lis karakterek elt\xE1vol\xEDt\xE1s\xE1hoz."},name:"Speci\xE1lis karakterek helyettes\xEDt\xE9se"},timeoutInSeconds:{description:{part1:"Az id\u0151t\xFAll\xE9p\xE9s m\xE1sodpercekben minden m\u0171velethez.",part2:"Ha",part3:"be van \xE1ll\xEDtva, a m\u0171veletek v\xE9grehajt\xE1si id\u0151t\xFAll\xE9p\xE9se le van tiltva."},name:"Id\u0151t\xFAll\xE9p\xE9s m\xE1sodpercekben"},treatAsAttachmentExtensions:{description:{part1:"F\xE1jlok kezel\xE9se ezekkel a kiterjeszt\xE9sekkel mell\xE9kletekk\xE9nt.",part2:"Alap\xE9rtelmezetten",part3:"\xE9s",part4:"kapcsolt f\xE1jlok nem kezelend\u0151k mell\xE9kletekk\xE9nt \xE9s nem mozgatand\xF3k a jegyzettel.",part5:"Hozz\xE1adhatsz egy\xE9ni kiterjeszt\xE9seket, pl.",part6:", a viselked\xE9s fel\xFCl\xEDr\xE1s\xE1hoz."},name:"Mell\xE9klet kiterjeszt\xE9sek kezel\xE9se"}},promptWithPreviewModal:{previewModal:{title:"Mell\xE9klet f\xE1jl el\u0151n\xE9zete '{{fullFileName}}'"},title:"Adj meg egy \xE9rt\xE9ket a prompt tokenhez"},regularExpression:"/regul\xE1ris kifejez\xE9s/"};var ah={attachmentCollector:{confirm:{part1:"Apakah Anda ingin mengumpulkan lampiran untuk semua catatan di folder secara rekursif?",part2:"Operasi ini tidak dapat dibatalkan."},progressBar:{message:"Mengumpulkan lampiran {{iterationStr}} - '{{noteFilePath}}'.",title:"Mengumpulkan lampiran..."}},buttons:{copy:"Salin",move:"Pindah",previewAttachmentFile:"Pratinjau file lampiran",skip:"Lewati"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"Lampiran",part2:"dirujuk oleh beberapa catatan."},heading:"Mengumpulkan lampiran yang digunakan oleh beberapa catatan",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Harus menggunakan tindakan yang sama untuk lampiran bermasalah lainnya"},commands:{collectAttachmentsCurrentFolder:"Kumpulkan lampiran di folder saat ini",collectAttachmentsCurrentNote:"Kumpulkan lampiran di catatan saat ini",collectAttachmentsEntireVault:"Kumpulkan lampiran di seluruh vault"},menuItems:{collectAttachmentsInFile:"Kumpulkan lampiran di file",collectAttachmentsInFiles:"Kumpulkan lampiran di file-file"},notice:{collectingAttachments:"Mengumpulkan lampiran untuk '{{noteFilePath}}'",collectingAttachmentsCancelled:"Pengumpulan lampiran dibatalkan. Lihat konsol untuk detail.",generatedAttachmentFileNameIsInvalid:{part1:`Nama file lampiran yang dihasilkan '{{path}}' tidak valid.
|
|
499
|
+
{{validationMessage}}
|
|
500
|
+
Periksa`,part2:"pengaturan Anda."},notePathIsIgnored:"Jalur catatan diabaikan"},obsidianDevUtils:{buttons:{cancel:"Batal",ok:"OK"},dataview:{itemsPerPage:"Item per halaman:",jumpToPage:"Lompat ke halaman:"},notices:{attachmentIsStillUsed:"Lampiran {{attachmentPath}} masih digunakan oleh catatan lain. Tidak akan dihapus.",unhandledError:"Terjadi kesalahan yang tidak tertangani. Silakan periksa konsol untuk informasi lebih lanjut."}},pluginSettings:{attachmentRenameMode:{all:{description:"semua file akan diubah namanya.",displayText:"Semua"},none:{description:"nama mereka dipertahankan.",displayText:"Tidak ada"},onlyPastedImages:{description:"hanya gambar yang ditempel yang akan diubah namanya. Berlaku hanya ketika konten gambar PNG ditempel langsung dari clipboard. Biasanya, untuk menempel screenshot.",displayText:"Hanya gambar yang ditempel"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"batalkan pengumpulan lampiran.",displayText:"Batal"},copy:{description:"salin lampiran ke lokasi baru.",displayText:"Salin"},move:{description:"pindahkan lampiran ke lokasi baru.",displayText:"Pindah"},prompt:{description:"minta pengguna untuk memilih tindakan.",displayText:"Permintaan"},skip:{description:"lewati lampiran dan lanjutkan ke yang berikutnya.",displayText:"Lewati"}},defaultImageSizeDimension:{height:"Tinggi",width:"Lebar"},emptyAttachmentFolderBehavior:{delete:{description:"akan menghapus folder lampiran yang kosong.",displayText:"Hapus"},deleteWithEmptyParents:{description:"akan menghapus folder lampiran yang kosong dan folder induk kosongnya.",displayText:"Hapus dengan induk kosong"},keep:{description:"akan mempertahankan folder lampiran yang kosong.",displayText:"Simpan"}}},pluginSettingsManager:{customToken:{codeComment:`// Token kustom dikomentari karena harus diperbarui ke format baru yang diperkenalkan di versi plugin 9.0.0.
|
|
501
|
+
// Lihat dokumentasi (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) untuk informasi lebih lanjut.`,deprecated:{part1:"Di versi plugin 9.0.0, format registrasi token kustom berubah. Silakan perbarui token Anda sesuai. Lihat",part2:"dokumentasi",part3:"untuk informasi lebih lanjut"}},legacyRenameAttachmentsToLowerCase:{part1:"Di versi plugin 9.0.0, pengaturan",part2:"sudah tidak digunakan lagi. Gunakan format",part3:"sebagai gantinya. Lihat",part4:"dokumentasi",part5:"untuk informasi lebih lanjut"},markdownUrlFormat:{deprecated:{part1:"Anda mungkin memiliki nilai yang salah untuk format",part2:". Silakan lihat",part3:"dokumentasi",part4:"untuk informasi lebih lanjut",part5:"Pesan ini tidak akan ditampilkan lagi."}},specialCharacters:{part1:"Di versi plugin 9.16.0, nilai pengaturan default",part2:"berubah. Nilai pengaturan Anda diperbarui ke nilai default baru."},validation:{defaultImageSizeMustBePercentageOrPixels:"Ukuran gambar default harus dalam piksel atau persentase",invalidCustomTokensCode:"Kode token kustom tidak valid",invalidRegularExpression:"Ekspresi reguler tidak valid {{regExp}}",specialCharactersMustNotContainSlash:"Karakter khusus tidak boleh mengandung /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"Penggantian karakter khusus tidak boleh mengandung karakter jalur nama file yang tidak valid."},version:{part1:"File pengaturan Anda ",part2:"memiliki versi",part3:"yang lebih baru dari versi plugin saat ini",part4:"Plugin mungkin tidak berfungsi seperti yang diharapkan. Silakan perbarui plugin ke versi terbaru atau pastikan pengaturannya benar."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"Saat melampirkan file:"},name:"Mode penggantian nama lampiran"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Ketika lampiran yang dikumpulkan digunakan oleh beberapa catatan:"},name:"Mode pengumpulan lampiran yang digunakan oleh beberapa catatan"},collectedAttachmentFileName:{description:{part1:"Lihat",part2:"token yang tersedia",part3:"Biarkan kosong untuk menggunakan",part4:"pengaturan sebagai gantinya."},name:"Nama file lampiran yang dikumpulkan"},customTokens:{description:{part1:"Token kustom yang akan digunakan.",part2:"Lihat",part3:"dokumentasi",part4:"untuk informasi lebih lanjut.",part5:"\u26A0\uFE0F Token kustom dapat berupa kode JavaScript arbitrer. Jika ditulis dengan buruk, dapat menyebabkan kehilangan data. Gunakan dengan risiko sendiri."},name:"Token kustom"},defaultImageSize:{description:{part1:"The default image size.",part2:"Can be specified in pixels",part3:"or percentage of the full image size",part4:"Leave blank to use the original image size."},name:"Default image size"},duplicateNameSeparator:{description:{part1:"Ketika Anda menempel/menyeret file dengan nama yang sama dengan file yang ada, pemisah ini akan ditambahkan ke nama file.",part2:"Misalnya, ketika Anda menyeret file",part3:", itu akan diubah namanya menjadi",part4:", dll, mendapatkan nama pertama yang tersedia."},name:"Pemisah nama duplikat"},emptyAttachmentFolderBehavior:{description:{part1:"Ketika folder lampiran menjadi kosong:"},name:"Perilaku folder lampiran kosong"},excludePaths:{description:{part1:"Kecualikan catatan dari jalur berikut.",part2:"Masukkan setiap jalur pada baris baru.",part3:"Anda dapat menggunakan string jalur atau",part4:"Jika pengaturan kosong, tidak ada catatan yang dikecualikan."},name:"Kecualikan jalur"},excludePathsFromAttachmentCollecting:{description:{part1:"Kecualikan lampiran dari jalur berikut ketika",part2:"Kumpulkan lampiran",part3:"perintah dijalankan.",part4:"Masukkan setiap jalur pada baris baru.",part5:"Anda dapat menggunakan string jalur atau",part6:"Jika pengaturan kosong, tidak ada jalur yang dikecualikan dari pengumpulan lampiran."},name:"Kecualikan jalur dari pengumpulan lampiran"},generatedAttachmentFileName:{description:{part1:"Lihat",part2:"token yang tersedia"},name:"Nama file lampiran yang dihasilkan"},includePaths:{description:{part1:"Sertakan catatan dari jalur berikut.",part2:"Masukkan setiap jalur pada baris baru.",part3:"Anda dapat menggunakan string jalur atau",part4:"Jika pengaturan kosong, semua catatan disertakan."},name:"Sertakan jalur"},jpegQuality:{description:"Semakin kecil kualitasnya, semakin besar rasio kompresi.",name:"Kualitas JPEG"},locationForNewAttachments:{description:{part1:"Mulai dengan",part2:"untuk menggunakan jalur relatif.",part3:"Lihat",part4:"token yang tersedia",part5:"Folder titik seperti",part6:"tidak direkomendasikan, karena Obsidian tidak melacaknya. Anda mungkin perlu menggunakan",part7:"Plugin untuk mengelolanya."},name:"Lokasi untuk lampiran baru"},markdownUrlFormat:{description:{part1:"Format untuk URL yang akan dimasukkan ke Markdown.",part2:"Lihat",part3:"token yang tersedia",part4:"Biarkan kosong untuk menggunakan format default."},name:"Format URL Markdown"},renameAttachmentsToLowerCase:"Ubah nama lampiran menjadi huruf kecil",renamedAttachmentFileName:{description:{part1:"Lihat",part2:"token yang tersedia",part3:"Biarkan kosong untuk menggunakan",part4:"pengaturan sebagai gantinya."},name:"Nama file lampiran yang diubah namanya"},resetToSampleCustomTokens:{message:"Apakah Anda yakin ingin mengatur ulang token kustom ke token kustom sampel? Perubahan Anda akan hilang.",title:"Atur ulang ke token kustom sampel"},shouldConvertPastedImagesToJpeg:{description:"Apakah akan mengkonversi gambar yang ditempel ke JPEG. Berlaku hanya ketika konten gambar PNG ditempel langsung dari clipboard. Biasanya, untuk menempel screenshot.",name:"Haruskah mengkonversi gambar yang ditempel ke JPEG"},shouldDeleteOrphanAttachments:{description:"Jika diaktifkan, ketika catatan dihapus, lampiran yatimnya juga akan dihapus.",name:"Haruskah menghapus lampiran yatim"},shouldRenameAttachmentFiles:{description:{part1:"Jika diaktifkan, ketika catatan diubah namanya atau dipindahkan, file lampirannya akan diubah namanya sesuai dengan",part2:"pengaturan."},name:"Haruskah mengubah nama file lampiran"},shouldRenameAttachmentFolders:{description:"Apakah akan mengubah nama folder lampiran ketika catatan diubah namanya atau dipindahkan.",name:"Haruskah mengubah nama folder lampiran"},shouldRenameCollectedAttachments:{description:{part1:"Jika diaktifkan, lampiran yang diproses melalui",part2:"Kumpulkan lampiran",part3:"perintah akan diubah namanya sesuai dengan",part4:"pengaturan."},name:"Haruskah mengubah nama lampiran yang dikumpulkan"},specialCharacters:{description:{part1:"Karakter khusus dalam folder lampiran dan nama file yang akan diganti atau dihapus.",part2:"Biarkan kosong untuk mempertahankan karakter khusus."},name:"Karakter khusus"},specialCharactersReplacement:{description:{part1:"String pengganti untuk karakter khusus dalam folder lampiran dan nama file.",part2:"Biarkan kosong untuk menghapus karakter khusus."},name:"Penggantian karakter khusus"},timeoutInSeconds:{description:{part1:"Timeout dalam detik untuk semua operasi.",part2:"Jika",part3:"diatur, timeout eksekusi operasi dinonaktifkan."},name:"Timeout dalam detik"},treatAsAttachmentExtensions:{description:{part1:"Perlakukan file dengan ekstensi ini sebagai lampiran.",part2:"Secara default",part3:"dan",part4:"file yang ditautkan tidak diperlakukan sebagai lampiran dan tidak dipindahkan dengan catatan.",part5:"Anda dapat menambahkan ekstensi kustom, misalnya",part6:", untuk menimpa perilaku ini."},name:"Perlakukan sebagai ekstensi lampiran"}},promptWithPreviewModal:{previewModal:{title:"Pratinjau file lampiran '{{fullFileName}}'"},title:"Berikan nilai untuk token prompt"},regularExpression:"/ekspresi reguler/"};var rh={attachmentCollector:{confirm:{part1:"Vuoi raccogliere gli allegati per tutte le note nelle cartelle in modo ricorsivo?",part2:"Questa operazione non pu\xF2 essere annullata."},progressBar:{message:"Raccolta allegati {{iterationStr}} - '{{noteFilePath}}'.",title:"Raccolta allegati..."}},buttons:{copy:"Copia",move:"Sposta",previewAttachmentFile:"Anteprima file allegato",skip:"Salta"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"L'allegato",part2:"\xE8 referenziato da pi\xF9 note."},heading:"Raccolta allegato usato da pi\xF9 note",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Dovresti usare la stessa azione per altri allegati problematici"},commands:{collectAttachmentsCurrentFolder:"Raccogli allegati nella cartella corrente",collectAttachmentsCurrentNote:"Raccogli allegati nella nota corrente",collectAttachmentsEntireVault:"Raccogli allegati nell'intero vault"},menuItems:{collectAttachmentsInFile:"Raccogli allegati nel file",collectAttachmentsInFiles:"Raccogli allegati nei file"},notice:{collectingAttachments:"Raccolta allegati per '{{noteFilePath}}'",collectingAttachmentsCancelled:"Raccolta allegati annullata. Consulta la console per i dettagli.",generatedAttachmentFileNameIsInvalid:{part1:`Il nome file allegato generato '{{path}}' non \xE8 valido.
|
|
502
|
+
{{validationMessage}}
|
|
503
|
+
Controlla le tue`,part2:"impostazioni."},notePathIsIgnored:"Il percorso della nota \xE8 ignorato"},obsidianDevUtils:{buttons:{cancel:"Annulla",ok:"OK"},dataview:{itemsPerPage:"Elementi per pagina:",jumpToPage:"Vai alla pagina:"},notices:{attachmentIsStillUsed:"L'allegato {{attachmentPath}} \xE8 ancora in uso da altre note. Non sar\xE0 eliminato.",unhandledError:"Si \xE8 verificato un errore non gestito. Controlla la console per ulteriori informazioni."}},pluginSettings:{attachmentRenameMode:{all:{description:"tutti i file vengono rinominati.",displayText:"Tutti"},none:{description:"i loro nomi vengono preservati.",displayText:"Nessuno"},onlyPastedImages:{description:"solo le immagini incollate vengono rinominate. Si applica solo quando il contenuto dell'immagine PNG viene incollato direttamente dagli appunti. Tipicamente, per incollare screenshot.",displayText:"Solo immagini incollate"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"annulla la raccolta allegati.",displayText:"Annulla"},copy:{description:"copia l'allegato nella nuova posizione.",displayText:"Copia"},move:{description:"sposta l'allegato nella nuova posizione.",displayText:"Sposta"},prompt:{description:"chiedi all'utente di scegliere l'azione.",displayText:"Richiedi"},skip:{description:"salta l'allegato e procedi al successivo.",displayText:"Salta"}},defaultImageSizeDimension:{height:"Altezza",width:"Larghezza"},emptyAttachmentFolderBehavior:{delete:{description:"eliminer\xE0 la cartella allegati vuota.",displayText:"Elimina"},deleteWithEmptyParents:{description:"eliminer\xE0 la cartella allegati vuota e le sue cartelle padre vuote.",displayText:"Elimina con genitori vuoti"},keep:{description:"manterr\xE0 la cartella allegati vuota.",displayText:"Mantieni"}}},pluginSettingsManager:{customToken:{codeComment:`// I token personalizzati sono stati commentati poich\xE9 devono essere aggiornati al nuovo formato introdotto nella versione 9.0.0 del plugin.
|
|
504
|
+
// Consulta la documentazione (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) per maggiori informazioni.`,deprecated:{part1:"Nella versione 9.0.0 del plugin, il formato di registrazione dei token personalizzati \xE8 cambiato. Aggiorna i tuoi token di conseguenza. Consulta la",part2:"documentazione",part3:"per maggiori informazioni"}},legacyRenameAttachmentsToLowerCase:{part1:"Nella versione 9.0.0 del plugin, l'impostazione",part2:"\xE8 deprecata. Usa il",part3:"formato invece. Vedi la",part4:"documentazione",part5:"per maggiori informazioni"},markdownUrlFormat:{deprecated:{part1:"Hai potenzialmente impostato un valore errato per il",part2:"formato. Consulta la",part3:"documentazione",part4:"per maggiori informazioni",part5:"Questo messaggio non verr\xE0 pi\xF9 mostrato."}},specialCharacters:{part1:"Nella versione 9.16.0 del plugin, il",part2:"valore predefinito dell'impostazione \xE8 stato modificato. Il tuo valore \xE8 stato aggiornato al nuovo valore predefinito."},validation:{defaultImageSizeMustBePercentageOrPixels:"La dimensione predefinita dell'immagine deve essere in pixel o percentuale",invalidCustomTokensCode:"Codice token personalizzati non valido",invalidRegularExpression:"Espressione regolare non valida {{regExp}}",specialCharactersMustNotContainSlash:"I caratteri speciali non devono contenere /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"La sostituzione dei caratteri speciali non deve contenere caratteri di percorso nome file non validi."},version:{part1:"Il tuo file delle impostazioni ",part2:"ha la versione",part3:"che \xE8 pi\xF9 recente della versione corrente del plugin",part4:"Il plugin potrebbe non funzionare come previsto. Aggiorna il plugin all'ultima versione o assicurati che le impostazioni siano corrette."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"Quando si allegano file:"},name:"Modalit\xE0 rinomina allegati"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Quando l'allegato raccolto \xE8 usato da pi\xF9 note:"},name:"Modalit\xE0 raccolta allegato usato da pi\xF9 note"},collectedAttachmentFileName:{description:{part1:"Vedi",part2:"token disponibili",part3:"Lascia vuoto per usare l'impostazione",part4:"al suo posto."},name:"Nome file allegato raccolto"},customTokens:{description:{part1:"Token personalizzati da utilizzare.",part2:"Vedi",part3:"documentazione",part4:"per maggiori informazioni.",part5:"\u26A0\uFE0F I token personalizzati possono essere codice JavaScript arbitrario. Se scritti male, possono causare perdita di dati. Usali a tuo rischio."},name:"Token personalizzati"},defaultImageSize:{description:{part1:"Dimensione predefinita dell'immagine.",part2:"Pu\xF2 essere specificata in pixel",part3:"o come percentuale della dimensione totale dell'immagine",part4:"Lasciare vuoto per usare la dimensione originale."},name:"Dimensione immagine predefinita"},duplicateNameSeparator:{description:{part1:"Quando incolli/trascini un file con lo stesso nome di un file esistente, questo separatore verr\xE0 aggiunto al nome del file.",part2:"Ad es., quando trascini il file",part3:", verr\xE0 rinominato in ",part4:", ecc, ottenendo il primo nome disponibile."},name:"Separatore nome duplicato"},emptyAttachmentFolderBehavior:{description:{part1:"Quando la cartella allegati diventa vuota:"},name:"Comportamento cartella allegati vuota"},excludePaths:{description:{part1:"Escludi note dai seguenti percorsi.",part2:"Inserisci ogni percorso su una nuova riga.",part3:"Puoi usare stringa percorso o",part4:"Se l'impostazione \xE8 vuota, nessuna nota viene esclusa."},name:"Percorsi esclusi"},excludePathsFromAttachmentCollecting:{description:{part1:"Escludi allegati dai seguenti percorsi quando il comando",part2:"Raccogli allegati",part3:"viene eseguito.",part4:"Inserisci ogni percorso su una nuova riga.",part5:"Puoi usare stringa percorso o",part6:"Se l'impostazione \xE8 vuota, nessun percorso viene escluso dalla raccolta allegati."},name:"Percorsi esclusi dalla raccolta allegati"},generatedAttachmentFileName:{description:{part1:"Vedi",part2:"token disponibili"},name:"Nome file allegato generato"},includePaths:{description:{part1:"Includi note dai seguenti percorsi.",part2:"Inserisci ogni percorso su una nuova riga.",part3:"Puoi usare stringa percorso o",part4:"Se l'impostazione \xE8 vuota, tutte le note vengono incluse."},name:"Percorsi inclusi"},jpegQuality:{description:"Pi\xF9 piccola \xE8 la qualit\xE0, maggiore \xE8 il rapporto di compressione.",name:"Qualit\xE0 JPEG"},locationForNewAttachments:{description:{part1:"Inizia con",part2:"per usare percorso relativo.",part3:"Vedi",part4:"token disponibili",part5:"Cartelle punto come",part6:"non sono raccomandate, perch\xE9 Obsidian non le traccia. Potresti aver bisogno di usare",part7:"Plugin per gestirle."},name:"Posizione per nuovi allegati"},markdownUrlFormat:{description:{part1:"Formato per l'URL che sar\xE0 inserito in Markdown.",part2:"Vedi",part3:"token disponibili",part4:"Lascia vuoto per usare il formato predefinito."},name:"Formato URL Markdown"},renameAttachmentsToLowerCase:"Rinomina allegati in minuscolo",renamedAttachmentFileName:{description:{part1:"Vedi",part2:"token disponibili",part3:"Lascia vuoto per usare l'impostazione",part4:"al suo posto."},name:"Nome file allegato rinominato"},resetToSampleCustomTokens:{message:"Sei sicuro di voler ripristinare i token personalizzati ai token personalizzati di esempio? Le tue modifiche andranno perse.",title:"Ripristina ai token personalizzati di esempio"},shouldConvertPastedImagesToJpeg:{description:"Se convertire le immagini incollate in JPEG. Si applica solo quando il contenuto dell'immagine PNG viene incollato direttamente dagli appunti. Tipicamente, per incollare screenshot.",name:"Converti immagini incollate in JPEG"},shouldDeleteOrphanAttachments:{description:"Se abilitato, quando la nota viene eliminata, anche i suoi allegati orfani vengono eliminati.",name:"Elimina allegati orfani"},shouldRenameAttachmentFiles:{description:{part1:"Se abilitato, quando una nota viene rinominata o spostata, i suoi file allegati verranno rinominati secondo l'impostazione",part2:"."},name:"Rinomina file allegati"},shouldRenameAttachmentFolders:{description:"Se rinominare le cartelle allegati quando una nota viene rinominata o spostata.",name:"Rinomina cartelle allegati"},shouldRenameCollectedAttachments:{description:{part1:"Se abilitato, gli allegati elaborati tramite",part2:"Raccogli allegati",part3:"verranno rinominati secondo l'impostazione",part4:"."},name:"Rinomina allegati raccolti"},specialCharacters:{description:{part1:"Caratteri speciali nel nome cartella e file allegato da sostituire o rimuovere.",part2:"Lascia vuoto per preservare i caratteri speciali."},name:"Caratteri speciali"},specialCharactersReplacement:{description:{part1:"Stringa di sostituzione per caratteri speciali nel nome cartella e file allegato.",part2:"Lascia vuoto per rimuovere i caratteri speciali."},name:"Sostituzione caratteri speciali"},timeoutInSeconds:{description:{part1:"Il timeout in secondi per tutte le operazioni.",part2:"Se",part3:"\xE8 impostato, il timeout di esecuzione delle operazioni \xE8 disabilitato."},name:"Timeout in secondi"},treatAsAttachmentExtensions:{description:{part1:"Tratta i file con queste estensioni come allegati.",part2:"Per impostazione predefinita",part3:"e",part4:"i file collegati non sono trattati come allegati e non vengono spostati con la nota.",part5:"Puoi aggiungere estensioni personalizzate, ad es.",part6:", per sovrascrivere questo comportamento."},name:"Tratta come estensioni allegati"}},promptWithPreviewModal:{previewModal:{title:"Anteprima file allegato '{{fullFileName}}'"},title:"Fornisci un valore per il token prompt"},regularExpression:"/espressione regolare/"};var ih={attachmentCollector:{confirm:{part1:"\u30D5\u30A9\u30EB\u30C0\u5185\u306E\u3059\u3079\u3066\u306E\u30CE\u30FC\u30C8\u306E\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u518D\u5E30\u7684\u306B\u53CE\u96C6\u3057\u307E\u3059\u304B\uFF1F",part2:"\u3053\u306E\u64CD\u4F5C\u306F\u5143\u306B\u623B\u305B\u307E\u305B\u3093\u3002"},progressBar:{message:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u53CE\u96C6\u4E2D {{iterationStr}} - '{{noteFilePath}}'.",title:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u53CE\u96C6\u4E2D..."}},buttons:{copy:"\u30B3\u30D4\u30FC",move:"\u79FB\u52D5",previewAttachmentFile:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30D7\u30EC\u30D3\u30E5\u30FC",skip:"\u30B9\u30AD\u30C3\u30D7"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB",part2:"\u304C\u8907\u6570\u306E\u30CE\u30FC\u30C8\u3067\u53C2\u7167\u3055\u308C\u3066\u3044\u307E\u3059\u3002"},heading:"\u8907\u6570\u306E\u30CE\u30FC\u30C8\u3067\u4F7F\u7528\u3055\u308C\u3066\u3044\u308B\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u53CE\u96C6",shouldUseSameActionForOtherProblematicAttachmentsToggle:"\u4ED6\u306E\u554F\u984C\u306E\u3042\u308B\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306B\u3082\u540C\u3058\u30A2\u30AF\u30B7\u30E7\u30F3\u3092\u4F7F\u7528\u3059\u3079\u304D"},commands:{collectAttachmentsCurrentFolder:"\u73FE\u5728\u306E\u30D5\u30A9\u30EB\u30C0\u306E\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u53CE\u96C6",collectAttachmentsCurrentNote:"\u73FE\u5728\u306E\u30CE\u30FC\u30C8\u306E\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u53CE\u96C6",collectAttachmentsEntireVault:"\u30DC\u30EB\u30C8\u5168\u4F53\u306E\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u53CE\u96C6"},menuItems:{collectAttachmentsInFile:"\u30D5\u30A1\u30A4\u30EB\u5185\u306E\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u53CE\u96C6",collectAttachmentsInFiles:"\u8907\u6570\u30D5\u30A1\u30A4\u30EB\u5185\u306E\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u53CE\u96C6"},notice:{collectingAttachments:"'{{noteFilePath}}'\u306E\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u53CE\u96C6\u4E2D",collectingAttachmentsCancelled:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u53CE\u96C6\u304C\u30AD\u30E3\u30F3\u30BB\u30EB\u3055\u308C\u307E\u3057\u305F\u3002\u8A73\u7D30\u306F\u30B3\u30F3\u30BD\u30FC\u30EB\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002",generatedAttachmentFileNameIsInvalid:{part1:`\u751F\u6210\u3055\u308C\u305F\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u540D '{{path}}' \u304C\u7121\u52B9\u3067\u3059\u3002
|
|
505
|
+
{{validationMessage}}
|
|
506
|
+
\u8A2D\u5B9A\u3092`,part2:"\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},notePathIsIgnored:"\u30CE\u30FC\u30C8\u30D1\u30B9\u304C\u7121\u8996\u3055\u308C\u3066\u3044\u307E\u3059"},obsidianDevUtils:{buttons:{cancel:"\u30AD\u30E3\u30F3\u30BB\u30EB",ok:"OK"},dataview:{itemsPerPage:"\u30DA\u30FC\u30B8\u3042\u305F\u308A\u306E\u9805\u76EE\u6570:",jumpToPage:"\u30DA\u30FC\u30B8\u306B\u30B8\u30E3\u30F3\u30D7:"},notices:{attachmentIsStillUsed:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB {{attachmentPath}} \u306F\u4ED6\u306E\u30CE\u30FC\u30C8\u3067\u307E\u3060\u4F7F\u7528\u3055\u308C\u3066\u3044\u307E\u3059\u3002\u524A\u9664\u3055\u308C\u307E\u305B\u3093\u3002",unhandledError:"\u672A\u51E6\u7406\u306E\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F\u3002\u8A73\u7D30\u306B\u3064\u3044\u3066\u306F\u30B3\u30F3\u30BD\u30FC\u30EB\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002"}},pluginSettings:{attachmentRenameMode:{all:{description:"\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB\u304C\u30EA\u30CD\u30FC\u30E0\u3055\u308C\u307E\u3059\u3002",displayText:"\u3059\u3079\u3066"},none:{description:"\u540D\u524D\u304C\u4FDD\u6301\u3055\u308C\u307E\u3059\u3002",displayText:"\u306A\u3057"},onlyPastedImages:{description:"\u8CBC\u308A\u4ED8\u3051\u305F\u753B\u50CF\u306E\u307F\u304C\u30EA\u30CD\u30FC\u30E0\u3055\u308C\u307E\u3059\u3002PNG\u753B\u50CF\u306E\u5185\u5BB9\u304C\u30AF\u30EA\u30C3\u30D7\u30DC\u30FC\u30C9\u304B\u3089\u76F4\u63A5\u8CBC\u308A\u4ED8\u3051\u3089\u308C\u305F\u5834\u5408\u306B\u306E\u307F\u9069\u7528\u3055\u308C\u307E\u3059\u3002\u901A\u5E38\u3001\u30B9\u30AF\u30EA\u30FC\u30F3\u30B7\u30E7\u30C3\u30C8\u306E\u8CBC\u308A\u4ED8\u3051\u306B\u4F7F\u7528\u3055\u308C\u307E\u3059\u3002",displayText:"\u8CBC\u308A\u4ED8\u3051\u305F\u753B\u50CF\u306E\u307F"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u53CE\u96C6\u3092\u30AD\u30E3\u30F3\u30BB\u30EB\u3057\u307E\u3059\u3002",displayText:"\u30AD\u30E3\u30F3\u30BB\u30EB"},copy:{description:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u65B0\u3057\u3044\u5834\u6240\u306B\u30B3\u30D4\u30FC\u3057\u307E\u3059\u3002",displayText:"\u30B3\u30D4\u30FC"},move:{description:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u65B0\u3057\u3044\u5834\u6240\u306B\u79FB\u52D5\u3057\u307E\u3059\u3002",displayText:"\u79FB\u52D5"},prompt:{description:"\u30E6\u30FC\u30B6\u30FC\u306B\u30A2\u30AF\u30B7\u30E7\u30F3\u3092\u9078\u629E\u3059\u308B\u3088\u3046\u4FC3\u3057\u307E\u3059\u3002",displayText:"\u30D7\u30ED\u30F3\u30D7\u30C8"},skip:{description:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u30B9\u30AD\u30C3\u30D7\u3057\u3066\u6B21\u306E\u30D5\u30A1\u30A4\u30EB\u306B\u9032\u307F\u307E\u3059\u3002",displayText:"\u30B9\u30AD\u30C3\u30D7"}},defaultImageSizeDimension:{height:"\u9AD8\u3055",width:"\u5E45"},emptyAttachmentFolderBehavior:{delete:{description:"\u7A7A\u306E\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u30D5\u30A9\u30EB\u30C0\u3092\u524A\u9664\u3057\u307E\u3059\u3002",displayText:"\u524A\u9664"},deleteWithEmptyParents:{description:"\u7A7A\u306E\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u30D5\u30A9\u30EB\u30C0\u3068\u305D\u306E\u7A7A\u306E\u89AA\u30D5\u30A9\u30EB\u30C0\u3092\u524A\u9664\u3057\u307E\u3059\u3002",displayText:"\u7A7A\u306E\u89AA\u30D5\u30A9\u30EB\u30C0\u3068\u4E00\u7DD2\u306B\u524A\u9664"},keep:{description:"\u7A7A\u306E\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u30D5\u30A9\u30EB\u30C0\u3092\u4FDD\u6301\u3057\u307E\u3059\u3002",displayText:"\u4FDD\u6301"}}},pluginSettingsManager:{customToken:{codeComment:`// \u30AB\u30B9\u30BF\u30E0\u30C8\u30FC\u30AF\u30F3\u306F\u3001\u30D7\u30E9\u30B0\u30A4\u30F3 \u30D0\u30FC\u30B8\u30E7\u30F3 9.0.0 \u3067\u5C0E\u5165\u3055\u308C\u305F\u65B0\u3057\u3044\u5F62\u5F0F\u306B\u66F4\u65B0\u3059\u308B\u5FC5\u8981\u304C\u3042\u308B\u305F\u3081\u3001\u30B3\u30E1\u30F3\u30C8\u30A2\u30A6\u30C8\u3055\u308C\u307E\u3057\u305F\u3002
|
|
507
|
+
// \u8A73\u7D30\u306B\u3064\u3044\u3066\u306F\u3001\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8 (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) \u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044\u3002`,deprecated:{part1:"\u30D7\u30E9\u30B0\u30A4\u30F3 \u30D0\u30FC\u30B8\u30E7\u30F3 9.0.0 \u3067\u306F\u3001\u30AB\u30B9\u30BF\u30E0\u30C8\u30FC\u30AF\u30F3\u767B\u9332\u306E\u5F62\u5F0F\u304C\u5909\u66F4\u3055\u308C\u307E\u3057\u305F\u3002\u30C8\u30FC\u30AF\u30F3\u3092\u9069\u5207\u306B\u66F4\u65B0\u3057\u3066\u304F\u3060\u3055\u3044\u3002\u8A73\u7D30\u306B\u3064\u3044\u3066\u306F",part2:"\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8",part3:"\u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044"}},legacyRenameAttachmentsToLowerCase:{part1:"\u30D7\u30E9\u30B0\u30A4\u30F3 \u30D0\u30FC\u30B8\u30E7\u30F3 9.0.0 \u3067\u306F\u3001",part2:"\u8A2D\u5B9A\u306F\u975E\u63A8\u5968\u3067\u3059\u3002\u4EE3\u308F\u308A\u306B",part3:"\u5F62\u5F0F\u3092\u4F7F\u7528\u3057\u3066\u304F\u3060\u3055\u3044\u3002\u8A73\u7D30\u306B\u3064\u3044\u3066\u306F",part4:"\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8",part5:"\u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044"},markdownUrlFormat:{deprecated:{part1:"\u4EE5\u4E0B\u306E\u5F62\u5F0F\u306B\u5BFE\u3057\u3066\u6F5C\u5728\u7684\u306B\u6B63\u3057\u304F\u306A\u3044\u5024\u304C\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u307E\u3059",part2:"\u3002\u8A73\u7D30\u306B\u3064\u3044\u3066\u306F",part3:"\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8",part4:"\u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044",part5:"\u3053\u306E\u30E1\u30C3\u30BB\u30FC\u30B8\u306F\u518D\u5EA6\u8868\u793A\u3055\u308C\u307E\u305B\u3093\u3002"}},specialCharacters:{part1:"\u30D7\u30E9\u30B0\u30A4\u30F3 \u30D0\u30FC\u30B8\u30E7\u30F3 9.16.0 \u3067\u306F\u3001",part2:"\u30C7\u30D5\u30A9\u30EB\u30C8\u8A2D\u5B9A\u5024\u304C\u5909\u66F4\u3055\u308C\u307E\u3057\u305F\u3002\u8A2D\u5B9A\u5024\u306F\u65B0\u3057\u3044\u30C7\u30D5\u30A9\u30EB\u30C8\u5024\u306B\u66F4\u65B0\u3055\u308C\u307E\u3057\u305F\u3002"},validation:{defaultImageSizeMustBePercentageOrPixels:"\u30C7\u30D5\u30A9\u30EB\u30C8\u306E\u753B\u50CF\u30B5\u30A4\u30BA\u306F\u30D4\u30AF\u30BB\u30EB\u307E\u305F\u306F\u30D1\u30FC\u30BB\u30F3\u30C6\u30FC\u30B8\u3067\u6307\u5B9A\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059",invalidCustomTokensCode:"\u7121\u52B9\u306A\u30AB\u30B9\u30BF\u30E0\u30C8\u30FC\u30AF\u30F3\u30B3\u30FC\u30C9",invalidRegularExpression:"\u7121\u52B9\u306A\u6B63\u898F\u8868\u73FE {{regExp}}",specialCharactersMustNotContainSlash:"\u7279\u6B8A\u6587\u5B57\u306B\u306F / \u3092\u542B\u3081\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"\u7279\u6B8A\u6587\u5B57\u306E\u7F6E\u63DB\u306B\u306F\u7121\u52B9\u306A\u30D5\u30A1\u30A4\u30EB\u540D\u30D1\u30B9\u6587\u5B57\u3092\u542B\u3081\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093\u3002"},version:{part1:"\u8A2D\u5B9A\u30D5\u30A1\u30A4\u30EB ",part2:"\u306E\u30D0\u30FC\u30B8\u30E7\u30F3",part3:"\u306F\u73FE\u5728\u306E\u30D7\u30E9\u30B0\u30A4\u30F3\u30D0\u30FC\u30B8\u30E7\u30F3\u3088\u308A\u65B0\u3057\u3044\u3067\u3059",part4:"\u30D7\u30E9\u30B0\u30A4\u30F3\u304C\u671F\u5F85\u901A\u308A\u306B\u52D5\u4F5C\u3057\u306A\u3044\u53EF\u80FD\u6027\u304C\u3042\u308A\u307E\u3059\u3002\u30D7\u30E9\u30B0\u30A4\u30F3\u3092\u6700\u65B0\u30D0\u30FC\u30B8\u30E7\u30F3\u306B\u66F4\u65B0\u3059\u308B\u304B\u3001\u8A2D\u5B9A\u304C\u6B63\u3057\u3044\u3053\u3068\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002"}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"\u30D5\u30A1\u30A4\u30EB\u3092\u6DFB\u4ED8\u3059\u308B\u3068\u304D:"},name:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u30EA\u30CD\u30FC\u30E0\u30E2\u30FC\u30C9"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"\u53CE\u96C6\u3055\u308C\u305F\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u304C\u8907\u6570\u306E\u30CE\u30FC\u30C8\u3067\u4F7F\u7528\u3055\u308C\u3066\u3044\u308B\u3068\u304D:"},name:"\u8907\u6570\u306E\u30CE\u30FC\u30C8\u3067\u4F7F\u7528\u3055\u308C\u308B\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u53CE\u96C6\u30E2\u30FC\u30C9"},collectedAttachmentFileName:{description:{part1:"\u5229\u7528\u53EF\u80FD\u306A",part2:"\u30C8\u30FC\u30AF\u30F3\u3092\u53C2\u7167",part3:"\u4EE3\u308F\u308A\u306B",part4:"\u8A2D\u5B9A\u3092\u4F7F\u7528\u3059\u308B\u5834\u5408\u306F\u7A7A\u767D\u306E\u307E\u307E\u306B\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},name:"\u53CE\u96C6\u3055\u308C\u305F\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u540D"},customTokens:{description:{part1:"\u4F7F\u7528\u3059\u308B\u30AB\u30B9\u30BF\u30E0\u30C8\u30FC\u30AF\u30F3\u3002",part2:"\u8A73\u7D30\u306B\u3064\u3044\u3066\u306F",part3:"\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8",part4:"\u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044\u3002",part5:"\u26A0\uFE0F \u30AB\u30B9\u30BF\u30E0\u30C8\u30FC\u30AF\u30F3\u306F\u4EFB\u610F\u306EJavaScript\u30B3\u30FC\u30C9\u306B\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002\u4E0D\u9069\u5207\u306B\u8A18\u8FF0\u3055\u308C\u305F\u5834\u5408\u3001\u30C7\u30FC\u30BF\u640D\u5931\u3092\u5F15\u304D\u8D77\u3053\u3059\u53EF\u80FD\u6027\u304C\u3042\u308A\u307E\u3059\u3002\u81EA\u5DF1\u8CAC\u4EFB\u3067\u4F7F\u7528\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},name:"\u30AB\u30B9\u30BF\u30E0\u30C8\u30FC\u30AF\u30F3"},defaultImageSize:{description:{part1:"\u30C7\u30D5\u30A9\u30EB\u30C8\u306E\u753B\u50CF\u30B5\u30A4\u30BA\u3067\u3059\u3002",part2:"\u30D4\u30AF\u30BB\u30EB\u3067\u6307\u5B9A\u3067\u304D\u307E\u3059",part3:"\u307E\u305F\u306F\u753B\u50CF\u5168\u4F53\u306E\u30B5\u30A4\u30BA\u306E\u30D1\u30FC\u30BB\u30F3\u30C6\u30FC\u30B8\u3067\u6307\u5B9A\u3067\u304D\u307E\u3059",part4:"\u5143\u306E\u753B\u50CF\u30B5\u30A4\u30BA\u3092\u4F7F\u7528\u3059\u308B\u5834\u5408\u306F\u7A7A\u6B04\u306B\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},name:"\u30C7\u30D5\u30A9\u30EB\u30C8\u306E\u753B\u50CF\u30B5\u30A4\u30BA"},duplicateNameSeparator:{description:{part1:"\u65E2\u5B58\u306E\u30D5\u30A1\u30A4\u30EB\u3068\u540C\u3058\u540D\u524D\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u8CBC\u308A\u4ED8\u3051/\u30C9\u30E9\u30C3\u30B0\u3059\u308B\u3068\u304D\u3001\u3053\u306E\u533A\u5207\u308A\u6587\u5B57\u304C\u30D5\u30A1\u30A4\u30EB\u540D\u306B\u8FFD\u52A0\u3055\u308C\u307E\u3059\u3002",part2:"\u4F8B\uFF1A\u30D5\u30A1\u30A4\u30EB\u3092\u30C9\u30E9\u30C3\u30B0\u3059\u308B\u3068\u304D",part3:"\u3001\u305D\u308C\u306F",part4:"\u306A\u3069\u306B\u30EA\u30CD\u30FC\u30E0\u3055\u308C\u3001\u6700\u521D\u306B\u5229\u7528\u53EF\u80FD\u306A\u540D\u524D\u3092\u53D6\u5F97\u3057\u307E\u3059\u3002"},name:"\u91CD\u8907\u540D\u533A\u5207\u308A\u6587\u5B57"},emptyAttachmentFolderBehavior:{description:{part1:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u30D5\u30A9\u30EB\u30C0\u304C\u7A7A\u306B\u306A\u3063\u305F\u3068\u304D:"},name:"\u7A7A\u306E\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u30D5\u30A9\u30EB\u30C0\u306E\u52D5\u4F5C"},excludePaths:{description:{part1:"\u4EE5\u4E0B\u306E\u30D1\u30B9\u304B\u3089\u30CE\u30FC\u30C8\u3092\u9664\u5916\u3057\u307E\u3059\u3002",part2:"\u5404\u30D1\u30B9\u3092\u65B0\u3057\u3044\u884C\u306B\u633F\u5165\u3057\u3066\u304F\u3060\u3055\u3044\u3002",part3:"\u30D1\u30B9\u6587\u5B57\u5217\u307E\u305F\u306F",part4:"\u3092\u4F7F\u7528\u3067\u304D\u307E\u3059\u3002\u8A2D\u5B9A\u304C\u7A7A\u306E\u5834\u5408\u3001\u30CE\u30FC\u30C8\u306F\u9664\u5916\u3055\u308C\u307E\u305B\u3093\u3002"},name:"\u9664\u5916\u30D1\u30B9"},excludePathsFromAttachmentCollecting:{description:{part1:"\u4EE5\u4E0B\u306E\u30D1\u30B9\u304B\u3089\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u9664\u5916\u3057\u307E\u3059",part2:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u53CE\u96C6",part3:"\u30B3\u30DE\u30F3\u30C9\u304C\u5B9F\u884C\u3055\u308C\u308B\u3068\u304D\u3002",part4:"\u5404\u30D1\u30B9\u3092\u65B0\u3057\u3044\u884C\u306B\u633F\u5165\u3057\u3066\u304F\u3060\u3055\u3044\u3002",part5:"\u30D1\u30B9\u6587\u5B57\u5217\u307E\u305F\u306F",part6:"\u3092\u4F7F\u7528\u3067\u304D\u307E\u3059\u3002\u8A2D\u5B9A\u304C\u7A7A\u306E\u5834\u5408\u3001\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u53CE\u96C6\u304B\u3089\u30D1\u30B9\u306F\u9664\u5916\u3055\u308C\u307E\u305B\u3093\u3002"},name:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u53CE\u96C6\u304B\u3089\u9664\u5916\u3059\u308B\u30D1\u30B9"},generatedAttachmentFileName:{description:{part1:"\u5229\u7528\u53EF\u80FD\u306A",part2:"\u30C8\u30FC\u30AF\u30F3\u3092\u53C2\u7167"},name:"\u751F\u6210\u3055\u308C\u305F\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u540D"},includePaths:{description:{part1:"\u4EE5\u4E0B\u306E\u30D1\u30B9\u304B\u3089\u30CE\u30FC\u30C8\u3092\u542B\u3081\u307E\u3059\u3002",part2:"\u5404\u30D1\u30B9\u3092\u65B0\u3057\u3044\u884C\u306B\u633F\u5165\u3057\u3066\u304F\u3060\u3055\u3044\u3002",part3:"\u30D1\u30B9\u6587\u5B57\u5217\u307E\u305F\u306F",part4:"\u3092\u4F7F\u7528\u3067\u304D\u307E\u3059\u3002\u8A2D\u5B9A\u304C\u7A7A\u306E\u5834\u5408\u3001\u3059\u3079\u3066\u306E\u30CE\u30FC\u30C8\u304C\u542B\u307E\u308C\u307E\u3059\u3002"},name:"\u542B\u3081\u308B\u30D1\u30B9"},jpegQuality:{description:"\u54C1\u8CEA\u304C\u4F4E\u3044\u307B\u3069\u3001\u5727\u7E2E\u7387\u304C\u9AD8\u304F\u306A\u308A\u307E\u3059\u3002",name:"JPEG\u54C1\u8CEA"},locationForNewAttachments:{description:{part1:"\u76F8\u5BFE\u30D1\u30B9\u3092\u4F7F\u7528\u3059\u308B\u306B\u306F",part2:"\u3067\u59CB\u3081\u3066\u304F\u3060\u3055\u3044\u3002",part3:"\u5229\u7528\u53EF\u80FD\u306A",part4:"\u30C8\u30FC\u30AF\u30F3\u3092\u53C2\u7167",part5:"\u30C9\u30C3\u30C8\u30D5\u30A9\u30EB\u30C0\uFF08\u4F8B\uFF1A",part6:"\uFF09\u306F\u63A8\u5968\u3055\u308C\u307E\u305B\u3093\u3002Obsidian\u304C\u8FFD\u8DE1\u3057\u306A\u3044\u305F\u3081\u3067\u3059\u3002\u7BA1\u7406\u3059\u308B\u306B\u306F",part7:"\u30D7\u30E9\u30B0\u30A4\u30F3\u304C\u5FC5\u8981\u306A\u5834\u5408\u304C\u3042\u308A\u307E\u3059\u3002"},name:"\u65B0\u3057\u3044\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u5834\u6240"},markdownUrlFormat:{description:{part1:"Markdown\u306B\u633F\u5165\u3055\u308C\u308BURL\u306E\u5F62\u5F0F\u3002",part2:"\u5229\u7528\u53EF\u80FD\u306A",part3:"\u30C8\u30FC\u30AF\u30F3\u3092\u53C2\u7167",part4:"\u30C7\u30D5\u30A9\u30EB\u30C8\u5F62\u5F0F\u3092\u4F7F\u7528\u3059\u308B\u306B\u306F\u7A7A\u767D\u306E\u307E\u307E\u306B\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},name:"Markdown URL\u5F62\u5F0F"},renameAttachmentsToLowerCase:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u5C0F\u6587\u5B57\u306B\u30EA\u30CD\u30FC\u30E0",renamedAttachmentFileName:{description:{part1:"\u5229\u7528\u53EF\u80FD\u306A",part2:"\u30C8\u30FC\u30AF\u30F3\u3092\u53C2\u7167",part3:"\u4EE3\u308F\u308A\u306B",part4:"\u8A2D\u5B9A\u3092\u4F7F\u7528\u3059\u308B\u5834\u5408\u306F\u7A7A\u767D\u306E\u307E\u307E\u306B\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},name:"\u30EA\u30CD\u30FC\u30E0\u3055\u308C\u305F\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u540D"},resetToSampleCustomTokens:{message:"\u30AB\u30B9\u30BF\u30E0\u30C8\u30FC\u30AF\u30F3\u3092\u30B5\u30F3\u30D7\u30EB\u30AB\u30B9\u30BF\u30E0\u30C8\u30FC\u30AF\u30F3\u306B\u30EA\u30BB\u30C3\u30C8\u3057\u3066\u3082\u3088\u308D\u3057\u3044\u3067\u3059\u304B\uFF1F\u5909\u66F4\u306F\u5931\u308F\u308C\u307E\u3059\u3002",title:"\u30B5\u30F3\u30D7\u30EB\u30AB\u30B9\u30BF\u30E0\u30C8\u30FC\u30AF\u30F3\u306B\u30EA\u30BB\u30C3\u30C8"},shouldConvertPastedImagesToJpeg:{description:"\u8CBC\u308A\u4ED8\u3051\u305F\u753B\u50CF\u3092JPEG\u306B\u5909\u63DB\u3059\u308B\u304B\u3069\u3046\u304B\u3002PNG\u753B\u50CF\u306E\u5185\u5BB9\u304C\u30AF\u30EA\u30C3\u30D7\u30DC\u30FC\u30C9\u304B\u3089\u76F4\u63A5\u8CBC\u308A\u4ED8\u3051\u3089\u308C\u305F\u5834\u5408\u306B\u306E\u307F\u9069\u7528\u3055\u308C\u307E\u3059\u3002\u901A\u5E38\u3001\u30B9\u30AF\u30EA\u30FC\u30F3\u30B7\u30E7\u30C3\u30C8\u306E\u8CBC\u308A\u4ED8\u3051\u306B\u4F7F\u7528\u3055\u308C\u307E\u3059\u3002",name:"\u8CBC\u308A\u4ED8\u3051\u305F\u753B\u50CF\u3092JPEG\u306B\u5909\u63DB\u3059\u308B"},shouldDeleteOrphanAttachments:{description:"\u6709\u52B9\u306B\u3059\u308B\u3068\u3001\u30CE\u30FC\u30C8\u304C\u524A\u9664\u3055\u308C\u305F\u3068\u304D\u3001\u305D\u306E\u5B64\u7ACB\u3057\u305F\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3082\u524A\u9664\u3055\u308C\u307E\u3059\u3002",name:"\u5B64\u7ACB\u3057\u305F\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u524A\u9664\u3059\u308B"},shouldRenameAttachmentFiles:{description:{part1:"\u6709\u52B9\u306B\u3059\u308B\u3068\u3001\u30CE\u30FC\u30C8\u304C\u30EA\u30CD\u30FC\u30E0\u307E\u305F\u306F\u79FB\u52D5\u3055\u308C\u305F\u3068\u304D\u306B\u3001\u305D\u306E\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F",part2:"\u8A2D\u5B9A\u306B\u5F93\u3063\u3066\u30EA\u30CD\u30FC\u30E0\u3055\u308C\u307E\u3059\u3002"},name:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u30EA\u30CD\u30FC\u30E0\u3059\u308B"},shouldRenameAttachmentFolders:{description:"\u30CE\u30FC\u30C8\u304C\u30EA\u30CD\u30FC\u30E0\u307E\u305F\u306F\u79FB\u52D5\u3055\u308C\u305F\u3068\u304D\u306B\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u30D5\u30A9\u30EB\u30C0\u3092\u30EA\u30CD\u30FC\u30E0\u3059\u308B\u304B\u3069\u3046\u304B\u3002",name:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u30D5\u30A9\u30EB\u30C0\u3092\u30EA\u30CD\u30FC\u30E0\u3059\u308B"},shouldRenameCollectedAttachments:{description:{part1:"\u6709\u52B9\u306B\u3059\u308B\u3068\u3001",part2:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u53CE\u96C6",part3:"\u30B3\u30DE\u30F3\u30C9\u3092\u4ECB\u3057\u3066\u51E6\u7406\u3055\u308C\u305F\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F",part4:"\u8A2D\u5B9A\u306B\u5F93\u3063\u3066\u30EA\u30CD\u30FC\u30E0\u3055\u308C\u307E\u3059\u3002"},name:"\u53CE\u96C6\u3055\u308C\u305F\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3092\u30EA\u30CD\u30FC\u30E0\u3059\u308B"},specialCharacters:{description:{part1:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u30D5\u30A9\u30EB\u30C0\u3068\u30D5\u30A1\u30A4\u30EB\u540D\u3067\u7F6E\u63DB\u307E\u305F\u306F\u524A\u9664\u3059\u308B\u7279\u6B8A\u6587\u5B57\u3002",part2:"\u7279\u6B8A\u6587\u5B57\u3092\u4FDD\u6301\u3059\u308B\u306B\u306F\u7A7A\u767D\u306E\u307E\u307E\u306B\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},name:"\u7279\u6B8A\u6587\u5B57"},specialCharactersReplacement:{description:{part1:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u30D5\u30A9\u30EB\u30C0\u3068\u30D5\u30A1\u30A4\u30EB\u540D\u306E\u7279\u6B8A\u6587\u5B57\u306E\u7F6E\u63DB\u6587\u5B57\u5217\u3002",part2:"\u7279\u6B8A\u6587\u5B57\u3092\u524A\u9664\u3059\u308B\u306B\u306F\u7A7A\u767D\u306E\u307E\u307E\u306B\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},name:"\u7279\u6B8A\u6587\u5B57\u306E\u7F6E\u63DB"},timeoutInSeconds:{description:{part1:"\u3059\u3079\u3066\u306E\u64CD\u4F5C\u306E\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8\uFF08\u79D2\uFF09\u3002",part2:"\u3082\u3057",part3:"\u304C\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u308B\u5834\u5408\u3001\u64CD\u4F5C\u306E\u5B9F\u884C\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8\u306F\u7121\u52B9\u306B\u306A\u308A\u307E\u3059\u3002"},name:"\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8\uFF08\u79D2\uFF09"},treatAsAttachmentExtensions:{description:{part1:"\u3053\u308C\u3089\u306E\u62E1\u5F35\u5B50\u3092\u6301\u3064\u30D5\u30A1\u30A4\u30EB\u3092\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3068\u3057\u3066\u6271\u3044\u307E\u3059\u3002",part2:"\u30C7\u30D5\u30A9\u30EB\u30C8\u3067\u306F",part3:"\u3068",part4:"\u30EA\u30F3\u30AF\u3055\u308C\u305F\u30D5\u30A1\u30A4\u30EB\u306F\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3068\u3057\u3066\u6271\u308F\u308C\u305A\u3001\u30CE\u30FC\u30C8\u3068\u4E00\u7DD2\u306B\u79FB\u52D5\u3055\u308C\u307E\u305B\u3093\u3002",part5:"\u3053\u306E\u52D5\u4F5C\u3092\u30AA\u30FC\u30D0\u30FC\u30E9\u30A4\u30C9\u3059\u308B\u305F\u3081\u306B\u3001\u30AB\u30B9\u30BF\u30E0\u62E1\u5F35\u5B50\uFF08\u4F8B\uFF1A",part6:"\uFF09\u3092\u8FFD\u52A0\u3067\u304D\u307E\u3059\u3002"},name:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u62E1\u5F35\u5B50\u3068\u3057\u3066\u6271\u3046"}},promptWithPreviewModal:{previewModal:{title:"\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30D7\u30EC\u30D3\u30E5\u30FC '{{fullFileName}}'"},title:"\u30D7\u30ED\u30F3\u30D7\u30C8\u30C8\u30FC\u30AF\u30F3\u306E\u5024\u3092\u63D0\u4F9B\u3057\u3066\u304F\u3060\u3055\u3044"},regularExpression:"/\u6B63\u898F\u8868\u73FE/"};var oh={attachmentCollector:{confirm:{part1:"\u178F\u17BE\u17A2\u17D2\u1793\u1780\u1785\u1784\u17CB\u1794\u17D2\u179A\u1798\u17BC\u179B\u17AF\u1780\u179F\u17B6\u179A\u1797\u17D2\u1787\u17B6\u1794\u17CB\u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB\u1780\u17C6\u178E\u178F\u17CB\u178F\u17D2\u179A\u17B6\u1791\u17B6\u17C6\u1784\u17A2\u179F\u17CB\u1780\u17D2\u1793\u17BB\u1784\u1790\u178F\u178A\u17C4\u1799\u1792\u17D2\u179C\u17BE\u1787\u17B6\u1785\u17D2\u179A\u17BE\u1793\u1780\u1798\u17D2\u179A\u17B7\u178F (recursive) \u178A\u17C2\u179A\u17AC\u1791\u17C1?",part2:"\u1794\u17D2\u179A\u178F\u17B7\u1794\u178F\u17D2\u178F\u17B7\u1780\u17B6\u179A\u1793\u17C1\u17C7\u1798\u17B7\u1793\u17A2\u17B6\u1785\u1794\u1784\u17D2\u179A\u17D2\u1780\u17B6\u1794\u179C\u17B7\u1789\u1794\u17B6\u1793\u1791\u17C1\u17D4"},progressBar:{message:"\u1780\u17C6\u1796\u17BB\u1784\u1794\u17D2\u179A\u1780\u17D0\u1794\u17A2\u1791\u17B9\u1784\u178A\u17C1\u179A {{iterationStr}} - '{{noteFilePath}}'.",title:"\u1780\u17C6\u1796\u17BB\u1784\u1794\u17D2\u179A\u1780\u17D0\u1794\u17A2\u1791\u17B9\u1784\u178A\u17C1\u179A..."}},buttons:{copy:"\u1785\u17C6\u179B\u1784",move:"\u1795\u17D2\u179B\u17B6\u179F\u17CB\u1791\u17B8",previewAttachmentFile:"\u1794\u17D2\u179A\u17C1\u179C\u178A\u17B6\u1780\u17CB\u1798\u17BE\u179B\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u1793\u17B6\u1794\u17CB",skip:"\u179A\u17C6\u179B\u1784"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB",part2:"\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u17A2\u17B6\u1793\u1780\u17C5\u178A\u17C4\u1799\u1780\u17B6\u179A\u1785\u17C6\u178E\u17B6\u17C6\u1785\u17D2\u179A\u17BE\u1793."},heading:"\u1780\u17C6\u1796\u17BB\u1784\u1794\u17D2\u179A\u1780\u17D0\u1794\u17A2\u1791\u17B9\u1784\u178A\u17C1\u179A\u178A\u17C1\u179B\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u17D2\u179A\u17BE\u178A\u17C4\u1799\u1780\u17B6\u179A\u1785\u17C6\u178E\u17B6\u17C6\u1785\u17D2\u179A\u17BE\u1793",shouldUseSameActionForOtherProblematicAttachmentsToggle:"\u1782\u17BB\u179A\u1794\u17D2\u179A\u17BE\u1780\u17B6\u179A\u1794\u17D2\u179A\u178F\u17B7\u1794\u178F\u17D2\u178F\u17B7\u1780\u17B6\u179A\u178A\u17C2\u179B\u178A\u17C9\u1780\u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB\u17A2\u1791\u17B9\u1784\u178A\u17C1\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u178A\u17C1\u179B\u1798\u17B6\u1793\u1794\u1789\u17D2\u17A0\u17B6\u1795\u17D2\u179F\u17C1\u1784\u1791\u17C0\u178F"},commands:{collectAttachmentsCurrentFolder:"\u1780\u17C6\u1796\u17BB\u1784\u1794\u17D2\u179A\u1780\u17D0\u1794\u17A2\u1791\u17B9\u1784\u178A\u17C1\u179A\u1793\u17C5\u1780\u17D2\u1793\u17BB\u1784\u1791\u17B9\u178F\u17C2\u1780\u1794\u1785\u17D2\u1785\u17BB\u1794\u17D2\u1794\u1793\u17D2\u1793",collectAttachmentsCurrentNote:"\u1780\u17C6\u1796\u17BB\u1784\u1794\u17D2\u179A\u1780\u17D0\u1794\u17A2\u1791\u17B9\u1784\u178A\u17C1\u179A\u1793\u17C5\u1780\u17D2\u1793\u17BB\u1784\u1780\u17B6\u179A\u1785\u17C6\u178E\u17B6\u17C6\u1794\u1785\u17D2\u1785\u17BB\u1794\u17D2\u1794\u1793\u17D2\u1793",collectAttachmentsEntireVault:"\u1780\u17C6\u1796\u17BB\u1784\u1794\u17D2\u179A\u1780\u17D0\u1794\u17A2\u1791\u17B9\u1784\u178A\u17C1\u179A\u1793\u17C5\u1780\u17D2\u1793\u17BB\u1784\u1780\u17D2\u1793\u17B7\u1793\u1782\u17D2\u179A\u17B6\u1794\u17CB\u1798\u17BD\u1799"},menuItems:{collectAttachmentsInFile:"\u1794\u17D2\u179A\u1798\u17BC\u179B\u17AF\u1780\u179F\u17B6\u179A\u1797\u17D2\u1787\u17B6\u1794\u17CB\u1780\u17D2\u1793\u17BB\u1784\u17AF\u1780\u179F\u17B6\u179A",collectAttachmentsInFiles:"\u1794\u17D2\u179A\u1798\u17BC\u179B\u17AF\u1780\u179F\u17B6\u179A\u1797\u17D2\u1787\u17B6\u1794\u17CB\u1780\u17D2\u1793\u17BB\u1784\u17AF\u1780\u179F\u17B6\u179A\u1785\u17D2\u179A\u17BE\u1793"},notice:{collectingAttachments:"\u1780\u17C6\u1796\u17BB\u1784\u1794\u17D2\u179A\u1780\u17D0\u1794\u17A2\u1791\u17B9\u1784\u178A\u17C1\u179A\u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB '{{noteFilePath}}'",collectingAttachmentsCancelled:"\u1780\u17B6\u179A\u1780\u17C6\u1796\u17BB\u1784\u1794\u17D2\u179A\u1780\u17D0\u1794\u17A2\u1791\u17B9\u1784\u178A\u17C1\u179A\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u17BB\u1780\u1785\u17C1\u179B\u17D4 \u1798\u17BE\u179B\u1780\u1793\u17D2\u179F\u17C4\u179B\u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB\u179A\u17B6\u1799\u179B\u17C6\u17A2\u17B7\u178F\u17D4",generatedAttachmentFileNameIsInvalid:{part1:`\u1788\u17D2\u1798\u17C4\u17C7\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u178A\u17C1\u179B\u1794\u17B6\u1793\u1794\u1784\u17D2\u1780\u17BE\u178F '{{path}}' \u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C\u1791\u17C1\u17D4
|
|
508
|
+
{{validationMessage}}
|
|
509
|
+
\u1796\u17B7\u1793\u17B7\u178F\u17D2\u1799\u1798\u17BE\u179B`,part2:"\u1780\u17B6\u179A\u1780\u17C6\u178E\u178F\u17CB\u179A\u1794\u179F\u17CB\u17A2\u17D2\u1793\u1780\u17D4"},notePathIsIgnored:"\u1792\u17D2\u1793\u17B6\u17C6\u1780\u17B6\u179A\u1785\u17C6\u178E\u17B6\u17C6\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1798\u17B7\u1793\u1785\u17B6\u1794\u17CB\u17A2\u17B6\u179A\u1798\u17D2\u1798\u178E\u17CD"},obsidianDevUtils:{buttons:{cancel:"\u1794\u17BB\u1780\u1785\u17C1\u179B",ok:"OK"},dataview:{itemsPerPage:"\u1792\u17B6\u178F\u17BB\u1780\u17D2\u1793\u17BB\u1784\u1798\u17BD\u1799\u1791\u17C6\u1796\u17D0\u179A:",jumpToPage:"\u179B\u17C4\u178F\u1791\u17C5\u1791\u17C6\u1796\u17D0\u179A:"},notices:{attachmentIsStillUsed:"\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB {{attachmentPath}} \u1793\u17C5\u178F\u17C2\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u17D2\u179A\u17BE\u178A\u17C4\u1799\u1780\u17B6\u179A\u1785\u17C6\u178E\u17B6\u17C6\u1795\u17D2\u179F\u17C1\u1784\u1791\u17C0\u178F\u17D4 \u179C\u17B6\u1793\u17B9\u1784\u1798\u17B7\u1793\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u179B\u17BB\u1794\u1791\u17C1\u17D4",unhandledError:"\u1780\u17C6\u17A0\u17BB\u179F\u178A\u17C2\u179B\u1798\u17B7\u1793\u1794\u17B6\u1793\u178A\u17C4\u17C7\u179F\u17D2\u179A\u17B6\u1799\u1794\u17B6\u1793\u1780\u17BE\u178F\u17A1\u17BE\u1784\u17D4 \u179F\u17BC\u1798\u1796\u17B7\u1793\u17B7\u178F\u17D2\u1799\u1798\u17BE\u179B\u1780\u1793\u17D2\u179F\u17C4\u1798\u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB\u1796\u17D0\u178F\u17CC\u1798\u17B6\u1793\u1794\u1793\u17D2\u1790\u17C2\u1798\u17D4"}},pluginSettings:{attachmentRenameMode:{all:{description:"\u17AF\u1780\u179F\u17B6\u179A\u1791\u17B6\u17C6\u1784\u17A2\u179F\u17CB\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u17D2\u178F\u17BC\u179A\u1788\u17D2\u1798\u17C4\u17C7\u17D4",displayText:"\u1791\u17B6\u17C6\u1784\u17A2\u179F\u17CB"},none:{description:"\u1788\u17D2\u1798\u17C4\u17C7\u179A\u1794\u179F\u17CB\u1796\u17BD\u1780\u1782\u17C1\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u179A\u1780\u17D2\u179F\u17B6\u1791\u17BB\u1780\u17D4",displayText:"\u1782\u17D2\u1798\u17B6\u1793"},onlyPastedImages:{description:"\u178F\u17C2\u179A\u17BC\u1794\u1797\u17B6\u1796\u178A\u17C2\u179B\u1794\u17B6\u1793\u1794\u17B7\u1791\u1794\u17C9\u17BB\u178E\u17D2\u178E\u17C4\u17C7\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u17D2\u178F\u17BC\u179A\u1788\u17D2\u1798\u17C4\u17C7\u17D4 \u17A2\u1793\u17BB\u179C\u178F\u17D2\u178F\u178F\u17C2\u1793\u17C5\u1796\u17C1\u179B\u178A\u17C2\u179B\u1798\u17B6\u178F\u17B7\u1780\u17B6\u179A\u17BC\u1794\u1797\u17B6\u1796 PNG \u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u17B7\u1791\u1796\u17B8\u1780\u17D2\u178F\u17B6\u179A\u178F\u1798\u17D2\u179A\u17C0\u1794\u178A\u17C4\u1799\u1795\u17D2\u1791\u17B6\u179B\u17CB\u17D4 \u1787\u17B6\u1792\u1798\u17D2\u1798\u178F\u17B6 \u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB\u1780\u17B6\u179A\u1794\u17B7\u1791\u179A\u17BC\u1794\u1790\u178F\u17A2\u17C1\u1780\u17D2\u179A\u1784\u17CB\u17D4",displayText:"\u178F\u17C2\u179A\u17BC\u1794\u1797\u17B6\u1796\u178A\u17C2\u179B\u1794\u17B6\u1793\u1794\u17B7\u1791\u1794\u17C9\u17BB\u178E\u17D2\u178E\u17C4\u17C7"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"\u1794\u17BB\u1780\u1785\u17C1\u179B\u1780\u17B6\u179A\u1794\u17D2\u179A\u1780\u17D0\u1794\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u17D4",displayText:"\u1794\u17BB\u1780\u1785\u17C1\u179B"},copy:{description:"\u1785\u17C6\u179B\u1784\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u1791\u17C5\u1791\u17B8\u178F\u17B6\u17C6\u1784\u1790\u17D2\u1798\u17B8\u17D4",displayText:"\u1785\u17C6\u179B\u1784"},move:{description:"\u1795\u17D2\u179B\u17B6\u179F\u17CB\u1791\u17B8\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u1791\u17C5\u1791\u17B8\u178F\u17B6\u17C6\u1784\u1790\u17D2\u1798\u17B8\u17D4",displayText:"\u1795\u17D2\u179B\u17B6\u179F\u17CB\u1791\u17B8"},prompt:{description:"\u1787\u17C6\u179A\u17BB\u1789\u17A2\u17D2\u1793\u1780\u1794\u17D2\u179A\u17BE\u17B1\u17D2\u1799\u1787\u17D2\u179A\u17BE\u179F\u179A\u17BE\u179F\u179F\u1780\u1798\u17D2\u1798\u1797\u17B6\u1796\u17D4",displayText:"\u1787\u17C6\u179A\u17BB\u1789"},skip:{description:"\u179A\u17C6\u179B\u1784\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u1793\u17B7\u1784\u1794\u1793\u17D2\u178F\u1791\u17C5\u1794\u1793\u17D2\u1791\u17B6\u1794\u17CB\u17D4",displayText:"\u179A\u17C6\u179B\u1784"}},defaultImageSizeDimension:{height:"\u1780\u1798\u17D2\u1796\u179F\u17CB",width:"\u1791\u1791\u17B9\u1784"},emptyAttachmentFolderBehavior:{delete:{description:"\u1793\u17B9\u1784\u179B\u17BB\u1794\u1791\u17B9\u178F\u17C2\u1780\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u1791\u1791\u17C1\u17D4",displayText:"\u179B\u17BB\u1794"},deleteWithEmptyParents:{description:"\u1793\u17B9\u1784\u179B\u17BB\u1794\u1791\u17B9\u178F\u17C2\u1780\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u1791\u1791\u17C1\u1793\u17B7\u1784\u1791\u17B9\u178F\u17C2\u1780\u1798\u17C1\u1791\u1791\u17C1\u179A\u1794\u179F\u17CB\u179C\u17B6\u17D4",displayText:"\u179B\u17BB\u1794\u1787\u17B6\u1798\u17BD\u1799\u1798\u17C1\u1791\u1791\u17C1"},keep:{description:"\u1793\u17B9\u1784\u179A\u1780\u17D2\u179F\u17B6\u1791\u17B9\u178F\u17C2\u1780\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u1791\u1791\u17C1\u17D4",displayText:"\u179A\u1780\u17D2\u179F\u17B6\u1791\u17BB\u1780"}}},pluginSettingsManager:{customToken:{codeComment:`// \u179F\u1789\u17D2\u1789\u17B6\u179F\u1798\u17D2\u1782\u17B6\u179B\u17CB\u1795\u17D2\u1791\u17B6\u179B\u17CB\u1781\u17D2\u179B\u17BD\u1793\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u178A\u1780\u1785\u17C1\u1789\u1796\u17B8\u1798\u178F\u17B7\u1799\u17C4\u1794\u179B\u17CB\u1796\u17B8\u1796\u17D2\u179A\u17C4\u17C7\u1796\u17BD\u1780\u1782\u17C1\u178F\u17D2\u179A\u17BC\u179C\u178F\u17C2\u1794\u17B6\u1793\u1792\u17D2\u179C\u17BE\u1794\u1785\u17D2\u1785\u17BB\u1794\u17D2\u1794\u1793\u17D2\u1793\u1797\u17B6\u1796\u1791\u17C5\u1787\u17B6\u1791\u1798\u17D2\u179A\u1784\u17CB\u1790\u17D2\u1798\u17B8\u178A\u17C2\u179B\u1794\u17B6\u1793\u178E\u17C2\u1793\u17B6\u17C6\u1780\u17D2\u1793\u17BB\u1784\u1780\u17C6\u178E\u17C2\u1795\u17D2\u1793\u17C2\u1780\u1794\u1793\u17D2\u1790\u17C2\u1798 9.0.0\u17D4
|
|
510
|
+
// \u179F\u17BC\u1798\u1798\u17BE\u179B\u17AF\u1780\u179F\u17B6\u179A\u1799\u17C4\u1784 (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) \u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB\u1796\u17D0\u178F\u17CC\u1798\u17B6\u1793\u1794\u1793\u17D2\u1790\u17C2\u1798\u17D4`,deprecated:{part1:"\u1780\u17D2\u1793\u17BB\u1784\u1780\u17C6\u178E\u17C2\u1795\u17D2\u1793\u17C2\u1780\u1794\u1793\u17D2\u1790\u17C2\u1798 9.0.0 \u1791\u1798\u17D2\u179A\u1784\u17CB\u1793\u17C3\u1780\u17B6\u179A\u1785\u17BB\u17C7\u1788\u17D2\u1798\u17C4\u17C7\u179F\u1789\u17D2\u1789\u17B6\u179F\u1798\u17D2\u1782\u17B6\u179B\u17CB\u1795\u17D2\u1791\u17B6\u179B\u17CB\u1781\u17D2\u179B\u17BD\u1793\u1794\u17B6\u1793\u1795\u17D2\u179B\u17B6\u179F\u17CB\u1794\u17D2\u178F\u17BC\u179A\u17D4 \u179F\u17BC\u1798\u1792\u17D2\u179C\u17BE\u1794\u1785\u17D2\u1785\u17BB\u1794\u17D2\u1794\u1793\u17D2\u1793\u1797\u17B6\u1796\u179F\u1789\u17D2\u1789\u17B6\u179F\u1798\u17D2\u1782\u17B6\u179B\u17CB\u179A\u1794\u179F\u17CB\u17A2\u17D2\u1793\u1780\u178F\u17B6\u1798\u17D4 \u179F\u17BC\u1798\u1798\u17BE\u179B",part2:"\u17AF\u1780\u179F\u17B6\u179A\u1799\u17C4\u1784",part3:"\u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB\u1796\u17D0\u178F\u17CC\u1798\u17B6\u1793\u1794\u1793\u17D2\u1790\u17C2\u1798"}},legacyRenameAttachmentsToLowerCase:{part1:"\u1780\u17D2\u1793\u17BB\u1784\u1780\u17C6\u178E\u17C2\u1795\u17D2\u1793\u17C2\u1780\u1794\u1793\u17D2\u1790\u17C2\u1798 9.0.0 \u1780\u17B6\u179A\u1780\u17C6\u178E\u178F\u17CB",part2:"\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u178A\u17B7\u179F\u17C1\u1792\u17D4 \u1794\u17D2\u179A\u17BE",part3:"\u1791\u1798\u17D2\u179A\u1784\u17CB\u1787\u17C6\u1793\u17BD\u179F\u17D4 \u1798\u17BE\u179B",part4:"\u17AF\u1780\u179F\u17B6\u179A\u1799\u17C4\u1784",part5:"\u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB\u1796\u17D0\u178F\u17CC\u1798\u17B6\u1793\u1794\u1793\u17D2\u1790\u17C2\u1798"},markdownUrlFormat:{deprecated:{part1:"\u17A2\u17D2\u1793\u1780\u1798\u17B6\u1793\u178F\u1798\u17D2\u179B\u17C3\u178A\u17C2\u179B\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C\u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB",part2:"\u1791\u1798\u17D2\u179A\u1784\u17CB\u17D4 \u179F\u17BC\u1798\u1798\u17BE\u179B",part3:"\u17AF\u1780\u179F\u17B6\u179A\u1799\u17C4\u1784",part4:"\u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB\u1796\u17D0\u178F\u17CC\u1798\u17B6\u1793\u1794\u1793\u17D2\u1790\u17C2\u1798",part5:"\u179F\u17B6\u179A\u1793\u17C1\u17C7\u1793\u17B9\u1784\u1798\u17B7\u1793\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u1784\u17D2\u17A0\u17B6\u1789\u1798\u17D2\u178F\u1784\u1791\u17C0\u178F\u1791\u17C1\u17D4"}},specialCharacters:{part1:"\u1780\u17D2\u1793\u17BB\u1784\u1780\u17C6\u178E\u17C2\u1795\u17D2\u1793\u17C2\u1780\u1794\u1793\u17D2\u1790\u17C2\u1798 9.16.0 \u178F\u1798\u17D2\u179B\u17C3\u1780\u17B6\u179A\u1780\u17C6\u178E\u178F\u17CB\u179B\u17C6\u1793\u17B6\u17C6\u178A\u17BE\u1798",part2:"\u1794\u17B6\u1793\u1795\u17D2\u179B\u17B6\u179F\u17CB\u1794\u17D2\u178F\u17BC\u179A\u17D4 \u178F\u1798\u17D2\u179B\u17C3\u1780\u17B6\u179A\u1780\u17C6\u178E\u178F\u17CB\u179A\u1794\u179F\u17CB\u17A2\u17D2\u1793\u1780\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1792\u17D2\u179C\u17BE\u1794\u1785\u17D2\u1785\u17BB\u1794\u17D2\u1794\u1793\u17D2\u1793\u1797\u17B6\u1796\u1791\u17C5\u178F\u1798\u17D2\u179B\u17C3\u179B\u17C6\u1793\u17B6\u17C6\u178A\u17BE\u1798\u1790\u17D2\u1798\u17B8\u17D4"},validation:{defaultImageSizeMustBePercentageOrPixels:"\u1791\u17C6\u17A0\u17C6\u179A\u17BC\u1794\u1797\u17B6\u1796\u179B\u17C6\u1793\u17B6\u17C6\u178A\u17BE\u1798\u178F\u17D2\u179A\u17BC\u179C\u178F\u17C2\u1787\u17B6\u1797\u17B6\u1782\u179A\u1799 \u17AC \u1797\u17B8\u1780\u179F\u17C2\u179B",invalidCustomTokensCode:"\u1780\u17BC\u178A\u179F\u1789\u17D2\u1789\u17B6\u179F\u1798\u17D2\u1782\u17B6\u179B\u17CB\u1795\u17D2\u1791\u17B6\u179B\u17CB\u1781\u17D2\u179B\u17BD\u1793\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C",invalidRegularExpression:"\u1780\u1793\u17D2\u179F\u17C4\u1798\u1792\u1798\u17D2\u1798\u178F\u17B6\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C {{regExp}}",specialCharactersMustNotContainSlash:"\u178F\u17BD\u17A2\u1780\u17D2\u179F\u179A\u1796\u17B7\u179F\u17C1\u179F\u1798\u17B7\u1793\u178F\u17D2\u179A\u17BC\u179C\u1798\u17B6\u1793 /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"\u1780\u17B6\u179A\u1787\u17C6\u1793\u17BD\u179F\u178F\u17BD\u17A2\u1780\u17D2\u179F\u179A\u1796\u17B7\u179F\u17C1\u179F\u1798\u17B7\u1793\u178F\u17D2\u179A\u17BC\u179C\u1798\u17B6\u1793\u178F\u17BD\u17A2\u1780\u17D2\u179F\u179A\u1795\u17D2\u179B\u17BC\u179C\u1788\u17D2\u1798\u17C4\u17C7\u17AF\u1780\u179F\u17B6\u179A\u1798\u17B7\u1793\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C\u17D4"},version:{part1:"\u17AF\u1780\u179F\u17B6\u179A\u1780\u17B6\u179A\u1780\u17C6\u178E\u178F\u17CB\u179A\u1794\u179F\u17CB\u17A2\u17D2\u1793\u1780 ",part2:"\u1798\u17B6\u1793\u1780\u17C6\u178E\u17C2",part3:"\u178A\u17C2\u179B\u1790\u17D2\u1798\u17B8\u1787\u17B6\u1784\u1780\u17C6\u178E\u17C2\u1795\u17D2\u1793\u17C2\u1780\u1794\u1793\u17D2\u1790\u17C2\u1798\u1794\u1785\u17D2\u1785\u17BB\u1794\u17D2\u1794\u1793\u17D2\u1793",part4:"\u1795\u17D2\u1793\u17C2\u1780\u1794\u1793\u17D2\u1790\u17C2\u1798\u17A2\u17B6\u1785\u1798\u17B7\u1793\u178A\u17C6\u178E\u17BE\u179A\u1780\u17B6\u179A\u178F\u17B6\u1798\u178A\u17C2\u179B\u179A\u17C6\u1796\u17B9\u1784\u1791\u17BB\u1780\u17D4 \u179F\u17BC\u1798\u1792\u17D2\u179C\u17BE\u1794\u1785\u17D2\u1785\u17BB\u1794\u17D2\u1794\u1793\u17D2\u1793\u1797\u17B6\u1796\u1795\u17D2\u1793\u17C2\u1780\u1794\u1793\u17D2\u1790\u17C2\u1798\u1791\u17C5\u1780\u17C6\u178E\u17C2\u1785\u17BB\u1784\u1780\u17D2\u179A\u17C4\u1799\u1794\u17C6\u1795\u17BB\u178F \u17AC\u1792\u17B6\u1793\u17B6\u1790\u17B6\u1780\u17B6\u179A\u1780\u17C6\u178E\u178F\u17CB\u178F\u17D2\u179A\u17B9\u1798\u178F\u17D2\u179A\u17BC\u179C\u17D4"}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"\u1793\u17C5\u1796\u17C1\u179B\u1797\u17D2\u1787\u17B6\u1794\u17CB\u17AF\u1780\u179F\u17B6\u179A:"},name:"\u179A\u1794\u17C0\u1794\u1794\u17D2\u178F\u17BC\u179A\u1788\u17D2\u1798\u17C4\u17C7\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"\u1793\u17C5\u1796\u17C1\u179B\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u178A\u17C2\u179B\u1794\u17B6\u1793\u1794\u17D2\u179A\u1780\u17D0\u1794\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u17D2\u179A\u17BE\u178A\u17C4\u1799\u1780\u17B6\u179A\u1785\u17C6\u178E\u17B6\u17C6\u1785\u17D2\u179A\u17BE\u1793:"},name:"\u179A\u1794\u17C0\u1794\u1794\u17D2\u179A\u1780\u17D0\u1794\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u178A\u17C2\u179B\u1794\u17D2\u179A\u17BE\u178A\u17C4\u1799\u1780\u17B6\u179A\u1785\u17C6\u178E\u17B6\u17C6\u1785\u17D2\u179A\u17BE\u1793"},collectedAttachmentFileName:{description:{part1:"\u1798\u17BE\u179B",part2:"\u179F\u1789\u17D2\u1789\u17B6\u179F\u1798\u17D2\u1782\u17B6\u179B\u17CB\u178A\u17C2\u179B\u1798\u17B6\u1793"},name:"\u1788\u17D2\u1798\u17C4\u17C7\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u178A\u17C2\u179B\u1794\u17B6\u1793\u1794\u17D2\u179A\u1780\u17D0\u1794"},customTokens:{description:{part1:"\u179F\u1789\u17D2\u1789\u17B6\u179F\u1798\u17D2\u1782\u17B6\u179B\u17CB\u1795\u17D2\u1791\u17B6\u179B\u17CB\u1781\u17D2\u179B\u17BD\u1793\u178A\u17C2\u179B\u178F\u17D2\u179A\u17BC\u179C\u1794\u17D2\u179A\u17BE\u17D4",part2:"\u1798\u17BE\u179B",part3:"\u17AF\u1780\u179F\u17B6\u179A\u1799\u17C4\u1784",part4:"\u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB\u1796\u17D0\u178F\u17CC\u1798\u17B6\u1793\u1794\u1793\u17D2\u1790\u17C2\u1798\u17D4",part5:"\u26A0\uFE0F \u179F\u1789\u17D2\u1789\u17B6\u179F\u1798\u17D2\u1782\u17B6\u179B\u17CB\u1795\u17D2\u1791\u17B6\u179B\u17CB\u1781\u17D2\u179B\u17BD\u1793\u17A2\u17B6\u1785\u1787\u17B6\u1780\u17BC\u178A JavaScript \u1794\u17C6\u1796\u17B6\u1793\u17D4 \u1794\u17D2\u179A\u179F\u17B7\u1793\u1794\u17BE\u179F\u179A\u179F\u17C1\u179A\u1798\u17B7\u1793\u179B\u17D2\u17A2 \u179C\u17B6\u17A2\u17B6\u1785\u1794\u178E\u17D2\u178F\u17B6\u179B\u17B1\u17D2\u1799\u1794\u17B6\u178F\u17CB\u1794\u1784\u17CB\u1791\u17B7\u1793\u17D2\u1793\u1793\u17D0\u1799\u17D4 \u1794\u17D2\u179A\u17BE\u179C\u17B6\u178F\u17B6\u1798\u17A0\u17B6\u1793\u17BB\u1797\u17B6\u1796\u179A\u1794\u179F\u17CB\u17A2\u17D2\u1793\u1780\u17D4"},name:"\u179F\u1789\u17D2\u1789\u17B6\u179F\u1798\u17D2\u1782\u17B6\u179B\u17CB\u1795\u17D2\u1791\u17B6\u179B\u17CB\u1781\u17D2\u179B\u17BD\u1793"},defaultImageSize:{description:{part1:"\u1791\u17C6\u17A0\u17C6\u179A\u17BC\u1794\u1797\u17B6\u1796\u179B\u17C6\u1793\u17B6\u17C6\u178A\u17BE\u1798\u17D4",part2:"\u17A2\u17B6\u1785\u1780\u17C6\u178E\u178F\u17CB\u1787\u17B6\u1797\u17B8\u1780\u179F\u17C2\u179B\u1794\u17B6\u1793",part3:"\u17AC\u1787\u17B6\u1797\u17B6\u1782\u179A\u1799\u1793\u17C3\u1791\u17C6\u17A0\u17C6\u179A\u17BC\u1794\u1797\u17B6\u1796\u1796\u17C1\u1789",part4:"\u1791\u17BB\u1780\u17B2\u17D2\u1799\u1791\u1791\u17C1\u178A\u17BE\u1798\u17D2\u1794\u17B8\u1794\u17D2\u179A\u17BE\u1791\u17C6\u17A0\u17C6\u178A\u17BE\u1798\u17D4"},name:"\u1791\u17C6\u17A0\u17C6\u179A\u17BC\u1794\u1797\u17B6\u1796\u179B\u17C6\u1793\u17B6\u17C6\u178A\u17BE\u1798"},duplicateNameSeparator:{description:{part1:"\u1793\u17C5\u1796\u17C1\u179B\u17A2\u17D2\u1793\u1780\u1780\u17C6\u1796\u17BB\u1784\u1794\u17B7\u1791/\u1791\u17B6\u1789\u17AF\u1780\u179F\u17B6\u179A\u178A\u17C2\u179B\u1798\u17B6\u1793\u1788\u17D2\u1798\u17C4\u17C7\u178A\u17BC\u1785\u1782\u17D2\u1793\u17B6\u1793\u17B9\u1784\u17AF\u1780\u179F\u17B6\u179A\u178A\u17C2\u179B\u1798\u17B6\u1793\u179F\u17D2\u179A\u17B6\u1794\u17CB \u17A2\u17D2\u1793\u1780\u1794\u17C6\u1794\u17C2\u1780\u1793\u17C1\u17C7\u1793\u17B9\u1784\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u1793\u17D2\u1790\u17C2\u1798\u1791\u17C5\u1788\u17D2\u1798\u17C4\u17C7\u17AF\u1780\u179F\u17B6\u179A\u17D4",part2:"\u17A7\u1791\u17B6\u17A0\u179A\u178E\u17CD \u1793\u17C5\u1796\u17C1\u179B\u17A2\u17D2\u1793\u1780\u1780\u17C6\u1796\u17BB\u1784\u1791\u17B6\u1789\u17AF\u1780\u179F\u17B6\u179A",part3:" \u179C\u17B6\u1793\u17B9\u1784\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u17D2\u178F\u17BC\u179A\u1788\u17D2\u1798\u17C4\u17C7\u1791\u17C5",part4:" \u1787\u17B6\u178A\u17BE\u1798 \u1791\u1791\u17BD\u179B\u1794\u17B6\u1793\u1788\u17D2\u1798\u17C4\u17C7\u178A\u17C6\u1794\u17BC\u1784\u178A\u17C2\u179B\u1798\u17B6\u1793\u17D4"},name:"\u17A2\u17D2\u1793\u1780\u1794\u17C6\u1794\u17C2\u1780\u1788\u17D2\u1798\u17C4\u17C7\u178A\u17BC\u1785\u1782\u17D2\u1793\u17B6"},emptyAttachmentFolderBehavior:{description:{part1:"\u1793\u17C5\u1796\u17C1\u179B\u1791\u17B9\u178F\u17C2\u1780\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u1780\u17D2\u179B\u17B6\u1799\u1787\u17B6\u1791\u1791\u17C1:"},name:"\u17A5\u179A\u17B7\u1799\u17B6\u1794\u1791\u1791\u17B9\u178F\u17C2\u1780\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u1791\u1791\u17C1"},excludePaths:{description:{part1:"\u178A\u1780\u1785\u17C1\u1789\u1780\u17B6\u179A\u1785\u17C6\u178E\u17B6\u17C6\u1796\u17B8\u1795\u17D2\u179B\u17BC\u179C\u1781\u17B6\u1784\u1780\u17D2\u179A\u17C4\u1798\u17D4",part2:"\u1794\u1789\u17D2\u1785\u17BC\u179B\u1795\u17D2\u179B\u17BC\u179C\u1793\u17B8\u1798\u17BD\u1799\u17D7\u1793\u17C5\u179B\u17BE\u1794\u1793\u17D2\u1791\u17B6\u178F\u17CB\u1790\u17D2\u1798\u17B8\u17D4",part3:"\u17A2\u17D2\u1793\u1780\u17A2\u17B6\u1785\u1794\u17D2\u179A\u17BE\u1781\u17D2\u179F\u17C2\u17A2\u1780\u17D2\u179F\u179A\u1795\u17D2\u179B\u17BC\u179C \u17AC",part4:"\u1794\u17D2\u179A\u179F\u17B7\u1793\u1794\u17BE\u1780\u17B6\u179A\u1780\u17C6\u178E\u178F\u17CB\u1791\u1791\u17C1 \u1782\u17D2\u1798\u17B6\u1793\u1780\u17B6\u179A\u1785\u17C6\u178E\u17B6\u17C6\u178E\u17B6\u1798\u17BD\u1799\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u178A\u1780\u1785\u17C1\u1789\u1791\u17C1\u17D4"},name:"\u178A\u1780\u1785\u17C1\u1789\u1795\u17D2\u179B\u17BC\u179C"},excludePathsFromAttachmentCollecting:{description:{part1:"\u178A\u1780\u1785\u17C1\u1789\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u1796\u17B8\u1795\u17D2\u179B\u17BC\u179C\u1781\u17B6\u1784\u1780\u17D2\u179A\u17C4\u1798\u1793\u17C5\u1796\u17C1\u179B",part2:"\u1794\u17D2\u179A\u1780\u17D0\u1794\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB",part3:"\u1796\u17B6\u1780\u17D2\u1799\u1794\u1789\u17D2\u1787\u17B6\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u17D2\u179A\u178F\u17B7\u1794\u178F\u17D2\u178F\u17B7\u17D4",part4:"\u1794\u1789\u17D2\u1785\u17BC\u179B\u1795\u17D2\u179B\u17BC\u179C\u1793\u17B8\u1798\u17BD\u1799\u17D7\u1793\u17C5\u179B\u17BE\u1794\u1793\u17D2\u1791\u17B6\u178F\u17CB\u1790\u17D2\u1798\u17B8\u17D4",part5:"\u17A2\u17D2\u1793\u1780\u17A2\u17B6\u1785\u1794\u17D2\u179A\u17BE\u1781\u17D2\u179F\u17C2\u17A2\u1780\u17D2\u179F\u179A\u1795\u17D2\u179B\u17BC\u179C \u17AC",part6:"\u1794\u17D2\u179A\u179F\u17B7\u1793\u1794\u17BE\u1780\u17B6\u179A\u1780\u17C6\u178E\u178F\u17CB\u1791\u1791\u17C1 \u1782\u17D2\u1798\u17B6\u1793\u1795\u17D2\u179B\u17BC\u179C\u178E\u17B6\u1798\u17BD\u1799\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u178A\u1780\u1785\u17C1\u1789\u1796\u17B8\u1780\u17B6\u179A\u1794\u17D2\u179A\u1780\u17D0\u1794\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u1791\u17C1\u17D4"},name:"\u178A\u1780\u1785\u17C1\u1789\u1795\u17D2\u179B\u17BC\u179C\u1796\u17B8\u1780\u17B6\u179A\u1794\u17D2\u179A\u1780\u17D0\u1794\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB"},generatedAttachmentFileName:{description:{part1:"\u1798\u17BE\u179B",part2:"\u179F\u1789\u17D2\u1789\u17B6\u179F\u1798\u17D2\u1782\u17B6\u179B\u17CB\u178A\u17C2\u179B\u1798\u17B6\u1793"},name:"\u1788\u17D2\u1798\u17C4\u17C7\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u178A\u17C2\u179B\u1794\u17B6\u1793\u1794\u1784\u17D2\u1780\u17BE\u178F"},includePaths:{description:{part1:"\u179A\u17B6\u1794\u17CB\u1794\u1789\u17D2\u1785\u17BC\u179B\u1780\u17B6\u179A\u1785\u17C6\u178E\u17B6\u17C6\u1796\u17B8\u1795\u17D2\u179B\u17BC\u179C\u1781\u17B6\u1784\u1780\u17D2\u179A\u17C4\u1798\u17D4",part2:"\u1794\u1789\u17D2\u1785\u17BC\u179B\u1795\u17D2\u179B\u17BC\u179C\u1793\u17B8\u1798\u17BD\u1799\u17D7\u1793\u17C5\u179B\u17BE\u1794\u1793\u17D2\u1791\u17B6\u178F\u17CB\u1790\u17D2\u1798\u17B8\u17D4",part3:"\u17A2\u17D2\u1793\u1780\u17A2\u17B6\u1785\u1794\u17D2\u179A\u17BE\u1781\u17D2\u179F\u17C2\u17A2\u1780\u17D2\u179F\u179A\u1795\u17D2\u179B\u17BC\u179C \u17AC",part4:"\u1794\u17D2\u179A\u179F\u17B7\u1793\u1794\u17BE\u1780\u17B6\u179A\u1780\u17C6\u178E\u178F\u17CB\u1791\u1791\u17C1 \u1780\u17B6\u179A\u1785\u17C6\u178E\u17B6\u17C6\u1791\u17B6\u17C6\u1784\u17A2\u179F\u17CB\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u179A\u17B6\u1794\u17CB\u1794\u1789\u17D2\u1785\u17BC\u179B\u17D4"},name:"\u179A\u17B6\u1794\u17CB\u1794\u1789\u17D2\u1785\u17BC\u179B\u1795\u17D2\u179B\u17BC\u179C"},jpegQuality:{description:"\u1782\u17BB\u178E\u1797\u17B6\u1796\u178F\u17BC\u1785\u1787\u17B6\u1784 \u179F\u1798\u17B6\u1798\u17B6\u178F\u17D2\u179A\u1794\u1784\u17D2\u17A0\u17B6\u1794\u17CB\u1780\u17B6\u1793\u17CB\u178F\u17C2\u1792\u17C6\u17D4",name:"\u1782\u17BB\u178E\u1797\u17B6\u1796 JPEG"},locationForNewAttachments:{description:{part1:"\u1785\u17B6\u1794\u17CB\u1795\u17D2\u178F\u17BE\u1798\u178A\u17C4\u1799",part2:"\u178A\u17BE\u1798\u17D2\u1794\u17B8\u1794\u17D2\u179A\u17BE\u1795\u17D2\u179B\u17BC\u179C\u1791\u17B6\u1780\u17CB\u1791\u1784\u17D4",part3:"\u1798\u17BE\u179B",part4:"\u179F\u1789\u17D2\u1789\u17B6\u179F\u1798\u17D2\u1782\u17B6\u179B\u17CB\u178A\u17C2\u179B\u1798\u17B6\u1793",part5:"\u1791\u17B9\u178F\u17C2\u1780\u1785\u17C6\u178E\u17BB\u1785\u178A\u17BC\u1785\u1787\u17B6",part6:"\u1798\u17B7\u1793\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u178E\u17C2\u1793\u17B6\u17C6 \u1796\u17B8\u1796\u17D2\u179A\u17C4\u17C7 Obsidian \u1798\u17B7\u1793\u178F\u17B6\u1798\u178A\u17B6\u1793\u1796\u17BD\u1780\u179C\u17B6\u1791\u17C1\u17D4 \u17A2\u17D2\u1793\u1780\u17A2\u17B6\u1785\u178F\u17D2\u179A\u17BC\u179C\u1780\u17B6\u179A\u1794\u17D2\u179A\u17BE",part7:"\u1795\u17D2\u1793\u17C2\u1780\u1794\u1793\u17D2\u1790\u17C2\u1798\u178A\u17BE\u1798\u17D2\u1794\u17B8\u1782\u17D2\u179A\u1794\u17CB\u1782\u17D2\u179A\u1784\u1796\u17BD\u1780\u179C\u17B6\u17D4"},name:"\u1791\u17B8\u178F\u17B6\u17C6\u1784\u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u1790\u17D2\u1798\u17B8"},markdownUrlFormat:{description:{part1:"\u1791\u1798\u17D2\u179A\u1784\u17CB\u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB URL \u178A\u17C2\u179B\u1793\u17B9\u1784\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u1789\u17D2\u1785\u17BC\u179B\u1791\u17C5\u1780\u17D2\u1793\u17BB\u1784 Markdown\u17D4",part2:"\u1798\u17BE\u179B",part3:"\u179F\u1789\u17D2\u1789\u17B6\u179F\u1798\u17D2\u1782\u17B6\u179B\u17CB\u178A\u17C2\u179B\u1798\u17B6\u1793",part4:"\u1791\u17BB\u1780\u1791\u1791\u17C1\u178A\u17BE\u1798\u17D2\u1794\u17B8\u1794\u17D2\u179A\u17BE\u1791\u1798\u17D2\u179A\u1784\u17CB\u179B\u17C6\u1793\u17B6\u17C6\u178A\u17BE\u1798\u17D4"},name:"\u1791\u1798\u17D2\u179A\u1784\u17CB URL Markdown"},renameAttachmentsToLowerCase:"\u1794\u17D2\u178F\u17BC\u179A\u1788\u17D2\u1798\u17C4\u17C7\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u1791\u17C5\u1787\u17B6\u17A2\u1780\u17D2\u179F\u179A\u178F\u17BC\u1785",renamedAttachmentFileName:{description:{part1:"\u1798\u17BE\u179B",part2:"\u179F\u1789\u17D2\u1789\u17B6\u179F\u1798\u17D2\u1782\u17B6\u179B\u17CB\u178A\u17C2\u179B\u1798\u17B6\u1793"},name:"\u1788\u17D2\u1798\u17C4\u17C7\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u178A\u17C2\u179B\u1794\u17B6\u1793\u1794\u17D2\u178F\u17BC\u179A\u1788\u17D2\u1798\u17C4\u17C7"},resetToSampleCustomTokens:{message:"\u178F\u17BE\u17A2\u17D2\u1793\u1780\u1794\u17D2\u179A\u17B6\u1780\u178A\u1790\u17B6\u1785\u1784\u17CB\u1780\u17C6\u178E\u178F\u17CB\u17A1\u17BE\u1784\u179C\u17B7\u1789\u179F\u1789\u17D2\u1789\u17B6\u179F\u1798\u17D2\u1782\u17B6\u179B\u17CB\u1795\u17D2\u1791\u17B6\u179B\u17CB\u1781\u17D2\u179B\u17BD\u1793\u1791\u17C5\u179F\u1789\u17D2\u1789\u17B6\u179F\u1798\u17D2\u1782\u17B6\u179B\u17CB\u1795\u17D2\u1791\u17B6\u179B\u17CB\u1781\u17D2\u179B\u17BD\u1793\u1782\u17C6\u179A\u17BC? \u1780\u17B6\u179A\u1795\u17D2\u179B\u17B6\u179F\u17CB\u1794\u17D2\u178F\u17BC\u179A\u179A\u1794\u179F\u17CB\u17A2\u17D2\u1793\u1780\u1793\u17B9\u1784\u1794\u17B6\u178F\u17CB\u1794\u1784\u17CB\u17D4",title:"\u1780\u17C6\u178E\u178F\u17CB\u17A1\u17BE\u1784\u179C\u17B7\u1789\u1791\u17C5\u179F\u1789\u17D2\u1789\u17B6\u179F\u1798\u17D2\u1782\u17B6\u179B\u17CB\u1795\u17D2\u1791\u17B6\u179B\u17CB\u1781\u17D2\u179B\u17BD\u1793\u1782\u17C6\u179A\u17BC"},shouldConvertPastedImagesToJpeg:{description:"\u178F\u17BE\u178F\u17D2\u179A\u17BC\u179C\u1794\u17D2\u178F\u17BC\u179A\u179A\u17BC\u1794\u1797\u17B6\u1796\u178A\u17C2\u179B\u1794\u17B6\u1793\u1794\u17B7\u1791\u1791\u17C5 JPEG \u17AC\u1791\u17C1\u17D4 \u17A2\u1793\u17BB\u179C\u178F\u17D2\u178F\u178F\u17C2\u1793\u17C5\u1796\u17C1\u179B\u178A\u17C2\u179B\u1798\u17B6\u178F\u17B7\u1780\u17B6\u179A\u17BC\u1794\u1797\u17B6\u1796 PNG \u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u17B7\u1791\u1796\u17B8\u1780\u17D2\u178F\u17B6\u179A\u178F\u1798\u17D2\u179A\u17C0\u1794\u178A\u17C4\u1799\u1795\u17D2\u1791\u17B6\u179B\u17CB\u17D4 \u1787\u17B6\u1792\u1798\u17D2\u1798\u178F\u17B6 \u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB\u1780\u17B6\u179A\u1794\u17B7\u1791\u179A\u17BC\u1794\u1790\u178F\u17A2\u17C1\u1780\u17D2\u179A\u1784\u17CB\u17D4",name:"\u178F\u17BE\u178F\u17D2\u179A\u17BC\u179C\u1794\u17D2\u178F\u17BC\u179A\u179A\u17BC\u1794\u1797\u17B6\u1796\u178A\u17C2\u179B\u1794\u17B6\u1793\u1794\u17B7\u1791\u1791\u17C5 JPEG"},shouldDeleteOrphanAttachments:{description:"\u1794\u17D2\u179A\u179F\u17B7\u1793\u1794\u17BE\u1794\u17BE\u1780 \u1793\u17C5\u1796\u17C1\u179B\u1780\u17B6\u179A\u1785\u17C6\u178E\u17B6\u17C6\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u179B\u17BB\u1794 \u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u1780\u17C6\u1796\u17D2\u179A\u17B6\u179A\u1794\u179F\u17CB\u179C\u17B6\u1780\u17CF\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u179B\u17BB\u1794\u178A\u17C2\u179A\u17D4",name:"\u178F\u17BE\u178F\u17D2\u179A\u17BC\u179C\u179B\u17BB\u1794\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u1780\u17C6\u1796\u17D2\u179A\u17B6"},shouldRenameAttachmentFiles:{description:{part1:"\u1794\u17D2\u179A\u179F\u17B7\u1793\u1794\u17BE\u1794\u17BE\u1780 \u1793\u17C5\u1796\u17C1\u179B\u1780\u17B6\u179A\u1785\u17C6\u178E\u17B6\u17C6\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u17D2\u178F\u17BC\u179A\u1788\u17D2\u1798\u17C4\u17C7 \u17AC\u1795\u17D2\u179B\u17B6\u179F\u17CB\u1791\u17B8 \u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u1793\u17B9\u1784\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u17D2\u178F\u17BC\u179A\u1788\u17D2\u1798\u17C4\u17C7\u178F\u17B6\u1798",part2:"\u1780\u17B6\u179A\u1780\u17C6\u178E\u178F\u17CB\u17D4"},name:"\u178F\u17BE\u178F\u17D2\u179A\u17BC\u179C\u1794\u17D2\u178F\u17BC\u179A\u1788\u17D2\u1798\u17C4\u17C7\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB"},shouldRenameAttachmentFolders:{description:"\u178F\u17BE\u178F\u17D2\u179A\u17BC\u179C\u1794\u17D2\u178F\u17BC\u179A\u1788\u17D2\u1798\u17C4\u17C7\u1791\u17B9\u178F\u17C2\u1780\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u1793\u17C5\u1796\u17C1\u179B\u1780\u17B6\u179A\u1785\u17C6\u178E\u17B6\u17C6\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u17D2\u178F\u17BC\u179A\u1788\u17D2\u1798\u17C4\u17C7 \u17AC\u1795\u17D2\u179B\u17B6\u179F\u17CB\u1791\u17B8\u17D4",name:"\u178F\u17BE\u178F\u17D2\u179A\u17BC\u179C\u1794\u17D2\u178F\u17BC\u179A\u1788\u17D2\u1798\u17C4\u17C7\u1791\u17B9\u178F\u17C2\u1780\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB"},shouldRenameCollectedAttachments:{description:{part1:"\u1794\u17D2\u179A\u179F\u17B7\u1793\u1794\u17BE\u1794\u17BE\u1780 \u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u178A\u17C2\u179B\u1794\u17B6\u1793\u178A\u17C6\u178E\u17BE\u179A\u1780\u17B6\u179A\u178F\u17B6\u1798\u179A\u1799\u17C8",part2:"\u1794\u17D2\u179A\u1780\u17D0\u1794\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB",part3:"\u1796\u17B6\u1780\u17D2\u1799\u1794\u1789\u17D2\u1787\u17B6\u1793\u17B9\u1784\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u17D2\u178F\u17BC\u179A\u1788\u17D2\u1798\u17C4\u17C7\u178F\u17B6\u1798",part4:"\u1780\u17B6\u179A\u1780\u17C6\u178E\u178F\u17CB\u17D4"},name:"\u178F\u17BE\u178F\u17D2\u179A\u17BC\u179C\u1794\u17D2\u178F\u17BC\u179A\u1788\u17D2\u1798\u17C4\u17C7\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u178A\u17C2\u179B\u1794\u17B6\u1793\u1794\u17D2\u179A\u1780\u17D0\u1794"},specialCharacters:{description:{part1:"\u178F\u17BD\u17A2\u1780\u17D2\u179F\u179A\u1796\u17B7\u179F\u17C1\u179F\u1780\u17D2\u1793\u17BB\u1784\u1788\u17D2\u1798\u17C4\u17C7\u1791\u17B9\u178F\u17C2\u1780 \u1793\u17B7\u1784\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u178A\u17C2\u179B\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1787\u17C6\u1793\u17BD\u179F \u17AC\u178A\u1780\u1785\u17C1\u1789\u17D4",part2:"\u1791\u17BB\u1780\u1791\u1791\u17C1\u178A\u17BE\u1798\u17D2\u1794\u17B8\u179A\u1780\u17D2\u179F\u17B6\u1791\u17BB\u1780\u178F\u17BD\u17A2\u1780\u17D2\u179F\u179A\u1796\u17B7\u179F\u17C1\u179F\u17D4"},name:"\u178F\u17BD\u17A2\u1780\u17D2\u179F\u179A\u1796\u17B7\u179F\u17C1\u179F"},specialCharactersReplacement:{description:{part1:"\u1781\u17D2\u179F\u17C2\u17A2\u1780\u17D2\u179F\u179A\u1787\u17C6\u1793\u17BD\u179F\u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB\u178F\u17BD\u17A2\u1780\u17D2\u179F\u179A\u1796\u17B7\u179F\u17C1\u179F\u1780\u17D2\u1793\u17BB\u1784\u1788\u17D2\u1798\u17C4\u17C7\u1791\u17B9\u178F\u17C2\u1780 \u1793\u17B7\u1784\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u17D4",part2:"\u1791\u17BB\u1780\u1791\u1791\u17C1\u178A\u17BE\u1798\u17D2\u1794\u17B8\u178A\u1780\u1785\u17C1\u1789\u178F\u17BD\u17A2\u1780\u17D2\u179F\u179A\u1796\u17B7\u179F\u17C1\u179F\u17D4"},name:"\u1780\u17B6\u179A\u1787\u17C6\u1793\u17BD\u179F\u178F\u17BD\u17A2\u1780\u17D2\u179F\u179A\u1796\u17B7\u179F\u17C1\u179F"},timeoutInSeconds:{description:{part1:"\u1796\u17C1\u179B\u179C\u17C1\u179B\u17B6\u17A2\u179F\u17CB\u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB\u1794\u17D2\u179A\u178F\u17B7\u1794\u178F\u17D2\u178F\u17B7\u1780\u17B6\u179A\u1791\u17B6\u17C6\u1784\u17A2\u179F\u17CB (\u179C\u17B7\u1793\u17B6\u1791\u17B8)\u17D4",part2:"\u1794\u17D2\u179A\u179F\u17B7\u1793\u1794\u17BE",part3:"\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1780\u17C6\u178E\u178F\u17CB \u1796\u17C1\u179B\u179C\u17C1\u179B\u17B6\u17A2\u179F\u17CB\u1794\u17D2\u179A\u178F\u17B7\u1794\u178F\u17D2\u178F\u17B7\u1780\u17B6\u179A\u1794\u17D2\u179A\u178F\u17B7\u1794\u178F\u17D2\u178F\u17B7\u1780\u17B6\u179A\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1794\u17B7\u1791\u17D4"},name:"\u1796\u17C1\u179B\u179C\u17C1\u179B\u17B6\u17A2\u179F\u17CB (\u179C\u17B7\u1793\u17B6\u1791\u17B8)"},treatAsAttachmentExtensions:{description:{part1:"\u1796\u17B7\u1785\u17B6\u179A\u178E\u17B6\u17AF\u1780\u179F\u17B6\u179A\u178A\u17C2\u179B\u1798\u17B6\u1793\u1780\u17B6\u179A\u1796\u1793\u17D2\u1799\u17B6\u179A\u1796\u17C1\u179B\u1791\u17B6\u17C6\u1784\u1793\u17C1\u17C7\u1787\u17B6\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB\u17D4",part2:"\u178F\u17B6\u1798\u179B\u17C6\u1793\u17B6\u17C6\u178A\u17BE\u1798",part3:"\u1793\u17B7\u1784",part4:"\u17AF\u1780\u179F\u17B6\u179A\u178A\u17C2\u179B\u1797\u17D2\u1787\u17B6\u1794\u17CB\u1798\u17B7\u1793\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1796\u17B7\u1785\u17B6\u179A\u178E\u17B6\u1787\u17B6\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB \u1793\u17B7\u1784\u1798\u17B7\u1793\u178F\u17D2\u179A\u17BC\u179C\u1794\u17B6\u1793\u1795\u17D2\u179B\u17B6\u179F\u17CB\u1791\u17B8\u1787\u17B6\u1798\u17BD\u1799\u1780\u17B6\u179A\u1785\u17C6\u178E\u17B6\u17C6\u17D4",part5:"\u17A2\u17D2\u1793\u1780\u17A2\u17B6\u1785\u1794\u1793\u17D2\u1790\u17C2\u1798\u1780\u17B6\u179A\u1796\u1793\u17D2\u1799\u17B6\u179A\u1796\u17C1\u179B\u1795\u17D2\u1791\u17B6\u179B\u17CB\u1781\u17D2\u179B\u17BD\u1793 \u17A7\u1791\u17B6\u17A0\u179A\u178E\u17CD",part6:" \u178A\u17BE\u1798\u17D2\u1794\u17B8\u1794\u178A\u17B7\u179F\u17C1\u1792\u17A5\u179A\u17B7\u1799\u17B6\u1794\u1791\u1793\u17C1\u17C7\u17D4"},name:"\u1796\u17B7\u1785\u17B6\u179A\u178E\u17B6\u1787\u17B6\u1780\u17B6\u179A\u1796\u1793\u17D2\u1799\u17B6\u179A\u1796\u17C1\u179B\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB"}},promptWithPreviewModal:{previewModal:{title:"\u1794\u17D2\u179A\u17C1\u179C\u178A\u17B6\u1780\u17CB\u1798\u17BE\u179B\u17AF\u1780\u179F\u17B6\u179A\u1785\u17C6\u178E\u17B6\u1794\u17CB '{{fullFileName}}'"},title:"\u1795\u17D2\u178F\u179B\u17CB\u178F\u1798\u17D2\u179B\u17C3\u179F\u1798\u17D2\u179A\u17B6\u1794\u17CB\u179F\u1789\u17D2\u1789\u17B6\u179F\u1798\u17D2\u1782\u17B6\u179B\u17CB\u1787\u17C6\u179A\u17BB\u1789"},regularExpression:"/\u1780\u1793\u17D2\u179F\u17C4\u1798\u1792\u1798\u17D2\u1798\u178F\u17B6/"};var sh={attachmentCollector:{confirm:{part1:"\uD3F4\uB354\uC758 \uBAA8\uB4E0 \uB178\uD2B8\uC5D0 \uB300\uD574 \uCCA8\uBD80 \uD30C\uC77C\uC744 \uC7AC\uADC0\uC801\uC73C\uB85C \uC218\uC9D1\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?",part2:"\uC774 \uC791\uC5C5\uC740 \uB418\uB3CC\uB9B4 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4."},progressBar:{message:"\uCCA8\uBD80 \uD30C\uC77C \uC218\uC9D1 \uC911 {{iterationStr}} - '{{noteFilePath}}'.",title:"\uCCA8\uBD80 \uD30C\uC77C \uC218\uC9D1 \uC911..."}},buttons:{copy:"\uBCF5\uC0AC",move:"\uC774\uB3D9",previewAttachmentFile:"\uCCA8\uBD80 \uD30C\uC77C \uBBF8\uB9AC\uBCF4\uAE30",skip:"\uAC74\uB108\uB6F0\uAE30"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"\uCCA8\uBD80 \uD30C\uC77C",part2:"\uC774 \uC5EC\uB7EC \uB178\uD2B8\uC5D0\uC11C \uCC38\uC870\uB418\uACE0 \uC788\uC2B5\uB2C8\uB2E4."},heading:"\uC5EC\uB7EC \uB178\uD2B8\uC5D0\uC11C \uC0AC\uC6A9\uB418\uB294 \uCCA8\uBD80 \uD30C\uC77C \uC218\uC9D1",shouldUseSameActionForOtherProblematicAttachmentsToggle:"\uB2E4\uB978 \uBB38\uC81C\uAC00 \uC788\uB294 \uCCA8\uBD80 \uD30C\uC77C\uC5D0 \uB300\uD574\uC11C\uB3C4 \uAC19\uC740 \uB3D9\uC791\uC744 \uC0AC\uC6A9\uD574\uC57C \uD569\uB2C8\uB2E4"},commands:{collectAttachmentsCurrentFolder:"\uD604\uC7AC \uD3F4\uB354\uC758 \uCCA8\uBD80 \uD30C\uC77C \uC218\uC9D1",collectAttachmentsCurrentNote:"\uD604\uC7AC \uB178\uD2B8\uC758 \uCCA8\uBD80 \uD30C\uC77C \uC218\uC9D1",collectAttachmentsEntireVault:"\uC804\uCCB4 \uBCFC\uD2B8\uC758 \uCCA8\uBD80 \uD30C\uC77C \uC218\uC9D1"},menuItems:{collectAttachmentsInFile:"\uD30C\uC77C\uC5D0\uC11C \uCCA8\uBD80 \uD30C\uC77C \uC218\uC9D1",collectAttachmentsInFiles:"\uC5EC\uB7EC \uD30C\uC77C\uC5D0\uC11C \uCCA8\uBD80 \uD30C\uC77C \uC218\uC9D1"},notice:{collectingAttachments:"'{{noteFilePath}}'\uC758 \uCCA8\uBD80 \uD30C\uC77C \uC218\uC9D1 \uC911",collectingAttachmentsCancelled:"\uCCA8\uBD80 \uD30C\uC77C \uC218\uC9D1\uC774 \uCDE8\uC18C\uB418\uC5C8\uC2B5\uB2C8\uB2E4. \uC790\uC138\uD55C \uB0B4\uC6A9\uC740 \uCF58\uC194\uC744 \uD655\uC778\uD558\uC138\uC694.",generatedAttachmentFileNameIsInvalid:{part1:`\uC0DD\uC131\uB41C \uCCA8\uBD80 \uD30C\uC77C \uC774\uB984 '{{path}}'\uC774(\uAC00) \uC720\uD6A8\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
|
|
511
|
+
{{validationMessage}}
|
|
512
|
+
\uC124\uC815\uC744`,part2:"\uD655\uC778\uD558\uC138\uC694."},notePathIsIgnored:"\uB178\uD2B8 \uACBD\uB85C\uAC00 \uBB34\uC2DC\uB429\uB2C8\uB2E4"},obsidianDevUtils:{buttons:{cancel:"\uCDE8\uC18C",ok:"\uD655\uC778"},dataview:{itemsPerPage:"\uD398\uC774\uC9C0\uB2F9 \uD56D\uBAA9 \uC218:",jumpToPage:"\uD398\uC774\uC9C0\uB85C \uC774\uB3D9:"},notices:{attachmentIsStillUsed:"\uCCA8\uBD80 \uD30C\uC77C {{attachmentPath}}\uC774(\uAC00) \uB2E4\uB978 \uB178\uD2B8\uC5D0\uC11C \uC5EC\uC804\uD788 \uC0AC\uC6A9\uB418\uACE0 \uC788\uC2B5\uB2C8\uB2E4. \uC0AD\uC81C\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.",unhandledError:"\uCC98\uB9AC\uB418\uC9C0 \uC54A\uC740 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4. \uC790\uC138\uD55C \uB0B4\uC6A9\uC740 \uCF58\uC194\uC744 \uD655\uC778\uD558\uC138\uC694."}},pluginSettings:{attachmentRenameMode:{all:{description:"\uBAA8\uB4E0 \uD30C\uC77C\uC758 \uC774\uB984\uC774 \uBCC0\uACBD\uB429\uB2C8\uB2E4.",displayText:"\uBAA8\uB450"},none:{description:"\uC774\uB984\uC774 \uBCF4\uC874\uB429\uB2C8\uB2E4.",displayText:"\uC5C6\uC74C"},onlyPastedImages:{description:"\uBD99\uC5EC\uB123\uC740 \uC774\uBBF8\uC9C0\uB9CC \uC774\uB984\uC774 \uBCC0\uACBD\uB429\uB2C8\uB2E4. PNG \uC774\uBBF8\uC9C0 \uB0B4\uC6A9\uC774 \uD074\uB9BD\uBCF4\uB4DC\uC5D0\uC11C \uC9C1\uC811 \uBD99\uC5EC\uB123\uC5B4\uC9C8 \uB54C\uB9CC \uC801\uC6A9\uB429\uB2C8\uB2E4. \uC77C\uBC18\uC801\uC73C\uB85C \uC2A4\uD06C\uB9B0\uC0F7 \uBD99\uC5EC\uB123\uAE30\uC5D0 \uC0AC\uC6A9\uB429\uB2C8\uB2E4.",displayText:"\uBD99\uC5EC\uB123\uC740 \uC774\uBBF8\uC9C0\uB9CC"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"\uCCA8\uBD80 \uD30C\uC77C \uC218\uC9D1\uC744 \uCDE8\uC18C\uD569\uB2C8\uB2E4.",displayText:"\uCDE8\uC18C"},copy:{description:"\uCCA8\uBD80 \uD30C\uC77C\uC744 \uC0C8 \uC704\uCE58\uC5D0 \uBCF5\uC0AC\uD569\uB2C8\uB2E4.",displayText:"\uBCF5\uC0AC"},move:{description:"\uCCA8\uBD80 \uD30C\uC77C\uC744 \uC0C8 \uC704\uCE58\uB85C \uC774\uB3D9\uD569\uB2C8\uB2E4.",displayText:"\uC774\uB3D9"},prompt:{description:"\uC0AC\uC6A9\uC790\uC5D0\uAC8C \uB3D9\uC791\uC744 \uC120\uD0DD\uD558\uB3C4\uB85D \uC694\uCCAD\uD569\uB2C8\uB2E4.",displayText:"\uC694\uCCAD"},skip:{description:"\uCCA8\uBD80 \uD30C\uC77C\uC744 \uAC74\uB108\uB6F0\uACE0 \uB2E4\uC74C\uC73C\uB85C \uC9C4\uD589\uD569\uB2C8\uB2E4.",displayText:"\uAC74\uB108\uB6F0\uAE30"}},defaultImageSizeDimension:{height:"\uB192\uC774",width:"\uB108\uBE44"},emptyAttachmentFolderBehavior:{delete:{description:"\uBE48 \uCCA8\uBD80 \uD30C\uC77C \uD3F4\uB354\uB97C \uC0AD\uC81C\uD569\uB2C8\uB2E4.",displayText:"\uC0AD\uC81C"},deleteWithEmptyParents:{description:"\uBE48 \uCCA8\uBD80 \uD30C\uC77C \uD3F4\uB354\uC640 \uBE48 \uC0C1\uC704 \uD3F4\uB354\uB4E4\uC744 \uC0AD\uC81C\uD569\uB2C8\uB2E4.",displayText:"\uBE48 \uC0C1\uC704 \uD3F4\uB354\uC640 \uD568\uAED8 \uC0AD\uC81C"},keep:{description:"\uBE48 \uCCA8\uBD80 \uD30C\uC77C \uD3F4\uB354\uB97C \uC720\uC9C0\uD569\uB2C8\uB2E4.",displayText:"\uC720\uC9C0"}}},pluginSettingsManager:{customToken:{codeComment:`// \uC0AC\uC6A9\uC790 \uC815\uC758 \uD1A0\uD070\uC740 \uD50C\uB7EC\uADF8\uC778 \uBC84\uC804 9.0.0\uC5D0\uC11C \uB3C4\uC785\uB41C \uC0C8 \uD615\uC2DD\uC73C\uB85C \uC5C5\uB370\uC774\uD2B8\uD574\uC57C \uD558\uBBC0\uB85C \uC8FC\uC11D \uCC98\uB9AC\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
|
|
513
|
+
// \uC790\uC138\uD55C \uB0B4\uC6A9\uC740 \uBB38\uC11C(https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens)\uB97C \uCC38\uC870\uD558\uC138\uC694.`,deprecated:{part1:"\uD50C\uB7EC\uADF8\uC778 \uBC84\uC804 9.0.0\uC5D0\uC11C \uC0AC\uC6A9\uC790 \uC815\uC758 \uD1A0\uD070 \uB4F1\uB85D \uD615\uC2DD\uC774 \uBCC0\uACBD\uB418\uC5C8\uC2B5\uB2C8\uB2E4. \uD1A0\uD070\uC744 \uC801\uC808\uD788 \uC5C5\uB370\uC774\uD2B8\uD558\uC138\uC694. \uC790\uC138\uD55C \uB0B4\uC6A9\uC740",part2:"\uBB38\uC11C",part3:"\uB97C \uCC38\uC870\uD558\uC138\uC694"}},legacyRenameAttachmentsToLowerCase:{part1:"\uD50C\uB7EC\uADF8\uC778 \uBC84\uC804 9.0.0\uC5D0\uC11C",part2:"\uC124\uC815\uC774 \uB354 \uC774\uC0C1 \uC0AC\uC6A9\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. \uB300\uC2E0",part3:"\uD615\uC2DD\uC744 \uC0AC\uC6A9\uD558\uC138\uC694. \uC790\uC138\uD55C \uB0B4\uC6A9\uC740",part4:"\uBB38\uC11C",part5:"\uB97C \uCC38\uC870\uD558\uC138\uC694"},markdownUrlFormat:{deprecated:{part1:"\uB2E4\uC74C \uD615\uC2DD\uC5D0 \uB300\uD574 \uC798\uBABB\uB41C \uAC12\uC774 \uC124\uC815\uB418\uC5C8\uC744 \uC218 \uC788\uC2B5\uB2C8\uB2E4",part2:". \uC790\uC138\uD55C \uB0B4\uC6A9\uC740",part3:"\uBB38\uC11C",part4:"\uB97C \uCC38\uC870\uD558\uC138\uC694",part5:"\uC774 \uBA54\uC2DC\uC9C0\uB294 \uB2E4\uC2DC \uD45C\uC2DC\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4."}},specialCharacters:{part1:"\uD50C\uB7EC\uADF8\uC778 \uBC84\uC804 9.16.0\uC5D0\uC11C",part2:"\uAE30\uBCF8 \uC124\uC815 \uAC12\uC774 \uBCC0\uACBD\uB418\uC5C8\uC2B5\uB2C8\uB2E4. \uC124\uC815 \uAC12\uC774 \uC0C8\uB85C\uC6B4 \uAE30\uBCF8 \uAC12\uC73C\uB85C \uC5C5\uB370\uC774\uD2B8\uB418\uC5C8\uC2B5\uB2C8\uB2E4."},validation:{defaultImageSizeMustBePercentageOrPixels:"\uAE30\uBCF8 \uC774\uBBF8\uC9C0 \uD06C\uAE30\uB294 \uD53D\uC140 \uB610\uB294 \uBC31\uBD84\uC728\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4",invalidCustomTokensCode:"\uC720\uD6A8\uD558\uC9C0 \uC54A\uC740 \uC0AC\uC6A9\uC790 \uC815\uC758 \uD1A0\uD070 \uCF54\uB4DC",invalidRegularExpression:"\uC720\uD6A8\uD558\uC9C0 \uC54A\uC740 \uC815\uADDC\uC2DD {{regExp}}",specialCharactersMustNotContainSlash:"\uD2B9\uC218 \uBB38\uC790\uC5D0\uB294 /\uAC00 \uD3EC\uD568\uB418\uC5B4\uC11C\uB294 \uC548 \uB429\uB2C8\uB2E4",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"\uD2B9\uC218 \uBB38\uC790 \uB300\uCCB4\uC5D0\uB294 \uC720\uD6A8\uD558\uC9C0 \uC54A\uC740 \uD30C\uC77C \uC774\uB984 \uACBD\uB85C \uBB38\uC790\uAC00 \uD3EC\uD568\uB418\uC5B4\uC11C\uB294 \uC548 \uB429\uB2C8\uB2E4."},version:{part1:"\uC124\uC815 \uD30C\uC77C ",part2:"\uC758 \uBC84\uC804\uC774",part3:"\uD604\uC7AC \uD50C\uB7EC\uADF8\uC778 \uBC84\uC804\uBCF4\uB2E4 \uC0C8 \uBC84\uC804\uC785\uB2C8\uB2E4",part4:"\uD50C\uB7EC\uADF8\uC778\uC774 \uC608\uC0C1\uB300\uB85C \uC791\uB3D9\uD558\uC9C0 \uC54A\uC744 \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uD50C\uB7EC\uADF8\uC778\uC744 \uCD5C\uC2E0 \uBC84\uC804\uC73C\uB85C \uC5C5\uB370\uC774\uD2B8\uD558\uAC70\uB098 \uC124\uC815\uC774 \uC62C\uBC14\uB978\uC9C0 \uD655\uC778\uD558\uC138\uC694."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"\uD30C\uC77C\uC744 \uCCA8\uBD80\uD560 \uB54C:"},name:"\uCCA8\uBD80 \uD30C\uC77C \uC774\uB984 \uBCC0\uACBD \uBAA8\uB4DC"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"\uC218\uC9D1\uB41C \uCCA8\uBD80 \uD30C\uC77C\uC774 \uC5EC\uB7EC \uB178\uD2B8\uC5D0\uC11C \uC0AC\uC6A9\uB420 \uB54C:"},name:"\uC5EC\uB7EC \uB178\uD2B8\uC5D0\uC11C \uC0AC\uC6A9\uB418\uB294 \uCCA8\uBD80 \uD30C\uC77C \uC218\uC9D1 \uBAA8\uB4DC"},collectedAttachmentFileName:{description:{part1:"\uC0AC\uC6A9 \uAC00\uB2A5\uD55C",part2:"\uD1A0\uD070\uC744 \uCC38\uC870\uD558\uC138\uC694"},name:"\uC218\uC9D1\uB41C \uCCA8\uBD80 \uD30C\uC77C \uC774\uB984"},customTokens:{description:{part1:"\uC0AC\uC6A9\uD560 \uC0AC\uC6A9\uC790 \uC815\uC758 \uD1A0\uD070\uC785\uB2C8\uB2E4.",part2:"\uC790\uC138\uD55C \uB0B4\uC6A9\uC740",part3:"\uBB38\uC11C",part4:"\uB97C \uCC38\uC870\uD558\uC138\uC694.",part5:"\u26A0\uFE0F \uC0AC\uC6A9\uC790 \uC815\uC758 \uD1A0\uD070\uC740 \uC784\uC758\uC758 JavaScript \uCF54\uB4DC\uC77C \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uC798\uBABB \uC791\uC131\uB418\uBA74 \uB370\uC774\uD130 \uC190\uC2E4\uC744 \uC77C\uC73C\uD0AC \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uBCF8\uC778 \uCC45\uC784\uD558\uC5D0 \uC0AC\uC6A9\uD558\uC138\uC694."},name:"\uC0AC\uC6A9\uC790 \uC815\uC758 \uD1A0\uD070"},defaultImageSize:{description:{part1:"\uAE30\uBCF8 \uC774\uBBF8\uC9C0 \uD06C\uAE30\uC785\uB2C8\uB2E4.",part2:"\uD53D\uC140\uB85C \uC9C0\uC815\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4",part3:"\uB610\uB294 \uC804\uCCB4 \uC774\uBBF8\uC9C0 \uD06C\uAE30\uC758 \uBC31\uBD84\uC728\uB85C \uC9C0\uC815\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4",part4:"\uC6D0\uBCF8 \uC774\uBBF8\uC9C0 \uD06C\uAE30\uB97C \uC0AC\uC6A9\uD558\uB824\uBA74 \uBE44\uC6CC\uB450\uC138\uC694."},name:"\uAE30\uBCF8 \uC774\uBBF8\uC9C0 \uD06C\uAE30"},duplicateNameSeparator:{description:{part1:"\uAE30\uC874 \uD30C\uC77C\uACFC \uAC19\uC740 \uC774\uB984\uC758 \uD30C\uC77C\uC744 \uBD99\uC5EC\uB123\uAE30/\uB4DC\uB798\uADF8\uD560 \uB54C \uC774 \uAD6C\uBD84\uC790\uAC00 \uD30C\uC77C \uC774\uB984\uC5D0 \uCD94\uAC00\uB429\uB2C8\uB2E4.",part2:"\uC608\uB97C \uB4E4\uC5B4, \uD30C\uC77C\uC744 \uB4DC\uB798\uADF8\uD560 \uB54C",part3:", \uC774\uB984\uC774",part4:"\uB4F1\uC73C\uB85C \uBCC0\uACBD\uB418\uC5B4 \uC0AC\uC6A9 \uAC00\uB2A5\uD55C \uCCAB \uBC88\uC9F8 \uC774\uB984\uC744 \uC5BB\uC2B5\uB2C8\uB2E4."},name:"\uC911\uBCF5 \uC774\uB984 \uAD6C\uBD84\uC790"},emptyAttachmentFolderBehavior:{description:{part1:"\uCCA8\uBD80 \uD30C\uC77C \uD3F4\uB354\uAC00 \uBE44\uAC8C \uB420 \uB54C:"},name:"\uBE48 \uCCA8\uBD80 \uD30C\uC77C \uD3F4\uB354 \uB3D9\uC791"},excludePaths:{description:{part1:"\uB2E4\uC74C \uACBD\uB85C\uC5D0\uC11C \uB178\uD2B8\uB97C \uC81C\uC678\uD569\uB2C8\uB2E4.",part2:"\uAC01 \uACBD\uB85C\uB97C \uC0C8 \uC904\uC5D0 \uC785\uB825\uD558\uC138\uC694.",part3:"\uACBD\uB85C \uBB38\uC790\uC5F4 \uB610\uB294",part4:"\uC744(\uB97C) \uC0AC\uC6A9\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uC124\uC815\uC774 \uBE44\uC5B4 \uC788\uC73C\uBA74 \uB178\uD2B8\uAC00 \uC81C\uC678\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4."},name:"\uC81C\uC678 \uACBD\uB85C"},excludePathsFromAttachmentCollecting:{description:{part1:"\uB2E4\uC74C \uACBD\uB85C\uC5D0\uC11C \uCCA8\uBD80 \uD30C\uC77C\uC744 \uC81C\uC678\uD569\uB2C8\uB2E4",part2:"\uCCA8\uBD80 \uD30C\uC77C \uC218\uC9D1",part3:"\uBA85\uB839\uC774 \uC2E4\uD589\uB420 \uB54C.",part4:"\uAC01 \uACBD\uB85C\uB97C \uC0C8 \uC904\uC5D0 \uC785\uB825\uD558\uC138\uC694.",part5:"\uACBD\uB85C \uBB38\uC790\uC5F4 \uB610\uB294",part6:"\uC744(\uB97C) \uC0AC\uC6A9\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uC124\uC815\uC774 \uBE44\uC5B4 \uC788\uC73C\uBA74 \uCCA8\uBD80 \uD30C\uC77C \uC218\uC9D1\uC5D0\uC11C \uACBD\uB85C\uAC00 \uC81C\uC678\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4."},name:"\uCCA8\uBD80 \uD30C\uC77C \uC218\uC9D1\uC5D0\uC11C \uC81C\uC678\uD560 \uACBD\uB85C"},generatedAttachmentFileName:{description:{part1:"\uC0AC\uC6A9 \uAC00\uB2A5\uD55C",part2:"\uD1A0\uD070\uC744 \uCC38\uC870\uD558\uC138\uC694"},name:"\uC0DD\uC131\uB41C \uCCA8\uBD80 \uD30C\uC77C \uC774\uB984"},includePaths:{description:{part1:"\uB2E4\uC74C \uACBD\uB85C\uC5D0\uC11C \uB178\uD2B8\uB97C \uD3EC\uD568\uD569\uB2C8\uB2E4.",part2:"\uAC01 \uACBD\uB85C\uB97C \uC0C8 \uC904\uC5D0 \uC785\uB825\uD558\uC138\uC694.",part3:"\uACBD\uB85C \uBB38\uC790\uC5F4 \uB610\uB294",part4:"\uC744(\uB97C) \uC0AC\uC6A9\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. \uC124\uC815\uC774 \uBE44\uC5B4 \uC788\uC73C\uBA74 \uBAA8\uB4E0 \uB178\uD2B8\uAC00 \uD3EC\uD568\uB429\uB2C8\uB2E4."},name:"\uD3EC\uD568 \uACBD\uB85C"},jpegQuality:{description:"\uD488\uC9C8\uC774 \uB0AE\uC744\uC218\uB85D \uC555\uCD95\uB960\uC774 \uB192\uC544\uC9D1\uB2C8\uB2E4.",name:"JPEG \uD488\uC9C8"},locationForNewAttachments:{description:{part1:"\uC0C1\uB300 \uACBD\uB85C\uB97C \uC0AC\uC6A9\uD558\uB824\uBA74",part2:"\uB85C \uC2DC\uC791\uD558\uC138\uC694.",part3:"\uC0AC\uC6A9 \uAC00\uB2A5\uD55C",part4:"\uD1A0\uD070\uC744 \uCC38\uC870\uD558\uC138\uC694",part5:"\uC810 \uD3F4\uB354(\uC608:",part6:")\uB294 \uAD8C\uC7A5\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. Obsidian\uC774 \uCD94\uC801\uD558\uC9C0 \uC54A\uAE30 \uB54C\uBB38\uC785\uB2C8\uB2E4. \uAD00\uB9AC\uD558\uB824\uBA74",part7:"\uD50C\uB7EC\uADF8\uC778\uC774 \uD544\uC694\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4."},name:"\uC0C8 \uCCA8\uBD80 \uD30C\uC77C \uC704\uCE58"},markdownUrlFormat:{description:{part1:"Markdown\uC5D0 \uC0BD\uC785\uB420 URL\uC758 \uD615\uC2DD\uC785\uB2C8\uB2E4.",part2:"\uC0AC\uC6A9 \uAC00\uB2A5\uD55C",part3:"\uD1A0\uD070\uC744 \uCC38\uC870\uD558\uC138\uC694",part4:"\uAE30\uBCF8 \uD615\uC2DD\uC744 \uC0AC\uC6A9\uD558\uB824\uBA74 \uBE44\uC6CC\uB450\uC138\uC694."},name:"Markdown URL \uD615\uC2DD"},renameAttachmentsToLowerCase:"\uCCA8\uBD80 \uD30C\uC77C\uC744 \uC18C\uBB38\uC790\uB85C \uC774\uB984 \uBCC0\uACBD",renamedAttachmentFileName:{description:{part1:"\uC0AC\uC6A9 \uAC00\uB2A5\uD55C",part2:"\uD1A0\uD070\uC744 \uCC38\uC870\uD558\uC138\uC694"},name:"\uC774\uB984\uC774 \uBCC0\uACBD\uB41C \uCCA8\uBD80 \uD30C\uC77C \uC774\uB984"},resetToSampleCustomTokens:{message:"\uC0AC\uC6A9\uC790 \uC815\uC758 \uD1A0\uD070\uC744 \uC0D8\uD50C \uC0AC\uC6A9\uC790 \uC815\uC758 \uD1A0\uD070\uC73C\uB85C \uC7AC\uC124\uC815\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C? \uBCC0\uACBD\uC0AC\uD56D\uC774 \uC190\uC2E4\uB429\uB2C8\uB2E4.",title:"\uC0D8\uD50C \uC0AC\uC6A9\uC790 \uC815\uC758 \uD1A0\uD070\uC73C\uB85C \uC7AC\uC124\uC815"},shouldConvertPastedImagesToJpeg:{description:"\uBD99\uC5EC\uB123\uC740 \uC774\uBBF8\uC9C0\uB97C JPEG\uB85C \uBCC0\uD658\uD560\uC9C0 \uC5EC\uBD80\uC785\uB2C8\uB2E4. PNG \uC774\uBBF8\uC9C0 \uB0B4\uC6A9\uC774 \uD074\uB9BD\uBCF4\uB4DC\uC5D0\uC11C \uC9C1\uC811 \uBD99\uC5EC\uB123\uC5B4\uC9C8 \uB54C\uB9CC \uC801\uC6A9\uB429\uB2C8\uB2E4. \uC77C\uBC18\uC801\uC73C\uB85C \uC2A4\uD06C\uB9B0\uC0F7 \uBD99\uC5EC\uB123\uAE30\uC5D0 \uC0AC\uC6A9\uB429\uB2C8\uB2E4.",name:"\uBD99\uC5EC\uB123\uC740 \uC774\uBBF8\uC9C0\uB97C JPEG\uB85C \uBCC0\uD658"},shouldDeleteOrphanAttachments:{description:"\uD65C\uC131\uD654\uD558\uBA74 \uB178\uD2B8\uAC00 \uC0AD\uC81C\uB420 \uB54C \uACE0\uC544 \uCCA8\uBD80 \uD30C\uC77C\uB3C4 \uD568\uAED8 \uC0AD\uC81C\uB429\uB2C8\uB2E4.",name:"\uACE0\uC544 \uCCA8\uBD80 \uD30C\uC77C \uC0AD\uC81C"},shouldRenameAttachmentFiles:{description:{part1:"\uD65C\uC131\uD654\uD558\uBA74 \uB178\uD2B8\uC758 \uC774\uB984\uC774 \uBCC0\uACBD\uB418\uAC70\uB098 \uC774\uB3D9\uB420 \uB54C \uCCA8\uBD80 \uD30C\uC77C\uC774",part2:"\uC124\uC815\uC5D0 \uB530\uB77C \uC774\uB984\uC774 \uBCC0\uACBD\uB429\uB2C8\uB2E4."},name:"\uCCA8\uBD80 \uD30C\uC77C \uC774\uB984 \uBCC0\uACBD"},shouldRenameAttachmentFolders:{description:"\uB178\uD2B8\uC758 \uC774\uB984\uC774 \uBCC0\uACBD\uB418\uAC70\uB098 \uC774\uB3D9\uB420 \uB54C \uCCA8\uBD80 \uD30C\uC77C \uD3F4\uB354\uC758 \uC774\uB984\uC744 \uBCC0\uACBD\uD560\uC9C0 \uC5EC\uBD80\uC785\uB2C8\uB2E4.",name:"\uCCA8\uBD80 \uD30C\uC77C \uD3F4\uB354 \uC774\uB984 \uBCC0\uACBD"},shouldRenameCollectedAttachments:{description:{part1:"\uD65C\uC131\uD654\uD558\uBA74",part2:"\uCCA8\uBD80 \uD30C\uC77C \uC218\uC9D1",part3:"\uBA85\uB839\uC744 \uD1B5\uD574 \uCC98\uB9AC\uB41C \uCCA8\uBD80 \uD30C\uC77C\uC774",part4:"\uC124\uC815\uC5D0 \uB530\uB77C \uC774\uB984\uC774 \uBCC0\uACBD\uB429\uB2C8\uB2E4."},name:"\uC218\uC9D1\uB41C \uCCA8\uBD80 \uD30C\uC77C \uC774\uB984 \uBCC0\uACBD"},specialCharacters:{description:{part1:"\uCCA8\uBD80 \uD30C\uC77C \uD3F4\uB354 \uBC0F \uD30C\uC77C \uC774\uB984\uC5D0\uC11C \uAD50\uCCB4\uD558\uAC70\uB098 \uC81C\uAC70\uD560 \uD2B9\uC218 \uBB38\uC790\uC785\uB2C8\uB2E4.",part2:"\uD2B9\uC218 \uBB38\uC790\uB97C \uBCF4\uC874\uD558\uB824\uBA74 \uBE44\uC6CC\uB450\uC138\uC694."},name:"\uD2B9\uC218 \uBB38\uC790"},specialCharactersReplacement:{description:{part1:"\uCCA8\uBD80 \uD30C\uC77C \uD3F4\uB354 \uBC0F \uD30C\uC77C \uC774\uB984\uC758 \uD2B9\uC218 \uBB38\uC790\uC5D0 \uB300\uD55C \uAD50\uCCB4 \uBB38\uC790\uC5F4\uC785\uB2C8\uB2E4.",part2:"\uD2B9\uC218 \uBB38\uC790\uB97C \uC81C\uAC70\uD558\uB824\uBA74 \uBE44\uC6CC\uB450\uC138\uC694."},name:"\uD2B9\uC218 \uBB38\uC790 \uAD50\uCCB4"},timeoutInSeconds:{description:{part1:"\uBAA8\uB4E0 \uC791\uC5C5\uC5D0 \uB300\uD55C \uD0C0\uC784\uC544\uC6C3(\uCD08)\uC785\uB2C8\uB2E4.",part2:"\uB9CC\uC57D",part3:"\uC774(\uAC00) \uC124\uC815\uB418\uBA74 \uC791\uC5C5 \uC2E4\uD589 \uD0C0\uC784\uC544\uC6C3\uC774 \uBE44\uD65C\uC131\uD654\uB429\uB2C8\uB2E4."},name:"\uC2DC\uAC04 \uCD08\uACFC(\uCD08)"},treatAsAttachmentExtensions:{description:{part1:"\uC774\uB7EC\uD55C \uD655\uC7A5\uC790\uB97C \uAC00\uC9C4 \uD30C\uC77C\uC744 \uCCA8\uBD80 \uD30C\uC77C\uB85C \uCC98\uB9AC\uD569\uB2C8\uB2E4.",part2:"\uAE30\uBCF8\uC801\uC73C\uB85C",part3:"\uBC0F",part4:"\uB9C1\uD06C\uB41C \uD30C\uC77C\uC740 \uCCA8\uBD80 \uD30C\uC77C\uB85C \uCC98\uB9AC\uB418\uC9C0 \uC54A\uC73C\uBA70 \uB178\uD2B8\uC640 \uD568\uAED8 \uC774\uB3D9\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.",part5:"\uC774 \uB3D9\uC791\uC744 \uC7AC\uC815\uC758\uD558\uB824\uBA74 \uC0AC\uC6A9\uC790 \uC815\uC758 \uD655\uC7A5\uC790(\uC608:",part6:")\uB97C \uCD94\uAC00\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4."},name:"\uCCA8\uBD80 \uD30C\uC77C \uD655\uC7A5\uC790\uB85C \uCC98\uB9AC"}},promptWithPreviewModal:{previewModal:{title:"\uCCA8\uBD80 \uD30C\uC77C \uBBF8\uB9AC\uBCF4\uAE30 '{{fullFileName}}'"},title:"\uD504\uB86C\uD504\uD2B8 \uD1A0\uD070\uC5D0 \uB300\uD55C \uAC12\uC744 \uC81C\uACF5\uD558\uC138\uC694"},regularExpression:"/\uC815\uADDC\uC2DD/"};var lh={attachmentCollector:{confirm:{part1:"Vai v\u0113laties rekurs\u012Bvi sav\u0101kt pielikumus vis\u0101m piez\u012Bm\u0113m map\u0113s?",part2:"\u0160o darb\u012Bbu nevar atsaukt."},progressBar:{message:"Apkopoju pielikumus {{iterationStr}} - '{{noteFilePath}}'.",title:"Apkopoju pielikumus..."}},buttons:{copy:"Kop\u0113t",move:"P\u0101rvietot",previewAttachmentFile:"Pielikuma faila priek\u0161skat\u012Bjums",skip:"Izlaist"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"Pielikums",part2:"tiek atsauc\u0113ts no vair\u0101k\u0101m piezim\u0113m."},heading:"Apkopoju pielikumu, kuru lieto vair\u0101kas piezimes",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Izmantot to pa\u0161u darb\u012Bbu citiem probl\u0113matiskajiem pielikumiem"},commands:{collectAttachmentsCurrentFolder:"Apkopot pielikumus p\u0161reiz\u0113j\u0101 mapp\u0113",collectAttachmentsCurrentNote:"Apkopot pielikumus p\u0161reiz\u0113j\u0101 piezim\u0113",collectAttachmentsEntireVault:"Apkopot pielikumus vis\u0101 glabatav\u0101"},menuItems:{collectAttachmentsInFile:"Sav\u0101kt pielikumus fail\u0101",collectAttachmentsInFiles:"Sav\u0101kt pielikumus failos"},notice:{collectingAttachments:"Apkopoju pielikumus priek\u0161 '{{noteFilePath}}'",collectingAttachmentsCancelled:"Pielikumu apkopo\u0161ana atcelta. Skatiet konsoli detal\u0101m.",generatedAttachmentFileNameIsInvalid:{part1:`\u0122ener\u0113tais pielikuma faila nosaukums '{{path}}' nav der\u012Bgs.
|
|
514
|
+
{{validationMessage}}
|
|
515
|
+
P\u0101rbaudiet savu`,part2:"iestat\u012Bjumu."},notePathIsIgnored:"Piezimes ce\u013C\u0161 tiek ignor\u0113ts"},obsidianDevUtils:{buttons:{cancel:"Atcelt",ok:"Labi"},dataview:{itemsPerPage:"Vienumi lap\u0101:",jumpToPage:"P\u0101riet uz lapu:"},notices:{attachmentIsStillUsed:"Pielikums {{attachmentPath}} joproj\u0101m tiek izmantots cit\u0101s piezim\u0113s. Tas netiks dz\u0113sts.",unhandledError:"Rad\u0101s neapstr\u0101d\u0101ta k\u013C\u016Bda. L\u016Bdzu, p\u0101rbaudiet konsoli, lai ieg\u016Btu vair\u0101k inform\u0101cijas."}},pluginSettings:{attachmentRenameMode:{all:{description:"visi faili tiek p\u0101rd\u0113v\u0113ti.",displayText:"Visi"},none:{description:"to nosaukumi tiek saglab\u0101ti.",displayText:"Neviens"},onlyPastedImages:{description:"tikai iel\u012Bm\u0113t\u0101s att\u0113li tiek p\u0101rd\u0113v\u0113ti. Attiecas tikai tad, kad PNG att\u0113la saturs tiek iel\u012Bm\u0113ts tie\u0161i no starpliktuvnes. Parasti ekr\u0101nuz\u0146\u0113mumu iel\u012Bm\u0113\u0161anai.",displayText:"Tikai iel\u012Bm\u0113tie att\u0113li"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"atcelt pielikumu apkopo\u0161anu.",displayText:"Atcelt"},copy:{description:"kop\u0113t pielikumu uz jauno atra\u0161an\u0101s vietu.",displayText:"Kop\u0113t"},move:{description:"p\u0101rvietot pielikumu uz jauno atra\u0161an\u0101s vietu.",displayText:"P\u0101rvietot"},prompt:{description:"pras\u012Bt lietot\u0101jam izv\u0113l\u0113ties darb\u012Bbu.",displayText:"Pras\u012Bt"},skip:{description:"izlaist pielikumu un turpin\u0101t ar n\u0101kamo.",displayText:"Izlaist"}},defaultImageSizeDimension:{height:"Augstums",width:"Platums"},emptyAttachmentFolderBehavior:{delete:{description:"dz\u0113s\u012Bs tuk\u0161o pielikumu mapi.",displayText:"Dz\u0113st"},deleteWithEmptyParents:{description:"dz\u0113s\u012Bs tuk\u0161o pielikumu mapi un t\u0101s tuk\u0161\u0101s vec\u0101ku mapes.",displayText:"Dz\u0113st ar tuk\u0161iem vec\u0101kiem"},keep:{description:"saglab\u0101s tuk\u0161o pielikumu mapi.",displayText:"Saglab\u0101t"}}},pluginSettingsManager:{customToken:{codeComment:`// Piel\u0101gotie tokeni tika koment\u0113ti, jo tie ir j\u0101atjaunina uz jauno form\u0101tu, kas ieviests spraud\u0146a versij\u0101 9.0.0.
|
|
516
|
+
// S\u012Bk\u0101ku inform\u0101ciju skatiet dokument\u0101cij\u0101 (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens).`,deprecated:{part1:"Spraud\u0146a versij\u0101 9.0.0 piel\u0101goto tokenu re\u0123istr\u0101cijas form\u0101ts main\u012Bj\u0101s. L\u016Bdzu, atjauniniet savus tokenus attiec\u012Bgi. S\u012Bk\u0101ku inform\u0101ciju skatiet",part2:"dokument\u0101cij\u0101",part3:"."}},legacyRenameAttachmentsToLowerCase:{part1:"Spraud\u0146a versij\u0101 9.0.0",part2:"iestat\u012Bjums ir novecojis. Izmantojiet",part3:"form\u0101tu. S\u012Bk\u0101ku inform\u0101ciju skatiet",part4:"dokument\u0101cij\u0101",part5:"."},markdownUrlFormat:{deprecated:{part1:"Jums ir potenci\u0101li nepareiza v\u0113rt\u012Bba",part2:"form\u0101tam. L\u016Bdzu, skatiet",part3:"dokument\u0101ciju",part4:"s\u012Bk\u0101kai inform\u0101cijai",part5:"\u0160is zi\u0146ojums vairs netiks par\u0101d\u012Bts."}},specialCharacters:{part1:"Spraud\u0146a versij\u0101 9.16.0",part2:"noklus\u0113juma iestat\u012Bjuma v\u0113rt\u012Bba main\u012Bj\u0101s. J\u016Bsu iestat\u012Bjuma v\u0113rt\u012Bba tika atjaunin\u0101ta uz jauno noklus\u0113juma v\u0113rt\u012Bbu."},validation:{defaultImageSizeMustBePercentageOrPixels:"Noklus\u0113juma att\u0113la izm\u0113ram j\u0101b\u016Bt pikse\u013Cos vai procentos",invalidCustomTokensCode:"Neder\u012Bgs piel\u0101goto tokenu kods",invalidRegularExpression:"Neder\u012Bga regul\u0101r\u0101 izteiksme {{regExp}}",specialCharactersMustNotContainSlash:"\u012Apa\u0161ajos rakstz\u012Bm\u0113s nedr\u012Bkst b\u016Bt /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"\u012Apa\u0161o rakstz\u012Bmju aizst\u0101\u0161ana nedr\u012Bkst satur\u0113t neder\u012Bgus faila nosaukuma ce\u013Ca rakstz\u012Bmes."},version:{part1:"J\u016Bsu iestat\u012Bjumu fails ",part2:"ir versija",part3:", kas ir jaun\u0101ka par pa\u0161reiz\u0113jo spraud\u0146a versiju",part4:"Spraudnis var nedarboties k\u0101 paredz\u0113ts. L\u016Bdzu, atjauniniet spraudni uz jaun\u0101ko versiju vai p\u0101rliecinieties, ka iestat\u012Bjumi ir pareizi."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"Pievienojot failus:"},name:"Pielikuma p\u0101rd\u0113v\u0113\u0161anas re\u017E\u012Bms"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Kad apkopotais pielikums tiek izmantots vair\u0101k\u0101s piezim\u0113s:"},name:"Vair\u0101k\u0101s piezim\u0113s izmantoto pielikumu apkopo\u0161anas re\u017E\u012Bms"},collectedAttachmentFileName:{description:{part1:"Skatiet pieejamos",part2:"tokenus"},name:"Apkopotais pielikuma faila nosaukums"},customTokens:{description:{part1:"Izmantojamie piel\u0101gotie tokeni.",part2:"Skatiet",part3:"dokument\u0101ciju",part4:"s\u012Bk\u0101kai inform\u0101cijai.",part5:"\u26A0\uFE0F Piel\u0101gotie tokeni var b\u016Bt patva\u013C\u012Bgs JavaScript kods. Ja slikti uzrakst\u012Bts, tas var izrais\u012Bt datu zudumu. Izmantojiet uz savu risku."},name:"Piel\u0101gotie tokeni"},defaultImageSize:{description:{part1:"Noklus\u0113juma att\u0113la izm\u0113rs.",part2:"Var nor\u0101d\u012Bt pikse\u013Cos",part3:"vai procentos no piln\u0101 att\u0113la izm\u0113ra",part4:"Atst\u0101jiet tuk\u0161u, lai izmantotu ori\u0123in\u0101lo izm\u0113ru."},name:"Noklus\u0113juma att\u0113la izm\u0113rs"},duplicateNameSeparator:{description:{part1:"Kad iel\u012Bm\u0113jat/vilkat failu ar t\u0101du pa\u0161u nosaukumu k\u0101 eso\u0161am failam, \u0161is atdal\u012Bt\u0101js tiks pievienots faila nosaukumam.",part2:"Piem\u0113ram, vilkot failu",part3:", tas tiks p\u0101rd\u0113v\u0113ts uz",part4:", utt., ieg\u016Bstot pirmo pieejamo nosaukumu."},name:"Dubl\u0113to nosaukumu atdal\u012Bt\u0101js"},emptyAttachmentFolderBehavior:{description:{part1:"Kad pielikumu mape k\u013C\u016Bst tuk\u0161a:"},name:"Tuk\u0161as pielikumu mapes uzved\u012Bba"},excludePaths:{description:{part1:"Izsl\u0113gt piezimes no \u0161\u0101diem ce\u013Ciem.",part2:"Ievadiet katru ce\u013Cu jaun\u0101 rind\u0101.",part3:"Varat izmantot ce\u013Ca virkni vai",part4:"Ja iestat\u012Bjums ir tuk\u0161s, piezimes netiek izsl\u0113gtas."},name:"Izsl\u0113gt ce\u013Cus"},excludePathsFromAttachmentCollecting:{description:{part1:"Izsl\u0113gt pielikumus no \u0161\u0101diem ce\u013Ciem, kad",part2:"Apkopot pielikumus",part3:"komanda tiek izpild\u012Bta.",part4:"Ievadiet katru ce\u013Cu jaun\u0101 rind\u0101.",part5:"Varat izmantot ce\u013Ca virkni vai",part6:"Ja iestat\u012Bjums ir tuk\u0161s, ce\u013Ci netiek izsl\u0113gti no pielikumu apkopo\u0161anas."},name:"Izsl\u0113gt ce\u013Cus no pielikumu apkopo\u0161anas"},generatedAttachmentFileName:{description:{part1:"Skatiet pieejamos",part2:"tokenus"},name:"\u0122ener\u0113tais pielikuma faila nosaukums"},includePaths:{description:{part1:"Iek\u013Caut piezimes no \u0161\u0101diem ce\u013Ciem.",part2:"Ievadiet katru ce\u013Cu jaun\u0101 rind\u0101.",part3:"Varat izmantot ce\u013Ca virkni vai",part4:"Ja iestat\u012Bjums ir tuk\u0161s, visas piezimes tiek iek\u013Cautas."},name:"Iek\u013Caut ce\u013Cus"},jpegQuality:{description:"Jo maz\u0101ka kvalit\u0101te, jo liel\u0101ks saspie\u0161anas koeficients.",name:"JPEG kvalit\u0101te"},locationForNewAttachments:{description:{part1:"S\u0101ciet ar",part2:", lai izmantotu relat\u012Bvo ce\u013Cu.",part3:"Skatiet pieejamos",part4:"tokenus",part5:"Punktu mapes, piem\u0113ram",part6:", nav ieteicamas, jo Obsidian t\u0101s neuzrauga. Var b\u016Bt nepiecie\u0161ams izmantot",part7:"spraudni, lai t\u0101s p\u0101rvald\u012Btu."},name:"Jauno pielikumu atra\u0161an\u0101s vieta"},markdownUrlFormat:{description:{part1:"URL form\u0101ts, kas tiks ievietots Markdown.",part2:"Skatiet pieejamos",part3:"tokenus",part4:"Atst\u0101jiet tuk\u0161u, lai izmantotu noklus\u0113juma form\u0101tu."},name:"Markdown URL form\u0101ts"},renameAttachmentsToLowerCase:"P\u0101rd\u0113v\u0113t pielikumus uz mazajiem burtiem",renamedAttachmentFileName:{description:{part1:"Skatiet pieejamos",part2:"tokenus"},name:"P\u0101rd\u0113v\u0113tais pielikuma faila nosaukums"},resetToSampleCustomTokens:{message:"Vai tie\u0161\u0101m v\u0113laties atiestat\u012Bt piel\u0101gotos tokenus uz parauga piel\u0101gotajiem tokeniem? J\u016Bsu izmai\u0146as tiks zaud\u0113tas.",title:"Atiestat\u012Bt uz parauga piel\u0101gotajiem tokeniem"},shouldConvertPastedImagesToJpeg:{description:"Vai konvert\u0113t iel\u012Bm\u0113tos att\u0113lus uz JPEG. Attiecas tikai tad, kad PNG att\u0113la saturs tiek iel\u012Bm\u0113ts tie\u0161i no starpliktuvnes. Parasti ekr\u0101nuz\u0146\u0113mumu iel\u012Bm\u0113\u0161anai.",name:"Vai konvert\u0113t iel\u012Bm\u0113tos att\u0113lus uz JPEG"},shouldDeleteOrphanAttachments:{description:"Ja iesp\u0113jots, kad piezime tiek dz\u0113sta, t\u0101s b\u0101re\u0146u pielikumi ar\u012B tiek dz\u0113sti.",name:"Vai dz\u0113st b\u0101re\u0146u pielikumus"},shouldRenameAttachmentFiles:{description:{part1:"Ja iesp\u0113jots, kad piezime tiek p\u0101rd\u0113v\u0113ta vai p\u0101rvietota, t\u0101s pielikumi tiks p\u0101rd\u0113v\u0113ti saska\u0146\u0101 ar",part2:"iestat\u012Bjumu."},name:"Vai p\u0101rd\u0113v\u0113t pielikumu failus"},shouldRenameAttachmentFolders:{description:"Vai p\u0101rd\u0113v\u0113t pielikumu mapes, kad piezime tiek p\u0101rd\u0113v\u0113ta vai p\u0101rvietota.",name:"Vai p\u0101rd\u0113v\u0113t pielikumu mapes"},shouldRenameCollectedAttachments:{description:{part1:"Ja iesp\u0113jots, pielikumi, kas apstr\u0101d\u0101ti caur",part2:"Apkopot pielikumus",part3:"komand\u0101m, tiks p\u0101rd\u0113v\u0113ti saska\u0146\u0101 ar",part4:"iestat\u012Bjumu."},name:"Vai p\u0101rd\u0113v\u0113t apkopotos pielikumus"},specialCharacters:{description:{part1:"\u012Apa\u0161\u0101s rakstz\u012Bmes pielikumu map\u0113 un faila nosaukum\u0101, kas j\u0101aizst\u0101j vai j\u0101no\u0146em.",part2:"Atst\u0101jiet tuk\u0161u, lai saglab\u0101tu \u012Bpa\u0161\u0101s rakstz\u012Bmes."},name:"\u012Apa\u0161\u0101s rakstz\u012Bmes"},specialCharactersReplacement:{description:{part1:"Aizst\u0101\u0161anas virkne \u012Bpa\u0161aj\u0101m rakstz\u012Bm\u0113m pielikumu map\u0113 un faila nosaukum\u0101.",part2:"Atst\u0101jiet tuk\u0161u, lai no\u0146emtu \u012Bpa\u0161\u0101s rakstz\u012Bmes."},name:"\u012Apa\u0161o rakstz\u012Bmju aizst\u0101\u0161ana"},timeoutInSeconds:{description:{part1:"Laika ierobe\u017Eojums sekund\u0113s vis\u0101m oper\u0101cij\u0101m.",part2:"Ja",part3:"ir iestat\u012Bts, oper\u0101ciju izpildes laika ierobe\u017Eojums ir atsp\u0113jots."},name:"Laika ierobe\u017Eojums sekund\u0113s"},treatAsAttachmentExtensions:{description:{part1:"Uzskat\u012Bt failus ar \u0161\u0101diem papla\u0161in\u0101jumiem par pielikumiem.",part2:"P\u0113c noklus\u0113juma",part3:"un",part4:"saist\u012Btie faili netiek uzskat\u012Bti par pielikumiem un netiek p\u0101rvietoti kop\u0101 ar piezimi.",part5:"Varat pievienot piel\u0101gotus papla\u0161in\u0101jumus, piem\u0113ram",part6:", lai ignor\u0113tu \u0161o uzved\u012Bbu."},name:"Uzskat\u012Bt par pielikumu papla\u0161in\u0101jumiem"}},promptWithPreviewModal:{previewModal:{title:"Pielikuma faila priek\u0161skat\u012Bjums '{{fullFileName}}'"},title:"Nor\u0101diet v\u0113rt\u012Bbu prompt tokenam"},regularExpression:"/regul\u0101r\u0101 izteiksme/"};var ch={attachmentCollector:{confirm:{part1:"Adakah anda mahu mengumpul lampiran untuk semua nota dalam folder secara rekursif?",part2:"Operasi ini tidak boleh dibatalkan."},progressBar:{message:"Mengumpul lampiran {{iterationStr}} - '{{noteFilePath}}'.",title:"Mengumpul lampiran..."}},buttons:{copy:"Salin",move:"Pindah",previewAttachmentFile:"Pratonton fail lampiran",skip:"Langkau"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"Lampiran",part2:"dirujuk oleh beberapa nota."},heading:"Mengumpul lampiran yang digunakan oleh beberapa nota",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Patut menggunakan tindakan yang sama untuk lampiran bermasalah lain"},commands:{collectAttachmentsCurrentFolder:"Kumpul lampiran dalam folder semasa",collectAttachmentsCurrentNote:"Kumpul lampiran dalam nota semasa",collectAttachmentsEntireVault:"Kumpul lampiran dalam keseluruhan vault"},menuItems:{collectAttachmentsInFile:"Kumpul lampiran dalam fail",collectAttachmentsInFiles:"Kumpul lampiran dalam fail-fail"},notice:{collectingAttachments:"Mengumpul lampiran untuk '{{noteFilePath}}'",collectingAttachmentsCancelled:"Pengumpulan lampiran dibatalkan. Lihat konsol untuk butiran.",generatedAttachmentFileNameIsInvalid:{part1:`Nama fail lampiran yang dijana '{{path}}' tidak sah.
|
|
517
|
+
{{validationMessage}}
|
|
518
|
+
Semak`,part2:"tetapan anda."},notePathIsIgnored:"Laluan nota diabaikan"},obsidianDevUtils:{buttons:{cancel:"Batal",ok:"OK"},dataview:{itemsPerPage:"Item per halaman:",jumpToPage:"Lompat ke halaman:"},notices:{attachmentIsStillUsed:"Lampiran {{attachmentPath}} masih digunakan oleh nota lain. Ia tidak akan dipadamkan.",unhandledError:"Ralat yang tidak diuruskan berlaku. Sila semak konsol untuk maklumat lanjut."}},pluginSettings:{attachmentRenameMode:{all:{description:"semua fail akan dinamakan semula.",displayText:"Semua"},none:{description:"nama mereka dipelihara.",displayText:"Tiada"},onlyPastedImages:{description:"hanya imej yang ditampal akan dinamakan semula. Berlaku hanya apabila kandungan imej PNG ditampal terus dari papan keratan. Biasanya, untuk menampal tangkapan skrin.",displayText:"Hanya imej yang ditampal"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"batalkan pengumpulan lampiran.",displayText:"Batal"},copy:{description:"salin lampiran ke lokasi baru.",displayText:"Salin"},move:{description:"pindahkan lampiran ke lokasi baru.",displayText:"Pindah"},prompt:{description:"minta pengguna memilih tindakan.",displayText:"Minta"},skip:{description:"langkau lampiran dan teruskan ke yang seterusnya.",displayText:"Langkau"}},defaultImageSizeDimension:{height:"Ketinggian",width:"Kelebaran"},emptyAttachmentFolderBehavior:{delete:{description:"akan memadamkan folder lampiran kosong.",displayText:"Padam"},deleteWithEmptyParents:{description:"akan memadamkan folder lampiran kosong dan folder induk kosongnya.",displayText:"Padam dengan induk kosong"},keep:{description:"akan menyimpan folder lampiran kosong.",displayText:"Simpan"}}},pluginSettingsManager:{customToken:{codeComment:`// Token kustom telah dikomenkan kerana perlu dikemas kini ke format baharu yang diperkenalkan dalam versi pemalam 9.0.0.
|
|
519
|
+
// Rujuk dokumentasi (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) untuk maklumat lanjut.`,deprecated:{part1:"Dalam versi pemalam 9.0.0, format pendaftaran token kustom telah berubah. Sila kemas kini token anda dengan sewajarnya. Rujuk",part2:"dokumentasi",part3:"untuk maklumat lanjut"}},legacyRenameAttachmentsToLowerCase:{part1:"Dalam versi pemalam 9.0.0, tetapan",part2:"telah tidak digunakan lagi. Gunakan format",part3:"sebaliknya. Lihat",part4:"dokumentasi",part5:"untuk maklumat lanjut"},markdownUrlFormat:{deprecated:{part1:"Anda mungkin mempunyai nilai yang tidak betul untuk format",part2:". Sila rujuk",part3:"dokumentasi",part4:"untuk maklumat lanjut",part5:"Mesej ini tidak akan dipaparkan lagi."}},specialCharacters:{part1:"Dalam versi pemalam 9.16.0, nilai tetapan lalai",part2:"telah berubah. Nilai tetapan anda telah dikemas kini ke nilai lalai baharu."},validation:{defaultImageSizeMustBePercentageOrPixels:"Saiz imej lalai mesti dalam piksel atau peratusan",invalidCustomTokensCode:"Kod token kustom tidak sah",invalidRegularExpression:"Ungkapan biasa tidak sah {{regExp}}",specialCharactersMustNotContainSlash:"Aksara khas tidak boleh mengandungi /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"Penggantian aksara khas tidak boleh mengandungi aksara laluan nama fail yang tidak sah."},version:{part1:"Fail tetapan anda ",part2:"mempunyai versi",part3:"yang lebih baharu daripada versi pemalam semasa",part4:"Pemalam mungkin tidak berfungsi seperti yang dijangkakan. Sila kemas kini pemalam ke versi terkini atau pastikan tetapan adalah betul."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"Apabila melampirkan fail:"},name:"Mod penamaan semula lampiran"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Apabila lampiran yang dikumpulkan digunakan oleh beberapa nota:"},name:"Mod pengumpulan lampiran yang digunakan oleh beberapa nota"},collectedAttachmentFileName:{description:{part1:"Lihat token",part2:"yang tersedia"},name:"Nama fail lampiran yang dikumpulkan"},customTokens:{description:{part1:"Token kustom yang akan digunakan.",part2:"Lihat",part3:"dokumentasi",part4:"untuk maklumat lanjut.",part5:"\u26A0\uFE0F Token kustom boleh menjadi kod JavaScript sewenang-wenangnya. Jika ditulis dengan buruk, ia boleh menyebabkan kehilangan data. Gunakan dengan risiko sendiri."},name:"Token kustom"},defaultImageSize:{description:{part1:"Saiz imej lalai.",part2:"Boleh dinyatakan dalam piksel",part3:"atau sebagai peratusan daripada saiz imej penuh",part4:"Biarkan kosong untuk menggunakan saiz asal."},name:"Saiz imej lalai"},duplicateNameSeparator:{description:{part1:"Apabila anda menampal/menyeret fail dengan nama yang sama seperti fail yang sedia ada, pemisah ini akan ditambah pada nama fail.",part2:"Contohnya, apabila anda menyeret fail",part3:", ia akan dinamakan semula kepada",part4:", dll, mendapat nama pertama yang tersedia."},name:"Pemisah nama pendua"},emptyAttachmentFolderBehavior:{description:{part1:"Apabila folder lampiran menjadi kosong:"},name:"Kelakuan folder lampiran kosong"},excludePaths:{description:{part1:"Kecualikan nota dari laluan berikut.",part2:"Masukkan setiap laluan pada baris baru.",part3:"Anda boleh menggunakan rentetan laluan atau",part4:"Jika tetapan kosong, tiada nota dikecualikan."},name:"Kecualikan laluan"},excludePathsFromAttachmentCollecting:{description:{part1:"Kecualikan lampiran dari laluan berikut apabila",part2:"Kumpul lampiran",part3:"arahan dilaksanakan.",part4:"Masukkan setiap laluan pada baris baru.",part5:"Anda boleh menggunakan rentetan laluan atau",part6:"Jika tetapan kosong, tiada laluan dikecualikan dari pengumpulan lampiran."},name:"Kecualikan laluan dari pengumpulan lampiran"},generatedAttachmentFileName:{description:{part1:"Lihat token",part2:"yang tersedia"},name:"Nama fail lampiran yang dijana"},includePaths:{description:{part1:"Termasuk nota dari laluan berikut.",part2:"Masukkan setiap laluan pada baris baru.",part3:"Anda boleh menggunakan rentetan laluan atau",part4:"Jika tetapan kosong, semua nota disertakan."},name:"Termasuk laluan"},jpegQuality:{description:"Semakin kecil kualiti, semakin besar nisbah mampatan.",name:"Kualiti JPEG"},locationForNewAttachments:{description:{part1:"Mulakan dengan",part2:"untuk menggunakan laluan relatif.",part3:"Lihat token",part4:"yang tersedia",part5:"Folder titik seperti",part6:"tidak disyorkan, kerana Obsidian tidak menjejaki mereka. Anda mungkin perlu menggunakan",part7:"Pemalam untuk mengurusnya."},name:"Lokasi untuk lampiran baharu"},markdownUrlFormat:{description:{part1:"Format untuk URL yang akan dimasukkan ke dalam Markdown.",part2:"Lihat token",part3:"yang tersedia",part4:"Biarkan kosong untuk menggunakan format lalai."},name:"Format URL Markdown"},renameAttachmentsToLowerCase:"Nama semula lampiran kepada huruf kecil",renamedAttachmentFileName:{description:{part1:"Lihat token",part2:"yang tersedia"},name:"Nama fail lampiran yang dinamakan semula"},resetToSampleCustomTokens:{message:"Adakah anda pasti mahu menetapkan semula token kustom kepada token kustom sampel? Perubahan anda akan hilang.",title:"Tetapkan semula kepada token kustom sampel"},shouldConvertPastedImagesToJpeg:{description:"Sama ada untuk menukar imej yang ditampal kepada JPEG. Berlaku hanya apabila kandungan imej PNG ditampal terus dari papan keratan. Biasanya, untuk menampal tangkapan skrin.",name:"Sama ada menukar imej yang ditampal kepada JPEG"},shouldDeleteOrphanAttachments:{description:"Jika diaktifkan, apabila nota dipadamkan, lampiran yatimnya juga dipadamkan.",name:"Sama ada memadamkan lampiran yatim"},shouldRenameAttachmentFiles:{description:{part1:"Jika diaktifkan, apabila nota dinamakan semula atau dipindahkan, lampirannya akan dinamakan semula mengikut",part2:"tetapan."},name:"Sama ada menamakan semula fail lampiran"},shouldRenameAttachmentFolders:{description:"Sama ada untuk menamakan semula folder lampiran apabila nota dinamakan semula atau dipindahkan.",name:"Sama ada menamakan semula folder lampiran"},shouldRenameCollectedAttachments:{description:{part1:"Jika diaktifkan, lampiran yang diproses melalui",part2:"Kumpul lampiran",part3:"arahan akan dinamakan semula mengikut",part4:"tetapan."},name:"Sama ada menamakan semula lampiran yang dikumpulkan"},specialCharacters:{description:{part1:"Aksara khas dalam folder lampiran dan nama fail yang akan diganti atau dialihkan.",part2:"Biarkan kosong untuk memelihara aksara khas."},name:"Aksara khas"},specialCharactersReplacement:{description:{part1:"Rentetan penggantian untuk aksara khas dalam folder lampiran dan nama fail.",part2:"Biarkan kosong untuk mengalihkan aksara khas."},name:"Penggantian aksara khas"},timeoutInSeconds:{description:{part1:"Masa tamat dalam saat untuk semua operasi.",part2:"Jika",part3:"ditetapkan, masa tamat pelaksanaan operasi dilumpuhkan."},name:"Masa tamat dalam saat"},treatAsAttachmentExtensions:{description:{part1:"Anggap fail dengan sambungan ini sebagai lampiran.",part2:"Secara lalai",part3:"dan",part4:"fail yang dipautkan tidak dianggap sebagai lampiran dan tidak dipindahkan dengan nota.",part5:"Anda boleh menambah sambungan kustom, contohnya",part6:", untuk mengatasi kelakuan ini."},name:"Anggap sebagai sambungan lampiran"}},promptWithPreviewModal:{previewModal:{title:"Pratonton fail lampiran '{{fullFileName}}'"},title:"Berikan nilai untuk token prompt"},regularExpression:"/ungkapan biasa/"};var ph={attachmentCollector:{confirm:{part1:"\u0915\u0947 \u0924\u092A\u093E\u0908\u0902 \u092B\u094B\u0932\u094D\u0921\u0930\u0939\u0930\u0942\u092D\u093F\u0924\u094D\u0930\u0915\u093E \u0938\u092C\u0948 \u0928\u094B\u091F\u0939\u0930\u0942\u0915\u093E \u0932\u093E\u0917\u093F \u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942\u0932\u093E\u0908 \u092A\u0941\u0928\u0930\u093E\u0935\u0930\u094D\u0924\u0940 \u0930\u0942\u092A\u092E\u093E \u0938\u0919\u094D\u0915\u0932\u0928 \u0917\u0930\u094D\u0928 \u091A\u093E\u0939\u0928\u0941\u0939\u0941\u0928\u094D\u091B?",part2:"\u092F\u094B \u0915\u093E\u0930\u094D\u092F \u0909\u0932\u094D\u091F\u094D\u092F\u093E\u0909\u0928 \u0938\u0915\u093F\u0901\u0926\u0948\u0928\u0964"},progressBar:{message:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942 \u0938\u0902\u0915\u0932\u0928 \u0917\u0930\u094D\u0926\u0948 {{iterationStr}} - '{{noteFilePath}}'.",title:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942 \u0938\u0902\u0915\u0932\u0928 \u0917\u0930\u094D\u0926\u0948..."}},buttons:{copy:"\u092A\u094D\u0930\u0924\u093F\u0932\u093F\u092A\u093F \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D",move:"\u0938\u093E\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D",previewAttachmentFile:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u092B\u093E\u0907\u0932 \u092A\u0942\u0930\u094D\u0935\u093E\u0935\u0932\u094B\u0915\u0928",skip:"\u092B\u093E\u0932\u094D\u0928\u0941\u0939\u094B\u0938\u094D"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915",part2:"\u0927\u0947\u0930\u0948 \u0928\u094B\u091F\u0939\u0930\u0942\u0926\u094D\u0935\u093E\u0930\u093E \u0938\u0928\u094D\u0926\u0930\u094D\u092D\u093F\u0924 \u091B\u0964"},heading:"\u0927\u0947\u0930\u0948 \u0928\u094B\u091F\u0939\u0930\u0942\u0926\u094D\u0935\u093E\u0930\u093E \u092A\u094D\u0930\u092F\u094B\u0917 \u0939\u0941\u0928\u0947 \u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u0938\u0902\u0915\u0932\u0928 \u0917\u0930\u094D\u0926\u0948",shouldUseSameActionForOtherProblematicAttachmentsToggle:"\u0905\u0928\u094D\u092F \u0938\u092E\u0938\u094D\u092F\u093E\u092F\u0941\u0915\u094D\u0924 \u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942\u0915\u093E \u0932\u093E\u0917\u093F \u090F\u0909\u091F\u093E\u0928\u0948 \u0915\u093E\u0930\u094D\u092F \u092A\u094D\u0930\u092F\u094B\u0917 \u0917\u0930\u094D\u0928\u0941\u092A\u0930\u094D\u092F\u094B"},commands:{collectAttachmentsCurrentFolder:"\u0939\u093E\u0932\u0915\u094B \u092B\u094B\u0932\u094D\u0921\u0930\u092E\u093E \u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942 \u0938\u0902\u0915\u0932\u0928 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D",collectAttachmentsCurrentNote:"\u0939\u093E\u0932\u0915\u094B \u0928\u094B\u091F\u092E\u093E \u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942 \u0938\u0902\u0915\u0932\u0928 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D",collectAttachmentsEntireVault:"\u0938\u092E\u094D\u092A\u0942\u0930\u094D\u0923 \u092D\u093E\u0932\u094D\u091F\u092E\u093E \u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942 \u0938\u0902\u0915\u0932\u0928 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D"},menuItems:{collectAttachmentsInFile:"\u092B\u093E\u0907\u0932\u092E\u093E \u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942 \u0938\u0919\u094D\u0915\u0932\u0928 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D",collectAttachmentsInFiles:"\u092B\u093E\u0907\u0932\u0939\u0930\u0942\u092E\u093E \u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942 \u0938\u0919\u094D\u0915\u0932\u0928 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D"},notice:{collectingAttachments:"'{{noteFilePath}}' \u0915\u093E \u0932\u093E\u0917\u093F \u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942 \u0938\u0902\u0915\u0932\u0928 \u0917\u0930\u094D\u0926\u0948",collectingAttachmentsCancelled:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u0938\u0902\u0915\u0932\u0928 \u0930\u0926\u094D\u0926 \u0917\u0930\u093F\u092F\u094B\u0964 \u0935\u093F\u0938\u094D\u0924\u0943\u0924 \u091C\u093E\u0928\u0915\u093E\u0930\u0940\u0915\u093E \u0932\u093E\u0917\u093F \u0915\u0928\u094D\u0938\u094B\u0932 \u0939\u0947\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",generatedAttachmentFileNameIsInvalid:{part1:`\u0909\u0924\u094D\u092A\u0928\u094D\u0928 \u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u092B\u093E\u0907\u0932 \u0928\u093E\u092E '{{path}}' \u0905\u092E\u093E\u0928\u094D\u092F \u091B\u0964
|
|
520
|
+
{{validationMessage}}
|
|
521
|
+
\u0906\u092B\u094D\u0928\u094B`,part2:"\u0938\u0947\u091F\u093F\u0919 \u091C\u093E\u0901\u091A\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964"},notePathIsIgnored:"\u0928\u094B\u091F \u092A\u093E\u0925 \u092C\u0947\u0935\u093E\u0938\u094D\u0924\u093E \u0917\u0930\u093F\u090F\u0915\u094B \u091B"},obsidianDevUtils:{buttons:{cancel:"\u0930\u0926\u094D\u0926 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D",ok:"\u0920\u093F\u0915 \u091B"},dataview:{itemsPerPage:"\u092A\u094D\u0930\u0924\u093F \u092A\u0943\u0937\u094D\u0920 \u0935\u0938\u094D\u0924\u0941\u0939\u0930\u0942:",jumpToPage:"\u092A\u0943\u0937\u094D\u0920\u092E\u093E \u091C\u093E\u0928\u0941\u0939\u094B\u0938\u094D:"},notices:{attachmentIsStillUsed:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915 {{attachmentPath}} \u0905\u091D\u0948 \u092A\u0928\u093F \u0905\u0928\u094D\u092F \u0928\u094B\u091F\u0939\u0930\u0942\u0926\u094D\u0935\u093E\u0930\u093E \u092A\u094D\u0930\u092F\u094B\u0917 \u0939\u0941\u0901\u0926\u0948\u091B\u0964 \u092F\u094B \u092E\u0947\u091F\u093F\u0928\u0947\u091B\u0948\u0928\u0964",unhandledError:"\u090F\u0909\u091F\u093E \u0928\u0938\u0941\u0932\u094D\u091D\u093F\u090F\u0915\u094B \u0924\u094D\u0930\u0941\u091F\u093F \u092D\u092F\u094B\u0964 \u0915\u0943\u092A\u092F\u093E \u0925\u092A \u091C\u093E\u0928\u0915\u093E\u0930\u0940\u0915\u093E \u0932\u093E\u0917\u093F \u0915\u0928\u094D\u0938\u094B\u0932 \u091C\u093E\u0901\u091A\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964"}},pluginSettings:{attachmentRenameMode:{all:{description:"\u0938\u092C\u0948 \u092B\u093E\u0907\u0932\u0939\u0930\u0942 \u092A\u0941\u0928\u0903 \u0928\u093E\u092E\u0915\u0930\u0923 \u0917\u0930\u093F\u0928\u094D\u091B\u0928\u094D\u0964",displayText:"\u0938\u092C\u0948"},none:{description:"\u0924\u093F\u0928\u0940\u0939\u0930\u0942\u0915\u093E \u0928\u093E\u092E\u0939\u0930\u0942 \u0938\u0902\u0930\u0915\u094D\u0937\u093F\u0924 \u0939\u0941\u0928\u094D\u091B\u0928\u094D\u0964",displayText:"\u0915\u0941\u0928\u0948 \u092A\u0928\u093F \u0939\u094B\u0907\u0928"},onlyPastedImages:{description:"\u0915\u0947\u0935\u0932 \u091F\u093E\u0901\u0938\u093F\u090F\u0915\u093E \u091B\u0935\u093F\u0939\u0930\u0942 \u092A\u0941\u0928\u0903 \u0928\u093E\u092E\u0915\u0930\u0923 \u0917\u0930\u093F\u0928\u094D\u091B\u0928\u094D\u0964 \u092F\u094B \u0915\u0947\u0935\u0932 \u0924\u092C \u0932\u093E\u0917\u0942 \u0939\u0941\u0928\u094D\u091B \u091C\u092C PNG \u091B\u0935\u093F \u0938\u093E\u092E\u0917\u094D\u0930\u0940 \u0915\u094D\u0932\u093F\u092A\u092C\u094B\u0930\u094D\u0921\u092C\u093E\u091F \u0938\u0940\u0927\u0948 \u091F\u093E\u0901\u0938\u093F\u090F\u0915\u094B \u0939\u0941\u0928\u094D\u091B\u0964 \u0938\u093E\u092E\u093E\u0928\u094D\u092F\u0924\u092F\u093E, \u0938\u094D\u0915\u094D\u0930\u093F\u0928\u0936\u091F \u091F\u093E\u0901\u0938\u094D\u0928\u0915\u093E \u0932\u093E\u0917\u093F\u0964",displayText:"\u0915\u0947\u0935\u0932 \u091F\u093E\u0901\u0938\u093F\u090F\u0915\u093E \u091B\u0935\u093F\u0939\u0930\u0942"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u0938\u0902\u0915\u0932\u0928 \u0930\u0926\u094D\u0926 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",displayText:"\u0930\u0926\u094D\u0926 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D"},copy:{description:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0932\u093E\u0908 \u0928\u092F\u093E\u0901 \u0938\u094D\u0925\u093E\u0928\u092E\u093E \u092A\u094D\u0930\u0924\u093F\u0932\u093F\u092A\u093F \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",displayText:"\u092A\u094D\u0930\u0924\u093F\u0932\u093F\u092A\u093F \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D"},move:{description:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0932\u093E\u0908 \u0928\u092F\u093E\u0901 \u0938\u094D\u0925\u093E\u0928\u092E\u093E \u0938\u093E\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",displayText:"\u0938\u093E\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D"},prompt:{description:"\u092A\u094D\u0930\u092F\u094B\u0917\u0915\u0930\u094D\u0924\u093E\u0932\u093E\u0908 \u0915\u093E\u0930\u094D\u092F \u091B\u0928\u094B\u091F \u0917\u0930\u094D\u0928 \u092A\u094D\u0930\u0947\u0930\u093F\u0924 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",displayText:"\u092A\u094D\u0930\u0947\u0930\u093F\u0924 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D"},skip:{description:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0932\u093E\u0908 \u091B\u094B\u0921\u094D\u0928\u0941\u0939\u094B\u0938\u094D \u0930 \u0905\u0930\u094D\u0915\u094B\u092E\u093E \u091C\u093E\u0928\u0941\u0939\u094B\u0938\u094D\u0964",displayText:"\u091B\u094B\u0921\u094D\u0928\u0941\u0939\u094B\u0938\u094D"}},defaultImageSizeDimension:{height:"\u0909\u091A\u093E\u0907",width:"\u091A\u094C\u0921\u093E\u0907"},emptyAttachmentFolderBehavior:{delete:{description:"\u0916\u093E\u0932\u0940 \u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u092B\u094B\u0932\u094D\u0921\u0930 \u092E\u0947\u091F\u093E\u0909\u0928\u0947\u091B\u0964",displayText:"\u092E\u0947\u091F\u093E\u0909\u0928\u0941\u0939\u094B\u0938\u094D"},deleteWithEmptyParents:{description:"\u0916\u093E\u0932\u0940 \u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u092B\u094B\u0932\u094D\u0921\u0930 \u0930 \u092F\u0938\u0915\u093E \u0916\u093E\u0932\u0940 \u092E\u093E\u0924\u093E-\u092A\u093F\u0924\u093E \u092B\u094B\u0932\u094D\u0921\u0930\u0939\u0930\u0942 \u092E\u0947\u091F\u093E\u0909\u0928\u0947\u091B\u0964",displayText:"\u0916\u093E\u0932\u0940 \u092E\u093E\u0924\u093E-\u092A\u093F\u0924\u093E\u0939\u0930\u0942\u0938\u0939\u093F\u0924 \u092E\u0947\u091F\u093E\u0909\u0928\u0941\u0939\u094B\u0938\u094D"},keep:{description:"\u0916\u093E\u0932\u0940 \u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u092B\u094B\u0932\u094D\u0921\u0930 \u0930\u093E\u0916\u094D\u0928\u0947\u091B\u0964",displayText:"\u0930\u093E\u0916\u094D\u0928\u0941\u0939\u094B\u0938\u094D"}}},pluginSettingsManager:{customToken:{codeComment:`// \u0915\u0938\u094D\u091F\u092E \u091F\u094B\u0915\u0928\u0939\u0930\u0942 \u091F\u093F\u092A\u094D\u092A\u0923\u0940 \u0917\u0930\u093F\u090F\u0915\u093E \u091B\u0928\u094D \u0915\u093F\u0928\u092D\u0928\u0947 \u0924\u093F\u0928\u0940\u0939\u0930\u0942\u0932\u093E\u0908 \u092A\u094D\u0932\u0917\u0907\u0928 \u0938\u0902\u0938\u094D\u0915\u0930\u0923 9.0.0 \u092E\u093E \u092A\u0930\u093F\u091A\u092F \u0917\u0930\u093F\u090F\u0915\u094B \u0928\u092F\u093E\u0901 \u0922\u093E\u0901\u091A\u093E\u092E\u093E \u0905\u092A\u0921\u0947\u091F \u0917\u0930\u094D\u0928\u0941\u092A\u0930\u094D\u091B\u0964
|
|
522
|
+
// \u0925\u092A \u091C\u093E\u0928\u0915\u093E\u0930\u0940\u0915\u093E \u0932\u093E\u0917\u093F \u0915\u093E\u0917\u091C\u093E\u0924 (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) \u0939\u0947\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964`,deprecated:{part1:"\u092A\u094D\u0932\u0917\u0907\u0928 \u0938\u0902\u0938\u094D\u0915\u0930\u0923 9.0.0 \u092E\u093E, \u0915\u0938\u094D\u091F\u092E \u091F\u094B\u0915\u0928 \u0926\u0930\u094D\u0924\u093E\u0915\u094B \u0922\u093E\u0901\u091A\u093E \u092A\u0930\u093F\u0935\u0930\u094D\u0924\u0928 \u092D\u092F\u094B\u0964 \u0915\u0943\u092A\u092F\u093E \u0924\u092A\u093E\u0908\u0901\u0915\u093E \u091F\u094B\u0915\u0928\u0939\u0930\u0942\u0932\u093E\u0908 \u0924\u0926\u0928\u0941\u0938\u093E\u0930 \u0905\u092A\u0921\u0947\u091F \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",part2:"\u0915\u093E\u0917\u091C\u093E\u0924",part3:"\u092E\u093E \u0925\u092A \u091C\u093E\u0928\u0915\u093E\u0930\u0940\u0915\u093E \u0932\u093E\u0917\u093F \u0938\u0928\u094D\u0926\u0930\u094D\u092D \u0932\u093F\u0928\u0941\u0939\u094B\u0938\u094D"}},legacyRenameAttachmentsToLowerCase:{part1:"\u092A\u094D\u0932\u0917\u0907\u0928 \u0938\u0902\u0938\u094D\u0915\u0930\u0923 9.0.0 \u092E\u093E,",part2:"\u0938\u0947\u091F\u093F\u0919 \u092A\u0941\u0930\u093E\u0928\u094B \u091B\u0964",part3:"\u0922\u093E\u0901\u091A\u093E \u092A\u094D\u0930\u092F\u094B\u0917 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",part4:"\u0915\u093E\u0917\u091C\u093E\u0924",part5:"\u092E\u093E \u0925\u092A \u091C\u093E\u0928\u0915\u093E\u0930\u0940\u0915\u093E \u0932\u093E\u0917\u093F \u0939\u0947\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D"},markdownUrlFormat:{deprecated:{part1:"\u0924\u092A\u093E\u0908\u0901\u0938\u0901\u0917",part2:"\u0922\u093E\u0901\u091A\u093E\u0915\u093E \u0932\u093E\u0917\u093F \u0938\u092E\u094D\u092D\u093E\u0935\u093F\u0924 \u0917\u0932\u0924 \u092E\u093E\u0928 \u0938\u0947\u091F \u0917\u0930\u093F\u090F\u0915\u094B \u091B\u0964 \u0915\u0943\u092A\u092F\u093E",part3:"\u0915\u093E\u0917\u091C\u093E\u0924",part4:"\u092E\u093E \u0925\u092A \u091C\u093E\u0928\u0915\u093E\u0930\u0940\u0915\u093E \u0932\u093E\u0917\u093F \u0938\u0928\u094D\u0926\u0930\u094D\u092D \u0932\u093F\u0928\u0941\u0939\u094B\u0938\u094D\u0964",part5:"\u092F\u094B \u0938\u0928\u094D\u0926\u0947\u0936 \u092B\u0947\u0930\u093F \u0926\u0947\u0916\u093E\u0907\u0928\u0947\u091B\u0948\u0928\u0964"}},specialCharacters:{part1:"\u092A\u094D\u0932\u0917\u0907\u0928 \u0938\u0902\u0938\u094D\u0915\u0930\u0923 9.16.0 \u092E\u093E,",part2:"\u092A\u0942\u0930\u094D\u0935\u0928\u093F\u0930\u094D\u0927\u093E\u0930\u093F\u0924 \u0938\u0947\u091F\u093F\u0919 \u092E\u093E\u0928 \u092A\u0930\u093F\u0935\u0930\u094D\u0924\u0928 \u092D\u092F\u094B\u0964 \u0924\u092A\u093E\u0908\u0901\u0915\u094B \u0938\u0947\u091F\u093F\u0919 \u092E\u093E\u0928 \u0928\u092F\u093E\u0901 \u092A\u0942\u0930\u094D\u0935\u0928\u093F\u0930\u094D\u0927\u093E\u0930\u093F\u0924 \u092E\u093E\u0928\u092E\u093E \u0905\u092A\u0921\u0947\u091F \u0917\u0930\u093F\u092F\u094B\u0964"},validation:{defaultImageSizeMustBePercentageOrPixels:"\u092A\u0942\u0930\u094D\u0935\u0928\u093F\u0930\u094D\u0927\u093E\u0930\u093F\u0924 \u0924\u0938\u094D\u0935\u0940\u0930\u0915\u094B \u0906\u0915\u093E\u0930 \u092A\u093F\u0915\u094D\u0938\u0947\u0932 \u092F\u093E \u092A\u094D\u0930\u0924\u093F\u0936\u0924\u092E\u093E \u0939\u0941\u0928\u0941\u092A\u0930\u094D\u091B",invalidCustomTokensCode:"\u0905\u092E\u093E\u0928\u094D\u092F \u0915\u0938\u094D\u091F\u092E \u091F\u094B\u0915\u0928 \u0915\u094B\u0921",invalidRegularExpression:"\u0905\u092E\u093E\u0928\u094D\u092F \u0928\u093F\u092F\u092E\u093F\u0924 \u0905\u092D\u093F\u0935\u094D\u092F\u0915\u094D\u0924\u093F {{regExp}}",specialCharactersMustNotContainSlash:"\u0935\u093F\u0936\u0947\u0937 \u0905\u0915\u094D\u0937\u0930\u0939\u0930\u0942\u092E\u093E / \u0939\u0941\u0928\u0941\u0939\u0941\u0928\u094D\u0928",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"\u0935\u093F\u0936\u0947\u0937 \u0905\u0915\u094D\u0937\u0930 \u092A\u094D\u0930\u0924\u093F\u0938\u094D\u0925\u093E\u092A\u0928\u092E\u093E \u0905\u092E\u093E\u0928\u094D\u092F \u092B\u093E\u0907\u0932 \u0928\u093E\u092E \u092A\u093E\u0925 \u0905\u0915\u094D\u0937\u0930\u0939\u0930\u0942 \u0939\u0941\u0928\u0941\u0939\u0941\u0928\u094D\u0928\u0964"},version:{part1:"\u0924\u092A\u093E\u0908\u0901\u0915\u094B \u0938\u0947\u091F\u093F\u0919 \u092B\u093E\u0907\u0932 ",part2:"\u092E\u093E \u0938\u0902\u0938\u094D\u0915\u0930\u0923",part3:"\u091B \u091C\u0941\u0928 \u0939\u093E\u0932\u0915\u094B \u092A\u094D\u0932\u0917\u0907\u0928 \u0938\u0902\u0938\u094D\u0915\u0930\u0923 \u092D\u0928\u094D\u0926\u093E \u0928\u092F\u093E\u0901 \u091B",part4:"\u092A\u094D\u0932\u0917\u0907\u0928\u0932\u0947 \u0905\u092A\u0947\u0915\u094D\u0937\u093F\u0924 \u0930\u0942\u092A\u092E\u093E \u0915\u093E\u092E \u0928\u0917\u0930\u094D\u0928 \u0938\u0915\u094D\u091B\u0964 \u0915\u0943\u092A\u092F\u093E \u092A\u094D\u0932\u0917\u0907\u0928\u0932\u093E\u0908 \u0928\u0935\u0940\u0928\u0924\u092E \u0938\u0902\u0938\u094D\u0915\u0930\u0923\u092E\u093E \u0905\u092A\u0921\u0947\u091F \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D \u0935\u093E \u0938\u0947\u091F\u093F\u0919\u0939\u0930\u0942 \u0938\u0939\u0940 \u091B\u0928\u094D \u092D\u0928\u094D\u0928\u0947 \u0928\u093F\u0936\u094D\u091A\u093F\u0924 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964"}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"\u091C\u092C \u092B\u093E\u0907\u0932\u0939\u0930\u0942 \u0938\u0902\u0932\u0917\u094D\u0928 \u0917\u0930\u094D\u0926\u0948:"},name:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u092A\u0941\u0928\u0903 \u0928\u093E\u092E\u0915\u0930\u0923 \u092E\u094B\u0921"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"\u091C\u092C \u0938\u0902\u0915\u0932\u093F\u0924 \u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u0927\u0947\u0930\u0948 \u0928\u094B\u091F\u0939\u0930\u0942\u0926\u094D\u0935\u093E\u0930\u093E \u092A\u094D\u0930\u092F\u094B\u0917 \u0939\u0941\u0928\u094D\u091B:"},name:"\u0927\u0947\u0930\u0948 \u0928\u094B\u091F\u0939\u0930\u0942\u0926\u094D\u0935\u093E\u0930\u093E \u092A\u094D\u0930\u092F\u094B\u0917 \u0939\u0941\u0928\u0947 \u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u0938\u0902\u0915\u0932\u0928 \u092E\u094B\u0921"},collectedAttachmentFileName:{description:{part1:"\u0909\u092A\u0932\u092C\u094D\u0927",part2:"\u091F\u094B\u0915\u0928\u0939\u0930\u0942 \u0939\u0947\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D"},name:"\u0938\u0902\u0915\u0932\u093F\u0924 \u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u092B\u093E\u0907\u0932 \u0928\u093E\u092E"},customTokens:{description:{part1:"\u092A\u094D\u0930\u092F\u094B\u0917 \u0917\u0930\u094D\u0928\u0915\u093E \u0932\u093E\u0917\u093F \u0915\u0938\u094D\u091F\u092E \u091F\u094B\u0915\u0928\u0939\u0930\u0942\u0964",part2:"\u0925\u092A \u091C\u093E\u0928\u0915\u093E\u0930\u0940\u0915\u093E \u0932\u093E\u0917\u093F",part3:"\u0915\u093E\u0917\u091C\u093E\u0924",part4:"\u0939\u0947\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",part5:"\u26A0\uFE0F \u0915\u0938\u094D\u091F\u092E \u091F\u094B\u0915\u0928\u0939\u0930\u0942 \u092E\u0928\u092E\u093E\u0928\u093E JavaScript \u0915\u094B\u0921 \u0939\u0941\u0928 \u0938\u0915\u094D\u091B\u0928\u094D\u0964 \u092F\u0926\u093F \u0916\u0930\u093E\u092C \u0932\u0947\u0916\u093F\u090F\u0915\u094B \u091B \u092D\u0928\u0947, \u092F\u0938\u0932\u0947 \u0921\u093E\u091F\u093E \u0939\u093E\u0928\u093F \u0917\u0930\u094D\u0928 \u0938\u0915\u094D\u091B\u0964 \u0906\u092B\u094D\u0928\u0948 \u091C\u094B\u0916\u093F\u092E\u092E\u093E \u092A\u094D\u0930\u092F\u094B\u0917 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964"},name:"\u0915\u0938\u094D\u091F\u092E \u091F\u094B\u0915\u0928\u0939\u0930\u0942"},defaultImageSize:{description:{part1:"\u092A\u0942\u0930\u094D\u0935\u0928\u093F\u0930\u094D\u0927\u093E\u0930\u093F\u0924 \u0924\u0938\u094D\u0935\u0940\u0930\u0915\u094B \u0906\u0915\u093E\u0930\u0964",part2:"\u092A\u093F\u0915\u094D\u0938\u0947\u0932\u092E\u093E \u0928\u093F\u0930\u094D\u0926\u093F\u0937\u094D\u091F \u0917\u0930\u094D\u0928 \u0938\u0915\u093F\u0928\u094D\u091B",part3:"\u0935\u093E \u092A\u0942\u0930\u094D\u0923 \u0924\u0938\u094D\u0935\u0940\u0930\u0915\u094B \u0906\u0915\u093E\u0930\u0915\u094B \u092A\u094D\u0930\u0924\u093F\u0936\u0924\u092E\u093E",part4:"\u092E\u0942\u0932 \u0906\u0915\u093E\u0930 \u092A\u094D\u0930\u092F\u094B\u0917 \u0917\u0930\u094D\u0928 \u0916\u093E\u0932\u0940 \u0930\u093E\u0916\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964"},name:"\u092A\u0942\u0930\u094D\u0935\u0928\u093F\u0930\u094D\u0927\u093E\u0930\u093F\u0924 \u0924\u0938\u094D\u0935\u0940\u0930\u0915\u094B \u0906\u0915\u093E\u0930"},duplicateNameSeparator:{description:{part1:"\u091C\u092C \u0924\u092A\u093E\u0908\u0901 \u090F\u0909\u091F\u093E \u092B\u093E\u0907\u0932\u0932\u093E\u0908 \u0905\u0935\u0938\u094D\u0925\u093F\u0924 \u092B\u093E\u0907\u0932\u0938\u0901\u0917 \u0909\u0939\u0940 \u0928\u093E\u092E\u0915\u093E \u0938\u093E\u0925 \u091F\u093E\u0901\u0938\u094D\u0926\u0948/\u0924\u093E\u0928\u094D\u0926\u0948 \u0939\u0941\u0928\u0941\u0939\u0941\u0928\u094D\u091B, \u092F\u094B \u0935\u093F\u092D\u093E\u091C\u0915 \u092B\u093E\u0907\u0932 \u0928\u093E\u092E\u092E\u093E \u0925\u092A\u093F\u0928\u0947\u091B\u0964",part2:"\u0909\u0926\u093E\u0939\u0930\u0923\u0915\u093E \u0932\u093E\u0917\u093F, \u091C\u092C \u0924\u092A\u093E\u0908\u0901 \u092B\u093E\u0907\u0932",part3:"\u0924\u093E\u0928\u094D\u0926\u0948 \u0939\u0941\u0928\u0941\u0939\u0941\u0928\u094D\u091B, \u092F\u094B",part4:"\u092E\u093E \u092A\u0941\u0928\u0903 \u0928\u093E\u092E\u0915\u0930\u0923 \u0917\u0930\u093F\u0928\u0947\u091B, \u0906\u0926\u093F, \u092A\u0939\u093F\u0932\u094B \u0909\u092A\u0932\u092C\u094D\u0927 \u0928\u093E\u092E \u092A\u093E\u0909\u0901\u0926\u0948\u0964"},name:"\u0921\u0941\u092A\u094D\u0932\u093F\u0915\u0947\u091F \u0928\u093E\u092E \u0935\u093F\u092D\u093E\u091C\u0915"},emptyAttachmentFolderBehavior:{description:{part1:"\u091C\u092C \u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u092B\u094B\u0932\u094D\u0921\u0930 \u0916\u093E\u0932\u0940 \u0939\u0941\u0928\u094D\u091B:"},name:"\u0916\u093E\u0932\u0940 \u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u092B\u094B\u0932\u094D\u0921\u0930 \u0935\u094D\u092F\u0935\u0939\u093E\u0930"},excludePaths:{description:{part1:"\u0928\u093F\u092E\u094D\u0928 \u092A\u093E\u0925\u0939\u0930\u0942\u092C\u093E\u091F \u0928\u094B\u091F\u0939\u0930\u0942 \u092C\u093E\u0939\u093F\u0930 \u0928\u093F\u0915\u093E\u0932\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",part2:"\u092A\u094D\u0930\u0924\u094D\u092F\u0947\u0915 \u092A\u093E\u0925\u0932\u093E\u0908 \u0928\u092F\u093E\u0901 \u0932\u093E\u0907\u0928\u092E\u093E \u0930\u093E\u0916\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",part3:"\u0924\u092A\u093E\u0908\u0901 \u092A\u093E\u0925 \u0938\u094D\u091F\u094D\u0930\u093F\u0919 \u0935\u093E",part4:"\u092A\u094D\u0930\u092F\u094B\u0917 \u0917\u0930\u094D\u0928 \u0938\u0915\u094D\u0928\u0941\u0939\u0941\u0928\u094D\u091B\u0964 \u092F\u0926\u093F \u0938\u0947\u091F\u093F\u0919 \u0916\u093E\u0932\u0940 \u091B \u092D\u0928\u0947, \u0915\u0941\u0928\u0948 \u092A\u0928\u093F \u0928\u094B\u091F\u0939\u0930\u0942 \u092C\u093E\u0939\u093F\u0930 \u0928\u093F\u0915\u093E\u0932\u093F\u0928\u0947\u091B\u0948\u0928\u0964"},name:"\u092A\u093E\u0925\u0939\u0930\u0942 \u092C\u093E\u0939\u093F\u0930 \u0928\u093F\u0915\u093E\u0932\u094D\u0928\u0941\u0939\u094B\u0938\u094D"},excludePathsFromAttachmentCollecting:{description:{part1:"\u091C\u092C",part2:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942 \u0938\u0902\u0915\u0932\u0928 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D",part3:"\u0906\u0926\u0947\u0936 \u0915\u093E\u0930\u094D\u092F\u093E\u0928\u094D\u0935\u092F\u0928 \u0917\u0930\u093F\u0928\u094D\u091B, \u0928\u093F\u092E\u094D\u0928 \u092A\u093E\u0925\u0939\u0930\u0942\u092C\u093E\u091F \u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942 \u092C\u093E\u0939\u093F\u0930 \u0928\u093F\u0915\u093E\u0932\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",part4:"\u092A\u094D\u0930\u0924\u094D\u092F\u0947\u0915 \u092A\u093E\u0925\u0932\u093E\u0908 \u0928\u092F\u093E\u0901 \u0932\u093E\u0907\u0928\u092E\u093E \u0930\u093E\u0916\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",part5:"\u0924\u092A\u093E\u0908\u0901 \u092A\u093E\u0925 \u0938\u094D\u091F\u094D\u0930\u093F\u0919 \u0935\u093E",part6:"\u092A\u094D\u0930\u092F\u094B\u0917 \u0917\u0930\u094D\u0928 \u0938\u0915\u094D\u0928\u0941\u0939\u0941\u0928\u094D\u091B\u0964 \u092F\u0926\u093F \u0938\u0947\u091F\u093F\u0919 \u0916\u093E\u0932\u0940 \u091B \u092D\u0928\u0947, \u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u0938\u0902\u0915\u0932\u0928\u092C\u093E\u091F \u0915\u0941\u0928\u0948 \u092A\u0928\u093F \u092A\u093E\u0925\u0939\u0930\u0942 \u092C\u093E\u0939\u093F\u0930 \u0928\u093F\u0915\u093E\u0932\u093F\u0928\u0947\u091B\u0948\u0928\u0964"},name:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u0938\u0902\u0915\u0932\u0928\u092C\u093E\u091F \u092A\u093E\u0925\u0939\u0930\u0942 \u092C\u093E\u0939\u093F\u0930 \u0928\u093F\u0915\u093E\u0932\u094D\u0928\u0941\u0939\u094B\u0938\u094D"},generatedAttachmentFileName:{description:{part1:"\u0909\u092A\u0932\u092C\u094D\u0927",part2:"\u091F\u094B\u0915\u0928\u0939\u0930\u0942 \u0939\u0947\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D"},name:"\u0909\u0924\u094D\u092A\u0928\u094D\u0928 \u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u092B\u093E\u0907\u0932 \u0928\u093E\u092E"},includePaths:{description:{part1:"\u0928\u093F\u092E\u094D\u0928 \u092A\u093E\u0925\u0939\u0930\u0942\u092C\u093E\u091F \u0928\u094B\u091F\u0939\u0930\u0942 \u0938\u092E\u093E\u0935\u0947\u0936 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",part2:"\u092A\u094D\u0930\u0924\u094D\u092F\u0947\u0915 \u092A\u093E\u0925\u0932\u093E\u0908 \u0928\u092F\u093E\u0901 \u0932\u093E\u0907\u0928\u092E\u093E \u0930\u093E\u0916\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",part3:"\u0924\u092A\u093E\u0908\u0901 \u092A\u093E\u0925 \u0938\u094D\u091F\u094D\u0930\u093F\u0919 \u0935\u093E",part4:"\u092A\u094D\u0930\u092F\u094B\u0917 \u0917\u0930\u094D\u0928 \u0938\u0915\u094D\u0928\u0941\u0939\u0941\u0928\u094D\u091B\u0964 \u092F\u0926\u093F \u0938\u0947\u091F\u093F\u0919 \u0916\u093E\u0932\u0940 \u091B \u092D\u0928\u0947, \u0938\u092C\u0948 \u0928\u094B\u091F\u0939\u0930\u0942 \u0938\u092E\u093E\u0935\u0947\u0936 \u0917\u0930\u093F\u0928\u094D\u091B\u0928\u094D\u0964"},name:"\u092A\u093E\u0925\u0939\u0930\u0942 \u0938\u092E\u093E\u0935\u0947\u0936 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D"},jpegQuality:{description:"\u0917\u0941\u0923\u0938\u094D\u0924\u0930 \u091C\u0924\u093F \u0938\u093E\u0928\u094B, \u0915\u092E\u094D\u092A\u094D\u0930\u0947\u0938\u0928 \u0905\u0928\u0941\u092A\u093E\u0924 \u0924\u094D\u092F\u0924\u093F \u0920\u0942\u0932\u094B\u0964",name:"JPEG \u0917\u0941\u0923\u0938\u094D\u0924\u0930"},locationForNewAttachments:{description:{part1:"\u0938\u093E\u092A\u0947\u0915\u094D\u0937 \u092A\u093E\u0925 \u092A\u094D\u0930\u092F\u094B\u0917 \u0917\u0930\u094D\u0928\u0915\u093E \u0932\u093E\u0917\u093F",part2:"\u0938\u0901\u0917 \u0938\u0941\u0930\u0941 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",part3:"\u0909\u092A\u0932\u092C\u094D\u0927",part4:"\u091F\u094B\u0915\u0928\u0939\u0930\u0942 \u0939\u0947\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",part5:"\u0921\u091F-\u092B\u094B\u0932\u094D\u0921\u0930\u0939\u0930\u0942 \u091C\u0938\u094D\u0924\u0948",part6:"\u0938\u093F\u092B\u093E\u0930\u093F\u0938 \u0917\u0930\u093F\u090F\u0915\u094B \u091B\u0948\u0928, \u0915\u093F\u0928\u092D\u0928\u0947 Obsidian \u0932\u0947 \u0924\u093F\u0928\u0940\u0939\u0930\u0942\u0932\u093E\u0908 \u091F\u094D\u0930\u094D\u092F\u093E\u0915 \u0917\u0930\u094D\u0926\u0948\u0928\u0964 \u0924\u093F\u0928\u0940\u0939\u0930\u0942\u0932\u093E\u0908 \u0935\u094D\u092F\u0935\u0938\u094D\u0925\u093E\u092A\u0928 \u0917\u0930\u094D\u0928\u0915\u093E \u0932\u093E\u0917\u093F \u0924\u092A\u093E\u0908\u0901\u0932\u093E\u0908",part7:"\u092A\u094D\u0932\u0917\u0907\u0928 \u092A\u094D\u0930\u092F\u094B\u0917 \u0917\u0930\u094D\u0928 \u0906\u0935\u0936\u094D\u092F\u0915 \u0939\u0941\u0928 \u0938\u0915\u094D\u091B\u0964"},name:"\u0928\u092F\u093E\u0901 \u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942\u0915\u093E \u0932\u093E\u0917\u093F \u0938\u094D\u0925\u093E\u0928"},markdownUrlFormat:{description:{part1:"\u092E\u093E\u0930\u094D\u0915\u0921\u093E\u0909\u0928 \u092E\u093E \u0938\u092E\u093E\u0935\u0947\u0936 \u0917\u0930\u093F\u0928\u0947 \u092F\u0942\u0906\u0930\u090F\u0932 \u0915\u093E \u0932\u093E\u0917\u093F \u0922\u093E\u0901\u091A\u093E\u0964",part2:"\u0909\u092A\u0932\u092C\u094D\u0927",part3:"\u091F\u094B\u0915\u0928\u0939\u0930\u0942 \u0939\u0947\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",part4:"\u092A\u0942\u0930\u094D\u0935\u0928\u093F\u0930\u094D\u0927\u093E\u0930\u093F\u0924 \u0922\u093E\u0901\u091A\u093E \u092A\u094D\u0930\u092F\u094B\u0917 \u0917\u0930\u094D\u0928\u0915\u093E \u0932\u093E\u0917\u093F \u0916\u093E\u0932\u0940 \u091B\u094B\u0921\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964"},name:"\u092E\u093E\u0930\u094D\u0915\u0921\u093E\u0909\u0928 \u092F\u0942\u0906\u0930\u090F\u0932 \u0922\u093E\u0901\u091A\u093E"},renameAttachmentsToLowerCase:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942\u0932\u093E\u0908 \u0938\u093E\u0928\u094B \u0905\u0915\u094D\u0937\u0930\u092E\u093E \u092A\u0941\u0928\u0903 \u0928\u093E\u092E\u0915\u0930\u0923 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D",renamedAttachmentFileName:{description:{part1:"\u0909\u092A\u0932\u092C\u094D\u0927",part2:"\u091F\u094B\u0915\u0928\u0939\u0930\u0942 \u0939\u0947\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D"},name:"\u092A\u0941\u0928\u0903 \u0928\u093E\u092E\u0915\u0930\u0923 \u0917\u0930\u093F\u090F\u0915\u094B \u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u092B\u093E\u0907\u0932 \u0928\u093E\u092E"},resetToSampleCustomTokens:{message:"\u0915\u0947 \u0924\u092A\u093E\u0908\u0901 \u0915\u0938\u094D\u091F\u092E \u091F\u094B\u0915\u0928\u0939\u0930\u0942\u0932\u093E\u0908 \u0928\u092E\u0941\u0928\u093E \u0915\u0938\u094D\u091F\u092E \u091F\u094B\u0915\u0928\u0939\u0930\u0942\u092E\u093E \u0930\u093F\u0938\u0947\u091F \u0917\u0930\u094D\u0928 \u091A\u093E\u0939\u0928\u0941\u0939\u0941\u0928\u094D\u091B? \u0924\u092A\u093E\u0908\u0901\u0915\u093E \u092A\u0930\u093F\u0935\u0930\u094D\u0924\u0928\u0939\u0930\u0942 \u0939\u0930\u093E\u0909\u0928\u0947\u091B\u0928\u094D\u0964",title:"\u0928\u092E\u0941\u0928\u093E \u0915\u0938\u094D\u091F\u092E \u091F\u094B\u0915\u0928\u0939\u0930\u0942\u092E\u093E \u0930\u093F\u0938\u0947\u091F \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D"},shouldConvertPastedImagesToJpeg:{description:"\u0915\u0947 \u091F\u093E\u0901\u0938\u093F\u090F\u0915\u093E \u091B\u0935\u093F\u0939\u0930\u0942\u0932\u093E\u0908 JPEG \u092E\u093E \u0930\u0942\u092A\u093E\u0928\u094D\u0924\u0930\u0923 \u0917\u0930\u094D\u0928\u0947\u0964 \u092F\u094B \u0915\u0947\u0935\u0932 \u0924\u092C \u0932\u093E\u0917\u0942 \u0939\u0941\u0928\u094D\u091B \u091C\u092C PNG \u091B\u0935\u093F \u0938\u093E\u092E\u0917\u094D\u0930\u0940 \u0915\u094D\u0932\u093F\u092A\u092C\u094B\u0930\u094D\u0921\u092C\u093E\u091F \u0938\u0940\u0927\u0948 \u091F\u093E\u0901\u0938\u093F\u090F\u0915\u094B \u0939\u0941\u0928\u094D\u091B\u0964 \u0938\u093E\u092E\u093E\u0928\u094D\u092F\u0924\u092F\u093E, \u0938\u094D\u0915\u094D\u0930\u093F\u0928\u0936\u091F \u091F\u093E\u0901\u0938\u094D\u0928\u0915\u093E \u0932\u093E\u0917\u093F\u0964",name:"\u091F\u093E\u0901\u0938\u093F\u090F\u0915\u093E \u091B\u0935\u093F\u0939\u0930\u0942\u0932\u093E\u0908 JPEG \u092E\u093E \u0930\u0942\u092A\u093E\u0928\u094D\u0924\u0930\u0923 \u0917\u0930\u094D\u0928\u0941\u092A\u0930\u094D\u091B"},shouldDeleteOrphanAttachments:{description:"\u092F\u0926\u093F \u0938\u0915\u094D\u0937\u092E \u0917\u0930\u093F\u090F\u0915\u094B \u091B \u092D\u0928\u0947, \u091C\u092C \u0928\u094B\u091F \u092E\u0947\u091F\u093E\u0907\u0928\u094D\u091B, \u092F\u0938\u0915\u093E \u0905\u0928\u093E\u0925 \u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942 \u092A\u0928\u093F \u092E\u0947\u091F\u093E\u0907\u0928\u0947\u091B\u0928\u094D\u0964",name:"\u0905\u0928\u093E\u0925 \u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942 \u092E\u0947\u091F\u093E\u0909\u0928\u0941\u092A\u0930\u094D\u091B"},shouldRenameAttachmentFiles:{description:{part1:"\u092F\u0926\u093F \u0938\u0915\u094D\u0937\u092E \u0917\u0930\u093F\u090F\u0915\u094B \u091B \u092D\u0928\u0947, \u091C\u092C \u0928\u094B\u091F \u092A\u0941\u0928\u0903 \u0928\u093E\u092E\u0915\u0930\u0923 \u0935\u093E \u0938\u093E\u0930\u093F\u0928\u094D\u091B, \u092F\u0938\u0915\u093E \u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942",part2:"\u0938\u0947\u091F\u093F\u0919 \u0905\u0928\u0941\u0938\u093E\u0930 \u092A\u0941\u0928\u0903 \u0928\u093E\u092E\u0915\u0930\u0923 \u0917\u0930\u093F\u0928\u0947\u091B\u0928\u094D\u0964"},name:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u092B\u093E\u0907\u0932\u0939\u0930\u0942 \u092A\u0941\u0928\u0903 \u0928\u093E\u092E\u0915\u0930\u0923 \u0917\u0930\u094D\u0928\u0941\u092A\u0930\u094D\u091B"},shouldRenameAttachmentFolders:{description:"\u091C\u092C \u0928\u094B\u091F \u092A\u0941\u0928\u0903 \u0928\u093E\u092E\u0915\u0930\u0923 \u0935\u093E \u0938\u093E\u0930\u093F\u0928\u094D\u091B, \u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u092B\u094B\u0932\u094D\u0921\u0930\u0939\u0930\u0942 \u092A\u0941\u0928\u0903 \u0928\u093E\u092E\u0915\u0930\u0923 \u0917\u0930\u094D\u0928\u0947 \u0935\u093E \u0928\u0917\u0930\u094D\u0928\u0947\u0964",name:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u092B\u094B\u0932\u094D\u0921\u0930\u0939\u0930\u0942 \u092A\u0941\u0928\u0903 \u0928\u093E\u092E\u0915\u0930\u0923 \u0917\u0930\u094D\u0928\u0941\u092A\u0930\u094D\u091B"},shouldRenameCollectedAttachments:{description:{part1:"\u092F\u0926\u093F \u0938\u0915\u094D\u0937\u092E \u0917\u0930\u093F\u090F\u0915\u094B \u091B \u092D\u0928\u0947,",part2:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942 \u0938\u0902\u0915\u0932\u0928 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D",part3:"\u0906\u0926\u0947\u0936\u0939\u0930\u0942 \u092E\u093E\u0930\u094D\u092B\u0924 \u092A\u094D\u0930\u0936\u094B\u0927\u093F\u0924 \u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942",part4:"\u0938\u0947\u091F\u093F\u0919 \u0905\u0928\u0941\u0938\u093E\u0930 \u092A\u0941\u0928\u0903 \u0928\u093E\u092E\u0915\u0930\u0923 \u0917\u0930\u093F\u0928\u0947\u091B\u0928\u094D\u0964"},name:"\u0938\u0902\u0915\u0932\u093F\u0924 \u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942 \u092A\u0941\u0928\u0903 \u0928\u093E\u092E\u0915\u0930\u0923 \u0917\u0930\u094D\u0928\u0941\u092A\u0930\u094D\u091B"},specialCharacters:{description:{part1:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u092B\u094B\u0932\u094D\u0921\u0930 \u0930 \u092B\u093E\u0907\u0932 \u0928\u093E\u092E\u092E\u093E \u092A\u094D\u0930\u0924\u093F\u0938\u094D\u0925\u093E\u092A\u0928 \u0935\u093E \u0939\u091F\u093E\u0909\u0928\u0915\u093E \u0932\u093E\u0917\u093F \u0935\u093F\u0936\u0947\u0937 \u0905\u0915\u094D\u0937\u0930\u0939\u0930\u0942\u0964",part2:"\u0935\u093F\u0936\u0947\u0937 \u0905\u0915\u094D\u0937\u0930\u0939\u0930\u0942 \u0938\u0902\u0930\u0915\u094D\u0937\u093F\u0924 \u0917\u0930\u094D\u0928\u0915\u093E \u0932\u093E\u0917\u093F \u0916\u093E\u0932\u0940 \u091B\u094B\u0921\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964"},name:"\u0935\u093F\u0936\u0947\u0937 \u0905\u0915\u094D\u0937\u0930\u0939\u0930\u0942"},specialCharactersReplacement:{description:{part1:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u092B\u094B\u0932\u094D\u0921\u0930 \u0930 \u092B\u093E\u0907\u0932 \u0928\u093E\u092E\u092E\u093E \u0935\u093F\u0936\u0947\u0937 \u0905\u0915\u094D\u0937\u0930\u0939\u0930\u0942\u0915\u093E \u0932\u093E\u0917\u093F \u092A\u094D\u0930\u0924\u093F\u0938\u094D\u0925\u093E\u092A\u0928 \u0938\u094D\u091F\u094D\u0930\u093F\u0919\u0964",part2:"\u0935\u093F\u0936\u0947\u0937 \u0905\u0915\u094D\u0937\u0930\u0939\u0930\u0942 \u0939\u091F\u093E\u0909\u0928\u0915\u093E \u0932\u093E\u0917\u093F \u0916\u093E\u0932\u0940 \u091B\u094B\u0921\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964"},name:"\u0935\u093F\u0936\u0947\u0937 \u0905\u0915\u094D\u0937\u0930\u0939\u0930\u0942 \u092A\u094D\u0930\u0924\u093F\u0938\u094D\u0925\u093E\u092A\u0928"},timeoutInSeconds:{description:{part1:"\u0938\u092C\u0948 \u0915\u093E\u0930\u094D\u092F\u0939\u0930\u0942\u0915\u093E \u0932\u093E\u0917\u093F \u0938\u0947\u0915\u0947\u0928\u094D\u0921\u092E\u093E \u091F\u093E\u0907\u092E\u0906\u0909\u091F\u0964",part2:"\u092F\u0926\u093F",part3:"\u0938\u0947\u091F \u0917\u0930\u093F\u090F\u0915\u094B \u091B \u092D\u0928\u0947, \u0915\u093E\u0930\u094D\u092F\u0939\u0930\u0942 \u0915\u093E\u0930\u094D\u092F\u093E\u0928\u094D\u0935\u092F\u0928 \u091F\u093E\u0907\u092E\u0906\u0909\u091F \u0905\u0915\u094D\u0937\u092E \u0917\u0930\u093F\u0928\u0947\u091B\u0964"},name:"\u0938\u0947\u0915\u0947\u0928\u094D\u0921\u092E\u093E \u091F\u093E\u0907\u092E\u0906\u0909\u091F"},treatAsAttachmentExtensions:{description:{part1:"\u092F\u0940 \u090F\u0915\u094D\u0938\u091F\u0947\u0928\u094D\u0938\u0928\u0939\u0930\u0942 \u092D\u090F\u0915\u093E \u092B\u093E\u0907\u0932\u0939\u0930\u0942\u0932\u093E\u0908 \u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942\u0915\u094B \u0930\u0942\u092A\u092E\u093E \u0935\u094D\u092F\u0935\u0939\u093E\u0930 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D\u0964",part2:"\u092A\u0942\u0930\u094D\u0935\u0928\u093F\u0930\u094D\u0927\u093E\u0930\u093F\u0924 \u0930\u0942\u092A\u092E\u093E",part3:"\u0930",part4:"\u0932\u093F\u0902\u0915 \u0917\u0930\u093F\u090F\u0915\u093E \u092B\u093E\u0907\u0932\u0939\u0930\u0942 \u0938\u0902\u0932\u0917\u094D\u0928\u0915\u0939\u0930\u0942\u0915\u094B \u0930\u0942\u092A\u092E\u093E \u0935\u094D\u092F\u0935\u0939\u093E\u0930 \u0917\u0930\u093F\u0928\u0947\u091B\u0948\u0928\u0928\u094D \u0930 \u0928\u094B\u091F\u0938\u0901\u0917 \u0938\u093E\u0930\u093F\u0928\u0947\u091B\u0948\u0928\u0928\u094D\u0964",part5:"\u0924\u092A\u093E\u0908\u0901 \u0915\u0938\u094D\u091F\u092E \u090F\u0915\u094D\u0938\u091F\u0947\u0928\u094D\u0938\u0928\u0939\u0930\u0942 \u0925\u092A\u094D\u0928 \u0938\u0915\u094D\u0928\u0941\u0939\u0941\u0928\u094D\u091B, \u0909\u0926\u093E\u0939\u0930\u0923\u0915\u093E \u0932\u093E\u0917\u093F",part6:", \u092F\u094B \u0935\u094D\u092F\u0935\u0939\u093E\u0930 \u0913\u092D\u0930\u0930\u093E\u0907\u0921 \u0917\u0930\u094D\u0928\u0915\u093E \u0932\u093E\u0917\u093F\u0964"},name:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u090F\u0915\u094D\u0938\u091F\u0947\u0928\u094D\u0938\u0928\u0939\u0930\u0942\u0915\u094B \u0930\u0942\u092A\u092E\u093E \u0935\u094D\u092F\u0935\u0939\u093E\u0930 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D"}},promptWithPreviewModal:{previewModal:{title:"\u0938\u0902\u0932\u0917\u094D\u0928\u0915 \u092B\u093E\u0907\u0932 '{{fullFileName}}' \u0915\u094B \u092A\u0942\u0930\u094D\u0935\u093E\u0935\u0932\u094B\u0915\u0928"},title:"\u092A\u094D\u0930\u094B\u092E\u094D\u092A\u094D\u091F \u091F\u094B\u0915\u0928\u0915\u093E \u0932\u093E\u0917\u093F \u092E\u093E\u0928 \u092A\u094D\u0930\u0926\u093E\u0928 \u0917\u0930\u094D\u0928\u0941\u0939\u094B\u0938\u094D"},regularExpression:"/\u0928\u093F\u092F\u092E\u093F\u0924 \u0905\u092D\u093F\u0935\u094D\u092F\u0915\u094D\u0924\u093F/"};var dh={attachmentCollector:{confirm:{part1:"Wil je bijlagen voor alle notities in mappen recursief verzamelen?",part2:"Deze bewerking kan niet ongedaan worden gemaakt."},progressBar:{message:"Bijlagen verzamelen {{iterationStr}} - '{{noteFilePath}}'.",title:"Bijlagen verzamelen..."}},buttons:{copy:"Kopi\xEBren",move:"Verplaatsen",previewAttachmentFile:"Voorvertoning bijlagebestand",skip:"Overslaan"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"Bijlage",part2:"wordt gebruikt door meerdere notities."},heading:"Bijlage verzamelen die door meerdere notities wordt gebruikt",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Dezelfde actie gebruiken voor andere problematische bijlagen"},commands:{collectAttachmentsCurrentFolder:"Bijlagen verzamelen in huidige map",collectAttachmentsCurrentNote:"Bijlagen verzamelen in huidige notitie",collectAttachmentsEntireVault:"Bijlagen verzamelen in hele kluis"},menuItems:{collectAttachmentsInFile:"Bijlagen verzamelen in bestand",collectAttachmentsInFiles:"Bijlagen verzamelen in bestanden"},notice:{collectingAttachments:"Bijlagen verzamelen voor '{{noteFilePath}}'",collectingAttachmentsCancelled:"Bijlagen verzamelen geannuleerd. Zie console voor details.",generatedAttachmentFileNameIsInvalid:{part1:`Gegenereerde bijlage bestandsnaam '{{path}}' is ongeldig.
|
|
523
|
+
{{validationMessage}}
|
|
524
|
+
Controleer je`,part2:"instellingen."},notePathIsIgnored:"Notitie pad wordt genegeerd"},obsidianDevUtils:{buttons:{cancel:"Annuleren",ok:"OK"},dataview:{itemsPerPage:"Items per pagina:",jumpToPage:"Ga naar pagina:"},notices:{attachmentIsStillUsed:"Bijlage {{attachmentPath}} wordt nog steeds gebruikt door andere notities. Deze wordt niet verwijderd.",unhandledError:"Er is een onverwerkte fout opgetreden. Controleer de console voor meer informatie."}},pluginSettings:{attachmentRenameMode:{all:{description:"alle bestanden worden hernoemd.",displayText:"Alle"},none:{description:"hun namen worden behouden.",displayText:"Geen"},onlyPastedImages:{description:"alleen geplakte afbeeldingen worden hernoemd. Geldt alleen wanneer PNG afbeeldingsinhoud direct vanuit het klembord wordt geplakt. Meestal voor het plakken van screenshots.",displayText:"Alleen geplakte afbeeldingen"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"annuleer het verzamelen van bijlagen.",displayText:"Annuleren"},copy:{description:"kopieer de bijlage naar de nieuwe locatie.",displayText:"Kopi\xEBren"},move:{description:"verplaats de bijlage naar de nieuwe locatie.",displayText:"Verplaatsen"},prompt:{description:"vraag de gebruiker om de actie te kiezen.",displayText:"Vragen"},skip:{description:"sla de bijlage over en ga door naar de volgende.",displayText:"Overslaan"}},defaultImageSizeDimension:{height:"Hoogte",width:"Breedte"},emptyAttachmentFolderBehavior:{delete:{description:"zal de lege bijlagenmap verwijderen.",displayText:"Verwijderen"},deleteWithEmptyParents:{description:"zal de lege bijlagenmap en zijn lege bovenliggende mappen verwijderen.",displayText:"Verwijderen met lege bovenliggende mappen"},keep:{description:"zal de lege bijlagenmap behouden.",displayText:"Behouden"}}},pluginSettingsManager:{customToken:{codeComment:`// Aangepaste tokens zijn uitgecommentarieerd omdat ze moeten worden bijgewerkt naar het nieuwe formaat ge\xEFntroduceerd in plugin versie 9.0.0.
|
|
525
|
+
// Raadpleeg de documentatie (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) voor meer informatie.`,deprecated:{part1:"In plugin versie 9.0.0 is het formaat van aangepaste token registratie veranderd. Werk je tokens dienovereenkomstig bij. Raadpleeg de",part2:"documentatie",part3:"voor meer informatie"}},legacyRenameAttachmentsToLowerCase:{part1:"In plugin versie 9.0.0 is de",part2:"instelling verouderd. Gebruik in plaats daarvan het",part3:"formaat. Zie de",part4:"documentatie",part5:"voor meer informatie"},markdownUrlFormat:{deprecated:{part1:"Je hebt mogelijk een onjuiste waarde ingesteld voor het",part2:"formaat. Raadpleeg de",part3:"documentatie",part4:"voor meer informatie.",part5:"Dit bericht wordt niet meer getoond."}},specialCharacters:{part1:"In plugin versie 9.16.0 is de",part2:"standaard instellingswaarde veranderd. Je instellingswaarde is bijgewerkt naar de nieuwe standaardwaarde."},validation:{defaultImageSizeMustBePercentageOrPixels:"De standaardafmeting van de afbeelding moet in pixels of procenten zijn",invalidCustomTokensCode:"Ongeldige aangepaste tokens code",invalidRegularExpression:"Ongeldige reguliere expressie {{regExp}}",specialCharactersMustNotContainSlash:"Speciale karakters mogen geen / bevatten",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"Speciale karakter vervanging mag geen ongeldige bestandsnaam pad karakters bevatten."},version:{part1:"Je instellingenbestand ",part2:"heeft versie",part3:"wat nieuwer is dan de huidige plugin versie",part4:"De plugin werkt mogelijk niet zoals verwacht. Werk de plugin bij naar de nieuwste versie of zorg ervoor dat de instellingen correct zijn."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"Bij het bijvoegen van bestanden:"},name:"Bijlage hernoem modus"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Wanneer de verzamelde bijlage wordt gebruikt door meerdere notities:"},name:"Verzamel bijlage gebruikt door meerdere notities modus"},collectedAttachmentFileName:{description:{part1:"Zie beschikbare",part2:"tokens"},name:"Verzamelde bijlage bestandsnaam"},customTokens:{description:{part1:"Aangepaste tokens om te gebruiken.",part2:"Zie de",part3:"documentatie",part4:"voor meer informatie.",part5:"\u26A0\uFE0F Aangepaste tokens kunnen willekeurige JavaScript code zijn. Als ze slecht geschreven zijn, kunnen ze gegevensverlies veroorzaken. Gebruik ze op eigen risico."},name:"Aangepaste tokens"},defaultImageSize:{description:{part1:"De standaardafmeting van de afbeelding.",part2:"Kan worden opgegeven in pixels",part3:"of als percentage van de volledige afbeeldingsgrootte",part4:"Laat leeg om de originele afbeeldingsgrootte te gebruiken."},name:"Standaardafmeting afbeelding"},duplicateNameSeparator:{description:{part1:"Wanneer je een bestand plakt/sleept met dezelfde naam als een bestaand bestand, wordt deze scheidingsteken toegevoegd aan de bestandsnaam.",part2:"Bijv., wanneer je bestand sleept",part3:", wordt het hernoemd naar ",part4:", etc., waarbij de eerste beschikbare naam wordt gebruikt."},name:"Dubbele naam scheidingsteken"},emptyAttachmentFolderBehavior:{description:{part1:"Wanneer de bijlagenmap leeg wordt:"},name:"Lege bijlagenmap gedrag"},excludePaths:{description:{part1:"Sluit notities uit van de volgende paden.",part2:"Voeg elk pad toe op een nieuwe regel.",part3:"Je kunt pad string of",part4:"gebruiken. Als de instelling leeg is, worden geen notities uitgesloten."},name:"Uitgesloten paden"},excludePathsFromAttachmentCollecting:{description:{part1:"Sluit bijlagen uit van de volgende paden wanneer het",part2:"Verzamel bijlagen",part3:"commando wordt uitgevoerd.",part4:"Voeg elk pad toe op een nieuwe regel.",part5:"Je kunt pad string of",part6:"gebruiken. Als de instelling leeg is, worden geen paden uitgesloten van bijlage verzamelen."},name:"Uitgesloten paden van bijlage verzamelen"},generatedAttachmentFileName:{description:{part1:"Zie beschikbare",part2:"tokens"},name:"Gegenereerde bijlage bestandsnaam"},includePaths:{description:{part1:"Voeg notities toe van de volgende paden.",part2:"Voeg elk pad toe op een nieuwe regel.",part3:"Je kunt pad string of",part4:"gebruiken. Als de instelling leeg is, worden alle notities opgenomen."},name:"Opgenomen paden"},jpegQuality:{description:"Hoe kleiner de kwaliteit, hoe groter de compressieverhouding.",name:"JPEG Kwaliteit"},locationForNewAttachments:{description:{part1:"Begin met",part2:"om relatief pad te gebruiken.",part3:"Zie beschikbare",part4:"tokens.",part5:"Dot-mappen zoals",part6:"worden niet aanbevolen, omdat Obsidian ze niet volgt. Je moet mogelijk de",part7:"Plugin gebruiken om ze te beheren."},name:"Locatie voor nieuwe bijlagen"},markdownUrlFormat:{description:{part1:"Formaat voor de URL die in Markdown wordt ingevoegd.",part2:"Zie beschikbare",part3:"tokens.",part4:"Laat leeg om het standaard formaat te gebruiken."},name:"Markdown URL formaat"},renameAttachmentsToLowerCase:"Hernoem bijlagen naar kleine letters",renamedAttachmentFileName:{description:{part1:"Zie beschikbare",part2:"tokens"},name:"Hernoemde bijlage bestandsnaam"},resetToSampleCustomTokens:{message:"Weet je zeker dat je de aangepaste tokens wilt resetten naar de voorbeeld aangepaste tokens? Je wijzigingen gaan verloren.",title:"Reset naar voorbeeld aangepaste tokens"},shouldConvertPastedImagesToJpeg:{description:"Of geplakte afbeeldingen moeten worden geconverteerd naar JPEG. Geldt alleen wanneer PNG afbeeldingsinhoud direct vanuit het klembord wordt geplakt. Meestal voor het plakken van screenshots.",name:"Moet geplakte afbeeldingen converteren naar JPEG"},shouldDeleteOrphanAttachments:{description:"Indien ingeschakeld, wanneer de notitie wordt verwijderd, worden ook de wees bijlagen verwijderd.",name:"Moet wees bijlagen verwijderen"},shouldRenameAttachmentFiles:{description:{part1:"Indien ingeschakeld, wanneer een notitie wordt hernoemd of verplaatst, worden de bijlagen hernoemd volgens de",part2:"instelling."},name:"Moet bijlage bestanden hernoemen"},shouldRenameAttachmentFolders:{description:"Of bijlage mappen moeten worden hernoemd wanneer een notitie wordt hernoemd of verplaatst.",name:"Moet bijlage mappen hernoemen"},shouldRenameCollectedAttachments:{description:{part1:"Indien ingeschakeld, bijlagen verwerkt via",part2:"Verzamel bijlagen",part3:"commando's worden hernoemd volgens de",part4:"instelling."},name:"Moet verzamelde bijlagen hernoemen"},specialCharacters:{description:{part1:"Speciale karakters in bijlage map en bestandsnaam die moeten worden vervangen of verwijderd.",part2:"Laat leeg om speciale karakters te behouden."},name:"Speciale karakters"},specialCharactersReplacement:{description:{part1:"Vervangingsstring voor speciale karakters in bijlage map en bestandsnaam.",part2:"Laat leeg om speciale karakters te verwijderen."},name:"Speciale karakters vervanging"},timeoutInSeconds:{description:{part1:"De timeout in seconden voor alle bewerkingen.",part2:"Als",part3:"is ingesteld, is de uitvoeringstimeout van bewerkingen uitgeschakeld."},name:"Timeout in seconden"},treatAsAttachmentExtensions:{description:{part1:"Behandel bestanden met deze extensies als bijlagen.",part2:"Standaard worden",part3:"en",part4:"gelinkte bestanden niet behandeld als bijlagen en worden niet verplaatst met de notitie.",part5:"Je kunt aangepaste extensies toevoegen, bijv.",part6:", om dit gedrag te overschrijven."},name:"Behandel als bijlage extensies"}},promptWithPreviewModal:{previewModal:{title:"Voorvertoning bijlage bestand '{{fullFileName}}'"},title:"Geef een waarde voor de prompt token"},regularExpression:"/reguliere expressie/"};var uh={attachmentCollector:{confirm:{part1:"Vil du samle vedlegg for alle notater i mapper rekursivt?",part2:"Denne operasjonen kan ikke angres."},progressBar:{message:"Samler vedlegg {{iterationStr}} - '{{noteFilePath}}'.",title:"Samler vedlegg..."}},buttons:{copy:"Kopier",move:"Flytt",previewAttachmentFile:"Forh\xE5ndsvisning av vedleggsfil",skip:"Hopp over"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"Vedlegg",part2:"refereres av flere notater."},heading:"Samler vedlegg brukt av flere notater",shouldUseSameActionForOtherProblematicAttachmentsToggle:"B\xF8r bruke samme handling for andre problematiske vedlegg"},commands:{collectAttachmentsCurrentFolder:"Samle vedlegg i gjeldende mappe",collectAttachmentsCurrentNote:"Samle vedlegg i gjeldende notat",collectAttachmentsEntireVault:"Samle vedlegg i hele krypteret"},menuItems:{collectAttachmentsInFile:"Samle vedlegg i fil",collectAttachmentsInFiles:"Samle vedlegg i filer"},notice:{collectingAttachments:"Samler vedlegg for '{{noteFilePath}}'",collectingAttachmentsCancelled:"Innsamling av vedlegg avbrutt. Se konsoll for detaljer.",generatedAttachmentFileNameIsInvalid:{part1:`Generert vedleggsfilnavn '{{path}}' er ugyldig.
|
|
526
|
+
{{validationMessage}}
|
|
527
|
+
Sjekk din`,part2:"innstilling."},notePathIsIgnored:"Notatbane ignoreres"},obsidianDevUtils:{buttons:{cancel:"Avbryt",ok:"OK"},dataview:{itemsPerPage:"Elementer per side:",jumpToPage:"G\xE5 til side:"},notices:{attachmentIsStillUsed:"Vedlegg {{attachmentPath}} brukes fortsatt av andre notater. Det vil ikke bli slettet.",unhandledError:"En uh\xE5ndtert feil oppstod. Vennligst sjekk konsollen for mer informasjon."}},pluginSettings:{attachmentRenameMode:{all:{description:"alle filer omd\xF8pes.",displayText:"Alle"},none:{description:"navnene deres bevares.",displayText:"Ingen"},onlyPastedImages:{description:"bare innlimte bilder omd\xF8pes. Gjelder bare n\xE5r PNG-bildeinnhold limes inn fra utklippstavlen direkte. Vanligvis for \xE5 lime inn skjermbilder.",displayText:"Bare innlimte bilder"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"avbryt vedleggsinnsamlingen.",displayText:"Avbryt"},copy:{description:"kopier vedlegget til den nye plasseringen.",displayText:"Kopier"},move:{description:"flytt vedlegget til den nye plasseringen.",displayText:"Flytt"},prompt:{description:"sp\xF8r brukeren om \xE5 velge handlingen.",displayText:"Sp\xF8r"},skip:{description:"hopp over vedlegget og g\xE5 videre til neste.",displayText:"Hopp over"}},defaultImageSizeDimension:{height:"H\xF8yde",width:"Bredde"},emptyAttachmentFolderBehavior:{delete:{description:"vil slette den tomme vedleggsmappen.",displayText:"Slett"},deleteWithEmptyParents:{description:"vil slette den tomme vedleggsmappen og dens tomme overordnede mapper.",displayText:"Slett med tomme overordnede"},keep:{description:"vil beholde den tomme vedleggsmappen.",displayText:"Behold"}}},pluginSettingsManager:{customToken:{codeComment:`// Tilpassede tokens ble kommentert ut da de m\xE5 oppdateres til det nye formatet introdusert i plugin versjon 9.0.0.
|
|
528
|
+
// Se dokumentasjonen (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) for mer informasjon.`,deprecated:{part1:"I plugin versjon 9.0.0 endret formatet for tilpasset token-registrering. Vennligst oppdater tokens dine tilsvarende. Se",part2:"dokumentasjonen",part3:"for mer informasjon"}},legacyRenameAttachmentsToLowerCase:{part1:"I plugin versjon 9.0.0 er",part2:"innstillingen utdatert. Bruk",part3:"format i stedet. Se",part4:"dokumentasjonen",part5:"for mer informasjon"},markdownUrlFormat:{deprecated:{part1:"Du har potensielt feil verdi satt for",part2:"formatet. Vennligst se",part3:"dokumentasjonen",part4:"for mer informasjon.",part5:"Denne meldingen vil ikke vises igjen."}},specialCharacters:{part1:"I plugin versjon 9.16.0 ble",part2:"standard innstillingsverdi endret. Din innstillingsverdi ble oppdatert til den nye standardverdien."},validation:{defaultImageSizeMustBePercentageOrPixels:"Standard bildest\xF8rrelse m\xE5 v\xE6re i piksler eller prosent",invalidCustomTokensCode:"Ugyldig tilpasset tokens kode",invalidRegularExpression:"Ugyldig regul\xE6rt uttrykk {{regExp}}",specialCharactersMustNotContainSlash:"Spesialtegn m\xE5 ikke inneholde /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"Spesialtegnerstatning m\xE5 ikke inneholde ugyldige filnavn stibokstaver."},version:{part1:"Din innstillingsfil ",part2:"har versjon",part3:"som er nyere enn gjeldende plugin versjon",part4:"Plugin-en fungerer kanskje ikke som forventet. Vennligst oppdater plugin-en til den nyeste versjonen eller sikre at innstillingene er korrekte."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"N\xE5r du legger ved filer:"},name:"Vedlegg omd\xF8pingsmodus"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"N\xE5r det innsamlede vedlegget brukes av flere notater:"},name:"Samle vedlegg brukt av flere notater modus"},collectedAttachmentFileName:{description:{part1:"Se tilgjengelige",part2:"tokens"},name:"Samlet vedleggsfilnavn"},customTokens:{description:{part1:"Tilpassede tokens som skal brukes.",part2:"Se",part3:"dokumentasjonen",part4:"for mer informasjon.",part5:"\u26A0\uFE0F Tilpassede tokens kan v\xE6re vilk\xE5rlig JavaScript-kode. Hvis d\xE5rlig skrevet, kan det f\xF8re til tap av data. Bruk det p\xE5 egen risiko."},name:"Tilpassede tokens"},defaultImageSize:{description:{part1:"Standard bildest\xF8rrelse.",part2:"Kan spesifiseres i piksler",part3:"eller prosent av hele bildest\xF8rrelsen",part4:"La st\xE5 tomt for \xE5 bruke original bildest\xF8rrelse."},name:"Standard bildest\xF8rrelse"},duplicateNameSeparator:{description:{part1:"N\xE5r du limer inn/drar en fil med samme navn som en eksisterende fil, vil denne separatoren legges til filnavnet.",part2:"F.eks., n\xE5r du drar fil",part3:", vil den omd\xF8pes til ",part4:", osv., og f\xE5 det f\xF8rste tilgjengelige navnet."},name:"Duplikat navn separator"},emptyAttachmentFolderBehavior:{description:{part1:"N\xE5r vedleggsmappen blir tom:"},name:"Tom vedleggsmappe oppf\xF8rsel"},excludePaths:{description:{part1:"Ekskluder notater fra f\xF8lgende stier.",part2:"Sett inn hver sti p\xE5 en ny linje.",part3:"Du kan bruke stistreng eller",part4:"Hvis innstillingen er tom, ekskluderes ingen notater."},name:"Ekskluderte stier"},excludePathsFromAttachmentCollecting:{description:{part1:"Ekskluder vedlegg fra f\xF8lgende stier n\xE5r",part2:"Samle vedlegg",part3:"kommando utf\xF8res.",part4:"Sett inn hver sti p\xE5 en ny linje.",part5:"Du kan bruke stistreng eller",part6:"Hvis innstillingen er tom, ekskluderes ingen stier fra vedleggsinnsamling."},name:"Ekskluder stier fra vedleggsinnsamling"},generatedAttachmentFileName:{description:{part1:"Se tilgjengelige",part2:"tokens"},name:"Generert vedleggsfilnavn"},includePaths:{description:{part1:"Inkluder notater fra f\xF8lgende stier.",part2:"Sett inn hver sti p\xE5 en ny linje.",part3:"Du kan bruke stistreng eller",part4:"Hvis innstillingen er tom, inkluderes alle notater."},name:"Inkluderte stier"},jpegQuality:{description:"Jo mindre kvalitet, jo st\xF8rre komprimeringsforhold.",name:"JPEG Kvalitet"},locationForNewAttachments:{description:{part1:"Start med",part2:"for \xE5 bruke relativ sti.",part3:"Se tilgjengelige",part4:"tokens.",part5:"Punktmapper som",part6:"anbefales ikke, fordi Obsidian ikke sporer dem. Du m\xE5 kanskje bruke",part7:"Plugin for \xE5 administrere dem."},name:"Plassering for nye vedlegg"},markdownUrlFormat:{description:{part1:"Format for URL-en som vil bli satt inn i Markdown.",part2:"Se tilgjengelige",part3:"tokens.",part4:"La st\xE5 tom for \xE5 bruke standardformatet."},name:"Markdown URL format"},renameAttachmentsToLowerCase:"Omd\xF8p vedlegg til sm\xE5 bokstaver",renamedAttachmentFileName:{description:{part1:"Se tilgjengelige",part2:"tokens"},name:"Omd\xF8pt vedleggsfilnavn"},resetToSampleCustomTokens:{message:"Er du sikker p\xE5 at du vil tilbakestille de tilpassede tokens til eksempel tilpassede tokens? Endringene dine vil g\xE5 tapt.",title:"Tilbakestill til eksempel tilpassede tokens"},shouldConvertPastedImagesToJpeg:{description:"Om innlimte bilder skal konverteres til JPEG. Gjelder bare n\xE5r PNG-bildeinnhold limes inn fra utklippstavlen direkte. Vanligvis for \xE5 lime inn skjermbilder.",name:"Skal konvertere innlimte bilder til JPEG"},shouldDeleteOrphanAttachments:{description:"Hvis aktivert, n\xE5r notatet slettes, slettes ogs\xE5 dets for\xE6ldrel\xF8se vedlegg.",name:"Skal slette for\xE6ldrel\xF8se vedlegg"},shouldRenameAttachmentFiles:{description:{part1:"Hvis aktivert, n\xE5r et notat omd\xF8pes eller flyttes, vil vedleggene bli omd\xF8pt i henhold til",part2:"innstillingen."},name:"Skal omd\xF8pe vedleggsfiler"},shouldRenameAttachmentFolders:{description:"Om vedleggsmapper skal omd\xF8pes n\xE5r et notat omd\xF8pes eller flyttes.",name:"Skal omd\xF8pe vedleggsmapper"},shouldRenameCollectedAttachments:{description:{part1:"Hvis aktivert, vedlegg behandlet via",part2:"Samle vedlegg",part3:"kommandoer vil omd\xF8pes i henhold til",part4:"innstillingen."},name:"Skal omd\xF8pe innsamlede vedlegg"},specialCharacters:{description:{part1:"Spesialtegn i vedleggsmappe og filnavn som skal erstattes eller fjernes.",part2:"La st\xE5 tom for \xE5 bevare spesialtegn."},name:"Spesialtegn"},specialCharactersReplacement:{description:{part1:"Erstatningsstreng for spesialtegn i vedleggsmappe og filnavn.",part2:"La st\xE5 tom for \xE5 fjerne spesialtegn."},name:"Spesialtegnerstatning"},timeoutInSeconds:{description:{part1:"Tidsavbrudd i sekunder for alle operasjoner.",part2:"Hvis",part3:"er satt, er tidsavbrudd for operasjonsutf\xF8relse deaktivert."},name:"Tidsavbrudd i sekunder"},treatAsAttachmentExtensions:{description:{part1:"Behandle filer med disse utvidelsene som vedlegg.",part2:"Som standard",part3:"og",part4:"lenkede filer behandles ikke som vedlegg og flyttes ikke med notatet.",part5:"Du kan legge til tilpassede utvidelser, f.eks.",part6:", for \xE5 overstyre denne oppf\xF8rselen."},name:"Behandle som vedleggsutvidelser"}},promptWithPreviewModal:{previewModal:{title:"Forh\xE5ndsvisning av vedleggsfil '{{fullFileName}}'"},title:"Oppgi en verdi for prompt token"},regularExpression:"/regul\xE6rt uttrykk/"};var mh={attachmentCollector:{confirm:{part1:"Czy chcesz zebra\u0107 za\u0142\u0105czniki dla wszystkich notatek w folderach rekursywnie?",part2:"Tej operacji nie mo\u017Cna cofn\u0105\u0107."},progressBar:{message:"Zbieranie za\u0142\u0105cznik\xF3w {{iterationStr}} - '{{noteFilePath}}'.",title:"Zbieranie za\u0142\u0105cznik\xF3w..."}},buttons:{copy:"Kopiuj",move:"Przenie\u015B",previewAttachmentFile:"Podgl\u0105d pliku za\u0142\u0105cznika",skip:"Pomi\u0144"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"Za\u0142\u0105cznik",part2:"jest u\u017Cywany przez wiele notatek."},heading:"Zbieranie za\u0142\u0105cznika u\u017Cywanego przez wiele notatek",shouldUseSameActionForOtherProblematicAttachmentsToggle:"U\u017Cyj tej samej akcji dla innych problematycznych za\u0142\u0105cznik\xF3w"},commands:{collectAttachmentsCurrentFolder:"Zbierz za\u0142\u0105czniki w bie\u017C\u0105cym folderze",collectAttachmentsCurrentNote:"Zbierz za\u0142\u0105czniki w bie\u017C\u0105cej notatce",collectAttachmentsEntireVault:"Zbierz za\u0142\u0105czniki w ca\u0142ym sejfie"},menuItems:{collectAttachmentsInFile:"Zbierz za\u0142\u0105czniki w pliku",collectAttachmentsInFiles:"Zbierz za\u0142\u0105czniki w plikach"},notice:{collectingAttachments:"Zbieranie za\u0142\u0105cznik\xF3w dla '{{noteFilePath}}'",collectingAttachmentsCancelled:"Zbieranie za\u0142\u0105cznik\xF3w anulowane. Zobacz konsol\u0119 dla szczeg\xF3\u0142\xF3w.",generatedAttachmentFileNameIsInvalid:{part1:`Wygenerowana nazwa pliku za\u0142\u0105cznika '{{path}}' jest nieprawid\u0142owa.
|
|
529
|
+
{{validationMessage}}
|
|
530
|
+
Sprawd\u017A swoje`,part2:"ustawienie."},notePathIsIgnored:"\u015Acie\u017Cka notatki jest ignorowana"},obsidianDevUtils:{buttons:{cancel:"Anuluj",ok:"OK"},dataview:{itemsPerPage:"Elementy na stronie:",jumpToPage:"Przejd\u017A do strony:"},notices:{attachmentIsStillUsed:"Za\u0142\u0105cznik {{attachmentPath}} jest nadal u\u017Cywany przez inne notatki. Nie zostanie usuni\u0119ty.",unhandledError:"Wyst\u0105pi\u0142 nieobs\u0142ugiwany b\u0142\u0105d. Sprawd\u017A konsol\u0119 dla wi\u0119cej informacji."}},pluginSettings:{attachmentRenameMode:{all:{description:"wszystkie pliki s\u0105 przemianowywane.",displayText:"Wszystkie"},none:{description:"ich nazwy s\u0105 zachowane.",displayText:"\u017Badne"},onlyPastedImages:{description:"tylko wklejone obrazy s\u0105 przemianowywane. Dotyczy tylko sytuacji, gdy zawarto\u015B\u0107 obrazu PNG jest wklejana bezpo\u015Brednio ze schowka. Zazwyczaj do wklejania zrzut\xF3w ekranu.",displayText:"Tylko wklejone obrazy"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"anuluj zbieranie za\u0142\u0105cznik\xF3w.",displayText:"Anuluj"},copy:{description:"skopiuj za\u0142\u0105cznik do nowej lokalizacji.",displayText:"Kopiuj"},move:{description:"przenie\u015B za\u0142\u0105cznik do nowej lokalizacji.",displayText:"Przenie\u015B"},prompt:{description:"zapytaj u\u017Cytkownika o wyb\xF3r akcji.",displayText:"Zapytaj"},skip:{description:"pomi\u0144 za\u0142\u0105cznik i przejd\u017A do nast\u0119pnego.",displayText:"Pomi\u0144"}},defaultImageSizeDimension:{height:"Wysoko\u015B\u0107",width:"Szeroko\u015B\u0107"},emptyAttachmentFolderBehavior:{delete:{description:"usunie pusty folder za\u0142\u0105cznik\xF3w.",displayText:"Usu\u0144"},deleteWithEmptyParents:{description:"usunie pusty folder za\u0142\u0105cznik\xF3w i jego puste foldery nadrz\u0119dne.",displayText:"Usu\u0144 z pustymi rodzicami"},keep:{description:"zachowa pusty folder za\u0142\u0105cznik\xF3w.",displayText:"Zachowaj"}}},pluginSettingsManager:{customToken:{codeComment:`// Niestandardowe tokeny zosta\u0142y zakomentowane, poniewa\u017C musz\u0105 zosta\u0107 zaktualizowane do nowego formatu wprowadzonego w wersji wtyczki 9.0.0.
|
|
531
|
+
// Zapoznaj si\u0119 z dokumentacj\u0105 (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens), aby uzyska\u0107 wi\u0119cej informacji.`,deprecated:{part1:"W wersji wtyczki 9.0.0 zmieni\u0142 si\u0119 format rejestracji niestandardowych token\xF3w. Prosz\u0119 zaktualizowa\u0107 swoje tokeny odpowiednio. Zapoznaj si\u0119 z",part2:"dokumentacj\u0105",part3:"aby uzyska\u0107 wi\u0119cej informacji"}},legacyRenameAttachmentsToLowerCase:{part1:"W wersji wtyczki 9.0.0",part2:"to ustawienie zosta\u0142o wycofane. U\u017Cyj",part3:"formatu zamiast tego. Zobacz",part4:"dokumentacj\u0119",part5:"aby uzyska\u0107 wi\u0119cej informacji"},markdownUrlFormat:{deprecated:{part1:"Mo\u017Cesz mie\u0107 ustawion\u0105 potencjalnie niepoprawn\u0105 warto\u015B\u0107 dla",part2:"formatu. Prosz\u0119 zapozna\u0107 si\u0119 z",part3:"dokumentacj\u0105",part4:"aby uzyska\u0107 wi\u0119cej informacji",part5:"Ta wiadomo\u015B\u0107 nie zostanie ponownie wy\u015Bwietlona."}},specialCharacters:{part1:"W wersji wtyczki 9.16.0",part2:"domy\u015Blna warto\u015B\u0107 ustawienia zosta\u0142a zmieniona. Twoje ustawienie zosta\u0142o zaktualizowane do nowej warto\u015Bci domy\u015Blnej."},validation:{defaultImageSizeMustBePercentageOrPixels:"Domy\u015Blny rozmiar obrazu musi by\u0107 w pikselach lub procentach",invalidCustomTokensCode:"Nieprawid\u0142owy kod niestandardowych token\xF3w",invalidRegularExpression:"Nieprawid\u0142owe wyra\u017Cenie regularne {{regExp}}",specialCharactersMustNotContainSlash:"Znaki specjalne nie mog\u0105 zawiera\u0107 /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"Zamiana znak\xF3w specjalnych nie mo\u017Ce zawiera\u0107 nieprawid\u0142owych znak\xF3w \u015Bcie\u017Cki nazwy pliku."},version:{part1:"Tw\xF3j plik ustawie\u0144 ",part2:"ma wersj\u0119",part3:"kt\xF3ra jest nowsza ni\u017C bie\u017C\u0105ca wersja wtyczki",part4:"Wtyczka mo\u017Ce nie dzia\u0142a\u0107 zgodnie z oczekiwaniami. Zaktualizuj wtyczk\u0119 do najnowszej wersji lub upewnij si\u0119, \u017Ce ustawienia s\u0105 poprawne."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"Podczas do\u0142\u0105czania plik\xF3w:"},name:"Tryb przemianowania za\u0142\u0105cznik\xF3w"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Gdy zebrany za\u0142\u0105cznik jest u\u017Cywany przez wiele notatek:"},name:"Tryb zbierania za\u0142\u0105cznik\xF3w u\u017Cywanych przez wiele notatek"},collectedAttachmentFileName:{description:{part1:"Zobacz dost\u0119pne",part2:"tokeny"},name:"Zebrana nazwa pliku za\u0142\u0105cznika"},customTokens:{description:{part1:"Niestandardowe tokeny do u\u017Cycia.",part2:"Zobacz",part3:"dokumentacj\u0119",part4:"aby uzyska\u0107 wi\u0119cej informacji.",part5:"\u26A0\uFE0F Niestandardowe tokeny mog\u0105 by\u0107 dowolnym kodem JavaScript. Je\u015Bli s\u0105 napisane nieprawid\u0142owo, mog\u0105 spowodowa\u0107 utrat\u0119 danych. U\u017Cywasz ich na w\u0142asne ryzyko."},name:"Niestandardowe tokeny"},defaultImageSize:{description:{part1:"Domy\u015Blny rozmiar obrazu.",part2:"Mo\u017Cna okre\u015Bli\u0107 w pikselach",part3:"lub jako procent pe\u0142nego rozmiaru obrazu",part4:"Pozostaw puste, aby u\u017Cy\u0107 oryginalnego rozmiaru obrazu."},name:"Domy\u015Blny rozmiar obrazu"},duplicateNameSeparator:{description:{part1:"Gdy wklejasz/przeci\u0105gasz plik o tej samej nazwie co istniej\u0105cy plik, ten separator zostanie dodany do nazwy pliku.",part2:"Np. gdy przeci\u0105gasz plik",part3:", zostanie on przemianowany na ",part4:", itd., a\u017C do pierwszej dost\u0119pnej nazwy."},name:"Separator duplikowanych nazw"},emptyAttachmentFolderBehavior:{description:{part1:"Gdy folder za\u0142\u0105cznik\xF3w stanie si\u0119 pusty:"},name:"Zachowanie pustego folderu za\u0142\u0105cznik\xF3w"},excludePaths:{description:{part1:"Wyklucz notatki z nast\u0119puj\u0105cych \u015Bcie\u017Cek.",part2:"Wstaw ka\u017Cd\u0105 \u015Bcie\u017Ck\u0119 w nowej linii.",part3:"Mo\u017Cesz u\u017Cy\u0107 ci\u0105gu \u015Bcie\u017Cki lub wyra\u017Cenia regularnego.",part4:"Je\u015Bli ustawienie jest puste, \u017Cadna notatka nie jest wykluczana."},name:"Wyklucz \u015Bcie\u017Cki"},excludePathsFromAttachmentCollecting:{description:{part1:"Wyklucz za\u0142\u0105czniki z nast\u0119puj\u0105cych \u015Bcie\u017Cek, gdy wykonywane jest polecenie",part2:"Zbierz za\u0142\u0105czniki",part3:".",part4:"Wstaw ka\u017Cd\u0105 \u015Bcie\u017Ck\u0119 w nowej linii.",part5:"Mo\u017Cesz u\u017Cy\u0107 ci\u0105gu \u015Bcie\u017Cki lub wyra\u017Cenia regularnego.",part6:"Je\u015Bli ustawienie jest puste, \u017Cadne \u015Bcie\u017Cki nie s\u0105 wykluczane ze zbierania za\u0142\u0105cznik\xF3w."},name:"Wyklucz \u015Bcie\u017Cki ze zbierania za\u0142\u0105cznik\xF3w"},generatedAttachmentFileName:{description:{part1:"Zobacz dost\u0119pne",part2:"tokeny"},name:"Wygenerowana nazwa pliku za\u0142\u0105cznika"},includePaths:{description:{part1:"Uwzgl\u0119dnij notatki z nast\u0119puj\u0105cych \u015Bcie\u017Cek.",part2:"Wstaw ka\u017Cd\u0105 \u015Bcie\u017Ck\u0119 w nowej linii.",part3:"Mo\u017Cesz u\u017Cy\u0107 ci\u0105gu \u015Bcie\u017Cki lub wyra\u017Cenia regularnego.",part4:"Je\u015Bli ustawienie jest puste, wszystkie notatki s\u0105 uwzgl\u0119dniane."},name:"Uwzgl\u0119dnij \u015Bcie\u017Cki"},jpegQuality:{description:"Im mniejsza jako\u015B\u0107, tym wi\u0119kszy wsp\xF3\u0142czynnik kompresji.",name:"Jako\u015B\u0107 JPEG"},locationForNewAttachments:{description:{part1:"Zacznij od",part2:"aby u\u017Cy\u0107 \u015Bcie\u017Cki wzgl\u0119dnej.",part3:"Zobacz dost\u0119pne",part4:"tokeny",part5:"Foldery kropkowe, takie jak",part6:"nie s\u0105 zalecane, poniewa\u017C Obsidian ich nie \u015Bledzi. Mo\u017Cesz potrzebowa\u0107 u\u017Cy\u0107",part7:"wtyczki, aby nimi zarz\u0105dza\u0107."},name:"Lokalizacja nowych za\u0142\u0105cznik\xF3w"},markdownUrlFormat:{description:{part1:"Format adresu URL, kt\xF3ry zostanie wstawiony do Markdown.",part2:"Zobacz dost\u0119pne",part3:"tokeny",part4:"Pozostaw puste, aby u\u017Cy\u0107 domy\u015Blnego formatu."},name:"Format adresu URL w Markdown"},renameAttachmentsToLowerCase:"Przemianuj za\u0142\u0105czniki na ma\u0142e litery",renamedAttachmentFileName:{description:{part1:"Zobacz dost\u0119pne",part2:"tokeny"},name:"Przemianowana nazwa pliku za\u0142\u0105cznika"},resetToSampleCustomTokens:{message:"Czy na pewno chcesz zresetowa\u0107 niestandardowe tokeny do przyk\u0142adowych? Twoje zmiany zostan\u0105 utracone.",title:"Resetuj do przyk\u0142adowych niestandardowych token\xF3w"},shouldConvertPastedImagesToJpeg:{description:"Czy konwertowa\u0107 wklejone obrazy do JPEG. Dotyczy tylko sytuacji, gdy zawarto\u015B\u0107 obrazu PNG jest wklejana bezpo\u015Brednio ze schowka (zazwyczaj przy wklejaniu zrzut\xF3w ekranu).",name:"Czy konwertowa\u0107 wklejone obrazy do JPEG"},shouldDeleteOrphanAttachments:{description:"Je\u015Bli w\u0142\u0105czone, po usuni\u0119ciu notatki jej osierocone za\u0142\u0105czniki zostan\u0105 r\xF3wnie\u017C usuni\u0119te.",name:"Czy usuwa\u0107 osierocone za\u0142\u0105czniki"},shouldRenameAttachmentFiles:{description:{part1:"Je\u015Bli w\u0142\u0105czone, gdy notatka jest przemianowana lub przeniesiona, jej za\u0142\u0105czniki b\u0119d\u0105 przemianowane zgodnie z",part2:"ustawieniem."},name:"Czy przemianowa\u0107 pliki za\u0142\u0105cznik\xF3w"},shouldRenameAttachmentFolders:{description:"Czy przemianowywa\u0107 foldery za\u0142\u0105cznik\xF3w, gdy notatka jest przemianowana lub przeniesiona.",name:"Czy przemianowa\u0107 foldery za\u0142\u0105cznik\xF3w"},shouldRenameCollectedAttachments:{description:{part1:"Je\u015Bli w\u0142\u0105czone, za\u0142\u0105czniki przetworzone przez polecenia",part2:"Zbierz za\u0142\u0105czniki",part3:"zostan\u0105 przemianowane zgodnie z ustawieniem",part4:"."},name:"Czy przemianowa\u0107 zebrane za\u0142\u0105czniki"},specialCharacters:{description:{part1:"Znaki specjalne w nazwie folderu i pliku za\u0142\u0105cznika do zast\u0105pienia lub usuni\u0119cia.",part2:"Pozostaw puste, aby zachowa\u0107 znaki specjalne."},name:"Znaki specjalne"},specialCharactersReplacement:{description:{part1:"Ci\u0105g zast\u0119puj\u0105cy znaki specjalne w nazwie folderu i pliku za\u0142\u0105cznika.",part2:"Pozostaw puste, aby usuwa\u0107 znaki specjalne."},name:"Zamiana znak\xF3w specjalnych"},timeoutInSeconds:{description:{part1:"Limit czasu (w sekundach) dla wszystkich operacji.",part2:"Je\u015Bli ustawisz",part3:"na 0, limit czasu zostanie wy\u0142\u0105czony."},name:"Limit czasu w sekundach"},treatAsAttachmentExtensions:{description:{part1:"Traktuj pliki z tymi rozszerzeniami jako za\u0142\u0105czniki.",part2:"Domy\u015Blnie",part3:"i",part4:"po\u0142\u0105czone pliki nie s\u0105 traktowane jako za\u0142\u0105czniki i nie s\u0105 przenoszone wraz z notatk\u0105.",part5:"Mo\u017Cesz doda\u0107 niestandardowe rozszerzenia, np.",part6:", aby zast\u0105pi\u0107 to zachowanie."},name:"Traktuj jako rozszerzenia za\u0142\u0105cznik\xF3w"}},promptWithPreviewModal:{previewModal:{title:"Podgl\u0105d pliku za\u0142\u0105cznika '{{fullFileName}}'"},title:"Podaj warto\u015B\u0107 dla tokena promptu"},regularExpression:"/wyra\u017Cenie regularne/"};var hh={attachmentCollector:{confirm:{part1:"Voc\xEA deseja coletar anexos para todas as notas nas pastas de forma recursiva?",part2:"Esta opera\xE7\xE3o n\xE3o pode ser desfeita."},progressBar:{message:"Coletando anexos {{iterationStr}} - '{{noteFilePath}}'.",title:"Coletando anexos..."}},buttons:{copy:"Copiar",move:"Mover",previewAttachmentFile:"Visualizar arquivo anexo",skip:"Pular"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"Anexo",part2:"\xE9 referenciado por m\xFAltiplas notas."},heading:"Coletando anexo usado por m\xFAltiplas notas",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Usar a mesma a\xE7\xE3o para outros anexos problem\xE1ticos"},commands:{collectAttachmentsCurrentFolder:"Coletar anexos na pasta atual",collectAttachmentsCurrentNote:"Coletar anexos na nota atual",collectAttachmentsEntireVault:"Coletar anexos em todo o cofre"},menuItems:{collectAttachmentsInFile:"Coletar anexos no arquivo",collectAttachmentsInFiles:"Coletar anexos nos arquivos"},notice:{collectingAttachments:"Coletando anexos para '{{noteFilePath}}'",collectingAttachmentsCancelled:"Coleta de anexos cancelada. Veja o console para detalhes.",generatedAttachmentFileNameIsInvalid:{part1:`Nome do arquivo de anexo gerado '{{path}}' \xE9 inv\xE1lido.
|
|
532
|
+
{{validationMessage}}
|
|
533
|
+
Verifique sua`,part2:"configura\xE7\xE3o."},notePathIsIgnored:"Caminho da nota foi ignorado"},obsidianDevUtils:{buttons:{cancel:"Cancelar",ok:"OK"},dataview:{itemsPerPage:"Itens por p\xE1gina:",jumpToPage:"Ir para p\xE1gina:"},notices:{attachmentIsStillUsed:"Anexo {{attachmentPath}} ainda est\xE1 sendo usado por outras notas. N\xE3o ser\xE1 exclu\xEDdo.",unhandledError:"Ocorreu um erro n\xE3o tratado. Por favor, verifique o console para mais informa\xE7\xF5es."}},pluginSettings:{attachmentRenameMode:{all:{description:"todos os arquivos s\xE3o renomeados.",displayText:"Todos"},none:{description:"seus nomes s\xE3o preservados.",displayText:"Nenhum"},onlyPastedImages:{description:"apenas imagens coladas s\xE3o renomeadas. Aplica-se apenas quando o conte\xFAdo da imagem PNG \xE9 colado da \xE1rea de transfer\xEAncia diretamente. Tipicamente, para colar capturas de tela.",displayText:"Apenas imagens coladas"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"cancelar a coleta de anexos.",displayText:"Cancelar"},copy:{description:"copiar o anexo para o novo local.",displayText:"Copiar"},move:{description:"mover o anexo para o novo local.",displayText:"Mover"},prompt:{description:"solicitar ao usu\xE1rio que escolha a a\xE7\xE3o.",displayText:"Solicitar"},skip:{description:"pular o anexo e prosseguir para o pr\xF3ximo.",displayText:"Pular"}},defaultImageSizeDimension:{height:"Altura",width:"Largura"},emptyAttachmentFolderBehavior:{delete:{description:"excluir\xE1 a pasta de anexos vazia.",displayText:"Excluir"},deleteWithEmptyParents:{description:"excluir\xE1 a pasta de anexos vazia e suas pastas pai vazias.",displayText:"Excluir com pais vazios"},keep:{description:"manter\xE1 a pasta de anexos vazia.",displayText:"Manter"}}},pluginSettingsManager:{customToken:{codeComment:`// Tokens personalizados foram comentados pois precisam ser atualizados para o novo formato introduzido na vers\xE3o 9.0.0 do plugin.
|
|
534
|
+
// Consulte a documenta\xE7\xE3o (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) para mais informa\xE7\xF5es.`,deprecated:{part1:"Na vers\xE3o 9.0.0 do plugin, o formato de registro de token personalizado mudou. Por favor, atualize seus tokens adequadamente. Consulte a",part2:"documenta\xE7\xE3o",part3:"para mais informa\xE7\xF5es"}},legacyRenameAttachmentsToLowerCase:{part1:"Na vers\xE3o 9.0.0 do plugin, a",part2:"configura\xE7\xE3o est\xE1 obsoleta. Use o",part3:"formato em vez disso. Veja a",part4:"documenta\xE7\xE3o",part5:"para mais informa\xE7\xF5es"},markdownUrlFormat:{deprecated:{part1:"Voc\xEA tem um valor potencialmente incorreto definido para o",part2:"formato. Por favor, consulte a",part3:"documenta\xE7\xE3o",part4:"para mais informa\xE7\xF5es.",part5:"Esta mensagem n\xE3o ser\xE1 exibida novamente."}},specialCharacters:{part1:"Na vers\xE3o 9.16.0 do plugin, o",part2:"valor padr\xE3o da configura\xE7\xE3o foi alterado. Seu valor de configura\xE7\xE3o foi atualizado para o novo valor padr\xE3o."},validation:{defaultImageSizeMustBePercentageOrPixels:"O tamanho padr\xE3o da imagem deve estar em pixels ou porcentagem",invalidCustomTokensCode:"C\xF3digo de tokens personalizados inv\xE1lido",invalidRegularExpression:"Express\xE3o regular inv\xE1lida {{regExp}}",specialCharactersMustNotContainSlash:"Caracteres especiais n\xE3o devem conter /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"A substitui\xE7\xE3o de caracteres especiais n\xE3o deve conter caracteres de caminho de nome de arquivo inv\xE1lidos."},version:{part1:"Seu arquivo de configura\xE7\xF5es ",part2:"tem a vers\xE3o",part3:"que \xE9 mais nova que a vers\xE3o atual do plugin",part4:"O plugin pode n\xE3o funcionar como esperado. Por favor, atualize o plugin para a vers\xE3o mais recente ou certifique-se de que as configura\xE7\xF5es est\xE3o corretas."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"Ao anexar arquivos:"},name:"Modo de renomea\xE7\xE3o de anexos"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Quando o anexo coletado \xE9 usado por m\xFAltiplas notas:"},name:"Modo de coleta de anexos usados por m\xFAltiplas notas"},collectedAttachmentFileName:{description:{part1:"Veja os",part2:"tokens dispon\xEDveis"},name:"Nome do arquivo de anexo coletado"},customTokens:{description:{part1:"Tokens personalizados a serem usados.",part2:"Veja a",part3:"documenta\xE7\xE3o",part4:"para mais informa\xE7\xF5es.",part5:"\u26A0\uFE0F Tokens personalizados podem ser c\xF3digo JavaScript arbitr\xE1rio. Se mal escritos, podem causar perda de dados. Use por sua pr\xF3pria conta e risco."},name:"Tokens personalizados"},defaultImageSize:{description:{part1:"O tamanho padr\xE3o da imagem.",part2:"Pode ser especificado em pixels",part3:"ou como porcentagem do tamanho total da imagem",part4:"Deixe em branco para usar o tamanho original da imagem."},name:"Tamanho padr\xE3o da imagem"},duplicateNameSeparator:{description:{part1:"Ao colar/arrastar um arquivo com o mesmo nome de um arquivo existente, este separador ser\xE1 adicionado ao nome do arquivo.",part2:"Por exemplo, ao arrastar o arquivo",part3:", ele ser\xE1 renomeado para ",part4:", etc, recebendo o primeiro nome dispon\xEDvel."},name:"Separador de nome duplicado"},emptyAttachmentFolderBehavior:{description:{part1:"Quando a pasta de anexos ficar vazia:"},name:"Comportamento de pasta de anexos vazia"},excludePaths:{description:{part1:"Excluir notas dos seguintes caminhos.",part2:"Insira cada caminho em uma nova linha.",part3:"Voc\xEA pode usar string de caminho ou",part4:"Se a configura\xE7\xE3o estiver vazia, nenhuma nota ser\xE1 exclu\xEDda."},name:"Excluir caminhos"},excludePathsFromAttachmentCollecting:{description:{part1:"Excluir anexos dos seguintes caminhos quando o comando",part2:"Coletar anexos",part3:"for executado.",part4:"Insira cada caminho em uma nova linha.",part5:"Voc\xEA pode usar string de caminho ou",part6:"Se a configura\xE7\xE3o estiver vazia, nenhum caminho ser\xE1 exclu\xEDdo da coleta de anexos."},name:"Excluir caminhos da coleta de anexos"},generatedAttachmentFileName:{description:{part1:"Veja os",part2:"tokens dispon\xEDveis"},name:"Nome do arquivo de anexo gerado"},includePaths:{description:{part1:"Incluir notas dos seguintes caminhos.",part2:"Insira cada caminho em uma nova linha.",part3:"Voc\xEA pode usar string de caminho ou",part4:"Se a configura\xE7\xE3o estiver vazia, todas as notas ser\xE3o inclu\xEDdas."},name:"Incluir caminhos"},jpegQuality:{description:"Quanto menor a qualidade, maior a taxa de compress\xE3o.",name:"Qualidade JPEG"},locationForNewAttachments:{description:{part1:"Comece com",part2:"para usar o caminho relativo.",part3:"Veja os",part4:"tokens dispon\xEDveis",part5:"Pastas que come\xE7am com ponto como",part6:"n\xE3o s\xE3o recomendadas, pois o Obsidian n\xE3o as rastreia. Voc\xEA pode precisar usar um",part7:"Plugin para gerenci\xE1-las."},name:"Localiza\xE7\xE3o para novos anexos"},markdownUrlFormat:{description:{part1:"Formato da URL que ser\xE1 inserida no Markdown.",part2:"Veja os",part3:"tokens dispon\xEDveis",part4:"Deixe em branco para usar o formato padr\xE3o."},name:"Formato de URL no Markdown"},renameAttachmentsToLowerCase:"Renomear anexos para letras min\xFAsculas",renamedAttachmentFileName:{description:{part1:"Veja os",part2:"tokens dispon\xEDveis"},name:"Nome do arquivo de anexo renomeado"},resetToSampleCustomTokens:{message:"Tem certeza de que deseja redefinir os tokens personalizados para os tokens de exemplo? Suas altera\xE7\xF5es ser\xE3o perdidas.",title:"Redefinir para tokens de exemplo"},shouldConvertPastedImagesToJpeg:{description:"Se deve converter imagens coladas em JPEG. Aplica-se apenas quando o conte\xFAdo da imagem PNG \xE9 colado diretamente da \xE1rea de transfer\xEAncia. Tipicamente, para capturas de tela.",name:"Converter imagens coladas para JPEG"},shouldDeleteOrphanAttachments:{description:"Se ativado, ao excluir a nota, seus anexos \xF3rf\xE3os tamb\xE9m ser\xE3o exclu\xEDdos.",name:"Excluir anexos \xF3rf\xE3os"},shouldRenameAttachmentFiles:{description:{part1:"Se ativado, quando uma nota \xE9 renomeada ou movida, seus anexos ser\xE3o renomeados de acordo com a",part2:"configura\xE7\xE3o."},name:"Renomear arquivos de anexos"},shouldRenameAttachmentFolders:{description:"Se deve renomear pastas de anexos quando uma nota \xE9 renomeada ou movida.",name:"Renomear pastas de anexos"},shouldRenameCollectedAttachments:{description:{part1:"Se ativado, anexos processados via comando",part2:"Coletar anexos",part3:"ser\xE3o renomeados de acordo com a configura\xE7\xE3o",part4:"."},name:"Renomear anexos coletados"},specialCharacters:{description:{part1:"Caracteres especiais no nome da pasta ou do arquivo de anexos a serem substitu\xEDdos ou removidos.",part2:"Deixe em branco para preservar os caracteres especiais."},name:"Caracteres especiais"},specialCharactersReplacement:{description:{part1:"String de substitui\xE7\xE3o para caracteres especiais no nome da pasta ou do arquivo de anexos.",part2:"Deixe em branco para remover os caracteres especiais."},name:"Substitui\xE7\xE3o de caracteres especiais"},timeoutInSeconds:{description:{part1:"O tempo limite em segundos para todas as opera\xE7\xF5es.",part2:"Se",part3:"estiver definido, o tempo limite de execu\xE7\xE3o das opera\xE7\xF5es ser\xE1 desativado."},name:"Tempo limite em segundos"},treatAsAttachmentExtensions:{description:{part1:"Tratar arquivos com estas extens\xF5es como anexos.",part2:"Por padr\xE3o",part3:"e",part4:"arquivos vinculados n\xE3o s\xE3o tratados como anexos e n\xE3o s\xE3o movidos junto com a nota.",part5:"Voc\xEA pode adicionar extens\xF5es personalizadas, por exemplo,",part6:", para sobrescrever esse comportamento."},name:"Tratar como extens\xF5es de anexos"}},promptWithPreviewModal:{previewModal:{title:"Visualizar arquivo anexo '{{fullFileName}}'"},title:"Forne\xE7a um valor para o token de prompt"},regularExpression:"/express\xE3o regular/"};var gh={attachmentCollector:{confirm:{part1:"Voc\xEA deseja coletar anexos para todas as notas nas pastas de forma recursiva?",part2:"Esta opera\xE7\xE3o n\xE3o pode ser desfeita."},progressBar:{message:"Recolhendo anexos {{iterationStr}} - '{{noteFilePath}}'.",title:"Recolhendo anexos..."}},buttons:{copy:"Copiar",move:"Mover",previewAttachmentFile:"Pr\xE9-visualizar ficheiro anexo",skip:"Saltar"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"O anexo",part2:"\xE9 referenciado por m\xFAltiplas notas."},heading:"Recolhendo anexo usado por m\xFAltiplas notas",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Usar a mesma a\xE7\xE3o para outros anexos problem\xE1ticos"},commands:{collectAttachmentsCurrentFolder:"Recolher anexos na pasta atual",collectAttachmentsCurrentNote:"Recolher anexos na nota atual",collectAttachmentsEntireVault:"Recolher anexos em todo o cofre"},menuItems:{collectAttachmentsInFile:"Coletar anexos no arquivo",collectAttachmentsInFiles:"Coletar anexos nos arquivos"},notice:{collectingAttachments:"Recolhendo anexos para '{{noteFilePath}}'",collectingAttachmentsCancelled:"Recolha de anexos cancelada. Veja a consola para detalhes.",generatedAttachmentFileNameIsInvalid:{part1:`Nome de ficheiro de anexo gerado '{{path}}' \xE9 inv\xE1lido.
|
|
535
|
+
{{validationMessage}}
|
|
536
|
+
Verifique a sua`,part2:"configura\xE7\xE3o."},notePathIsIgnored:"Caminho da nota \xE9 ignorado"},obsidianDevUtils:{buttons:{cancel:"Cancelar",ok:"OK"},dataview:{itemsPerPage:"Itens por p\xE1gina:",jumpToPage:"Ir para p\xE1gina:"},notices:{attachmentIsStillUsed:"O anexo {{attachmentPath}} ainda est\xE1 a ser usado por outras notas. N\xE3o ser\xE1 eliminado.",unhandledError:"Ocorreu um erro n\xE3o tratado. Verifique a consola para mais informa\xE7\xF5es."}},pluginSettings:{attachmentRenameMode:{all:{description:"todos os ficheiros s\xE3o renomeados.",displayText:"Todos"},none:{description:"os seus nomes s\xE3o preservados.",displayText:"Nenhum"},onlyPastedImages:{description:"apenas imagens coladas s\xE3o renomeadas. Aplica-se apenas quando o conte\xFAdo da imagem PNG \xE9 colado diretamente da \xE1rea de transfer\xEAncia. Tipicamente, para colar capturas de ecr\xE3.",displayText:"Apenas imagens coladas"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"cancelar a recolha de anexos.",displayText:"Cancelar"},copy:{description:"copiar o anexo para a nova localiza\xE7\xE3o.",displayText:"Copiar"},move:{description:"mover o anexo para a nova localiza\xE7\xE3o.",displayText:"Mover"},prompt:{description:"solicitar ao utilizador que escolha a a\xE7\xE3o.",displayText:"Solicitar"},skip:{description:"saltar o anexo e prosseguir para o seguinte.",displayText:"Saltar"}},defaultImageSizeDimension:{height:"Altura",width:"Largura"},emptyAttachmentFolderBehavior:{delete:{description:"ir\xE1 eliminar a pasta de anexos vazia.",displayText:"Eliminar"},deleteWithEmptyParents:{description:"ir\xE1 eliminar a pasta de anexos vazia e as suas pastas-pai vazias.",displayText:"Eliminar com pais vazios"},keep:{description:"ir\xE1 manter a pasta de anexos vazia.",displayText:"Manter"}}},pluginSettingsManager:{customToken:{codeComment:`// Os tokens personalizados foram comentados pois necessitam de ser atualizados para o novo formato introduzido na vers\xE3o 9.0.0 do plugin.
|
|
537
|
+
// Consulte a documenta\xE7\xE3o (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) para mais informa\xE7\xF5es.`,deprecated:{part1:"Na vers\xE3o 9.0.0 do plugin, o formato de registo de tokens personalizados mudou. Por favor, atualize os seus tokens em conformidade. Consulte a",part2:"documenta\xE7\xE3o",part3:"para mais informa\xE7\xF5es"}},legacyRenameAttachmentsToLowerCase:{part1:"Na vers\xE3o 9.0.0 do plugin, a",part2:"configura\xE7\xE3o est\xE1 obsoleta. Use o",part3:"formato em alternativa. Veja a",part4:"documenta\xE7\xE3o",part5:"para mais informa\xE7\xF5es"},markdownUrlFormat:{deprecated:{part1:"Tem um valor potencialmente incorreto definido para o",part2:"formato. Consulte a",part3:"documenta\xE7\xE3o",part4:"para mais informa\xE7\xF5es.",part5:"Esta mensagem n\xE3o ser\xE1 exibida novamente."}},specialCharacters:{part1:"Na vers\xE3o 9.16.0 do plugin, o",part2:"valor padr\xE3o da configura\xE7\xE3o foi alterado. O seu valor foi atualizado para o novo padr\xE3o."},validation:{defaultImageSizeMustBePercentageOrPixels:"O tamanho predefinido da imagem deve estar em pixels ou percentagem",invalidCustomTokensCode:"C\xF3digo de tokens personalizados inv\xE1lido",invalidRegularExpression:"Express\xE3o regular inv\xE1lida {{regExp}}",specialCharactersMustNotContainSlash:"Caracteres especiais n\xE3o devem conter /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"A substitui\xE7\xE3o de caracteres especiais n\xE3o deve conter caracteres inv\xE1lidos de caminho de nome de ficheiro."},version:{part1:"O seu ficheiro de configura\xE7\xF5es ",part2:"tem a vers\xE3o",part3:"que \xE9 mais recente do que a vers\xE3o atual do plugin",part4:"O plugin pode n\xE3o funcionar como esperado. Atualize para a vers\xE3o mais recente do plugin ou verifique se as configura\xE7\xF5es est\xE3o corretas."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"Ao anexar ficheiros:"},name:"Modo de renomea\xE7\xE3o de anexos"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Quando o anexo recolhido \xE9 usado por m\xFAltiplas notas:"},name:"Modo de recolha de anexos usados por m\xFAltiplas notas"},collectedAttachmentFileName:{description:{part1:"Veja os",part2:"tokens dispon\xEDveis"},name:"Nome do ficheiro de anexo recolhido"},customTokens:{description:{part1:"Tokens personalizados a serem usados.",part2:"Veja a",part3:"documenta\xE7\xE3o",part4:"para mais informa\xE7\xF5es.",part5:"\u26A0\uFE0F Tokens personalizados podem conter c\xF3digo JavaScript arbitr\xE1rio. Se mal escritos, podem causar perda de dados. Use por sua conta e risco."},name:"Tokens personalizados"},defaultImageSize:{description:{part1:"O tamanho predefinido da imagem.",part2:"Pode ser especificado em pixels",part3:"ou como percentagem do tamanho total da imagem",part4:"Deixe em branco para usar o tamanho original da imagem."},name:"Tamanho predefinido da imagem"},duplicateNameSeparator:{description:{part1:"Ao colar/arrastar um ficheiro com o mesmo nome de um ficheiro existente, este separador ser\xE1 adicionado ao nome.",part2:"Por exemplo, ao arrastar o ficheiro",part3:", ele ser\xE1 renomeado para ",part4:", etc, recebendo o primeiro nome dispon\xEDvel."},name:"Separador de nomes duplicados"},emptyAttachmentFolderBehavior:{description:{part1:"Quando a pasta de anexos ficar vazia:"},name:"Comportamento da pasta de anexos vazia"},excludePaths:{description:{part1:"Excluir notas dos seguintes caminhos.",part2:"Introduza cada caminho numa nova linha.",part3:"Pode usar cadeias de caminho ou",part4:"Se a configura\xE7\xE3o ficar vazia, nenhuma nota ser\xE1 exclu\xEDda."},name:"Excluir caminhos"},excludePathsFromAttachmentCollecting:{description:{part1:"Excluir anexos dos seguintes caminhos quando o comando",part2:"Recolher anexos",part3:"for executado.",part4:"Introduza cada caminho numa nova linha.",part5:"Pode usar cadeias de caminho ou",part6:"Se a configura\xE7\xE3o ficar vazia, nenhum anexo ser\xE1 exclu\xEDdo da recolha."},name:"Excluir caminhos da recolha de anexos"},generatedAttachmentFileName:{description:{part1:"Veja os",part2:"tokens dispon\xEDveis"},name:"Nome do ficheiro de anexo gerado"},includePaths:{description:{part1:"Incluir notas dos seguintes caminhos.",part2:"Introduza cada caminho numa nova linha.",part3:"Pode usar cadeias de caminho ou",part4:"Se a configura\xE7\xE3o ficar vazia, todas as notas ser\xE3o inclu\xEDdas."},name:"Incluir caminhos"},jpegQuality:{description:"Quanto menor a qualidade, maior a taxa de compress\xE3o.",name:"Qualidade JPEG"},locationForNewAttachments:{description:{part1:"Comece com",part2:"para usar caminho relativo.",part3:"Veja os",part4:"tokens dispon\xEDveis",part5:"Pastas come\xE7adas por ponto como",part6:"n\xE3o s\xE3o recomendadas, pois o Obsidian n\xE3o as acompanha. Pode necessitar de usar um",part7:"Plugin para as gerir."},name:"Localiza\xE7\xE3o para novos anexos"},markdownUrlFormat:{description:{part1:"Formato da URL a ser inserida no Markdown.",part2:"Veja os",part3:"tokens dispon\xEDveis",part4:"Deixe em branco para usar o formato padr\xE3o."},name:"Formato de URL em Markdown"},renameAttachmentsToLowerCase:"Renomear anexos para min\xFAsculas",renamedAttachmentFileName:{description:{part1:"Veja os",part2:"tokens dispon\xEDveis"},name:"Nome do ficheiro de anexo renomeado"},resetToSampleCustomTokens:{message:"Tem a certeza de que deseja repor os tokens personalizados para os tokens de exemplo? As suas altera\xE7\xF5es ser\xE3o perdidas.",title:"Repor tokens personalizados para o exemplo"},shouldConvertPastedImagesToJpeg:{description:"Defina se as imagens coladas devem ser convertidas para JPEG. Aplica-se apenas quando o conte\xFAdo da imagem PNG \xE9 colado diretamente da \xE1rea de transfer\xEAncia. Tipicamente, \xFAtil para capturas de ecr\xE3.",name:"Converter imagens coladas para JPEG"},shouldDeleteOrphanAttachments:{description:"Se ativado, ao eliminar a nota, os seus anexos \xF3rf\xE3os ser\xE3o tamb\xE9m eliminados.",name:"Eliminar anexos \xF3rf\xE3os"},shouldRenameAttachmentFiles:{description:{part1:"Se ativado, quando uma nota \xE9 renomeada ou movida, os seus anexos ser\xE3o renomeados de acordo com a",part2:"configura\xE7\xE3o."},name:"Renomear ficheiros de anexos"},shouldRenameAttachmentFolders:{description:"Se as pastas de anexos devem ser renomeadas quando uma nota \xE9 renomeada ou movida.",name:"Renomear pastas de anexos"},shouldRenameCollectedAttachments:{description:{part1:"Se ativado, anexos processados atrav\xE9s do comando",part2:"Recolher anexos",part3:"ser\xE3o renomeados de acordo com a",part4:"configura\xE7\xE3o."},name:"Renomear anexos recolhidos"},specialCharacters:{description:{part1:"Caracteres especiais no nome da pasta/ficheiro de anexo a serem substitu\xEDdos ou removidos.",part2:"Deixe em branco para preservar os caracteres."},name:"Caracteres especiais"},specialCharactersReplacement:{description:{part1:"Sequ\xEAncia de substitui\xE7\xE3o para caracteres especiais no nome da pasta/ficheiro de anexo.",part2:"Deixe em branco para remover os caracteres especiais."},name:"Substitui\xE7\xE3o de caracteres especiais"},timeoutInSeconds:{description:{part1:"O tempo limite em segundos para todas as opera\xE7\xF5es.",part2:"Se",part3:"estiver definido, o tempo limite \xE9 desativado."},name:"Tempo limite em segundos"},treatAsAttachmentExtensions:{description:{part1:"Tratar ficheiros com estas extens\xF5es como anexos.",part2:"Por padr\xE3o",part3:"e",part4:"ficheiros ligados n\xE3o s\xE3o tratados como anexos e n\xE3o s\xE3o movidos com a nota.",part5:"Pode adicionar extens\xF5es personalizadas, por exemplo,",part6:", para sobrescrever este comportamento."},name:"Tratar como extens\xF5es de anexos"}},promptWithPreviewModal:{previewModal:{title:"Pr\xE9-visualizar ficheiro anexo '{{fullFileName}}'"},title:"Forne\xE7a um valor para o token de prompt"},regularExpression:"/express\xE3o regular/"};var fh={attachmentCollector:{confirm:{part1:"Dori\u021Bi s\u0103 colecta\u021Bi ata\u0219amentele pentru toate noti\u021Bele din foldere \xEEn mod recursiv?",part2:"Aceast\u0103 opera\u021Biune nu poate fi anulat\u0103."},progressBar:{message:"Colectez ata\u0219amente {{iterationStr}} - '{{noteFilePath}}'.",title:"Colectez ata\u0219amente..."}},buttons:{copy:"Copiaz\u0103",move:"Mut\u0103",previewAttachmentFile:"Previzualizeaz\u0103 fi\u0219ierul ata\u0219at",skip:"Sari peste"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"Ata\u0219amentul",part2:"este folosit de mai multe noti\u021Be."},heading:"Colectez ata\u0219amentul folosit de multiple noti\u021Be",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Folose\u0219te aceea\u0219i ac\u021Biune pentru alte ata\u0219amente problematice"},commands:{collectAttachmentsCurrentFolder:"Colecteaz\u0103 ata\u0219amentele din dosarul curent",collectAttachmentsCurrentNote:"Colecteaz\u0103 ata\u0219amentele din noti\u021Ba curent\u0103",collectAttachmentsEntireVault:"Colecteaz\u0103 ata\u0219amentele din \xEEntregul seif"},menuItems:{collectAttachmentsInFile:"Colecteaz\u0103 ata\u0219amentele \xEEn fi\u0219ier",collectAttachmentsInFiles:"Colecteaz\u0103 ata\u0219amentele \xEEn fi\u0219iere"},notice:{collectingAttachments:"Colectez ata\u0219amentele pentru '{{noteFilePath}}'",collectingAttachmentsCancelled:"Colectarea ata\u0219amentelor a fost anulat\u0103. Verific\u0103 consola pentru detalii.",generatedAttachmentFileNameIsInvalid:{part1:`Numele fi\u0219ierului ata\u0219at generat '{{path}}' este invalid.
|
|
538
|
+
{{validationMessage}}
|
|
539
|
+
Verific\u0103-\u021Bi`,part2:"set\u0103rile."},notePathIsIgnored:"Calea noti\u021Bei a fost ignorat\u0103"},obsidianDevUtils:{buttons:{cancel:"Anuleaz\u0103",ok:"OK"},dataview:{itemsPerPage:"Elemente pe pagin\u0103:",jumpToPage:"Sari la pagina:"},notices:{attachmentIsStillUsed:"Ata\u0219amentul {{attachmentPath}} este \xEEnc\u0103 folosit de alte noti\u021Be. Nu va fi \u0219ters.",unhandledError:"A ap\u0103rut o eroare neprev\u0103zut\u0103. Verific\u0103 consola pentru mai multe informa\u021Bii."}},pluginSettings:{attachmentRenameMode:{all:{description:"toate fi\u0219ierele sunt redenumite.",displayText:"Toate"},none:{description:"numele lor sunt p\u0103strate.",displayText:"Niciunul"},onlyPastedImages:{description:"doar imaginile lipite sunt redenumite. Se aplic\u0103 doar c\xE2nd con\u021Binutul imaginii PNG este lipit direct din clipboard. De obicei, pentru capturi de ecran.",displayText:"Doar imaginile lipite"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"anuleaz\u0103 colectarea ata\u0219amentelor.",displayText:"Anuleaz\u0103"},copy:{description:"copiaz\u0103 ata\u0219amentul \xEEn noua loca\u021Bie.",displayText:"Copiaz\u0103"},move:{description:"mut\u0103 ata\u0219amentul \xEEn noua loca\u021Bie.",displayText:"Mut\u0103"},prompt:{description:"cere utilizatorului s\u0103 aleag\u0103 ac\u021Biunea.",displayText:"Solicit\u0103"},skip:{description:"sari peste ata\u0219ament \u0219i continu\u0103 cu urm\u0103torul.",displayText:"Sari peste"}},defaultImageSizeDimension:{height:"\xCEn\u0103l\u021Bime",width:"L\u0103\u021Bime"},emptyAttachmentFolderBehavior:{delete:{description:"va \u0219terge dosarul de ata\u0219amente gol.",displayText:"\u0218terge"},deleteWithEmptyParents:{description:"va \u0219terge dosarul de ata\u0219amente gol \u0219i dosarele-p\u0103rinte goale.",displayText:"\u0218terge cu p\u0103rin\u021Bi goi"},keep:{description:"va p\u0103stra dosarul de ata\u0219amente gol.",displayText:"P\u0103streaz\u0103"}}},pluginSettingsManager:{customToken:{codeComment:`// Tokenurile personalizate au fost comentate deoarece trebuie actualizate la noul format introdus \xEEn versiunea 9.0.0 a pluginului.
|
|
540
|
+
// Consult\u0103 documenta\u021Bia (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) pentru mai multe informa\u021Bii.`,deprecated:{part1:"\xCEn versiunea 9.0.0 a pluginului, formatul de \xEEnregistrare a tokenurilor personalizate s-a schimbat. Actualizeaz\u0103 tokenurile corespunz\u0103tor. Consult\u0103",part2:"documenta\u021Bia",part3:"pentru mai multe informa\u021Bii"}},legacyRenameAttachmentsToLowerCase:{part1:"\xCEn versiunea 9.0.0 a pluginului, aceast\u0103",part2:"setare este depreciat\u0103. Folose\u0219te ",part3:"formatul \xEEn schimb. Vezi",part4:"documenta\u021Bia",part5:"pentru mai multe informa\u021Bii"},markdownUrlFormat:{deprecated:{part1:"Ave\u021Bi o valoare poten\u021Bial incorect\u0103 setat\u0103 pentru",part2:"format. Consulta\u021Bi",part3:"documenta\u021Bia",part4:"pentru mai multe informa\u021Bii.",part5:"Acest mesaj nu va mai fi afi\u0219at."}},specialCharacters:{part1:"\xCEn versiunea 9.16.0 a pluginului,",part2:"valoarea implicit\u0103 a set\u0103rii a fost schimbat\u0103. Valoarea voastr\u0103 a fost actualizat\u0103 la noua valoare implicit\u0103."},validation:{defaultImageSizeMustBePercentageOrPixels:"Dimensiunea implicit\u0103 a imaginii trebuie s\u0103 fie \xEEn pixeli sau procente",invalidCustomTokensCode:"Cod de token personalizat invalid",invalidRegularExpression:"Expresie regulat\u0103 invalid\u0103 {{regExp}}",specialCharactersMustNotContainSlash:"Caracterele speciale nu trebuie s\u0103 con\u021Bin\u0103 /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"\xCEnlocuirea caracterelor speciale nu trebuie s\u0103 con\u021Bin\u0103 caractere invalide de cale de fi\u0219ier."},version:{part1:"Fi\u0219ierul dvs. de set\u0103ri ",part2:"are versiunea",part3:"care este mai nou\u0103 dec\xE2t versiunea actual\u0103 a pluginului",part4:"Pluginul ar putea s\u0103 nu func\u021Bioneze corect. Actualiza\u021Bi pluginul la ultima versiune sau verifica\u021Bi dac\u0103 set\u0103rile sunt corecte."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"C\xE2nd ata\u0219a\u021Bi fi\u0219iere:"},name:"Mod de redenumire ata\u0219amente"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"C\xE2nd ata\u0219amentul colectat este folosit de mai multe noti\u021Be:"},name:"Mod colectare ata\u0219amente folosite de mai multe noti\u021Be"},collectedAttachmentFileName:{description:{part1:"Vezi",part2:"tokenuri disponibile"},name:"Nume fi\u0219ier ata\u0219ament colectat"},customTokens:{description:{part1:"Tokenuri personalizate de utilizat.",part2:"Vezi",part3:"documenta\u021Bia",part4:"pentru mai multe informa\u021Bii.",part5:"\u26A0\uFE0F Tokenurile personalizate pot con\u021Bine cod JavaScript arbitrar. Dac\u0103 sunt scrise gre\u0219it, pot cauza pierderi de date. Folosi\u021Bi-le pe propria r\u0103spundere."},name:"Tokenuri personalizate"},defaultImageSize:{description:{part1:"Dimensiunea implicit\u0103 a imaginii.",part2:"Poate fi specificat\u0103 \xEEn pixeli",part3:"sau ca procent din dimensiunea total\u0103 a imaginii",part4:"L\u0103sa\u021Bi gol pentru a folosi dimensiunea original\u0103 a imaginii."},name:"Dimensiune implicit\u0103 imagine"},duplicateNameSeparator:{description:{part1:"C\xE2nd lipi\u021Bi/tracta\u021Bi un fi\u0219ier cu acela\u0219i nume ca un fi\u0219ier existent, acest separator va fi ad\u0103ugat la nume.",part2:"De exemplu, c\xE2nd trage\u021Bi fi\u0219ierul",part3:", va fi redenumit \xEEn ",part4:", etc., folosind primul nume disponibil."},name:"Separator pentru nume duplicate"},emptyAttachmentFolderBehavior:{description:{part1:"C\xE2nd dosarul de ata\u0219amente devine gol:"},name:"Comportamentul dosarului de ata\u0219amente gol"},excludePaths:{description:{part1:"Exclude\u021Bi noti\u021Be din urm\u0103toarele c\u0103i.",part2:"Introduce\u021Bi fiecare cale pe o linie nou\u0103.",part3:"Pute\u021Bi folosi \u0219ir de cale sau",part4:"Dac\u0103 setarea este goal\u0103, nicio noti\u021B\u0103 nu este exclus\u0103."},name:"Excludere c\u0103i"},excludePathsFromAttachmentCollecting:{description:{part1:"Exclude\u021Bi ata\u0219amentele din urm\u0103toarele c\u0103i c\xE2nd se execut\u0103 comanda",part2:"Colecteaz\u0103 ata\u0219amente",part3:".",part4:"Introduce\u021Bi fiecare cale pe o linie nou\u0103.",part5:"Pute\u021Bi folosi \u0219ir de cale sau",part6:"Dac\u0103 setarea este goal\u0103, nu se exclud c\u0103i din colectarea ata\u0219amentelor."},name:"Excludere c\u0103i pentru colectarea ata\u0219amentelor"},generatedAttachmentFileName:{description:{part1:"Vezi",part2:"tokenuri disponibile"},name:"Nume fi\u0219ier ata\u0219ament generat"},includePaths:{description:{part1:"Include\u021Bi noti\u021Be din urm\u0103toarele c\u0103i.",part2:"Introduce\u021Bi fiecare cale pe o linie nou\u0103.",part3:"Pute\u021Bi folosi \u0219ir de cale sau",part4:"Dac\u0103 setarea este goal\u0103, toate noti\u021Bele sunt incluse."},name:"Include\u021Bi c\u0103i"},jpegQuality:{description:"Cu c\xE2t calitatea este mai mic\u0103, cu at\xE2t rata de compresie este mai mare.",name:"Calitate JPEG"},locationForNewAttachments:{description:{part1:"\xCEncepe\u021Bi cu",part2:"pentru a folosi cale relativ\u0103.",part3:"Vezi",part4:"tokenurile disponibile",part5:"Dosare cu punct precum",part6:"nu sunt recomandate, deoarece Obsidian nu le urm\u0103re\u0219te. Este posibil s\u0103 fie nevoie s\u0103 folosi\u021Bi un",part7:"plugin pentru a le gestiona."},name:"Loca\u021Bia pentru ata\u0219amente noi"},markdownUrlFormat:{description:{part1:"Formatul URL-ului care va fi inserat \xEEn Markdown.",part2:"Vezi",part3:"tokenurile disponibile",part4:"L\u0103sa\u021Bi necompletat pentru a folosi formatul implicit."},name:"Format URL Markdown"},renameAttachmentsToLowerCase:"Redenume\u0219te ata\u0219amentele cu litere mici",renamedAttachmentFileName:{description:{part1:"Vezi",part2:"tokenuri disponibile"},name:"Nume fi\u0219ier ata\u0219ament redenumit"},resetToSampleCustomTokens:{message:"Sigur dori\u021Bi s\u0103 reseta\u021Bi tokenurile personalizate la tokenurile exemplu? Modific\u0103rile dvs. vor fi pierdute.",title:"Reseteaz\u0103 la tokenuri exemplu"},shouldConvertPastedImagesToJpeg:{description:"Stabile\u0219te dac\u0103 imaginile lipite s\u0103 fie convertite \xEEn JPEG. Se aplic\u0103 numai c\xE2nd con\u021Binutul unei imagini PNG este lipit direct din clipboard. De obicei, pentru capturi de ecran.",name:"Converti\u021Bi imaginile lipite \xEEn JPEG"},shouldDeleteOrphanAttachments:{description:"Dac\u0103 este activat, atunci c\xE2nd noti\u021Ba este \u0219tears\u0103, ata\u0219amentele orfane vor fi \u0219i ele \u0219terse.",name:"\u0218terge ata\u0219amentele orfane"},shouldRenameAttachmentFiles:{description:{part1:"Dac\u0103 este activat, atunci c\xE2nd o noti\u021B\u0103 este redenumit\u0103 sau mutat\u0103, ata\u0219amentele vor fi redenumite conform",part2:"set\u0103rii."},name:"Redenume\u0219te fi\u0219ierele ata\u0219ament"},shouldRenameAttachmentFolders:{description:"Stabile\u0219te dac\u0103 dosarele de ata\u0219amente vor fi redenumite c\xE2nd o noti\u021B\u0103 este redenumit\u0103 sau mutat\u0103.",name:"Redenume\u0219te dosarele de ata\u0219ament"},shouldRenameCollectedAttachments:{description:{part1:"Dac\u0103 este activat, ata\u0219amentele procesate prin comenzile",part2:"Colecteaz\u0103 ata\u0219amente",part3:"vor fi redenumite conform",part4:"set\u0103rii."},name:"Redenume\u0219te ata\u0219amentele colectate"},specialCharacters:{description:{part1:"Caractere speciale \xEEn numele dosarului sau fi\u0219ierului ata\u0219ament care vor fi \xEEnlocuite sau eliminate.",part2:"L\u0103sa\u021Bi gol pentru a le p\u0103stra."},name:"Caractere speciale"},specialCharactersReplacement:{description:{part1:"\u0218ir de \xEEnlocuire pentru caractere speciale \xEEn numele dosarului sau fi\u0219ierului ata\u0219ament.",part2:"L\u0103sa\u021Bi gol pentru a elimina caracterele speciale."},name:"\xCEnlocuire caractere speciale"},timeoutInSeconds:{description:{part1:"Timpul limit\u0103 \xEEn secunde pentru toate opera\u021Biile.",part2:"Dac\u0103",part3:"este setat, timpul limit\u0103 va fi dezactivat."},name:"Timp limit\u0103 (secunde)"},treatAsAttachmentExtensions:{description:{part1:"Trata\u021Bi fi\u0219ierele cu aceste extensii ca ata\u0219amente.",part2:"Implicit",part3:"\u0219i",part4:"fi\u0219ierele legate nu sunt considerate ata\u0219amente \u0219i nu sunt mutate odat\u0103 cu noti\u021Ba.",part5:"Pute\u021Bi ad\u0103uga extensii personalizate, de ex.",part6:", pentru a \xEEnlocui acest comportament."},name:"Trata\u021Bi ca extensii de ata\u0219amente"}},promptWithPreviewModal:{previewModal:{title:"Previzualizeaz\u0103 fi\u0219ierul ata\u0219at '{{fullFileName}}'"},title:"Furniza\u021Bi o valoare pentru tokenul de prompt"},regularExpression:"/expresie regulat\u0103/"};var kh={attachmentCollector:{confirm:{part1:"\u0421\u043E\u0431\u0440\u0430\u0442\u044C \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F \u0434\u043B\u044F \u0432\u0441\u0435\u0445 \u0437\u0430\u043C\u0435\u0442\u043E\u043A \u0432 \u043F\u0430\u043F\u043A\u0430\u0445 (\u0440\u0435\u043A\u0443\u0440\u0441\u0438\u0432\u043D\u043E)?",part2:"\u042D\u0442\u0443 \u043E\u043F\u0435\u0440\u0430\u0446\u0438\u044E \u043D\u0435\u043B\u044C\u0437\u044F \u043E\u0442\u043C\u0435\u043D\u0438\u0442\u044C."},progressBar:{message:"\u0421\u0431\u043E\u0440 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439 {{iterationStr}} - '{{noteFilePath}}'.",title:"\u0421\u0431\u043E\u0440 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439..."}},buttons:{copy:"\u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C",move:"\u041F\u0435\u0440\u0435\u043C\u0435\u0441\u0442\u0438\u0442\u044C",previewAttachmentFile:"\u041F\u0440\u0435\u0434\u043F\u0440\u043E\u0441\u043C\u043E\u0442\u0440 \u0444\u0430\u0439\u043B\u0430 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F",skip:"\u041F\u0440\u043E\u043F\u0443\u0441\u0442\u0438\u0442\u044C"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"\u0412\u043B\u043E\u0436\u0435\u043D\u0438\u0435",part2:"\u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F \u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u0438\u043C\u0438 \u0437\u0430\u043C\u0435\u0442\u043A\u0430\u043C\u0438."},heading:"\u0421\u0431\u043E\u0440 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F, \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u043C\u043E\u0433\u043E \u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u0438\u043C\u0438 \u0437\u0430\u043C\u0435\u0442\u043A\u0430\u043C\u0438",shouldUseSameActionForOtherProblematicAttachmentsToggle:"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0442\u043E \u0436\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0434\u043B\u044F \u0434\u0440\u0443\u0433\u0438\u0445 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u043D\u044B\u0445 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439"},commands:{collectAttachmentsCurrentFolder:"\u0421\u043E\u0431\u0440\u0430\u0442\u044C \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F \u0432 \u0442\u0435\u043A\u0443\u0449\u0435\u0439 \u043F\u0430\u043F\u043A\u0435",collectAttachmentsCurrentNote:"\u0421\u043E\u0431\u0440\u0430\u0442\u044C \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F \u0432 \u0442\u0435\u043A\u0443\u0449\u0435\u0439 \u0437\u0430\u043C\u0435\u0442\u043A\u0435",collectAttachmentsEntireVault:"\u0421\u043E\u0431\u0440\u0430\u0442\u044C \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F \u0432\u043E \u0432\u0441\u0451\u043C \u0445\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435"},menuItems:{collectAttachmentsInFile:"\u0421\u043E\u0431\u0440\u0430\u0442\u044C \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F \u0432 \u0444\u0430\u0439\u043B\u0435",collectAttachmentsInFiles:"\u0421\u043E\u0431\u0440\u0430\u0442\u044C \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F \u0432 \u0444\u0430\u0439\u043B\u0430\u0445"},notice:{collectingAttachments:"\u0421\u0431\u043E\u0440 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439 \u0434\u043B\u044F '{{noteFilePath}}'",collectingAttachmentsCancelled:"\u0421\u0431\u043E\u0440 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439 \u043E\u0442\u043C\u0435\u043D\u0451\u043D. \u0421\u043C. \u043A\u043E\u043D\u0441\u043E\u043B\u044C \u0434\u043B\u044F \u043F\u043E\u0434\u0440\u043E\u0431\u043D\u043E\u0441\u0442\u0435\u0439.",generatedAttachmentFileNameIsInvalid:{part1:`\u0421\u0433\u0435\u043D\u0435\u0440\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0435 \u0438\u043C\u044F \u0444\u0430\u0439\u043B\u0430 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F '{{path}}' \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E.
|
|
541
|
+
{{validationMessage}}
|
|
542
|
+
\u041F\u0440\u043E\u0432\u0435\u0440\u044C\u0442\u0435 \u0432\u0430\u0448\u0438`,part2:"\u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438."},notePathIsIgnored:"\u041F\u0443\u0442\u044C \u0437\u0430\u043C\u0435\u0442\u043A\u0438 \u0438\u0433\u043D\u043E\u0440\u0438\u0440\u0443\u0435\u0442\u0441\u044F"},obsidianDevUtils:{buttons:{cancel:"\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C",ok:"\u041E\u041A"},dataview:{itemsPerPage:"\u042D\u043B\u0435\u043C\u0435\u043D\u0442\u043E\u0432 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443:",jumpToPage:"\u041F\u0435\u0440\u0435\u0439\u0442\u0438 \u043A \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0435:"},notices:{attachmentIsStillUsed:"\u0412\u043B\u043E\u0436\u0435\u043D\u0438\u0435 {{attachmentPath}} \u0432\u0441\u0451 \u0435\u0449\u0451 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F \u0434\u0440\u0443\u0433\u0438\u043C\u0438 \u0437\u0430\u043C\u0435\u0442\u043A\u0430\u043C\u0438. \u041E\u043D\u043E \u043D\u0435 \u0431\u0443\u0434\u0435\u0442 \u0443\u0434\u0430\u043B\u0435\u043D\u043E.",unhandledError:"\u041F\u0440\u043E\u0438\u0437\u043E\u0448\u043B\u0430 \u043D\u0435\u043E\u0431\u0440\u0430\u0431\u043E\u0442\u0430\u043D\u043D\u0430\u044F \u043E\u0448\u0438\u0431\u043A\u0430. \u041F\u0440\u043E\u0432\u0435\u0440\u044C\u0442\u0435 \u043A\u043E\u043D\u0441\u043E\u043B\u044C \u0434\u043B\u044F \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438."}},pluginSettings:{attachmentRenameMode:{all:{description:"\u0432\u0441\u0435 \u0444\u0430\u0439\u043B\u044B \u043F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u044B\u0432\u0430\u044E\u0442\u0441\u044F.",displayText:"\u0412\u0441\u0435"},none:{description:"\u0438\u0445 \u0438\u043C\u0435\u043D\u0430 \u0441\u043E\u0445\u0440\u0430\u043D\u044F\u044E\u0442\u0441\u044F.",displayText:"\u041D\u0438\u0447\u0435\u0433\u043E"},onlyPastedImages:{description:"\u0442\u043E\u043B\u044C\u043A\u043E \u0432\u0441\u0442\u0430\u0432\u043B\u0435\u043D\u043D\u044B\u0435 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F \u043F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u044B\u0432\u0430\u044E\u0442\u0441\u044F. \u041F\u0440\u0438\u043C\u0435\u043D\u044F\u0435\u0442\u0441\u044F \u0442\u043E\u043B\u044C\u043A\u043E \u043A\u043E\u0433\u0434\u0430 \u0441\u043E\u0434\u0435\u0440\u0436\u0438\u043C\u043E\u0435 PNG-\u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F \u0432\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u0442\u0441\u044F \u043D\u0430\u043F\u0440\u044F\u043C\u0443\u044E \u0438\u0437 \u0431\u0443\u0444\u0435\u0440\u0430 \u043E\u0431\u043C\u0435\u043D\u0430. \u041E\u0431\u044B\u0447\u043D\u043E \u0434\u043B\u044F \u0432\u0441\u0442\u0430\u0432\u043A\u0438 \u0441\u043A\u0440\u0438\u043D\u0448\u043E\u0442\u043E\u0432.",displayText:"\u0422\u043E\u043B\u044C\u043A\u043E \u0432\u0441\u0442\u0430\u0432\u043B\u0435\u043D\u043D\u044B\u0435 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"\u043E\u0442\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u0431\u043E\u0440 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439.",displayText:"\u041E\u0442\u043C\u0435\u043D\u0430"},copy:{description:"\u0441\u043A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0435 \u0432 \u043D\u043E\u0432\u043E\u0435 \u043C\u0435\u0441\u0442\u043E.",displayText:"\u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C"},move:{description:"\u043F\u0435\u0440\u0435\u043C\u0435\u0441\u0442\u0438\u0442\u044C \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0435 \u0432 \u043D\u043E\u0432\u043E\u0435 \u043C\u0435\u0441\u0442\u043E.",displayText:"\u041F\u0435\u0440\u0435\u043C\u0435\u0441\u0442\u0438\u0442\u044C"},prompt:{description:"\u0437\u0430\u043F\u0440\u043E\u0441\u0438\u0442\u044C \u0443 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F \u0432\u044B\u0431\u043E\u0440 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044F.",displayText:"\u0417\u0430\u043F\u0440\u043E\u0441\u0438\u0442\u044C"},skip:{description:"\u043F\u0440\u043E\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0435 \u0438 \u043F\u0435\u0440\u0435\u0439\u0442\u0438 \u043A \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0435\u043C\u0443.",displayText:"\u041F\u0440\u043E\u043F\u0443\u0441\u0442\u0438\u0442\u044C"}},defaultImageSizeDimension:{height:"\u0412\u044B\u0441\u043E\u0442\u0430",width:"\u0428\u0438\u0440\u0438\u043D\u0430"},emptyAttachmentFolderBehavior:{delete:{description:"\u0443\u0434\u0430\u043B\u0438\u0442 \u043F\u0443\u0441\u0442\u0443\u044E \u043F\u0430\u043F\u043A\u0443 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439.",displayText:"\u0423\u0434\u0430\u043B\u0438\u0442\u044C"},deleteWithEmptyParents:{description:"\u0443\u0434\u0430\u043B\u0438\u0442 \u043F\u0443\u0441\u0442\u0443\u044E \u043F\u0430\u043F\u043A\u0443 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439 \u0438 \u0435\u0451 \u043F\u0443\u0441\u0442\u044B\u0435 \u0440\u043E\u0434\u0438\u0442\u0435\u043B\u044C\u0441\u043A\u0438\u0435 \u043F\u0430\u043F\u043A\u0438.",displayText:"\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0441 \u043F\u0443\u0441\u0442\u044B\u043C\u0438 \u0440\u043E\u0434\u0438\u0442\u0435\u043B\u044F\u043C\u0438"},keep:{description:"\u0441\u043E\u0445\u0440\u0430\u043D\u0438\u0442 \u043F\u0443\u0441\u0442\u0443\u044E \u043F\u0430\u043F\u043A\u0443 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439.",displayText:"\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C"}}},pluginSettingsManager:{customToken:{codeComment:`// \u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u0438\u0435 \u0442\u043E\u043A\u0435\u043D\u044B \u0431\u044B\u043B\u0438 \u0437\u0430\u043A\u043E\u043C\u043C\u0435\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u044B, \u0442\u0430\u043A \u043A\u0430\u043A \u0438\u0445 \u043D\u0443\u0436\u043D\u043E \u043E\u0431\u043D\u043E\u0432\u0438\u0442\u044C \u0434\u043E \u043D\u043E\u0432\u043E\u0433\u043E \u0444\u043E\u0440\u043C\u0430\u0442\u0430, \u0432\u0432\u0435\u0434\u0451\u043D\u043D\u043E\u0433\u043E \u0432 \u0432\u0435\u0440\u0441\u0438\u0438 9.0.0 \u043F\u043B\u0430\u0433\u0438\u043D\u0430.
|
|
543
|
+
// \u041E\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044C \u043A \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0438\u0438 (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) \u0434\u043B\u044F \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438.`,deprecated:{part1:"\u0412 \u0432\u0435\u0440\u0441\u0438\u0438 9.0.0 \u043F\u043B\u0430\u0433\u0438\u043D\u0430 \u0444\u043E\u0440\u043C\u0430\u0442 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u0438\u0445 \u0442\u043E\u043A\u0435\u043D\u043E\u0432 \u0438\u0437\u043C\u0435\u043D\u0438\u043B\u0441\u044F. \u041E\u0431\u043D\u043E\u0432\u0438\u0442\u0435 \u0432\u0430\u0448\u0438 \u0442\u043E\u043A\u0435\u043D\u044B \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u043C \u043E\u0431\u0440\u0430\u0437\u043E\u043C. \u0421\u043C.",part2:"\u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0438\u044E",part3:"\u0434\u043B\u044F \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438"}},legacyRenameAttachmentsToLowerCase:{part1:"\u0412 \u0432\u0435\u0440\u0441\u0438\u0438 9.0.0 \u043F\u043B\u0430\u0433\u0438\u043D\u0430 \u044D\u0442\u0430",part2:"\u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 \u0443\u0441\u0442\u0430\u0440\u0435\u043B\u0430. \u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435",part3:"\u0444\u043E\u0440\u043C\u0430\u0442 \u0432\u043C\u0435\u0441\u0442\u043E \u043D\u0435\u0451. \u0421\u043C.",part4:"\u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0438\u044E",part5:"\u0434\u043B\u044F \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438"},markdownUrlFormat:{deprecated:{part1:"\u0423 \u0432\u0430\u0441 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043E \u043F\u043E\u0442\u0435\u043D\u0446\u0438\u0430\u043B\u044C\u043D\u043E \u043D\u0435\u043A\u043E\u0440\u0440\u0435\u043A\u0442\u043D\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u0434\u043B\u044F",part2:"\u0444\u043E\u0440\u043C\u0430\u0442\u0430. \u0421\u043C.",part3:"\u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0438\u044E",part4:"\u0434\u043B\u044F \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438.",part5:"\u042D\u0442\u043E \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u0435 \u0431\u043E\u043B\u044C\u0448\u0435 \u043D\u0435 \u0431\u0443\u0434\u0435\u0442 \u043F\u043E\u043A\u0430\u0437\u0430\u043D\u043E."}},specialCharacters:{part1:"\u0412 \u0432\u0435\u0440\u0441\u0438\u0438 9.16.0 \u043F\u043B\u0430\u0433\u0438\u043D\u0430",part2:"\u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E \u0431\u044B\u043B\u043E \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u043E. \u0412\u0430\u0448\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u043E \u043D\u0430 \u043D\u043E\u0432\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E."},validation:{defaultImageSizeMustBePercentageOrPixels:"\u0420\u0430\u0437\u043C\u0435\u0440 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E \u0434\u043E\u043B\u0436\u0435\u043D \u0431\u044B\u0442\u044C \u0432 \u043F\u0438\u043A\u0441\u0435\u043B\u044F\u0445 \u0438\u043B\u0438 \u043F\u0440\u043E\u0446\u0435\u043D\u0442\u0430\u0445",invalidCustomTokensCode:"\u041D\u0435\u0432\u0435\u0440\u043D\u044B\u0439 \u043A\u043E\u0434 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u0438\u0445 \u0442\u043E\u043A\u0435\u043D\u043E\u0432",invalidRegularExpression:"\u041D\u0435\u0432\u0435\u0440\u043D\u043E\u0435 \u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u043E\u0435 \u0432\u044B\u0440\u0430\u0436\u0435\u043D\u0438\u0435 {{regExp}}",specialCharactersMustNotContainSlash:"\u0421\u043F\u0435\u0446\u0438\u0430\u043B\u044C\u043D\u044B\u0435 \u0441\u0438\u043C\u0432\u043E\u043B\u044B \u043D\u0435 \u0434\u043E\u043B\u0436\u043D\u044B \u0441\u043E\u0434\u0435\u0440\u0436\u0430\u0442\u044C /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"\u0417\u0430\u043C\u0435\u043D\u0430 \u0441\u043F\u0435\u0446\u0438\u0430\u043B\u044C\u043D\u044B\u0445 \u0441\u0438\u043C\u0432\u043E\u043B\u043E\u0432 \u043D\u0435 \u0434\u043E\u043B\u0436\u043D\u0430 \u0441\u043E\u0434\u0435\u0440\u0436\u0430\u0442\u044C \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0435 \u0441\u0438\u043C\u0432\u043E\u043B\u044B \u0434\u043B\u044F \u043F\u0443\u0442\u0438 \u0444\u0430\u0439\u043B\u0430."},version:{part1:"\u0412\u0430\u0448 \u0444\u0430\u0439\u043B \u043D\u0430\u0441\u0442\u0440\u043E\u0435\u043A ",part2:"\u0438\u043C\u0435\u0435\u0442 \u0432\u0435\u0440\u0441\u0438\u044E",part3:"\u043A\u043E\u0442\u043E\u0440\u0430\u044F \u043D\u043E\u0432\u0435\u0435 \u0442\u0435\u043A\u0443\u0449\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 \u043F\u043B\u0430\u0433\u0438\u043D\u0430",part4:"\u041F\u043B\u0430\u0433\u0438\u043D \u043C\u043E\u0436\u0435\u0442 \u0440\u0430\u0431\u043E\u0442\u0430\u0442\u044C \u043D\u0435\u043A\u043E\u0440\u0440\u0435\u043A\u0442\u043D\u043E. \u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043E\u0431\u043D\u043E\u0432\u0438\u0442\u0435 \u043F\u043B\u0430\u0433\u0438\u043D \u0434\u043E \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 \u0438\u043B\u0438 \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044C, \u0447\u0442\u043E \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u044B\u0435."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"\u041F\u0440\u0438 \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0438\u0438 \u0444\u0430\u0439\u043B\u043E\u0432:"},name:"\u0420\u0435\u0436\u0438\u043C \u043F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u0438\u044F \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"\u041A\u043E\u0433\u0434\u0430 \u0441\u043E\u0431\u0438\u0440\u0430\u0435\u043C\u043E\u0435 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F \u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u0438\u043C\u0438 \u0437\u0430\u043C\u0435\u0442\u043A\u0430\u043C\u0438:"},name:"\u0420\u0435\u0436\u0438\u043C \u0441\u0431\u043E\u0440\u0430 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439, \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u043C\u044B\u0445 \u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u0438\u043C\u0438 \u0437\u0430\u043C\u0435\u0442\u043A\u0430\u043C\u0438"},collectedAttachmentFileName:{description:{part1:"\u0421\u043C.",part2:"\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u0442\u043E\u043A\u0435\u043D\u044B"},name:"\u0421\u043E\u0431\u0440\u0430\u043D\u043D\u043E\u0435 \u0438\u043C\u044F \u0444\u0430\u0439\u043B\u0430 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F"},customTokens:{description:{part1:"\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u0438\u0435 \u0442\u043E\u043A\u0435\u043D\u044B \u0434\u043B\u044F \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u044F.",part2:"\u0421\u043C.",part3:"\u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0438\u044E",part4:"\u0434\u043B\u044F \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438.",part5:"\u26A0\uFE0F \u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u0438\u0435 \u0442\u043E\u043A\u0435\u043D\u044B \u043C\u043E\u0433\u0443\u0442 \u0441\u043E\u0434\u0435\u0440\u0436\u0430\u0442\u044C \u043F\u0440\u043E\u0438\u0437\u0432\u043E\u043B\u044C\u043D\u044B\u0439 JavaScript-\u043A\u043E\u0434. \u0415\u0441\u043B\u0438 \u043D\u0430\u043F\u0438\u0441\u0430\u043D\u044B \u043D\u0435\u0432\u0435\u0440\u043D\u043E, \u044D\u0442\u043E \u043C\u043E\u0436\u0435\u0442 \u043F\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u043A \u043F\u043E\u0442\u0435\u0440\u0435 \u0434\u0430\u043D\u043D\u044B\u0445. \u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 \u043D\u0430 \u0441\u0432\u043E\u0439 \u0440\u0438\u0441\u043A."},name:"\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u0438\u0435 \u0442\u043E\u043A\u0435\u043D\u044B"},defaultImageSize:{description:{part1:"\u0420\u0430\u0437\u043C\u0435\u0440 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E.",part2:"\u041C\u043E\u0436\u043D\u043E \u0443\u043A\u0430\u0437\u0430\u0442\u044C \u0432 \u043F\u0438\u043A\u0441\u0435\u043B\u044F\u0445",part3:"\u0438\u043B\u0438 \u0432 \u043F\u0440\u043E\u0446\u0435\u043D\u0442\u0430\u0445 \u043E\u0442 \u043F\u043E\u043B\u043D\u043E\u0433\u043E \u0440\u0430\u0437\u043C\u0435\u0440\u0430 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F",part4:"\u041E\u0441\u0442\u0430\u0432\u044C\u0442\u0435 \u043F\u0443\u0441\u0442\u044B\u043C, \u0447\u0442\u043E\u0431\u044B \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u043E\u0440\u0438\u0433\u0438\u043D\u0430\u043B\u044C\u043D\u044B\u0439 \u0440\u0430\u0437\u043C\u0435\u0440 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F."},name:"\u0420\u0430\u0437\u043C\u0435\u0440 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E"},duplicateNameSeparator:{description:{part1:"\u0415\u0441\u043B\u0438 \u0432\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u0442\u0441\u044F/\u043F\u0435\u0440\u0435\u0442\u0430\u0441\u043A\u0438\u0432\u0430\u0435\u0442\u0441\u044F \u0444\u0430\u0439\u043B \u0441 \u0442\u0435\u043C \u0436\u0435 \u0438\u043C\u0435\u043D\u0435\u043C, \u0447\u0442\u043E \u0438 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0439, \u044D\u0442\u043E\u0442 \u0440\u0430\u0437\u0434\u0435\u043B\u0438\u0442\u0435\u043B\u044C \u0431\u0443\u0434\u0435\u0442 \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u043A \u0438\u043C\u0435\u043D\u0438.",part2:"\u041D\u0430\u043F\u0440\u0438\u043C\u0435\u0440, \u043F\u0440\u0438 \u043F\u0435\u0440\u0435\u0442\u0430\u0441\u043A\u0438\u0432\u0430\u043D\u0438\u0438 \u0444\u0430\u0439\u043B\u0430",part3:", \u043E\u043D \u0431\u0443\u0434\u0435\u0442 \u043F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D \u0432 ",part4:", \u0438 \u0442.\u0434., \u043F\u043E\u043A\u0430 \u043D\u0435 \u0431\u0443\u0434\u0435\u0442 \u043D\u0430\u0439\u0434\u0435\u043D\u043E \u0441\u0432\u043E\u0431\u043E\u0434\u043D\u043E\u0435 \u0438\u043C\u044F."},name:"\u0420\u0430\u0437\u0434\u0435\u043B\u0438\u0442\u0435\u043B\u044C \u0434\u043B\u044F \u0434\u0443\u0431\u043B\u0438\u043A\u0430\u0442\u043E\u0432 \u0438\u043C\u0451\u043D"},emptyAttachmentFolderBehavior:{description:{part1:"\u041A\u043E\u0433\u0434\u0430 \u043F\u0430\u043F\u043A\u0430 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439 \u043F\u0443\u0441\u0442\u0430\u044F:"},name:"\u041F\u043E\u0432\u0435\u0434\u0435\u043D\u0438\u0435 \u043F\u0443\u0441\u0442\u043E\u0439 \u043F\u0430\u043F\u043A\u0438 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439"},excludePaths:{description:{part1:"\u0418\u0441\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0437\u0430\u043C\u0435\u0442\u043A\u0438 \u0438\u0437 \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0445 \u043F\u0443\u0442\u0435\u0439.",part2:"\u0412\u0441\u0442\u0430\u0432\u044C\u0442\u0435 \u043A\u0430\u0436\u0434\u044B\u0439 \u043F\u0443\u0442\u044C \u043D\u0430 \u043D\u043E\u0432\u043E\u0439 \u0441\u0442\u0440\u043E\u043A\u0435.",part3:"\u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u043F\u0443\u0442\u0438 \u0438\u043B\u0438",part4:"\u0415\u0441\u043B\u0438 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 \u043F\u0443\u0441\u0442\u0430, \u0437\u0430\u043C\u0435\u0442\u043A\u0438 \u043D\u0435 \u0438\u0441\u043A\u043B\u044E\u0447\u0430\u044E\u0442\u0441\u044F."},name:"\u0418\u0441\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u043F\u0443\u0442\u0438"},excludePathsFromAttachmentCollecting:{description:{part1:"\u0418\u0441\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F \u0438\u0437 \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0445 \u043F\u0443\u0442\u0435\u0439 \u043F\u0440\u0438 \u0432\u044B\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u0438 \u043A\u043E\u043C\u0430\u043D\u0434\u044B",part2:"\u0421\u043E\u0431\u0440\u0430\u0442\u044C \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F",part3:".",part4:"\u0412\u0441\u0442\u0430\u0432\u044C\u0442\u0435 \u043A\u0430\u0436\u0434\u044B\u0439 \u043F\u0443\u0442\u044C \u043D\u0430 \u043D\u043E\u0432\u043E\u0439 \u0441\u0442\u0440\u043E\u043A\u0435.",part5:"\u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u043F\u0443\u0442\u0438 \u0438\u043B\u0438",part6:"\u0415\u0441\u043B\u0438 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 \u043F\u0443\u0441\u0442\u0430, \u0438\u0437 \u0441\u0431\u043E\u0440\u0430 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439 \u043D\u0435 \u0438\u0441\u043A\u043B\u044E\u0447\u0430\u0435\u0442\u0441\u044F \u043D\u0438 \u043E\u0434\u0438\u043D \u043F\u0443\u0442\u044C."},name:"\u0418\u0441\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u043F\u0443\u0442\u0438 \u0438\u0437 \u0441\u0431\u043E\u0440\u0430 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439"},generatedAttachmentFileName:{description:{part1:"\u0421\u043C.",part2:"\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u0442\u043E\u043A\u0435\u043D\u044B"},name:"\u0421\u0433\u0435\u043D\u0435\u0440\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0435 \u0438\u043C\u044F \u0444\u0430\u0439\u043B\u0430 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F"},includePaths:{description:{part1:"\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0437\u0430\u043C\u0435\u0442\u043A\u0438 \u0438\u0437 \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0445 \u043F\u0443\u0442\u0435\u0439.",part2:"\u0412\u0441\u0442\u0430\u0432\u044C\u0442\u0435 \u043A\u0430\u0436\u0434\u044B\u0439 \u043F\u0443\u0442\u044C \u043D\u0430 \u043D\u043E\u0432\u043E\u0439 \u0441\u0442\u0440\u043E\u043A\u0435.",part3:"\u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u043F\u0443\u0442\u0438 \u0438\u043B\u0438",part4:"\u0415\u0441\u043B\u0438 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 \u043F\u0443\u0441\u0442\u0430, \u0432\u0441\u0435 \u0437\u0430\u043C\u0435\u0442\u043A\u0438 \u0431\u0443\u0434\u0443\u0442 \u0432\u043A\u043B\u044E\u0447\u0435\u043D\u044B."},name:"\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u043F\u0443\u0442\u0438"},jpegQuality:{description:"\u0427\u0435\u043C \u043D\u0438\u0436\u0435 \u043A\u0430\u0447\u0435\u0441\u0442\u0432\u043E, \u0442\u0435\u043C \u0432\u044B\u0448\u0435 \u0441\u0442\u0435\u043F\u0435\u043D\u044C \u0441\u0436\u0430\u0442\u0438\u044F.",name:"\u041A\u0430\u0447\u0435\u0441\u0442\u0432\u043E JPEG"},locationForNewAttachments:{description:{part1:"\u041D\u0430\u0447\u0438\u043D\u0430\u0439\u0442\u0435 \u0441",part2:"\u0447\u0442\u043E\u0431\u044B \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u043E\u0442\u043D\u043E\u0441\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0439 \u043F\u0443\u0442\u044C.",part3:"\u0421\u043C.",part4:"\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u0442\u043E\u043A\u0435\u043D\u044B",part5:"\u041F\u0430\u043F\u043A\u0438 \u0441 \u0442\u043E\u0447\u043A\u043E\u0439, \u0442\u0430\u043A\u0438\u0435 \u043A\u0430\u043A",part6:"\u043D\u0435 \u0440\u0435\u043A\u043E\u043C\u0435\u043D\u0434\u0443\u044E\u0442\u0441\u044F, \u0442\u0430\u043A \u043A\u0430\u043A Obsidian \u0438\u0445 \u043D\u0435 \u043E\u0442\u0441\u043B\u0435\u0436\u0438\u0432\u0430\u0435\u0442. \u0412\u043E\u0437\u043C\u043E\u0436\u043D\u043E, \u0432\u0430\u043C \u043F\u043E\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044F \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C",part7:"\u043F\u043B\u0430\u0433\u0438\u043D \u0434\u043B\u044F \u0438\u0445 \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u044F."},name:"\u0420\u0430\u0441\u043F\u043E\u043B\u043E\u0436\u0435\u043D\u0438\u0435 \u0434\u043B\u044F \u043D\u043E\u0432\u044B\u0445 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439"},markdownUrlFormat:{description:{part1:"\u0424\u043E\u0440\u043C\u0430\u0442 URL, \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u0431\u0443\u0434\u0435\u0442 \u0432\u0441\u0442\u0430\u0432\u043B\u0435\u043D \u0432 Markdown.",part2:"\u0421\u043C.",part3:"\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u0442\u043E\u043A\u0435\u043D\u044B",part4:"\u041E\u0441\u0442\u0430\u0432\u044C\u0442\u0435 \u043F\u0443\u0441\u0442\u044B\u043C \u0434\u043B\u044F \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u044F \u0444\u043E\u0440\u043C\u0430\u0442\u0430 \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E."},name:"\u0424\u043E\u0440\u043C\u0430\u0442 URL \u0434\u043B\u044F Markdown"},renameAttachmentsToLowerCase:"\u041F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u044B\u0432\u0430\u0442\u044C \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F \u0441\u0442\u0440\u043E\u0447\u043D\u044B\u043C\u0438 \u0431\u0443\u043A\u0432\u0430\u043C\u0438",renamedAttachmentFileName:{description:{part1:"\u0421\u043C.",part2:"\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u0442\u043E\u043A\u0435\u043D\u044B"},name:"\u041F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u043D\u043E\u0435 \u0438\u043C\u044F \u0444\u0430\u0439\u043B\u0430 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F"},resetToSampleCustomTokens:{message:"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0441\u0431\u0440\u043E\u0441\u0438\u0442\u044C \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u0438\u0435 \u0442\u043E\u043A\u0435\u043D\u044B \u0434\u043E \u043E\u0431\u0440\u0430\u0437\u0446\u043E\u0432? \u0412\u0441\u0435 \u0432\u0430\u0448\u0438 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0431\u0443\u0434\u0443\u0442 \u043F\u043E\u0442\u0435\u0440\u044F\u043D\u044B.",title:"\u0421\u0431\u0440\u043E\u0441\u0438\u0442\u044C \u043A \u043E\u0431\u0440\u0430\u0437\u0446\u0430\u043C \u0442\u043E\u043A\u0435\u043D\u043E\u0432"},shouldConvertPastedImagesToJpeg:{description:"\u041E\u043F\u0440\u0435\u0434\u0435\u043B\u044F\u0435\u0442, \u043D\u0443\u0436\u043D\u043E \u043B\u0438 \u043A\u043E\u043D\u0432\u0435\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0432\u0441\u0442\u0430\u0432\u043B\u0435\u043D\u043D\u044B\u0435 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F \u0432 JPEG. \u041F\u0440\u0438\u043C\u0435\u043D\u044F\u0435\u0442\u0441\u044F \u0442\u043E\u043B\u044C\u043A\u043E \u0435\u0441\u043B\u0438 PNG \u0432\u0441\u0442\u0430\u0432\u043B\u0435\u043D \u043D\u0430\u043F\u0440\u044F\u043C\u0443\u044E \u0438\u0437 \u0431\u0443\u0444\u0435\u0440\u0430 \u043E\u0431\u043C\u0435\u043D\u0430. \u041E\u0431\u044B\u0447\u043D\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F \u0434\u043B\u044F \u0441\u043A\u0440\u0438\u043D\u0448\u043E\u0442\u043E\u0432.",name:"\u041A\u043E\u043D\u0432\u0435\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0432\u0441\u0442\u0430\u0432\u043B\u0435\u043D\u043D\u044B\u0435 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F \u0432 JPEG"},shouldDeleteOrphanAttachments:{description:"\u0415\u0441\u043B\u0438 \u0432\u043A\u043B\u044E\u0447\u0435\u043D\u043E, \u043F\u0440\u0438 \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u0438 \u0437\u0430\u043C\u0435\u0442\u043A\u0438 \u0435\u0451 \u043E\u0441\u0438\u0440\u043E\u0442\u0435\u0432\u0448\u0438\u0435 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F \u0442\u0430\u043A\u0436\u0435 \u0431\u0443\u0434\u0443\u0442 \u0443\u0434\u0430\u043B\u0435\u043D\u044B.",name:"\u0423\u0434\u0430\u043B\u044F\u0442\u044C \u043E\u0441\u0438\u0440\u043E\u0442\u0435\u0432\u0448\u0438\u0435 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F"},shouldRenameAttachmentFiles:{description:{part1:"\u0415\u0441\u043B\u0438 \u0432\u043A\u043B\u044E\u0447\u0435\u043D\u043E, \u043F\u0440\u0438 \u043F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u0438\u0438 \u0438\u043B\u0438 \u043F\u0435\u0440\u0435\u043C\u0435\u0449\u0435\u043D\u0438\u0438 \u0437\u0430\u043C\u0435\u0442\u043A\u0438 \u0435\u0451 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F \u0431\u0443\u0434\u0443\u0442 \u043F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u044B \u0441\u043E\u0433\u043B\u0430\u0441\u043D\u043E",part2:"\u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0435."},name:"\u041F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u044B\u0432\u0430\u0442\u044C \u0444\u0430\u0439\u043B\u044B \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439"},shouldRenameAttachmentFolders:{description:"\u041E\u043F\u0440\u0435\u0434\u0435\u043B\u044F\u0435\u0442, \u043D\u0443\u0436\u043D\u043E \u043B\u0438 \u043F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u044B\u0432\u0430\u0442\u044C \u043F\u0430\u043F\u043A\u0438 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439 \u043F\u0440\u0438 \u043F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u0438\u0438 \u0438\u043B\u0438 \u043F\u0435\u0440\u0435\u043C\u0435\u0449\u0435\u043D\u0438\u0438 \u0437\u0430\u043C\u0435\u0442\u043A\u0438.",name:"\u041F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u044B\u0432\u0430\u0442\u044C \u043F\u0430\u043F\u043A\u0438 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439"},shouldRenameCollectedAttachments:{description:{part1:"\u0415\u0441\u043B\u0438 \u0432\u043A\u043B\u044E\u0447\u0435\u043D\u043E, \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F, \u0441\u043E\u0431\u0440\u0430\u043D\u043D\u044B\u0435 \u0447\u0435\u0440\u0435\u0437 \u043A\u043E\u043C\u0430\u043D\u0434\u0443",part2:"\u0421\u043E\u0431\u0440\u0430\u0442\u044C \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F",part3:"\u0431\u0443\u0434\u0443\u0442 \u043F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u044B \u0432 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441",part4:"\u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u043E\u0439."},name:"\u041F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u044B\u0432\u0430\u0442\u044C \u0441\u043E\u0431\u0440\u0430\u043D\u043D\u044B\u0435 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F"},specialCharacters:{description:{part1:"\u0421\u043F\u0435\u0446\u0438\u0430\u043B\u044C\u043D\u044B\u0435 \u0441\u0438\u043C\u0432\u043E\u043B\u044B \u0432 \u0438\u043C\u0435\u043D\u0438 \u043F\u0430\u043F\u043A\u0438 \u0438\u043B\u0438 \u0444\u0430\u0439\u043B\u0430 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F, \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u043C\u0435\u043D\u0435\u043D\u044B \u0438\u043B\u0438 \u0443\u0434\u0430\u043B\u0435\u043D\u044B.",part2:"\u041E\u0441\u0442\u0430\u0432\u044C\u0442\u0435 \u043F\u0443\u0441\u0442\u044B\u043C, \u0447\u0442\u043E\u0431\u044B \u0441\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C \u0441\u043F\u0435\u0446\u0438\u0430\u043B\u044C\u043D\u044B\u0435 \u0441\u0438\u043C\u0432\u043E\u043B\u044B."},name:"\u0421\u043F\u0435\u0446\u0438\u0430\u043B\u044C\u043D\u044B\u0435 \u0441\u0438\u043C\u0432\u043E\u043B\u044B"},specialCharactersReplacement:{description:{part1:"\u0421\u0442\u0440\u043E\u043A\u0430 \u0434\u043B\u044F \u0437\u0430\u043C\u0435\u043D\u044B \u0441\u043F\u0435\u0446\u0438\u0430\u043B\u044C\u043D\u044B\u0445 \u0441\u0438\u043C\u0432\u043E\u043B\u043E\u0432 \u0432 \u0438\u043C\u0435\u043D\u0438 \u043F\u0430\u043F\u043A\u0438 \u0438\u043B\u0438 \u0444\u0430\u0439\u043B\u0430 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F.",part2:"\u041E\u0441\u0442\u0430\u0432\u044C\u0442\u0435 \u043F\u0443\u0441\u0442\u044B\u043C, \u0447\u0442\u043E\u0431\u044B \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u0441\u043F\u0435\u0446\u0438\u0430\u043B\u044C\u043D\u044B\u0435 \u0441\u0438\u043C\u0432\u043E\u043B\u044B."},name:"\u0417\u0430\u043C\u0435\u043D\u0430 \u0441\u043F\u0435\u0446\u0438\u0430\u043B\u044C\u043D\u044B\u0445 \u0441\u0438\u043C\u0432\u043E\u043B\u043E\u0432"},timeoutInSeconds:{description:{part1:"\u0422\u0430\u0439\u043C\u0430\u0443\u0442 \u0432 \u0441\u0435\u043A\u0443\u043D\u0434\u0430\u0445 \u0434\u043B\u044F \u0432\u0441\u0435\u0445 \u043E\u043F\u0435\u0440\u0430\u0446\u0438\u0439.",part2:"\u0415\u0441\u043B\u0438",part3:"\u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D, \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u0435 \u043F\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438 \u043E\u0442\u043A\u043B\u044E\u0447\u0430\u0435\u0442\u0441\u044F."},name:"\u0422\u0430\u0439\u043C\u0430\u0443\u0442 \u0432 \u0441\u0435\u043A\u0443\u043D\u0434\u0430\u0445"},treatAsAttachmentExtensions:{description:{part1:"\u0420\u0430\u0441\u0441\u043C\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044C \u0444\u0430\u0439\u043B\u044B \u0441 \u044D\u0442\u0438\u043C\u0438 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u0438\u044F\u043C\u0438 \u043A\u0430\u043A \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F.",part2:"\u041F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E",part3:"\u0438",part4:"\u0441\u0432\u044F\u0437\u0430\u043D\u043D\u044B\u0435 \u0444\u0430\u0439\u043B\u044B \u043D\u0435 \u0441\u0447\u0438\u0442\u0430\u044E\u0442\u0441\u044F \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F\u043C\u0438 \u0438 \u043D\u0435 \u043F\u0435\u0440\u0435\u043C\u0435\u0449\u0430\u044E\u0442\u0441\u044F \u0432\u043C\u0435\u0441\u0442\u0435 \u0441 \u0437\u0430\u043C\u0435\u0442\u043A\u043E\u0439.",part5:"\u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0434\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0441\u0432\u043E\u0438 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u0438\u044F, \u043D\u0430\u043F\u0440\u0438\u043C\u0435\u0440,",part6:", \u0447\u0442\u043E\u0431\u044B \u0438\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u044D\u0442\u043E \u043F\u043E\u0432\u0435\u0434\u0435\u043D\u0438\u0435."},name:"\u0420\u0430\u0441\u0441\u043C\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044C \u043A\u0430\u043A \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u0438\u044F \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u0439"}},promptWithPreviewModal:{previewModal:{title:"\u041F\u0440\u0435\u0434\u043F\u0440\u043E\u0441\u043C\u043E\u0442\u0440 \u0444\u0430\u0439\u043B\u0430 \u0432\u043B\u043E\u0436\u0435\u043D\u0438\u044F '{{fullFileName}}'"},title:"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u0434\u043B\u044F \u0442\u043E\u043A\u0435\u043D\u0430 \u0437\u0430\u043F\u0440\u043E\u0441\u0430"},regularExpression:"/\u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u043E\u0435 \u0432\u044B\u0440\u0430\u0436\u0435\u043D\u0438\u0435/"};var vh={attachmentCollector:{confirm:{part1:"D\xEBshiron t\xEB mbledh\xEBsh bashk\xEBngjitjet p\xEBr t\xEB gjitha sh\xEBnimet n\xEB dosje n\xEB m\xEBnyr\xEB rekursive?",part2:"Ky veprim nuk mund t\xEB zhb\xEBhet."},progressBar:{message:"Duke mbledhur bashk\xEBngjitjet {{iterationStr}} - '{{noteFilePath}}'.",title:"Duke mbledhur bashk\xEBngjitjet..."}},buttons:{copy:"Kopjo",move:"L\xEBviz",previewAttachmentFile:"Parashiko skedarin e bashk\xEBngjitur",skip:"Kalo"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"Bashk\xEBngjitja",part2:"\xEBsht\xEB e referuar nga disa sh\xEBnime."},heading:"Duke mbledhur bashk\xEBngjitjen e p\xEBrdorur nga disa sh\xEBnime",shouldUseSameActionForOtherProblematicAttachmentsToggle:"P\xEBrdor t\xEB nj\xEBjtin veprim p\xEBr bashk\xEBngjitje t\xEB tjera problematike"},commands:{collectAttachmentsCurrentFolder:"Mblidh bashk\xEBngjitjet n\xEB dosjen aktuale",collectAttachmentsCurrentNote:"Mblidh bashk\xEBngjitjet n\xEB sh\xEBnimin aktual",collectAttachmentsEntireVault:"Mblidh bashk\xEBngjitjet n\xEB gjith\xEB depozit\xEBn"},menuItems:{collectAttachmentsInFile:"Mblidh bashk\xEBngjitjet n\xEB skedar",collectAttachmentsInFiles:"Mblidh bashk\xEBngjitjet n\xEB skedar\xEB"},notice:{collectingAttachments:"Duke mbledhur bashk\xEBngjitjet p\xEBr '{{noteFilePath}}'",collectingAttachmentsCancelled:"Mbledhja e bashk\xEBngjitjeve u anulua. Kontrolloni konsol\xEBn p\xEBr detaje.",generatedAttachmentFileNameIsInvalid:{part1:`Emri i gjeneruar i skedarit t\xEB bashk\xEBngjitur '{{path}}' \xEBsht\xEB i pavlefsh\xEBm.
|
|
544
|
+
{{validationMessage}}
|
|
545
|
+
Kontrolloni`,part2:"cil\xEBsimet tuaja."},notePathIsIgnored:"Shtegu i sh\xEBnimit \xEBsht\xEB injoruar"},obsidianDevUtils:{buttons:{cancel:"Anulo",ok:"OK"},dataview:{itemsPerPage:"Artikuj p\xEBr faqe:",jumpToPage:"Shko te faqja:"},notices:{attachmentIsStillUsed:"Bashk\xEBngjitja {{attachmentPath}} ende po p\xEBrdoret nga sh\xEBnime t\xEB tjera. Nuk do t\xEB fshihet.",unhandledError:"Ndodhi nj\xEB gabim i papritur. Ju lutemi kontrolloni konsol\xEBn p\xEBr m\xEB shum\xEB informacione."}},pluginSettings:{attachmentRenameMode:{all:{description:"t\xEB gjith\xEB skedar\xEBt riem\xEBrtohen.",displayText:"T\xEB gjitha"},none:{description:"emrat e tyre ruhen.",displayText:"Asnj\xEB"},onlyPastedImages:{description:"vet\xEBm imazhet e ngjitura riem\xEBrtohen. Aplikohet vet\xEBm kur nj\xEB imazh PNG ngjitet drejtp\xEBrdrejt nga clipboard. Zakonisht p\xEBrdoret p\xEBr pamjet e ekranit.",displayText:"Vet\xEBm imazhet e ngjitura"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"anulo mbledhjen e bashk\xEBngjitjeve.",displayText:"Anulo"},copy:{description:"kopjo bashk\xEBngjitjen n\xEB vendndodhjen e re.",displayText:"Kopjo"},move:{description:"l\xEBviz bashk\xEBngjitjen n\xEB vendndodhjen e re.",displayText:"L\xEBviz"},prompt:{description:"k\xEBrko nga p\xEBrdoruesi t\xEB zgjedh\xEB veprimin.",displayText:"K\xEBrko"},skip:{description:"anashkalo bashk\xEBngjitjen dhe vazhdo me tjetr\xEBn.",displayText:"Anashkalo"}},defaultImageSizeDimension:{height:"Gjat\xEBsia",width:"Gjer\xEBsia"},emptyAttachmentFolderBehavior:{delete:{description:"do t\xEB fshij\xEB dosjen e zbraz\xEBt t\xEB bashk\xEBngjitjeve.",displayText:"Fshi"},deleteWithEmptyParents:{description:"do t\xEB fshij\xEB dosjen e zbraz\xEBt t\xEB bashk\xEBngjitjeve dhe dosjet prind t\xEB zbraz\xEBta.",displayText:"Fshi me prind\xEBr t\xEB zbraz\xEBt"},keep:{description:"do t\xEB mbaj\xEB dosjen e zbraz\xEBt t\xEB bashk\xEBngjitjeve.",displayText:"Mbaj"}}},pluginSettingsManager:{customToken:{codeComment:`// Tokenat e personalizuar u komentuan pasi duhet t\xEB p\xEBrdit\xEBsohen me formatin e ri t\xEB prezantuar n\xEB versionin 9.0.0 t\xEB shtes\xEBs.
|
|
546
|
+
// Referojuni dokumentacionit (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens) p\xEBr m\xEB shum\xEB informacione.`,deprecated:{part1:"N\xEB versionin 9.0.0 t\xEB shtes\xEBs formati i regjistrimit t\xEB tokenave t\xEB personalizuar ndryshoi. Ju lutemi p\xEBrdit\xEBsoni tokenat tuaj si\xE7 duhet. Referojuni",part2:"dokumentacionit",part3:"p\xEBr m\xEB shum\xEB informacione"}},legacyRenameAttachmentsToLowerCase:{part1:"N\xEB versionin 9.0.0 t\xEB shtes\xEBs, kjo",part2:"cil\xEBsim \xEBsht\xEB i vjetruar. P\xEBrdorni",part3:"formatin n\xEB vend t\xEB saj. Shihni",part4:"dokumentacionin",part5:"p\xEBr m\xEB shum\xEB informacione"},markdownUrlFormat:{deprecated:{part1:"Keni nj\xEB vler\xEB potencialisht t\xEB gabuar t\xEB vendosur p\xEBr",part2:"formatin. Ju lutemi referojuni",part3:"dokumentacionit",part4:"p\xEBr m\xEB shum\xEB informacione.",part5:"Ky mesazh nuk do t\xEB shfaqet m\xEB."}},specialCharacters:{part1:"N\xEB versionin 9.16.0 t\xEB shtes\xEBs,",part2:"vlera e parazgjedhur e cil\xEBsimit u ndryshua. Vlera juaj u p\xEBrdit\xEBsua me at\xEB t\xEB re."},validation:{defaultImageSizeMustBePercentageOrPixels:"Madh\xEBsia e paracaktuar e imazhit duhet t\xEB jet\xEB n\xEB pika ose n\xEB p\xEBrqindje",invalidCustomTokensCode:"Kod i pavlefsh\xEBm i tokenave t\xEB personalizuar",invalidRegularExpression:"Shprehje e rregullt e pavlefshme {{regExp}}",specialCharactersMustNotContainSlash:"Karaketret special\xEB nuk duhet t\xEB p\xEBrmbajn\xEB /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"Z\xEBvend\xEBsimi i karaktereve special\xEB nuk duhet t\xEB p\xEBrmbaj\xEB karaktere t\xEB pavlefsh\xEBm p\xEBr shtegun e skedarit."},version:{part1:"Skedari juaj i cil\xEBsimeve ",part2:"ka versionin",part3:"q\xEB \xEBsht\xEB m\xEB i ri se versioni aktual i shtes\xEBs",part4:"Shtesa mund t\xEB mos funksionoj\xEB si\xE7 pritet. P\xEBrdit\xEBsoni shtes\xEBn n\xEB versionin m\xEB t\xEB fundit ose sigurohuni q\xEB cil\xEBsimet t\xEB jen\xEB t\xEB sakta."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"Kur bashk\xEBngjitni skedar\xEB:"},name:"M\xEBnyra e riem\xEBrtimit t\xEB bashk\xEBngjitjeve"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Kur bashk\xEBngjitja e mbledhur p\xEBrdoret nga disa sh\xEBnime:"},name:"M\xEBnyra e mbledhjes s\xEB bashk\xEBngjitjeve t\xEB p\xEBrdorura nga disa sh\xEBnime"},collectedAttachmentFileName:{description:{part1:"Shih",part2:"tokenat e disponuesh\xEBm"},name:"Emri i skedarit t\xEB bashk\xEBngjitur t\xEB mbledhur"},customTokens:{description:{part1:"Tokena t\xEB personalizuar q\xEB do t\xEB p\xEBrdoren.",part2:"Shih",part3:"dokumentacionin",part4:"p\xEBr m\xEB shum\xEB informacione.",part5:"\u26A0\uFE0F Tokenat e personalizuar mund t\xEB p\xEBrmbajn\xEB kod arbitrar JavaScript. N\xEBse shkruhen gabim, mund t\xEB shkaktojn\xEB humbje t\xEB t\xEB dh\xEBnave. P\xEBrdoreni me kujdes."},name:"Tokena t\xEB personalizuar"},defaultImageSize:{description:{part1:"Madh\xEBsia e paracaktuar e imazhit.",part2:"Mund t\xEB specifikohet n\xEB pika",part3:"ose n\xEB p\xEBrqindje t\xEB madh\xEBsis\xEB s\xEB plot\xEB t\xEB imazhit",part4:"L\xEBreni bosh p\xEBr t\xEB p\xEBrdorur madh\xEBsin\xEB origjinale t\xEB imazhit."},name:"Madh\xEBsia e paracaktuar e imazhit"},duplicateNameSeparator:{description:{part1:"Kur ngjisni ose t\xEBrhiqni nj\xEB skedar me t\xEB nj\xEBjtin em\xEBr si nj\xEB ekzistues, ky ndar\xEBs do t\xEB shtohet n\xEB em\xEBr.",part2:"P.sh., kur t\xEBrhiqni skedarin",part3:", do t\xEB riem\xEBrtohet n\xEB ",part4:", etj., duke marr\xEB emrin e par\xEB t\xEB lir\xEB."},name:"Ndar\xEBs p\xEBr emra t\xEB dyfisht\xEB"},emptyAttachmentFolderBehavior:{description:{part1:"Kur dosja e bashk\xEBngjitjeve b\xEBhet e zbraz\xEBt:"},name:"Sjellja e dosjes s\xEB zbraz\xEBt t\xEB bashk\xEBngjitjeve"},excludePaths:{description:{part1:"P\xEBrjashto sh\xEBnime nga shtegu n\xEB vijim.",part2:"Futni \xE7do shteg n\xEB nj\xEB rresht t\xEB ri.",part3:"Mund t\xEB p\xEBrdorni vargun e shtegut ose",part4:"N\xEBse cil\xEBsimi \xEBsht\xEB bosh, asnj\xEB sh\xEBnim nuk p\xEBrjashtohet."},name:"P\xEBrjashto shtigjet"},excludePathsFromAttachmentCollecting:{description:{part1:"P\xEBrjashto bashk\xEBngjitjet nga k\xEBto shtigje kur komanda",part2:"Mblidh bashk\xEBngjitjet",part3:"ekzekutohet.",part4:"Futni \xE7do shteg n\xEB nj\xEB rresht t\xEB ri.",part5:"Mund t\xEB p\xEBrdorni vargun e shtegut ose",part6:"N\xEBse cil\xEBsimi \xEBsht\xEB bosh, asnj\xEB shteg nuk p\xEBrjashtohet nga mbledhja."},name:"P\xEBrjashto shtigje nga mbledhja e bashk\xEBngjitjeve"},generatedAttachmentFileName:{description:{part1:"Shih",part2:"tokenat e disponuesh\xEBm"},name:"Emri i gjeneruar i skedarit t\xEB bashk\xEBngjitur"},includePaths:{description:{part1:"P\xEBrfshi sh\xEBnime nga shtigjet e m\xEBposhtme.",part2:"Futni \xE7do shteg n\xEB nj\xEB rresht t\xEB ri.",part3:"Mund t\xEB p\xEBrdorni vargun e shtegut ose",part4:"N\xEBse cil\xEBsimi \xEBsht\xEB bosh, t\xEB gjitha sh\xEBnimet p\xEBrfshihen."},name:"P\xEBrfshi shtigje"},jpegQuality:{description:"Sa m\xEB e vog\xEBl t\xEB jet\xEB cil\xEBsia, aq m\xEB e madhe \xEBsht\xEB shkalla e kompresimit.",name:"Cil\xEBsia JPEG"},locationForNewAttachments:{description:{part1:"Filloni me",part2:"p\xEBr t\xEB p\xEBrdorur nj\xEB shteg relativ.",part3:"Shih",part4:"tokenat e disponuesh\xEBm",part5:"Dosjet me pik\xEB si",part6:"nuk rekomandohen, sepse Obsidian nuk i ndjek ato. Mund t\u2019ju duhet t\xEB p\xEBrdorni nj\xEB",part7:"shtes\xEB p\xEBr t\u2019i menaxhuar ato."},name:"Vendndodhja p\xEBr bashk\xEBngjitje t\xEB reja"},markdownUrlFormat:{description:{part1:"Formati i URL-s\xEB q\xEB do t\xEB futet n\xEB Markdown.",part2:"Shih",part3:"tokenat e disponuesh\xEBm",part4:"L\xEBreni bosh p\xEBr t\xEB p\xEBrdorur formatin parazgjedhur."},name:"Formati i URL-s\xEB Markdown"},renameAttachmentsToLowerCase:"Riem\xEBrto bashk\xEBngjitjet me shkronja t\xEB vogla",renamedAttachmentFileName:{description:{part1:"Shih",part2:"tokenat e disponuesh\xEBm"},name:"Emri i skedarit t\xEB bashk\xEBngjitur t\xEB riem\xEBrtuar"},resetToSampleCustomTokens:{message:"Jeni i sigurt q\xEB doni t\xEB rivendosni tokenat e personalizuar n\xEB tokenat shembullor\xEB? Ndryshimet tuaja do t\xEB humbasin.",title:"Rivendos tek tokenat shembullor\xEB"},shouldConvertPastedImagesToJpeg:{description:"N\xEBse imazhet e ngjitura duhet t\xEB konvertohen n\xEB JPEG. Aplikohet vet\xEBm kur p\xEBrmbajtja e nj\xEB PNG ngjitet nga clipboard. Zakonisht p\xEBr pamjet e ekranit.",name:"Konverto imazhet e ngjitura n\xEB JPEG"},shouldDeleteOrphanAttachments:{description:"N\xEBse aktivizohet, kur fshihet sh\xEBnimi, fshihen edhe bashk\xEBngjitjet jetim.",name:"Fshi bashk\xEBngjitjet jetim"},shouldRenameAttachmentFiles:{description:{part1:"N\xEBse aktivizohet, kur nj\xEB sh\xEBnim riem\xEBrtohet ose zhvendoset, bashk\xEBngjitjet do t\xEB riem\xEBrtohen sipas",part2:"vendosjes."},name:"Riem\xEBrto skedar\xEBt e bashk\xEBngjitjes"},shouldRenameAttachmentFolders:{description:"N\xEBse dosjet e bashk\xEBngjitjes do t\xEB riem\xEBrtohen kur nj\xEB sh\xEBnim riem\xEBrtohet ose zhvendoset.",name:"Riem\xEBrto dosjet e bashk\xEBngjitjes"},shouldRenameCollectedAttachments:{description:{part1:"N\xEBse aktivizohet, bashk\xEBngjitjet e p\xEBrpunuara nga komanda",part2:"Mblidh bashk\xEBngjitjet",part3:"do t\xEB riem\xEBrtohen sipas",part4:"cil\xEBsimeve."},name:"Riem\xEBrto bashk\xEBngjitjet e mbledhura"},specialCharacters:{description:{part1:"Karakteret speciale n\xEB emrin e dosjes ose skedarit t\xEB bashk\xEBngjitjes q\xEB do t\xEB z\xEBvend\xEBsohen ose hiqen.",part2:"L\xEBreni bosh p\xEBr t\xEB ruajtur karakteret speciale."},name:"Karaktere speciale"},specialCharactersReplacement:{description:{part1:"Vargu i z\xEBvend\xEBsimit p\xEBr karakteret speciale n\xEB dosje ose n\xEB emrin e skedarit t\xEB bashk\xEBngjitur.",part2:"L\xEBreni bosh p\xEBr t\u2019i hequr karakteret speciale."},name:"Z\xEBvend\xEBsim i karaktereve speciale"},timeoutInSeconds:{description:{part1:"Koha n\xEB sekonda p\xEBr t\xEB gjitha operacionet.",part2:"N\xEBse",part3:"\xEBsht\xEB i vendosur, koha e operacionit \xEBsht\xEB e \xE7aktivizuar."},name:"Kufiri i koh\xEBs n\xEB sekonda"},treatAsAttachmentExtensions:{description:{part1:"Trajtoni skedar\xEBt me k\xEBto zgjerime si bashk\xEBngjitje.",part2:"Si parazgjedhje",part3:"dhe",part4:"skedar\xEBt e lidhur nuk trajtohen si bashk\xEBngjitje dhe nuk zhvendosen me sh\xEBnimin.",part5:"Mund t\xEB shtoni zgjerime t\xEB personalizuara, p.sh.",part6:", p\xEBr t\xEB anashkaluar k\xEBt\xEB sjellje."},name:"Trajto si zgjerime bashk\xEBngjitjesh"}},promptWithPreviewModal:{previewModal:{title:"Parashiko skedarin e bashk\xEBngjitur '{{fullFileName}}'"},title:"Jepni nj\xEB vler\xEB p\xEBr tokenin e k\xEBrkes\xEBs"},regularExpression:"/shprehje e rregullt/"};var yh={attachmentCollector:{confirm:{part1:"\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E42\u0E19\u0E49\u0E15\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E43\u0E19\u0E42\u0E1F\u0E25\u0E40\u0E14\u0E2D\u0E23\u0E4C\u0E41\u0E1A\u0E1A\u0E40\u0E23\u0E35\u0E22\u0E01\u0E0B\u0E49\u0E33\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48?",part2:"\u0E01\u0E32\u0E23\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E19\u0E35\u0E49\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E44\u0E14\u0E49"},progressBar:{message:"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A {{iterationStr}} - '{{noteFilePath}}'.",title:"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A..."}},buttons:{copy:"\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01",move:"\u0E22\u0E49\u0E32\u0E22",previewAttachmentFile:"\u0E14\u0E39\u0E15\u0E31\u0E27\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A",skip:"\u0E02\u0E49\u0E32\u0E21"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A",part2:"\u0E16\u0E39\u0E01\u0E2D\u0E49\u0E32\u0E07\u0E2D\u0E34\u0E07\u0E42\u0E14\u0E22\u0E2B\u0E25\u0E32\u0E22\u0E42\u0E19\u0E49\u0E15"},heading:"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E42\u0E14\u0E22\u0E2B\u0E25\u0E32\u0E22\u0E42\u0E19\u0E49\u0E15",shouldUseSameActionForOtherProblematicAttachmentsToggle:"\u0E43\u0E0A\u0E49\u0E01\u0E32\u0E23\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E40\u0E14\u0E35\u0E22\u0E27\u0E01\u0E31\u0E19\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E17\u0E35\u0E48\u0E21\u0E35\u0E1B\u0E31\u0E0D\u0E2B\u0E32\u0E2D\u0E37\u0E48\u0E19 \u0E46"},commands:{collectAttachmentsCurrentFolder:"\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E43\u0E19\u0E42\u0E1F\u0E25\u0E40\u0E14\u0E2D\u0E23\u0E4C\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19",collectAttachmentsCurrentNote:"\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E43\u0E19\u0E42\u0E19\u0E49\u0E15\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19",collectAttachmentsEntireVault:"\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E43\u0E19\u0E04\u0E25\u0E31\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14"},menuItems:{collectAttachmentsInFile:"\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E43\u0E19\u0E44\u0E1F\u0E25\u0E4C",collectAttachmentsInFiles:"\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E43\u0E19\u0E2B\u0E25\u0E32\u0E22\u0E44\u0E1F\u0E25\u0E4C"},notice:{collectingAttachments:"\u0E01\u0E33\u0E25\u0E31\u0E07\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A '{{noteFilePath}}'",collectingAttachmentsCancelled:"\u0E01\u0E32\u0E23\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E16\u0E39\u0E01\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01 \u0E14\u0E39\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14\u0E43\u0E19\u0E04\u0E2D\u0E19\u0E42\u0E0B\u0E25",generatedAttachmentFileNameIsInvalid:{part1:`\u0E0A\u0E37\u0E48\u0E2D\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E17\u0E35\u0E48\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E02\u0E36\u0E49\u0E19 '{{path}}' \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07
|
|
547
|
+
{{validationMessage}}
|
|
548
|
+
\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A`,part2:"\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13"},notePathIsIgnored:"\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E42\u0E19\u0E49\u0E15\u0E16\u0E39\u0E01\u0E02\u0E49\u0E32\u0E21"},obsidianDevUtils:{buttons:{cancel:"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01",ok:"\u0E15\u0E01\u0E25\u0E07"},dataview:{itemsPerPage:"\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E15\u0E48\u0E2D\u0E2B\u0E19\u0E49\u0E32:",jumpToPage:"\u0E44\u0E1B\u0E17\u0E35\u0E48\u0E2B\u0E19\u0E49\u0E32:"},notices:{attachmentIsStillUsed:"\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A {{attachmentPath}} \u0E22\u0E31\u0E07\u0E04\u0E07\u0E16\u0E39\u0E01\u0E43\u0E0A\u0E49\u0E42\u0E14\u0E22\u0E42\u0E19\u0E49\u0E15\u0E2D\u0E37\u0E48\u0E19 \u0E46 \u0E08\u0E30\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E25\u0E1A",unhandledError:"\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E08\u0E31\u0E14\u0E01\u0E32\u0E23 \u0E01\u0E23\u0E38\u0E13\u0E32\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E04\u0E2D\u0E19\u0E42\u0E0B\u0E25\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21"}},pluginSettings:{attachmentRenameMode:{all:{description:"\u0E44\u0E1F\u0E25\u0E4C\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E08\u0E30\u0E16\u0E39\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E0A\u0E37\u0E48\u0E2D",displayText:"\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14"},none:{description:"\u0E40\u0E01\u0E47\u0E1A\u0E0A\u0E37\u0E48\u0E2D\u0E44\u0E1F\u0E25\u0E4C\u0E40\u0E14\u0E34\u0E21\u0E44\u0E27\u0E49",displayText:"\u0E44\u0E21\u0E48\u0E21\u0E35"},onlyPastedImages:{description:"\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E20\u0E32\u0E1E\u0E17\u0E35\u0E48\u0E27\u0E32\u0E07\u0E08\u0E30\u0E16\u0E39\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E0A\u0E37\u0E48\u0E2D \u0E43\u0E0A\u0E49\u0E44\u0E14\u0E49\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E27\u0E32\u0E07\u0E44\u0E1F\u0E25\u0E4C PNG \u0E08\u0E32\u0E01\u0E04\u0E25\u0E34\u0E1B\u0E1A\u0E2D\u0E23\u0E4C\u0E14\u0E42\u0E14\u0E22\u0E15\u0E23\u0E07 \u0E42\u0E14\u0E22\u0E17\u0E31\u0E48\u0E27\u0E44\u0E1B\u0E43\u0E0A\u0E49\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E27\u0E32\u0E07\u0E20\u0E32\u0E1E\u0E2B\u0E19\u0E49\u0E32\u0E08\u0E2D",displayText:"\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E20\u0E32\u0E1E\u0E17\u0E35\u0E48\u0E27\u0E32\u0E07"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A",displayText:"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01"},copy:{description:"\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E44\u0E1B\u0E22\u0E31\u0E07\u0E15\u0E33\u0E41\u0E2B\u0E19\u0E48\u0E07\u0E43\u0E2B\u0E21\u0E48",displayText:"\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01"},move:{description:"\u0E22\u0E49\u0E32\u0E22\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E44\u0E1B\u0E22\u0E31\u0E07\u0E15\u0E33\u0E41\u0E2B\u0E19\u0E48\u0E07\u0E43\u0E2B\u0E21\u0E48",displayText:"\u0E22\u0E49\u0E32\u0E22"},prompt:{description:"\u0E43\u0E2B\u0E49\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E32\u0E23\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23",displayText:"\u0E16\u0E32\u0E21"},skip:{description:"\u0E02\u0E49\u0E32\u0E21\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E41\u0E25\u0E30\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E15\u0E48\u0E2D\u0E44\u0E1B",displayText:"\u0E02\u0E49\u0E32\u0E21"}},defaultImageSizeDimension:{height:"\u0E04\u0E27\u0E32\u0E21\u0E2A\u0E39\u0E07",width:"\u0E04\u0E27\u0E32\u0E21\u0E01\u0E27\u0E49\u0E32\u0E07"},emptyAttachmentFolderBehavior:{delete:{description:"\u0E08\u0E30\u0E25\u0E1A\u0E42\u0E1F\u0E25\u0E40\u0E14\u0E2D\u0E23\u0E4C\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E17\u0E35\u0E48\u0E27\u0E48\u0E32\u0E07\u0E40\u0E1B\u0E25\u0E48\u0E32",displayText:"\u0E25\u0E1A"},deleteWithEmptyParents:{description:"\u0E08\u0E30\u0E25\u0E1A\u0E42\u0E1F\u0E25\u0E40\u0E14\u0E2D\u0E23\u0E4C\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E17\u0E35\u0E48\u0E27\u0E48\u0E32\u0E07\u0E40\u0E1B\u0E25\u0E48\u0E32\u0E41\u0E25\u0E30\u0E42\u0E1F\u0E25\u0E40\u0E14\u0E2D\u0E23\u0E4C\u0E41\u0E21\u0E48\u0E17\u0E35\u0E48\u0E27\u0E48\u0E32\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",displayText:"\u0E25\u0E1A\u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E42\u0E1F\u0E25\u0E40\u0E14\u0E2D\u0E23\u0E4C\u0E41\u0E21\u0E48\u0E17\u0E35\u0E48\u0E27\u0E48\u0E32\u0E07"},keep:{description:"\u0E08\u0E30\u0E40\u0E01\u0E47\u0E1A\u0E42\u0E1F\u0E25\u0E40\u0E14\u0E2D\u0E23\u0E4C\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E17\u0E35\u0E48\u0E27\u0E48\u0E32\u0E07\u0E40\u0E1B\u0E25\u0E48\u0E32\u0E44\u0E27\u0E49",displayText:"\u0E40\u0E01\u0E47\u0E1A\u0E44\u0E27\u0E49"}}},pluginSettingsManager:{customToken:{codeComment:`// \u0E42\u0E17\u0E40\u0E04\u0E19\u0E17\u0E35\u0E48\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E40\u0E2D\u0E07\u0E16\u0E39\u0E01\u0E04\u0E2D\u0E21\u0E40\u0E21\u0E19\u0E15\u0E4C\u0E44\u0E27\u0E49 \u0E40\u0E19\u0E37\u0E48\u0E2D\u0E07\u0E08\u0E32\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E15\u0E40\u0E1B\u0E47\u0E19\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E43\u0E2B\u0E21\u0E48\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E43\u0E19\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19 9.0.0
|
|
549
|
+
// \u0E14\u0E39\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14\u0E43\u0E19\u0E40\u0E2D\u0E01\u0E2A\u0E32\u0E23\u0E1B\u0E23\u0E30\u0E01\u0E2D\u0E1A (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens)`,deprecated:{part1:"\u0E43\u0E19\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19 9.0.0 \u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E01\u0E32\u0E23\u0E25\u0E07\u0E17\u0E30\u0E40\u0E1A\u0E35\u0E22\u0E19\u0E42\u0E17\u0E40\u0E04\u0E19\u0E17\u0E35\u0E48\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E40\u0E2D\u0E07\u0E44\u0E14\u0E49\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E44\u0E1B \u0E01\u0E23\u0E38\u0E13\u0E32\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E15\u0E42\u0E17\u0E40\u0E04\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 \u0E14\u0E39\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21\u0E17\u0E35\u0E48",part2:"\u0E40\u0E2D\u0E01\u0E2A\u0E32\u0E23",part3:"\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21"}},legacyRenameAttachmentsToLowerCase:{part1:"\u0E43\u0E19\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19 9.0.0",part2:"\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E19\u0E35\u0E49\u0E40\u0E25\u0E34\u0E01\u0E43\u0E0A\u0E49\u0E41\u0E25\u0E49\u0E27 \u0E01\u0E23\u0E38\u0E13\u0E32\u0E43\u0E0A\u0E49",part3:"\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E41\u0E17\u0E19 \u0E14\u0E39\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21\u0E17\u0E35\u0E48",part4:"\u0E40\u0E2D\u0E01\u0E2A\u0E32\u0E23",part5:"\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21"},markdownUrlFormat:{deprecated:{part1:"\u0E04\u0E38\u0E13\u0E2D\u0E32\u0E08\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A",part2:"\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A \u0E01\u0E23\u0E38\u0E13\u0E32\u0E14\u0E39",part3:"\u0E40\u0E2D\u0E01\u0E2A\u0E32\u0E23",part4:"\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21",part5:"\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E19\u0E35\u0E49\u0E08\u0E30\u0E44\u0E21\u0E48\u0E41\u0E2A\u0E14\u0E07\u0E2D\u0E35\u0E01"}},specialCharacters:{part1:"\u0E43\u0E19\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19 9.16.0",part2:"\u0E04\u0E48\u0E32\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19\u0E02\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E19\u0E35\u0E49\u0E16\u0E39\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E44\u0E1B \u0E41\u0E25\u0E30\u0E04\u0E48\u0E32\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E08\u0E36\u0E07\u0E16\u0E39\u0E01\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E15\u0E15\u0E32\u0E21\u0E04\u0E48\u0E32\u0E43\u0E2B\u0E21\u0E48"},validation:{defaultImageSizeMustBePercentageOrPixels:"\u0E02\u0E19\u0E32\u0E14\u0E20\u0E32\u0E1E\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E1E\u0E34\u0E01\u0E40\u0E0B\u0E25\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E1B\u0E2D\u0E23\u0E4C\u0E40\u0E0B\u0E47\u0E19\u0E15\u0E4C",invalidCustomTokensCode:"\u0E42\u0E04\u0E49\u0E14\u0E42\u0E17\u0E40\u0E04\u0E19\u0E17\u0E35\u0E48\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E40\u0E2D\u0E07\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07",invalidRegularExpression:"\u0E19\u0E34\u0E1E\u0E08\u0E19\u0E4C\u0E1B\u0E01\u0E15\u0E34\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 {{regExp}}",specialCharactersMustNotContainSlash:"\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E1E\u0E34\u0E40\u0E28\u0E29\u0E15\u0E49\u0E2D\u0E07\u0E44\u0E21\u0E48\u0E21\u0E35\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E2B\u0E21\u0E32\u0E22 /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"\u0E01\u0E32\u0E23\u0E41\u0E17\u0E19\u0E17\u0E35\u0E48\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E1E\u0E34\u0E40\u0E28\u0E29\u0E15\u0E49\u0E2D\u0E07\u0E44\u0E21\u0E48\u0E21\u0E35\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E0A\u0E37\u0E48\u0E2D\u0E44\u0E1F\u0E25\u0E4C\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07"},version:{part1:"\u0E44\u0E1F\u0E25\u0E4C\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 ",part2:"\u0E21\u0E35\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19",part3:"\u0E0B\u0E36\u0E48\u0E07\u0E43\u0E2B\u0E21\u0E48\u0E01\u0E27\u0E48\u0E32\u0E2A\u0E48\u0E27\u0E19\u0E02\u0E22\u0E32\u0E22\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19",part4:"\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E2D\u0E32\u0E08\u0E44\u0E21\u0E48\u0E17\u0E33\u0E07\u0E32\u0E19\u0E15\u0E32\u0E21\u0E17\u0E35\u0E48\u0E04\u0E32\u0E14\u0E44\u0E27\u0E49 \u0E01\u0E23\u0E38\u0E13\u0E32\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E15\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E25\u0E48\u0E32\u0E2A\u0E38\u0E14 \u0E2B\u0E23\u0E37\u0E2D\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19\u0E27\u0E48\u0E32\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07"}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E41\u0E19\u0E1A\u0E44\u0E1F\u0E25\u0E4C:"},name:"\u0E42\u0E2B\u0E21\u0E14\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E0A\u0E37\u0E48\u0E2D\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E17\u0E35\u0E48\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E16\u0E39\u0E01\u0E43\u0E0A\u0E49\u0E42\u0E14\u0E22\u0E2B\u0E25\u0E32\u0E22\u0E42\u0E19\u0E49\u0E15:"},name:"\u0E42\u0E2B\u0E21\u0E14\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E2B\u0E25\u0E32\u0E22\u0E42\u0E19\u0E49\u0E15"},collectedAttachmentFileName:{description:{part1:"\u0E14\u0E39",part2:"\u0E42\u0E17\u0E40\u0E04\u0E19\u0E17\u0E35\u0E48\u0E21\u0E35\u0E43\u0E2B\u0E49"},name:"\u0E0A\u0E37\u0E48\u0E2D\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E17\u0E35\u0E48\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21"},customTokens:{description:{part1:"\u0E42\u0E17\u0E40\u0E04\u0E19\u0E17\u0E35\u0E48\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E40\u0E2D\u0E07\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49",part2:"\u0E14\u0E39",part3:"\u0E40\u0E2D\u0E01\u0E2A\u0E32\u0E23",part4:"\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21",part5:"\u26A0\uFE0F \u0E42\u0E17\u0E40\u0E04\u0E19\u0E17\u0E35\u0E48\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E40\u0E2D\u0E07\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E1B\u0E47\u0E19\u0E42\u0E04\u0E49\u0E14 JavaScript \u0E43\u0E14\u0E01\u0E47\u0E44\u0E14\u0E49 \u0E16\u0E49\u0E32\u0E40\u0E02\u0E35\u0E22\u0E19\u0E1C\u0E34\u0E14 \u0E2D\u0E32\u0E08\u0E17\u0E33\u0E43\u0E2B\u0E49\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E39\u0E0D\u0E2B\u0E32\u0E22 \u0E43\u0E0A\u0E49\u0E14\u0E49\u0E27\u0E22\u0E04\u0E27\u0E32\u0E21\u0E23\u0E30\u0E21\u0E31\u0E14\u0E23\u0E30\u0E27\u0E31\u0E07"},name:"\u0E42\u0E17\u0E40\u0E04\u0E19\u0E17\u0E35\u0E48\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E40\u0E2D\u0E07"},defaultImageSize:{description:{part1:"\u0E02\u0E19\u0E32\u0E14\u0E20\u0E32\u0E1E\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19",part2:"\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E40\u0E1B\u0E47\u0E19\u0E1E\u0E34\u0E01\u0E40\u0E0B\u0E25\u0E44\u0E14\u0E49",part3:"\u0E2B\u0E23\u0E37\u0E2D\u0E15\u0E32\u0E21\u0E40\u0E1B\u0E2D\u0E23\u0E4C\u0E40\u0E0B\u0E47\u0E19\u0E15\u0E4C\u0E02\u0E2D\u0E07\u0E02\u0E19\u0E32\u0E14\u0E20\u0E32\u0E1E\u0E40\u0E15\u0E47\u0E21",part4:"\u0E1B\u0E25\u0E48\u0E2D\u0E22\u0E27\u0E48\u0E32\u0E07\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E43\u0E0A\u0E49\u0E02\u0E19\u0E32\u0E14\u0E20\u0E32\u0E1E\u0E15\u0E49\u0E19\u0E09\u0E1A\u0E31\u0E1A"},name:"\u0E02\u0E19\u0E32\u0E14\u0E20\u0E32\u0E1E\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19"},duplicateNameSeparator:{description:{part1:"\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E04\u0E38\u0E13\u0E27\u0E32\u0E07/\u0E25\u0E32\u0E01\u0E44\u0E1F\u0E25\u0E4C\u0E17\u0E35\u0E48\u0E21\u0E35\u0E0A\u0E37\u0E48\u0E2D\u0E40\u0E2B\u0E21\u0E37\u0E2D\u0E19\u0E44\u0E1F\u0E25\u0E4C\u0E17\u0E35\u0E48\u0E21\u0E35\u0E2D\u0E22\u0E39\u0E48 \u0E15\u0E31\u0E27\u0E04\u0E31\u0E48\u0E19\u0E19\u0E35\u0E49\u0E08\u0E30\u0E16\u0E39\u0E01\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E44\u0E1B\u0E17\u0E35\u0E48\u0E0A\u0E37\u0E48\u0E2D\u0E44\u0E1F\u0E25\u0E4C",part2:"\u0E40\u0E0A\u0E48\u0E19 \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E04\u0E38\u0E13\u0E25\u0E32\u0E01\u0E44\u0E1F\u0E25\u0E4C",part3:", \u0E08\u0E30\u0E16\u0E39\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E0A\u0E37\u0E48\u0E2D\u0E40\u0E1B\u0E47\u0E19 ",part4:"\u0E40\u0E1B\u0E47\u0E19\u0E15\u0E49\u0E19 \u0E44\u0E1B\u0E08\u0E19\u0E01\u0E27\u0E48\u0E32\u0E08\u0E30\u0E1E\u0E1A\u0E0A\u0E37\u0E48\u0E2D\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E44\u0E14\u0E49"},name:"\u0E15\u0E31\u0E27\u0E04\u0E31\u0E48\u0E19\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E0A\u0E37\u0E48\u0E2D\u0E0B\u0E49\u0E33"},emptyAttachmentFolderBehavior:{description:{part1:"\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E42\u0E1F\u0E25\u0E40\u0E14\u0E2D\u0E23\u0E4C\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E27\u0E48\u0E32\u0E07\u0E40\u0E1B\u0E25\u0E48\u0E32:"},name:"\u0E1E\u0E24\u0E15\u0E34\u0E01\u0E23\u0E23\u0E21\u0E02\u0E2D\u0E07\u0E42\u0E1F\u0E25\u0E40\u0E14\u0E2D\u0E23\u0E4C\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E17\u0E35\u0E48\u0E27\u0E48\u0E32\u0E07\u0E40\u0E1B\u0E25\u0E48\u0E32"},excludePaths:{description:{part1:"\u0E22\u0E01\u0E40\u0E27\u0E49\u0E19\u0E42\u0E19\u0E49\u0E15\u0E08\u0E32\u0E01\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E15\u0E48\u0E2D\u0E44\u0E1B\u0E19\u0E35\u0E49",part2:"\u0E43\u0E2A\u0E48\u0E41\u0E15\u0E48\u0E25\u0E30\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E43\u0E19\u0E1A\u0E23\u0E23\u0E17\u0E31\u0E14\u0E43\u0E2B\u0E21\u0E48",part3:"\u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E43\u0E0A\u0E49\u0E2A\u0E15\u0E23\u0E34\u0E07\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E2B\u0E23\u0E37\u0E2D",part4:"\u0E2B\u0E32\u0E01\u0E40\u0E27\u0E49\u0E19\u0E27\u0E48\u0E32\u0E07\u0E44\u0E27\u0E49 \u0E08\u0E30\u0E44\u0E21\u0E48\u0E21\u0E35\u0E42\u0E19\u0E49\u0E15\u0E43\u0E14\u0E16\u0E39\u0E01\u0E22\u0E01\u0E40\u0E27\u0E49\u0E19"},name:"\u0E22\u0E01\u0E40\u0E27\u0E49\u0E19\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07"},excludePathsFromAttachmentCollecting:{description:{part1:"\u0E22\u0E01\u0E40\u0E27\u0E49\u0E19\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E08\u0E32\u0E01\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E15\u0E48\u0E2D\u0E44\u0E1B\u0E19\u0E35\u0E49\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E40\u0E23\u0E35\u0E22\u0E01\u0E43\u0E0A\u0E49\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07",part2:"\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A",part3:"",part4:"\u0E43\u0E2A\u0E48\u0E41\u0E15\u0E48\u0E25\u0E30\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E43\u0E19\u0E1A\u0E23\u0E23\u0E17\u0E31\u0E14\u0E43\u0E2B\u0E21\u0E48",part5:"\u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E43\u0E0A\u0E49\u0E2A\u0E15\u0E23\u0E34\u0E07\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E2B\u0E23\u0E37\u0E2D",part6:"\u0E2B\u0E32\u0E01\u0E40\u0E27\u0E49\u0E19\u0E27\u0E48\u0E32\u0E07 \u0E08\u0E30\u0E44\u0E21\u0E48\u0E21\u0E35\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E43\u0E14\u0E16\u0E39\u0E01\u0E22\u0E01\u0E40\u0E27\u0E49\u0E19"},name:"\u0E22\u0E01\u0E40\u0E27\u0E49\u0E19\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A"},generatedAttachmentFileName:{description:{part1:"\u0E14\u0E39",part2:"\u0E42\u0E17\u0E40\u0E04\u0E19\u0E17\u0E35\u0E48\u0E21\u0E35\u0E43\u0E2B\u0E49"},name:"\u0E0A\u0E37\u0E48\u0E2D\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E17\u0E35\u0E48\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E02\u0E36\u0E49\u0E19"},includePaths:{description:{part1:"\u0E23\u0E27\u0E21\u0E42\u0E19\u0E49\u0E15\u0E08\u0E32\u0E01\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E15\u0E48\u0E2D\u0E44\u0E1B\u0E19\u0E35\u0E49",part2:"\u0E43\u0E2A\u0E48\u0E41\u0E15\u0E48\u0E25\u0E30\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E43\u0E19\u0E1A\u0E23\u0E23\u0E17\u0E31\u0E14\u0E43\u0E2B\u0E21\u0E48",part3:"\u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E43\u0E0A\u0E49\u0E2A\u0E15\u0E23\u0E34\u0E07\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E2B\u0E23\u0E37\u0E2D",part4:"\u0E2B\u0E32\u0E01\u0E40\u0E27\u0E49\u0E19\u0E27\u0E48\u0E32\u0E07\u0E44\u0E27\u0E49 \u0E42\u0E19\u0E49\u0E15\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E08\u0E30\u0E16\u0E39\u0E01\u0E23\u0E27\u0E21"},name:"\u0E23\u0E27\u0E21\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07"},jpegQuality:{description:"\u0E04\u0E38\u0E13\u0E20\u0E32\u0E1E\u0E22\u0E34\u0E48\u0E07\u0E15\u0E48\u0E33 \u0E2D\u0E31\u0E15\u0E23\u0E32\u0E2A\u0E48\u0E27\u0E19\u0E01\u0E32\u0E23\u0E1A\u0E35\u0E1A\u0E2D\u0E31\u0E14\u0E08\u0E30\u0E22\u0E34\u0E48\u0E07\u0E2A\u0E39\u0E07",name:"\u0E04\u0E38\u0E13\u0E20\u0E32\u0E1E JPEG"},locationForNewAttachments:{description:{part1:"\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19\u0E14\u0E49\u0E27\u0E22",part2:"\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E43\u0E0A\u0E49\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E2A\u0E31\u0E21\u0E1E\u0E31\u0E17\u0E18\u0E4C",part3:"\u0E14\u0E39",part4:"\u0E42\u0E17\u0E40\u0E04\u0E19\u0E17\u0E35\u0E48\u0E21\u0E35\u0E43\u0E2B\u0E49",part5:"\u0E42\u0E1F\u0E25\u0E40\u0E14\u0E2D\u0E23\u0E4C\u0E17\u0E35\u0E48\u0E02\u0E36\u0E49\u0E19\u0E15\u0E49\u0E19\u0E14\u0E49\u0E27\u0E22\u0E08\u0E38\u0E14 \u0E40\u0E0A\u0E48\u0E19",part6:"\u0E44\u0E21\u0E48\u0E41\u0E19\u0E30\u0E19\u0E33 \u0E40\u0E1E\u0E23\u0E32\u0E30 Obsidian \u0E08\u0E30\u0E44\u0E21\u0E48\u0E15\u0E34\u0E14\u0E15\u0E32\u0E21 \u0E04\u0E38\u0E13\u0E2D\u0E32\u0E08\u0E15\u0E49\u0E2D\u0E07\u0E43\u0E0A\u0E49",part7:"\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E08\u0E31\u0E14\u0E01\u0E32\u0E23"},name:"\u0E15\u0E33\u0E41\u0E2B\u0E19\u0E48\u0E07\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E43\u0E2B\u0E21\u0E48"},markdownUrlFormat:{description:{part1:"\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E02\u0E2D\u0E07 URL \u0E17\u0E35\u0E48\u0E08\u0E30\u0E41\u0E17\u0E23\u0E01\u0E25\u0E07\u0E43\u0E19 Markdown",part2:"\u0E14\u0E39",part3:"\u0E42\u0E17\u0E40\u0E04\u0E19\u0E17\u0E35\u0E48\u0E21\u0E35\u0E43\u0E2B\u0E49",part4:"\u0E40\u0E27\u0E49\u0E19\u0E27\u0E48\u0E32\u0E07\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E43\u0E0A\u0E49\u0E04\u0E48\u0E32\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19"},name:"\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A URL \u0E02\u0E2D\u0E07 Markdown"},renameAttachmentsToLowerCase:"\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E0A\u0E37\u0E48\u0E2D\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E40\u0E1B\u0E47\u0E19\u0E15\u0E31\u0E27\u0E1E\u0E34\u0E21\u0E1E\u0E4C\u0E40\u0E25\u0E47\u0E01",renamedAttachmentFileName:{description:{part1:"\u0E14\u0E39",part2:"\u0E42\u0E17\u0E40\u0E04\u0E19\u0E17\u0E35\u0E48\u0E21\u0E35\u0E43\u0E2B\u0E49"},name:"\u0E0A\u0E37\u0E48\u0E2D\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E17\u0E35\u0E48\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E0A\u0E37\u0E48\u0E2D"},resetToSampleCustomTokens:{message:"\u0E41\u0E19\u0E48\u0E43\u0E08\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48\u0E27\u0E48\u0E32\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E42\u0E17\u0E40\u0E04\u0E19\u0E17\u0E35\u0E48\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E40\u0E2D\u0E07\u0E44\u0E1B\u0E22\u0E31\u0E07\u0E42\u0E17\u0E40\u0E04\u0E19\u0E15\u0E31\u0E27\u0E2D\u0E22\u0E48\u0E32\u0E07? \u0E01\u0E32\u0E23\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E1B\u0E25\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E08\u0E30\u0E2A\u0E39\u0E0D\u0E2B\u0E32\u0E22",title:"\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E40\u0E1B\u0E47\u0E19\u0E42\u0E17\u0E40\u0E04\u0E19\u0E15\u0E31\u0E27\u0E2D\u0E22\u0E48\u0E32\u0E07"},shouldConvertPastedImagesToJpeg:{description:"\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E27\u0E48\u0E32\u0E08\u0E30\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E23\u0E39\u0E1B\u0E20\u0E32\u0E1E\u0E17\u0E35\u0E48\u0E27\u0E32\u0E07\u0E40\u0E1B\u0E47\u0E19 JPEG \u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48 \u0E43\u0E0A\u0E49\u0E44\u0E14\u0E49\u0E01\u0E31\u0E1A PNG \u0E17\u0E35\u0E48\u0E27\u0E32\u0E07\u0E08\u0E32\u0E01\u0E04\u0E25\u0E34\u0E1B\u0E1A\u0E2D\u0E23\u0E4C\u0E14\u0E42\u0E14\u0E22\u0E15\u0E23\u0E07 \u0E40\u0E2B\u0E21\u0E32\u0E30\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E20\u0E32\u0E1E\u0E2B\u0E19\u0E49\u0E32\u0E08\u0E2D",name:"\u0E41\u0E1B\u0E25\u0E07\u0E23\u0E39\u0E1B\u0E20\u0E32\u0E1E\u0E17\u0E35\u0E48\u0E27\u0E32\u0E07\u0E40\u0E1B\u0E47\u0E19 JPEG"},shouldDeleteOrphanAttachments:{description:"\u0E2B\u0E32\u0E01\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E42\u0E19\u0E49\u0E15\u0E16\u0E39\u0E01\u0E25\u0E1A \u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E17\u0E35\u0E48\u0E40\u0E2B\u0E25\u0E37\u0E2D\u0E2D\u0E22\u0E39\u0E48\u0E08\u0E30\u0E16\u0E39\u0E01\u0E25\u0E1A\u0E14\u0E49\u0E27\u0E22",name:"\u0E25\u0E1A\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E17\u0E34\u0E49\u0E07"},shouldRenameAttachmentFiles:{description:{part1:"\u0E2B\u0E32\u0E01\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E42\u0E19\u0E49\u0E15\u0E16\u0E39\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E0A\u0E37\u0E48\u0E2D\u0E2B\u0E23\u0E37\u0E2D\u0E22\u0E49\u0E32\u0E22 \u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E08\u0E30\u0E16\u0E39\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E0A\u0E37\u0E48\u0E2D\u0E15\u0E32\u0E21",part2:"\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32"},name:"\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E0A\u0E37\u0E48\u0E2D\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A"},shouldRenameAttachmentFolders:{description:"\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E27\u0E48\u0E32\u0E08\u0E30\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E0A\u0E37\u0E48\u0E2D\u0E42\u0E1F\u0E25\u0E40\u0E14\u0E2D\u0E23\u0E4C\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E42\u0E19\u0E49\u0E15\u0E16\u0E39\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E0A\u0E37\u0E48\u0E2D\u0E2B\u0E23\u0E37\u0E2D\u0E22\u0E49\u0E32\u0E22\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48",name:"\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E0A\u0E37\u0E48\u0E2D\u0E42\u0E1F\u0E25\u0E40\u0E14\u0E2D\u0E23\u0E4C\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A"},shouldRenameCollectedAttachments:{description:{part1:"\u0E2B\u0E32\u0E01\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 \u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E17\u0E35\u0E48\u0E1B\u0E23\u0E30\u0E21\u0E27\u0E25\u0E1C\u0E25\u0E1C\u0E48\u0E32\u0E19\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07",part2:"\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A",part3:"\u0E08\u0E30\u0E16\u0E39\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E0A\u0E37\u0E48\u0E2D\u0E15\u0E32\u0E21",part4:"\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32"},name:"\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E0A\u0E37\u0E48\u0E2D\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E17\u0E35\u0E48\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E21\u0E32"},specialCharacters:{description:{part1:"\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E1E\u0E34\u0E40\u0E28\u0E29\u0E43\u0E19\u0E0A\u0E37\u0E48\u0E2D\u0E42\u0E1F\u0E25\u0E40\u0E14\u0E2D\u0E23\u0E4C\u0E41\u0E25\u0E30\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E17\u0E35\u0E48\u0E08\u0E30\u0E16\u0E39\u0E01\u0E41\u0E17\u0E19\u0E17\u0E35\u0E48\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E2D\u0E32\u0E2D\u0E2D\u0E01",part2:"\u0E40\u0E27\u0E49\u0E19\u0E27\u0E48\u0E32\u0E07\u0E44\u0E27\u0E49\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E01\u0E47\u0E1A\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E1E\u0E34\u0E40\u0E28\u0E29"},name:"\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E1E\u0E34\u0E40\u0E28\u0E29"},specialCharactersReplacement:{description:{part1:"\u0E2A\u0E15\u0E23\u0E34\u0E07\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E41\u0E17\u0E19\u0E17\u0E35\u0E48\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E1E\u0E34\u0E40\u0E28\u0E29\u0E43\u0E19\u0E42\u0E1F\u0E25\u0E40\u0E14\u0E2D\u0E23\u0E4C\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A",part2:"\u0E40\u0E27\u0E49\u0E19\u0E27\u0E48\u0E32\u0E07\u0E44\u0E27\u0E49\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E25\u0E1A\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E1E\u0E34\u0E40\u0E28\u0E29"},name:"\u0E04\u0E48\u0E32\u0E17\u0E35\u0E48\u0E41\u0E17\u0E19\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E1E\u0E34\u0E40\u0E28\u0E29"},timeoutInSeconds:{description:{part1:"\u0E40\u0E27\u0E25\u0E32\u0E08\u0E33\u0E01\u0E31\u0E14 (\u0E27\u0E34\u0E19\u0E32\u0E17\u0E35) \u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E17\u0E38\u0E01\u0E01\u0E32\u0E23\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23",part2:"\u0E2B\u0E32\u0E01",part3:"\u0E16\u0E39\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14 \u0E40\u0E27\u0E25\u0E32\u0E08\u0E33\u0E01\u0E31\u0E14\u0E08\u0E30\u0E16\u0E39\u0E01\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19"},name:"\u0E40\u0E27\u0E25\u0E32\u0E08\u0E33\u0E01\u0E31\u0E14\u0E40\u0E1B\u0E47\u0E19\u0E27\u0E34\u0E19\u0E32\u0E17\u0E35"},treatAsAttachmentExtensions:{description:{part1:"\u0E1E\u0E34\u0E08\u0E32\u0E23\u0E13\u0E32\u0E44\u0E1F\u0E25\u0E4C\u0E17\u0E35\u0E48\u0E21\u0E35\u0E2A\u0E48\u0E27\u0E19\u0E02\u0E22\u0E32\u0E22\u0E40\u0E2B\u0E25\u0E48\u0E32\u0E19\u0E35\u0E49\u0E40\u0E1B\u0E47\u0E19\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A",part2:"\u0E15\u0E32\u0E21\u0E04\u0E48\u0E32\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19",part3:"\u0E41\u0E25\u0E30",part4:"\u0E44\u0E1F\u0E25\u0E4C\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E42\u0E22\u0E07\u0E08\u0E30\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E1E\u0E34\u0E08\u0E32\u0E23\u0E13\u0E32\u0E40\u0E1B\u0E47\u0E19\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A\u0E41\u0E25\u0E30\u0E08\u0E30\u0E44\u0E21\u0E48\u0E22\u0E49\u0E32\u0E22\u0E44\u0E1B\u0E01\u0E31\u0E1A\u0E42\u0E19\u0E49\u0E15",part5:"\u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E2A\u0E48\u0E27\u0E19\u0E02\u0E22\u0E32\u0E22\u0E40\u0E2D\u0E07 \u0E40\u0E0A\u0E48\u0E19",part6:", \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E41\u0E17\u0E19\u0E17\u0E35\u0E48\u0E1E\u0E24\u0E15\u0E34\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49"},name:"\u0E1E\u0E34\u0E08\u0E32\u0E23\u0E13\u0E32\u0E2A\u0E48\u0E27\u0E19\u0E02\u0E22\u0E32\u0E22\u0E02\u0E2D\u0E07\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A"}},promptWithPreviewModal:{previewModal:{title:"\u0E14\u0E39\u0E15\u0E31\u0E27\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E44\u0E1F\u0E25\u0E4C\u0E41\u0E19\u0E1A '{{fullFileName}}'"},title:"\u0E01\u0E23\u0E38\u0E13\u0E32\u0E43\u0E2A\u0E48\u0E04\u0E48\u0E32\u0E02\u0E2D\u0E07\u0E42\u0E17\u0E40\u0E04\u0E19\u0E17\u0E35\u0E48\u0E23\u0E49\u0E2D\u0E07\u0E02\u0E2D"},regularExpression:"/\u0E19\u0E34\u0E1E\u0E08\u0E19\u0E4C\u0E1B\u0E01\u0E15\u0E34/"};var bh={attachmentCollector:{confirm:{part1:"Klas\xF6rlerdeki t\xFCm notlar i\xE7in ekleri yinelemeli olarak toplamak ister misiniz?",part2:"Bu i\u015Flem geri al\u0131namaz."},progressBar:{message:"Ekler toplan\u0131yor {{iterationStr}} - '{{noteFilePath}}'.",title:"Ekler toplan\u0131yor..."}},buttons:{copy:"Kopyala",move:"Ta\u015F\u0131",previewAttachmentFile:"Ek dosyas\u0131n\u0131 \xF6nizle",skip:"Ge\xE7"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"Ek",part2:"birden fazla not taraf\u0131ndan referans al\u0131n\u0131yor."},heading:"Birden fazla not taraf\u0131ndan kullan\u0131lan ek toplama",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Di\u011Fer sorunlu ekler i\xE7in ayn\u0131 eylemi kullan\u0131lmal\u0131"},commands:{collectAttachmentsCurrentFolder:"Mevcut klas\xF6rdeki ekleri topla",collectAttachmentsCurrentNote:"Mevcut nottaki ekleri topla",collectAttachmentsEntireVault:"T\xFCm kasadaki ekleri topla"},menuItems:{collectAttachmentsInFile:"Dosyada ekleri topla",collectAttachmentsInFiles:"Dosyalarda ekleri topla"},notice:{collectingAttachments:"'{{noteFilePath}}' i\xE7in ekler toplan\u0131yor",collectingAttachmentsCancelled:"Ek toplama i\u015Flemi iptal edildi. Ayr\u0131nt\u0131lar i\xE7in konsola bak\u0131n.",generatedAttachmentFileNameIsInvalid:{part1:`Olu\u015Fturulan ek dosya ad\u0131 '{{path}}' ge\xE7ersiz.
|
|
550
|
+
{{validationMessage}}
|
|
551
|
+
Ayarlar\u0131n\u0131z\u0131`,part2:"kontrol edin."},notePathIsIgnored:"Not yolu yok say\u0131ld\u0131"},obsidianDevUtils:{buttons:{cancel:"\u0130ptal",ok:"Tamam"},dataview:{itemsPerPage:"Sayfa ba\u015F\u0131na \xF6\u011Fe:",jumpToPage:"Sayfaya git:"},notices:{attachmentIsStillUsed:"Ek {{attachmentPath}} hala di\u011Fer notlar taraf\u0131ndan kullan\u0131l\u0131yor. Silinmeyecek.",unhandledError:"\u0130\u015Flenmemi\u015F bir hata olu\u015Ftu. L\xFCtfen detaylar i\xE7in konsolu kontrol edin."}},pluginSettings:{attachmentRenameMode:{all:{description:"T\xFCm dosyalar\u0131n ad\u0131 de\u011Fi\u015Ftirilecek.",displayText:"T\xFCm\xFC"},none:{description:"Dosya isimleri korunacak.",displayText:"Hi\xE7biri"},onlyPastedImages:{description:"Yaln\u0131zca yap\u0131\u015Ft\u0131r\u0131lan PNG g\xF6r\xFCnt\xFClerinin isimleri de\u011Fi\u015Ftirilecek. Genellikle ekran g\xF6r\xFCnt\xFCs\xFC yap\u0131\u015Ft\u0131rmak i\xE7in kullan\u0131l\u0131r.",displayText:"Yaln\u0131zca yap\u0131\u015Ft\u0131r\u0131lan g\xF6r\xFCnt\xFCler"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"Ek toplama i\u015Flemini iptal et.",displayText:"\u0130ptal"},copy:{description:"Eki yeni konuma kopyala.",displayText:"Kopyala"},move:{description:"Eki yeni konuma ta\u015F\u0131.",displayText:"Ta\u015F\u0131"},prompt:{description:"Kullan\u0131c\u0131dan i\u015Flem se\xE7mesini iste.",displayText:"\u0130ste"},skip:{description:"Eki atla ve sonraki ekleme ge\xE7.",displayText:"Atla"}},defaultImageSizeDimension:{height:"Y\xFCkseklik",width:"Geni\u015Flik"},emptyAttachmentFolderBehavior:{delete:{description:"Bo\u015F eki klas\xF6r\xFCn\xFC silecek.",displayText:"Sil"},deleteWithEmptyParents:{description:"Bo\u015F eki klas\xF6r\xFC ve bo\u015F \xFCst klas\xF6rlerini silecek.",displayText:"Bo\u015F ebeveynlerle sil"},keep:{description:"Bo\u015F eki klas\xF6r\xFCn\xFC koruyacak.",displayText:"Koru"}}},pluginSettingsManager:{customToken:{codeComment:`// \xD6zel tokenler yorum sat\u0131r\u0131 yap\u0131ld\u0131, 9.0.0 s\xFCr\xFCm\xFCnde de\u011Fi\u015Fen formata g\xFCncellenmesi gerekiyor.
|
|
552
|
+
// Daha fazla bilgi i\xE7in dok\xFCmantasyona bak\u0131n\u0131z.`,deprecated:{part1:"9.0.0 s\xFCr\xFCm\xFCnde \xF6zel token kay\u0131t format\u0131 de\u011Fi\u015Fti. L\xFCtfen tokenlerinizi g\xFCncelleyin. Detaylar i\xE7in",part2:"dok\xFCmantasyona",part3:"bak\u0131n\u0131z."}},legacyRenameAttachmentsToLowerCase:{part1:"9.0.0 s\xFCr\xFCm\xFCnde bu",part2:"ayar kullan\u0131m d\u0131\u015F\u0131 b\u0131rak\u0131ld\u0131. Bunun yerine",part3:"format\u0131n\u0131 kullan\u0131n. Detaylar i\xE7in",part4:"dok\xFCmantasyona",part5:"bak\u0131n\u0131z."},markdownUrlFormat:{deprecated:{part1:"Potansiyel olarak hatal\u0131 bir de\u011Fer ayarland\u0131:",part2:"format. L\xFCtfen",part3:"dok\xFCmantasyona",part4:"bak\u0131n\u0131z.",part5:"Bu mesaj tekrar g\xF6sterilmeyecek."}},specialCharacters:{part1:"9.16.0 s\xFCr\xFCm\xFCnde,",part2:"varsay\u0131lan ayar de\u011Fi\u015Ftirildi. Ayar\u0131n\u0131z yeni varsay\u0131lan olarak g\xFCncellendi."},validation:{defaultImageSizeMustBePercentageOrPixels:"Varsay\u0131lan resim boyutu piksel veya y\xFCzde olmal\u0131d\u0131r",invalidCustomTokensCode:"Ge\xE7ersiz \xF6zel token kodu",invalidRegularExpression:"Ge\xE7ersiz d\xFCzenli ifade {{regExp}}",specialCharactersMustNotContainSlash:"\xD6zel karakterler / i\xE7ermemelidir",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"\xD6zel karakterler ge\xE7ersiz dosya ad\u0131 veya yol karakterleri i\xE7ermemelidir"},version:{part1:"Ayarlar dosyan\u0131z ",part2:"\u015Fu s\xFCr\xFCme sahip: ",part3:"Bu s\xFCr\xFCm, mevcut eklenti s\xFCr\xFCm\xFCnden daha yenidir.",part4:"Eklenti beklendi\u011Fi gibi \xE7al\u0131\u015Fmayabilir. L\xFCtfen eklentiyi en son s\xFCr\xFCme g\xFCncelleyin veya ayarlar\u0131n do\u011Fru oldu\u011Fundan emin olun."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"Dosya eklerken:"},name:"Ek dosya yeniden adland\u0131rma modu"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Toplanan ek birden fazla notta kullan\u0131ld\u0131\u011F\u0131nda:"},name:"Birden fazla notta kullan\u0131lan ek toplama modu"},collectedAttachmentFileName:{description:{part1:"Mevcut",part2:"tokenlara bak\u0131n\u0131z"},name:"Toplanan ek dosya ad\u0131"},customTokens:{description:{part1:"Kullan\u0131lacak \xF6zel tokenlar.",part2:"Bak\u0131n\u0131z",part3:"dok\xFCmantasyon",part4:"daha fazla bilgi i\xE7in.",part5:"\u26A0\uFE0F \xD6zel tokenlar herhangi bir JavaScript kodu olabilir. Hatal\u0131 yaz\u0131l\u0131rsa veri kayb\u0131na yol a\xE7abilir. Kendi sorumlulu\u011Funuzda kullan\u0131n."},name:"\xD6zel tokenlar"},defaultImageSize:{description:{part1:"Varsay\u0131lan resim boyutu.",part2:"Piksel olarak belirtilebilir",part3:"Tam resim boyutunun y\xFCzdesi olarak",part4:"Orijinal resim boyutunu kullanmak i\xE7in bo\u015F b\u0131rak\u0131n."},name:"Varsay\u0131lan resim boyutu"},duplicateNameSeparator:{description:{part1:"Mevcut bir dosya ad\u0131yla ayn\u0131 olan dosya yap\u0131\u015Ft\u0131r\u0131l\u0131r/ta\u015F\u0131n\u0131rsa, bu ay\u0131r\u0131c\u0131 dosya ad\u0131na eklenir.",part2:"\xD6rne\u011Fin, dosya s\xFCr\xFCklendi\u011Finde",part3:"\u015Funa yeniden adland\u0131r\u0131l\u0131r ",part4:", vb., ilk uygun ad bulunana kadar."},name:"Yinelenen ad ay\u0131r\u0131c\u0131"},emptyAttachmentFolderBehavior:{description:{part1:"Ek klas\xF6r\xFC bo\u015F oldu\u011Funda:"},name:"Bo\u015F ek klas\xF6r\xFC davran\u0131\u015F\u0131"},excludePaths:{description:{part1:"A\u015Fa\u011F\u0131daki yollardaki notlar\u0131 hari\xE7 tut.",part2:"Her yolu yeni sat\u0131ra yaz\u0131n.",part3:"Yol dizisi veya",part4:"E\u011Fer ayar bo\u015Fsa, hi\xE7 bir not hari\xE7 tutulmaz."},name:"Hari\xE7 tutulan yollar"},excludePathsFromAttachmentCollecting:{description:{part1:"A\u015Fa\u011F\u0131daki yollardan ekler hari\xE7 tutulur,",part2:"Ekleri topla",part3:"komutu \xE7al\u0131\u015Ft\u0131r\u0131ld\u0131\u011F\u0131nda.",part4:"Her yolu yeni sat\u0131ra yaz\u0131n.",part5:"Yol dizisi veya",part6:"E\u011Fer ayar bo\u015Fsa, hi\xE7 bir yol hari\xE7 tutulmaz."},name:"Ek toplarken hari\xE7 tutulan yollar"},generatedAttachmentFileName:{description:{part1:"Mevcut",part2:"tokenlara bak\u0131n\u0131z"},name:"Olu\u015Fturulan ek dosya ad\u0131"},includePaths:{description:{part1:"A\u015Fa\u011F\u0131daki yollardan notlar dahil edilir.",part2:"Her yolu yeni sat\u0131ra yaz\u0131n.",part3:"Yol dizisi veya",part4:"E\u011Fer ayar bo\u015Fsa, t\xFCm notlar dahil edilir."},name:"Dahil edilen yollar"},jpegQuality:{description:"Kalite ne kadar d\xFC\u015F\xFCkse, s\u0131k\u0131\u015Ft\u0131rma oran\u0131 o kadar y\xFCksek olur.",name:"JPEG Kalitesi"},locationForNewAttachments:{description:{part1:"G\xF6receli yol kullanmak i\xE7in",part2:"ile ba\u015Flay\u0131n.",part3:"Mevcut",part4:"tokenlara bak\u0131n\u0131z",part5:"Nokta ile ba\u015Flayan klas\xF6rler gibi",part6:"Obsidian taraf\u0131ndan takip edilmez, y\xF6netmek i\xE7in eklenti gerekebilir.",part7:"Kullanman\u0131z gerekebilir."},name:"Yeni ekler i\xE7in konum"},markdownUrlFormat:{description:{part1:"Markdown i\xE7ine eklenecek URL format\u0131.",part2:"Mevcut",part3:"tokenlara bak\u0131n\u0131z",part4:"Varsay\u0131lan format i\xE7in bo\u015F b\u0131rak\u0131n."},name:"Markdown URL format\u0131"},renameAttachmentsToLowerCase:"Eklerin dosya adlar\u0131n\u0131 k\xFC\xE7\xFCk harfe \xE7evir",renamedAttachmentFileName:{description:{part1:"Mevcut",part2:"tokenlara bak\u0131n\u0131z"},name:"Yeniden adland\u0131r\u0131lan ek dosya ad\u0131"},resetToSampleCustomTokens:{message:"\xD6zel tokenlar\u0131 \xF6rnek tokenlara s\u0131f\u0131rlamak istedi\u011Finize emin misiniz? De\u011Fi\u015Fiklikleriniz kaybolacak.",title:"\xD6rnek tokenlara s\u0131f\u0131rla"},shouldConvertPastedImagesToJpeg:{description:"Yap\u0131\u015Ft\u0131r\u0131lan g\xF6r\xFCnt\xFClerin JPEG'e d\xF6n\xFC\u015Ft\xFCr\xFCl\xFCp d\xF6n\xFC\u015Ft\xFCr\xFClmeyece\u011Fi. Sadece PNG i\xE7eri\u011Fi direkt olarak pano\u2019dan yap\u0131\u015Ft\u0131r\u0131ld\u0131\u011F\u0131nda ge\xE7erlidir. Genellikle ekran g\xF6r\xFCnt\xFCleri i\xE7in.",name:"Yap\u0131\u015Ft\u0131r\u0131lan g\xF6r\xFCnt\xFCleri JPEG'e d\xF6n\xFC\u015Ft\xFCr"},shouldDeleteOrphanAttachments:{description:"Etkinle\u015Ftirilirse, not silindi\u011Finde yetim ekler de silinir.",name:"Yetim ekleri sil"},shouldRenameAttachmentFiles:{description:{part1:"Etkinle\u015Ftirilirse, bir not yeniden adland\u0131r\u0131ld\u0131\u011F\u0131nda veya ta\u015F\u0131nd\u0131\u011F\u0131nda ekleri",part2:"ayar\u0131na g\xF6re yeniden adland\u0131r\u0131lacakt\u0131r."},name:"Ek dosyalar\u0131n\u0131 yeniden adland\u0131r"},shouldRenameAttachmentFolders:{description:"Bir not yeniden adland\u0131r\u0131ld\u0131\u011F\u0131nda veya ta\u015F\u0131nd\u0131\u011F\u0131nda ek klas\xF6rleri yeniden adland\u0131r\u0131ls\u0131n m\u0131?",name:"Ek klas\xF6rlerini yeniden adland\u0131r"},shouldRenameCollectedAttachments:{description:{part1:"Aktifse,",part2:"Ekleri topla",part3:"komutlar\u0131 ile i\u015Flenen ekler",part4:"ayar\u0131na g\xF6re yeniden adland\u0131r\u0131l\u0131r."},name:"Toplanan ek dosyalar\u0131n\u0131 yeniden adland\u0131r"},specialCharacters:{description:{part1:"Ek klas\xF6r\xFC ve dosya ad\u0131ndaki \xF6zel karakterler de\u011Fi\u015Ftirilir veya kald\u0131r\u0131l\u0131r.",part2:"Korumak i\xE7in bo\u015F b\u0131rak\u0131n."},name:"\xD6zel karakterler"},specialCharactersReplacement:{description:{part1:"Ek klas\xF6r\xFC ve dosya ad\u0131ndaki \xF6zel karakterler i\xE7in de\u011Fi\u015Ftirme dizisi.",part2:"\xD6zel karakterleri kald\u0131rmak i\xE7in bo\u015F b\u0131rak\u0131n."},name:"\xD6zel karakterler i\xE7in de\u011Fi\u015Ftirme"},timeoutInSeconds:{description:{part1:"T\xFCm i\u015Flemler i\xE7in zaman a\u015F\u0131m\u0131 s\xFCresi (saniye).",part2:"E\u011Fer",part3:"ayarlan\u0131rsa, zaman a\u015F\u0131m\u0131 devre d\u0131\u015F\u0131 b\u0131rak\u0131l\u0131r."},name:"Zaman a\u015F\u0131m\u0131 (saniye)"},treatAsAttachmentExtensions:{description:{part1:"Bu uzant\u0131lara sahip dosyalar ek olarak kabul edilir.",part2:"Varsay\u0131lan olarak",part3:"ve",part4:"ba\u011Fl\u0131 dosyalar ek olarak kabul edilmez ve not ile ta\u015F\u0131nmaz.",part5:"\xD6zel uzant\u0131lar ekleyebilirsiniz, \xF6rn.",part6:", bu davran\u0131\u015F\u0131 de\u011Fi\u015Ftirmek i\xE7in."},name:"Ek uzant\u0131lar\u0131 olarak i\u015Fle"}},promptWithPreviewModal:{previewModal:{title:"Ek dosyas\u0131n\u0131 \xF6nizle '{{fullFileName}}'"},title:"\u0130stem token\u0131 i\xE7in bir de\u011Fer girin"},regularExpression:"/d\xFCzenli ifade/"};var Ah={attachmentCollector:{confirm:{part1:"\u0411\u0430\u0436\u0430\u0454\u0442\u0435 \u0437\u0456\u0431\u0440\u0430\u0442\u0438 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F \u0434\u043B\u044F \u0432\u0441\u0456\u0445 \u043D\u043E\u0442\u0430\u0442\u043E\u043A \u0443 \u043F\u0430\u043F\u043A\u0430\u0445 \u0440\u0435\u043A\u0443\u0440\u0441\u0438\u0432\u043D\u043E?",part2:"\u0426\u044E \u043E\u043F\u0435\u0440\u0430\u0446\u0456\u044E \u043D\u0435\u043C\u043E\u0436\u043B\u0438\u0432\u043E \u0441\u043A\u0430\u0441\u0443\u0432\u0430\u0442\u0438."},progressBar:{message:"\u0417\u0431\u0438\u0440\u0430\u043D\u043D\u044F \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C {{iterationStr}} - '{{noteFilePath}}'.",title:"\u0417\u0431\u0438\u0440\u0430\u043D\u043D\u044F \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C..."}},buttons:{copy:"\u041A\u043E\u043F\u0456\u044E\u0432\u0430\u0442\u0438",move:"\u041F\u0435\u0440\u0435\u043C\u0456\u0441\u0442\u0438\u0442\u0438",previewAttachmentFile:"\u041F\u043E\u043F\u0435\u0440\u0435\u0434\u043D\u0456\u0439 \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043E\u0433\u043E \u0444\u0430\u0439\u043B\u0443",skip:"\u041F\u0440\u043E\u043F\u0443\u0441\u0442\u0438\u0442\u0438"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"\u0412\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F",part2:"\u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454\u0442\u044C\u0441\u044F \u043A\u0456\u043B\u044C\u043A\u043E\u043C\u0430 \u043D\u043E\u0442\u0430\u0442\u043A\u0430\u043C\u0438."},heading:"\u0417\u0431\u0438\u0440\u0430\u043D\u043D\u044F \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F, \u044F\u043A\u0435 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454\u0442\u044C\u0441\u044F \u043A\u0456\u043B\u044C\u043A\u043E\u043C\u0430 \u043D\u043E\u0442\u0430\u0442\u043A\u0430\u043C\u0438",shouldUseSameActionForOtherProblematicAttachmentsToggle:"\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0442\u0443 \u0441\u0430\u043C\u0443 \u0434\u0456\u044E \u0434\u043B\u044F \u0456\u043D\u0448\u0438\u0445 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u043D\u0438\u0445 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C"},commands:{collectAttachmentsCurrentFolder:"\u0417\u0456\u0431\u0440\u0430\u0442\u0438 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F \u0432 \u043F\u043E\u0442\u043E\u0447\u043D\u0456\u0439 \u043F\u0430\u043F\u0446\u0456",collectAttachmentsCurrentNote:"\u0417\u0456\u0431\u0440\u0430\u0442\u0438 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F \u0432 \u043F\u043E\u0442\u043E\u0447\u043D\u0456\u0439 \u043D\u043E\u0442\u0430\u0442\u0446\u0456",collectAttachmentsEntireVault:"\u0417\u0456\u0431\u0440\u0430\u0442\u0438 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F \u0432 \u0443\u0441\u044C\u043E\u043C\u0443 \u0441\u0445\u043E\u0432\u0438\u0449\u0456"},menuItems:{collectAttachmentsInFile:"\u0417\u0456\u0431\u0440\u0430\u0442\u0438 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F \u0443 \u0444\u0430\u0439\u043B\u0456",collectAttachmentsInFiles:"\u0417\u0456\u0431\u0440\u0430\u0442\u0438 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F \u0443 \u0444\u0430\u0439\u043B\u0430\u0445"},notice:{collectingAttachments:"\u0417\u0431\u0438\u0440\u0430\u043D\u043D\u044F \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C \u0434\u043B\u044F '{{noteFilePath}}'",collectingAttachmentsCancelled:"\u0417\u0431\u0438\u0440\u0430\u043D\u043D\u044F \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C \u0441\u043A\u0430\u0441\u043E\u0432\u0430\u043D\u043E. \u0414\u0438\u0432\u0456\u0442\u044C\u0441\u044F \u043A\u043E\u043D\u0441\u043E\u043B\u044C \u0434\u043B\u044F \u0434\u0435\u0442\u0430\u043B\u0435\u0439.",generatedAttachmentFileNameIsInvalid:{part1:`\u0417\u0433\u0435\u043D\u0435\u0440\u043E\u0432\u0430\u043D\u0430 \u043D\u0430\u0437\u0432\u0430 \u0444\u0430\u0439\u043B\u0443 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F '{{path}}' \u043D\u0435\u0434\u0456\u0439\u0441\u043D\u0430.
|
|
553
|
+
{{validationMessage}}
|
|
554
|
+
\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0442\u0435 \u0432\u0430\u0448\u0456`,part2:"\u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F."},notePathIsIgnored:"\u0428\u043B\u044F\u0445 \u043D\u043E\u0442\u0430\u0442\u043A\u0438 \u0456\u0433\u043D\u043E\u0440\u0443\u0454\u0442\u044C\u0441\u044F"},obsidianDevUtils:{buttons:{cancel:"\u0421\u043A\u0430\u0441\u0443\u0432\u0430\u0442\u0438",ok:"\u041E\u041A"},dataview:{itemsPerPage:"\u0415\u043B\u0435\u043C\u0435\u043D\u0442\u0456\u0432 \u043D\u0430 \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0443:",jumpToPage:"\u041F\u0435\u0440\u0435\u0439\u0442\u0438 \u043D\u0430 \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0443:"},notices:{attachmentIsStillUsed:"\u0412\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F {{attachmentPath}} \u0432\u0441\u0435 \u0449\u0435 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454\u0442\u044C\u0441\u044F \u0456\u043D\u0448\u0438\u043C\u0438 \u043D\u043E\u0442\u0430\u0442\u043A\u0430\u043C\u0438. \u0412\u043E\u043D\u043E \u043D\u0435 \u0431\u0443\u0434\u0435 \u0432\u0438\u0434\u0430\u043B\u0435\u043D\u043E.",unhandledError:"\u0421\u0442\u0430\u043B\u0430\u0441\u044F \u043D\u0435\u043E\u0431\u0440\u043E\u0431\u043B\u0435\u043D\u0430 \u043F\u043E\u043C\u0438\u043B\u043A\u0430. \u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u0442\u0435 \u043A\u043E\u043D\u0441\u043E\u043B\u044C \u0434\u043B\u044F \u043E\u0442\u0440\u0438\u043C\u0430\u043D\u043D\u044F \u0434\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u043E\u0457 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u0457."}},pluginSettings:{attachmentRenameMode:{all:{description:"\u0432\u0441\u0456 \u0444\u0430\u0439\u043B\u0438 \u043F\u0435\u0440\u0435\u0439\u043C\u0435\u043D\u043E\u0432\u0443\u044E\u0442\u044C\u0441\u044F.",displayText:"\u0412\u0441\u0456"},none:{description:"\u0457\u0445\u043D\u0456 \u043D\u0430\u0437\u0432\u0438 \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u044E\u0442\u044C\u0441\u044F.",displayText:"\u0416\u043E\u0434\u0435\u043D"},onlyPastedImages:{description:"\u0442\u0456\u043B\u044C\u043A\u0438 \u0432\u0441\u0442\u0430\u0432\u043B\u0435\u043D\u0456 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u043F\u0435\u0440\u0435\u0439\u043C\u0435\u043D\u043E\u0432\u0443\u044E\u0442\u044C\u0441\u044F. \u0417\u0430\u0441\u0442\u043E\u0441\u043E\u0432\u0443\u0454\u0442\u044C\u0441\u044F \u0442\u0456\u043B\u044C\u043A\u0438 \u043A\u043E\u043B\u0438 \u043A\u043E\u043D\u0442\u0435\u043D\u0442 PNG \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u0432\u0441\u0442\u0430\u0432\u043B\u044F\u0454\u0442\u044C\u0441\u044F \u0431\u0435\u0437\u043F\u043E\u0441\u0435\u0440\u0435\u0434\u043D\u044C\u043E \u0437 \u0431\u0443\u0444\u0435\u0440\u0430 \u043E\u0431\u043C\u0456\u043D\u0443. \u0417\u0430\u0437\u0432\u0438\u0447\u0430\u0439, \u0434\u043B\u044F \u0432\u0441\u0442\u0430\u0432\u043A\u0438 \u0441\u043A\u0440\u0456\u043D\u0448\u043E\u0442\u0456\u0432.",displayText:"\u0422\u0456\u043B\u044C\u043A\u0438 \u0432\u0441\u0442\u0430\u0432\u043B\u0435\u043D\u0456 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"\u0441\u043A\u0430\u0441\u0443\u0432\u0430\u0442\u0438 \u0437\u0431\u0456\u0440 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C.",displayText:"\u0421\u043A\u0430\u0441\u0443\u0432\u0430\u0442\u0438"},copy:{description:"\u043A\u043E\u043F\u0456\u044E\u0432\u0430\u0442\u0438 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F \u0432 \u043D\u043E\u0432\u0435 \u043C\u0456\u0441\u0446\u0435.",displayText:"\u041A\u043E\u043F\u0456\u044E\u0432\u0430\u0442\u0438"},move:{description:"\u043F\u0435\u0440\u0435\u043C\u0456\u0441\u0442\u0438\u0442\u0438 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F \u0432 \u043D\u043E\u0432\u0435 \u043C\u0456\u0441\u0446\u0435.",displayText:"\u041F\u0435\u0440\u0435\u043C\u0456\u0441\u0442\u0438\u0442\u0438"},prompt:{description:"\u0437\u0430\u043F\u0438\u0442\u0430\u0442\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 \u043F\u0440\u043E \u0432\u0438\u0431\u0456\u0440 \u0434\u0456\u0457.",displayText:"\u0417\u0430\u043F\u0438\u0442\u0430\u0442\u0438"},skip:{description:"\u043F\u0440\u043E\u043F\u0443\u0441\u0442\u0438\u0442\u0438 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F \u0442\u0430 \u043F\u0435\u0440\u0435\u0439\u0442\u0438 \u0434\u043E \u043D\u0430\u0441\u0442\u0443\u043F\u043D\u043E\u0433\u043E.",displayText:"\u041F\u0440\u043E\u043F\u0443\u0441\u0442\u0438\u0442\u0438"}},defaultImageSizeDimension:{height:"\u0412\u0438\u0441\u043E\u0442\u0430",width:"\u0428\u0438\u0440\u0438\u043D\u0430"},emptyAttachmentFolderBehavior:{delete:{description:"\u0432\u0438\u0434\u0430\u043B\u0438\u0442\u044C \u043F\u043E\u0440\u043E\u0436\u043D\u044E \u043F\u0430\u043F\u043A\u0443 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C.",displayText:"\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438"},deleteWithEmptyParents:{description:"\u0432\u0438\u0434\u0430\u043B\u0438\u0442\u044C \u043F\u043E\u0440\u043E\u0436\u043D\u044E \u043F\u0430\u043F\u043A\u0443 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C \u0456 \u043F\u043E\u0440\u043E\u0436\u043D\u0456 \u0431\u0430\u0442\u044C\u043A\u0456\u0432\u0441\u044C\u043A\u0456 \u043F\u0430\u043F\u043A\u0438.",displayText:"\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u0437 \u043F\u043E\u0440\u043E\u0436\u043D\u0456\u043C\u0438 \u0431\u0430\u0442\u044C\u043A\u0456\u0432\u0441\u044C\u043A\u0438\u043C\u0438"},keep:{description:"\u0437\u0431\u0435\u0440\u0435\u0436\u0435 \u043F\u043E\u0440\u043E\u0436\u043D\u044E \u043F\u0430\u043F\u043A\u0443 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C.",displayText:"\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438"}}},pluginSettingsManager:{customToken:{codeComment:`// \u041A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044C\u043A\u0456 \u0442\u043E\u043A\u0435\u043D\u0438 \u0431\u0443\u043B\u0438 \u0437\u0430\u043A\u043E\u043C\u0435\u043D\u0442\u043E\u0432\u0430\u043D\u0456, \u043E\u0441\u043A\u0456\u043B\u044C\u043A\u0438 \u0457\u0445 \u043F\u043E\u0442\u0440\u0456\u0431\u043D\u043E \u043E\u043D\u043E\u0432\u0438\u0442\u0438 \u0434\u043E \u043D\u043E\u0432\u043E\u0433\u043E \u0444\u043E\u0440\u043C\u0430\u0442\u0443, \u0432\u0432\u0435\u0434\u0435\u043D\u043E\u0433\u043E \u0443 \u0432\u0435\u0440\u0441\u0456\u0457 9.0.0 \u043F\u043B\u0430\u0433\u0456\u043D\u0430.
|
|
555
|
+
// \u0414\u0438\u0432. \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0456\u044E.`,deprecated:{part1:"\u0423 \u0432\u0435\u0440\u0441\u0456\u0457 9.0.0 \u043F\u043B\u0430\u0433\u0456\u043D\u0430 \u0437\u043C\u0456\u043D\u0438\u0432\u0441\u044F \u0444\u043E\u0440\u043C\u0430\u0442 \u0440\u0435\u0454\u0441\u0442\u0440\u0430\u0446\u0456\u0457 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044C\u043A\u0438\u0445 \u0442\u043E\u043A\u0435\u043D\u0456\u0432. \u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u043E\u043D\u043E\u0432\u0456\u0442\u044C \u0441\u0432\u043E\u0457 \u0442\u043E\u043A\u0435\u043D\u0438. \u0414\u043E\u043A\u043B\u0430\u0434\u043D\u0456\u0448\u0435 \u0443",part2:"\u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0456\u0457",part3:""}},legacyRenameAttachmentsToLowerCase:{part1:"\u0423 \u0432\u0435\u0440\u0441\u0456\u0457 9.0.0 \u043F\u043B\u0430\u0433\u0456\u043D\u0430 \u0446\u044F",part2:"\u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0437\u0430\u0441\u0442\u0430\u0440\u0456\u043B\u0430. \u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u0439\u0442\u0435",part3:"\u0444\u043E\u0440\u043C\u0430\u0442 \u0437\u0430\u043C\u0456\u0441\u0442\u044C \u043D\u0435\u0457. \u0414\u0438\u0432. \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0456\u044E",part4:"",part5:""},markdownUrlFormat:{deprecated:{part1:"\u0423 \u0432\u0430\u0441 \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0435 \u043F\u043E\u0442\u0435\u043D\u0446\u0456\u0439\u043D\u043E \u043D\u0435\u043A\u043E\u0440\u0435\u043A\u0442\u043D\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u043D\u044F \u0434\u043B\u044F",part2:"\u0444\u043E\u0440\u043C\u0430\u0442\u0443. \u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u0434\u0438\u0432\u0456\u0442\u044C\u0441\u044F",part3:"\u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0456\u044E",part4:"\u0414\u043B\u044F \u0431\u0456\u043B\u044C\u0448 \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0457 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u0457",part5:"\u0426\u0435 \u043F\u043E\u0432\u0456\u0434\u043E\u043C\u043B\u0435\u043D\u043D\u044F \u0431\u0456\u043B\u044C\u0448\u0435 \u043D\u0435 \u0431\u0443\u0434\u0435 \u0432\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0430\u0442\u0438\u0441\u044F."}},specialCharacters:{part1:"\u0423 \u0432\u0435\u0440\u0441\u0456\u0457 9.16.0 \u043F\u043B\u0430\u0433\u0456\u043D\u0430",part2:"\u0437\u043D\u0430\u0447\u0435\u043D\u043D\u044F \u0437\u0430 \u0437\u0430\u043C\u043E\u0432\u0447\u0443\u0432\u0430\u043D\u043D\u044F\u043C \u0431\u0443\u043B\u043E \u0437\u043C\u0456\u043D\u0435\u043D\u043E. \u0412\u0430\u0448\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u043D\u044F \u043E\u043D\u043E\u0432\u043B\u0435\u043D\u043E \u0432\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u043D\u043E \u0434\u043E \u043D\u043E\u0432\u043E\u0433\u043E \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u0443."},validation:{defaultImageSizeMustBePercentageOrPixels:"\u0420\u043E\u0437\u043C\u0456\u0440 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u0437\u0430 \u0437\u0430\u043C\u043E\u0432\u0447\u0443\u0432\u0430\u043D\u043D\u044F\u043C \u043C\u0430\u0454 \u0431\u0443\u0442\u0438 \u0432 \u043F\u0456\u043A\u0441\u0435\u043B\u044F\u0445 \u0430\u0431\u043E \u0432\u0456\u0434\u0441\u043E\u0442\u043A\u0430\u0445",invalidCustomTokensCode:"\u041D\u0435\u0432\u0456\u0440\u043D\u0438\u0439 \u043A\u043E\u0434 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044C\u043A\u0438\u0445 \u0442\u043E\u043A\u0435\u043D\u0456\u0432",invalidRegularExpression:"\u041D\u0435\u0432\u0456\u0440\u043D\u0438\u0439 \u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u0438\u0439 \u0432\u0438\u0440\u0430\u0437 {{regExp}}",specialCharactersMustNotContainSlash:"\u0421\u043F\u0435\u0446\u0456\u0430\u043B\u044C\u043D\u0456 \u0441\u0438\u043C\u0432\u043E\u043B\u0438 \u043D\u0435 \u043F\u043E\u0432\u0438\u043D\u043D\u0456 \u043C\u0456\u0441\u0442\u0438\u0442\u0438 /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"\u0417\u0430\u043C\u0456\u043D\u0430 \u0441\u043F\u0435\u0446\u0456\u0430\u043B\u044C\u043D\u0438\u0445 \u0441\u0438\u043C\u0432\u043E\u043B\u0456\u0432 \u043D\u0435 \u043F\u043E\u0432\u0438\u043D\u043D\u0430 \u043C\u0456\u0441\u0442\u0438\u0442\u0438 \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u0456 \u0441\u0438\u043C\u0432\u043E\u043B\u0438 \u0448\u043B\u044F\u0445\u0443 \u0430\u0431\u043E \u0456\u043C\u0435\u043D\u0456 \u0444\u0430\u0439\u043B\u0443."},version:{part1:"\u0412\u0430\u0448 \u0444\u0430\u0439\u043B \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u044C ",part2:"\u043C\u0430\u0454 \u0432\u0435\u0440\u0441\u0456\u044E",part3:"\u044F\u043A\u0430 \u043D\u043E\u0432\u0456\u0448\u0430 \u0437\u0430 \u043F\u043E\u0442\u043E\u0447\u043D\u0443 \u0432\u0435\u0440\u0441\u0456\u044E \u043F\u043B\u0430\u0433\u0456\u043D\u0430",part4:"\u041F\u043B\u0430\u0433\u0456\u043D \u043C\u043E\u0436\u0435 \u043F\u0440\u0430\u0446\u044E\u0432\u0430\u0442\u0438 \u043D\u0435\u043A\u043E\u0440\u0435\u043A\u0442\u043D\u043E. \u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u043E\u043D\u043E\u0432\u0456\u0442\u044C \u043F\u043B\u0430\u0433\u0456\u043D \u0434\u043E \u043E\u0441\u0442\u0430\u043D\u043D\u044C\u043E\u0457 \u0432\u0435\u0440\u0441\u0456\u0457 \u0430\u0431\u043E \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u0442\u0435 \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0456\u0441\u0442\u044C \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u044C."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"\u041F\u0440\u0438 \u0434\u043E\u0434\u0430\u0432\u0430\u043D\u043D\u0456 \u0444\u0430\u0439\u043B\u0456\u0432:"},name:"\u0420\u0435\u0436\u0438\u043C \u043F\u0435\u0440\u0435\u0439\u043C\u0435\u043D\u0443\u0432\u0430\u043D\u043D\u044F \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"\u042F\u043A\u0449\u043E \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454\u0442\u044C\u0441\u044F \u043A\u0456\u043B\u044C\u043A\u043E\u043C\u0430 \u043D\u043E\u0442\u0430\u0442\u043A\u0430\u043C\u0438:"},name:"\u0420\u0435\u0436\u0438\u043C \u0437\u0431\u043E\u0440\u0443 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C, \u044F\u043A\u0456 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u044E\u0442\u044C\u0441\u044F \u043A\u0456\u043B\u044C\u043A\u043E\u043C\u0430 \u043D\u043E\u0442\u0430\u0442\u043A\u0430\u043C\u0438"},collectedAttachmentFileName:{description:{part1:"\u0414\u0438\u0432. \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0456",part2:"\u0442\u043E\u043A\u0435\u043D\u0438"},name:"\u041D\u0430\u0437\u0432\u0430 \u0437\u0456\u0431\u0440\u0430\u043D\u043E\u0433\u043E \u0444\u0430\u0439\u043B\u0443 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F"},customTokens:{description:{part1:"\u041A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044C\u043A\u0456 \u0442\u043E\u043A\u0435\u043D\u0438 \u0434\u043B\u044F \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F.",part2:"\u0414\u0438\u0432\u0456\u0442\u044C\u0441\u044F",part3:"\u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0456\u044E",part4:"\u0414\u043B\u044F \u0431\u0456\u043B\u044C\u0448 \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0457 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u0457",part5:"\u26A0\uFE0F \u041A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044C\u043A\u0456 \u0442\u043E\u043A\u0435\u043D\u0438 \u043C\u043E\u0436\u0443\u0442\u044C \u043C\u0456\u0441\u0442\u0438\u0442\u0438 \u0434\u043E\u0432\u0456\u043B\u044C\u043D\u0438\u0439 \u043A\u043E\u0434 JavaScript. \u041F\u0440\u0438 \u043D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E\u043C\u0443 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u0456 \u043C\u043E\u0436\u043B\u0438\u0432\u0456 \u0432\u0442\u0440\u0430\u0442\u0438 \u0434\u0430\u043D\u0438\u0445. \u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0439\u0442\u0435 \u043D\u0430 \u0441\u0432\u0456\u0439 \u0440\u0438\u0437\u0438\u043A."},name:"\u041A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044C\u043A\u0456 \u0442\u043E\u043A\u0435\u043D\u0438"},defaultImageSize:{description:{part1:"\u0420\u043E\u0437\u043C\u0456\u0440 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u0437\u0430 \u0437\u0430\u043C\u043E\u0432\u0447\u0443\u0432\u0430\u043D\u043D\u044F\u043C.",part2:"\u041C\u043E\u0436\u043D\u0430 \u0432\u043A\u0430\u0437\u0430\u0442\u0438 \u0432 \u043F\u0456\u043A\u0441\u0435\u043B\u044F\u0445",part3:"\u0430\u0431\u043E \u0432\u0456\u0434\u0441\u043E\u0442\u043A\u0430\u0445 \u0432\u0456\u0434 \u043F\u043E\u0432\u043D\u043E\u0433\u043E \u0440\u043E\u0437\u043C\u0456\u0440\u0443 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F",part4:"\u0417\u0430\u043B\u0438\u0448\u0442\u0435 \u043F\u043E\u0440\u043E\u0436\u043D\u0456\u043C, \u0449\u043E\u0431 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u043E\u0440\u0438\u0433\u0456\u043D\u0430\u043B\u044C\u043D\u0438\u0439 \u0440\u043E\u0437\u043C\u0456\u0440 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F."},name:"\u0420\u043E\u0437\u043C\u0456\u0440 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u0437\u0430 \u0437\u0430\u043C\u043E\u0432\u0447\u0443\u0432\u0430\u043D\u043D\u044F\u043C"},duplicateNameSeparator:{description:{part1:"\u041A\u043E\u043B\u0438 \u0432\u0438 \u0432\u0441\u0442\u0430\u0432\u043B\u044F\u0454\u0442\u0435/\u043F\u0435\u0440\u0435\u0442\u044F\u0433\u0443\u0454\u0442\u0435 \u0444\u0430\u0439\u043B \u0456\u0437 \u0442\u0430\u043A\u0438\u043C \u0441\u0430\u043C\u0438\u043C \u0456\u043C\u2019\u044F\u043C \u044F\u043A \u0456\u0441\u043D\u0443\u044E\u0447\u0438\u0439 \u0444\u0430\u0439\u043B, \u0431\u0443\u0434\u0435 \u0434\u043E\u0434\u0430\u043D\u0438\u0439 \u0440\u043E\u0437\u0434\u0456\u043B\u044C\u043D\u0438\u043A.",part2:"\u041D\u0430\u043F\u0440\u0438\u043A\u043B\u0430\u0434, \u043F\u0440\u0438 \u043F\u0435\u0440\u0435\u0442\u044F\u0433\u0443\u0432\u0430\u043D\u043D\u0456 \u0444\u0430\u0439\u043B\u0443",part3:"\u0432\u0456\u043D \u0431\u0443\u0434\u0435 \u043F\u0435\u0440\u0435\u0439\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u0438\u0439 \u043D\u0430 ",part4:"\u0456 \u0442\u0430\u043A \u0434\u0430\u043B\u0456, \u0434\u043E\u043A\u0438 \u043D\u0435 \u0431\u0443\u0434\u0435 \u0437\u043D\u0430\u0439\u0434\u0435\u043D\u043E \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0435 \u0456\u043C\u2019\u044F."},name:"\u0420\u043E\u0437\u0434\u0456\u043B\u044C\u043D\u0438\u043A \u0434\u043B\u044F \u0434\u0443\u0431\u043B\u0456\u043A\u0430\u0442\u0456\u0432 \u0456\u043C\u0435\u043D"},emptyAttachmentFolderBehavior:{description:{part1:"\u041A\u043E\u043B\u0438 \u043F\u0430\u043F\u043A\u0430 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C \u043F\u043E\u0440\u043E\u0436\u043D\u044F:"},name:"\u041F\u043E\u0432\u0435\u0434\u0435\u043D\u0438\u0435 \u043F\u043E\u0440\u043E\u0436\u043D\u044C\u043E\u0457 \u043F\u0430\u043F\u043A\u0438 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C"},excludePaths:{description:{part1:"\u0406\u0433\u043D\u043E\u0440\u0443\u0439\u0442\u0435 \u043D\u043E\u0442\u0430\u0442\u043A\u0438 \u0437\u0430 \u043D\u0430\u0441\u0442\u0443\u043F\u043D\u0438\u043C\u0438 \u0448\u043B\u044F\u0445\u0430\u043C\u0438.",part2:"\u0412\u0432\u0435\u0434\u0456\u0442\u044C \u043A\u043E\u0436\u0435\u043D \u0448\u043B\u044F\u0445 \u0437 \u043D\u043E\u0432\u043E\u0433\u043E \u0440\u044F\u0434\u043A\u0430.",part3:"\u041C\u043E\u0436\u043D\u0430 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0440\u044F\u0434\u043E\u043A \u0448\u043B\u044F\u0445\u0443 \u0430\u0431\u043E",part4:"\u042F\u043A\u0449\u043E \u043F\u043E\u043B\u0435 \u043F\u043E\u0440\u043E\u0436\u043D\u0454, \u0436\u043E\u0434\u0435\u043D \u0444\u0430\u0439\u043B \u043D\u0435 \u0456\u0433\u043D\u043E\u0440\u0443\u0454\u0442\u044C\u0441\u044F."},name:"\u0406\u0433\u043D\u043E\u0440\u043E\u0432\u0430\u043D\u0456 \u0448\u043B\u044F\u0445\u0438"},excludePathsFromAttachmentCollecting:{description:{part1:"\u0406\u0433\u043D\u043E\u0440\u0443\u0439\u0442\u0435 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F \u0437 \u043D\u0430\u0441\u0442\u0443\u043F\u043D\u0438\u0445 \u0448\u043B\u044F\u0445\u0456\u0432 \u043F\u0456\u0434 \u0447\u0430\u0441 \u0432\u0438\u043A\u043E\u043D\u0430\u043D\u043D\u044F \u043A\u043E\u043C\u0430\u043D\u0434\u0438",part2:"\u0417\u0456\u0431\u0440\u0430\u0442\u0438 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F",part3:".",part4:"\u0412\u0432\u0435\u0434\u0456\u0442\u044C \u043A\u043E\u0436\u0435\u043D \u0448\u043B\u044F\u0445 \u0437 \u043D\u043E\u0432\u043E\u0433\u043E \u0440\u044F\u0434\u043A\u0430.",part5:"\u041C\u043E\u0436\u043D\u0430 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0440\u044F\u0434\u043E\u043A \u0448\u043B\u044F\u0445\u0443 \u0430\u0431\u043E",part6:"\u042F\u043A\u0449\u043E \u043F\u043E\u043B\u0435 \u043F\u043E\u0440\u043E\u0436\u043D\u0454, \u0436\u043E\u0434\u0435\u043D \u0448\u043B\u044F\u0445 \u043D\u0435 \u0456\u0433\u043D\u043E\u0440\u0443\u0454\u0442\u044C\u0441\u044F."},name:"\u0406\u0433\u043D\u043E\u0440\u043E\u0432\u0430\u043D\u0456 \u0448\u043B\u044F\u0445\u0438 \u043F\u0440\u0438 \u0437\u0431\u043E\u0440\u0456 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C"},generatedAttachmentFileName:{description:{part1:"\u0414\u0438\u0432. \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0456",part2:"\u0442\u043E\u043A\u0435\u043D\u0438"},name:"\u0417\u0433\u0435\u043D\u0435\u0440\u043E\u0432\u0430\u043D\u0430 \u043D\u0430\u0437\u0432\u0430 \u0444\u0430\u0439\u043B\u0443 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F"},includePaths:{description:{part1:"\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u0438 \u043D\u043E\u0442\u0430\u0442\u043A\u0438 \u0437 \u0442\u0430\u043A\u0438\u0445 \u0448\u043B\u044F\u0445\u0456\u0432.",part2:"\u0412\u0432\u0435\u0434\u0456\u0442\u044C \u043A\u043E\u0436\u0435\u043D \u0448\u043B\u044F\u0445 \u0437 \u043D\u043E\u0432\u043E\u0433\u043E \u0440\u044F\u0434\u043A\u0430.",part3:"\u041C\u043E\u0436\u043D\u0430 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0440\u044F\u0434\u043E\u043A \u0448\u043B\u044F\u0445\u0443 \u0430\u0431\u043E",part4:"\u042F\u043A\u0449\u043E \u043F\u043E\u043B\u0435 \u043F\u043E\u0440\u043E\u0436\u043D\u0454, \u0432\u043A\u043B\u044E\u0447\u0430\u044E\u0442\u044C\u0441\u044F \u0432\u0441\u0456 \u043D\u043E\u0442\u0430\u0442\u043A\u0438."},name:"\u0412\u043A\u043B\u044E\u0447\u0435\u043D\u0456 \u0448\u043B\u044F\u0445\u0438"},jpegQuality:{description:"\u0427\u0438\u043C \u043C\u0435\u043D\u0448\u0430 \u044F\u043A\u0456\u0441\u0442\u044C, \u0442\u0438\u043C \u0431\u0456\u043B\u044C\u0448\u0430 \u043A\u043E\u043C\u043F\u0440\u0435\u0441\u0456\u044F.",name:"\u042F\u043A\u0456\u0441\u0442\u044C JPEG"},locationForNewAttachments:{description:{part1:"\u041F\u043E\u0447\u043D\u0456\u0442\u044C \u0437",part2:"\u0449\u043E\u0431 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0432\u0456\u0434\u043D\u043E\u0441\u043D\u0438\u0439 \u0448\u043B\u044F\u0445.",part3:"\u0414\u0438\u0432. \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0456",part4:"\u0442\u043E\u043A\u0435\u043D\u0438",part5:"\u041F\u0430\u043F\u043A\u0438 \u0437 \u043A\u0440\u0430\u043F\u043A\u043E\u044E, \u044F\u043A-\u043E\u0442",part6:"\u043D\u0435 \u0440\u0435\u043A\u043E\u043C\u0435\u043D\u0434\u0443\u044E\u0442\u044C\u0441\u044F, \u0431\u043E Obsidian \u0457\u0445 \u043D\u0435 \u0432\u0456\u0434\u0441\u043B\u0456\u0434\u043A\u043E\u0432\u0443\u0454. \u041C\u043E\u0436\u043B\u0438\u0432\u043E, \u0442\u0440\u0435\u0431\u0430 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438",part7:"\u043F\u043B\u0430\u0433\u0456\u043D \u0434\u043B\u044F \u043A\u0435\u0440\u0443\u0432\u0430\u043D\u043D\u044F."},name:"\u0420\u043E\u0437\u0442\u0430\u0448\u0443\u0432\u0430\u043D\u043D\u044F \u043D\u043E\u0432\u0438\u0445 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C"},markdownUrlFormat:{description:{part1:"\u0424\u043E\u0440\u043C\u0430\u0442 URL, \u0449\u043E \u0432\u0441\u0442\u0430\u0432\u043B\u044F\u0442\u0438\u043C\u0435\u0442\u044C\u0441\u044F \u0443 Markdown.",part2:"\u0414\u0438\u0432. \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0456",part3:"\u0442\u043E\u043A\u0435\u043D\u0438",part4:"\u0417\u0430\u043B\u0438\u0448\u0442\u0435 \u043F\u043E\u0440\u043E\u0436\u043D\u0456\u043C \u0434\u043B\u044F \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0444\u043E\u0440\u043C\u0430\u0442\u0443 \u0437\u0430 \u0437\u0430\u043C\u043E\u0432\u0447\u0443\u0432\u0430\u043D\u043D\u044F\u043C."},name:"\u0424\u043E\u0440\u043C\u0430\u0442 URL Markdown"},renameAttachmentsToLowerCase:"\u041F\u0435\u0440\u0435\u0439\u043C\u0435\u043D\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F \u0437 \u043C\u0430\u043B\u0435\u043D\u044C\u043A\u0438\u0445 \u043B\u0456\u0442\u0435\u0440",renamedAttachmentFileName:{description:{part1:"\u0414\u0438\u0432. \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0456",part2:"\u0442\u043E\u043A\u0435\u043D\u0438"},name:"\u041D\u0430\u0437\u0432\u0430 \u043F\u0435\u0440\u0435\u0439\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u043E\u0433\u043E \u0444\u0430\u0439\u043B\u0443 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F"},resetToSampleCustomTokens:{message:"\u0412\u0438 \u0432\u043F\u0435\u0432\u043D\u0435\u043D\u0456, \u0449\u043E \u0445\u043E\u0447\u0435\u0442\u0435 \u0441\u043A\u0438\u043D\u0443\u0442\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044C\u043A\u0456 \u0442\u043E\u043A\u0435\u043D\u0438 \u0434\u043E \u043F\u0440\u0438\u043A\u043B\u0430\u0434\u0443? \u0412\u0430\u0448\u0456 \u0437\u043C\u0456\u043D\u0438 \u0431\u0443\u0434\u0435 \u0432\u0442\u0440\u0430\u0447\u0435\u043D\u043E.",title:"\u0421\u043A\u0438\u043D\u0443\u0442\u0438 \u0434\u043E \u043F\u0440\u0438\u043A\u043B\u0430\u0434\u0443"},shouldConvertPastedImagesToJpeg:{description:"\u041F\u0435\u0440\u0435\u0442\u0432\u043E\u0440\u044E\u0432\u0430\u0442\u0438 \u0432\u0441\u0442\u0430\u0432\u043B\u0435\u043D\u0456 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u0443 JPEG. \u0417\u0430\u0441\u0442\u043E\u0441\u043E\u0432\u0443\u0454\u0442\u044C\u0441\u044F \u043B\u0438\u0448\u0435, \u043A\u043E\u043B\u0438 PNG \u0432\u0441\u0442\u0430\u0432\u043B\u0435\u043D\u043E \u0431\u0435\u0437\u043F\u043E\u0441\u0435\u0440\u0435\u0434\u043D\u044C\u043E \u0437 \u0431\u0443\u0444\u0435\u0440\u0430 \u043E\u0431\u043C\u0456\u043D\u0443. \u0417\u0430\u0437\u0432\u0438\u0447\u0430\u0439 \u0434\u043B\u044F \u0432\u0441\u0442\u0430\u0432\u043A\u0438 \u0441\u043A\u0440\u0456\u043D\u0448\u043E\u0442\u0456\u0432.",name:"\u041A\u043E\u043D\u0432\u0435\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u0432\u0441\u0442\u0430\u0432\u043B\u0435\u043D\u0456 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u0443 JPEG"},shouldDeleteOrphanAttachments:{description:"\u042F\u043A\u0449\u043E \u0443\u0432\u0456\u043C\u043A\u043D\u0435\u043D\u043E, \u043F\u0440\u0438 \u0432\u0438\u0434\u0430\u043B\u0435\u043D\u043D\u0456 \u043D\u043E\u0442\u0430\u0442\u043A\u0438 \u0457\u0457 \u043E\u0441\u0438\u0440\u043E\u0442\u0456\u043B\u0456 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F \u0442\u0430\u043A\u043E\u0436 \u0432\u0438\u0434\u0430\u043B\u044F\u044E\u0442\u044C\u0441\u044F.",name:"\u0412\u0438\u0434\u0430\u043B\u044F\u0442\u0438 \u043E\u0441\u0438\u0440\u043E\u0442\u0456\u043B\u0456 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F"},shouldRenameAttachmentFiles:{description:{part1:"\u042F\u043A\u0449\u043E \u0443\u0432\u0456\u043C\u043A\u043D\u0435\u043D\u043E, \u043F\u0440\u0438 \u043F\u0435\u0440\u0435\u0439\u043C\u0435\u043D\u0443\u0432\u0430\u043D\u043D\u0456 \u0430\u0431\u043E \u043F\u0435\u0440\u0435\u043C\u0456\u0449\u0435\u043D\u043D\u0456 \u043D\u043E\u0442\u0430\u0442\u043A\u0438 \u0457\u0457 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F \u0431\u0443\u0434\u0443\u0442\u044C \u043F\u0435\u0440\u0435\u0439\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u0456 \u0437\u0433\u0456\u0434\u043D\u043E \u0437",part2:"\u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F\u043C."},name:"\u041F\u0435\u0440\u0435\u0439\u043C\u0435\u043D\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0444\u0430\u0439\u043B\u0438 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C"},shouldRenameAttachmentFolders:{description:"\u041F\u0435\u0440\u0435\u0439\u043C\u0435\u043D\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u043F\u0430\u043F\u043A\u0438 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C \u043F\u0440\u0438 \u043F\u0435\u0440\u0435\u0439\u043C\u0435\u043D\u0443\u0432\u0430\u043D\u043D\u0456 \u0430\u0431\u043E \u043F\u0435\u0440\u0435\u043C\u0456\u0449\u0435\u043D\u043D\u0456 \u043D\u043E\u0442\u0430\u0442\u043A\u0438.",name:"\u041F\u0435\u0440\u0435\u0439\u043C\u0435\u043D\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u043F\u0430\u043F\u043A\u0438 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C"},shouldRenameCollectedAttachments:{description:{part1:"\u042F\u043A\u0449\u043E \u0443\u0432\u0456\u043C\u043A\u043D\u0435\u043D\u043E, \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F, \u043E\u0431\u0440\u043E\u0431\u043B\u0435\u043D\u0456 \u0447\u0435\u0440\u0435\u0437",part2:"\u0417\u0456\u0431\u0440\u0430\u0442\u0438 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F",part3:"\u0431\u0443\u0434\u0443\u0442\u044C \u043F\u0435\u0440\u0435\u0439\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u0456 \u0432\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u043D\u043E \u0434\u043E",part4:"\u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u044C."},name:"\u041F\u0435\u0440\u0435\u0439\u043C\u0435\u043D\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0437\u0456\u0431\u0440\u0430\u043D\u0456 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F"},specialCharacters:{description:{part1:"\u0421\u043F\u0435\u0446\u0456\u0430\u043B\u044C\u043D\u0456 \u0441\u0438\u043C\u0432\u043E\u043B\u0438 \u0443 \u043D\u0430\u0437\u0432\u0456 \u043F\u0430\u043F\u043A\u0438 \u0442\u0430 \u0444\u0430\u0439\u043B\u0443 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F, \u044F\u043A\u0456 \u0442\u0440\u0435\u0431\u0430 \u0437\u0430\u043C\u0456\u043D\u0438\u0442\u0438 \u0430\u0431\u043E \u0432\u0438\u0434\u0430\u043B\u0438\u0442\u0438.",part2:"\u0417\u0430\u043B\u0438\u0448\u0442\u0435 \u043F\u043E\u0440\u043E\u0436\u043D\u0456\u043C \u0434\u043B\u044F \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043D\u043D\u044F \u0441\u0438\u043C\u0432\u043E\u043B\u0456\u0432."},name:"\u0421\u043F\u0435\u0446\u0456\u0430\u043B\u044C\u043D\u0456 \u0441\u0438\u043C\u0432\u043E\u043B\u0438"},specialCharactersReplacement:{description:{part1:"\u0420\u044F\u0434\u043E\u043A \u0437\u0430\u043C\u0456\u043D\u0438 \u0434\u043B\u044F \u0441\u043F\u0435\u0446\u0456\u0430\u043B\u044C\u043D\u0438\u0445 \u0441\u0438\u043C\u0432\u043E\u043B\u0456\u0432 \u0443 \u043D\u0430\u0437\u0432\u0456 \u043F\u0430\u043F\u043A\u0438 \u0447\u0438 \u0444\u0430\u0439\u043B\u0443 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F.",part2:"\u0417\u0430\u043B\u0438\u0448\u0442\u0435 \u043F\u043E\u0440\u043E\u0436\u043D\u0456\u043C \u0434\u043B\u044F \u0432\u0438\u0434\u0430\u043B\u0435\u043D\u043D\u044F \u0441\u0438\u043C\u0432\u043E\u043B\u0456\u0432."},name:"\u0417\u0430\u043C\u0456\u043D\u0430 \u0441\u043F\u0435\u0446\u0456\u0430\u043B\u044C\u043D\u0438\u0445 \u0441\u0438\u043C\u0432\u043E\u043B\u0456\u0432"},timeoutInSeconds:{description:{part1:"\u0422\u0430\u0439\u043C-\u0430\u0443\u0442 \u0443 \u0441\u0435\u043A\u0443\u043D\u0434\u0430\u0445 \u0434\u043B\u044F \u0443\u0441\u0456\u0445 \u043E\u043F\u0435\u0440\u0430\u0446\u0456\u0439.",part2:"\u042F\u043A\u0449\u043E",part3:"\u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043E, \u0442\u0430\u0439\u043C-\u0430\u0443\u0442 \u043E\u043F\u0435\u0440\u0430\u0446\u0456\u0439 \u0432\u0456\u0434\u043A\u043B\u044E\u0447\u0435\u043D\u043E."},name:"\u0422\u0430\u0439\u043C-\u0430\u0443\u0442 \u0432 \u0441\u0435\u043A\u0443\u043D\u0434\u0430\u0445"},treatAsAttachmentExtensions:{description:{part1:"\u041E\u0431\u0440\u043E\u0431\u043B\u044F\u0442\u0438 \u0444\u0430\u0439\u043B\u0438 \u0437 \u0442\u0430\u043A\u0438\u043C\u0438 \u0440\u043E\u0437\u0448\u0438\u0440\u0435\u043D\u043D\u044F\u043C\u0438 \u044F\u043A \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F.",part2:"\u0417\u0430 \u0437\u0430\u043C\u043E\u0432\u0447\u0443\u0432\u0430\u043D\u043D\u044F\u043C",part3:"\u0442\u0430",part4:"\u0437\u0432\u2019\u044F\u0437\u0430\u043D\u0456 \u0444\u0430\u0439\u043B\u0438 \u043D\u0435 \u0432\u0432\u0430\u0436\u0430\u044E\u0442\u044C\u0441\u044F \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043D\u044F\u043C\u0438 \u0456 \u043D\u0435 \u043F\u0435\u0440\u0435\u043C\u0456\u0449\u0443\u044E\u0442\u044C\u0441\u044F \u0440\u0430\u0437\u043E\u043C \u0437 \u043D\u043E\u0442\u0430\u0442\u043A\u043E\u044E.",part5:"\u0412\u0438 \u043C\u043E\u0436\u0435\u0442\u0435 \u0434\u043E\u0434\u0430\u0442\u0438 \u0432\u043B\u0430\u0441\u043D\u0456 \u0440\u043E\u0437\u0448\u0438\u0440\u0435\u043D\u043D\u044F, \u043D\u0430\u043F\u0440\u0438\u043A\u043B\u0430\u0434,",part6:", \u0449\u043E\u0431 \u0437\u043C\u0456\u043D\u0438\u0442\u0438 \u0446\u044E \u043F\u043E\u0432\u0435\u0434\u0456\u043D\u043A\u0443."},name:"\u041E\u0431\u0440\u043E\u0431\u043B\u044F\u0442\u0438 \u044F\u043A \u0440\u043E\u0437\u0448\u0438\u0440\u0435\u043D\u043D\u044F \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u044C"}},promptWithPreviewModal:{previewModal:{title:"\u041F\u043E\u043F\u0435\u0440\u0435\u0434\u043D\u0456\u0439 \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043E\u0433\u043E \u0444\u0430\u0439\u043B\u0443 '{{fullFileName}}'"},title:"\u0412\u0432\u0435\u0434\u0456\u0442\u044C \u0437\u043D\u0430\u0447\u0435\u043D\u043D\u044F \u0434\u043B\u044F \u0442\u043E\u043A\u0435\u043D\u0430 \u0437\u0430\u043F\u0438\u0442\u0443"},regularExpression:"/\u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u0438\u0439 \u0432\u0438\u0440\u0430\u0437/"};var wh={attachmentCollector:{confirm:{part1:"Papkalardagi barcha qaydlar uchun ilovalarni rekursiv tarzda to\u2018plamoqchimisiz?",part2:"Bu amalni ortga qaytarib bo\u2018lmaydi."},progressBar:{message:"Qo'shimchalarni yig'layapman {{iterationStr}} - '{{noteFilePath}}'.",title:"Qo'shimchalarni yig'layapman..."}},buttons:{copy:"Nusxalash",move:"Ko'chirish",previewAttachmentFile:"Qo'shimcha faylni oldindan ko'rish",skip:"O'tkazib yuborish"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"Qo'shimcha",part2:"bir nechta eslatmalar tomonidan havola qilingan."},heading:"Bir nechta eslatmalar tomonidan ishlatiladigan qo'shimchani yig'moqdaman",shouldUseSameActionForOtherProblematicAttachmentsToggle:"Boshqa muammoli qo'shimchalar uchun bir xil harakatni ishlatish kerak"},commands:{collectAttachmentsCurrentFolder:"Joriy papkadagi qo'shimchalarni yig'lash",collectAttachmentsCurrentNote:"Joriy eslatmadagi qo'shimchalarni yig'lash",collectAttachmentsEntireVault:"Butun ombordagi qo'shimchalarni yig'lash"},menuItems:{collectAttachmentsInFile:"Faylda ilovalarni to\u2018plash",collectAttachmentsInFiles:"Fayllarda ilovalarni to\u2018plash"},notice:{collectingAttachments:"'{{noteFilePath}}' uchun qo'shimchalarni yig'layapman",collectingAttachmentsCancelled:"Qo'shimchalarni yig'lash bekor qilindi. Tafsilotlar uchun konsolni ko'ring.",generatedAttachmentFileNameIsInvalid:{part1:`Yaratilgan qo'shimcha fayl nomi '{{path}}' noto'g'ri.
|
|
556
|
+
{{validationMessage}}
|
|
557
|
+
Sozlamangizni tekshiring`,part2:""},notePathIsIgnored:"Eslatma yo'li e'tiborga olinmaydi"},obsidianDevUtils:{buttons:{cancel:"Bekor qilish",ok:"OK"},dataview:{itemsPerPage:"Sahifaga elementlar:",jumpToPage:"Sahifaga o'tish:"},notices:{attachmentIsStillUsed:"Qo'shimcha {{attachmentPath}} hali ham boshqa eslatmalar tomonidan ishlatilmoqda. U o'chirilmaydi.",unhandledError:"Qayta ishlanmagan xatolik yuz berdi. Iltimos, qo'shimcha ma'lumot uchun konsolni tekshiring."}},pluginSettings:{attachmentRenameMode:{all:{description:"Barcha fayllar qayta nomlanadi.",displayText:"Barchasi"},none:{description:"Ularning nomlari saqlanadi.",displayText:"Hech biri"},onlyPastedImages:{description:"Faqat yopishtirilgan rasmlar qayta nomlanadi. Faqqt PNG rasm kontenti bevosita buferdan yopishtirilganida amal qiladi. Odatda skrinshotlar uchun.",displayText:"Faqat yopishtirilgan rasmlar"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"Qo'shimchalarni yig'lashni bekor qilish.",displayText:"Bekor qilish"},copy:{description:"Qo'shimchani yangi joyga nusxalash.",displayText:"Nusxalash"},move:{description:"Qo'shimchani yangi joyga ko'chirish.",displayText:"Ko'chirish"},prompt:{description:"Foydalanuvchidan amal tanlashni so'rash.",displayText:"So'rash"},skip:{description:"Qo'shimchani o'tkazib yuborish va keyingisiga o'tish.",displayText:"O'tkazib yuborish"}},defaultImageSizeDimension:{height:"Balandlik",width:"Kenglik"},emptyAttachmentFolderBehavior:{delete:{description:"Bo'sh qo'shimcha papkasini o'chiradi.",displayText:"O'chirish"},deleteWithEmptyParents:{description:"Bo'sh qo'shimcha papkasini va uning bo'sh ota-onalarini o'chiradi.",displayText:"Bo'sh ota-onalar bilan o'chirish"},keep:{description:"Bo'sh qo'shimcha papkasini saqlaydi.",displayText:"Saqlash"}}},pluginSettingsManager:{customToken:{codeComment:`// Maxsus tokenlar komment qilindi, chunki ular 9.0.0 versiyasidagi yangi format bo'yicha yangilanishi kerak.
|
|
558
|
+
// Qo'shimcha ma'lumot uchun hujjatlarga murojaat qiling.`,deprecated:{part1:"9.0.0 versiyasida maxsus tokenlar ro'yxatga olish formati o'zgardi. Iltimos, tokenlaringizni yangilang. Batafsil ma'lumot uchun",part2:"hujjatga murojaat qiling",part3:""}},legacyRenameAttachmentsToLowerCase:{part1:"9.0.0 versiyasida bu",part2:"sozlama eskirgan. Buning o'rniga",part3:"formatidan foydalaning. Batafsil uchun",part4:"hujjatlarga qarang",part5:""},markdownUrlFormat:{deprecated:{part1:"Potentsial noto'g'ri qiymat o'rnatilgan",part2:"format uchun. Iltimos, qarang",part3:"hujjatlar",part4:"batafsil ma'lumot uchun.",part5:"Ushbu xabar yana ko'rsatilmaydi."}},specialCharacters:{part1:"9.16.0 versiyada",part2:"sozlamaning standart qiymati o'zgardi. Sizning sozlamangiz yangi standart qiymatga yangilandi."},validation:{defaultImageSizeMustBePercentageOrPixels:"Standart rasm o\u2018lchami piksel yoki foizda bo\u2018lishi kerak",invalidCustomTokensCode:"Noto'g'ri maxsus token kodi",invalidRegularExpression:"Noto'g'ri tartibiy ifoda {{regExp}}",specialCharactersMustNotContainSlash:"Maxsus belgilar / ni o'z ichiga olmang",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"Maxsus belgi o'rnini bosuvchi fayl nomi yoki yo'l belgilari bo'lmasligi kerak."},version:{part1:"Sozlamalar faylingiz",part2:"versiyasi mavjud",part3:"va u mavjud plagin versiyasidan yangi.",part4:"Plagin kutilganidek ishlamasligi mumkin. Iltimos, plagin so'nggi versiyasiga yangilang yoki sozlamalarni tekshiring."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"Fayllar qo'shilganda:"},name:"Qo'shimchalarni qayta nomlash rejimi"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Yig'ilgan qo'shimcha bir nechta eslatmalarda ishlatilganda:"},name:"Bir nechta eslatmalar tomonidan foydalanilgan qo'shimchani yig'ish rejimi"},collectedAttachmentFileName:{description:{part1:"Mavjud",part2:"tokenlarni ko'ring"},name:"Yig'ilgan qo'shimcha fayl nomi"},customTokens:{description:{part1:"Foydalaniladigan maxsus tokenlar.",part2:"Qo'shimcha ma'lumot uchun qarang",part3:"hujjatlar",part4:"",part5:"\u26A0\uFE0F Maxsus tokenlar istalgan JavaScript kodi bo'lishi mumkin. Noto'g'ri yozilganda ma'lumot yo'qolishi mumkin. O'z xataringizga foydalaning."},name:"Maxsus tokenlar"},defaultImageSize:{description:{part1:"Standart rasm o\u2018lchami.",part2:"Pikselda ko\u2018rsatilishi mumkin",part3:"Rasm to\u2018liq o\u2018lchamining foizi sifatida",part4:"Asl o\u2018lchamdan foydalanish uchun bo\u2018sh qoldiring."},name:"Standart rasm o\u2018lchami"},duplicateNameSeparator:{description:{part1:"Mavjud fayl nomi bilan bir xil bo'lgan faylni joylashtirganingizda/yurgizganingizda, ushbu ajratgich fayl nomiga qo'shiladi.",part2:"Masalan, faylni olib tashlayotganingizda:",part3:", u quyidagicha qayta nomlanadi: ",part4:"va boshqalar, birinchi mavjud nom aniqlanguncha."},name:"Nusxa nom ajratgichi"},emptyAttachmentFolderBehavior:{description:{part1:"Qo'shimchalar papkasi bo'sh bo'lganda:"},name:"Bo'sh qo'shimcha papkasining xatti-harakati"},excludePaths:{description:{part1:"Quyidagi yo'llardan eslatmalarni chiqarib tashlang.",part2:"Har bir yo'lni yangi qatorda kiriting.",part3:"Yo'l satridan yoki",part4:"Agar sozlama bo'sh bo'lsa, hech narsa chiqarib tashlanmaydi."},name:"Chiqarib tashlanadigan yo'llar"},excludePathsFromAttachmentCollecting:{description:{part1:"Quyidagi yo'llardan qo'shimchalarni chiqarib tashlang, bu buyruq bajarilganda:",part2:"Qo'shimchalarni yig'ish",part3:"",part4:"Har bir yo'lni yangi qatorda yozing.",part5:"Yo'l satridan yoki",part6:"Sozlama bo'sh bo'lsa, hech qanday yo'l chiqarilmaydi."},name:"Qo'shimcha yig'ishda chiqarib tashlangan yo'llar"},generatedAttachmentFileName:{description:{part1:"Mavjud",part2:"tokenlarni ko'ring"},name:"Yaratilgan qo'shimcha fayl nomi"},includePaths:{description:{part1:"Quyidagi yo'llardagi eslatmalarni qo'shing.",part2:"Har bir yo'lni yangi qatorda yozing.",part3:"Yo'l satridan yoki",part4:"Sozlama bo'sh bo'lsa, barcha eslatmalar qo'shiladi."},name:"Qo'shiladigan yo'llar"},jpegQuality:{description:"Sifat qanchalik past bo'lsa, siqish darajasi shunchalik yuqori bo'ladi.",name:"JPEG sifati"},locationForNewAttachments:{description:{part1:"Nisbiy yo'lni ishlatish uchun bilan boshlang",part2:".",part3:"Mavjud",part4:"tokenlarni ko'ring",part5:". nuqta bilan boshlangan papkalar, masalan",part6:", tavsiya etilmaydi, chunki Obsidian ularni kuzatmaydi. Ularni boshqarish uchun",part7:"kengaytmadan foydalanishingiz kerak bo'lishi mumkin."},name:"Yangi qo'shimchalar joylashuvi"},markdownUrlFormat:{description:{part1:"Markdown-ga qo'shiladigan URL formati.",part2:"Mavjud",part3:"tokenlarni ko'ring.",part4:"Standart formatni ishlatish uchun bo'sh qoldiring."},name:"Markdown URL formati"},renameAttachmentsToLowerCase:"Qo'shimchilarning nomlarini kichik harflarga o'zgartirish",renamedAttachmentFileName:{description:{part1:"Mavjud",part2:"tokenlarni ko'ring"},name:"Qayta nomlangan qo'shimcha fayl nomi"},resetToSampleCustomTokens:{message:"Maxsus tokenlarni namuna tokenlarga qaytarishni xohlaysizmi? O'zgartirishlaringiz yo'qoladi.",title:"Namuna tokenlarga qaytarish"},shouldConvertPastedImagesToJpeg:{description:"Yopishtirilgan rasmlarni JPEG formatiga aylantirish-aylantirilmasligini belgilaydi. Bu faqat PNG rasmlar bo'lsa va to'g'ridan-to'g'ri panodan yopishtirilganda ishlatiladi. Odatda, skrinshotlar uchun.",name:"Yopishtirilgan rasmlarni JPEG-ga o'zgartirish"},shouldDeleteOrphanAttachments:{description:"Faollashtirilganda, nota o'chirilganda uning osmonga ketgan qo'shimchalari ham o'chiriladi.",name:"Osmonga ketgan qo'shimchalarni o'chirish"},shouldRenameAttachmentFiles:{description:{part1:"Faollashtirilganda, nota nomi o'zgartirilganda yoki ko'chirilganda, qo'shimchalar",part2:"sozlash bo'yicha qayta nomlanadi."},name:"Qo'shimcha fayllarni qayta nomlash"},shouldRenameAttachmentFolders:{description:"Nota nomi o'zgartirilganda yoki ko'chirilganda qo'shimcha papkalarni qayta nomlash kerakligini belgilaydi.",name:"Qo'shimcha papkalarni qayta nomlash"},shouldRenameCollectedAttachments:{description:{part1:"Faollashtirilganda, qo'llanilgan qo'shimchalar",part2:"Qo'shimchalarni yig'ish",part3:"buyruqlari orqali qayta nomlanadi",part4:"belgilanishiga muvofiq."},name:"Yig'ilgan qo'shimchalarni qayta nomlash"},specialCharacters:{description:{part1:"Qo'shimcha papkasi va fayl nomidagi maxsus belgilar almashtirilishi yoki olib tashlanishi kerak.",part2:"Maxsus belgilarni saqlash uchun bo'sh qoldiring."},name:"Maxsus belgilar"},specialCharactersReplacement:{description:{part1:"Qo'shimcha papka va fayl nomidagi maxsus belgilarni almashtirish uchun qatori.",part2:"Maxsus belgilarni olib tashlash uchun bo'sh qoldiring."},name:"Maxsus belgilarni almashtirish"},timeoutInSeconds:{description:{part1:"Barcha operatsiyalar uchun vaqt tugashi (soniya).",part2:"Agar",part3:"belgilangan bo'lsa, bajarilish vaqti cheklovlari o'chiriladi."},name:"Vaqt tugashi (soniya)"},treatAsAttachmentExtensions:{description:{part1:"Ushbu kengaytmaga ega fayllar qo'shimcha sifatida ko'rib chiqiladi.",part2:"Standart bo'yicha",part3:"va",part4:"bog'langan fayllar qo'shimcha sifatida ko'rilmaydi va notalar bilan ko'chirilmaydi.",part5:"Maxsus kengaytmalarni qo'shishingiz mumkin, masalan,",part6:"bu xatti-harakatni o'zgartirish uchun."},name:"Qo'shimcha kengaytmalari sifatida hisoblash"}},promptWithPreviewModal:{previewModal:{title:"Qo'shimcha faylni oldindan ko'rish '{{fullFileName}}'"},title:"So'rov tokeni uchun qiymat kiriting"},regularExpression:"/muntazam ifoda/"};var xh={attachmentCollector:{confirm:{part1:"B\u1EA1n c\xF3 mu\u1ED1n thu th\u1EADp t\u1EC7p \u0111\xEDnh k\xE8m cho t\u1EA5t c\u1EA3 ghi ch\xFA trong c\xE1c th\u01B0 m\u1EE5c (\u0111\u1EC7 quy) kh\xF4ng?",part2:"Thao t\xE1c n\xE0y kh\xF4ng th\u1EC3 ho\xE0n t\xE1c."},progressBar:{message:"\u0110ang thu th\u1EADp t\u1EC7p \u0111\xEDnh k\xE8m {{iterationStr}} - '{{noteFilePath}}'.",title:"\u0110ang thu th\u1EADp t\u1EC7p \u0111\xEDnh k\xE8m..."}},buttons:{copy:"Sao ch\xE9p",move:"Di chuy\u1EC3n",previewAttachmentFile:"Xem tr\u01B0\u1EDBc t\u1EC7p \u0111\xEDnh k\xE8m",skip:"B\u1ECF qua"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"T\u1EC7p \u0111\xEDnh k\xE8m",part2:"\u0111\u01B0\u1EE3c tham chi\u1EBFu b\u1EDFi nhi\u1EC1u ghi ch\xFA."},heading:"Thu th\u1EADp t\u1EC7p \u0111\xEDnh k\xE8m \u0111\u01B0\u1EE3c s\u1EED d\u1EE5ng b\u1EDFi nhi\u1EC1u ghi ch\xFA",shouldUseSameActionForOtherProblematicAttachmentsToggle:"N\xEAn s\u1EED d\u1EE5ng c\xF9ng m\u1ED9t h\xE0nh \u0111\u1ED9ng cho c\xE1c t\u1EC7p \u0111\xEDnh k\xE8m c\xF3 v\u1EA5n \u0111\u1EC1 kh\xE1c"},commands:{collectAttachmentsCurrentFolder:"Thu th\u1EADp t\u1EC7p \u0111\xEDnh k\xE8m trong th\u01B0 m\u1EE5c hi\u1EC7n t\u1EA1i",collectAttachmentsCurrentNote:"Thu th\u1EADp t\u1EC7p \u0111\xEDnh k\xE8m trong ghi ch\xFA hi\u1EC7n t\u1EA1i",collectAttachmentsEntireVault:"Thu th\u1EADp t\u1EC7p \u0111\xEDnh k\xE8m trong to\xE0n b\u1ED9 kho"},menuItems:{collectAttachmentsInFile:"Thu th\u1EADp t\u1EC7p \u0111\xEDnh k\xE8m trong t\u1EC7p",collectAttachmentsInFiles:"Thu th\u1EADp t\u1EC7p \u0111\xEDnh k\xE8m trong c\xE1c t\u1EC7p"},notice:{collectingAttachments:"\u0110ang thu th\u1EADp t\u1EC7p \u0111\xEDnh k\xE8m cho '{{noteFilePath}}'",collectingAttachmentsCancelled:"Thu th\u1EADp t\u1EC7p \u0111\xEDnh k\xE8m \u0111\xE3 b\u1ECB h\u1EE7y. Xem console \u0111\u1EC3 bi\u1EBFt chi ti\u1EBFt.",generatedAttachmentFileNameIsInvalid:{part1:`T\xEAn t\u1EC7p \u0111\xEDnh k\xE8m \u0111\u01B0\u1EE3c t\u1EA1o '{{path}}' kh\xF4ng h\u1EE3p l\u1EC7.
|
|
559
|
+
{{validationMessage}}
|
|
560
|
+
Ki\u1EC3m tra`,part2:"c\xE0i \u0111\u1EB7t c\u1EE7a b\u1EA1n."},notePathIsIgnored:"\u0110\u01B0\u1EDDng d\u1EABn ghi ch\xFA b\u1ECB b\u1ECF qua"},obsidianDevUtils:{buttons:{cancel:"H\u1EE7y",ok:"\u0110\u1ED3ng \xFD"},dataview:{itemsPerPage:"M\u1EE5c tr\xEAn m\u1ED7i trang:",jumpToPage:"Chuy\u1EC3n \u0111\u1EBFn trang:"},notices:{attachmentIsStillUsed:"T\u1EC7p \u0111\xEDnh k\xE8m {{attachmentPath}} v\u1EABn \u0111ang \u0111\u01B0\u1EE3c s\u1EED d\u1EE5ng b\u1EDFi c\xE1c ghi ch\xFA kh\xE1c. N\xF3 s\u1EBD kh\xF4ng b\u1ECB x\xF3a.",unhandledError:"\u0110\xE3 x\u1EA3y ra l\u1ED7i kh\xF4ng x\u1EED l\xFD \u0111\u01B0\u1EE3c. Vui l\xF2ng ki\u1EC3m tra console \u0111\u1EC3 bi\u1EBFt th\xEAm th\xF4ng tin."}},pluginSettings:{attachmentRenameMode:{all:{description:"T\u1EA5t c\u1EA3 c\xE1c t\u1EC7p \u0111\u01B0\u1EE3c \u0111\u1ED5i t\xEAn.",displayText:"T\u1EA5t c\u1EA3"},none:{description:"T\xEAn c\u1EE7a ch\xFAng \u0111\u01B0\u1EE3c b\u1EA3o t\u1ED3n.",displayText:"Kh\xF4ng"},onlyPastedImages:{description:"Ch\u1EC9 c\xE1c h\xECnh \u1EA3nh \u0111\u01B0\u1EE3c d\xE1n m\u1EDBi \u0111\u01B0\u1EE3c \u0111\u1ED5i t\xEAn. Ch\u1EC9 \xE1p d\u1EE5ng khi n\u1ED9i dung h\xECnh \u1EA3nh PNG \u0111\u01B0\u1EE3c d\xE1n tr\u1EF1c ti\u1EBFp t\u1EEB clipboard. Th\xF4ng th\u01B0\u1EDDng d\xF9ng \u0111\u1EC3 d\xE1n \u1EA3nh ch\u1EE5p m\xE0n h\xECnh.",displayText:"Ch\u1EC9 h\xECnh \u1EA3nh \u0111\u01B0\u1EE3c d\xE1n"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"H\u1EE7y vi\u1EC7c thu th\u1EADp t\u1EC7p \u0111\xEDnh k\xE8m.",displayText:"H\u1EE7y"},copy:{description:"Sao ch\xE9p t\u1EC7p \u0111\xEDnh k\xE8m \u0111\u1EBFn v\u1ECB tr\xED m\u1EDBi.",displayText:"Sao ch\xE9p"},move:{description:"Di chuy\u1EC3n t\u1EC7p \u0111\xEDnh k\xE8m \u0111\u1EBFn v\u1ECB tr\xED m\u1EDBi.",displayText:"Di chuy\u1EC3n"},prompt:{description:"Nh\u1EAFc ng\u01B0\u1EDDi d\xF9ng ch\u1ECDn h\xE0nh \u0111\u1ED9ng.",displayText:"Nh\u1EAFc"},skip:{description:"B\u1ECF qua t\u1EC7p \u0111\xEDnh k\xE8m v\xE0 ti\u1EBFp t\u1EE5c \u0111\u1EBFn c\xE1i ti\u1EBFp theo.",displayText:"B\u1ECF qua"}},defaultImageSizeDimension:{height:"\u0421hi\u1EC1u cao",width:"\u0421hi\u1EC1u r\u1ED9ng"},emptyAttachmentFolderBehavior:{delete:{description:"S\u1EBD x\xF3a th\u01B0 m\u1EE5c t\u1EC7p \u0111\xEDnh k\xE8m tr\u1ED1ng.",displayText:"X\xF3a"},deleteWithEmptyParents:{description:"S\u1EBD x\xF3a th\u01B0 m\u1EE5c t\u1EC7p \u0111\xEDnh k\xE8m tr\u1ED1ng v\xE0 c\xE1c th\u01B0 m\u1EE5c cha tr\u1ED1ng c\u1EE7a n\xF3.",displayText:"X\xF3a v\u1EDBi th\u01B0 m\u1EE5c cha r\u1ED7ng"},keep:{description:"S\u1EBD gi\u1EEF nguy\xEAn th\u01B0 m\u1EE5c t\u1EC7p \u0111\xEDnh k\xE8m tr\u1ED1ng.",displayText:"Gi\u1EEF l\u1EA1i"}}},pluginSettingsManager:{customToken:{codeComment:`// C\xE1c token t\xF9y ch\u1EC9nh b\u1ECB ch\xFA th\xEDch v\xEC c\u1EA7n c\u1EADp nh\u1EADt theo \u0111\u1ECBnh d\u1EA1ng m\u1EDBi \u0111\u01B0\u1EE3c gi\u1EDBi thi\u1EC7u trong phi\xEAn b\u1EA3n plugin 9.0.0.
|
|
561
|
+
// Vui l\xF2ng tham kh\u1EA3o t\xE0i li\u1EC7u \u0111\u1EC3 bi\u1EBFt th\xEAm th\xF4ng tin.`,deprecated:{part1:"Trong phi\xEAn b\u1EA3n plugin 9.0.0, \u0111\u1ECBnh d\u1EA1ng \u0111\u0103ng k\xFD token t\xF9y ch\u1EC9nh \u0111\xE3 thay \u0111\u1ED5i. Vui l\xF2ng c\u1EADp nh\u1EADt c\xE1c token c\u1EE7a b\u1EA1n t\u01B0\u01A1ng \u1EE9ng. Tham kh\u1EA3o",part2:"t\xE0i li\u1EC7u",part3:"\u0111\u1EC3 bi\u1EBFt th\xEAm th\xF4ng tin"}},legacyRenameAttachmentsToLowerCase:{part1:"Trong phi\xEAn b\u1EA3n plugin 9.0.0, ",part2:"thi\u1EBFt l\u1EADp n\xE0y \u0111\xE3 b\u1ECB ng\u1EEBng h\u1ED7 tr\u1EE3. H\xE3y d\xF9ng ",part3:"\u0111\u1ECBnh d\u1EA1ng thay th\u1EBF. Xem ",part4:"t\xE0i li\u1EC7u ",part5:"\u0111\u1EC3 bi\u1EBFt th\xEAm th\xF4ng tin"},markdownUrlFormat:{deprecated:{part1:"B\u1EA1n \u0111\xE3 \u0111\u1EB7t m\u1ED9t gi\xE1 tr\u1ECB c\xF3 th\u1EC3 kh\xF4ng ch\xEDnh x\xE1c cho",part2:"\u0111\u1ECBnh d\u1EA1ng. Vui l\xF2ng tham kh\u1EA3o",part3:"t\xE0i li\u1EC7u",part4:"cho th\xF4ng tin th\xEAm",part5:"Tin nh\u1EAFn n\xE0y s\u1EBD kh\xF4ng c\xF2n \u0111\u01B0\u1EE3c hi\u1EC3n th\u1ECB."}},specialCharacters:{part1:"Trong phi\xEAn b\u1EA3n plugin 9.16.0,",part2:"gi\xE1 tr\u1ECB c\xE0i \u0111\u1EB7t m\u1EB7c \u0111\u1ECBnh \u0111\xE3 \u0111\u01B0\u1EE3c thay \u0111\u1ED5i. Gi\xE1 tr\u1ECB c\u1EE7a b\u1EA1n \u0111\xE3 \u0111\u01B0\u1EE3c c\u1EADp nh\u1EADt theo gi\xE1 tr\u1ECB m\u1EB7c \u0111\u1ECBnh m\u1EDBi."},validation:{defaultImageSizeMustBePercentageOrPixels:"K\xEDch th\u01B0\u1EDBc h\xECnh \u1EA3nh m\u1EB7c \u0111\u1ECBnh ph\u1EA3i \u0111\u01B0\u1EE3c t\xEDnh b\u1EB1ng pixel ho\u1EB7c ph\u1EA7n tr\u0103m",invalidCustomTokensCode:"M\xE3 token t\xF9y ch\u1EC9nh kh\xF4ng h\u1EE3p l\u1EC7",invalidRegularExpression:"Bi\u1EC3u th\u1EE9c ch\xEDnh quy kh\xF4ng h\u1EE3p l\u1EC7 {{regExp}}",specialCharactersMustNotContainSlash:"K\xFD t\u1EF1 \u0111\u1EB7c bi\u1EC7t kh\xF4ng \u0111\u01B0\u1EE3c ch\u1EE9a d\u1EA5u /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"Chu\u1ED7i thay th\u1EBF k\xFD t\u1EF1 \u0111\u1EB7c bi\u1EC7t kh\xF4ng \u0111\u01B0\u1EE3c ch\u1EE9a k\xFD t\u1EF1 t\xEAn t\u1EC7p ho\u1EB7c \u0111\u01B0\u1EDDng d\u1EABn kh\xF4ng h\u1EE3p l\u1EC7."},version:{part1:"T\u1EC7p c\xE0i \u0111\u1EB7t c\u1EE7a b\u1EA1n ",part2:"c\xF3 phi\xEAn b\u1EA3n",part3:"m\u1EDBi h\u01A1n phi\xEAn b\u1EA3n plugin hi\u1EC7n t\u1EA1i",part4:"Plugin c\xF3 th\u1EC3 kh\xF4ng ho\u1EA1t \u0111\u1ED9ng nh\u01B0 mong \u0111\u1EE3i. Vui l\xF2ng c\u1EADp nh\u1EADt plugin l\xEAn phi\xEAn b\u1EA3n m\u1EDBi nh\u1EA5t ho\u1EB7c \u0111\u1EA3m b\u1EA3o c\xE1c c\xE0i \u0111\u1EB7t l\xE0 \u0111\xFAng."}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"Khi \u0111\xEDnh k\xE8m t\u1EC7p:"},name:"Ch\u1EBF \u0111\u1ED9 \u0111\u1ED5i t\xEAn t\u1EC7p \u0111\xEDnh k\xE8m"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"Khi t\u1EC7p \u0111\xEDnh k\xE8m \u0111\u01B0\u1EE3c thu th\u1EADp \u0111\u01B0\u1EE3c s\u1EED d\u1EE5ng b\u1EDFi nhi\u1EC1u ghi ch\xFA:"},name:"Ch\u1EBF \u0111\u1ED9 thu th\u1EADp t\u1EC7p \u0111\xEDnh k\xE8m \u0111\u01B0\u1EE3c s\u1EED d\u1EE5ng b\u1EDFi nhi\u1EC1u ghi ch\xFA"},collectedAttachmentFileName:{description:{part1:"Xem c\xE1c",part2:"token c\xF3 th\u1EC3 s\u1EED d\u1EE5ng"},name:"T\xEAn t\u1EC7p \u0111\xEDnh k\xE8m \u0111\u01B0\u1EE3c thu th\u1EADp"},customTokens:{description:{part1:"C\xE1c token t\xF9y ch\u1EC9nh \u0111\u1EC3 s\u1EED d\u1EE5ng.",part2:"Xem",part3:"t\xE0i li\u1EC7u",part4:"\u0111\u1EC3 bi\u1EBFt th\xEAm th\xF4ng tin.",part5:"\u26A0\uFE0F Token t\xF9y ch\u1EC9nh c\xF3 th\u1EC3 ch\u1EE9a m\xE3 JavaScript t\xF9y \xFD. N\u1EBFu vi\u1EBFt sai, c\xF3 th\u1EC3 g\xE2y m\u1EA5t d\u1EEF li\u1EC7u. S\u1EED d\u1EE5ng c\u1EA9n th\u1EADn."},name:"Token t\xF9y ch\u1EC9nh"},defaultImageSize:{description:{part1:"K\xEDch th\u01B0\u1EDBc h\xECnh \u1EA3nh m\u1EB7c \u0111\u1ECBnh.",part2:"C\xF3 th\u1EC3 \u0111\u01B0\u1EE3c ch\u1EC9 \u0111\u1ECBnh b\u1EB1ng pixel",part3:"ho\u1EB7c ph\u1EA7n tr\u0103m k\xEDch th\u01B0\u1EDBc \u0111\u1EA7y \u0111\u1EE7 c\u1EE7a h\xECnh \u1EA3nh",part4:"B\u1ECF tr\u1ED1ng \u0111\u1EC3 s\u1EED d\u1EE5ng k\xEDch th\u01B0\u1EDBc g\u1ED1c c\u1EE7a h\xECnh \u1EA3nh."},name:"K\xEDch th\u01B0\u1EDBc h\xECnh \u1EA3nh m\u1EB7c \u0111\u1ECBnh"},duplicateNameSeparator:{description:{part1:"Khi b\u1EA1n d\xE1n/k\xE9o m\u1ED9t t\u1EC7p c\xF3 c\xF9ng t\xEAn v\u1EDBi t\u1EC7p \u0111\xE3 t\u1ED3n t\u1EA1i, b\u1ED9 ph\xE2n c\xE1ch n\xE0y s\u1EBD \u0111\u01B0\u1EE3c th\xEAm v\xE0o t\xEAn t\u1EC7p.",part2:"V\xED d\u1EE5, khi b\u1EA1n k\xE9o t\u1EC7p",part3:", n\xF3 s\u1EBD \u0111\u01B0\u1EE3c \u0111\u1ED5i t\xEAn th\xE0nh ",part4:", v.v., s\u1EED d\u1EE5ng t\xEAn \u0111\u1EA7u ti\xEAn c\xF3 s\u1EB5n."},name:"B\u1ED9 ph\xE2n c\xE1ch t\xEAn tr\xF9ng"},emptyAttachmentFolderBehavior:{description:{part1:"Khi th\u01B0 m\u1EE5c t\u1EC7p \u0111\xEDnh k\xE8m tr\u1EDF n\xEAn tr\u1ED1ng:"},name:"H\xE0nh vi th\u01B0 m\u1EE5c t\u1EC7p \u0111\xEDnh k\xE8m tr\u1ED1ng"},excludePaths:{description:{part1:"Lo\u1EA1i tr\u1EEB ghi ch\xFA kh\u1ECFi c\xE1c \u0111\u01B0\u1EDDng d\u1EABn sau.",part2:"Nh\u1EADp m\u1ED7i \u0111\u01B0\u1EDDng d\u1EABn tr\xEAn m\u1ED9t d\xF2ng m\u1EDBi.",part3:"B\u1EA1n c\xF3 th\u1EC3 s\u1EED d\u1EE5ng chu\u1ED7i \u0111\u01B0\u1EDDng d\u1EABn ho\u1EB7c",part4:"N\u1EBFu c\xE0i \u0111\u1EB7t \u0111\u1EC3 tr\u1ED1ng, kh\xF4ng ghi ch\xFA n\xE0o b\u1ECB lo\u1EA1i tr\u1EEB."},name:"Lo\u1EA1i tr\u1EEB \u0111\u01B0\u1EDDng d\u1EABn"},excludePathsFromAttachmentCollecting:{description:{part1:"Lo\u1EA1i tr\u1EEB t\u1EC7p \u0111\xEDnh k\xE8m kh\u1ECFi c\xE1c \u0111\u01B0\u1EDDng d\u1EABn sau khi",part2:"l\u1EC7nh Thu th\u1EADp t\u1EC7p \u0111\xEDnh k\xE8m",part3:"\u0111\u01B0\u1EE3c th\u1EF1c thi.",part4:"Nh\u1EADp m\u1ED7i \u0111\u01B0\u1EDDng d\u1EABn tr\xEAn m\u1ED9t d\xF2ng m\u1EDBi.",part5:"B\u1EA1n c\xF3 th\u1EC3 s\u1EED d\u1EE5ng chu\u1ED7i \u0111\u01B0\u1EDDng d\u1EABn ho\u1EB7c",part6:"N\u1EBFu c\xE0i \u0111\u1EB7t \u0111\u1EC3 tr\u1ED1ng, kh\xF4ng \u0111\u01B0\u1EDDng d\u1EABn n\xE0o b\u1ECB lo\u1EA1i tr\u1EEB."},name:"Lo\u1EA1i tr\u1EEB \u0111\u01B0\u1EDDng d\u1EABn khi thu th\u1EADp t\u1EC7p \u0111\xEDnh k\xE8m"},generatedAttachmentFileName:{description:{part1:"Xem c\xE1c",part2:"token c\xF3 th\u1EC3 s\u1EED d\u1EE5ng"},name:"T\xEAn t\u1EC7p \u0111\xEDnh k\xE8m \u0111\u01B0\u1EE3c t\u1EA1o"},includePaths:{description:{part1:"Bao g\u1ED3m c\xE1c ghi ch\xFA t\u1EEB c\xE1c \u0111\u01B0\u1EDDng d\u1EABn sau.",part2:"Nh\u1EADp m\u1ED7i \u0111\u01B0\u1EDDng d\u1EABn tr\xEAn m\u1ED9t d\xF2ng m\u1EDBi.",part3:"B\u1EA1n c\xF3 th\u1EC3 s\u1EED d\u1EE5ng chu\u1ED7i \u0111\u01B0\u1EDDng d\u1EABn ho\u1EB7c",part4:"N\u1EBFu c\xE0i \u0111\u1EB7t \u0111\u1EC3 tr\u1ED1ng, t\u1EA5t c\u1EA3 ghi ch\xFA \u0111\u01B0\u1EE3c bao g\u1ED3m."},name:"Bao g\u1ED3m \u0111\u01B0\u1EDDng d\u1EABn"},jpegQuality:{description:"Ch\u1EA5t l\u01B0\u1EE3ng c\xE0ng th\u1EA5p, t\u1EF7 l\u1EC7 n\xE9n c\xE0ng cao.",name:"Ch\u1EA5t l\u01B0\u1EE3ng JPEG"},locationForNewAttachments:{description:{part1:"B\u1EAFt \u0111\u1EA7u v\u1EDBi",part2:"\u0111\u1EC3 s\u1EED d\u1EE5ng \u0111\u01B0\u1EDDng d\u1EABn t\u01B0\u01A1ng \u0111\u1ED1i.",part3:"Xem c\xE1c",part4:"token c\xF3 s\u1EB5n",part5:"C\xE1c th\u01B0 m\u1EE5c c\xF3 d\u1EA5u ch\u1EA5m nh\u01B0",part6:"kh\xF4ng \u0111\u01B0\u1EE3c khuy\u1EBFn ngh\u1ECB v\xEC Obsidian kh\xF4ng theo d\xF5i ch\xFAng. B\u1EA1n c\xF3 th\u1EC3 c\u1EA7n s\u1EED d\u1EE5ng",part7:"plugin \u0111\u1EC3 qu\u1EA3n l\xFD ch\xFAng."},name:"V\u1ECB tr\xED t\u1EC7p \u0111\xEDnh k\xE8m m\u1EDBi"},markdownUrlFormat:{description:{part1:"\u0110\u1ECBnh d\u1EA1ng URL \u0111\u01B0\u1EE3c ch\xE8n v\xE0o Markdown.",part2:"Xem c\xE1c",part3:"token c\xF3 s\u1EB5n",part4:"\u0110\u1EC3 tr\u1ED1ng \u0111\u1EC3 s\u1EED d\u1EE5ng \u0111\u1ECBnh d\u1EA1ng m\u1EB7c \u0111\u1ECBnh."},name:"\u0110\u1ECBnh d\u1EA1ng URL Markdown"},renameAttachmentsToLowerCase:"\u0110\u1ED5i t\xEAn t\u1EC7p \u0111\xEDnh k\xE8m th\xE0nh ch\u1EEF th\u01B0\u1EDDng",renamedAttachmentFileName:{description:{part1:"Xem c\xE1c",part2:"token c\xF3 th\u1EC3 s\u1EED d\u1EE5ng"},name:"T\xEAn t\u1EC7p \u0111\xEDnh k\xE8m \u0111\u01B0\u1EE3c \u0111\u1ED5i t\xEAn"},resetToSampleCustomTokens:{message:"B\u1EA1n c\xF3 ch\u1EAFc mu\u1ED1n \u0111\u1EB7t l\u1EA1i token t\xF9y ch\u1EC9nh v\u1EC1 token m\u1EABu? M\u1ECDi thay \u0111\u1ED5i s\u1EBD b\u1ECB m\u1EA5t.",title:"\u0110\u1EB7t l\u1EA1i token m\u1EABu"},shouldConvertPastedImagesToJpeg:{description:"C\xF3 n\xEAn chuy\u1EC3n \u0111\u1ED5i h\xECnh \u1EA3nh d\xE1n sang \u0111\u1ECBnh d\u1EA1ng JPEG kh\xF4ng. Ch\u1EC9 \xE1p d\u1EE5ng khi n\u1ED9i dung \u1EA3nh PNG \u0111\u01B0\u1EE3c d\xE1n tr\u1EF1c ti\u1EBFp t\u1EEB clipboard. Th\u01B0\u1EDDng d\xF9ng cho \u1EA3nh ch\u1EE5p m\xE0n h\xECnh.",name:"Chuy\u1EC3n h\xECnh \u1EA3nh d\xE1n sang JPEG"},shouldDeleteOrphanAttachments:{description:"N\u1EBFu b\u1EADt, khi x\xF3a ghi ch\xFA, c\xE1c t\u1EC7p \u0111\xEDnh k\xE8m m\u1ED3 c\xF4i c\u0169ng s\u1EBD b\u1ECB x\xF3a.",name:"X\xF3a t\u1EC7p \u0111\xEDnh k\xE8m m\u1ED3 c\xF4i"},shouldRenameAttachmentFiles:{description:{part1:"N\u1EBFu b\u1EADt, khi ghi ch\xFA \u0111\u01B0\u1EE3c \u0111\u1ED5i t\xEAn ho\u1EB7c di chuy\u1EC3n, c\xE1c t\u1EC7p \u0111\xEDnh k\xE8m s\u1EBD \u0111\u01B0\u1EE3c \u0111\u1ED5i t\xEAn theo",part2:"c\xE0i \u0111\u1EB7t."},name:"\u0110\u1ED5i t\xEAn t\u1EC7p \u0111\xEDnh k\xE8m"},shouldRenameAttachmentFolders:{description:"C\xF3 \u0111\u1ED5i t\xEAn c\xE1c th\u01B0 m\u1EE5c \u0111\xEDnh k\xE8m khi ghi ch\xFA \u0111\u01B0\u1EE3c \u0111\u1ED5i t\xEAn ho\u1EB7c di chuy\u1EC3n kh\xF4ng.",name:"\u0110\u1ED5i t\xEAn th\u01B0 m\u1EE5c \u0111\xEDnh k\xE8m"},shouldRenameCollectedAttachments:{description:{part1:"N\u1EBFu b\u1EADt, c\xE1c t\u1EC7p \u0111\xEDnh k\xE8m \u0111\u01B0\u1EE3c x\u1EED l\xFD qua l\u1EC7nh",part2:"Thu th\u1EADp t\u1EC7p \u0111\xEDnh k\xE8m",part3:"s\u1EBD \u0111\u01B0\u1EE3c \u0111\u1ED5i t\xEAn theo",part4:"c\xE0i \u0111\u1EB7t."},name:"\u0110\u1ED5i t\xEAn t\u1EC7p \u0111\xEDnh k\xE8m \u0111\xE3 thu th\u1EADp"},specialCharacters:{description:{part1:"C\xE1c k\xFD t\u1EF1 \u0111\u1EB7c bi\u1EC7t trong t\xEAn th\u01B0 m\u1EE5c v\xE0 t\u1EC7p \u0111\xEDnh k\xE8m s\u1EBD \u0111\u01B0\u1EE3c thay th\u1EBF ho\u1EB7c lo\u1EA1i b\u1ECF.",part2:"\u0110\u1EC3 tr\u1ED1ng \u0111\u1EC3 gi\u1EEF nguy\xEAn c\xE1c k\xFD t\u1EF1 \u0111\u1EB7c bi\u1EC7t."},name:"K\xFD t\u1EF1 \u0111\u1EB7c bi\u1EC7t"},specialCharactersReplacement:{description:{part1:"Chu\u1ED7i thay th\u1EBF cho c\xE1c k\xFD t\u1EF1 \u0111\u1EB7c bi\u1EC7t trong t\xEAn th\u01B0 m\u1EE5c v\xE0 t\u1EC7p \u0111\xEDnh k\xE8m.",part2:"\u0110\u1EC3 tr\u1ED1ng \u0111\u1EC3 lo\u1EA1i b\u1ECF c\xE1c k\xFD t\u1EF1 \u0111\u1EB7c bi\u1EC7t."},name:"Thay th\u1EBF k\xFD t\u1EF1 \u0111\u1EB7c bi\u1EC7t"},timeoutInSeconds:{description:{part1:"Th\u1EDDi gian ch\u1EDD t\xEDnh b\u1EB1ng gi\xE2y cho t\u1EA5t c\u1EA3 c\xE1c thao t\xE1c.",part2:"N\u1EBFu",part3:"\u0111\u01B0\u1EE3c \u0111\u1EB7t, th\u1EDDi gian ch\u1EDD thao t\xE1c s\u1EBD b\u1ECB v\xF4 hi\u1EC7u h\xF3a."},name:"Th\u1EDDi gian ch\u1EDD (gi\xE2y)"},treatAsAttachmentExtensions:{description:{part1:"Xem c\xE1c t\u1EC7p c\xF3 ph\u1EA7n m\u1EDF r\u1ED9ng n\xE0y l\xE0 t\u1EC7p \u0111\xEDnh k\xE8m.",part2:"Theo m\u1EB7c \u0111\u1ECBnh",part3:"v\xE0",part4:"c\xE1c t\u1EC7p li\xEAn k\u1EBFt kh\xF4ng \u0111\u01B0\u1EE3c xem l\xE0 t\u1EC7p \u0111\xEDnh k\xE8m v\xE0 kh\xF4ng \u0111\u01B0\u1EE3c di chuy\u1EC3n c\xF9ng ghi ch\xFA.",part5:"B\u1EA1n c\xF3 th\u1EC3 th\xEAm c\xE1c ph\u1EA7n m\u1EDF r\u1ED9ng t\xF9y ch\u1EC9nh, v\xED d\u1EE5,",part6:", \u0111\u1EC3 ghi \u0111\xE8 h\xE0nh vi n\xE0y."},name:"X\u1EED l\xFD nh\u01B0 ph\u1EA7n m\u1EDF r\u1ED9ng t\u1EC7p \u0111\xEDnh k\xE8m"}},promptWithPreviewModal:{previewModal:{title:"Xem tr\u01B0\u1EDBc t\u1EC7p \u0111\xEDnh k\xE8m '{{fullFileName}}'"},title:"Cung c\u1EA5p gi\xE1 tr\u1ECB cho token nh\u1EAFc nh\u1EDF"},regularExpression:"/bi\u1EC3u th\u1EE9c ch\xEDnh quy/"};var Ch={attachmentCollector:{confirm:{part1:"\u662F\u5426\u8981\u905E\u8FF4\u6536\u96C6\u8CC7\u6599\u593E\u4E2D\u6240\u6709\u7B46\u8A18\u7684\u9644\u4EF6\uFF1F",part2:"\u6B64\u64CD\u4F5C\u7121\u6CD5\u5FA9\u539F\u3002"},progressBar:{message:"\u6B63\u5728\u6536\u96C6\u9644\u4EF6 {{iterationStr}} - '{{noteFilePath}}'.",title:"\u6B63\u5728\u6536\u96C6\u9644\u4EF6..."}},buttons:{copy:"\u8907\u88FD",move:"\u79FB\u52D5",previewAttachmentFile:"\u9810\u89BD\u9644\u4EF6\u6A94\u6848",skip:"\u8DF3\u904E"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"\u9644\u4EF6",part2:"\u88AB\u591A\u500B\u7B46\u8A18\u5F15\u7528\u3002"},heading:"\u6B63\u5728\u6536\u96C6\u88AB\u591A\u500B\u7B46\u8A18\u4F7F\u7528\u7684\u9644\u4EF6",shouldUseSameActionForOtherProblematicAttachmentsToggle:"\u61C9\u8A72\u5C0D\u5176\u4ED6\u6709\u554F\u984C\u7684\u9644\u4EF6\u4F7F\u7528\u76F8\u540C\u64CD\u4F5C"},commands:{collectAttachmentsCurrentFolder:"\u6536\u96C6\u7576\u524D\u8CC7\u6599\u593E\u4E2D\u7684\u9644\u4EF6",collectAttachmentsCurrentNote:"\u6536\u96C6\u7576\u524D\u7B46\u8A18\u4E2D\u7684\u9644\u4EF6",collectAttachmentsEntireVault:"\u6536\u96C6\u6574\u500B\u5EAB\u4E2D\u7684\u9644\u4EF6"},menuItems:{collectAttachmentsInFile:"\u5728\u6A94\u6848\u4E2D\u6536\u96C6\u9644\u4EF6",collectAttachmentsInFiles:"\u5728\u591A\u500B\u6A94\u6848\u4E2D\u6536\u96C6\u9644\u4EF6"},notice:{collectingAttachments:"\u6B63\u5728\u70BA '{{noteFilePath}}' \u6536\u96C6\u9644\u4EF6",collectingAttachmentsCancelled:"\u9644\u4EF6\u6536\u96C6\u5DF2\u53D6\u6D88\u3002\u8A73\u60C5\u8ACB\u67E5\u770B\u63A7\u5236\u53F0\u3002",generatedAttachmentFileNameIsInvalid:{part1:`\u751F\u6210\u7684\u9644\u4EF6\u6A94\u6848\u540D\u7A31 '{{path}}' \u7121\u6548\u3002
|
|
562
|
+
{{validationMessage}}
|
|
563
|
+
\u8ACB\u6AA2\u67E5\u60A8\u7684`,part2:"\u8A2D\u5B9A\u3002"},notePathIsIgnored:"\u7B46\u8A18\u8DEF\u5F91\u5DF2\u88AB\u5FFD\u7565"},obsidianDevUtils:{buttons:{cancel:"\u53D6\u6D88",ok:"\u78BA\u5B9A"},dataview:{itemsPerPage:"\u6BCF\u9801\u9805\u76EE\uFF1A",jumpToPage:"\u8DF3\u8F49\u5230\u9801\u9762\uFF1A"},notices:{attachmentIsStillUsed:"\u9644\u4EF6 {{attachmentPath}} \u4ECD\u88AB\u5176\u4ED6\u7B46\u8A18\u4F7F\u7528\u3002\u4E0D\u6703\u88AB\u522A\u9664\u3002",unhandledError:"\u767C\u751F\u672A\u8655\u7406\u7684\u932F\u8AA4\u3002\u8ACB\u67E5\u770B\u63A7\u5236\u53F0\u4EE5\u7372\u53D6\u66F4\u591A\u4FE1\u606F\u3002"}},pluginSettings:{attachmentRenameMode:{all:{description:"\u6240\u6709\u6A94\u6848\u90FD\u6703\u91CD\u65B0\u547D\u540D\u3002",displayText:"\u5168\u90E8"},none:{description:"\u4FDD\u7559\u5176\u540D\u7A31\u3002",displayText:"\u7121"},onlyPastedImages:{description:"\u50C5\u91CD\u65B0\u547D\u540D\u8CBC\u4E0A\u7684\u5716\u7247\u3002\u50C5\u9069\u7528\u65BC\u76F4\u63A5\u5F9E\u526A\u8CBC\u7C3F\u8CBC\u4E0A PNG \u5716\u7247\u5167\u5BB9\u6642\u3002\u901A\u5E38\u7528\u65BC\u8CBC\u4E0A\u622A\u5716\u3002",displayText:"\u50C5\u8CBC\u4E0A\u7684\u5716\u7247"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"\u53D6\u6D88\u9644\u4EF6\u6536\u96C6\u3002",displayText:"\u53D6\u6D88"},copy:{description:"\u5C07\u9644\u4EF6\u8907\u88FD\u5230\u65B0\u4F4D\u7F6E\u3002",displayText:"\u8907\u88FD"},move:{description:"\u5C07\u9644\u4EF6\u79FB\u52D5\u5230\u65B0\u4F4D\u7F6E\u3002",displayText:"\u79FB\u52D5"},prompt:{description:"\u63D0\u793A\u7528\u6236\u9078\u64C7\u64CD\u4F5C\u3002",displayText:"\u63D0\u793A"},skip:{description:"\u8DF3\u904E\u6B64\u9644\u4EF6\u4E26\u7E7C\u7E8C\u4E0B\u4E00\u500B\u3002",displayText:"\u8DF3\u904E"}},defaultImageSizeDimension:{height:"\u9AD8\u5EA6",width:"\u5BEC\u5EA6"},emptyAttachmentFolderBehavior:{delete:{description:"\u5C07\u522A\u9664\u7A7A\u9644\u4EF6\u8CC7\u6599\u593E\u3002",displayText:"\u522A\u9664"},deleteWithEmptyParents:{description:"\u5C07\u9023\u540C\u7A7A\u7684\u7236\u8CC7\u6599\u593E\u4E00\u8D77\u522A\u9664\u7A7A\u9644\u4EF6\u8CC7\u6599\u593E\u3002",displayText:"\u9023\u540C\u7A7A\u7684\u7236\u8CC7\u6599\u593E\u4E00\u8D77\u522A\u9664"},keep:{description:"\u5C07\u4FDD\u7559\u7A7A\u9644\u4EF6\u8CC7\u6599\u593E\u3002",displayText:"\u4FDD\u7559"}}},pluginSettingsManager:{customToken:{codeComment:`// \u81EA\u8A02\u4EE4\u724C\u56E0\u9700\u66F4\u65B0\u70BA\u63D2\u4EF6 9.0.0 \u7248\u672C\u6240\u5F15\u5165\u7684\u65B0\u683C\u5F0F\u800C\u88AB\u8A3B\u89E3\u3002
|
|
564
|
+
// \u8A73\u60C5\u8ACB\u53C3\u8003\u5B98\u65B9\u6587\u4EF6\u3002`,deprecated:{part1:"\u5728\u63D2\u4EF6 9.0.0 \u7248\u672C\u4E2D\uFF0C\u81EA\u8A02\u4EE4\u724C\u7684\u8A3B\u518A\u683C\u5F0F\u5DF2\u8B8A\u66F4\u3002\u8ACB\u66F4\u65B0\u60A8\u7684\u4EE4\u724C\u3002\u53C3\u898B",part2:"\u5B98\u65B9\u6587\u4EF6",part3:"\u4EE5\u7372\u5F97\u66F4\u591A\u8CC7\u8A0A"}},legacyRenameAttachmentsToLowerCase:{part1:"\u5728\u63D2\u4EF6 9.0.0 \u7248\u672C\u4E2D\uFF0C\u6B64",part2:"\u8A2D\u5B9A\u5DF2\u88AB\u6DD8\u6C70\u3002\u8ACB\u6539\u7528",part3:"\u683C\u5F0F\u3002\u53C3\u898B",part4:"\u5B98\u65B9\u6587\u4EF6",part5:"\u7372\u53D6\u66F4\u591A\u8CC7\u8A0A"},markdownUrlFormat:{deprecated:{part1:"\u60A8\u70BA\u4EE5\u4E0B\u9805\u76EE\u8A2D\u5B9A\u4E86\u53EF\u80FD\u4E0D\u6B63\u78BA\u7684\u503C",part2:"\u683C\u5F0F\u3002\u8ACB\u53C3\u8003",part3:"\u5B98\u65B9\u6587\u4EF6",part4:"\u4E86\u89E3\u66F4\u591A\u4FE1\u606F",part5:"\u6B64\u8A0A\u606F\u5C07\u4E0D\u518D\u986F\u793A\u3002"}},specialCharacters:{part1:"\u5728\u63D2\u4EF6 9.16.0 \u7248\u672C\u4E2D\uFF0C",part2:"\u9810\u8A2D\u8A2D\u5B9A\u503C\u5DF2\u66F4\u6539\u3002\u60A8\u7684\u8A2D\u5B9A\u5DF2\u66F4\u65B0\u70BA\u65B0\u9810\u8A2D\u503C\u3002"},validation:{defaultImageSizeMustBePercentageOrPixels:"\u9810\u8A2D\u5716\u7247\u5927\u5C0F\u5FC5\u9808\u662F\u50CF\u7D20\u6216\u767E\u5206\u6BD4",invalidCustomTokensCode:"\u7121\u6548\u7684\u81EA\u8A02\u4EE4\u724C\u4EE3\u78BC",invalidRegularExpression:"\u7121\u6548\u7684\u6B63\u5247\u8868\u9054\u5F0F {{regExp}}",specialCharactersMustNotContainSlash:"\u7279\u6B8A\u5B57\u5143\u4E0D\u5F97\u5305\u542B /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"\u7279\u6B8A\u5B57\u5143\u7684\u66FF\u63DB\u4E0D\u5F97\u5305\u542B\u7121\u6548\u7684\u6A94\u540D\u6216\u8DEF\u5F91\u5B57\u5143\u3002"},version:{part1:"\u60A8\u7684\u8A2D\u5B9A\u6A94\u6848",part2:"\u7248\u672C\u70BA",part3:"\u9AD8\u65BC\u76EE\u524D\u63D2\u4EF6\u7248\u672C",part4:"\u63D2\u4EF6\u53EF\u80FD\u7121\u6CD5\u6B63\u5E38\u904B\u4F5C\u3002\u8ACB\u66F4\u65B0\u63D2\u4EF6\u81F3\u6700\u65B0\u7248\u672C\uFF0C\u6216\u78BA\u8A8D\u8A2D\u5B9A\u662F\u5426\u6B63\u78BA\u3002"}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"\u9644\u52A0\u6A94\u6848\u6642\uFF1A"},name:"\u9644\u4EF6\u91CD\u65B0\u547D\u540D\u6A21\u5F0F"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"\u7576\u6536\u96C6\u7684\u9644\u4EF6\u88AB\u591A\u500B\u7B46\u8A18\u4F7F\u7528\u6642\uFF1A"},name:"\u591A\u7B46\u8A18\u5171\u7528\u9644\u4EF6\u6536\u96C6\u6A21\u5F0F"},collectedAttachmentFileName:{description:{part1:"\u53C3\u898B\u53EF\u7528",part2:"\u4EE4\u724C"},name:"\u6536\u96C6\u7684\u9644\u4EF6\u6A94\u6848\u540D\u7A31"},customTokens:{description:{part1:"\u81EA\u8A02\u4EE4\u724C\u7528\u65BC\u3002",part2:"\u8A73\u898B",part3:"\u5B98\u65B9\u6587\u4EF6",part4:"\u4EE5\u7372\u53D6\u66F4\u591A\u8CC7\u8A0A\u3002",part5:"\u26A0\uFE0F \u81EA\u8A02\u4EE4\u724C\u53EF\u5305\u542B\u4EFB\u610F JavaScript \u4EE3\u78BC\uFF0C\u82E5\u64B0\u5BEB\u4E0D\u7576\u53EF\u80FD\u5C0E\u81F4\u8CC7\u6599\u907A\u5931\uFF0C\u8ACB\u81EA\u884C\u659F\u914C\u4F7F\u7528\u3002"},name:"\u81EA\u8A02\u4EE4\u724C"},defaultImageSize:{description:{part1:"\u9810\u8A2D\u5716\u7247\u5927\u5C0F\u3002",part2:"\u53EF\u4EE5\u6307\u5B9A\u70BA\u50CF\u7D20",part3:"\u6216\u662F\u5716\u7247\u5B8C\u6574\u5927\u5C0F\u7684\u767E\u5206\u6BD4",part4:"\u7559\u7A7A\u4EE5\u4F7F\u7528\u539F\u59CB\u5716\u7247\u5927\u5C0F\u3002"},name:"\u9810\u8A2D\u5716\u7247\u5927\u5C0F"},duplicateNameSeparator:{description:{part1:"\u7576\u60A8\u8CBC\u4E0A\u6216\u62D6\u66F3\u4E00\u500B\u8207\u5DF2\u6709\u6A94\u6848\u540C\u540D\u7684\u6A94\u6848\u6642\uFF0C\u6B64\u5206\u9694\u7B26\u6703\u52A0\u5728\u6A94\u540D\u5F8C\u3002",part2:"\u4F8B\u5982\uFF0C\u7576\u62D6\u66F3\u6A94\u6848",part3:"\u6642\uFF0C\u6703\u88AB\u91CD\u65B0\u547D\u540D\u70BA",part4:"\u4F9D\u6B64\u985E\u63A8\u76F4\u5230\u627E\u5230\u53EF\u7528\u540D\u7A31\u3002"},name:"\u91CD\u8907\u540D\u7A31\u5206\u9694\u7B26"},emptyAttachmentFolderBehavior:{description:{part1:"\u7576\u9644\u4EF6\u8CC7\u6599\u593E\u8B8A\u7A7A\u6642\uFF1A"},name:"\u7A7A\u9644\u4EF6\u8CC7\u6599\u593E\u884C\u70BA"},excludePaths:{description:{part1:"\u6392\u9664\u4E0B\u5217\u8DEF\u5F91\u5167\u7684\u7B46\u8A18\u3002",part2:"\u6BCF\u689D\u8DEF\u5F91\u8ACB\u53E6\u8D77\u4E00\u884C\u3002",part3:"\u60A8\u53EF\u4F7F\u7528\u8DEF\u5F91\u5B57\u4E32\u6216",part4:"\u82E5\u8A2D\u5B9A\u70BA\u7A7A\uFF0C\u5247\u4E0D\u6392\u9664\u4EFB\u4F55\u7B46\u8A18\u3002"},name:"\u6392\u9664\u8DEF\u5F91"},excludePathsFromAttachmentCollecting:{description:{part1:"\u57F7\u884C",part2:"\u6536\u96C6\u9644\u4EF6",part3:"\u6307\u4EE4\u6642\u6392\u9664\u4E0B\u5217\u8DEF\u5F91\u4E2D\u7684\u9644\u4EF6\u3002",part4:"\u6BCF\u689D\u8DEF\u5F91\u8ACB\u53E6\u8D77\u4E00\u884C\u3002",part5:"\u60A8\u53EF\u4F7F\u7528\u8DEF\u5F91\u5B57\u4E32\u6216",part6:"\u82E5\u8A2D\u5B9A\u70BA\u7A7A\uFF0C\u6536\u96C6\u9644\u4EF6\u6642\u4E0D\u6392\u9664\u4EFB\u4F55\u8DEF\u5F91\u3002"},name:"\u6536\u96C6\u9644\u4EF6\u6392\u9664\u8DEF\u5F91"},generatedAttachmentFileName:{description:{part1:"\u53C3\u898B\u53EF\u7528",part2:"\u4EE4\u724C"},name:"\u7522\u751F\u7684\u9644\u4EF6\u6A94\u6848\u540D\u7A31"},includePaths:{description:{part1:"\u5305\u542B\u4E0B\u5217\u8DEF\u5F91\u4E2D\u7684\u7B46\u8A18\u3002",part2:"\u6BCF\u689D\u8DEF\u5F91\u8ACB\u53E6\u8D77\u4E00\u884C\u3002",part3:"\u60A8\u53EF\u4F7F\u7528\u8DEF\u5F91\u5B57\u4E32\u6216",part4:"\u82E5\u8A2D\u5B9A\u70BA\u7A7A\uFF0C\u5247\u5305\u542B\u6240\u6709\u7B46\u8A18\u3002"},name:"\u5305\u542B\u8DEF\u5F91"},jpegQuality:{description:"\u54C1\u8CEA\u8D8A\u4F4E\uFF0C\u58D3\u7E2E\u6BD4\u8D8A\u9AD8\u3002",name:"JPEG \u54C1\u8CEA"},locationForNewAttachments:{description:{part1:"\u4EE5",part2:"\u958B\u982D\u4F7F\u7528\u76F8\u5C0D\u8DEF\u5F91\u3002",part3:"\u53C3\u898B\u53EF\u7528",part4:"\u4EE4\u724C",part5:"\u985E\u4F3C\u4EE5\u9EDE\u958B\u982D\u7684\u8CC7\u6599\u593E",part6:"\u4E0D\u5EFA\u8B70\u4F7F\u7528\uFF0C\u56E0 Obsidian \u7121\u6CD5\u8FFD\u8E64\u3002\u60A8\u53EF\u80FD\u9700\u8981\u4F7F\u7528",part7:"\u63D2\u4EF6\u7BA1\u7406\u3002"},name:"\u65B0\u9644\u4EF6\u4F4D\u7F6E"},markdownUrlFormat:{description:{part1:"\u5C07\u63D2\u5165 Markdown \u7684 URL \u683C\u5F0F\u3002",part2:"\u53C3\u898B\u53EF\u7528",part3:"\u4EE4\u724C",part4:"\u7559\u7A7A\u4F7F\u7528\u9810\u8A2D\u683C\u5F0F\u3002"},name:"Markdown URL \u683C\u5F0F"},renameAttachmentsToLowerCase:"\u5C07\u9644\u4EF6\u540D\u7A31\u6539\u6210\u5C0F\u5BEB",renamedAttachmentFileName:{description:{part1:"\u53C3\u898B\u53EF\u7528",part2:"\u4EE4\u724C"},name:"\u91CD\u65B0\u547D\u540D\u7684\u9644\u4EF6\u6A94\u6848\u540D\u7A31"},resetToSampleCustomTokens:{message:"\u60A8\u78BA\u5B9A\u8981\u91CD\u8A2D\u81EA\u8A02\u4EE4\u724C\u70BA\u7BC4\u4F8B\u4EE4\u724C\u55CE\uFF1F\u60A8\u7684\u66F4\u6539\u5C07\u6703\u907A\u5931\u3002",title:"\u91CD\u8A2D\u70BA\u7BC4\u4F8B\u4EE4\u724C"},shouldConvertPastedImagesToJpeg:{description:"\u662F\u5426\u8F49\u63DB\u8CBC\u4E0A\u7684\u5716\u7247\u70BA JPEG\u3002\u50C5\u5728 PNG \u5716\u7247\u5167\u5BB9\u76F4\u63A5\u5F9E\u526A\u8CBC\u7C3F\u8CBC\u4E0A\u6642\u9069\u7528\u3002\u901A\u5E38\u7528\u65BC\u8CBC\u4E0A\u622A\u5716\u3002",name:"\u662F\u5426\u8F49\u63DB\u8CBC\u4E0A\u7684\u5716\u7247\u70BA JPEG"},shouldDeleteOrphanAttachments:{description:"\u555F\u7528\u6642\uFF0C\u522A\u9664\u7B46\u8A18\u6642\u5C07\u540C\u6642\u522A\u9664\u5176\u5B64\u7ACB\u9644\u4EF6\u3002",name:"\u522A\u9664\u5B64\u7ACB\u9644\u4EF6"},shouldRenameAttachmentFiles:{description:{part1:"\u5982\u679C\u555F\u7528\uFF0C\u7576\u7B46\u8A18\u88AB\u91CD\u65B0\u547D\u540D\u6216\u79FB\u52D5\u6642\uFF0C\u5176\u9644\u4EF6\u5C07\u6839\u64DA",part2:"\u8A2D\u5B9A\u9032\u884C\u91CD\u65B0\u547D\u540D\u3002"},name:"\u91CD\u65B0\u547D\u540D\u9644\u4EF6\u6A94\u6848"},shouldRenameAttachmentFolders:{description:"\u7B46\u8A18\u88AB\u91CD\u65B0\u547D\u540D\u6216\u79FB\u52D5\u6642\uFF0C\u662F\u5426\u91CD\u65B0\u547D\u540D\u9644\u4EF6\u8CC7\u6599\u593E\u3002",name:"\u91CD\u65B0\u547D\u540D\u9644\u4EF6\u8CC7\u6599\u593E"},shouldRenameCollectedAttachments:{description:{part1:"\u555F\u7528\u6642\uFF0C\u901A\u904E",part2:"\u6536\u96C6\u9644\u4EF6",part3:"\u6307\u4EE4\u8655\u7406\u7684\u9644\u4EF6\u5C07\u6839\u64DA",part4:"\u8A2D\u5B9A\u91CD\u65B0\u547D\u540D\u3002"},name:"\u91CD\u65B0\u547D\u540D\u6536\u96C6\u7684\u9644\u4EF6"},specialCharacters:{description:{part1:"\u9644\u4EF6\u8CC7\u6599\u593E\u548C\u6A94\u6848\u540D\u7A31\u4E2D\u7684\u7279\u6B8A\u5B57\u5143\u5C07\u88AB\u66FF\u63DB\u6216\u79FB\u9664\u3002",part2:"\u7559\u7A7A\u4EE5\u4FDD\u7559\u7279\u6B8A\u5B57\u5143\u3002"},name:"\u7279\u6B8A\u5B57\u5143"},specialCharactersReplacement:{description:{part1:"\u9644\u4EF6\u8CC7\u6599\u593E\u548C\u6A94\u6848\u540D\u7A31\u7279\u6B8A\u5B57\u5143\u7684\u66FF\u63DB\u5B57\u4E32\u3002",part2:"\u7559\u7A7A\u4EE5\u522A\u9664\u7279\u6B8A\u5B57\u5143\u3002"},name:"\u7279\u6B8A\u5B57\u5143\u66FF\u63DB"},timeoutInSeconds:{description:{part1:"\u6240\u6709\u64CD\u4F5C\u7684\u903E\u6642\u79D2\u6578\u3002",part2:"\u82E5\u8A2D\u5B9A\uFF0C\u5C07\u505C\u7528\u64CD\u4F5C\u903E\u6642\u3002",part3:""},name:"\u903E\u6642\u79D2\u6578"},treatAsAttachmentExtensions:{description:{part1:"\u5C07\u5177\u6709\u9019\u4E9B\u64F4\u5C55\u540D\u7684\u6A94\u6848\u8996\u70BA\u9644\u4EF6\u3002",part2:"\u9810\u8A2D\u60C5\u6CC1\u4E0B",part3:"\u8207",part4:"\u9023\u7D50\u7684\u6A94\u6848\u4E0D\u8996\u70BA\u9644\u4EF6\uFF0C\u4E14\u4E0D\u6703\u8207\u7B46\u8A18\u4E00\u8D77\u79FB\u52D5\u3002",part5:"\u60A8\u53EF\u4EE5\u6DFB\u52A0\u81EA\u8A02\u64F4\u5C55\u540D\uFF0C\u4F8B\u5982",part6:"\u4F86\u8986\u5BEB\u6B64\u884C\u70BA\u3002"},name:"\u8996\u70BA\u9644\u4EF6\u64F4\u5C55\u540D"}},promptWithPreviewModal:{previewModal:{title:"\u9810\u89BD\u9644\u4EF6\u6A94\u6848 '{{fullFileName}}'"},title:"\u63D0\u4F9B\u63D0\u793A\u4EE4\u724C\u7684\u503C"},regularExpression:"/\u6B63\u5247\u8868\u9054\u5F0F/"};var Th={attachmentCollector:{confirm:{part1:"\u662F\u5426\u8981\u9012\u5F52\u6536\u96C6\u6587\u4EF6\u5939\u4E2D\u6240\u6709\u7B14\u8BB0\u7684\u9644\u4EF6\uFF1F",part2:"\u6B64\u64CD\u4F5C\u65E0\u6CD5\u64A4\u9500\u3002"},progressBar:{message:"\u6B63\u5728\u6536\u96C6\u9644\u4EF6 {{iterationStr}} - '{{noteFilePath}}'\u3002",title:"\u6B63\u5728\u6536\u96C6\u9644\u4EF6..."}},buttons:{copy:"\u590D\u5236",move:"\u79FB\u52A8",previewAttachmentFile:"\u9884\u89C8\u9644\u4EF6\u6587\u4EF6",skip:"\u8DF3\u8FC7"},collectAttachmentUsedByMultipleNotesModal:{content:{part1:"\u9644\u4EF6",part2:"\u88AB\u591A\u4E2A\u7B14\u8BB0\u5F15\u7528\u3002"},heading:"\u6B63\u5728\u6536\u96C6\u88AB\u591A\u4E2A\u7B14\u8BB0\u4F7F\u7528\u7684\u9644\u4EF6",shouldUseSameActionForOtherProblematicAttachmentsToggle:"\u662F\u5426\u5BF9\u5176\u4ED6\u6709\u95EE\u9898\u7684\u9644\u4EF6\u4F7F\u7528\u76F8\u540C\u64CD\u4F5C"},commands:{collectAttachmentsCurrentFolder:"\u6536\u96C6\u5F53\u524D\u6587\u4EF6\u5939\u4E2D\u7684\u9644\u4EF6",collectAttachmentsCurrentNote:"\u6536\u96C6\u5F53\u524D\u7B14\u8BB0\u4E2D\u7684\u9644\u4EF6",collectAttachmentsEntireVault:"\u6536\u96C6\u6574\u4E2A\u5E93\u4E2D\u7684\u9644\u4EF6"},menuItems:{collectAttachmentsInFile:"\u5728\u6587\u4EF6\u4E2D\u6536\u96C6\u9644\u4EF6",collectAttachmentsInFiles:"\u5728\u591A\u4E2A\u6587\u4EF6\u4E2D\u6536\u96C6\u9644\u4EF6"},notice:{collectingAttachments:"\u6B63\u5728\u4E3A '{{noteFilePath}}' \u6536\u96C6\u9644\u4EF6",collectingAttachmentsCancelled:"\u9644\u4EF6\u6536\u96C6\u5DF2\u53D6\u6D88\u3002\u8BE6\u60C5\u8BF7\u67E5\u770B\u63A7\u5236\u53F0\u3002",generatedAttachmentFileNameIsInvalid:{part1:`\u751F\u6210\u7684\u9644\u4EF6\u6587\u4EF6\u540D '{{path}}' \u65E0\u6548\u3002
|
|
565
|
+
{{validationMessage}}
|
|
566
|
+
\u8BF7\u68C0\u67E5`,part2:"\u8BBE\u7F6E\u3002"},notePathIsIgnored:"\u7B14\u8BB0\u8DEF\u5F84\u5DF2\u88AB\u5FFD\u7565"},obsidianDevUtils:{buttons:{cancel:"\u53D6\u6D88",ok:"\u786E\u5B9A"},dataview:{itemsPerPage:"\u6BCF\u9875\u9879\u6570:",jumpToPage:"\u8DF3\u8F6C\u81F3\u9875\u6570:"},notices:{attachmentIsStillUsed:"\u9644\u4EF6 {{attachmentPath}} \u4ECD\u7136\u88AB\u5176\u4ED6\u7B14\u8BB0\u4F7F\u7528\u3002\u5B83\u4E0D\u4F1A\u88AB\u5220\u9664\u3002",unhandledError:"\u672A\u5904\u7406\u7684\u9519\u8BEF\u53D1\u751F\u3002\u8BF7\u68C0\u67E5\u63A7\u5236\u53F0\u4EE5\u83B7\u53D6\u66F4\u591A\u4FE1\u606F\u3002"}},pluginSettings:{attachmentRenameMode:{all:{description:"\u6240\u6709\u6587\u4EF6\u90FD\u4F1A\u88AB\u91CD\u547D\u540D\u3002",displayText:"\u5168\u90E8"},none:{description:"\u6587\u4EF6\u540D\u4FDD\u6301\u4E0D\u53D8\u3002",displayText:"\u65E0"},onlyPastedImages:{description:"\u4EC5\u5BF9\u7C98\u8D34\u7684\u56FE\u7247\u8FDB\u884C\u91CD\u547D\u540D\u3002\u4EC5\u5F53 PNG \u56FE\u50CF\u5185\u5BB9\u76F4\u63A5\u4ECE\u526A\u8D34\u677F\u7C98\u8D34\u65F6\u9002\u7528\u3002\u901A\u5E38\u7528\u4E8E\u7C98\u8D34\u5C4F\u5E55\u622A\u56FE\u3002",displayText:"\u4EC5\u7C98\u8D34\u7684\u56FE\u7247"}},collectAttachmentUsedByMultipleNotesMode:{cancel:{description:"\u53D6\u6D88\u9644\u4EF6\u6536\u96C6\u3002",displayText:"\u53D6\u6D88"},copy:{description:"\u5C06\u9644\u4EF6\u590D\u5236\u5230\u65B0\u4F4D\u7F6E\u3002",displayText:"\u590D\u5236"},move:{description:"\u5C06\u9644\u4EF6\u79FB\u52A8\u5230\u65B0\u4F4D\u7F6E\u3002",displayText:"\u79FB\u52A8"},prompt:{description:"\u63D0\u793A\u7528\u6237\u9009\u62E9\u64CD\u4F5C\u3002",displayText:"\u63D0\u793A"},skip:{description:"\u8DF3\u8FC7\u9644\u4EF6\u5E76\u7EE7\u7EED\u4E0B\u4E00\u4E2A\u3002",displayText:"\u8DF3\u8FC7"}},defaultImageSizeDimension:{height:"\u9AD8\u5EA6",width:"\u5BBD\u5EA6"},emptyAttachmentFolderBehavior:{delete:{description:"\u5C06\u5220\u9664\u7A7A\u7684\u9644\u4EF6\u6587\u4EF6\u5939\u3002",displayText:"\u5220\u9664"},deleteWithEmptyParents:{description:"\u5C06\u5220\u9664\u7A7A\u7684\u9644\u4EF6\u6587\u4EF6\u5939\u53CA\u5176\u7A7A\u7684\u7236\u6587\u4EF6\u5939\u3002",displayText:"\u5220\u9664\u5E76\u5220\u9664\u7A7A\u7236\u6587\u4EF6\u5939"},keep:{description:"\u5C06\u4FDD\u7559\u7A7A\u7684\u9644\u4EF6\u6587\u4EF6\u5939\u3002",displayText:"\u4FDD\u7559"}}},pluginSettingsManager:{customToken:{codeComment:`// \u81EA\u5B9A\u4E49\u4EE4\u724C\u5DF2\u88AB\u6CE8\u91CA\u6389\uFF0C\u56E0\u4E3A\u5B83\u4EEC\u9700\u8981\u66F4\u65B0\u4E3A\u63D2\u4EF6 9.0.0 \u7248\u672C\u5F15\u5165\u7684\u65B0\u683C\u5F0F\u3002
|
|
567
|
+
// \u66F4\u591A\u4FE1\u606F\u8BF7\u53C2\u8003\u6587\u6863 (https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens)\u3002`,deprecated:{part1:"\u5728\u63D2\u4EF6 9.0.0 \u7248\u672C\u4E2D\uFF0C\u81EA\u5B9A\u4E49\u4EE4\u724C\u6CE8\u518C\u683C\u5F0F\u5DF2\u66F4\u6539\u3002\u8BF7\u76F8\u5E94\u66F4\u65B0\u4F60\u7684\u4EE4\u724C\u3002\u53C2\u8003",part2:"\u6587\u6863",part3:"\u4E86\u89E3\u66F4\u591A\u4FE1\u606F"}},legacyRenameAttachmentsToLowerCase:{part1:"\u5728\u63D2\u4EF6 9.0.0 \u7248\u672C\u4E2D\uFF0C",part2:"\u8BBE\u7F6E\u5DF2\u5F03\u7528\u3002\u8BF7\u4F7F\u7528",part3:"\u683C\u5F0F\u4EE3\u66FF\u3002\u53C2\u89C1",part4:"\u6587\u6863",part5:"\u4E86\u89E3\u66F4\u591A\u4FE1\u606F"},markdownUrlFormat:{deprecated:{part1:"\u4F60\u53EF\u80FD\u4E3A",part2:"\u683C\u5F0F\u8BBE\u7F6E\u4E86\u9519\u8BEF\u7684\u503C\u3002\u8BF7\u53C2\u8003",part3:"\u6587\u6863",part4:"\u4E86\u89E3\u66F4\u591A\u4FE1\u606F",part5:"\u6B64\u6D88\u606F\u4E0D\u4F1A\u518D\u6B21\u663E\u793A\u3002"}},specialCharacters:{part1:"\u5728\u63D2\u4EF6\u7248\u672C 9.16.0 \u4E2D\uFF0C",part2:"\u9ED8\u8BA4\u8BBE\u7F6E\u503C\u5DF2\u66F4\u6539\u3002\u60A8\u7684\u8BBE\u7F6E\u503C\u5DF2\u66F4\u65B0\u4E3A\u65B0\u7684\u9ED8\u8BA4\u503C\u3002"},validation:{defaultImageSizeMustBePercentageOrPixels:"\u9ED8\u8BA4\u56FE\u50CF\u5927\u5C0F\u5FC5\u987B\u4E3A\u50CF\u7D20\u6216\u767E\u5206\u6BD4",invalidCustomTokensCode:"\u65E0\u6548\u7684\u81EA\u5B9A\u4E49\u4EE4\u724C\u4EE3\u7801",invalidRegularExpression:"\u65E0\u6548\u7684\u6B63\u5219\u8868\u8FBE\u5F0F {{regExp}}",specialCharactersMustNotContainSlash:"\u7279\u6B8A\u5B57\u7B26\u4E0D\u80FD\u5305\u542B /",specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters:"\u7279\u6B8A\u5B57\u7B26\u66FF\u6362\u4E0D\u80FD\u5305\u542B\u65E0\u6548\u7684\u6587\u4EF6\u540D\u8DEF\u5F84\u5B57\u7B26\u3002"},version:{part1:"\u60A8\u7684\u8BBE\u7F6E\u6587\u4EF6 ",part2:"\u7248\u672C\u4E3A",part3:"\uFF0C\u6BD4\u5F53\u524D\u63D2\u4EF6\u7248\u672C\u66F4\u65B0",part4:"\u63D2\u4EF6\u53EF\u80FD\u65E0\u6CD5\u6B63\u5E38\u5DE5\u4F5C\u3002\u8BF7\u5C06\u63D2\u4EF6\u66F4\u65B0\u5230\u6700\u65B0\u7248\u672C\u6216\u786E\u4FDD\u8BBE\u7F6E\u6B63\u786E\u3002"}},pluginSettingsTab:{attachmentRenameMode:{description:{part1:"\u5F53\u9644\u52A0\u6587\u4EF6\u65F6\uFF1A"},name:"\u9644\u4EF6\u91CD\u547D\u540D\u6A21\u5F0F"},collectAttachmentUsedByMultipleNotesMode:{description:{part1:"\u5F53\u6536\u96C6\u7684\u9644\u4EF6\u88AB\u591A\u4E2A\u7B14\u8BB0\u4F7F\u7528\u65F6\uFF1A"},name:"\u6536\u96C6\u88AB\u591A\u4E2A\u7B14\u8BB0\u4F7F\u7528\u7684\u9644\u4EF6\u6A21\u5F0F"},collectedAttachmentFileName:{description:{part1:"\u67E5\u770B\u53EF\u7528",part2:"\u4EE4\u724C"},name:"\u6536\u96C6\u7684\u9644\u4EF6\u6587\u4EF6\u540D"},customTokens:{description:{part1:"\u8981\u4F7F\u7528\u7684\u81EA\u5B9A\u4E49\u4EE4\u724C\u3002",part2:"\u53C2\u89C1",part3:"\u6587\u6863",part4:"\u4E86\u89E3\u66F4\u591A\u4FE1\u606F\u3002",part5:"\u26A0\uFE0F \u81EA\u5B9A\u4E49\u4EE4\u724C\u53EF\u4EE5\u662F\u4EFB\u610F JavaScript \u4EE3\u7801\u3002\u5982\u679C\u7F16\u5199\u4E0D\u5F53\uFF0C\u53EF\u80FD\u4F1A\u5BFC\u81F4\u6570\u636E\u4E22\u5931\u3002\u98CE\u9669\u81EA\u62C5\u3002"},name:"\u81EA\u5B9A\u4E49\u4EE4\u724C"},defaultImageSize:{description:{part1:"\u9ED8\u8BA4\u56FE\u50CF\u5927\u5C0F\u3002",part2:"\u53EF\u4EE5\u7528\u50CF\u7D20\u6307\u5B9A",part3:"\u6216\u8005\u662F\u56FE\u50CF\u5B8C\u6574\u5C3A\u5BF8\u7684\u767E\u5206\u6BD4",part4:"\u4FDD\u7559\u4E3A\u7A7A\u4EE5\u4F7F\u7528\u539F\u59CB\u56FE\u50CF\u5927\u5C0F\u3002"},name:"\u9ED8\u8BA4\u56FE\u50CF\u5927\u5C0F"},duplicateNameSeparator:{description:{part1:"\u5F53\u4F60\u7C98\u8D34/\u62D6\u62FD\u4E00\u4E2A\u4E0E\u73B0\u6709\u6587\u4EF6\u540C\u540D\u7684\u6587\u4EF6\u65F6\uFF0C\u6B64\u5206\u9694\u7B26\u4F1A\u6DFB\u52A0\u5230\u6587\u4EF6\u540D\u4E2D\u3002",part2:"\u4F8B\u5982\uFF0C\u5F53\u4F60\u62D6\u62FD\u6587\u4EF6",part3:"\u65F6\uFF0C\u5B83\u4F1A\u88AB\u91CD\u547D\u540D\u4E3A",part4:"\uFF0C\u4F9D\u6B64\u7C7B\u63A8\uFF0C\u76F4\u5230\u83B7\u5F97\u7B2C\u4E00\u4E2A\u53EF\u7528\u540D\u79F0\u3002"},name:"\u91CD\u590D\u6587\u4EF6\u540D\u5206\u9694\u7B26"},emptyAttachmentFolderBehavior:{description:{part1:"\u5F53\u9644\u4EF6\u6587\u4EF6\u5939\u53D8\u4E3A\u7A7A\u65F6\uFF1A"},name:"\u7A7A\u9644\u4EF6\u6587\u4EF6\u5939\u5904\u7406"},excludePaths:{description:{part1:"\u6392\u9664\u4EE5\u4E0B\u8DEF\u5F84\u4E2D\u7684\u7B14\u8BB0\u3002",part2:"\u6BCF\u884C\u8F93\u5165\u4E00\u4E2A\u8DEF\u5F84\u3002",part3:"\u4F60\u53EF\u4EE5\u4F7F\u7528\u8DEF\u5F84\u5B57\u7B26\u4E32\u6216",part4:"\u5982\u679C\u8BBE\u7F6E\u4E3A\u7A7A\uFF0C\u5219\u4E0D\u6392\u9664\u4EFB\u4F55\u7B14\u8BB0\u3002"},name:"\u6392\u9664\u8DEF\u5F84"},excludePathsFromAttachmentCollecting:{description:{part1:"\u5F53\u6267\u884C",part2:"\u6536\u96C6\u9644\u4EF6",part3:"\u547D\u4EE4\u65F6\uFF0C\u6392\u9664\u4EE5\u4E0B\u8DEF\u5F84\u4E2D\u7684\u9644\u4EF6\u3002",part4:"\u6BCF\u884C\u8F93\u5165\u4E00\u4E2A\u8DEF\u5F84\u3002",part5:"\u4F60\u53EF\u4EE5\u4F7F\u7528\u8DEF\u5F84\u5B57\u7B26\u4E32\u6216",part6:"\u5982\u679C\u8BBE\u7F6E\u4E3A\u7A7A\uFF0C\u5219\u4E0D\u4F1A\u6392\u9664\u4EFB\u4F55\u8DEF\u5F84\u3002"},name:"\u4ECE\u9644\u4EF6\u6536\u96C6\u4E2D\u6392\u9664\u8DEF\u5F84"},generatedAttachmentFileName:{description:{part1:"\u67E5\u770B\u53EF\u7528",part2:"\u4EE4\u724C"},name:"\u751F\u6210\u7684\u9644\u4EF6\u6587\u4EF6\u540D"},includePaths:{description:{part1:"\u5305\u542B\u4EE5\u4E0B\u8DEF\u5F84\u4E2D\u7684\u7B14\u8BB0\u3002",part2:"\u6BCF\u884C\u8F93\u5165\u4E00\u4E2A\u8DEF\u5F84\u3002",part3:"\u4F60\u53EF\u4EE5\u4F7F\u7528\u8DEF\u5F84\u5B57\u7B26\u4E32\u6216",part4:"\u5982\u679C\u8BBE\u7F6E\u4E3A\u7A7A\uFF0C\u5219\u5305\u542B\u6240\u6709\u7B14\u8BB0\u3002"},name:"\u5305\u542B\u8DEF\u5F84"},jpegQuality:{description:"\u8D28\u91CF\u8D8A\u4F4E\uFF0C\u538B\u7F29\u7387\u8D8A\u9AD8\u3002",name:"JPEG \u8D28\u91CF"},locationForNewAttachments:{description:{part1:"\u4EE5",part2:"\u5F00\u5934\u4F7F\u7528\u76F8\u5BF9\u8DEF\u5F84\u3002",part3:"\u67E5\u770B\u53EF\u7528",part4:"\u4EE4\u724C",part5:"\u50CF",part6:"\u8FD9\u6837\u7684\u70B9\u6587\u4EF6\u5939\u4E0D\u63A8\u8350\u4F7F\u7528\uFF0C\u56E0\u4E3A Obsidian \u4E0D\u4F1A\u8DDF\u8E2A\u5B83\u4EEC\u3002\u4F60\u53EF\u80FD\u9700\u8981\u4F7F\u7528",part7:"\u63D2\u4EF6\u6765\u7BA1\u7406\u5B83\u4EEC\u3002"},name:"\u65B0\u9644\u4EF6\u4F4D\u7F6E"},markdownUrlFormat:{description:{part1:"\u63D2\u5165\u5230 Markdown \u4E2D\u7684 URL \u683C\u5F0F\u3002",part2:"\u67E5\u770B\u53EF\u7528",part3:"\u4EE4\u724C",part4:"\u7559\u7A7A\u4EE5\u4F7F\u7528\u9ED8\u8BA4\u683C\u5F0F\u3002"},name:"Markdown URL \u683C\u5F0F"},renameAttachmentsToLowerCase:"\u5C06\u9644\u4EF6\u91CD\u547D\u540D\u4E3A\u5C0F\u5199",renamedAttachmentFileName:{description:{part1:"\u67E5\u770B\u53EF\u7528",part2:"\u4EE4\u724C"},name:"\u91CD\u547D\u540D\u7684\u9644\u4EF6\u6587\u4EF6\u540D"},resetToSampleCustomTokens:{message:"\u786E\u5B9A\u8981\u5C06\u81EA\u5B9A\u4E49\u4EE4\u724C\u91CD\u7F6E\u4E3A\u793A\u4F8B\u81EA\u5B9A\u4E49\u4EE4\u724C\u5417\uFF1F\u4F60\u7684\u66F4\u6539\u5C06\u4F1A\u4E22\u5931\u3002",title:"\u91CD\u7F6E\u4E3A\u793A\u4F8B\u81EA\u5B9A\u4E49\u4EE4\u724C"},shouldConvertPastedImagesToJpeg:{description:"\u662F\u5426\u5C06\u7C98\u8D34\u7684\u56FE\u7247\u8F6C\u6362\u4E3A JPEG\u3002\u4EC5\u5F53 PNG \u56FE\u50CF\u5185\u5BB9\u76F4\u63A5\u4ECE\u526A\u8D34\u677F\u7C98\u8D34\u65F6\u9002\u7528\u3002\u901A\u5E38\u7528\u4E8E\u7C98\u8D34\u5C4F\u5E55\u622A\u56FE\u3002",name:"\u662F\u5426\u5C06\u7C98\u8D34\u7684\u56FE\u7247\u8F6C\u6362\u4E3A JPEG"},shouldDeleteOrphanAttachments:{description:"\u5982\u679C\u542F\u7528\uFF0C\u5F53\u7B14\u8BB0\u88AB\u5220\u9664\u65F6\uFF0C\u5176\u5B64\u7ACB\u7684\u9644\u4EF6\u4E5F\u4F1A\u88AB\u5220\u9664\u3002",name:"\u662F\u5426\u5220\u9664\u5B64\u7ACB\u9644\u4EF6"},shouldRenameAttachmentFiles:{description:{part1:"\u5982\u679C\u542F\u7528\uFF0C\u5F53\u7B14\u8BB0\u88AB\u91CD\u547D\u540D\u6216\u79FB\u52A8\u65F6\uFF0C\u5176\u9644\u4EF6\u5C06\u6839\u636E",part2:"\u8BBE\u7F6E\u8FDB\u884C\u91CD\u547D\u540D\u3002"},name:"\u662F\u5426\u91CD\u547D\u540D\u9644\u4EF6\u6587\u4EF6"},shouldRenameAttachmentFolders:{description:"\u5F53\u7B14\u8BB0\u88AB\u91CD\u547D\u540D\u6216\u79FB\u52A8\u65F6\uFF0C\u662F\u5426\u91CD\u547D\u540D\u9644\u4EF6\u6587\u4EF6\u5939\u3002",name:"\u662F\u5426\u91CD\u547D\u540D\u9644\u4EF6\u6587\u4EF6\u5939"},shouldRenameCollectedAttachments:{description:{part1:"\u5982\u679C\u542F\u7528\uFF0C\u901A\u8FC7",part2:"\u6536\u96C6\u9644\u4EF6",part3:"\u547D\u4EE4\u5904\u7406\u7684\u9644\u4EF6\u5C06\u6839\u636E",part4:"\u8BBE\u7F6E\u91CD\u547D\u540D\u3002"},name:"\u662F\u5426\u91CD\u547D\u540D\u6536\u96C6\u7684\u9644\u4EF6"},specialCharacters:{description:{part1:"\u8981\u66FF\u6362\u6216\u5220\u9664\u7684\u9644\u4EF6\u6587\u4EF6\u5939\u548C\u6587\u4EF6\u540D\u4E2D\u7684\u7279\u6B8A\u5B57\u7B26\u3002",part2:"\u7559\u7A7A\u4EE5\u4FDD\u7559\u7279\u6B8A\u5B57\u7B26\u3002"},name:"\u7279\u6B8A\u5B57\u7B26"},specialCharactersReplacement:{description:{part1:"\u9644\u4EF6\u6587\u4EF6\u5939\u548C\u6587\u4EF6\u540D\u4E2D\u7528\u4E8E\u66FF\u6362\u7279\u6B8A\u5B57\u7B26\u7684\u5B57\u7B26\u4E32\u3002",part2:"\u7559\u7A7A\u4EE5\u5220\u9664\u7279\u6B8A\u5B57\u7B26\u3002"},name:"\u7279\u6B8A\u5B57\u7B26\u66FF\u6362"},timeoutInSeconds:{description:{part1:"\u6240\u6709\u64CD\u4F5C\u7684\u8D85\u65F6\u65F6\u95F4\uFF08\u79D2\uFF09\u3002",part2:"\u5982\u679C",part3:"\u5DF2\u8BBE\u7F6E\uFF0C\u5219\u7981\u7528\u64CD\u4F5C\u6267\u884C\u8D85\u65F6\u3002"},name:"\u8D85\u65F6\u65F6\u95F4\uFF08\u79D2\uFF09"},treatAsAttachmentExtensions:{description:{part1:"\u5C06\u8FD9\u4E9B\u6269\u5C55\u540D\u7684\u6587\u4EF6\u89C6\u4E3A\u9644\u4EF6\u3002",part2:"\u9ED8\u8BA4\u60C5\u51B5\u4E0B",part3:"\u548C",part4:"\u94FE\u63A5\u6587\u4EF6\u4E0D\u4F1A\u88AB\u89C6\u4E3A\u9644\u4EF6\uFF0C\u4E5F\u4E0D\u4F1A\u968F\u7B14\u8BB0\u79FB\u52A8\u3002",part5:"\u4F60\u53EF\u4EE5\u6DFB\u52A0\u81EA\u5B9A\u4E49\u6269\u5C55\u540D\uFF0C\u4F8B\u5982",part6:"\uFF0C\u4EE5\u8986\u76D6\u6B64\u884C\u4E3A\u3002"},name:"\u89C6\u4E3A\u9644\u4EF6\u7684\u6269\u5C55\u540D"}},promptWithPreviewModal:{previewModal:{title:"\u9884\u89C8\u9644\u4EF6\u6587\u4EF6 '{{fullFileName}}'"},title:"\u4E3A\u63D0\u793A\u4EE4\u724C\u63D0\u4F9B\u4E00\u4E2A\u503C"},regularExpression:"/\u6B63\u5219\u8868\u8FBE\u5F0F/"};var KA={am:Vm,ar:_m,be:$m,ca:qm,cs:Gm,da:Wm,de:Jm,en:Ym,"en-GB":Hm,es:Qm,fa:Zm,fr:Xm,ga:eh,he:th,hu:nh,id:ah,it:rh,ja:ih,kh:oh,ko:sh,lv:lh,ms:ch,ne:ph,nl:dh,no:uh,pl:mh,pt:gh,"pt-BR":hh,ro:fh,ru:kh,sq:vh,th:yh,tr:bh,uk:Ah,uz:wh,vi:xh,zh:Th,"zh-TW":Ch},Sh=KA;var Ph={avif:"image/avif",bmp:"image/bmp",gif:"image/gif",jpeg:"image/jpeg",jpg:"image/jpeg",png:"image/png",svg:"image/svg+xml",webp:"image/webp"};async function Eh(t,e,n){let r=Ph[e.toLowerCase()];if(!r||!t.settings.defaultImageSize)return null;let a=new Blob([n],{type:r}),o=await Qo(a),s=new Image;await new Promise(u=>{s.addEventListener("load",()=>{u()}),s.src=o});let l,c,p="px",d="%";if(t.settings.defaultImageSize.endsWith(p)){let u=Number(vt(t.settings.defaultImageSize,p));t.settings.defaultImageSizeDimension==="width"?(l=u,c=Math.trunc(l/s.width*s.height)):(c=u,l=Math.trunc(c/s.height*s.width))}else{let u=Number(vt(t.settings.defaultImageSize,d)),h=100;l=Math.trunc(s.width/h*u),c=Math.trunc(s.height/h*u)}return`${String(l)}x${String(c)}`}i(Eh,"getImageSize");function Fh(t){return Ph[t.toLowerCase()]??null}i(Fh,"getMimeType");var Tf=require("obsidian");var Ih=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var ic=class extends Qn{static{i(this,"AlertModal")}options;constructor(e,n){super(e,n,z.AlertModal);let r={app:e.app,cssClass:"",message:e.message,okButtonText:jt(a=>a.obsidianDevUtils.buttons.ok),title:""};this.options={...r,...e}}onClose(){super.onClose(),this.resolve()}onOpen(){super.onOpen(),this.titleEl.setText(this.options.title),this.contentEl.createEl("p",{text:this.options.message});let e=new Ih.ButtonComponent(this.contentEl);e.setButtonText(this.options.okButtonText),e.setCta(),e.onClick(this.close.bind(this)),e.setClass(z.OkButton)}};async function ra(t){await gi(e=>new ic(t,e))}i(ra,"alert");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Wt=class{static{i(this,"Transformer")}getTransformer(e){if(e===this.id)return this;throw new Error(`Transformer with id ${e} not found`)}transformObjectRecursively(e){return this.transformValueRecursively(e,"")}getTransformerId(e,n){return this.canTransform(e,n)?this.id:null}transformValueRecursively(e,n){let r=this.getTransformerId(e,n);if(r){let s=this.transformValue(e,n);return s===void 0?void 0:{__transformerId:r,transformedValue:s}}if(e===null)return null;if(typeof e!="object")return e;if(Array.isArray(e))return e.map((s,l)=>this.transformValueRecursively(s,String(l)));let a=e;if(a.__transformerId)return this.getTransformer(a.__transformerId).restoreValue(a.transformedValue,n);let o={};for(let s of Mn(e)){let l=e[s],c=this.transformValueRecursively(l,s);o[s]=c}return o}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var rt=class extends Wt{static{i(this,"TypedTransformer")}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Ni=class extends rt{static{i(this,"DateTransformer")}get id(){return"date"}canTransform(e){return e instanceof Date}restoreValue(e){return new Date(e)}transformValue(e){return e.toISOString()}};var zh=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Ri=class extends rt{static{i(this,"DurationTransformer")}get id(){return"duration"}canTransform(e){let n=e??{};return!!n.asHours&&!!n.asMinutes&&!!n.asSeconds&&!!n.asMilliseconds}restoreValue(e){return zh.moment.duration(e)}transformValue(e){return e.toISOString()}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var ji=class extends Wt{static{i(this,"GroupTransformer")}constructor(e){super(),this.transformers=e}get id(){return"group"}canTransform(e,n){return this.getFirstTransformerThatCanTransform(e,n)!==null}getTransformer(e){return this.transformers.find(n=>n.id===e)??Xt(`No transformer with id ${e} found`)}transformValue(e,n){let r=this.getFirstTransformerThatCanTransform(e,n);if(r===null)throw new Error("No transformer can transform the value");return r.transformValue(e,n)}getTransformerId(e,n){let r=this.getFirstTransformerThatCanTransform(e,n);return r===null?null:r.id}restoreValue(){throw new Error("GroupTransformer does not support restoring values")}getFirstTransformerThatCanTransform(e,n){return this.transformers.find(r=>r.canTransform(e,n))??null}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Li=class extends rt{static{i(this,"MapTransformer")}get id(){return"map"}canTransform(e){return e instanceof Map}restoreValue(e){return new Map(e)}transformValue(e){return Array.from(e.entries())}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Oi=class extends rt{static{i(this,"SetTransformer")}get id(){return"set"}canTransform(e){return e instanceof Set}restoreValue(e){return new Set(e)}transformValue(e){return Array.from(e)}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var QA="_",Di=class extends Wt{static{i(this,"SkipPrivatePropertyTransformer")}get id(){return"skip-private-property"}canTransform(e,n){return n.startsWith(QA)}transformValue(){}restoreValue(){throw new Error("SkipPrivatePropertyTransformer does not support restoring values")}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var _a=class{static{i(this,"TwoWayMap")}keyValueMap=new Map;valueKeyMap=new Map;constructor(e=[]){for(let[n,r]of e)this.set(n,r)}clear(){this.keyValueMap.clear(),this.valueKeyMap.clear()}deleteKey(e){let n=this.getValue(e);n!==void 0&&this.valueKeyMap.delete(n),this.keyValueMap.delete(e)}deleteValue(e){let n=this.getKey(e);n!==void 0&&this.keyValueMap.delete(n),this.valueKeyMap.delete(e)}entries(){return this.keyValueMap.entries()}getKey(e){return this.valueKeyMap.get(e)}getValue(e){return this.keyValueMap.get(e)}hasKey(e){return this.keyValueMap.has(e)}hasValue(e){return this.valueKeyMap.has(e)}keys(){return this.keyValueMap.keys()}set(e,n){this.deleteKey(e),this.deleteValue(n),this.keyValueMap.set(e,n),this.valueKeyMap.set(n,e)}values(){return this.valueKeyMap.keys()}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Bi=class extends rt{static{i(this,"TwoWayMapTransformer")}get id(){return"two-way-map"}canTransform(e){return e instanceof _a}restoreValue(e){return new _a(e)}transformValue(e){return Array.from(e.entries())}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var ZA=new ji([new Di,new Ni,new Ri,new Li,new Oi,new Bi]),Ui=class extends ft{static{i(this,"PluginSettingsManagerBase")}constructor(e){super(),this.plugin=e,this.app=e.app,this.defaultSettings=this.createDefaultSettings(),this.currentSettingsWrapper=this.createDefaultSettingsWrapper(),this.lastSavedSettingsWrapper=this.createDefaultSettingsWrapper(),this.propertyNames=Mn(this.currentSettingsWrapper.settings),this.registerValidators(),this.registerLegacySettingsConverters()}app;defaultSettings;get settingsWrapper(){return this.currentSettingsWrapper}currentSettingsWrapper;lastSavedSettingsWrapper;legacySettingsConverters=[];propertyNames;validators=new Map;async editAndSave(e,n){await this.edit(e),await this.saveToFile(n)}async ensureSafe(e){let n=await this.validate(e);for(let r of this.propertyNames)n[r]&&(e[r]=this.defaultSettings[r])}async getSafeCopy(e){let n=await this.cloneSettings(e);return await this.ensureSafe(n),n}async loadFromFile(e){let n=await this.plugin.loadData();this.lastSavedSettingsWrapper=this.createDefaultSettingsWrapper(),this.currentSettingsWrapper=this.createDefaultSettingsWrapper();try{if(n==null)return;if(typeof n!="object"){console.error(`Invalid settings from data.json. Expected Object, got: ${typeof n}`);return}let r=n,a=await this.rawRecordToSettings(r),o=await this.validate(a);for(let l of this.propertyNames)this.setPropertyImpl(l,a[l],o[l]);this.lastSavedSettingsWrapper=await this.cloneSettingsWrapper(this.currentSettingsWrapper);let s=await this.settingsToRawRecord(this.currentSettingsWrapper.settings);Qe(s,n)||await this.saveToFileImpl()}finally{await this.triggerAsync("loadSettings",this.currentSettingsWrapper,e)}}on(e,n,r){return super.on(e,n,r)}async revalidate(){return await this.edit(lt),this.currentSettingsWrapper.validationMessages}async saveToFile(e){Qe(this.lastSavedSettingsWrapper.settings,this.currentSettingsWrapper.settings)||(await this.saveToFileImpl(),await this.triggerAsync("saveSettings",this.currentSettingsWrapper,this.lastSavedSettingsWrapper,e),this.lastSavedSettingsWrapper=await this.cloneSettingsWrapper(this.currentSettingsWrapper))}async setProperty(e,n){return await this.edit(r=>{r[e]=n}),this.currentSettingsWrapper.validationMessages[e]}async validate(e){let n={};for(let[r,a]of this.validators.entries()){let o=await a(e[r],e);o&&(n[r]=o)}return n}getTransformer(){return ZA}async onLoadRecord(e){for(let n of this.legacySettingsConverters)n(e);await Promise.resolve()}async onSavingRecord(e){await gt()}registerLegacySettingsConverter(e,n){let r=this;this.legacySettingsConverters.push(a);function a(o){let s=new Set(Object.keys(new e)),l=new Set(r.propertyNames),c=o;n(c);for(let p of Object.keys(c))l.has(p)||s.has(p)&&delete o[p]}i(a,"legacySettingsConverter")}registerLegacySettingsConverters(){}registerValidator(e,n){this.validators.set(e,n)}registerValidators(){}async cloneSettings(e){let n=await this.settingsToRawRecord(e),r=JSON.stringify(n),a=JSON.parse(r);return await this.rawRecordToSettings(a)}async cloneSettingsWrapper(e){return{safeSettings:await this.cloneSettings(e.safeSettings),settings:await this.cloneSettings(e.settings),validationMessages:{...e.validationMessages}}}createDefaultSettingsWrapper(){return{safeSettings:this.createDefaultSettings(),settings:this.createDefaultSettings(),validationMessages:{}}}async edit(e){try{await e(this.currentSettingsWrapper.settings)}finally{let n=await this.validate(this.currentSettingsWrapper.settings);for(let r of this.propertyNames){let a=n[r]??"";this.currentSettingsWrapper.validationMessages[r]=a,this.currentSettingsWrapper.safeSettings[r]=a?this.defaultSettings[r]:this.currentSettingsWrapper.settings[r]}}}isValidPropertyName(e){return typeof e!="string"?!1:this.propertyNames.includes(e)}async rawRecordToSettings(e){e=this.getTransformer().transformObjectRecursively(e),await this.onLoadRecord(e);let n=this.createDefaultSettings();for(let[r,a]of Object.entries(e)){if(!this.isValidPropertyName(r)){ne("PluginSettingsManagerBase:rawRecordToSettings")(`Unknown property: ${r}`);continue}typeof a!=typeof this.defaultSettings[r]&&ne("PluginSettingsManagerBase:rawRecordToSettings")("Possible invalid value type. It might lead to an unexpected behavior of the plugin. There is also a chance it is a false-negative warning, as we are unable to determine the exact type of the value in runtime.",{defaultValue:this.defaultSettings[r],propertyName:r,value:a}),n[r]=a}return n}async saveToFileImpl(){await this.plugin.saveData(await this.settingsToRawRecord(this.currentSettingsWrapper.settings))}setPropertyImpl(e,n,r){this.currentSettingsWrapper.settings[e]=n,this.currentSettingsWrapper.validationMessages[e]=r??"",this.currentSettingsWrapper.safeSettings[e]=r?this.defaultSettings[e]:n}async settingsToRawRecord(e){let n={};for(let r of this.propertyNames)n[r]=e[r];return await this.onSavingRecord(n),this.getTransformer().transformObjectRecursively(n)}};var Ya=Mt(Af(),1);var HC=2e3,Tc=class{static{i(this,"LegacySettings")}autoRenameFiles=!1;autoRenameFolder=!0;convertImagesOnDragAndDrop=!1;convertImagesToJpeg=!1;dateTimeFormat="";deleteOrphanAttachments=!1;generatedAttachmentFilename="";keepEmptyAttachmentFolders=!1;pastedFileName="file-${date:YYYYMMDDHHmmssSSS}";pastedImageFileName="";renameAttachmentsOnDragAndDrop=!1;renameCollectedFiles=!1;renameOnlyImages=!1;renamePastedFilesWithKnownNames=!1;replaceWhitespace=!1;shouldConvertPastedImagesToJpeg=!1;shouldDuplicateCollectedAttachments=!1;shouldKeepEmptyAttachmentFolders=!1;shouldRenameAttachments=!0;shouldRenameAttachmentsToLowerCase=!1;toLowerCase=!1;warningVersion="";whitespaceReplacement=""},Sc=class{constructor(e,n){this.legacySettings=e;this.plugin=n;this.app=n.app}static{i(this,"LegacySettingsConverter")}app;convert(){this.convertWarningVersion(),!this.handleNewVersion()&&(this.convertDateTimeFormat(),this.convertReplaceWhitespace(),this.convertAutoRenameFiles(),this.convertAutoRenameFolder(),this.convertShouldRenameAttachments(),this.convertDeleteOrphanAttachments(),this.convertKeepEmptyAttachmentFolders(),this.convertRenameCollectedFiles(),this.convertToLowerCase(),this.convertCustomTokensStr(),this.convertConvertImagesToJpeg(),this.convertWhitespaceReplacement(),this.convertShouldKeepEmptyAttachmentFolders(),this.convertLegacyTokens(),this.convertCollectAttachmentUsedByMultipleNotesMode(),this.convertMarkdownUrlFormat(),this.convertSpecialCharacters(),this.legacySettings.version=this.plugin.manifest.version)}convertAutoRenameFiles(){this.legacySettings.autoRenameFiles!==void 0&&(this.legacySettings.shouldRenameAttachmentFiles=this.legacySettings.autoRenameFiles)}convertAutoRenameFolder(){this.legacySettings.autoRenameFolder!==void 0&&(this.legacySettings.shouldRenameAttachmentFolder=this.legacySettings.autoRenameFolder)}convertCollectAttachmentUsedByMultipleNotesMode(){this.legacySettings.collectAttachmentUsedByMultipleNotesMode===void 0&&this.legacySettings.shouldDuplicateCollectedAttachments!==void 0&&(this.legacySettings.collectAttachmentUsedByMultipleNotesMode=this.legacySettings.shouldDuplicateCollectedAttachments?"Copy":"Skip")}convertConvertImagesToJpeg(){(this.legacySettings.shouldConvertPastedImagesToJpeg!==void 0||this.legacySettings.convertImagesToJpeg!==void 0)&&(this.legacySettings.convertImagesToJpegMode=this.legacySettings.shouldConvertPastedImagesToJpeg??this.legacySettings.convertImagesToJpeg?"Only pasted clipboard PNG images":"None")}convertCustomTokensStr(){this.legacySettings.customTokensStr&&this.legacySettings.version&&(0,Ya.compare)(this.legacySettings.version,"9.0.0")<0&&(this.legacySettings.customTokensStr=`${g(e=>e.pluginSettingsManager.customToken.codeComment)}
|
|
568
|
+
|
|
569
|
+
${KC(this.legacySettings.customTokensStr)}
|
|
570
|
+
`,J(async()=>{await this.plugin.waitForLifecycleEvent("layoutReady"),await ra({app:this.app,message:createFragment(e=>{e.appendText(g(n=>n.pluginSettingsManager.customToken.deprecated.part1)),e.createEl("a",{href:"https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens",text:g(n=>n.pluginSettingsManager.customToken.deprecated.part2)}),e.appendText(" "),e.appendText(g(n=>n.pluginSettingsManager.customToken.deprecated.part3))})})}))}convertDateTimeFormat(){let e=this.legacySettings.dateTimeFormat??"YYYYMMDDHHmmssSSS";this.legacySettings.attachmentFolderPath=wf(this.legacySettings.attachmentFolderPath??"",e),this.legacySettings.generatedAttachmentFileName=wf(this.legacySettings.generatedAttachmentFileName??this.legacySettings.generatedAttachmentFilename??this.legacySettings.pastedFileName??this.legacySettings.pastedImageFileName??"file-${date}",e)}convertDeleteOrphanAttachments(){this.legacySettings.deleteOrphanAttachments!==void 0&&(this.legacySettings.shouldDeleteOrphanAttachments=this.legacySettings.deleteOrphanAttachments)}convertKeepEmptyAttachmentFolders(){this.legacySettings.keepEmptyAttachmentFolders!==void 0&&(this.legacySettings.shouldKeepEmptyAttachmentFolders=this.legacySettings.keepEmptyAttachmentFolders)}convertLegacyTokens(){this.legacySettings.attachmentFolderPath=this.replaceLegacyTokens(this.legacySettings.attachmentFolderPath),this.legacySettings.generatedAttachmentFileName=this.replaceLegacyTokens(this.legacySettings.generatedAttachmentFileName),this.legacySettings.markdownUrlFormat=this.replaceLegacyTokens(this.legacySettings.markdownUrlFormat),this.legacySettings.customTokensStr=this.replaceLegacyTokens(this.legacySettings.customTokensStr??"")}convertMarkdownUrlFormat(){this.legacySettings.version&&(0,Ya.compare)(this.legacySettings.version,"9.2.0")<0&&(this.legacySettings.markdownUrlFormat==="${generatedAttachmentFilePath}"||this.legacySettings.markdownUrlFormat==="${noteFilePath}")&&J(async()=>{await this.plugin.waitForLifecycleEvent("layoutReady"),await ra({app:this.app,message:createFragment(e=>{e.appendText(g(n=>n.pluginSettingsManager.markdownUrlFormat.deprecated.part1)),R(e,g(n=>n.pluginSettingsTab.markdownUrlFormat.name)),e.appendText(g(n=>n.pluginSettingsManager.markdownUrlFormat.deprecated.part2)),e.createEl("a",{href:"https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#markdown-url-format",text:g(n=>n.pluginSettingsManager.markdownUrlFormat.deprecated.part3)}),e.appendText(" "),e.appendText(g(n=>n.pluginSettingsManager.markdownUrlFormat.deprecated.part4)),e.appendText(" "),e.appendText(g(n=>n.pluginSettingsManager.markdownUrlFormat.deprecated.part5))})})})}convertRenameCollectedFiles(){this.legacySettings.renameCollectedFiles!==void 0&&(this.legacySettings.shouldRenameCollectedAttachments=this.legacySettings.renameCollectedFiles)}convertReplaceWhitespace(){this.legacySettings.replaceWhitespace!==void 0&&(this.legacySettings.whitespaceReplacement=this.legacySettings.replaceWhitespace?"-":"")}convertShouldKeepEmptyAttachmentFolders(){this.legacySettings.shouldKeepEmptyAttachmentFolders!==void 0&&(this.legacySettings.emptyAttachmentFolderBehavior=this.legacySettings.shouldKeepEmptyAttachmentFolders?at.Keep:at.DeleteWithEmptyParents)}convertShouldRenameAttachments(){this.legacySettings.shouldRenameAttachments!==void 0&&(this.legacySettings.shouldRenameAttachmentFolder=this.legacySettings.shouldRenameAttachments)}convertSpecialCharacters(){this.legacySettings.version&&(0,Ya.compare)(this.legacySettings.version,"9.16.0")<0&&this.legacySettings.specialCharacters==="#^[]|*\\<>:?"&&(this.legacySettings.specialCharacters="#^[]|*\\<>:?/",J(async()=>{await this.plugin.waitForLifecycleEvent("layoutReady"),await ra({app:this.app,message:createFragment(e=>{e.appendText(g(n=>n.pluginSettingsManager.specialCharacters.part1)),R(e,g(n=>n.pluginSettingsTab.specialCharacters.name)),e.appendText(g(n=>n.pluginSettingsManager.specialCharacters.part2))})})}))}convertToLowerCase(){(this.legacySettings.toLowerCase||this.legacySettings.shouldRenameAttachmentsToLowerCase)&&J(async()=>{await this.plugin.waitForLifecycleEvent("layoutReady"),await ra({app:this.app,message:createFragment(e=>{e.appendText(g(n=>n.pluginSettingsManager.legacyRenameAttachmentsToLowerCase.part1)),e.appendText(" "),R(e,g(n=>n.pluginSettingsTab.renameAttachmentsToLowerCase)),e.appendText(" "),e.appendText(g(n=>n.pluginSettingsManager.legacyRenameAttachmentsToLowerCase.part2)),e.appendText(" "),R(e,"lower"),e.appendText(" "),e.appendText(g(n=>n.pluginSettingsManager.legacyRenameAttachmentsToLowerCase.part3)),e.appendText(" "),e.createEl("a",{href:"https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#tokens",text:g(n=>n.pluginSettingsManager.legacyRenameAttachmentsToLowerCase.part4)}),e.appendText(" "),e.appendText(g(n=>n.pluginSettingsManager.legacyRenameAttachmentsToLowerCase.part5))})})})}convertWarningVersion(){this.legacySettings.warningVersion!==void 0&&(this.legacySettings.version=this.legacySettings.warningVersion)}convertWhitespaceReplacement(){this.legacySettings.whitespaceReplacement&&(this.legacySettings.specialCharacters=`${this.legacySettings.specialCharacters??""} `,this.legacySettings.specialCharactersReplacement=this.legacySettings.whitespaceReplacement)}handleNewVersion(){return this.legacySettings.version&&(0,Ya.compare)(this.legacySettings.version,this.plugin.manifest.version)>0?window.sessionStorage.getItem("custom-attachment-location-version-mismatch-alert-shown")==="true"?!1:(window.sessionStorage.setItem("custom-attachment-location-version-mismatch-alert-shown","true"),J(async()=>{await this.plugin.waitForLifecycleEvent("layoutReady"),await ra({app:this.app,message:createFragment(e=>{e.appendText(g(n=>n.pluginSettingsManager.version.part1)),e.appendText(" "),R(e,`${this.plugin.manifest.dir??""}/data.json`),e.appendText(" "),e.appendText(g(n=>n.pluginSettingsManager.version.part2)),e.appendText(" "),R(e,this.legacySettings.version??""),e.appendText(", "),e.appendText(g(n=>n.pluginSettingsManager.version.part3)),e.appendText(" "),R(e,this.plugin.manifest.version),e.appendText(". "),e.appendText(g(n=>n.pluginSettingsManager.version.part4))})})}),!0):!1}replaceLegacyTokens(e){if(e===void 0)return"";let n={fileCreationDate:"noteFileCreationDate",fileModificationDate:"noteFileModificationDate",fileName:"noteFileName",filePath:"noteFilePath",folderName:"noteFolderName",folderPath:"noteFolderPath",originalCopiedFileExtension:"originalAttachmentFileExtension",originalCopiedFileName:"originalAttachmentFileName",randomDigit:"random:D",randomDigitOrLetter:"random:DL",randomLetter:"random:L",uuid:"random:uuid"};for(let[r,a]of Object.entries(n))e=ie(e,new RegExp(`\\\${${r}(?<Suffix>[:}])`,"i"),`\${${a}$<Suffix>`),e=ie(e,`substitutions.${r}`,`substitutions.${a}`);return e}},Xi=class extends Ui{static{i(this,"PluginSettingsManager")}shouldDebounceCustomTokensValidation=!1;customTokensValidatorDebounced=(0,Tf.debounce)(this.customTokensValidatorImpl.bind(this),HC);lastCustomTokenValidatorResult=void 0;createDefaultSettings(){return new xi}registerLegacySettingsConverters(){this.registerLegacySettingsConverter(Tc,e=>{new Sc(e,this.plugin).convert()})}registerValidators(){this.registerValidator("attachmentFolderPath",async e=>await vn({areTokensAllowed:!0,path:e,plugin:this.plugin})),this.registerValidator("generatedAttachmentFileName",async e=>await vn({areTokensAllowed:!0,path:e,plugin:this.plugin})),this.registerValidator("specialCharactersReplacement",e=>{if(ki().exec(e))return g(n=>n.pluginSettingsManager.validation.specialCharactersReplacementMustNotContainInvalidFileNamePathCharacters)}),this.registerValidator("defaultImageSize",e=>{if(!/^(?:\d+(?:px|%))?$/g.exec(e))return g(r=>r.pluginSettingsManager.validation.defaultImageSizeMustBePercentageOrPixels)}),this.registerValidator("duplicateNameSeparator",async e=>await Da({areSingleDotsAllowed:!1,fileName:`foo${e}1`,isEmptyAllowed:!1,plugin:this.plugin,tokenValidationMode:"Error"})),this.registerValidator("includePaths",e=>xf(e)),this.registerValidator("excludePaths",e=>xf(e)),this.registerValidator("customTokensStr",e=>this.customTokensValidator(e))}customTokensValidator(e){return this.shouldDebounceCustomTokensValidation?this.customTokensValidatorDebounced(e):this.customTokensValidatorImpl(e),this.lastCustomTokenValidatorResult??void 0}customTokensValidatorImpl(e){let n=Vl(e);this.lastCustomTokenValidatorResult=n===null?g(r=>r.pluginSettingsManager.validation.invalidCustomTokensCode):void 0}};function wf(t,e){return t.replaceAll("${date}",`\${date:${e}}`)}i(wf,"addDateTimeFormat");function KC(t){return t.replaceAll(/^/gm,"// ")}i(KC,"commentOut");function xf(t){for(let e of t)if(e.startsWith("/")&&e.endsWith("/")){let n=e.slice(1,-1);if(!pp(n))return g(r=>r.pluginSettingsManager.validation.invalidRegularExpression,{regExp:e})}}i(xf,"pathsValidator");var zo=require("obsidian");var Cn=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();function eo(t){let e=t.parentElement;if(!e)throw new Error("Element must be attached to the DOM");if(e.classList.contains(z.SettingComponentWrapper))return e;let n=Array.from(e.children),r=createDiv();Q(r,z.SettingComponentWrapper);for(let a of n)r.appendChild(a);return e.appendChild(r),r}i(eo,"ensureWrapped");var Sf=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Pc=class{static{i(this,"AbstractTextComponentWrapper")}constructor(e){this.abstractTextComponent=e}empty(){this.abstractTextComponent.setValue("")}isEmpty(){return this.abstractTextComponent.getValue()===""}setPlaceholderValue(e){return this.abstractTextComponent.setPlaceholder(e),this}};function Pf(t){return YC(t)?t:t instanceof Sf.AbstractTextComponent?new Pc(t):null}i(Pf,"getTextBasedComponentValue");function YC(t){let e=t;return typeof e.setPlaceholderValue=="function"&&typeof e.isEmpty=="function"}i(YC,"isTextBasedComponent");var Ie=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var to=class{static{i(this,"OverlayValidatorComponent")}constructor(e){this.el=e;let n=eo(e);this._validatorEl=n.createEl("input",{attr:{tabindex:-1}}),Q(this._validatorEl,z.OverlayValidator),this._validatorEl.addEventListener("focus",()=>{this.el.focus()}),this._validatorEl.isActiveElement=this.isElementOrDescendantActive.bind(this);let r=this.el.querySelector("[tabindex]");r||(this.el.getAttr("tabindex")===null&&(this.el.tabIndex=-1),r=this.el),this.el.addEventListener("focusin",()=>{this.forceBlurValidatorEl()}),this.el.addEventListener("click",()=>{r.focus()}),this.el.addEventListener("focusout",()=>{window.setTimeout(()=>{this.isElementOrDescendantActive()||this.forceBlurValidatorEl()},0)})}get validatorEl(){return this._validatorEl}_validatorEl;forceBlurValidatorEl(){this._validatorEl.dispatchEvent(new Event("blur"))}isElementOrDescendantActive(){return this.el.contains(document.activeElement)}},Jt=class{static{i(this,"ValidatorElementWrapper")}constructor(e){this.validatorEl=e}};function Ef(t){return QC(t)?t:t instanceof Ie.ColorComponent?new Jt(t.colorPickerEl):t instanceof Ie.DropdownComponent?new Jt(t.selectEl):t instanceof Ie.ProgressBarComponent?new to(t.progressBar):t instanceof Ie.SearchComponent?new Jt(t.inputEl):t instanceof Ie.SliderComponent?new Jt(t.sliderEl):t instanceof Ie.TextAreaComponent?new Jt(t.inputEl):t instanceof Ie.TextComponent?new Jt(t.inputEl):t instanceof Ie.ToggleComponent?new to(t.toggleEl):null}i(Ef,"getValidatorComponent");function QC(t){return!!t.validatorEl}i(QC,"isValidatorComponent");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Ec="PluginSettingsTab",no=class extends Cn.PluginSettingTab{static{i(this,"PluginSettingsTabBase")}constructor(e){super(e.app,e),this.plugin=e,Q(this.containerEl,z.PluginSettingsTab),this.saveSettingsDebounced=(0,Cn.debounce)(Re(()=>this.plugin.settingsManager.saveToFile(Ec)),this.saveSettingsDebounceTimeoutInMilliseconds),this.asyncEventsComponent=new si,this.asyncEvents=new ft}get isOpen(){return this._isOpen}get saveSettingsDebounceTimeoutInMilliseconds(){return 2e3}_isOpen=!1;asyncEvents;asyncEventsComponent;saveSettingsDebounced;get pluginSettings(){return this.plugin.settingsManager.settingsWrapper.settings}bind(e,n,r){let o={...{componentToPluginSettingsValueConverter:i(P=>P,"componentToPluginSettingsValueConverter"),onChanged:lt,pluginSettingsToComponentValueConverter:i(P=>P,"pluginSettingsToComponentValueConverter"),shouldResetSettingWhenComponentIsEmpty:!0,shouldShowPlaceholderForDefaultValues:!0,shouldShowValidationMessage:!0},...r},s=Ef(e)?.validatorEl,l=Pf(e),c=this.pluginSettings[n],p=this.plugin.settingsManager.defaultSettings[n],d=o.pluginSettingsToComponentValueConverter(p);l?.setPlaceholderValue(d);let u,h=null,m=null;if(s){let P=eo(s);h=P.createDiv(),Q(h,z.Tooltip,z.TooltipValidator),m=h.createSpan();let j=h.createDiv();Q(j,z.TooltipArrow),h.hide(),P.appendChild(h)}this.asyncEventsComponent.registerAsyncEvent(this.on("validationMessageChanged",(P,j)=>{n===P&&(u=j,w())}));let v=!1,A=!1;l&&o.shouldShowPlaceholderForDefaultValues&&Qe(c,p)?l.empty():e.setValue(o.pluginSettingsToComponentValueConverter(c));let b=!1,w=(0,Cn.debounce)(()=>{requestAnimationFrame(()=>{T()})},100);return e.onChange(async P=>{if(b){b=!1;return}v=!1;let j=this.pluginSettings[n],x,q=!0;if(A=!!l?.isEmpty()&&o.shouldResetSettingWhenComponentIsEmpty,A)x=p;else{let Y=o.componentToPluginSettingsValueConverter(P);xm(Y)?(u=Y.validationMessage,q=!1):x=Y}q&&(u=await this.plugin.settingsManager.setProperty(n,x),l&&o.shouldShowPlaceholderForDefaultValues&&!l.isEmpty()&&Qe(x,p)&&(v=!0)),w(),q&&await o.onChanged(x,j),this.saveSettingsDebounced()}),s?.addEventListener("focus",()=>{w()}),s?.addEventListener("blur",()=>{w()}),s?.addEventListener("click",()=>{requestAnimationFrame(()=>{w()})}),u=this.plugin.settingsManager.settingsWrapper.validationMessages[n]??"",w(),e;function T(){s?.isActiveElement()||(v?(v=!1,l?.isEmpty()||(b=!0,l?.empty())):A&&(A=!1,l?.isEmpty()&&(b=!0,e.setValue(d)))),s&&(u===""&&(s.setCustomValidity(""),s.checkValidity(),u=s.validationMessage),s.setCustomValidity(u),o.shouldShowValidationMessage?(m&&(m.textContent=u),h?.toggle(!!u)):u&&(0,Cn.setTooltip)(s,u))}i(T,"updateValidatorEl")}display(){this.containerEl.empty(),this._isOpen=!0,this.asyncEventsComponent.load(),this.asyncEventsComponent.registerAsyncEvent(this.plugin.settingsManager.on("loadSettings",this.onLoadSettings.bind(this))),this.asyncEventsComponent.registerAsyncEvent(this.plugin.settingsManager.on("saveSettings",this.onSaveSettings.bind(this)))}hide(){super.hide(),this.saveSettingsDebounced.cancel(),this._isOpen=!1,this.asyncEventsComponent.unload(),this.asyncEventsComponent.load(),J(()=>this.hideAsync())}async hideAsync(){await this.plugin.settingsManager.saveToFile(Ec)}show(){this.app.setting.openTab(this)}async onLoadSettings(e,n){this.display(),await gt()}async revalidate(){let e=await this.plugin.settingsManager.revalidate();await this.updateValidations(e)}on(e,n,r){return this.asyncEvents.on(e,n,r)}async onSaveSettings(e,n,r){if(r===Ec){await this.updateValidations(e.validationMessages);return}this.display()}async updateValidations(e){for(let[n,r]of Object.entries(e))await this.asyncEvents.triggerAsync("validationMessageChanged",n,r)}};var Qa=require("obsidian");var Ff=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var ao=class extends Ff.ValueComponent{static{i(this,"CheckboxComponent")}inputEl;get validatorEl(){return this.inputEl}changeCallback;constructor(e){super(),Q(e,z.CheckboxComponent),this.inputEl=e.createEl("input",{type:"checkbox"}),this.inputEl.addEventListener("change",this.onChanged.bind(this))}getValue(){return this.inputEl.checked}onChange(e){return this.changeCallback=e,this}onChanged(){this.changeCallback?.(this.getValue())}setDisabled(e){return super.setDisabled(e),this.inputEl.disabled=e,this}setValue(e){return this.inputEl.checked=e,this}};var io=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var ro=class extends io.ValueComponent{static{i(this,"CodeHighlighterComponent")}get inputEl(){return this.textAreaComponent.inputEl}get validatorEl(){return this.inputEl}codeEl;placeholder="";preEl;tabSize;textAreaComponent;constructor(e){super(),Q(e,z.CodeHighlighterComponent);let n=e.createDiv();Q(n,z.SettingComponentWrapper),this.textAreaComponent=new io.TextAreaComponent(n),this.preEl=n.createEl("pre",{attr:{tabIndex:"-1"}}),this.codeEl=this.preEl.createEl("code",{attr:{tabIndex:"-1"}}),this.inputEl.addEventListener("input",Re(this.updateHighlightedCode.bind(this))),this.inputEl.addEventListener("scroll",this.handleScroll.bind(this)),this.inputEl.addEventListener("keydown",this.handleKeyDown.bind(this));let r=2;this.tabSize=r}empty(){this.setValue("")}getValue(){return this.textAreaComponent.getValue()}isEmpty(){return this.textAreaComponent.getValue()===""}onChange(e){return this.textAreaComponent.onChange(()=>e(this.getValue())),this}setDisabled(e){return super.setDisabled(e),this.textAreaComponent.setDisabled(e),this}setLanguage(e){let n="language-";for(let r of[this.preEl,this.codeEl]){for(let a of Array.from(r.classList))a.startsWith(n)&&r.classList.remove(a);r.classList.add(`${n}${e}`)}return this}setPlaceholder(e){return this.placeholder=e,J(this.updateHighlightedCode.bind(this)),this}setPlaceholderValue(e){return this.setPlaceholder(e),this}setTabSize(e){return this.tabSize=e,this}setValue(e){return this.textAreaComponent.setValue(e),J(this.updateHighlightedCode.bind(this)),this}handleKeyDown(e){if(e.key!=="Tab")return;if(e.preventDefault(),e.ctrlKey||e.metaKey){let d=Array.from(document.querySelectorAll(':is(a, button, input, select, textarea, [tabindex]):not([tabindex="-1"]):not(:disabled):not([type="hidden"])')),u=d.indexOf(this.inputEl),h=e.shiftKey?-1:1;d[(u+h+d.length)%d.length]?.focus();return}let n=this.getValue(),r=this.inputEl.selectionStart,a=this.inputEl.selectionEnd,o=n.slice(0,r),s=n.slice(a),l=" ".repeat(this.tabSize),c=o;e.shiftKey?o.endsWith(l)&&(c=o.slice(0,-this.tabSize)):c=o+l;let p=`${c}${s}`;this.setValue(p),this.inputEl.selectionStart=c.length,this.inputEl.selectionEnd=c.length}handleScroll(){this.preEl.scrollTop=this.inputEl.scrollTop,this.preEl.scrollLeft=this.inputEl.scrollLeft}async updateHighlightedCode(){this.codeEl.textContent=this.inputEl.value||this.placeholder,(await gr()).highlightElement(this.codeEl),this.preEl.toggleClass(z.IsPlaceholder,this.isEmpty()),requestAnimationFrame(()=>{let n=Math.max(0,this.inputEl.scrollHeight-this.preEl.scrollHeight);this.preEl.setCssProps({"--bottom-gap":ym(n)}),this.handleScroll()})}};var Mf=require("obsidian");var oo=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var fe=class extends oo.ValueComponent{static{i(this,"TypedTextComponent")}inputEl;get validatorEl(){return this.inputEl}textComponent;constructor(e,n,r){super(),this.textComponent=new oo.TextComponent(e),this.inputEl=this.textComponent.inputEl,this.inputEl.type=n,Q(e,r)}getValue(){return this.valueFromString(this.textComponent.getValue())}onChange(e){return this.textComponent.onChange(()=>e(this.getValue())),this}onChanged(){this.textComponent.onChanged()}setDisabled(e){return super.setDisabled(e),this.textComponent.setDisabled(e),this}setValue(e){return this.textComponent.setValue(this.valueToString(e)),this}valueToString(e){return String(e)}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var _e=class extends fe{static{i(this,"TypedRangeTextComponent")}setMax(e){return this.inputEl.max=this.valueToString(e),this}setMin(e){return this.inputEl.min=this.valueToString(e),this}setStep(e){return this.inputEl.step=String(e),this}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var If=qe(Mf.moment),zf="YYYY-MM-DD",so=class extends _e{static{i(this,"DateComponent")}constructor(e){super(e,"date",z.DateComponent)}valueFromString(e){return If(e,zf).toDate()}valueToString(e){return If(e).format(zf)}};var jf=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Nf=qe(jf.moment),Rf="YYYY-MM-DDTHH:mm",lo=class extends _e{static{i(this,"DateTimeComponent")}constructor(e){super(e,"datetime-local",z.DateTimeComponent)}valueFromString(e){return Nf(e,Rf).toDate()}valueToString(e){return Nf(e).format(Rf)}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var co=class extends fe{static{i(this,"EmailComponent")}constructor(e){super(e,"email",z.EmailComponent)}empty(){this.setValue("")}isEmpty(){return this.getValue()===""}setPlaceholderValue(e){return this.textComponent.setPlaceholder(e),this}valueFromString(e){return e}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var po=class extends fe{static{i(this,"FileComponent")}constructor(e){super(e,"file",z.FileComponent)}getValue(){return this.inputEl.files?.[0]??null}valueFromString(){return this.getValue()}valueToString(e){return e?.name??""}};var Df=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Lf=qe(Df.moment),Of="YYYY-MM",uo=class extends _e{static{i(this,"MonthComponent")}constructor(e){super(e,"month",z.MonthComponent)}valueFromString(e){let n=Lf(e,Of);if(!n.isValid())throw new Error("Invalid month");return{month:n.month()+1,year:n.year()}}valueToString(e){return Lf().year(e.year).month(e.month-1).format(Of)}};var mo=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var oa=class extends mo.ValueComponent{static{i(this,"MultipleDropdownComponent")}get selectEl(){return this.dropdownComponent.selectEl}get validatorEl(){return this.selectEl}dropdownComponent;constructor(e){super(),this.dropdownComponent=new mo.DropdownComponent(e),this.dropdownComponent.selectEl.multiple=!0,Q(e,z.MultipleDropdownComponent)}addOption(e,n){return this.dropdownComponent.addOption(e,n),this}addOptions(e){return this.dropdownComponent.addOptions(e),this}getValue(){return Array.from(this.dropdownComponent.selectEl.selectedOptions).map(e=>e.value)}onChange(e){return this.dropdownComponent.onChange(()=>e(this.getValue())),this}setDisabled(e){return super.setDisabled(e),this.dropdownComponent.setDisabled(e),this}setValue(e){for(let n of Array.from(this.dropdownComponent.selectEl.options))n.selected=e.includes(n.value);return this}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var ho=class extends fe{static{i(this,"MultipleEmailComponent")}constructor(e){super(e,"email",z.MultipleEmailComponent),this.inputEl.multiple=!0}valueFromString(e){return e.split(",").map(n=>n.trim())}valueToString(e){return e.join(", ")}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var go=class extends fe{static{i(this,"MultipleFileComponent")}constructor(e){super(e,"file",z.MultipleFileComponent),this.inputEl.multiple=!0}getValue(){return Array.from(this.inputEl.files??[])}valueFromString(){return this.getValue()}valueToString(e){return e[0]?.name??""}};var ko=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var fo=class extends ko.ValueComponent{static{i(this,"MultipleTextComponent")}get inputEl(){return this.textAreaComponent.inputEl}get validatorEl(){return this.inputEl}textAreaComponent;constructor(e){super(),this.textAreaComponent=new ko.TextAreaComponent(e),Q(e,z.MultipleTextComponent)}empty(){this.textAreaComponent.setValue("")}getValue(){return this.textAreaComponent.getValue().split(`
|
|
571
|
+
`)}isEmpty(){return this.textAreaComponent.getValue()===""}onChange(e){return this.textAreaComponent.onChange(()=>e(this.getValue())),this}setDisabled(e){return super.setDisabled(e),this.textAreaComponent.setDisabled(e),this}setPlaceholder(e){return this.textAreaComponent.setPlaceholder(e),this}setPlaceholderValue(e){return this.setPlaceholder(this.valueToString(e)),this}setValue(e){return this.textAreaComponent.setValue(this.valueToString(e)),this}valueToString(e){return e.join(`
|
|
572
|
+
`)}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var vo=class extends _e{static{i(this,"NumberComponent")}constructor(e){super(e,"number",z.NumberComponent)}empty(){this.textComponent.setValue("")}isEmpty(){return this.textComponent.getValue()===""}setPlaceholder(e){return this.textComponent.setPlaceholder(e),this}setPlaceholderValue(e){return this.textComponent.setPlaceholder(this.valueToString(e)),this}valueFromString(e){return parseInt(e,10)}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var yo=class extends fe{static{i(this,"PasswordComponent")}constructor(e){super(e,"password",z.PasswordComponent)}setPlaceholder(e){return this.textComponent.setPlaceholder(e),this}valueFromString(e){return e}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var bo=class extends fe{static{i(this,"TelephoneComponent")}constructor(e){super(e,"tel",z.TelephoneComponent)}empty(){this.textComponent.setValue("")}isEmpty(){return this.textComponent.getValue()===""}setPlaceholderValue(e){return this.textComponent.setPlaceholder(e),this}valueFromString(e){return e}};var Fc=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Ao=class extends _e{static{i(this,"TimeComponent")}constructor(e){super(e,"time",z.TimeComponent)}valueFromString(e){return Fc.moment.duration(e)}valueToString(e){let n;return e.milliseconds()>0?n="HH:mm:ss.SSS":e.seconds()>0?n="HH:mm:ss":n="HH:mm",Fc.moment.utc(e.asMilliseconds()).format(n)}};var Bf=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var wo=class extends Bf.ValueComponent{static{i(this,"TriStateCheckboxComponent")}inputEl;get validatorEl(){return this.inputEl}changeCallback;constructor(e){super(),Q(e,z.TriStateCheckboxComponent),this.inputEl=e.createEl("input",{type:"checkbox"}),this.inputEl.addEventListener("change",this.onChanged.bind(this))}getValue(){return this.inputEl.indeterminate?null:this.inputEl.checked}onChange(e){return this.changeCallback=e,this}onChanged(){this.changeCallback?.(this.getValue())}setDisabled(e){return super.setDisabled(e),this.inputEl.disabled=e,this}setValue(e){return this.inputEl.indeterminate=e===null,this.inputEl.checked=e??!1,this}};var Co=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var xo=class extends Co.ValueComponent{static{i(this,"TypedDropdownComponent")}get selectEl(){return this.dropdownComponent.selectEl}get validatorEl(){return this.selectEl}dropdownComponent;values=[];constructor(e){super(),this.dropdownComponent=new Co.DropdownComponent(e),Q(e,z.TypedDropdownComponent)}addOption(e,n){let r=this.values.indexOf(e);return r===-1&&(this.values.push(e),r=this.values.length-1),this.dropdownComponent.addOption(String(r),n),this}addOptions(e){for(let[n,r]of e.entries())this.addOption(n,r);return this}getValue(){return this.values[this.dropdownComponent.selectEl.selectedIndex]??null}onChange(e){return this.dropdownComponent.onChange(()=>e(this.getValue())),this}setDisabled(e){return super.setDisabled(e),this.dropdownComponent.setDisabled(e),this}setValue(e){let n=e===null?-1:this.values.indexOf(e);return this.dropdownComponent.selectEl.selectedIndex=n,this}};var Uf=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var To=class extends Uf.ValueComponent{static{i(this,"TypedMultipleDropdownComponent")}get selectEl(){return this.multipleDropdownComponent.selectEl}get validatorEl(){return this.selectEl}multipleDropdownComponent;values=[];constructor(e){super(),this.multipleDropdownComponent=new oa(e),Q(e,z.TypedMultipleDropdownComponent)}addOption(e,n){let r=this.values.indexOf(e);return r===-1&&(this.values.push(e),r=this.values.length-1),this.multipleDropdownComponent.addOption(String(r),n),this}addOptions(e){for(let[n,r]of e.entries())this.addOption(n,r);return this}getValue(){return this.multipleDropdownComponent.getValue().map(n=>parseInt(n,10)).map(n=>this.values[n]).filter(n=>n!==void 0)}onChange(e){return this.multipleDropdownComponent.onChange(()=>e(this.getValue())),this}setDisabled(e){return super.setDisabled(e),this.multipleDropdownComponent.setDisabled(e),this}setValue(e){let n=e.map(r=>this.values.indexOf(r)).filter(r=>r!==-1);return this.multipleDropdownComponent.setValue(n.map(r=>String(r))),this}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var So=class extends fe{static{i(this,"UrlComponent")}constructor(e){super(e,"url",z.UrlComponent)}empty(){this.setValue("")}isEmpty(){return this.getValue()===""}setPlaceholderValue(e){return this.textComponent.setPlaceholder(e),this}valueFromString(e){return e}};var $f=require("obsidian");i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var Vf=qe($f.moment),_f="YYYY-[W]WW",Po=class extends _e{static{i(this,"WeekComponent")}constructor(e){super(e,"week",z.WeekComponent)}valueFromString(e){let n=Vf(e,_f);if(!n.isValid())throw new Error("Invalid week");return{weekNumber:n.isoWeek(),year:n.year()}}valueToString(e){return Vf().year(e.year).isoWeek(e.weekNumber).format(_f)}};i((function(){if(globalThis.process)return;let e={browser:!0,cwd(){return"/"},env:{},platform:"android"};globalThis.process=e}),"initEsm")();var X=class extends Qa.Setting{static{i(this,"SettingEx")}addCheckbox(e){return this.addComponentClass(ao,e)}addCodeHighlighter(e){return this.addComponentClass(ro,e)}addComponentClass(e,n){return this.addComponentSafe(r=>{let a=new e(r);return n(a),a})}addDate(e){return this.addComponentClass(so,e)}addDateTime(e){return this.addComponentClass(lo,e)}addEmail(e){return this.addComponentClass(co,e)}addFile(e){return this.addComponentClass(po,e)}addMonth(e){return this.addComponentClass(uo,e)}addMultipleDropdown(e){return this.addComponentClass(oa,e)}addMultipleEmail(e){return this.addComponentClass(ho,e)}addMultipleFile(e){return this.addComponentClass(go,e)}addMultipleText(e){return this.addComponentClass(fo,e)}addNumber(e){return this.addComponentClass(vo,e)}addPassword(e){return this.addComponentClass(yo,e)}addTelephone(e){return this.addComponentClass(bo,e)}addTime(e){return this.addComponentClass(Ao,e)}addTriStateCheckbox(e){return this.addComponentClass(wo,e)}addTypedDropdown(e){return this.addComponentClass(xo,e)}addTypedMultipleDropdown(e){return this.addComponentClass(To,e)}addUrl(e){return this.addComponentClass(So,e)}addWeek(e){return this.addComponentClass(Po,e)}addComponentSafe(e){return(0,Qa.requireApiVersion)("1.11.0")?this.addComponent(n=>((0,Qa.requireApiVersion)("0.16.0"),e(n))):(this.components.push(e(this.controlEl)),this)}};var qf=require("obsidian");var Ht="custom-attachment-location-tokenized-string",Eo=class extends qf.Component{static{i(this,"PrismComponent")}onload(){super.onload(),J(this.initPrism.bind(this))}async initPrism(){let e=await gr();e.languages[Ht]={expression:{greedy:!0,inside:{prefix:{alias:"regex",pattern:/\${/},token:{alias:"number",pattern:/^[a-zA-Z0-9_,]+/},formatDelimiter:{alias:"regex",pattern:/:/},format:{alias:"string",pattern:/[a-zA-Z0-9_,-]+/},suffix:{alias:"regex",pattern:/}/}},pattern:/\${.+?}/},important:{pattern:/^\./},operator:{alias:"entity",pattern:/\//}},this.register(()=>{delete e.languages[Ht]})}};var Wf="\u2423",Jf=2,Io=class extends no{static{i(this,"PluginSettingsTab")}display(){super.display(),this.containerEl.empty();let e={componentToPluginSettingsValueConverter(a){return(0,zo.normalizePath)(a.trimEnd())},pluginSettingsToComponentValueConverter(a){return a.trimEnd()},shouldResetSettingWhenComponentIsEmpty:!0,shouldShowPlaceholderForDefaultValues:!1};new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.locationForNewAttachments.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.locationForNewAttachments.description.part1)),a.appendText(" "),R(a,"."),a.appendText(" "),a.appendText(g(o=>o.pluginSettingsTab.locationForNewAttachments.description.part2)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.locationForNewAttachments.description.part3)),a.appendText(" "),a.createEl("a",{href:"https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#tokens",text:g(o=>o.pluginSettingsTab.locationForNewAttachments.description.part4)}),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.locationForNewAttachments.description.part5)),a.appendText(" "),R(a,".attachments"),a.appendText(" "),a.appendText(g(o=>o.pluginSettingsTab.locationForNewAttachments.description.part6)),a.appendText(" "),a.createEl("a",{href:"https://github.com/polyipseity/obsidian-show-hidden-files/",text:"Show Hidden Files"}),a.appendText(" "),a.appendText(g(o=>o.pluginSettingsTab.locationForNewAttachments.description.part7))})).addCodeHighlighter(a=>{a.setLanguage(Ht),a.inputEl.addClass("tokenized-string-setting-control"),this.bind(a,"attachmentFolderPath",e)}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.generatedAttachmentFileName.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.generatedAttachmentFileName.description.part1)),a.appendText(" "),a.createEl("a",{href:"https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#tokens",text:g(o=>o.pluginSettingsTab.generatedAttachmentFileName.description.part2)}),a.appendText(".")})).addCodeHighlighter(a=>{a.setLanguage(Ht),a.inputEl.addClass("tokenized-string-setting-control"),this.bind(a,"generatedAttachmentFileName",e)}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.markdownUrlFormat.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.markdownUrlFormat.description.part1)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.markdownUrlFormat.description.part2)),a.appendText(" "),a.createEl("a",{href:"https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#tokens",text:g(o=>o.pluginSettingsTab.markdownUrlFormat.description.part3)}),a.appendText("."),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.markdownUrlFormat.description.part4))})).addCodeHighlighter(a=>{a.setLanguage(Ht),a.inputEl.addClass("tokenized-string-setting-control"),this.bind(a,"markdownUrlFormat",e)}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.attachmentRenameMode.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.attachmentRenameMode.description.part1)),a.createEl("br"),R(a,g(o=>o.pluginSettings.attachmentRenameMode.none.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.attachmentRenameMode.none.description)),a.createEl("br"),R(a,g(o=>o.pluginSettings.attachmentRenameMode.onlyPastedImages.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.attachmentRenameMode.onlyPastedImages.description)),a.createEl("br"),R(a,g(o=>o.pluginSettings.attachmentRenameMode.all.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.attachmentRenameMode.all.description))})).addDropdown(a=>{a.addOptions({None:g(o=>o.pluginSettings.attachmentRenameMode.none.displayText),"Only pasted images":g(o=>o.pluginSettings.attachmentRenameMode.onlyPastedImages.displayText),All:g(o=>o.pluginSettings.attachmentRenameMode.all.displayText)}),this.bind(a,"attachmentRenameMode")}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.shouldHandleRenames.name)).setDesc(g(a=>a.pluginSettingsTab.shouldHandleRenames.description)).addToggle(a=>{this.bind(a,"shouldHandleRenames",{onChanged:i(()=>{this.display()},"onChanged")})}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.shouldRenameAttachmentFolders.name)).setDesc(g(a=>a.pluginSettingsTab.shouldRenameAttachmentFolders.description)).addToggle(a=>{this.plugin.settings.shouldHandleRenames?this.bind(a,"shouldRenameAttachmentFolder"):(a.setDisabled(!0),a.setValue(!1))}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.shouldRenameAttachmentFiles.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.shouldRenameAttachmentFiles.description.part1)),a.appendText(" "),R(a,g(o=>o.pluginSettingsTab.renamedAttachmentFileName.name)),a.appendText(" "),a.appendText(g(o=>o.pluginSettingsTab.shouldRenameAttachmentFiles.description.part2))})).addToggle(a=>{this.plugin.settings.shouldHandleRenames?this.bind(a,"shouldRenameAttachmentFiles"):(a.setDisabled(!0),a.setValue(!1))}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.renamedAttachmentFileName.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.renamedAttachmentFileName.description.part1)),a.appendText(" "),a.createEl("a",{href:"https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#tokens",text:g(o=>o.pluginSettingsTab.renamedAttachmentFileName.description.part2)}),a.appendText("."),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.renamedAttachmentFileName.description.part3)),a.appendText(" "),R(a,g(o=>o.pluginSettingsTab.generatedAttachmentFileName.name)),a.appendText(g(o=>o.pluginSettingsTab.renamedAttachmentFileName.description.part4))})).addCodeHighlighter(a=>{a.setLanguage(Ht),a.inputEl.addClass("tokenized-string-setting-control"),this.bind(a,"renamedAttachmentFileName",e)}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.specialCharacters.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.specialCharacters.description.part1)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.specialCharacters.description.part2))})).addText(a=>{this.bind(a,"specialCharacters",{componentToPluginSettingsValueConverter:Ic,pluginSettingsToComponentValueConverter:Fo,shouldResetSettingWhenComponentIsEmpty:!1,shouldShowPlaceholderForDefaultValues:!1}),Gf(a)}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.specialCharactersReplacement.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.specialCharactersReplacement.description.part1)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.specialCharactersReplacement.description.part2))})).addText(a=>{this.bind(a,"specialCharactersReplacement",{componentToPluginSettingsValueConverter:Ic,pluginSettingsToComponentValueConverter:Fo,shouldResetSettingWhenComponentIsEmpty:!1,shouldShowPlaceholderForDefaultValues:!1})}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.convertImagesToJpegMode.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.convertImagesToJpegMode.description.part1)),a.createEl("br"),R(a,g(o=>o.pluginSettings.convertImagesToJpegMode.none.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.convertImagesToJpegMode.none.description)),a.createEl("br"),R(a,g(o=>o.pluginSettings.convertImagesToJpegMode.onlyPastedClipboardPngImages.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.convertImagesToJpegMode.onlyPastedClipboardPngImages.description)),a.createEl("br"),R(a,g(o=>o.pluginSettings.convertImagesToJpegMode.allImagesExceptAlreadyJpeg.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.convertImagesToJpegMode.allImagesExceptAlreadyJpeg.description)),a.createEl("br"),R(a,g(o=>o.pluginSettings.convertImagesToJpegMode.allImages.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.convertImagesToJpegMode.allImages.description))})).addDropdown(a=>{a.addOptions({None:g(o=>o.pluginSettings.convertImagesToJpegMode.none.displayText),"Only pasted clipboard PNG images":g(o=>o.pluginSettings.convertImagesToJpegMode.onlyPastedClipboardPngImages.displayText),"All images except already JPEG files":g(o=>o.pluginSettings.convertImagesToJpegMode.allImagesExceptAlreadyJpeg.displayText),"All images":g(o=>o.pluginSettings.convertImagesToJpegMode.allImages.displayText)}),this.bind(a,"convertImagesToJpegMode")}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.jpegQuality.name)).setDesc(g(a=>a.pluginSettingsTab.jpegQuality.description)).addDropdown(a=>{a.addOptions(XC()),this.bind(a,"jpegQuality",{componentToPluginSettingsValueConverter:i(o=>Number(o),"componentToPluginSettingsValueConverter"),pluginSettingsToComponentValueConverter:i(o=>o.toPrecision(Jf),"pluginSettingsToComponentValueConverter")})}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.shouldRenameCollectedAttachments.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.shouldRenameCollectedAttachments.description.part1)),a.appendText(" "),R(a,g(o=>o.pluginSettingsTab.shouldRenameCollectedAttachments.description.part2)),a.appendText(" "),a.appendText(g(o=>o.pluginSettingsTab.shouldRenameCollectedAttachments.description.part3)),a.appendText(" "),R(a,g(o=>o.pluginSettingsTab.collectedAttachmentFileName.name)),a.appendText(" "),a.appendText(g(o=>o.pluginSettingsTab.shouldRenameCollectedAttachments.description.part4))})).addToggle(a=>{this.bind(a,"shouldRenameCollectedAttachments")}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.collectedAttachmentFileName.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.collectedAttachmentFileName.description.part1)),a.appendText(" "),a.createEl("a",{href:"https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#tokens",text:g(o=>o.pluginSettingsTab.collectedAttachmentFileName.description.part2)}),a.appendText("."),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.collectedAttachmentFileName.description.part3)),a.appendText(" "),R(a,g(o=>o.pluginSettingsTab.generatedAttachmentFileName.name)),a.appendText(g(o=>o.pluginSettingsTab.collectedAttachmentFileName.description.part4))})).addCodeHighlighter(a=>{a.setLanguage(Ht),a.inputEl.addClass("tokenized-string-setting-control"),this.bind(a,"collectedAttachmentFileName",e)}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.collectAttachmentUsedByMultipleNotesMode.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.collectAttachmentUsedByMultipleNotesMode.description.part1)),a.createEl("br"),R(a,g(o=>o.pluginSettings.collectAttachmentUsedByMultipleNotesMode.skip.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.collectAttachmentUsedByMultipleNotesMode.skip.description)),a.createEl("br"),R(a,g(o=>o.pluginSettings.collectAttachmentUsedByMultipleNotesMode.move.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.collectAttachmentUsedByMultipleNotesMode.move.description)),a.createEl("br"),R(a,g(o=>o.pluginSettings.collectAttachmentUsedByMultipleNotesMode.copy.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.collectAttachmentUsedByMultipleNotesMode.copy.description)),a.createEl("br"),R(a,g(o=>o.pluginSettings.collectAttachmentUsedByMultipleNotesMode.cancel.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.collectAttachmentUsedByMultipleNotesMode.cancel.description)),a.createEl("br"),R(a,g(o=>o.pluginSettings.collectAttachmentUsedByMultipleNotesMode.prompt.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.collectAttachmentUsedByMultipleNotesMode.prompt.description))})).addDropdown(a=>{a.addOptions({Skip:g(o=>o.pluginSettings.collectAttachmentUsedByMultipleNotesMode.skip.displayText),Move:g(o=>o.pluginSettings.collectAttachmentUsedByMultipleNotesMode.move.displayText),Copy:g(o=>o.pluginSettings.collectAttachmentUsedByMultipleNotesMode.copy.displayText),Cancel:g(o=>o.pluginSettings.collectAttachmentUsedByMultipleNotesMode.cancel.displayText),Prompt:g(o=>o.pluginSettings.collectAttachmentUsedByMultipleNotesMode.prompt.displayText)}),this.bind(a,"collectAttachmentUsedByMultipleNotesMode")}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.moveAttachmentToProperFolderUsedByMultipleNotesMode.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.moveAttachmentToProperFolderUsedByMultipleNotesMode.description.part1)),a.createEl("br"),R(a,g(o=>o.pluginSettings.moveAttachmentToProperFolderUsedByMultipleNotesMode.skip.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.moveAttachmentToProperFolderUsedByMultipleNotesMode.skip.description)),a.createEl("br"),R(a,g(o=>o.pluginSettings.moveAttachmentToProperFolderUsedByMultipleNotesMode.copyAll.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.moveAttachmentToProperFolderUsedByMultipleNotesMode.copyAll.description)),a.createEl("br"),R(a,g(o=>o.pluginSettings.moveAttachmentToProperFolderUsedByMultipleNotesMode.cancel.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.moveAttachmentToProperFolderUsedByMultipleNotesMode.cancel.description)),a.createEl("br"),R(a,g(o=>o.pluginSettings.moveAttachmentToProperFolderUsedByMultipleNotesMode.prompt.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.moveAttachmentToProperFolderUsedByMultipleNotesMode.prompt.description))})).addDropdown(a=>{a.addOptions({Skip:g(o=>o.pluginSettings.moveAttachmentToProperFolderUsedByMultipleNotesMode.skip.displayText),CopyAll:g(o=>o.pluginSettings.moveAttachmentToProperFolderUsedByMultipleNotesMode.copyAll.displayText),Cancel:g(o=>o.pluginSettings.moveAttachmentToProperFolderUsedByMultipleNotesMode.cancel.displayText),Prompt:g(o=>o.pluginSettings.moveAttachmentToProperFolderUsedByMultipleNotesMode.prompt.displayText)}),this.bind(a,"moveAttachmentToProperFolderUsedByMultipleNotesMode")}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.duplicateNameSeparator.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.duplicateNameSeparator.description.part1)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.duplicateNameSeparator.description.part2)),a.appendText(" "),R(a,"existingFile.pdf"),a.appendText(g(o=>o.pluginSettingsTab.duplicateNameSeparator.description.part3)),a.appendText(" "),R(a,"existingFile 1.pdf"),a.appendText(", "),R(a,"existingFile 2.pdf"),a.appendText(g(o=>o.pluginSettingsTab.duplicateNameSeparator.description.part4))})).addText(a=>{this.bind(a,"duplicateNameSeparator",{componentToPluginSettingsValueConverter:Ic,pluginSettingsToComponentValueConverter:Fo}),Gf(a)}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.emptyAttachmentFolderBehavior.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.emptyAttachmentFolderBehavior.description.part1)),a.createEl("br"),R(a,g(o=>o.pluginSettings.emptyAttachmentFolderBehavior.keep.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.emptyAttachmentFolderBehavior.keep.description)),a.createEl("br"),R(a,g(o=>o.pluginSettings.emptyAttachmentFolderBehavior.delete.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.emptyAttachmentFolderBehavior.delete.description)),a.createEl("br"),R(a,g(o=>o.pluginSettings.emptyAttachmentFolderBehavior.deleteWithEmptyParents.displayText)),a.appendText(" - "),a.appendText(g(o=>o.pluginSettings.emptyAttachmentFolderBehavior.deleteWithEmptyParents.description))})).addDropdown(a=>{a.addOptions({[at.Keep]:g(o=>o.pluginSettings.emptyAttachmentFolderBehavior.keep.displayText),[at.Delete]:g(o=>o.pluginSettings.emptyAttachmentFolderBehavior.delete.displayText),[at.DeleteWithEmptyParents]:g(o=>o.pluginSettings.emptyAttachmentFolderBehavior.deleteWithEmptyParents.displayText)}),this.bind(a,"emptyAttachmentFolderBehavior")}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.shouldDeleteOrphanAttachments.name)).setDesc(g(a=>a.pluginSettingsTab.shouldDeleteOrphanAttachments.description)).addToggle(a=>{this.bind(a,"shouldDeleteOrphanAttachments")}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.includePaths.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.includePaths.description.part1)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.includePaths.description.part2)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.includePaths.description.part3)),a.appendText(" "),R(a,g(o=>o.regularExpression)),a.appendText("."),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.includePaths.description.part4))})).addMultipleText(a=>{this.bind(a,"includePaths")}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.excludePaths.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.excludePaths.description.part1)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.excludePaths.description.part2)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.excludePaths.description.part3)),a.appendText(" "),R(a,g(o=>o.regularExpression)),a.appendText("."),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.excludePaths.description.part4))})).addMultipleText(a=>{this.bind(a,"excludePaths")}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.excludePathsFromAttachmentCollecting.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.excludePathsFromAttachmentCollecting.description.part1)),a.appendText(" "),R(a,g(o=>o.pluginSettingsTab.excludePathsFromAttachmentCollecting.description.part2)),a.appendText(" "),a.appendText(g(o=>o.pluginSettingsTab.excludePathsFromAttachmentCollecting.description.part3)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.excludePathsFromAttachmentCollecting.description.part4)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.excludePathsFromAttachmentCollecting.description.part5)),a.appendText(" "),R(a,g(o=>o.regularExpression)),a.appendText("."),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.excludePathsFromAttachmentCollecting.description.part6))})).addMultipleText(a=>{this.bind(a,"excludePathsFromAttachmentCollecting")});let r=(0,zo.debounce)(a=>{J(async()=>{Pe.registerCustomTokens(a),await this.revalidate()})},2e3);new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.customTokens.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.customTokens.description.part1)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.customTokens.description.part2)),a.appendText(" "),a.createEl("a",{href:"https://github.com/RainCat1998/obsidian-custom-attachment-location?tab=readme-ov-file#custom-tokens",text:g(o=>o.pluginSettingsTab.customTokens.description.part3)}),a.appendText(" "),a.appendText(g(o=>o.pluginSettingsTab.customTokens.description.part4)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.customTokens.description.part5))})).addCodeHighlighter(a=>{a.setLanguage("javascript"),a.inputEl.addClass("custom-tokens-setting-control"),this.bind(a,"customTokensStr",{onChanged:i(o=>{r(o)},"onChanged")})}),this.plugin.settingsManager.shouldDebounceCustomTokensValidation=!0,new X(this.containerEl).addButton(a=>{a.setButtonText(g(o=>o.pluginSettingsTab.resetToSampleCustomTokens.title)),a.setWarning(),a.onClick(Re(async()=>{this.plugin.settings.customTokensStr!==Gl&&(this.plugin.settings.customTokensStr!==""&&!await fi({app:this.plugin.app,cancelButtonText:g(o=>o.obsidianDevUtils.buttons.cancel),message:g(o=>o.pluginSettingsTab.resetToSampleCustomTokens.message),okButtonText:g(o=>o.obsidianDevUtils.buttons.ok),title:g(o=>o.pluginSettingsTab.resetToSampleCustomTokens.title)})||(await this.plugin.settingsManager.editAndSave(o=>{o.customTokensStr=Gl}),this.display()))}))}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.treatAsAttachmentExtensions.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.treatAsAttachmentExtensions.description.part1)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.treatAsAttachmentExtensions.description.part2)),a.appendText(" "),R(a,".md"),a.appendText(", "),R(a,".canvas"),a.appendText(" "),a.appendText(g(o=>o.pluginSettingsTab.treatAsAttachmentExtensions.description.part3)),a.appendText(" "),R(a,".base"),a.appendText(" "),a.appendText(g(o=>o.pluginSettingsTab.treatAsAttachmentExtensions.description.part4)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.treatAsAttachmentExtensions.description.part5)),a.appendText(" "),R(a,".foo.md"),a.appendText(", "),R(a,".bar.canvas"),a.appendText(", "),R(a,".baz.base"),a.appendText(g(o=>o.pluginSettingsTab.treatAsAttachmentExtensions.description.part6)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.treatAsAttachmentExtensions.description.part7))})).addMultipleText(a=>{this.bind(a,"treatAsAttachmentExtensions")}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.timeoutInSeconds.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.timeoutInSeconds.description.part1)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.timeoutInSeconds.description.part2)),a.appendText(" "),R(a,"0"),a.appendText(" "),a.appendText(g(o=>o.pluginSettingsTab.timeoutInSeconds.description.part3))})).addNumber(a=>{a.setMin(0),this.bind(a,"timeoutInSeconds")}),new X(this.containerEl).setName(g(a=>a.pluginSettingsTab.defaultImageSize.name)).setDesc(createFragment(a=>{a.appendText(g(o=>o.pluginSettingsTab.defaultImageSize.description.part1)),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.defaultImageSize.description.part2)),a.appendText(" ("),R(a,"300px"),a.appendText(") "),a.appendText(g(o=>o.pluginSettingsTab.defaultImageSize.description.part3)),a.appendText(" ("),R(a,"50%"),a.appendText(")."),a.createEl("br"),a.appendText(g(o=>o.pluginSettingsTab.defaultImageSize.description.part4))})).addText(a=>{this.bind(a,"defaultImageSize")}).addDropdown(a=>{a.selectEl.addClass("default-image-size-dimension-setting-control"),a.addOptions({width:g(o=>o.pluginSettings.defaultImageSizeDimension.width),height:g(o=>o.pluginSettings.defaultImageSizeDimension.height)}),this.bind(a,"defaultImageSizeDimension")})}hide(){super.hide(),this.plugin.settingsManager.shouldDebounceCustomTokensValidation=!1}};function XC(){let e={};for(let n=1;n<=20;n++){let r=(n/20).toFixed(Jf);e[r]=r}return e}i(XC,"generateJpegQualityOptions");function Gf(t){t.inputEl.addEventListener("input",()=>{let e=t.inputEl.selectionStart??0,n=t.inputEl.selectionEnd??0;t.inputEl.value=Fo(t.inputEl.value),t.inputEl.setSelectionRange(e,n)})}i(Gf,"handleWhitespace");function Ic(t){return t.replaceAll(Wf," ")}i(Ic,"restoreSpaceCharacter");function Fo(t){return t.replaceAll(" ",Wf)}i(Fo,"showSpaceCharacter");var Hf=qe(ht.moment),eT=/Pasted image (?<Timestamp>\d{14})/,tT="YYYYMMDDHHmmss",nT=10,zc="__IMPORT_FILES__",No=class extends pi{static{i(this,"Plugin")}arrayBufferFileStatMap=new WeakMap;currentAttachmentFolderPath=null;getAvailablePathForAttachmentsOriginal=null;imageAttachmentSizeMap=new Map;isMarkdownViewPatched=!1;lastOpenFilePath=null;pathMarkdownUrlMap=new Map;replaceSpecialCharacters(e){return this.settings.specialCharacters&&(e=e.replace(this.settings.specialCharactersRegExp,this.settings.specialCharactersReplacement)),e}createSettingsManager(){return new Xi(this)}createSettingsTab(){return new Io(this)}createTranslationsMap(){return Sh}async onLayoutReady(){await super.onLayoutReady(),Pe.registerCustomTokens(this.settings.customTokensStr),await this.settingsManager.loadFromFile(!1),Pt(this,this.app.vault,{getAvailablePath:i(()=>this.getAvailablePath.bind(this),"getAvailablePath"),getAvailablePathForAttachments:i(e=>{let n=this;return Object.assign(r,{extended:this.getAvailablePathForAttachments.bind(this)});function r(a,o,s){return e.call(n.app.vault,a,o,s)}},"getAvailablePathForAttachments"),getConfig:i(e=>n=>this.getConfig(e,n),"getConfig")}),Mo.webUtils&&Pt(this,Mo.webUtils,{getPathForFile:i(e=>n=>this.getPathForFile(n,e),"getPathForFile")}),Pt(this,this.app.fileManager,{generateMarkdownLink:i(e=>(n,r,a,o)=>this.generateMarkdownLink(e,n,r,a,o),"generateMarkdownLink")}),Pt(this,Wo(this.app.shareReceiver),{importFiles:i(e=>n=>this.importFiles(e,n),"importFiles")}),this.registerPopupDocumentDomEvent("change",this.handleInputFileChange.bind(this),{capture:!0}),await this.handleActiveLeafChange(this.app.workspace.getLeavesOfType(nn.Markdown)[0]??null),this.isMarkdownViewPatched||this.registerEvent(this.app.workspace.on("active-leaf-change",Re(this.handleActiveLeafChange.bind(this))))}async onloadImpl(){await super.onloadImpl(),fm(this,()=>({emptyAttachmentFolderBehavior:this.settings.emptyAttachmentFolderBehavior,isNote:i(n=>An(this,n),"isNote"),isPathIgnored:i(n=>this.settings.isPathIgnored(n),"isPathIgnored"),shouldHandleDeletions:this.settings.shouldDeleteOrphanAttachments,shouldHandleRenames:this.settings.shouldHandleRenames,shouldRenameAttachmentFiles:this.settings.shouldRenameAttachmentFiles,shouldRenameAttachmentFolder:this.settings.shouldRenameAttachmentFolder,shouldUpdateFileNameAliases:!0})),new Ii(this).register(),new Fi(this).register(),new Si(this).register(),new zi(this).register(),Pt(this,this.app,{saveAttachment:i(()=>(e,n,r)=>this.saveAttachment(e,n,r),"saveAttachment")}),this.addChild(new Eo),this.registerEvent(this.app.workspace.on("file-open",Re(this.handleFileOpen.bind(this)))),this.registerEvent(this.app.vault.on("rename",Re(this.handleRename.bind(this)))),this.registerEvent(this.app.workspace.on("receive-text-menu",this.handleReceiveTextMenu.bind(this))),this.registerEvent(this.app.workspace.on("receive-files-menu",this.handleReceiveFilesMenu.bind(this)))}async convertImageToJpeg(e){let n=Fh(e.attachmentFileExtension),r=!1;if(n)switch(this.settings.convertImagesToJpegMode){case"All images":r=!0;break;case"All images except already JPEG files":n!=="image/jpeg"&&(r=!0);break;case"None":break;case"Only pasted clipboard PNG images":e.isPastedImage&&n==="image/png"&&(r=!0);break;default:throw new Error(`Invalid convert images to JPEG mode: ${this.settings.convertImagesToJpegMode}`)}r&&n&&(e.attachmentFileExtension="jpg",e.attachmentFileContent=await yp(new Blob([e.attachmentFileContent],{type:n}),this.settings.jpegQuality))}async fileArrayBuffer(e,n){let r=await e.call(n);if(this.app.vault.adapter instanceof ht.FileSystemAdapter){let a=Mo.webUtils.getPathForFile(n);if(await this.setFileStat(r,a))return r}return this.arrayBufferFileStatMap.set(r,{ctime:0,mtime:n.lastModified,size:n.size}),r}generateMarkdownLink(e,n,r,a,o){if(o===void 0){let c=this.imageAttachmentSizeMap.get(n.path);c&&(this.imageAttachmentSizeMap.delete(n.path),o=c)}let s=e.call(this.app.fileManager,n,r,a,o);if(!this.settings.markdownUrlFormat)return s;let l=this.pathMarkdownUrlMap.get(n.path);return l?(Cl(s)&&(s=wl({app:this.app,linkStyle:Al.Markdown,originalLink:s,sourcePathOrFile:r,targetPathOrFile:n})),xl(s)?s.replace(/\]\(<.+?>\)/,`](<${l}>)`):s.replace(/\]\(.+?\)/,`](${La(l)})`)):s}getAvailablePath(e,n){let r=0;for(;;){let a=Xe(r===0?e:`${e}${this.settings.duplicateNameSeparator}${String(r)}`,n);if(!an(this.app,a,!0))return a;r++}}async getAvailablePathForAttachments(e){let{attachmentFileExtension:n,notePathOrFile:r,shouldSkipDuplicateCheck:a,shouldSkipMissingAttachmentFolderCreation:o}=e,{attachmentFileBaseName:s,attachmentFileContent:l,attachmentFileStat:c,shouldSkipGeneratedAttachmentFileName:p}=e;if(s===Ct){l??=new ArrayBuffer(0);let v=Math.trunc(Date.now());c??={ctime:v,mtime:v,size:0}}let d=pe(this.app,r),u=r?ee(this.app,r):void 0,h=e.oldNotePathOrFile?ee(this.app,e.oldNotePathOrFile):void 0;if(s.startsWith(zc)&&(s=zn(s,zc),p=!0),d&&this.settings.isPathIgnored(d.path)&&this.getAvailablePathForAttachmentsOriginal)return this.getAvailablePathForAttachmentsOriginal(s,n,d);let m;if(!u||!Ue(this.app,u))m=await as({app:this.app,attachmentFileBaseName:s,attachmentFileExtension:n,notePathOrFile:r,shouldSkipDuplicateCheck:a??!1,shouldSkipMissingAttachmentFolderCreation:o??!0});else{let v=Xe(s,n),A=await Ua(this,e.context,u,v,h,l,c),b;if(p)b=v;else{let w=await this.getCursorLine(u,e.oldAttachmentPathOrFile),T=await this.getSequenceNumber(u,e.oldAttachmentPathOrFile),P=await Zn(this,new Pe({actionContext:e.context,attachmentFileContent:l,attachmentFileStat:c,cursorLine:w,noteFilePath:u,oldNoteFilePath:h,originalAttachmentFileName:v,plugin:this,sequenceNumber:T}));b=Xe(P,n)}let y=le(A,b);if(a)m=y;else{let w=oe(y),T=se(y,n?`.${n}`:"");m=this.app.vault.getAvailablePath(le(w,T),n)}}if(!o){let v=Ge(m);await this.app.vault.exists(v)||(await ei(this.app,v),this.settings.emptyAttachmentFolderBehavior===at.Keep&&await this.app.vault.create(le(v,".gitkeep"),""))}return m}getConfig(e,n){return n!=="attachmentFolderPath"||this.currentAttachmentFolderPath===null?e.call(this.app.vault,n):this.currentAttachmentFolderPath}async getCursorLine(e,n){let r=pe(this.app,n);if(!r)return 0;let a=await Lt(this.app,e);if(!a)return 0;for(let o of tt(a)){if(!We(o))continue;let s=mt(this.app,o,e);if(s&&s===r)return o.position.start.line}return 0}getPathForFile(e,n){let r=e;return r.path?r.path:n(e)}async getSequenceNumber(e,n){let r=pe(this.app,n);if(!r)return 0;let a=await Lt(this.app,e);if(!a)return 0;let o=1;for(let s of tt(a)){let l=mt(this.app,s,e);if(l){if(l===r)return o;o++}}return 0}async handleActiveLeafChange(e){if(this.isMarkdownViewPatched||!e||e.view.getViewType()!==nn.Markdown)return;await e.loadIfDeferred();let n=e.view,r=this;Pt(this,Wo(n.editMode.clipboardManager),{insertFiles:i(a=>i(function(s){return r.insertFiles(a,this,s)},"insertFilesPatched"),"insertFiles")}),this.isMarkdownViewPatched=!0}async handleFileOpen(e){if(e===null||this.settings.isPathIgnored(e.path)){this.currentAttachmentFolderPath=null,this.lastOpenFilePath=null;return}e.path!==this.lastOpenFilePath&&(this.lastOpenFilePath=e.path,this.currentAttachmentFolderPath=await Ua(this,"OpenFile",e.path,Ct))}handleInputFileChange(e){if(!(e.target instanceof HTMLInputElement)||e.target.type!=="file")return;let n=this;for(let r of e.target.files??[])Pt(this,r,{arrayBuffer:i(a=>i(function(){return n.fileArrayBuffer(a,this)},"arrayBufferPatched"),"arrayBuffer")})}handleReceiveFilesMenu(e,n){this.handleReceiveMenuItemClick(e,r=>n.map(o=>this.app.fileManager.generateMarkdownLink(o,r.path)).join(`
|
|
573
|
+
`))}handleReceiveMenuItemClick(e,n){let r=this.app,a=e.items.find(s=>s instanceof ht.MenuItem&&!!s.iconEl.querySelector(".lucide-file"));a&&(a.callback=o);function o(){let s=r.workspace.getActiveViewOfType(ht.MarkdownView);if(!s?.file)return;let l=n(s.file);s.editor.replaceSelection(l)}i(o,"callback")}handleReceiveTextMenu(e,n){this.handleReceiveMenuItemClick(e,()=>n)}async handleRename(){await this.handleFileOpen(this.app.workspace.getActiveFile())}async importFiles(e,n){for(let r of n){let a=window.Capacitor.convertFileSrc(r.uri),s=await(await fetch(a)).arrayBuffer(),l=new Pe({actionContext:"ImportFiles",attachmentFileContent:s,noteFilePath:this.app.workspace.getActiveFile()?.path??"",originalAttachmentFileName:r.name,plugin:this}),c=await Zn(this,l),p=Ae(r.name).slice(1);r.name=zc+Xe(c,p)}return e.call(this.app.shareReceiver,n)}async insertFiles(e,n,r){for(let a of r){let o=await a.data;await this.setFileStat(o,a.filepath)}return e.call(n,r)}async saveAttachment(e,n,r){let a=this.app.workspace.getActiveFile();if(!a||this.settings.isPathIgnored(a.path))return await this.saveAttachmentCore(e,n,r);let o=!1,s=eT.exec(e);if(s){let d=s.groups?.Timestamp;if(d){let u=Hf(d,tT);u.isValid()&&Hf().diff(u,"seconds")<nT&&(o=!0)}}let l={attachmentFileContent:r,attachmentFileExtension:n,isPastedImage:o};await this.convertImageToJpeg(l),n=l.attachmentFileExtension,r=l.attachmentFileContent;let c=!1;switch(this.settings.attachmentRenameMode){case"All":c=!0;break;case"None":break;case"Only pasted images":c=o;break;default:throw new Error("Invalid attachment rename mode")}c&&(e=await Zn(this,new Pe({actionContext:"SaveAttachment",attachmentFileContent:r,attachmentFileStat:this.arrayBufferFileStatMap.get(r),noteFilePath:a.path,originalAttachmentFileName:Xe(e,n),plugin:this})));let p=await this.saveAttachmentCore(e,n,r);if(this.settings.markdownUrlFormat){let d=await new Pe({actionContext:"SaveAttachment",attachmentFileContent:r,attachmentFileStat:this.arrayBufferFileStatMap.get(r),generatedAttachmentFileName:p.name,generatedAttachmentFilePath:p.path,noteFilePath:a.path,originalAttachmentFileName:Xe(e,n),plugin:this}).fillTemplate(this.settings.markdownUrlFormat);this.pathMarkdownUrlMap.set(p.path,d)}else this.pathMarkdownUrlMap.delete(p.path);return p}async saveAttachmentCore(e,n,r){let a=this.app.workspace.getActiveFile(),o=this.arrayBufferFileStatMap.get(r),s=await this.getAvailablePathForAttachments({attachmentFileBaseName:e,attachmentFileContent:r,attachmentFileExtension:n,attachmentFileStat:o,context:"SaveAttachment",notePathOrFile:a,oldAttachmentPathOrFile:Xe(e,n),shouldSkipDuplicateCheck:!1,shouldSkipGeneratedAttachmentFileName:!0,shouldSkipMissingAttachmentFolderCreation:!1}),l=await Eh(this,n,r);return l!==null&&this.imageAttachmentSizeMap.set(s,l),await this.app.vault.createBinary(s,r,hp({ctime:o?.ctime?Math.trunc(o.ctime):void 0,mtime:o?.mtime?Math.trunc(o.mtime):void 0}))}async setFileStat(e,n){if(!n)return!1;if(this.app.vault.adapter instanceof ht.FileSystemAdapter){let r=await this.app.vault.adapter.fsPromises.stat(n);return this.arrayBufferFileStatMap.set(e,{ctime:r.ctimeMs,mtime:r.mtimeMs,size:r.size}),!0}if(this.app.vault.adapter instanceof ht.CapacitorAdapter){let r=await this.app.vault.adapter.fs.stat(n);return this.arrayBufferFileStatMap.set(e,{ctime:r.ctime??0,mtime:r.mtime??0,size:e.byteLength}),!0}return!1}};var aT=No;
|
|
574
|
+
|
|
575
|
+
/* nosourcemap */
|