{ // 获取包含Hugging Face文本的span元素 const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap'); spans.forEach(span => { if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) { span.textContent = 'AI快站'; } }); }); // 替换logo图片的alt属性 document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => { if (img.alt.match(/Hugging\s*Face/i)) { img.alt = 'AI快站 logo'; } }); } // 替换导航栏中的链接 function replaceNavigationLinks() { // 已替换标记,防止重复运行 if (window._navLinksReplaced) { return; } // 已经替换过的链接集合,防止重复替换 const replacedLinks = new Set(); // 只在导航栏区域查找和替换链接 const headerArea = document.querySelector('header') || document.querySelector('nav'); if (!headerArea) { return; } // 在导航区域内查找链接 const navLinks = headerArea.querySelectorAll('a'); navLinks.forEach(link => { // 如果已经替换过,跳过 if (replacedLinks.has(link)) return; const linkText = link.textContent.trim(); const linkHref = link.getAttribute('href') || ''; // 替换Spaces链接 - 仅替换一次 if ( (linkHref.includes('/spaces') || linkHref === '/spaces' || linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) && linkText !== 'PDF TO Markdown' && linkText !== 'PDF TO Markdown' ) { link.textContent = 'PDF TO Markdown'; link.href = 'https://fast360.xyz'; link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener noreferrer'); replacedLinks.add(link); } // 删除Posts链接 else if ( (linkHref.includes('/posts') || linkHref === '/posts' || linkText === 'Posts' || linkText.match(/^s*Postss*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } // 替换Docs链接 - 仅替换一次 else if ( (linkHref.includes('/docs') || linkHref === '/docs' || linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) && linkText !== 'Voice Cloning' ) { link.textContent = 'Voice Cloning'; link.href = 'https://vibevoice.info/'; replacedLinks.add(link); } // 删除Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } }); // 查找可能嵌套的Spaces和Posts文本 const textNodes = []; function findTextNodes(element) { if (element.nodeType === Node.TEXT_NODE) { const text = element.textContent.trim(); if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') { textNodes.push(element); } } else { for (const child of element.childNodes) { findTextNodes(child); } } } // 只在导航区域内查找文本节点 findTextNodes(headerArea); // 替换找到的文本节点 textNodes.forEach(node => { const text = node.textContent.trim(); if (text === 'Spaces') { node.textContent = node.textContent.replace(/Spaces/g, 'PDF TO Markdown'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); \n\t\t`;\n\n\t\treturn header + message + footer;\n\t}\n\n\tcancelOAuthDance() {\n\t\tif (!this.oauthServer_) return;\n\t\tthis.oauthServer_.destroy();\n\t}\n\n\tasync oauthDance(targetConsole = null) {\n\t\tif (targetConsole === null) targetConsole = console;\n\n\t\tthis.api().setAuth(null);\n\n\t\tconst port = await netUtils.findAvailablePort(this.possibleOAuthDancePorts(), 0);\n\t\tif (!port) throw new Error(_('All potential ports are in use - please report the issue at %s', 'https://github.com/laurent22/joplin'));\n\n\t\tlet authCodeUrl = this.api().authCodeUrl(`http://localhost:${port}`);\n\n\t\treturn new Promise((resolve, reject) => {\n\t\t\tthis.oauthServer_ = http.createServer();\n\t\t\tlet errorMessage = null;\n\n\t\t\tthis.oauthServer_.on('request', (request, response) => {\n\t\t\t\tconst url = urlParser.parse(request.url, true);\n\n\t\t\t\tif (url.pathname === '/auth') {\n\t\t\t\t\tresponse.writeHead(302, { Location: authCodeUrl });\n\t\t\t\t\tresponse.end();\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tconst query = url.query;\n\n\t\t\t\tconst writeResponse = (code, message) => {\n\t\t\t\t\tresponse.writeHead(code, { 'Content-Type': 'text/html' });\n\t\t\t\t\tresponse.write(this.makePage(message));\n\t\t\t\t\tresponse.end();\n\t\t\t\t};\n\n\t\t\t\t// After the response has been received, don't destroy the server right\n\t\t\t\t// away or the browser might display a connection reset error (even\n\t\t\t\t// though it worked).\n\t\t\t\tconst waitAndDestroy = () => {\n\t\t\t\t\tsetTimeout(() => {\n\t\t\t\t\t\tthis.oauthServer_.destroy();\n\t\t\t\t\t\tthis.oauthServer_ = null;\n\t\t\t\t\t}, 1000);\n\t\t\t\t};\n\n\t\t\t\tif (!query.code) return writeResponse(400, '\"code\" query parameter is missing');\n\n\t\t\t\tthis.api()\n\t\t\t\t\t.execTokenRequest(query.code, `http://localhost:${port.toString()}`)\n\t\t\t\t\t.then(() => {\n\t\t\t\t\t\twriteResponse(200, _('The application has been authorised - you may now close this browser tab.'));\n\t\t\t\t\t\ttargetConsole.log('');\n\t\t\t\t\t\ttargetConsole.log(_('The application has been successfully authorised.'));\n\t\t\t\t\t\twaitAndDestroy();\n\t\t\t\t\t})\n\t\t\t\t\t.catch(error => {\n\t\t\t\t\t\twriteResponse(400, error.message);\n\t\t\t\t\t\ttargetConsole.log('');\n\t\t\t\t\t\ttargetConsole.log(error.message);\n\t\t\t\t\t\twaitAndDestroy();\n\t\t\t\t\t});\n\t\t\t});\n\n\t\t\tthis.oauthServer_.on('close', () => {\n\t\t\t\tif (errorMessage) {\n\t\t\t\t\treject(new Error(errorMessage));\n\t\t\t\t} else {\n\t\t\t\t\tresolve(this.api().auth());\n\t\t\t\t}\n\t\t\t});\n\n\t\t\tthis.oauthServer_.listen(port);\n\n\t\t\tenableServerDestroy(this.oauthServer_);\n\n\t\t\t// Rather than displaying authCodeUrl directly, we go through the local\n\t\t\t// server. This is just so that the URL being displayed is shorter and\n\t\t\t// doesn't get cut in terminals (especially those that don't handle multi\n\t\t\t// lines URLs).\n\n\t\t\ttargetConsole.log(_('Please open the following URL in your browser to authenticate the application. The application will create a directory in \"Apps/Joplin\" and will only read and write files in this directory. It will have no access to any files outside this directory nor to any other personal data. No data will be shared with any third party.'));\n\t\t\ttargetConsole.log('');\n\t\t\ttargetConsole.log(`http://127.0.0.1:${port}/auth`);\n\t\t});\n\t}\n}\n\nmodule.exports = { OneDriveApiNodeUtils };\n"},"file_path":{"kind":"string","value":"ReactNativeClient/lib/onedrive-api-node-utils.js"},"label":{"kind":"number","value":0,"string":"0"},"commit_url":{"kind":"string","value":"https://github.com/laurent22/joplin/commit/f78729ad1f02ad9b9a2b34ae250499236cfa0a6a"},"dependency_score":{"kind":"list like","value":[0.0009417285909876227,0.00023564982984680682,0.00016496788884978741,0.00016985474212560803,0.0002053518983302638],"string":"[\n 0.0009417285909876227,\n 0.00023564982984680682,\n 0.00016496788884978741,\n 0.00016985474212560803,\n 0.0002053518983302638\n]"}}},{"rowIdx":261160,"cells":{"hunk":{"kind":"string","value":"{\n \"id\": 0,\n \"code_window\": [\n \"\\t};\\n\",\n \"\\n\",\n \"\\tshim.waitForFrame = () => {};\\n\",\n \"}\\n\",\n \"\\n\",\n \"module.exports = { shimInit };\"\n ],\n \"labels\": [\n \"keep\",\n \"keep\",\n \"add\",\n \"keep\",\n \"keep\",\n \"keep\"\n ],\n \"after_edit\": [\n \"\\n\",\n \"\\tshim.appVersion = () => {\\n\",\n \"\\t\\tif (shim.isElectron()) {\\n\",\n \"\\t\\t\\tconst p = require('../packageInfo.js');\\n\",\n \"\\t\\t\\treturn p.version;\\n\",\n \"\\t\\t}\\n\",\n \"\\t\\tconst p = require('../package.json');\\n\",\n \"\\t\\treturn p.version;\\n\",\n \"\\t};\\n\"\n ],\n \"file_path\": \"ReactNativeClient/lib/shim-init-node.js\",\n \"type\": \"add\",\n \"edit_start_line_idx\": 380\n}"},"file":{"kind":"string","value":"const EncryptionService = require('lib/services/EncryptionService');\nconst { _ } = require('lib/locale.js');\nconst BaseItem = require('lib/models/BaseItem.js');\nconst Setting = require('lib/models/Setting.js');\n\nconst shared = {};\n\nshared.constructor = function(comp) {\n\tcomp.state = {\n\t\tmasterKeys: [],\n\t\tpasswords: {},\n\t\tpasswordChecks: {},\n\t\tstats: {\n\t\t\tencrypted: null,\n\t\t\ttotal: null,\n\t\t},\n\t};\n\tcomp.isMounted_ = false;\n\n\tcomp.refreshStatsIID_ = null;\n};\n\nshared.initState = function(comp, props) {\n\tcomp.setState(\n\t\t{\n\t\t\tmasterKeys: props.masterKeys,\n\t\t\tpasswords: props.passwords ? props.passwords : {},\n\t\t},\n\t\t() => {\n\t\t\tcomp.checkPasswords();\n\t\t}\n\t);\n\n\tcomp.refreshStats();\n\n\tif (comp.refreshStatsIID_) {\n\t\tclearInterval(comp.refreshStatsIID_);\n\t\tcomp.refreshStatsIID_ = null;\n\t}\n\n\tcomp.refreshStatsIID_ = setInterval(() => {\n\t\tif (!comp.isMounted_) {\n\t\t\tclearInterval(comp.refreshStatsIID_);\n\t\t\tcomp.refreshStatsIID_ = null;\n\t\t\treturn;\n\t\t}\n\t\tcomp.refreshStats();\n\t}, 3000);\n};\n\nshared.refreshStats = async function(comp) {\n\tconst stats = await BaseItem.encryptedItemsStats();\n\tcomp.setState({ stats: stats });\n};\n\nshared.checkPasswords = async function(comp) {\n\tconst passwordChecks = Object.assign({}, comp.state.passwordChecks);\n\tfor (let i = 0; i < comp.state.masterKeys.length; i++) {\n\t\tconst mk = comp.state.masterKeys[i];\n\t\tconst password = comp.state.passwords[mk.id];\n\t\tconst ok = password ? await EncryptionService.instance().checkMasterKeyPassword(mk, password) : false;\n\t\tpasswordChecks[mk.id] = ok;\n\t}\n\tcomp.setState({ passwordChecks: passwordChecks });\n};\n\nshared.decryptedStatText = function(comp) {\n\tconst stats = comp.state.stats;\n\tconst doneCount = stats.encrypted !== null ? stats.total - stats.encrypted : '-';\n\tconst totalCount = stats.total !== null ? stats.total : '-';\n\treturn _('Decrypted items: %s / %s', doneCount, totalCount);\n};\n\nshared.onSavePasswordClick = function(comp, mk) {\n\tconst password = comp.state.passwords[mk.id];\n\tif (!password) {\n\t\tSetting.deleteObjectKey('encryption.passwordCache', mk.id);\n\t} else {\n\t\tSetting.setObjectKey('encryption.passwordCache', mk.id, password);\n\t}\n\n\tcomp.checkPasswords();\n};\n\nshared.onPasswordChange = function(comp, mk, password) {\n\tconst passwords = comp.state.passwords;\n\tpasswords[mk.id] = password;\n\tcomp.setState({ passwords: passwords });\n};\n\nmodule.exports = shared;\n"},"file_path":{"kind":"string","value":"ReactNativeClient/lib/components/shared/encryption-config-shared.js"},"label":{"kind":"number","value":0,"string":"0"},"commit_url":{"kind":"string","value":"https://github.com/laurent22/joplin/commit/f78729ad1f02ad9b9a2b34ae250499236cfa0a6a"},"dependency_score":{"kind":"list like","value":[0.0009772209450602531,0.00025240652030333877,0.0001656943204579875,0.00017252276302315295,0.000241617119172588],"string":"[\n 0.0009772209450602531,\n 0.00025240652030333877,\n 0.0001656943204579875,\n 0.00017252276302315295,\n 0.000241617119172588\n]"}}},{"rowIdx":261161,"cells":{"hunk":{"kind":"string","value":"{\n \"id\": 0,\n \"code_window\": [\n \"\\t};\\n\",\n \"\\n\",\n \"\\tshim.waitForFrame = () => {};\\n\",\n \"}\\n\",\n \"\\n\",\n \"module.exports = { shimInit };\"\n ],\n \"labels\": [\n \"keep\",\n \"keep\",\n \"add\",\n \"keep\",\n \"keep\",\n \"keep\"\n ],\n \"after_edit\": [\n \"\\n\",\n \"\\tshim.appVersion = () => {\\n\",\n \"\\t\\tif (shim.isElectron()) {\\n\",\n \"\\t\\t\\tconst p = require('../packageInfo.js');\\n\",\n \"\\t\\t\\treturn p.version;\\n\",\n \"\\t\\t}\\n\",\n \"\\t\\tconst p = require('../package.json');\\n\",\n \"\\t\\treturn p.version;\\n\",\n \"\\t};\\n\"\n ],\n \"file_path\": \"ReactNativeClient/lib/shim-init-node.js\",\n \"type\": \"add\",\n \"edit_start_line_idx\": 380\n}"},"file":{"kind":"string","value":"{\"To delete a tag, untag the associated notes.\":\"Per eliminare un'etichetta, togli l'etichetta dalle note a cui è associata.\",\"Please select the note or notebook to be deleted first.\":\"Per favore seleziona la nota o il taccuino da eliminare.\",\"Press Ctrl+D or type \\\"exit\\\" to exit the application\":\"Premi Ctrl+D o digita \\\"exit\\\" per uscire dall'applicazione\",\"More than one item match \\\"%s\\\". Please narrow down your query.\":\"Più di un elemento corrisponde a \\\"%s\\\". Per favore restringi la ricerca.\",\"No notebook selected.\":\"Nessun taccuino selezionato.\",\"No notebook has been specified.\":\"Nessun taccuino è stato specificato.\",\"Y\":\"S\",\"n\":\"n\",\"N\":\"N\",\"y\":\"s\",\"Cancelling background synchronisation... Please wait.\":\"Annullamento della sincronizzazione in background... Attendere prego.\",\"No such command: %s\":\"Nessun comando: %s\",\"The command \\\"%s\\\" is only available in GUI mode\":\"Il comando \\\"%s\\\" è disponibile solo nella modalità grafica\",\"Cannot change encrypted item\":\"Impossibile modificare l'elemento criptato\",\"Missing required argument: %s\":\"Argomento richiesto mancante: %s\",\"%s: %s\":\"%s: %s\",\"Your choice: \":\"La tua scelta: \",\"Invalid answer: %s\":\"Risposta non valida: %s\",\"Attaches the given file to the note.\":\"Allega il seguente file alla nota.\",\"Cannot find \\\"%s\\\".\":\"Non posso trovare \\\"%s\\\".\",\"Displays the given note.\":\"Mostra la seguente nota.\",\"Displays the complete information about note.\":\"Mostra le informazioni complete sulla nota.\",\"Gets or sets a config value. If [value] is not provided, it will show the value of [name]. If neither [name] nor [value] is provided, it will list the current configuration.\":\"Ricevi o imposta un valore di configurazione. se [value] non è impostato, verrà mostrato il valore del [name]. Se sia [name] che [valore] sono impostati, verrà mostrata la configurazione corrente.\",\"Also displays unset and hidden config variables.\":\"Mostra anche le variabili di configurazione non impostate o nascoste.\",\"%s = %s (%s)\":\"%s = %s (%s)\",\"%s = %s\":\"%s = %s\",\"Duplicates the notes matching to [notebook]. If no notebook is specified the note is duplicated in the current notebook.\":\"Duplica le note che corrispondono a nel [notebook]. Se nessun Taccuino è specificato, la nota viene duplicata nel Taccuino corrente.\",\"Marks a to-do as done.\":\"Segna un \\\"Cose-da-fare\\\" come completato.\",\"Note is not a to-do: \\\"%s\\\"\":\"La nota non è un \\\"Cose-da-fare\\\": \\\"%s\\\"\",\"Manages E2EE configuration. Commands are `enable`, `disable`, `decrypt`, `status`, `decrypt-file` and `target-status`.\":\"Gestisci la configurazione E2EE. I comandi sono `abilita`, `disabilita`, `decripta`, `stato`, `decripta-file` e `stato-target`.\",\"Enter master password:\":\"Inserisci password principale:\",\"Operation cancelled\":\"Operazione annullata\",\"Confirm password:\":\"Conferma password:\",\"Passwords do not match!\":\"Le password non combaciano!\",\"Starting decryption... Please wait as it may take several minutes depending on how much there is to decrypt.\":\"Avvio decrittazione... Attendere prego, ci potrebbero volere diversi minuti per la decriptazione.\",\"Completed decryption.\":\"Decrittografia completata.\",\"Enabled\":\"Attivato\",\"Disabled\":\"Disabilitato\",\"Encryption is: %s\":\"La crittografia è: %s\",\"Edit note.\":\"Modifica nota.\",\"No text editor is defined. Please set it using `config editor `\":\"Non è definito nessun editor di testo. Per favore impostalo usando `config editor `\",\"No active notebook.\":\"Nessun Taccuino attivo.\",\"Note does not exist: \\\"%s\\\". Create it?\":\"Non esiste la nota: \\\"%s\\\". Desideri crearla?\",\"Exits the application.\":\"Esci dall'applicazione.\",\"Exports Joplin data to the given path. By default, it will export the complete database including notebooks, notes, tags and resources.\":\"Esporta i dati da Joplin nella cartella selezionata. Come impostazione predefinita verrà esportato il database completo, inclusi i taccuini, note, etichette e risorse.\",\"Destination format: %s\":\"Formato di destinazione: %s\",\"Exports only the given note.\":\"Esporta solo la seguente nota.\",\"Exports only the given notebook.\":\"Esporta solo il seguente Taccuino.\",\"Displays a geolocation URL for the note.\":\"Mostra l'URL di geolocalizzazione per la nota.\",\"Displays usage information.\":\"Mostra le informazioni di utilizzo.\",\"For information on how to customise the shortcuts please visit %s\":\"Per informazioni su come personalizzare le scorciatoie si prega di visitare %s\",\"Shortcuts are not available in CLI mode.\":\"Le scorciatoie non sono disponibili nella modalità CLI.\",\"Type `help [command]` for more information about a command; or type `help all` for the complete usage information.\":\"Digita `help [command]` per ottenere maggiori informazioni su un comando; o scrivi `help all` per le informazioni di utilizzo complete.\",\"The possible commands are:\":\"I possibili comandi sono:\",\"In any command, a note or notebook can be referred to by title or ID, or using the shortcuts `$n` or `$b` for, respectively, the currently selected note or notebook. `$c` can be used to refer to the currently selected item.\":\"In ciascun comando, si deve necessariamente definire una Nota o un Taccuino usando un titolo, un ID o usando le scorciatoie `$n` or `$b` per , rispettivamente, la nota o il Taccuino selezionato `$c` può essere usato per fare riferimento all'elemento selezionato.\",\"To move from one pane to another, press Tab or Shift+Tab.\":\"Per passare da un pannello all'altro, premi Tab o Shift+Tab.\",\"Use the arrows and page up/down to scroll the lists and text areas (including this console).\":\"Usa le frecce e pagina su/giù per scorrere le liste e le aree di testo (compresa questa console).\",\"To maximise/minimise the console, press \\\"tc\\\".\":\"Per massimizzare/minimizzare la console, premi \\\"tc\\\".\",\"To enter command line mode, press \\\":\\\"\":\"Per entrare nella modalità command line, premi \\\":\\\"\",\"To exit command line mode, press ESCAPE\":\"Per uscire dalla modalità command line, premi ESC\",\"For the list of keyboard shortcuts and config options, type `help keymap`\":\"Per l'elenco delle scorciatoie da tastiera e delle opzioni di configurazione, digita `help keymap`\",\"Imports data into Joplin.\":\"Importa i dati in Joplin.\",\"Source format: %s\":\"Formato sorgente: %s\",\"Do not ask for confirmation.\":\"Non chiedere conferma.\",\"Found: %d.\":\"Trovato: %d.\",\"Created: %d.\":\"Creato: %d.\",\"Updated: %d.\":\"Aggiornato: %d.\",\"Skipped: %d.\":\"Saltato: %d.\",\"Resources: %d.\":\"Risorse: %d.\",\"Tagged: %d.\":\"Etichettato: %d.\",\"Importing notes...\":\"Importazione delle note...\",\"The notes have been imported: %s\":\"Le note sono state importate: %s\",\"Displays the notes in the current notebook. Use `ls /` to display the list of notebooks.\":\"Mostra le Note nel seguente Taccuino. Usa `ls /` per mostrare la lista dei Taccuini.\",\"Displays only the first top notes.\":\"Mostra solo le prima note.\",\"Sorts the item by (eg. title, updated_time, created_time).\":\"Ordina per (es. titolo, ultimo aggiornamento, creazione).\",\"Reverses the sorting order.\":\"Inverti l'ordine.\",\"Displays only the items of the specific type(s). Can be `n` for notes, `t` for to-dos, or `nt` for notes and to-dos (eg. `-tt` would display only the to-dos, while `-ttd` would display notes and to-dos.\":\"Mostra solo gli elementi del tipo specificato. Possono essere `n` per le note, `t` per le \\\"Cose-da-fare\\\" o `nt` per note e \\\"Cose-da-fare\\\". (es. `-tt` mostrerà solo le \\\"Cose-da-fare\\\", mentre `-ttd` mostrerà sia note che \\\"Cose-da-fare\\\".\",\"Either \\\"text\\\" or \\\"json\\\"\":\"Sia \\\"testo\\\" che \\\"json\\\"\",\"Use long list format. Format is ID, NOTE_COUNT (for notebook), DATE, TODO_CHECKED (for to-dos), TITLE\":\"Usa un formato lungo di lista. Il formato è ID, NOTE_COUNT (per i blocchi note), DATE, TODO_CHECKED (per le \\\"Cose-da-fare\\\"), TITLE\",\"Please select a notebook first.\":\"Per favore prima seleziona un Taccuino.\",\"Creates a new notebook.\":\"Crea un nuovo Taccuino.\",\"Creates a new note.\":\"Crea una nuova nota.\",\"Notes can only be created within a notebook.\":\"Le note possono essere create all'interno del Taccuino.\",\"Creates a new to-do.\":\"Crea una nuovo \\\"Cose-da-fare\\\".\",\"Moves the notes matching to [notebook].\":\"Sposta le note che corrispondono a in [notebook].\",\"Renames the given (note or notebook) to .\":\"Rinomina (Nota o Taccuino) in .\",\"Deletes the given notebook.\":\"Elimina il seguente Taccuino.\",\"Deletes the notebook without asking for confirmation.\":\"Elimina il Taccuino senza richiedere una conferma.\",\"Delete notebook? All notes and sub-notebooks within this notebook will also be deleted.\":\"Eliminare taccuino? Anche tutte le note e cartelle di questo taccuino saranno eliminate.\",\"Deletes the notes matching .\":\"Elimina le note che corrispondono a .\",\"Deletes the notes without asking for confirmation.\":\"Elimina le note senza chiedere conferma.\",\"%d notes match this pattern. Delete them?\":\"%d note corrispondono. Eliminarle?\",\"Delete note?\":\"Eliminare la nota?\",\"Searches for the given in all the notes.\":\"Cerca in tutte le note.\",\"Start, stop or check the API server. To specify on which port it should run, set the api.port config variable. Commands are (%s).\":\"Avvia, ferma o controlla il server API. Per specificare su quale porta deve essere eseguito, setta la variabile api.config. I comandi sono (%s).\",\"Server is already running on port %d\":\"Il server è già in esecuzione sulla porta %d\",\"Server is running on port %d\":\"Il server è in esecuzione sulla porta %d\",\"Server is not running.\":\"Il server non è in esecuzione.\",\"Sets the property of the given to the given [value]. Possible properties are:\\n\\n%s\":\"Imposta la proprietà della data al [value] specificato. Le possibili proprietà sono:\\n\\n%s\",\"Displays summary about the notes and notebooks.\":\"Mostra un sommario delle note e dei taccuini.\",\"Synchronises with remote storage.\":\"Sincronizza con l'archivio remoto.\",\"Sync to provided target (defaults to sync.target config value)\":\"Sincronizza con l'obiettivo fornito (come predefinito il valore di configurazione sync.target)\",\"Authentication was not completed (did not receive an authentication token).\":\"Autenticazione non completata (non è stato ricevuto alcun token di autenticazione).\",\"To allow Joplin to synchronise with Dropbox, please follow the steps below:\":\"Per consentire a Joplin di sincronizzarsi con Dropbox, procedi come indicato di seguito:\",\"Step 1: Open this URL in your browser to authorise the application:\":\"Passaggio 1: apri questa URL nel tuo browser per autorizzare l'applicazione:\",\"Step 2: Enter the code provided by Dropbox:\":\"Passaggio 2: inserisci il codice fornito da Dropbox:\",\"Not authentified with %s. Please provide any missing credentials.\":\"Non autenticato con %s. Si prega di fornire le credenziali mancanti.\",\"Synchronisation is already in progress.\":\"La sincronizzazione è in corso.\",\"Lock file is already being hold. If you know that no synchronisation is taking place, you may delete the lock file at \\\"%s\\\" and resume the operation.\":\"Trovato un file di blocco. Se si è certi che non è in corso alcuna sincronizzazione, è possibile eliminare il file di blocco in \\\"%s\\\" e riprendere l'operazione.\",\"Synchronisation target: %s (%s)\":\"Posizione di sincronizzazione: %s (%s)\",\"Cannot initialize synchroniser.\":\"Non è possibile inizializzare il sincronizzatore.\",\"Starting synchronisation...\":\"Inizio sincronizzazione...\",\"Downloading resources...\":\"Scaricamento risorse…\",\"Cancelling... Please wait.\":\"Annullamento... Attendere per favore.\",\"Invalid command: \\\"%s\\\"\":\"Comando non valido: \\\"%s\\\"\",\" can either be \\\"toggle\\\" or \\\"clear\\\". Use \\\"toggle\\\" to toggle the given to-do between completed and uncompleted state (If the target is a regular note it will be converted to a to-do). Use \\\"clear\\\" to convert the to-do back to a regular note.\":\" può essere \\\"toggle\\\" or \\\"clear\\\". Usa \\\"toggle\\\" per modifica lo stato di \\\"Cose-da-fare\\\" in completato/non completato (se l'oggetto è una normale nota, questa verrà convertita in un \\\"Cose-da-fare\\\"). Usa \\\"clear\\\" convertire i \\\"Cose-da-fare\\\" in normali note.\",\"Marks a to-do as non-completed.\":\"Marca un \\\"Cose-da-fare\\\" come non completata.\",\"Switches to [notebook] - all further operations will happen within this notebook.\":\"Passa tra [notebook] - tutte le ulteriori operazioni interesseranno il seguente Taccuino.\",\"Displays version information\":\"Mostra le informazioni sulla versione\",\"%s %s (%s)\":\"%s %s (%s)\",\"Enum\":\"Enumerare\",\"Type: %s.\":\"Tipo: %s.\",\"Possible values: %s.\":\"Valori possibili: %s.\",\"Default: %s\":\"Predefinito: %s\",\"Possible keys/values:\":\"Chiave/valore possibili:\",\"Type `joplin help` for usage information.\":\"Scrivi `joplin help` per informazioni sull'uso.\",\"Fatal error:\":\"Errore fatale:\",\"Search:\":\"Cerca:\",\"Welcome to Joplin!\\n\\nType `:help shortcuts` for the list of keyboard shortcuts, or just `:help` for usage information.\\n\\nFor example, to create a notebook press `mb`; to create a note press `mn`.\":\"Benvenuto in Joplin!\\n\\nDigita `:help shortcuts` per la lista delle scorciatoie da tastiera, oppure solo `:help` per le informazioni di utilizzo.\\n\\nPer esempio, per creare un taccuino digita `mb`; per creare una nota digita `mn`.\",\"One or more items are currently encrypted and you may need to supply a master password. To do so please type `e2ee decrypt`. If you have already supplied the password, the encrypted items are being decrypted in the background and will be available soon.\":\"Uno o più elementi sono attualmente crittografati e potrebbe essere necessario fornire una password principale. Per fare ciò, digitare `e2ee decrypt`. Se hai già fornito la password, gli elementi crittografati vengono decifrati in background e saranno presto disponibile.\",\"&File\":\"&File\",\"About Joplin\":\"Informazione su Joplin\",\"Preferences...\":\"Preferenze...\",\"Check for updates...\":\"Controlla aggiornamenti...\",\"Templates\":\"Modelli\",\"Import\":\"Importa\",\"Export\":\"Esporta\",\"Synchronise\":\"Sincronizza\",\"Hide %s\":\"Nascondi %s\",\"Quit\":\"Esci\",\"Close Window\":\"Chiudi finestra\",\"&Edit\":\"&Modifica\",\"Copy\":\"Copia\",\"Cut\":\"Taglia\",\"Paste\":\"Incolla\",\"Select all\":\"Seleziona tutto\",\"Bold\":\"Grasseto\",\"Italic\":\"Corsivo\",\"Link\":\"Link\",\"Code\":\"Codice\",\"Insert Date Time\":\"Inserisci data e ora\",\"Edit in external editor\":\"Modifica in un editor esterno\",\"Tags\":\"Tag\",\"Search in all the notes\":\"Cerca in tutte le note\",\"Search in current note\":\"Cerca nella nota corrente\",\"&View\":\"&Vista\",\"Toggle sidebar\":\"Attiva / disattiva barra laterale\",\"Toggle editor layout\":\"Attiva / disattiva il layout dell'editor\",\"Focus\":\"Focus\",\"&Tools\":\"&Strumenti\",\"&Help\":\"&Aiuto\",\"Website and documentation\":\"Sito web e documentazione\",\"Joplin Forum\":\"Joplin Forum\",\"Make a donation\":\"Fai una donazione\",\"Toggle development tools\":\"Attiva / disattiva strumenti di sviluppo\",\"Open %s\":\"Aprire %s\",\"Exit\":\"Esci\",\"OK\":\"OK\",\"Cancel\":\"Annulla\",\"Current version is up-to-date.\":\"La versione attuale è aggiornata.\",\"%s (pre-release)\":\"%s (pre-rilascio)\",\"An update is available, do you want to download it now?\":\"È disponibile un aggiornamento, vuoi scaricarlo ora?\",\"Your version: %s\":\"La tua versione: %s\",\"New version: %s\":\"Nuova versione: %s\",\"Yes\":\"Sì\",\"No\":\"No\",\"Full Release Notes\":\"Note di rilascio complete\",\"Token has been copied to the clipboard!\":\"Il token è stato copiato negli appunti!\",\"The web clipper service is enabled and set to auto-start.\":\"Il servizio Web clipper è abilitato e impostato per l'avvio automatico.\",\"Status: Started on port %d\":\"Stato: avviato sulla porta %d\",\"Status: %s\":\"Stato: %s\",\"Disable Web Clipper Service\":\"Disattiva servizio Web Clipper\",\"The web clipper service is not enabled.\":\"Il servizio web clipper non è abilitato.\",\"Enable Web Clipper Service\":\"Abilita servizio Web Clipper\",\"Joplin Web Clipper allows saving web pages and screenshots from your browser to Joplin.\":\"Joplin Web Clipper consente di salvare pagine Web e schermate dal tuo browser in a Joplin.\",\"In order to use the web clipper, you need to do the following:\":\"Per utilizzare il web clipper, devi fare quanto segue:\",\"Step 1: Enable the clipper service\":\"Passaggio 1: abilitare il servizio clipper\",\"This service allows the browser extension to communicate with Joplin. When enabling it your firewall may ask you to give permission to Joplin to listen to a particular port.\":\"Questo servizio consente all'estensione del browser di comunicare con Joplin. Quando lo abiliti, il tuo firewall potrebbe chiederti di dare il permesso a Joplin di ascoltare una particolare porta.\",\"Step 2: Install the extension\":\"Passaggio 2: installare l'estensione\",\"Download and install the relevant extension for your browser:\":\"Scarica e installa l'estensione adatta per il tuo browser:\",\"Advanced options\":\"Opzioni avanzate\",\"Authorisation token:\":\"Token autorizzativo:\",\"Copy token\":\"Copia token\",\"This authorisation token is only needed to allow third-party applications to access Joplin.\":\"Il token autorizzativo è necessario solo per permettere ad applicazioni di terze parti di accedere a Joplin.\",\"This will open a new screen. Save your current changes?\":\"Questo aprirà una nuova schermata. Salvare le tue modifiche correnti?\",\"Notes and settings are stored in: %s\":\"Le note e le impostazioni sono memorizzate in: %s\",\"Check synchronisation configuration\":\"Controlla la configurazione della sincronizzazione\",\"Browse...\":\"Naviga...\",\"Edit\":\"Modifica\",\"Back\":\"Indietro\",\"Apply\":\"Applica\",\"Submit\":\"Invio\",\"Save\":\"Salva\",\"Disabling encryption means *all* your notes and attachments are going to be re-synchronised and sent unencrypted to the sync target. Do you wish to continue?\":\"Disabilitare la crittografia significa *tutti* i tuoi appunti e gli allegati saranno risincronizzati e inviati in chiaro alla destinazione di sincronizzazione. Vuoi continuare?\",\"Enabling encryption means *all* your notes and attachments are going to be re-synchronised and sent encrypted to the sync target. Do not lose the password as, for security purposes, this will be the *only* way to decrypt the data! To enable encryption, please enter your password below.\":\"Abilitare la crittografia significa *tutte* le tue note e gli allegati verranno risincronizzati e inviati crittografati alla destinazione di sincronizzazione. Non perdere la password poiché, per motivi di sicurezza, questo sarà il *solo* modo per decifrare i dati! Per abilitare la crittografia, inserisci la tua password qui sotto.\",\"Disable encryption\":\"Disattiva Crittografia\",\"Enable encryption\":\"Attiva Crittografia\",\"Master Keys\":\"Chiave Master\",\"Active\":\"Attivo\",\"ID\":\"ID\",\"Source\":\"Sorgente\",\"Created\":\"Creato\",\"Updated\":\"Aggiornato\",\"Password\":\"Password\",\"Password OK\":\"Password OK\",\"Note: Only one master key is going to be used for encryption (the one marked as \\\"active\\\"). Any of the keys might be used for decryption, depending on how the notes or notebooks were originally encrypted.\":\"Nota: verrà utilizzata una sola chiave master per la crittografia (quella contrassegnata come \\\"attiva\\\"). È possibile utilizzare qualsiasi chiave per la decrittografia, a seconda di come le note e i taccuini erano originariamente crittografati.\",\"Missing Master Keys\":\"Chiave master mancante\",\"The master keys with these IDs are used to encrypt some of your items, however the application does not currently have access to them. It is likely they will eventually be downloaded via synchronisation.\":\"Le chiavi principali con questi ID vengono utilizzate per crittografare alcuni dei tuoi articoli, tuttavia l'applicazione al momento non ha accesso ad essi. È probabile che verranno scaricati tramite la sincronizzazione.\",\"For more information about End-To-End Encryption (E2EE) and advice on how to enable it please check the documentation:\":\"Per ulteriori informazioni sulla crittografia end-to-end (E2EE) e consigli su come abilitarlo, consultare la documentazione:\",\"Status\":\"Stato\",\"Encryption is:\":\"La crittografia è:\",\"Usage\":\"Uso\",\"New notebook \\\"%s\\\" will be created and file \\\"%s\\\" will be imported into it\":\"Il nuovo Taccuino \\\"%s\\\" verrà creato e \\\"%s\\\" verrà importato\",\"Please create a notebook first.\":\"Per favore prima crea un Taccuino.\",\"Please create a notebook first\":\"Per favore prima crea un Taccuino\",\"Notebook title:\":\"Titolo del Taccuino:\",\"Add or remove tags:\":\"Aggiungi o rimuovi etichetta:\",\"Rename notebook:\":\"Rinomina il Taccuino:\",\"Rename tag:\":\"Rinomina Tag:\",\"Set alarm:\":\"Imposta allarme:\",\"Template file:\":\"File del modello:\",\"New note\":\"Nuova nota\",\"New to-do\":\"Nuovo \\\"Cose-da-fare\\\"\",\"New notebook\":\"Nuovo taccuino\",\"Layout\":\"Disposizione\",\"Search...\":\"Cerca...\",\"Some items cannot be synchronised.\":\"Alcuni elementi non possono essere sincronizzati.\",\"View them now\":\"Mostrali ora\",\"One or more master keys need a password.\":\"Una o più chiavi master necessitano di una password.\",\"Set the password\":\"Imposta la password\",\"No notes in here. Create one by clicking on \\\"New note\\\".\":\"Non è presente nessuna nota. Creane una cliccando \\\"Nuova nota\\\".\",\"There is currently no notebook. Create one by clicking on \\\"New notebook\\\".\":\"Al momento non ci sono Taccuini. Creane uno facendo clic su \\\"Nuovo Taccuino\\\".\",\"Location\":\"Posizione\",\"URL\":\"URL\",\"Note History\":\"Cronologia nota\",\"Previous versions of this note\":\"Versione precedente di questa nota\",\"Note properties\":\"Proprietà della nota\",\"The note \\\"%s\\\" has been successfully restored to the notebook \\\"%s\\\".\":\"La nota \\\"%s\\\" è stata ripristinata con successo nel taccuino \\\"%s\\\".\",\"This note has no history\":\"Questa nota non ha cronologia\",\"Unsupported link or message: %s\":\"Link o Messaggio non supportato: %s\",\"Restore\":\"Ripristina\",\"Click \\\"%s\\\" to restore the note. It will be copied in the notebook named \\\"%s\\\". The current version of the note will not be replaced or modified.\":\"Clicca \\\"%s\\\" per ripristinare la nota. Verrà copiata nel taccuino denominato \\\"%s\\\". La versione corrente della nota non verrà sostituita o modificata.\",\"Open...\":\"Apri...\",\"This file could not be opened: %s\":\"Questo file non può essere aperto: %s\",\"Save as...\":\"Salva come...\",\"Copy path to clipboard\":\"Copia il percorso negli appunti\",\"Copy Link Address\":\"Copia l'indirizzo del link\",\"This note has no content. Click on \\\"%s\\\" to toggle the editor and edit the note.\":\"Questa nota non ha contenuto. Fai clic su \\\"%s\\\" per attivare l'editor e modificare la nota.\",\"strong text\":\"testo grasseto\",\"emphasized text\":\"testo Sottolineato\",\"List item\":\"Lista Elemento\",\"Insert Hyperlink\":\"Inserire collegamento ipertestuale\",\"Attach file\":\"Allega File\",\"Set alarm\":\"Imposta Allarme\",\"In: %s\":\"In: %s\",\"Hyperlink\":\"Collegamento ipertestuale\",\"Numbered List\":\"Elenco Numerato\",\"Bulleted List\":\"Elenco Puntato\",\"Checkbox\":\"Casella di controllo\",\"Heading\":\"Intestazione\",\"Horizontal Rule\":\"Riga orizzontale\",\"Click to stop external editing\":\"Fare clic per interrompere le modifiche esterne\",\"Watching...\":\"Osservare...\",\"to-do\":\"\\\"Cose-da-fare\\\"\",\"note\":\"nota\",\"Creating new %s...\":\"Creare nuovo %s...\",\"Clear\":\"Pulisci\",\"OneDrive Login\":\"Login OneDrive\",\"Dropbox Login\":\"Login Dropbox\",\"Options\":\"Opzioni\",\"Synchronisation Status\":\"Stato della Sincronizzazione\",\"Remove\":\"Rimuovi\",\"Delete notebook \\\"%s\\\"?\\n\\nAll notes and sub-notebooks within this notebook will also be deleted.\":\"Eliminare taccuino \\\"%s\\\"?\\n\\nAnche tutte le note e cartelle di questo taccuino saranno eliminati.\",\"Delete\":\"Elimina\",\"Remove tag \\\"%s\\\" from all notes?\":\"Rimuovere l’etichetta \\\"%s\\\" da tutte le note?\",\"Remove this search from the sidebar?\":\"Rimuovere questa ricerca dalla barra laterale?\",\"Rename\":\"Rinomina\",\"Notebooks\":\"Taccuini\",\"Decrypting items: %d/%d\":\"Decrittografia Elementi: %d/%d\",\"Fetching resources: %d/%d\":\"Recupero risorse: %d/%d\",\"Please select where the sync status should be exported to\":\"Prego selezionare dove lo stato della sincronizzazione deve essere esportato\",\"Retry\":\"Riprova\",\"Add or remove tags\":\"Aggiungi o rimuovi etichette\",\"Duplicate\":\"Duplicare\",\"%s - Copy\":\"%s - Copia\",\"Switch between note and to-do type\":\"Converti nota in \\\"Cose-da-fare\\\" e viceversa\",\"Switch to note type\":\"Converti in nota\",\"Switch to to-do type\":\"Converti in \\\"Cose-da-fare\\\"\",\"Copy Markdown link\":\"Copia il link Markdown\",\"PDF File\":\"PDF File\",\"Delete note \\\"%s\\\"?\":\"Eliminare la nota \\\"%s\\\"?\",\"Delete these %d notes?\":\"Eliminare queste %d note?\",\"Error opening note in editor: %s\":\"Errore durante l'apertura della nota nell'editor: %s\",\"Type a note title to jump to it. Or type # followed by a tag name, or @ followed by a notebook name.\":\"Scrivi il titolo di una nota per saltare ad essa. Oppure digita # seguito dal nome di una etichetta, oppure @ seguito dal nome di un taccuino.\",\"Goto Anything...\":\"Vai a...\",\"Usage: %s\":\"Uso: %s\",\"Unknown flag: %s\":\"Etichetta sconosciuta: %s\",\"Dropbox\":\"Dropbox\",\"File system\":\"File system\",\"Nextcloud\":\"Nextcloud\",\"OneDrive\":\"OneDrive\",\"OneDrive Dev (For testing only)\":\"OneDrive Dev (solo per test)\",\"WebDAV\":\"WebDAV\",\"Unknown log level: %s\":\"Livello di log sconosciuto: %s\",\"Unknown level ID: %s\":\"Livello ID sconosciuto: %s\",\"The application has been authorised - you may now close this browser tab.\":\"L'applicazione è stata autorizzata - puoi chiudere questo tab del tuo browser.\",\"The application has been successfully authorised.\":\"L'applicazione è stata autorizzata con successo.\",\"Please open the following URL in your browser to authenticate the application. The application will create a directory in \\\"Apps/Joplin\\\" and will only read and write files in this directory. It will have no access to any files outside this directory nor to any other personal data. No data will be shared with any third party.\":\"Per favore apri il seguente URL nel tuo browser per autenticare l'applicazione. L'applicazione creerà una cartella in \\\"Apps/Joplin\\\" e leggerà/scriverà file solo in questa cartella. Non avrà accesso a nessun file all'esterno di questa cartella o ad alcun dato personale. Nessun dato verrà condiviso con terze parti.\",\"Cannot refresh token: authentication data is missing. Starting the synchronisation again may fix the problem.\":\"Non è possibile aggiornare il token. mancano i dati di autenticazione. Ricominciare la sincronizzazione da capo potrebbe risolvere il problema.\",\"Untitled\":\"Senza titolo\",\"Could not synchronize with OneDrive.\\n\\nThis error often happens when using OneDrive for Business, which unfortunately cannot be supported.\\n\\nPlease consider using a regular OneDrive account.\":\"Impossibile sincronizzare con OneDrive.\\n\\nQuesto errore spesso accade quando si utilizza OneDrive for Business, che purtroppo non può essere supportato.\\n\\nSi prega di considerare l'idea di utilizzare un account OneDrive normale.\",\"Cannot access %s\":\"Non è possibile accedere a %s\",\"Created local items: %d.\":\"Elementi locali creati: %d.\",\"Updated local items: %d.\":\"Elementi locali aggiornati: %d.\",\"Created remote items: %d.\":\"Elementi remoti creati: %d.\",\"Updated remote items: %d.\":\"Elementi remoti aggiornati: %d.\",\"Deleted local items: %d.\":\"Elementi locali eliminati: %d.\",\"Deleted remote items: %d.\":\"Elementi remoti eliminati: %d.\",\"Fetched items: %d/%d.\":\"Elementi recuperati: %d/%d.\",\"Cancelling...\":\"Annullamento...\",\"Completed: %s\":\"Completata: %s\",\"Last error: %s\":\"Ultimo Errore: %s\",\"Idle\":\"Inattivo\",\"In progress\":\"In corso\",\"Encrypted\":\"Crittografato\",\"Encrypted items cannot be modified\":\"Gli elementi crittografati non possono essere modificati\",\"title\":\"titolo\",\"updated date\":\"data di aggiornamento\",\"Conflicts\":\"Conflitti\",\"Cannot move notebook to this location\":\"Impossibile spostare il Taccuino in questa posizione\",\"Notebooks cannot be named \\\"%s\\\", which is a reserved title.\":\"I blocchi non possono essere chiamati \\\"%s\\\". È un titolo riservato.\",\"created date\":\"data di creazione\",\"This note does not have geolocation information.\":\"Questa nota non ha informazione sulla geolocalizzazione.\",\"Cannot copy note to \\\"%s\\\" notebook\":\"Non posso copiare la nota nel Taccuino \\\"%s\\\"\",\"Cannot move note to \\\"%s\\\" notebook\":\"Non posso spostare la nota nel Taccuino \\\"%s\\\"\",\"Attention: If you change this location, make sure you copy all your content to it before syncing, otherwise all files will be removed! See the FAQ for more details: %s\":\"Attenzione: se si cambia questa posizione, accertarsi di copiare tutto il contenuto prima di sincronizzare, altrimenti tutti i file saranno rimossi! Vedi le FAQ per maggiori dettagli: %s\",\"Synchronisation target\":\"Destinazione di sincronizzazione\",\"The target to synchonise to. Each sync target may have additional parameters which are named as `sync.NUM.NAME` (all documented below).\":\"Ogni target di sincronizzazione può avere parametri aggiuntivi denominati come `sync.NUM.NAME` (tutti documentati di seguito).\",\"Directory to synchronise with (absolute path)\":\"Cartella da sincronizzare con (percorso assoluto)\",\"Nextcloud WebDAV URL\":\"URL Nextcloud WebDAV\",\"Nextcloud username\":\"Nome Utente Nextcloud\",\"Nextcloud password\":\"Password Nextcloud\",\"WebDAV URL\":\"URL WebDAV\",\"WebDAV username\":\"Nome Utente WebDAV\",\"WebDAV password\":\"Password WebDAV\",\"Attachment download behaviour\":\"Comportamento scaricamento allegati\",\"In \\\"Manual\\\" mode, attachments are downloaded only when you click on them. In \\\"Auto\\\", they are downloaded when you open the note. In \\\"Always\\\", all the attachments are downloaded whether you open the note or not.\":\"In modalità \\\"Manuale\\\", gli allegati sono scaricati solo quando si clicca su di essi. In \\\"Auto\\\" sono scaricati quando si apre la nota. In \\\"Sempre\\\" tutti gli allegati sono scaricati sia che si apra o no la nota.\",\"Always\":\"Sempre\",\"Manual\":\"Manuale\",\"Auto\":\"Auto\",\"Max concurrent connections\":\"Massimo numero di connessioni concorrenti\",\"Language\":\"Linguaggio\",\"Date format\":\"Formato della data\",\"Time format\":\"Formato dell'orario\",\"Theme\":\"Tema\",\"Light\":\"Chiaro\",\"Dark\":\"Scuro\",\"Uncompleted to-dos on top\":\"\\\"Cose-da-fare\\\" incomplete in cima alla lista\",\"Show completed to-dos\":\"Mostra le \\\"Cose-da-fare\\\" completate\",\"Sort notes by\":\"Ordina le note per\",\"Reverse sort order\":\"Inverti l'ordine\",\"Sort notebooks by\":\"Ordina i taccuini per\",\"Save geo-location with notes\":\"Salva geolocalizzazione con le note\",\"When creating a new to-do:\":\"Quando crei un nuovo \\\"Cose-da-fare\\\":\",\"Focus title\":\"Focus sul titolo\",\"Focus body\":\"Focus sul testo\",\"When creating a new note:\":\"Quando si crea una nuova nota:\",\"Enable typographer support\":\"Attiva supporto tipografico\",\"Enable math expressions\":\"Attiva espressioni matematiche\",\"Enable ==mark== syntax\":\"Attiva sintassi ==mark==\",\"Enable footnotes\":\"Attiva note a piè pagina\",\"Enable table of contents extension\":\"Abilita l’estensione indice\",\"Enable ~sub~ syntax\":\"Attiva sintassi ~sub~\",\"Enable ^sup^ syntax\":\"Attiva sintassi ^sup^\",\"Enable abbreviation syntax\":\"Abilita abbreviazioni\",\"Enable markdown emoji\":\"Abilita emoji markdown\",\"Enable ++insert++ syntax\":\"Attiva sintassi ++insert++\",\"Enable multimarkdown table extension\":\"Abilita estensione tavola dei contenuti\",\"Enable Fountain syntax support\":\"Attiva supporto sintassi Fountain\",\"Show tray icon\":\"Visualizza nella barra delle applicazioni\",\"Note: Does not work in all desktop environments.\":\"Nota: non funziona in tutti gli ambienti desktop.\",\"This will allow Joplin to run in the background. It is recommended to enable this setting so that your notes are constantly being synchronised, thus reducing the number of conflicts.\":\"Questo consentirà a Joplin di essere in esecuzione in background. E’ raccomandata l’attivazione di questa impostazione per sincronizzare costantemente le tue note e quindi ridurre il numero di conflitti.\",\"Start application minimised in the tray icon\":\"Avvia applicazione minimizzata nella barra delle applicazioni\",\"Global zoom percentage\":\"Percentuale di zoom globale\",\"Editor font size\":\"Editor dimensione caratteri\",\"Editor font\":\"Editor caratteri\",\"Editor font family\":\"Editor famiglia caratteri\",\"This must be *monospace* font or it will not work properly. If the font is incorrect or empty, it will default to a generic monospace font.\":\"Questo carattere deve essere * monospace * o non funzionerà correttamente. Se il carattere è errato o vuoto, verrà impostato automaticamente su un carattere generico monospace.\",\"Automatically update the application\":\"Aggiorna automaticamente l'applicazione\",\"Get pre-releases when checking for updates\":\"Ottieni pre-rilasci durante controllo aggiornamenti\",\"See the pre-release page for more details: %s\":\"Vedi la pagina di pre-rilascio per maggiori dettagli: %s\",\"Synchronisation interval\":\"Intervallo di sincronizzazione\",\"%d minutes\":\"%d minuti\",\"%d hour\":\"%d ora\",\"%d hours\":\"%d ore\",\"Text editor command\":\"Comando editor di testo\",\"The editor command (may include arguments) that will be used to open a note. If none is provided it will try to auto-detect the default editor.\":\"Il comando editor (può includere argomenti) che verrà utilizzato per aprire una nota. Se non ne viene fornita alcuna, cercherà di rilevare automaticamente l'editor predefinito.\",\"Page size for PDF export\":\"Dimensione pagina per l’esportazione in PDF\",\"Page orientation for PDF export\":\"Orientamento pagina per l’esportazione in PDF\",\"Portrait\":\"Verticale\",\"Landscape\":\"Orizzontale\",\"Custom TLS certificates\":\"Certificati TLS personalizzati\",\"Comma-separated list of paths to directories to load the certificates from, or path to individual cert files. For example: /my/cert_dir, /other/custom.pem. Note that if you make changes to the TLS settings, you must save your changes before clicking on \\\"Check synchronisation configuration\\\".\":\"Elenco separato da virgole di percorsi alle cartelle per caricare i certificati o percorso dei singoli file cert. Ad esempio: /my/cert_dir, /other/custom.pem. Notare che se si apportano modifiche alle impostazioni TLS, è necessario salvare le modifiche prima di fare clic su \\\"Verifica configurazione sincronizzazione\\\".\",\"Ignore TLS certificate errors\":\"Ignora gli errori del certificato TLS\",\"Specify the port that should be used by the API server. If not set, a default will be used.\":\"Specifica la porta che deve essere usata dal server API. Se non viene settato, viene usato un valore di default.\",\"Enable note history\":\"Attiva cronologia della nota\",\"days\":\"giorni\",\"%d days\":\"%d giorni\",\"Keep note history for\":\"Mantieni la cronologia note per\",\"Invalid option value: \\\"%s\\\". Possible values are: %s.\":\"Opzione non valida: \\\"%s\\\". I valori possibili sono: %s.\",\"General\":\"Generale\",\"Synchronisation\":\"Sincronizzazione\",\"Appearance\":\"Apparenza\",\"Note\":\"Nota\",\"Plugins\":\"Plugins\",\"Application\":\"Applicazione\",\"Encryption\":\"Crittografia\",\"Web Clipper\":\"Web Clipper\",\"The tag \\\"%s\\\" already exists. Please choose a different name.\":\"Il tag \\\"%s\\\" esiste già. Scegliere un nome differente.\",\"Joplin Export File\":\"Esporta file di Joplin\",\"Markdown\":\"Markdown\",\"Joplin Export Directory\":\"Cartella di esportazione di Joplin\",\"Evernote Export File (as Markdown)\":\"Esporta files di Evernote (come Markdown)\",\"Evernote Export File (as HTML)\":\"Esporta files di Evernote (come HTML)\",\"Json Export Directory\":\"Cartella di esportazione JSON\",\"File\":\"File\",\"Directory\":\"Cartella\",\"Cannot load \\\"%s\\\" module for format \\\"%s\\\"\":\"Impossibile caricare il modulo \\\"%s\\\" per il formato \\\"%s\\\"\",\"Please specify import format for %s\":\"Si prega di specificare il formato di importazione per %s\",\"This item is currently encrypted: %s \\\"%s\\\". Please wait for all items to be decrypted and try again.\":\"Questo elemento è attualmente crittografato: %s \\\"%s\\\". Attendi che tutti gli elementi siano decodificati e riprova.\",\"There is no data to export.\":\"Non ci sono dati da esportare.\",\"Please specify the notebook where the notes should be imported to.\":\"Si prega di specificare il Taccuino in cui importare le note.\",\"Restored Notes\":\"Ripristina note\",\"Items that cannot be synchronised\":\"Elementi che non possono essere sincronizzati\",\"These items will remain on the device but will not be uploaded to the sync target. In order to find these items, either search for the title or the ID (which is displayed in brackets above).\":\"Questi elementi rimarranno sul dispositivo ma non verranno caricati nella destinazione di sincronizzazione. Per trovare questi elementi, cercare il titolo o l'ID (che viene visualizzato tra parentesi qui sopra).\",\"%s (%s) could not be uploaded: %s\":\"%s (%s) non può essere caricato: %s\",\"Item \\\"%s\\\" could not be downloaded: %s\":\"Elemento \\\"%s\\\" non può essere scaricato: %s\",\"Items that cannot be decrypted\":\"Elementi che non possono essere decriptati\",\"Joplin failed to decrypt these items multiple times, possibly because they are corrupted or too large. These items will remain on the device but Joplin will no longer attempt to decrypt them.\":\"Joplin ha fallito la decriptazione di questi elementi più volte, forse perché sono corrotti o troppo grandi. Questi elementi rimarranno sul dispositivo, ma Joplin non proverà più a decriptarli.\",\"%s (%s): %s\":\"%s (%s): %s\",\"Sync status (synced items / total items)\":\"Stato di sincronizzazione (Elementi sincronizzati / Elementi totali)\",\"%s: %d/%d\":\"%s: %d/%d\",\"Total: %d/%d\":\"Totale: %d %d\",\"Conflicted: %d\":\"In conflitto: %d\",\"To delete: %d\":\"Da eliminare: %d\",\"Folders\":\"Cartelle\",\"%s: %d notes\":\"%s: %d note\",\"Coming alarms\":\"Avviso imminente\",\"On %s: %s\":\"Su %s: %s\",\"Permission to use camera\":\"Permesso per usare la fotocamera\",\"Your permission to use your camera is required.\":\"E’ richiesto il permesso di usare la fotocamera.\",\"You currently have no notebooks.\":\"Al momento non hai taccuini.\",\"Create a notebook\":\"Crea un Taccuino\",\"There are currently no notes. Create one by clicking on the (+) button.\":\"Al momento non ci sono note. Creane una cliccando sul bottone (+).\",\"Delete these notes?\":\"Eliminare queste note?\",\"Move to notebook...\":\"Sposta sul Taccuino...\",\"Move %d notes to notebook \\\"%s\\\"?\":\"Spostare le note %d sul Taccuino \\\"%s\\\"?\",\"Press to set the decryption password.\":\"Premere per impostare la password di decrittografia.\",\"Clear alarm\":\"Rimuovi Allarme\",\"Save alarm\":\"Salva Allarme\",\"Select date\":\"Seleziona la data\",\"Confirm\":\"Conferma\",\"Notebook: %s\":\"Taccuini: %s\",\"Encrypted notebooks cannot be renamed\":\"I Taccuini crittografati non possono essere rinominati\",\"New Notebook\":\"Nuovo Taccuino\",\"Configuration\":\"Configurazione\",\"All notes\":\"Tutte le note\",\"Checking... Please wait.\":\"Controllo... Attendere per favore.\",\"Success! Synchronisation configuration appears to be correct.\":\"Successo! La configurazione della sincronizzazione sembra essere corretta.\",\"Error. Please check that URL, username, password, etc. are correct and that the sync target is accessible. The reported error was:\":\"Errore. Prego controllare che URL, nome utente, password, etc. siano corretti e che la destinazione di sincronizzazione sia accessibile. L’errore riportato era:\",\"The application has been authorised!\":\"L'applicazione è stata autorizzata con successo!\",\"Could not authorise application:\\n\\n%s\\n\\nPlease try again.\":\"Non è stato possibile autorizzare l’applicazione:\\n\\n%s\\n\\nRiprovare prego.\",\"Decrypted items: %s / %s\":\"Elementi decriptati: %s / %s\",\"New tags:\":\"Nuovi tag:\",\"Type new tags or select from list\":\"Digita nuovi tag o seleziona dalla lista\",\"Warning\":\"Attenzione\",\"In order to use file system synchronisation your permission to write to external storage is required.\":\"Per usare la sincronizzazione del file system è necessario il tuo permesso di scrittura sulla memoria esterna.\",\"Information\":\"Informazioni\",\"Encryption Config\":\"Configurazione Crittografia\",\"Tools\":\"Strumenti\",\"Sync Status\":\"Stato sincronizzazione\",\"Log\":\"Log\",\"Creating report...\":\"Creazione report...\",\"Export Debug Report\":\"Esporta il Report di Debug\",\"Fixing search index...\":\"Correzione indice di ricerca...\",\"Fix search index\":\"Correggi indice di ricerca\",\"Use this to rebuild the search index if there is a problem with search. It may take a long time depending on the number of notes.\":\"Usa questo per ricostruire l’indice di ricerca se c’è un problema con la ricerca. Potrebbe richiedere molto tempo, dipende dal numero di note.\",\"More information\":\"Maggiori informazioni\",\"To work correctly, the app needs the following permissions. Please enable them in your phone settings, in Apps > Joplin > Permissions\":\"Per funzionare correttamente, l'app necessita delle seguenti autorizzazioni. Si prega di abilitarli nelle impostazioni del telefono, in App > Joplin > Autorizzazioni\",\"- Storage: to allow attaching files to notes and to enable filesystem synchronisation.\":\"- Archiviazione: per consentire il collegamento di file alle note e per abilitare la sincronizzazione del filesystem.\",\"- Camera: to allow taking a picture and attaching it to a note.\":\"- Fotocamera: per consentire di scattare una foto e allegarla a una nota.\",\"- Location: to allow attaching geo-location information to a note.\":\"- Posizione: per consentire il collegamento di informazioni sulla posizione geografica ad una nota.\",\"Joplin website\":\"Sito web Joplin\",\"Database v%s\":\"Database v%s\",\"FTS enabled: %d\":\"FTS attivato: %d\",\"Login with Dropbox\":\"Login Dropbox\",\"Enter code here\":\"Inserisci qui il codice\",\"Master Key %s\":\"Chiave Master %s\",\"Created: %s\":\"Creato: %s\",\"Password:\":\"Password:\",\"Password cannot be empty\":\"La password non può essere vuota\",\"Confirm password cannot be empty\":\"La password di conferma non può essere vuota\",\"Enable\":\"Abilitato\",\"The notebook could not be saved: %s\":\"Il Taccuino non può essere salvato: %s\",\"Edit notebook\":\"Modifica Taccuino\",\"Enter notebook title\":\"Inserisci titolo del Taccuino\",\"Refresh\":\"Aggiorna\",\"Show all\":\"Mostra tutto\",\"Errors only\":\"Solo gli errori\",\"This note has been modified:\":\"Questa note è stata modificata:\",\"Save changes\":\"Salva i cambiamenti\",\"Discard changes\":\"Ignora modifiche\",\"No item with ID %s\":\"Nessun elemento con ID %s\",\"This attachment is not downloaded or not decrypted yet.\":\"Questo allegato non è ancora stato scaricato o decriptato.\",\"The Joplin mobile app does not currently support this type of link: %s\":\"L'app mobile Joplin attualmente non supporta questo tipo di collegamento: %s\",\"Links with protocol \\\"%s\\\" are not supported\":\"Collegamenti con protocollo \\\"%s\\\" non sono supportati\",\"Unsupported image type: %s\":\"Tipo di immagine non supportata: %s\",\"Updated: %s\":\"Aggiornato: %s\",\"View on map\":\"Guarda sulla mappa\",\"Go to source URL\":\"Vai all'URL\",\"Attach...\":\"Allega...\",\"Choose an option\":\"Scegli un’opzione\",\"Take photo\":\"Scatta foto\",\"Attach photo\":\"Allega foto\",\"Attach any file\":\"Allega qualsiasi file\",\"Share\":\"Condividi\",\"Convert to note\":\"Converti in nota\",\"Convert to todo\":\"Converti in Todo\",\"Properties\":\"Proprietà\",\"Add body\":\"Aggiungi corpo\",\"Add title\":\"Aggiungi titolo\",\"Login with OneDrive\":\"Accedi a OneDrive\",\"Search\":\"Cerca\"}"},"file_path":{"kind":"string","value":"ReactNativeClient/locales/it_IT.json"},"label":{"kind":"number","value":0,"string":"0"},"commit_url":{"kind":"string","value":"https://github.com/laurent22/joplin/commit/f78729ad1f02ad9b9a2b34ae250499236cfa0a6a"},"dependency_score":{"kind":"list like","value":[0.0001655065716477111,0.0001655065716477111,0.0001655065716477111,0.0001655065716477111,0],"string":"[\n 0.0001655065716477111,\n 0.0001655065716477111,\n 0.0001655065716477111,\n 0.0001655065716477111,\n 0\n]"}}},{"rowIdx":261162,"cells":{"hunk":{"kind":"string","value":"{\n \"id\": 1,\n \"code_window\": [\n \"\\n\",\n \"\\tshim.mobilePlatform = () => {\\n\",\n \"\\t\\treturn Platform.OS;\\n\",\n \"\\t};\\n\",\n \"\\n\",\n \"\\t// NOTE: This is a limited version of createResourceFromPath - unlike the Node version, it\\n\",\n \"\\t// only really works with images. It does not resize the image either.\\n\",\n \"\\tshim.createResourceFromPath = async function(filePath, defaultProps = null) {\\n\",\n \"\\t\\tdefaultProps = defaultProps ? defaultProps : {};\\n\"\n ],\n \"labels\": [\n \"keep\",\n \"keep\",\n \"keep\",\n \"keep\",\n \"add\",\n \"keep\",\n \"keep\",\n \"keep\",\n \"keep\"\n ],\n \"after_edit\": [\n \"\\tshim.appVersion = () => {\\n\",\n \"\\t\\tconst p = require('react-native-version-info').default;\\n\",\n \"\\t\\treturn p.appVersion;\\n\",\n \"\\t};\\n\",\n \"\\n\"\n ],\n \"file_path\": \"ReactNativeClient/lib/shim-init-react.js\",\n \"type\": \"add\",\n \"edit_start_line_idx\": 146\n}"},"file":{"kind":"string","value":"/* eslint @typescript-eslint/no-unused-vars: 0, no-unused-vars: [\"error\", { \"argsIgnorePattern\": \".*\" }], */\n\nlet shim = {};\n\nshim.isNode = () => {\n\tif (typeof process === 'undefined') return false;\n\tif (shim.isElectron()) return true;\n\treturn process.title == 'node';\n};\n\nshim.isReactNative = () => {\n\tif (typeof navigator === 'object' && typeof navigator.userAgent === 'string' && navigator.userAgent.indexOf('ReactNativeDebugger') >= 0) {\n\t\treturn true;\n\t}\n\n\treturn !shim.isNode();\n};\n\nshim.isLinux = () => {\n\treturn process && process.platform === 'linux';\n};\n\nshim.isFreeBSD = () => {\n\treturn process && process.platform === 'freebsd';\n};\n\nshim.isWindows = () => {\n\treturn process && process.platform === 'win32';\n};\n\nshim.isMac = () => {\n\treturn process && process.platform === 'darwin';\n};\n\nshim.platformName = function() {\n\tif (shim.isReactNative()) return 'mobile';\n\tif (shim.isMac()) return 'darwin';\n\tif (shim.isWindows()) return 'win32';\n\tif (shim.isLinux()) return 'linux';\n\tif (shim.isFreeBSD()) return 'freebsd';\n\tif (process && process.platform) return process.platform;\n\tthrow new Error('Cannot determine platform');\n};\n\n// \"ios\" or \"android\", or \"\" if not on mobile\nshim.mobilePlatform = function() {\n\treturn ''; // Default if we're not on mobile (React Native)\n};\n\n// https://github.com/cheton/is-electron\nshim.isElectron = () => {\n\t// Renderer process\n\tif (typeof window !== 'undefined' && typeof window.process === 'object' && window.process.type === 'renderer') {\n\t\treturn true;\n\t}\n\n\t// Main process\n\tif (typeof process !== 'undefined' && typeof process.versions === 'object' && !!process.versions.electron) {\n\t\treturn true;\n\t}\n\n\t// Detect the user agent when the `nodeIntegration` option is set to true\n\tif (typeof navigator === 'object' && typeof navigator.userAgent === 'string' && navigator.userAgent.indexOf('Electron') >= 0) {\n\t\treturn true;\n\t}\n\n\treturn false;\n};\n\nshim.isPortable = function() {\n\treturn typeof process !== 'undefined' && typeof process.env === 'object' && !!process.env.PORTABLE_EXECUTABLE_DIR;\n};\n\n// Node requests can go wrong is so many different ways and with so\n// many different error messages... This handler inspects the error\n// and decides whether the request can safely be repeated or not.\nshim.fetchRequestCanBeRetried = function(error) {\n\tif (!error) return false;\n\n\t// Unfortunately the error 'Network request failed' doesn't have a type\n\t// or error code, so hopefully that message won't change and is not localized\n\tif (error.message == 'Network request failed') return true;\n\n\t// request to https://public-ch3302....1fab24cb1bd5f.md failed, reason: socket hang up\"\n\tif (error.code == 'ECONNRESET') return true;\n\n\t// OneDrive (or Node?) sometimes sends back a \"not found\" error for resources\n\t// that definitely exist and in this case repeating the request works.\n\t// Error is:\n\t// request to https://graph.microsoft.com/v1.0/drive/special/approot failed, reason: getaddrinfo ENOTFOUND graph.microsoft.com graph.microsoft.com:443\n\tif (error.code == 'ENOTFOUND') return true;\n\n\t// network timeout at: https://public-ch3302...859f9b0e3ab.md\n\tif (error.message && error.message.indexOf('network timeout') === 0) return true;\n\n\t// name: 'FetchError',\n\t// message: 'request to https://api.ipify.org/?format=json failed, reason: getaddrinfo EAI_AGAIN api.ipify.org:443',\n\t// type: 'system',\n\t// errno: 'EAI_AGAIN',\n\t// code: 'EAI_AGAIN' } } reason: { FetchError: request to https://api.ipify.org/?format=json failed, reason: getaddrinfo EAI_AGAIN api.ipify.org:443\n\t//\n\t// It's a Microsoft error: \"A temporary failure in name resolution occurred.\"\n\tif (error.code == 'EAI_AGAIN') return true;\n\n\t// request to https://public-...8fd8bc6bb68e9c4d17a.md failed, reason: connect ETIMEDOUT 204.79.197.213:443\n\t// Code: ETIMEDOUT\n\tif (error.code === 'ETIMEDOUT') return true;\n\n\t// ECONNREFUSED is generally temporary\n\tif (error.code === 'ECONNREFUSED') return true;\n\n\treturn false;\n};\n\nshim.fetchMaxRetry_ = 5;\n\nshim.fetchMaxRetrySet = v => {\n\tconst previous = shim.fetchMaxRetry_;\n\tshim.fetchMaxRetry_ = v;\n\treturn previous;\n};\n\nshim.fetchWithRetry = async function(fetchFn, options = null) {\n\tconst { time } = require('lib/time-utils.js');\n\n\tif (!options) options = {};\n\tif (!options.timeout) options.timeout = 1000 * 120; // ms\n\tif (!('maxRetry' in options)) options.maxRetry = shim.fetchMaxRetry_;\n\n\tlet retryCount = 0;\n\twhile (true) {\n\t\ttry {\n\t\t\tconst response = await fetchFn();\n\t\t\treturn response;\n\t\t} catch (error) {\n\t\t\tif (shim.fetchRequestCanBeRetried(error)) {\n\t\t\t\tretryCount++;\n\t\t\t\tif (retryCount > options.maxRetry) throw error;\n\t\t\t\tawait time.sleep(retryCount * 3);\n\t\t\t} else {\n\t\t\t\tthrow error;\n\t\t\t}\n\t\t}\n\t}\n};\n\nshim.fetch = () => {\n\tthrow new Error('Not implemented');\n};\nshim.FormData = typeof FormData !== 'undefined' ? FormData : null;\nshim.fsDriver = () => {\n\tthrow new Error('Not implemented');\n};\nshim.FileApiDriverLocal = null;\n\nshim.readLocalFileBase64 = path => {\n\tthrow new Error('Not implemented');\n};\n\nshim.uploadBlob = () => {\n\tthrow new Error('Not implemented');\n};\n\nshim.sjclModule = null;\n\nshim.randomBytes = async count => {\n\tthrow new Error('Not implemented');\n};\n\nshim.setInterval = function(fn, interval) {\n\treturn setInterval(fn, interval);\n};\n\nshim.clearInterval = function(id) {\n\treturn clearInterval(id);\n};\n\nshim.stringByteLength = function(string) {\n\tthrow new Error('Not implemented');\n};\n\nshim.detectAndSetLocale = null;\n\nshim.attachFileToNote = async (note, filePath) => {};\n\nshim.imageFromDataUrl = async function(imageDataUrl, filePath) {\n\tthrow new Error('Not implemented');\n};\nshim.Buffer = null;\nshim.openUrl = () => {\n\tthrow new Error('Not implemented');\n};\nshim.openOrCreateFile = () => {\n\tthrow new Error('Not implemented');\n};\nshim.waitForFrame = () => {\n\tthrow new Error('Not implemented');\n};\n\nshim.injectedJs = name => '';\n\nlet isTestingEnv_ = false;\n\nshim.isTestingEnv = () => {\n\treturn isTestingEnv_;\n};\n\nshim.setIsTestingEnv = (v) => {\n\tisTestingEnv_ = v;\n};\n\nmodule.exports = { shim };\n"},"file_path":{"kind":"string","value":"ReactNativeClient/lib/shim.js"},"label":{"kind":"number","value":1,"string":"1"},"commit_url":{"kind":"string","value":"https://github.com/laurent22/joplin/commit/f78729ad1f02ad9b9a2b34ae250499236cfa0a6a"},"dependency_score":{"kind":"list like","value":[0.009577090851962566,0.0023397994227707386,0.00016766888438723981,0.0013371915556490421,0.0025846201460808516],"string":"[\n 0.009577090851962566,\n 0.0023397994227707386,\n 0.00016766888438723981,\n 0.0013371915556490421,\n 0.0025846201460808516\n]"}}},{"rowIdx":261163,"cells":{"hunk":{"kind":"string","value":"{\n \"id\": 1,\n \"code_window\": [\n \"\\n\",\n \"\\tshim.mobilePlatform = () => {\\n\",\n \"\\t\\treturn Platform.OS;\\n\",\n \"\\t};\\n\",\n \"\\n\",\n \"\\t// NOTE: This is a limited version of createResourceFromPath - unlike the Node version, it\\n\",\n \"\\t// only really works with images. It does not resize the image either.\\n\",\n \"\\tshim.createResourceFromPath = async function(filePath, defaultProps = null) {\\n\",\n \"\\t\\tdefaultProps = defaultProps ? defaultProps : {};\\n\"\n ],\n \"labels\": [\n \"keep\",\n \"keep\",\n \"keep\",\n \"keep\",\n \"add\",\n \"keep\",\n \"keep\",\n \"keep\",\n \"keep\"\n ],\n \"after_edit\": [\n \"\\tshim.appVersion = () => {\\n\",\n \"\\t\\tconst p = require('react-native-version-info').default;\\n\",\n \"\\t\\treturn p.appVersion;\\n\",\n \"\\t};\\n\",\n \"\\n\"\n ],\n \"file_path\": \"ReactNativeClient/lib/shim-init-react.js\",\n \"type\": \"add\",\n \"edit_start_line_idx\": 146\n}"},"file":{"kind":"string","value":"\n\n\n\n\n\n\tDesktop Application | Joplin\n\t\n\t\n\t\n\t\n\t\n\t\n\t \n\t\n\t\n\n\n\n\n
\n\n
\n\t\n\t

Joplin

\n\t

An open source note taking and to-do application with synchronisation capabilities

\n
\n\n
\n\t
\n\t\t\n\t\t
\n\t\t\t\n\t\t\t\n\t\t
\n\t
\n
\n\n
\n\t\n\n

For general information relevant to all the applications, see also Joplin home page.

\n\n\t\t\n\n\n
\nCopyright (c) 2016-2019 Laurent Cozic\n
\n\n\n"},"file_path":{"kind":"string","value":"docs/desktop/index.html"},"label":{"kind":"number","value":0,"string":"0"},"commit_url":{"kind":"string","value":"https://github.com/laurent22/joplin/commit/f78729ad1f02ad9b9a2b34ae250499236cfa0a6a"},"dependency_score":{"kind":"list like","value":[0.00017859521904028952,0.00017414339527022094,0.00016682432033121586,0.0001746674533933401,0.0000026067882572533563],"string":"[\n 0.00017859521904028952,\n 0.00017414339527022094,\n 0.00016682432033121586,\n 0.0001746674533933401,\n 0.0000026067882572533563\n]"}}},{"rowIdx":261164,"cells":{"hunk":{"kind":"string","value":"{\n \"id\": 1,\n \"code_window\": [\n \"\\n\",\n \"\\tshim.mobilePlatform = () => {\\n\",\n \"\\t\\treturn Platform.OS;\\n\",\n \"\\t};\\n\",\n \"\\n\",\n \"\\t// NOTE: This is a limited version of createResourceFromPath - unlike the Node version, it\\n\",\n \"\\t// only really works with images. It does not resize the image either.\\n\",\n \"\\tshim.createResourceFromPath = async function(filePath, defaultProps = null) {\\n\",\n \"\\t\\tdefaultProps = defaultProps ? defaultProps : {};\\n\"\n ],\n \"labels\": [\n \"keep\",\n \"keep\",\n \"keep\",\n \"keep\",\n \"add\",\n \"keep\",\n \"keep\",\n \"keep\",\n \"keep\"\n ],\n \"after_edit\": [\n \"\\tshim.appVersion = () => {\\n\",\n \"\\t\\tconst p = require('react-native-version-info').default;\\n\",\n \"\\t\\treturn p.appVersion;\\n\",\n \"\\t};\\n\",\n \"\\n\"\n ],\n \"file_path\": \"ReactNativeClient/lib/shim-init-react.js\",\n \"type\": \"add\",\n \"edit_start_line_idx\": 146\n}"},"file":{"kind":"string","value":"const React = require('react');\nconst { connect } = require('react-redux');\nconst { bridge } = require('electron').remote.require('./bridge');\nconst { themeStyle } = require('../theme.js');\nconst { _ } = require('lib/locale.js');\nconst ClipperServer = require('lib/ClipperServer');\nconst Setting = require('lib/models/Setting');\nconst { clipboard } = require('electron');\nconst ExtensionBadge = require('./ExtensionBadge.min');\n\nclass ClipperConfigScreenComponent extends React.Component {\n\tconstructor() {\n\t\tsuper();\n\n\t\tthis.copyToken_click = this.copyToken_click.bind(this);\n\t}\n\n\tdisableClipperServer_click() {\n\t\tSetting.setValue('clipperServer.autoStart', false);\n\t\tClipperServer.instance().stop();\n\t}\n\n\tenableClipperServer_click() {\n\t\tSetting.setValue('clipperServer.autoStart', true);\n\t\tClipperServer.instance().start();\n\t}\n\n\tchromeButton_click() {\n\t\tbridge().openExternal('https://chrome.google.com/webstore/detail/joplin-web-clipper/alofnhikmmkdbbbgpnglcpdollgjjfek');\n\t}\n\n\tfirefoxButton_click() {\n\t\tbridge().openExternal('https://addons.mozilla.org/en-US/firefox/addon/joplin-web-clipper/');\n\t}\n\n\tcopyToken_click() {\n\t\tclipboard.writeText(this.props.apiToken);\n\n\t\talert(_('Token has been copied to the clipboard!'));\n\t}\n\n\trender() {\n\t\tconst theme = themeStyle(this.props.theme);\n\n\t\tconst containerStyle = Object.assign({}, theme.containerStyle, {\n\t\t\toverflowY: 'scroll',\n\t\t});\n\n\t\tconst buttonStyle = Object.assign({}, theme.buttonStyle, { marginRight: 10 });\n\n\t\tconst stepBoxStyle = {\n\t\t\tborder: '1px solid',\n\t\t\tborderColor: theme.dividerColor,\n\t\t\tpadding: 15,\n\t\t\tpaddingTop: 0,\n\t\t\tmarginBottom: 15,\n\t\t\tbackgroundColor: theme.backgroundColor,\n\t\t};\n\n\t\tlet webClipperStatusComps = [];\n\n\t\tif (this.props.clipperServerAutoStart) {\n\t\t\twebClipperStatusComps.push(\n\t\t\t\t

\n\t\t\t\t\t{_('The web clipper service is enabled and set to auto-start.')}\n\t\t\t\t

\n\t\t\t);\n\t\t\tif (this.props.clipperServer.startState === 'started') {\n\t\t\t\twebClipperStatusComps.push(\n\t\t\t\t\t

\n\t\t\t\t\t\t{_('Status: Started on port %d', this.props.clipperServer.port)}\n\t\t\t\t\t

\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\twebClipperStatusComps.push(\n\t\t\t\t\t

\n\t\t\t\t\t\t{_('Status: %s', this.props.clipperServer.startState)}\n\t\t\t\t\t

\n\t\t\t\t);\n\t\t\t}\n\t\t\twebClipperStatusComps.push(\n\t\t\t\t\n\t\t\t);\n\t\t} else {\n\t\t\twebClipperStatusComps.push(\n\t\t\t\t

\n\t\t\t\t\t{_('The web clipper service is not enabled.')}\n\t\t\t\t

\n\t\t\t);\n\t\t\twebClipperStatusComps.push(\n\t\t\t\t\n\t\t\t);\n\t\t}\n\n\t\tconst apiTokenStyle = Object.assign({}, theme.textStyle, {\n\t\t\tcolor: theme.colorFaded,\n\t\t\twordBreak: 'break-all',\n\t\t\tpaddingTop: 10,\n\t\t\tpaddingBottom: 10,\n\t\t});\n\n\t\treturn (\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\t\t\t

{_('Joplin Web Clipper allows saving web pages and screenshots from your browser to Joplin.')}

\n\t\t\t\t\t\t

{_('In order to use the web clipper, you need to do the following:')}

\n\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t

{_('Step 1: Enable the clipper service')}

\n\t\t\t\t\t\t\t

{_('This service allows the browser extension to communicate with Joplin. When enabling it your firewall may ask you to give permission to Joplin to listen to a particular port.')}

\n\t\t\t\t\t\t\t
{webClipperStatusComps}
\n\t\t\t\t\t\t
\n\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t

{_('Step 2: Install the extension')}

\n\t\t\t\t\t\t\t

{_('Download and install the relevant extension for your browser:')}

\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t

{_('Advanced options')}

\n\t\t\t\t\t\t\t

{_('Authorisation token:')}

\n\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t\t{this.props.apiToken}{' '}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{_('Copy token')}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t

{_('This authorisation token is only needed to allow third-party applications to access Joplin.')}

\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t);\n\t}\n}\n\nconst mapStateToProps = state => {\n\treturn {\n\t\ttheme: state.settings.theme,\n\t\tclipperServer: state.clipperServer,\n\t\tclipperServerAutoStart: state.settings['clipperServer.autoStart'],\n\t\tapiToken: state.settings['api.token'],\n\t};\n};\n\nconst ClipperConfigScreen = connect(mapStateToProps)(ClipperConfigScreenComponent);\n\nmodule.exports = { ClipperConfigScreen };\n"},"file_path":{"kind":"string","value":"ElectronClient/app/gui/ClipperConfigScreen.jsx"},"label":{"kind":"number","value":0,"string":"0"},"commit_url":{"kind":"string","value":"https://github.com/laurent22/joplin/commit/f78729ad1f02ad9b9a2b34ae250499236cfa0a6a"},"dependency_score":{"kind":"list like","value":[0.0001746204070514068,0.00017082926933653653,0.00016672922356519848,0.0001709983916953206,0.0000023301970486500068],"string":"[\n 0.0001746204070514068,\n 0.00017082926933653653,\n 0.00016672922356519848,\n 0.0001709983916953206,\n 0.0000023301970486500068\n]"}}},{"rowIdx":261165,"cells":{"hunk":{"kind":"string","value":"{\n \"id\": 2,\n \"code_window\": [\n \"shim.waitForFrame = () => {\\n\",\n \"\\tthrow new Error('Not implemented');\\n\",\n \"};\\n\",\n \"\\n\",\n \"shim.injectedJs = name => '';\\n\",\n \"\\n\",\n \"let isTestingEnv_ = false;\\n\"\n ],\n \"labels\": [\n \"keep\",\n \"keep\",\n \"keep\",\n \"add\",\n \"keep\",\n \"keep\",\n \"keep\"\n ],\n \"after_edit\": [\n \"shim.appVersion = () => {\\n\",\n \"\\tthrow new Error('Not implemented');\\n\",\n \"};\\n\",\n \"\\n\"\n ],\n \"file_path\": \"ReactNativeClient/lib/shim.js\",\n \"type\": \"add\",\n \"edit_start_line_idx\": 199\n}"},"file":{"kind":"string","value":"const { shim } = require('lib/shim.js');\nconst { GeolocationReact } = require('lib/geolocation-react.js');\nconst { PoorManIntervals } = require('lib/poor-man-intervals.js');\nconst RNFetchBlob = require('rn-fetch-blob').default;\nconst { generateSecureRandom } = require('react-native-securerandom');\nconst FsDriverRN = require('lib/fs-driver-rn.js').FsDriverRN;\nconst urlValidator = require('valid-url');\nconst { Buffer } = require('buffer');\nconst { Linking, Platform } = require('react-native');\nconst mimeUtils = require('lib/mime-utils.js').mime;\nconst { basename, fileExtension } = require('lib/path-utils.js');\nconst { uuid } = require('lib/uuid.js');\nconst Resource = require('lib/models/Resource');\n\nconst injectedJs = {\n\twebviewLib: require('lib/rnInjectedJs/webviewLib'),\n};\n\nfunction shimInit() {\n\tshim.Geolocation = GeolocationReact;\n\tshim.setInterval = PoorManIntervals.setInterval;\n\tshim.clearInterval = PoorManIntervals.clearInterval;\n\tshim.sjclModule = require('lib/vendor/sjcl-rn.js');\n\n\tshim.fsDriver = () => {\n\t\tif (!shim.fsDriver_) shim.fsDriver_ = new FsDriverRN();\n\t\treturn shim.fsDriver_;\n\t};\n\n\tshim.randomBytes = async count => {\n\t\tconst randomBytes = await generateSecureRandom(count);\n\t\tlet temp = [];\n\t\tfor (let n in randomBytes) {\n\t\t\tif (!randomBytes.hasOwnProperty(n)) continue;\n\t\t\ttemp.push(randomBytes[n]);\n\t\t}\n\t\treturn temp;\n\t};\n\n\tshim.fetch = async function(url, options = null) {\n\t\t// The native fetch() throws an uncatable error that crashes the app if calling it with an\n\t\t// invalid URL such as '//.resource' or \"http://ocloud. de\" so detect if the URL is valid beforehand\n\t\t// and throw a catchable error.\n\t\t// Bug: https://github.com/facebook/react-native/issues/7436\n\t\tconst validatedUrl = urlValidator.isUri(url);\n\t\tif (!validatedUrl) throw new Error(`Not a valid URL: ${url}`);\n\n\t\treturn shim.fetchWithRetry(() => {\n\t\t\treturn fetch(validatedUrl, options);\n\t\t}, options);\n\t};\n\n\tshim.fetchBlob = async function(url, options) {\n\t\tif (!options || !options.path) throw new Error('fetchBlob: target file path is missing');\n\n\t\tlet headers = options.headers ? options.headers : {};\n\t\tlet method = options.method ? options.method : 'GET';\n\t\tconst overwrite = 'overwrite' in options ? options.overwrite : true;\n\n\t\tlet dirs = RNFetchBlob.fs.dirs;\n\t\tlet localFilePath = options.path;\n\t\tif (localFilePath.indexOf('/') !== 0) localFilePath = `${dirs.DocumentDir}/${localFilePath}`;\n\n\t\tif (!overwrite) {\n\t\t\tif (await shim.fsDriver().exists(localFilePath)) {\n\t\t\t\treturn { ok: true };\n\t\t\t}\n\t\t}\n\n\t\tdelete options.path;\n\t\tdelete options.overwrite;\n\n\t\tconst doFetchBlob = () => {\n\t\t\treturn RNFetchBlob.config({\n\t\t\t\tpath: localFilePath,\n\t\t\t}).fetch(method, url, headers);\n\t\t};\n\n\t\ttry {\n\t\t\tconst response = await shim.fetchWithRetry(doFetchBlob, options);\n\n\t\t\t// Returns an object that's roughtly compatible with a standard Response object\n\t\t\tlet output = {\n\t\t\t\tok: response.respInfo.status < 400,\n\t\t\t\tpath: response.data,\n\t\t\t\ttext: response.text,\n\t\t\t\tjson: response.json,\n\t\t\t\tstatus: response.respInfo.status,\n\t\t\t\theaders: response.respInfo.headers,\n\t\t\t};\n\n\t\t\treturn output;\n\t\t} catch (error) {\n\t\t\tthrow new Error(`fetchBlob: ${method} ${url}: ${error.toString()}`);\n\t\t}\n\t};\n\n\tshim.uploadBlob = async function(url, options) {\n\t\tif (!options || !options.path) throw new Error('uploadBlob: source file path is missing');\n\n\t\tconst headers = options.headers ? options.headers : {};\n\t\tconst method = options.method ? options.method : 'POST';\n\n\t\ttry {\n\t\t\tlet response = await RNFetchBlob.fetch(method, url, headers, RNFetchBlob.wrap(options.path));\n\n\t\t\t// Returns an object that's roughtly compatible with a standard Response object\n\t\t\treturn {\n\t\t\t\tok: response.respInfo.status < 400,\n\t\t\t\tdata: response.data,\n\t\t\t\ttext: response.text,\n\t\t\t\tjson: response.json,\n\t\t\t\tstatus: response.respInfo.status,\n\t\t\t\theaders: response.respInfo.headers,\n\t\t\t};\n\t\t} catch (error) {\n\t\t\tthrow new Error(`uploadBlob: ${method} ${url}: ${error.toString()}`);\n\t\t}\n\t};\n\n\tshim.readLocalFileBase64 = async function(path) {\n\t\treturn RNFetchBlob.fs.readFile(path, 'base64');\n\t};\n\n\tshim.stringByteLength = function(string) {\n\t\treturn Buffer.byteLength(string, 'utf-8');\n\t};\n\n\tshim.Buffer = Buffer;\n\n\tshim.openUrl = url => {\n\t\tLinking.openURL(url);\n\t};\n\n\tshim.waitForFrame = () => {\n\t\treturn new Promise(function(resolve) {\n\t\t\trequestAnimationFrame(function() {\n\t\t\t\tresolve();\n\t\t\t});\n\t\t});\n\t};\n\n\tshim.mobilePlatform = () => {\n\t\treturn Platform.OS;\n\t};\n\n\t// NOTE: This is a limited version of createResourceFromPath - unlike the Node version, it\n\t// only really works with images. It does not resize the image either.\n\tshim.createResourceFromPath = async function(filePath, defaultProps = null) {\n\t\tdefaultProps = defaultProps ? defaultProps : {};\n\t\tconst resourceId = defaultProps.id ? defaultProps.id : uuid.create();\n\n\t\tconst ext = fileExtension(filePath);\n\t\tlet mimeType = mimeUtils.fromFileExtension(ext);\n\t\tif (!mimeType) mimeType = 'image/jpeg';\n\n\t\tlet resource = Resource.new();\n\t\tresource.id = resourceId;\n\t\tresource.mime = mimeType;\n\t\tresource.title = basename(filePath);\n\t\tresource.file_extension = ext;\n\n\t\tlet targetPath = Resource.fullPath(resource);\n\t\tawait shim.fsDriver().copy(filePath, targetPath);\n\n\t\tif (defaultProps) {\n\t\t\tresource = Object.assign({}, resource, defaultProps);\n\t\t}\n\n\t\tconst itDoes = await shim.fsDriver().waitTillExists(targetPath);\n\t\tif (!itDoes) throw new Error(`Resource file was not created: ${targetPath}`);\n\n\t\tconst fileStat = await shim.fsDriver().stat(targetPath);\n\t\tresource.size = fileStat.size;\n\n\t\tresource = await Resource.save(resource, { isNew: true });\n\n\t\treturn resource;\n\t};\n\n\tshim.injectedJs = function(name) {\n\t\tif (!(name in injectedJs)) throw new Error(`Cannot find injectedJs file (add it to \"injectedJs\" object): ${name}`);\n\t\treturn injectedJs[name];\n\t};\n}\n\nmodule.exports = { shimInit };\n"},"file_path":{"kind":"string","value":"ReactNativeClient/lib/shim-init-react.js"},"label":{"kind":"number","value":1,"string":"1"},"commit_url":{"kind":"string","value":"https://github.com/laurent22/joplin/commit/f78729ad1f02ad9b9a2b34ae250499236cfa0a6a"},"dependency_score":{"kind":"list like","value":[0.04131871089339256,0.0048856004141271114,0.00016517596668563783,0.0013062702491879463,0.009756742045283318],"string":"[\n 0.04131871089339256,\n 0.0048856004141271114,\n 0.00016517596668563783,\n 0.0013062702491879463,\n 0.009756742045283318\n]"}}},{"rowIdx":261166,"cells":{"hunk":{"kind":"string","value":"{\n \"id\": 2,\n \"code_window\": [\n \"shim.waitForFrame = () => {\\n\",\n \"\\tthrow new Error('Not implemented');\\n\",\n \"};\\n\",\n \"\\n\",\n \"shim.injectedJs = name => '';\\n\",\n \"\\n\",\n \"let isTestingEnv_ = false;\\n\"\n ],\n \"labels\": [\n \"keep\",\n \"keep\",\n \"keep\",\n \"add\",\n \"keep\",\n \"keep\",\n \"keep\"\n ],\n \"after_edit\": [\n \"shim.appVersion = () => {\\n\",\n \"\\tthrow new Error('Not implemented');\\n\",\n \"};\\n\",\n \"\\n\"\n ],\n \"file_path\": \"ReactNativeClient/lib/shim.js\",\n \"type\": \"add\",\n \"edit_start_line_idx\": 199\n}"},"file":{"kind":"string","value":"const React = require('react');\nconst { connect } = require('react-redux');\nconst { bridge } = require('electron').remote.require('./bridge');\nconst { Header } = require('./Header.min.js');\nconst { themeStyle } = require('../theme.js');\nconst { _ } = require('lib/locale.js');\nconst Shared = require('lib/components/shared/dropbox-login-shared');\n\nclass DropboxLoginScreenComponent extends React.Component {\n\tconstructor() {\n\t\tsuper();\n\n\t\tthis.shared_ = new Shared(this, msg => bridge().showInfoMessageBox(msg), msg => bridge().showErrorMessageBox(msg));\n\t}\n\n\tUNSAFE_componentWillMount() {\n\t\tthis.shared_.refreshUrl();\n\t}\n\n\trender() {\n\t\tconst style = this.props.style;\n\t\tconst theme = themeStyle(this.props.theme);\n\n\t\tconst headerStyle = Object.assign({}, theme.headerStyle, { width: style.width });\n\t\tconst containerStyle = Object.assign({}, theme.containerStyle, {\n\t\t\tpadding: theme.margin,\n\t\t\theight: style.height - theme.headerHeight - theme.margin * 2,\n\t\t});\n\n\t\tconst inputStyle = Object.assign({}, theme.inputStyle, { width: 500 });\n\n\t\treturn (\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t

{_('To allow Joplin to synchronise with Dropbox, please follow the steps below:')}

\n\t\t\t\t\t

{_('Step 1: Open this URL in your browser to authorise the application:')}

\n\t\t\t\t\t\n\t\t\t\t\t\t{this.state.loginUrl}\n\t\t\t\t\t\n\t\t\t\t\t

{_('Step 2: Enter the code provided by Dropbox:')}

\n\t\t\t\t\t

\n\t\t\t\t\t\t\n\t\t\t\t\t

\n\t\t\t\t\t\n\t\t\t\t
\n\t\t\t
\n\t\t);\n\t}\n}\n\nconst mapStateToProps = state => {\n\treturn {\n\t\ttheme: state.settings.theme,\n\t};\n};\n\nconst DropboxLoginScreen = connect(mapStateToProps)(DropboxLoginScreenComponent);\n\nmodule.exports = { DropboxLoginScreen };\n"},"file_path":{"kind":"string","value":"ElectronClient/app/gui/DropboxLoginScreen.jsx"},"label":{"kind":"number","value":0,"string":"0"},"commit_url":{"kind":"string","value":"https://github.com/laurent22/joplin/commit/f78729ad1f02ad9b9a2b34ae250499236cfa0a6a"},"dependency_score":{"kind":"list like","value":[0.00017466089047957212,0.0001726159971440211,0.00017101115372497588,0.00017288877279497683,0.0000012603680943357176],"string":"[\n 0.00017466089047957212,\n 0.0001726159971440211,\n 0.00017101115372497588,\n 0.00017288877279497683,\n 0.0000012603680943357176\n]"}}},{"rowIdx":261167,"cells":{"hunk":{"kind":"string","value":"{\n \"id\": 2,\n \"code_window\": [\n \"shim.waitForFrame = () => {\\n\",\n \"\\tthrow new Error('Not implemented');\\n\",\n \"};\\n\",\n \"\\n\",\n \"shim.injectedJs = name => '';\\n\",\n \"\\n\",\n \"let isTestingEnv_ = false;\\n\"\n ],\n \"labels\": [\n \"keep\",\n \"keep\",\n \"keep\",\n \"add\",\n \"keep\",\n \"keep\",\n \"keep\"\n ],\n \"after_edit\": [\n \"shim.appVersion = () => {\\n\",\n \"\\tthrow new Error('Not implemented');\\n\",\n \"};\\n\",\n \"\\n\"\n ],\n \"file_path\": \"ReactNativeClient/lib/shim.js\",\n \"type\": \"add\",\n \"edit_start_line_idx\": 199\n}"},"file":{"kind":"string","value":"'use strict';\n\n// https://github.com/Homebrew/homebrew-core/blob/master/CONTRIBUTING.md\n\nconst rootDir = `${__dirname}/..`;\nconst { execCommand, downloadFile, fileSha256, unlinkForce } = require('./tool-utils.js');\n\nasync function main() {\n\tconst url = await execCommand('npm view joplin dist.tarball');\n\tconst targetPath = `${rootDir}/latest-cli.tar.gz`;\n\tawait unlinkForce(targetPath);\n\tawait downloadFile(url, targetPath);\n\tconst sha256 = await fileSha256(targetPath);\n\tawait unlinkForce(targetPath);\n\n\tconsole.info(`URL = ${url}`);\n\tconsole.info(`SHA256 = ${sha256}`);\n\tconsole.info('');\n\tconsole.info(`brew update && brew bump-formula-pr --strict joplin --url=${url} --sha256=${sha256}`);\n}\n\nmain().catch((error) => {\n\tconsole.error('Fatal error');\n\tconsole.error(error);\n});\n"},"file_path":{"kind":"string","value":"Tools/update-homebrew.js"},"label":{"kind":"number","value":0,"string":"0"},"commit_url":{"kind":"string","value":"https://github.com/laurent22/joplin/commit/f78729ad1f02ad9b9a2b34ae250499236cfa0a6a"},"dependency_score":{"kind":"list like","value":[0.00017341444618068635,0.0001722644519759342,0.00017164451128337532,0.00017173438391182572,8.139994633893366e-7],"string":"[\n 0.00017341444618068635,\n 0.0001722644519759342,\n 0.00017164451128337532,\n 0.00017173438391182572,\n 8.139994633893366e-7\n]"}}},{"rowIdx":261168,"cells":{"hunk":{"kind":"string","value":"{\n \"id\": 2,\n \"code_window\": [\n \"shim.waitForFrame = () => {\\n\",\n \"\\tthrow new Error('Not implemented');\\n\",\n \"};\\n\",\n \"\\n\",\n \"shim.injectedJs = name => '';\\n\",\n \"\\n\",\n \"let isTestingEnv_ = false;\\n\"\n ],\n \"labels\": [\n \"keep\",\n \"keep\",\n \"keep\",\n \"add\",\n \"keep\",\n \"keep\",\n \"keep\"\n ],\n \"after_edit\": [\n \"shim.appVersion = () => {\\n\",\n \"\\tthrow new Error('Not implemented');\\n\",\n \"};\\n\",\n \"\\n\"\n ],\n \"file_path\": \"ReactNativeClient/lib/shim.js\",\n \"type\": \"add\",\n \"edit_start_line_idx\": 199\n}"},"file":{"kind":"string","value":"module.exports = `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`;"},"file_path":{"kind":"string","value":"ReactNativeClient/pluginAssets/katex/fonts/KaTeX_Main-Regular.woff2.base64.js"},"label":{"kind":"number","value":0,"string":"0"},"commit_url":{"kind":"string","value":"https://github.com/laurent22/joplin/commit/f78729ad1f02ad9b9a2b34ae250499236cfa0a6a"},"dependency_score":{"kind":"list like","value":[0.004698383156210184,0.004698383156210184,0.004698383156210184,0.004698383156210184,0],"string":"[\n 0.004698383156210184,\n 0.004698383156210184,\n 0.004698383156210184,\n 0.004698383156210184,\n 0\n]"}}},{"rowIdx":261169,"cells":{"hunk":{"kind":"string","value":"{\n \"id\": 0,\n \"code_window\": [\n \"\\n\",\n \"let treeDataProvider: NpmScriptsTreeDataProvider | undefined;\\n\",\n \"\\n\",\n \"export async function activate(context: vscode.ExtensionContext): Promise {\\n\",\n \"\\tconfigureHttpRequest();\\n\",\n \"\\tcontext.subscriptions.push(vscode.workspace.onDidChangeConfiguration(e => {\\n\",\n \"\\t\\tif (e.affectsConfiguration('http.proxy') || e.affectsConfiguration('http.proxyStrictSSL')) {\\n\",\n \"\\t\\t\\tconfigureHttpRequest();\\n\"\n ],\n \"labels\": [\n \"keep\",\n \"keep\",\n \"add\",\n \"keep\",\n \"keep\",\n \"keep\",\n \"keep\",\n \"keep\"\n ],\n \"after_edit\": [\n \"function invalidateScriptCaches() {\\n\",\n \"\\tinvalidateHoverScriptsCache();\\n\",\n \"\\tinvalidateTasksCache();\\n\",\n \"\\tif (treeDataProvider) {\\n\",\n \"\\t\\ttreeDataProvider.refresh();\\n\",\n \"\\t}\\n\",\n \"}\\n\",\n \"\\n\"\n ],\n \"file_path\": \"extensions/npm/src/npmMain.ts\",\n \"type\": \"add\",\n \"edit_start_line_idx\": 15\n}"},"file":{"kind":"string","value":"/*---------------------------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *--------------------------------------------------------------------------------------------*/\n\nimport * as httpRequest from 'request-light';\nimport * as vscode from 'vscode';\nimport { addJSONProviders } from './features/jsonContributions';\nimport { runSelectedScript, selectAndRunScriptFromFolder } from './commands';\nimport { NpmScriptsTreeDataProvider } from './npmView';\nimport { invalidateTasksCache, NpmTaskProvider } from './tasks';\nimport { invalidateHoverScriptsCache, NpmScriptHoverProvider } from './scriptHover';\n\nlet treeDataProvider: NpmScriptsTreeDataProvider | undefined;\n\nexport async function activate(context: vscode.ExtensionContext): Promise {\n\tconfigureHttpRequest();\n\tcontext.subscriptions.push(vscode.workspace.onDidChangeConfiguration(e => {\n\t\tif (e.affectsConfiguration('http.proxy') || e.affectsConfiguration('http.proxyStrictSSL')) {\n\t\t\tconfigureHttpRequest();\n\t\t}\n\t}));\n\n\tconst canRunNPM = canRunNpmInCurrentWorkspace();\n\tcontext.subscriptions.push(addJSONProviders(httpRequest.xhr, canRunNPM));\n\n\ttreeDataProvider = registerExplorer(context);\n\n\tcontext.subscriptions.push(vscode.workspace.onDidChangeConfiguration((e) => {\n\t\tif (e.affectsConfiguration('npm.exclude') || e.affectsConfiguration('npm.autoDetect')) {\n\t\t\tinvalidateTasksCache();\n\t\t\tif (treeDataProvider) {\n\t\t\t\ttreeDataProvider.refresh();\n\t\t\t}\n\t\t}\n\t\tif (e.affectsConfiguration('npm.scriptExplorerAction')) {\n\t\t\tif (treeDataProvider) {\n\t\t\t\ttreeDataProvider.refresh();\n\t\t\t}\n\t\t}\n\t}));\n\n\tregisterTaskProvider(context);\n\tregisterHoverProvider(context);\n\n\tcontext.subscriptions.push(vscode.commands.registerCommand('npm.runSelectedScript', runSelectedScript));\n\tcontext.subscriptions.push(vscode.commands.registerCommand('npm.runScriptFromFolder', selectAndRunScriptFromFolder));\n}\n\nfunction canRunNpmInCurrentWorkspace() {\n\tif (vscode.workspace.workspaceFolders) {\n\t\treturn vscode.workspace.workspaceFolders.some(f => f.uri.scheme === 'file');\n\t}\n\treturn false;\n}\n\nfunction registerTaskProvider(context: vscode.ExtensionContext): vscode.Disposable | undefined {\n\n\tfunction invalidateScriptCaches() {\n\t\tinvalidateHoverScriptsCache();\n\t\tinvalidateTasksCache();\n\t\tif (treeDataProvider) {\n\t\t\ttreeDataProvider.refresh();\n\t\t}\n\t}\n\n\tif (vscode.workspace.workspaceFolders) {\n\t\tlet watcher = vscode.workspace.createFileSystemWatcher('**/package.json');\n\t\twatcher.onDidChange((_e) => invalidateScriptCaches());\n\t\twatcher.onDidDelete((_e) => invalidateScriptCaches());\n\t\twatcher.onDidCreate((_e) => invalidateScriptCaches());\n\t\tcontext.subscriptions.push(watcher);\n\n\t\tlet workspaceWatcher = vscode.workspace.onDidChangeWorkspaceFolders((_e) => invalidateScriptCaches());\n\t\tcontext.subscriptions.push(workspaceWatcher);\n\n\t\tlet provider: vscode.TaskProvider = new NpmTaskProvider();\n\t\tlet disposable = vscode.tasks.registerTaskProvider('npm', provider);\n\t\tcontext.subscriptions.push(disposable);\n\t\treturn disposable;\n\t}\n\treturn undefined;\n}\n\nfunction registerExplorer(context: vscode.ExtensionContext): NpmScriptsTreeDataProvider | undefined {\n\tif (vscode.workspace.workspaceFolders) {\n\t\tlet treeDataProvider = new NpmScriptsTreeDataProvider(context);\n\t\tconst view = vscode.window.createTreeView('npm', { treeDataProvider: treeDataProvider, showCollapseAll: true });\n\t\tcontext.subscriptions.push(view);\n\t\treturn treeDataProvider;\n\t}\n\treturn undefined;\n}\n\nfunction registerHoverProvider(context: vscode.ExtensionContext): NpmScriptHoverProvider | undefined {\n\tif (vscode.workspace.workspaceFolders) {\n\t\tlet npmSelector: vscode.DocumentSelector = {\n\t\t\tlanguage: 'json',\n\t\t\tscheme: 'file',\n\t\t\tpattern: '**/package.json'\n\t\t};\n\t\tlet provider = new NpmScriptHoverProvider(context);\n\t\tcontext.subscriptions.push(vscode.languages.registerHoverProvider(npmSelector, provider));\n\t\treturn provider;\n\t}\n\treturn undefined;\n}\n\nfunction configureHttpRequest() {\n\tconst httpSettings = vscode.workspace.getConfiguration('http');\n\thttpRequest.configure(httpSettings.get('proxy', ''), httpSettings.get('proxyStrictSSL', true));\n}\n\nexport function deactivate(): void {\n}\n"},"file_path":{"kind":"string","value":"extensions/npm/src/npmMain.ts"},"label":{"kind":"number","value":1,"string":"1"},"commit_url":{"kind":"string","value":"https://github.com/microsoft/vscode/commit/66c63c5d703cfc9163a604b0da70b3745f3278d1"},"dependency_score":{"kind":"list like","value":[0.9989181756973267,0.41742661595344543,0.0005430111777968705,0.00794545654207468,0.48983249068260193],"string":"[\n 0.9989181756973267,\n 0.41742661595344543,\n 0.0005430111777968705,\n 0.00794545654207468,\n 0.48983249068260193\n]"}}},{"rowIdx":261170,"cells":{"hunk":{"kind":"string","value":"{\n \"id\": 0,\n \"code_window\": [\n \"\\n\",\n \"let treeDataProvider: NpmScriptsTreeDataProvider | undefined;\\n\",\n \"\\n\",\n \"export async function activate(context: vscode.ExtensionContext): Promise {\\n\",\n \"\\tconfigureHttpRequest();\\n\",\n \"\\tcontext.subscriptions.push(vscode.workspace.onDidChangeConfiguration(e => {\\n\",\n \"\\t\\tif (e.affectsConfiguration('http.proxy') || e.affectsConfiguration('http.proxyStrictSSL')) {\\n\",\n \"\\t\\t\\tconfigureHttpRequest();\\n\"\n ],\n \"labels\": [\n \"keep\",\n \"keep\",\n \"add\",\n \"keep\",\n \"keep\",\n \"keep\",\n \"keep\",\n \"keep\"\n ],\n \"after_edit\": [\n \"function invalidateScriptCaches() {\\n\",\n \"\\tinvalidateHoverScriptsCache();\\n\",\n \"\\tinvalidateTasksCache();\\n\",\n \"\\tif (treeDataProvider) {\\n\",\n \"\\t\\ttreeDataProvider.refresh();\\n\",\n \"\\t}\\n\",\n \"}\\n\",\n \"\\n\"\n ],\n \"file_path\": \"extensions/npm/src/npmMain.ts\",\n \"type\": \"add\",\n \"edit_start_line_idx\": 15\n}"},"file":{"kind":"string","value":"{\n\t\"label-to-subscribe-to\": [\n\t\t\"list of usernames to subscribe\",\n\t\t\"such as:\",\n\t\t\"JacksonKearl\"\n\t]\n}\n"},"file_path":{"kind":"string","value":".github/subscribers.json"},"label":{"kind":"number","value":0,"string":"0"},"commit_url":{"kind":"string","value":"https://github.com/microsoft/vscode/commit/66c63c5d703cfc9163a604b0da70b3745f3278d1"},"dependency_score":{"kind":"list like","value":[0.0001733532699290663,0.0001733532699290663,0.0001733532699290663,0.0001733532699290663,0],"string":"[\n 0.0001733532699290663,\n 0.0001733532699290663,\n 0.0001733532699290663,\n 0.0001733532699290663,\n 0\n]"}}},{"rowIdx":261171,"cells":{"hunk":{"kind":"string","value":"{\n \"id\": 0,\n \"code_window\": [\n \"\\n\",\n \"let treeDataProvider: NpmScriptsTreeDataProvider | undefined;\\n\",\n \"\\n\",\n \"export async function activate(context: vscode.ExtensionContext): Promise {\\n\",\n \"\\tconfigureHttpRequest();\\n\",\n \"\\tcontext.subscriptions.push(vscode.workspace.onDidChangeConfiguration(e => {\\n\",\n \"\\t\\tif (e.affectsConfiguration('http.proxy') || e.affectsConfiguration('http.proxyStrictSSL')) {\\n\",\n \"\\t\\t\\tconfigureHttpRequest();\\n\"\n ],\n \"labels\": [\n \"keep\",\n \"keep\",\n \"add\",\n \"keep\",\n \"keep\",\n \"keep\",\n \"keep\",\n \"keep\"\n ],\n \"after_edit\": [\n \"function invalidateScriptCaches() {\\n\",\n \"\\tinvalidateHoverScriptsCache();\\n\",\n \"\\tinvalidateTasksCache();\\n\",\n \"\\tif (treeDataProvider) {\\n\",\n \"\\t\\ttreeDataProvider.refresh();\\n\",\n \"\\t}\\n\",\n \"}\\n\",\n \"\\n\"\n ],\n \"file_path\": \"extensions/npm/src/npmMain.ts\",\n \"type\": \"add\",\n \"edit_start_line_idx\": 15\n}"},"file":{"kind":"string","value":"/*---------------------------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *--------------------------------------------------------------------------------------------*/\n\nimport 'vs/css!./media/suggest';\nimport 'vs/css!./media/suggestStatusBar';\nimport 'vs/base/browser/ui/codicons/codiconStyles'; // The codicon symbol styles are defined here and must be loaded\nimport 'vs/editor/contrib/documentSymbols/outlineTree'; // The codicon symbol colors are defined here and must be loaded\nimport * as nls from 'vs/nls';\nimport { createMatches } from 'vs/base/common/filters';\nimport * as strings from 'vs/base/common/strings';\nimport { Event, Emitter } from 'vs/base/common/event';\nimport { onUnexpectedError } from 'vs/base/common/errors';\nimport { IDisposable, dispose, toDisposable, DisposableStore, Disposable } from 'vs/base/common/lifecycle';\nimport { append, $, hide, show, getDomNodePagePosition, addDisposableListener, addStandardDisposableListener, addClasses } from 'vs/base/browser/dom';\nimport { IListVirtualDelegate, IListEvent, IListRenderer, IListMouseEvent, IListGestureEvent } from 'vs/base/browser/ui/list/list';\nimport { List } from 'vs/base/browser/ui/list/listWidget';\nimport { DomScrollableElement } from 'vs/base/browser/ui/scrollbar/scrollableElement';\nimport { IKeybindingService } from 'vs/platform/keybinding/common/keybinding';\nimport { IContextKey, IContextKeyService } from 'vs/platform/contextkey/common/contextkey';\nimport { ConfigurationChangedEvent, EditorOption } from 'vs/editor/common/config/editorOptions';\nimport { ContentWidgetPositionPreference, ICodeEditor, IContentWidget, IContentWidgetPosition, IEditorMouseEvent } from 'vs/editor/browser/editorBrowser';\nimport { Context as SuggestContext, CompletionItem, suggestWidgetStatusbarMenu } from './suggest';\nimport { CompletionModel } from './completionModel';\nimport { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';\nimport { attachListStyler } from 'vs/platform/theme/common/styler';\nimport { IThemeService, IColorTheme, registerThemingParticipant } from 'vs/platform/theme/common/themeService';\nimport { registerColor, editorWidgetBackground, listFocusBackground, activeContrastBorder, listHighlightForeground, editorForeground, editorWidgetBorder, focusBorder, textLinkForeground, textCodeBlockBackground } from 'vs/platform/theme/common/colorRegistry';\nimport { IStorageService, StorageScope } from 'vs/platform/storage/common/storage';\nimport { MarkdownRenderer } from 'vs/editor/contrib/markdown/markdownRenderer';\nimport { IModeService } from 'vs/editor/common/services/modeService';\nimport { IOpenerService } from 'vs/platform/opener/common/opener';\nimport { TimeoutTimer, CancelablePromise, createCancelablePromise, disposableTimeout } from 'vs/base/common/async';\nimport { CompletionItemKind, completionKindToCssClass, CompletionItemTag } from 'vs/editor/common/modes';\nimport { IconLabel, IIconLabelValueOptions } from 'vs/base/browser/ui/iconLabel/iconLabel';\nimport { getIconClasses } from 'vs/editor/common/services/getIconClasses';\nimport { IModelService } from 'vs/editor/common/services/modelService';\nimport { URI } from 'vs/base/common/uri';\nimport { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';\nimport { FileKind } from 'vs/platform/files/common/files';\nimport { MarkdownString } from 'vs/base/common/htmlContent';\nimport { flatten, isFalsyOrEmpty } from 'vs/base/common/arrays';\nimport { IKeyboardEvent } from 'vs/base/browser/keyboardEvent';\nimport { IMenuService } from 'vs/platform/actions/common/actions';\nimport { ActionBar } from 'vs/base/browser/ui/actionbar/actionbar';\nimport { IAction, IActionViewItemProvider } from 'vs/base/common/actions';\nimport { Codicon, registerIcon } from 'vs/base/common/codicons';\nimport { ActionViewItem } from 'vs/base/browser/ui/actionbar/actionViewItems';\n\nconst expandSuggestionDocsByDefault = false;\n\nconst suggestMoreInfoIcon = registerIcon('suggest-more-info', Codicon.chevronRight);\n\ninterface ISuggestionTemplateData {\n\troot: HTMLElement;\n\n\t/**\n\t * Flexbox\n\t * < ------------- left ------------ > < --- right -- >\n\t *