This commit is contained in:
Rob Lourens 2018-03-25 12:59:30 -07:00
Родитель f26b02d271
Коммит 2e15d5f044
11 изменённых файлов: 140 добавлений и 16 удалений

2
package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "debugger-for-chrome",
"version": "4.2.1",
"version": "4.2.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

Просмотреть файл

@ -1,7 +1,7 @@
{
"name": "debugger-for-chrome",
"displayName": "Debugger for Chrome",
"version": "4.2.1",
"version": "4.2.2",
"icon": "images/icon.png",
"description": "%extension.description%",
"author": {

31
package.nls.cs.json Normal file
Просмотреть файл

@ -0,0 +1,31 @@
{
"extension.description": "Debug your JavaScript code in the Chrome browser, or any other target that supports the Chrome Debugger protocol.",
"chrome.toggleSkipping.title": "Chrome: Toggle Skipping This File",
"chrome.toggleSmartStep.title": "Chrome: Toggle Smart Step",
"chrome.port.description": "Port to use for Chrome remote debugging.",
"chrome.address.description": "TCP/IP address of debug port",
"chrome.file.description": "A local html file to open in the browser",
"chrome.url.description": "Will search for a tab with this EXACT url and attach to it, if found",
"chrome.webRoot.description": "This specifies the workspace absolute path to the webserver root. Used to resolve paths like `/app.js` to files on disk. Shorthand for a pathMapping for \"/\"",
"chrome.pathMapping.description": "A mapping of URLs/paths to local folders, to resolve scripts in Chrome to scripts on disk",
"chrome.runtimeExecutable.description": "Workspace absolute path to the runtime executable to be used. If not specified, Chrome will be used from the default install location.",
"chrome.runtimeArgs.description": "Optional arguments passed to the runtime executable.",
"chrome.env.description": "Optional dictionary of environment key/value pairs.",
"chrome.cwd.description": "Optional working directory for the runtime executable.",
"chrome.sourceMaps.description": "Use JavaScript source maps (if they exist).",
"chrome.diagnosticLogging.description": "When true, the adapter logs its own diagnostic info to the console in a human readable format",
"chrome.verboseDiagnosticLogging.description": "When true, the adapter logs all traffic with the client and target (as well as the info logged by 'diagnosticLogging')",
"chrome.trace.description": "When 'true', the debugger will log tracing info to a file. When 'verbose', it will also show logs in the console.",
"chrome.userDataDir.description": "By default, Chrome is launched with a separate user profile in a temp folder. Use this option to override it. Set to false to launch with your default user profile.",
"chrome.sourceMapPathOverrides.description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk. See README for details.",
"chrome.smartStep.description": "Automatically step through generated code that cannot be mapped back to the original source.",
"chrome.skipFiles.description": "An array of file or folder names, or path globs, to skip when debugging.",
"chrome.timeout.description": "Retry for this number of milliseconds to connect to Chrome. Default is 10000 ms.",
"chrome.disableNetworkCache.description": "Controls whether to skip the network cache for each request",
"chrome.urlFilter.description": "Will search for a page with this url and attach to it, if found. Can have * wildcards.",
"chrome.showAsyncStacks.description": "Show the async calls that led to the current call stack",
"chrome.breakOnLoad.description": "Experimental feature - If true, the debug adapter will attempt to set breakpoints in scripts before they are loaded, so it can hit breakpoints at the beginnings of those scripts. Has a perf impact.",
"chrome.breakOnLoadStrategy.description": "The strategy to use for breakOnLoad.",
"chrome.breakOnLoadStrategy.instrument.description": "Tell Chrome to pause as each script is loaded, resolving sourcemaps and setting breakpoints",
"chrome.breakOnLoadStrategy.regex.description": "Sets breakpoints optimistically in files with the same name as the file in which the breakpoint is set."
}

Просмотреть файл

@ -1,7 +1,7 @@
{
"extension.description": "Depurar el código JavaScript en el navegador Chrome, o cualquier otro destino que sea compatible con el protocolo depurador de Chrome.",
"chrome.toggleSkipping.title": "Chrome: Toggle Skipping This File",
"chrome.toggleSmartStep.title": "Chrome: Toggle Smart Step",
"chrome.toggleSkipping.title": "Chrome: Alternar la omisión de este archivo.",
"chrome.toggleSmartStep.title": "Chrome: alternar Smart Step",
"chrome.port.description": "Puerto que se utilizará para la depuración remota de Chrome.",
"chrome.address.description": "Dirección TCP/IP del puerto de depuración",
"chrome.file.description": "Un archivo html local para abrirlo en el navegador",
@ -11,7 +11,7 @@
"chrome.runtimeExecutable.description": "Ruta absoluta del área de trabajo al ejecutable del entorno de ejecución que se va a usar. Si no se especifica, Chrome se usará desde la ubicación de instalación predeterminada.",
"chrome.runtimeArgs.description": "Argumentos opcionales pasados al ejecutable del entorno de ejecución.",
"chrome.env.description": "Diccionario opcional de pares clave/valor del ambiente.",
"chrome.cwd.description": "Optional working directory for the runtime executable.",
"chrome.cwd.description": "Directorio de trabajo opcional para el ejecutable.",
"chrome.sourceMaps.description": "Se usan los mapas de origen de JavaScript (si existen).",
"chrome.diagnosticLogging.description": "Cuando es verdadero, el adaptador registra su propia información de diagnóstico a la consola en un formato legible para los humanos",
"chrome.verboseDiagnosticLogging.description": "Cuando es verdadero, el adaptador registra todo el tráfico con el cliente y el objetivo (así como también la información registrada por 'diagnosticLogging')",

Просмотреть файл

@ -1,9 +1,9 @@
{
"extension.description": "Déboguer votre code JavaScript dans le navigateur Chrome, ou tout autre cible qui prend en charge le protocole Chrome Debugger.",
"chrome.toggleSkipping.title": "Chrome: Toggle Skipping This File",
"chrome.toggleSmartStep.title": "Chrome: Toggle Smart Step",
"chrome.toggleSkipping.title": "Chrome : Activer/désactiver l'évitement de ce fichier",
"chrome.toggleSmartStep.title": "Chrome : Activer/désactiver Smart Step",
"chrome.port.description": "Port à utiliser pour le débogage à distance de Chrome.",
"chrome.address.description": "TCP/IP address of debug port",
"chrome.address.description": "Adresse TCP/IP du port de débogage",
"chrome.file.description": "Un fichier html local à ouvrir dans le navigateur",
"chrome.url.description": "Recherchera un onglet avec cette url exacte et l'attachera, s'il est trouvé",
"chrome.webRoot.description": "Ceci spécifie le chemin absolu de lespace de travail à la racine du serveur Web. Utilisé pour résoudre des chemins daccès comme '/app.js' à des fichiers sur le disque. Raccourci pour un pathMapping pour \"/\"",

Просмотреть файл

@ -1,16 +1,16 @@
{
"extension.description": "JavaScript コードを Chrome ブラウザーか、Chrome Debugger プロトコルをサポートする他のターゲットでデバッグします。",
"chrome.toggleSkipping.title": "Chrome: Toggle Skipping This File",
"chrome.toggleSmartStep.title": "Chrome: Toggle Smart Step",
"chrome.port.description": "Port to use for Chrome remote debugging.",
"chrome.address.description": "TCP/IP address of debug port",
"chrome.toggleSkipping.title": "Chrome: このファイルのスキッピングを切り替える",
"chrome.toggleSmartStep.title": "Chome: スマート ステップを切り替える",
"chrome.port.description": "Chrome リモート デバッグに使用するポート。",
"chrome.address.description": "デバッグ ポートの TCP/IP アドレス",
"chrome.file.description": "ブラウザーで開くローカル HTML ファイル",
"chrome.url.description": "この URL と完全一致したタブを探し、見つかった場合はアタッチします",
"chrome.webRoot.description": "これは Web サーバーのルートにワークスペースの絶対パスを指定します。`/app.js` のようなパスをディスク上のファイルに解決するために使用します。\"/\" のパスマッピングの省略形です。",
"chrome.pathMapping.description": "Chrome 上のスクリプトをディスク上のスクリプトへ解決するための、URL やパスからローカルフォルダーへのマッピング",
"chrome.runtimeExecutable.description": "使用されるランタイム実行可能ファイルのワークスペース絶対パス。指定が無ければ、Chrome は既定のインストール場所を使用します。",
"chrome.runtimeArgs.description": "ランタイム実行可能ファイルに渡される省略可能な引数。",
"chrome.env.description": "Optional dictionary of environment key/value pairs.",
"chrome.env.description": "省略可能な環境の key/value ペアの辞書。",
"chrome.cwd.description": "ランタイム実行ファイルのオプションの作業ディレクトリ",
"chrome.sourceMaps.description": "JavaScript ソース マップを使用します (存在する場合)。",
"chrome.diagnosticLogging.description": "true の場合、アダプターはコンソールに人が判別できるフォーマットで診断情報を記録します",

31
package.nls.pl.json Normal file
Просмотреть файл

@ -0,0 +1,31 @@
{
"extension.description": "Debuguj kod JavaScript w przeglądarce Chrome lub w dowolnym innym środowisku wspierającym protokół Chrome Debugger.",
"chrome.toggleSkipping.title": "Chrome: Toggle Skipping This File",
"chrome.toggleSmartStep.title": "Chrome: Toggle Smart Step",
"chrome.port.description": "Port, który ma zostać użyty do zdalnego debugowania Chrome.",
"chrome.address.description": "TCP/IP address of debug port",
"chrome.file.description": "A local html file to open in the browser",
"chrome.url.description": "Will search for a tab with this EXACT url and attach to it, if found",
"chrome.webRoot.description": "This specifies the workspace absolute path to the webserver root. Used to resolve paths like `/app.js` to files on disk. Shorthand for a pathMapping for \"/\"",
"chrome.pathMapping.description": "A mapping of URLs/paths to local folders, to resolve scripts in Chrome to scripts on disk",
"chrome.runtimeExecutable.description": "Workspace absolute path to the runtime executable to be used. If not specified, Chrome will be used from the default install location.",
"chrome.runtimeArgs.description": "Optional arguments passed to the runtime executable.",
"chrome.env.description": "Optional dictionary of environment key/value pairs.",
"chrome.cwd.description": "Optional working directory for the runtime executable.",
"chrome.sourceMaps.description": "Use JavaScript source maps (if they exist).",
"chrome.diagnosticLogging.description": "When true, the adapter logs its own diagnostic info to the console in a human readable format",
"chrome.verboseDiagnosticLogging.description": "When true, the adapter logs all traffic with the client and target (as well as the info logged by 'diagnosticLogging')",
"chrome.trace.description": "When 'true', the debugger will log tracing info to a file. When 'verbose', it will also show logs in the console.",
"chrome.userDataDir.description": "By default, Chrome is launched with a separate user profile in a temp folder. Use this option to override it. Set to false to launch with your default user profile.",
"chrome.sourceMapPathOverrides.description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk. See README for details.",
"chrome.smartStep.description": "Automatically step through generated code that cannot be mapped back to the original source.",
"chrome.skipFiles.description": "An array of file or folder names, or path globs, to skip when debugging.",
"chrome.timeout.description": "Retry for this number of milliseconds to connect to Chrome. Default is 10000 ms.",
"chrome.disableNetworkCache.description": "Controls whether to skip the network cache for each request",
"chrome.urlFilter.description": "Will search for a page with this url and attach to it, if found. Can have * wildcards.",
"chrome.showAsyncStacks.description": "Show the async calls that led to the current call stack",
"chrome.breakOnLoad.description": "Experimental feature - If true, the debug adapter will attempt to set breakpoints in scripts before they are loaded, so it can hit breakpoints at the beginnings of those scripts. Has a perf impact.",
"chrome.breakOnLoadStrategy.description": "The strategy to use for breakOnLoad.",
"chrome.breakOnLoadStrategy.instrument.description": "Tell Chrome to pause as each script is loaded, resolving sourcemaps and setting breakpoints",
"chrome.breakOnLoadStrategy.regex.description": "Sets breakpoints optimistically in files with the same name as the file in which the breakpoint is set."
}

31
package.nls.pt-br.json Normal file
Просмотреть файл

@ -0,0 +1,31 @@
{
"extension.description": "Depure seu código JavaScript no navegador Chrome ou em qualquer outro destino que suporte o protocolo de depuração do Chrome.",
"chrome.toggleSkipping.title": "Chrome: Toggle Skipping This File",
"chrome.toggleSmartStep.title": "Chrome: Toggle Smart Step",
"chrome.port.description": "Porta a ser usada para depuração remota do Chrome.",
"chrome.address.description": "Endereço TCP/IP da porta de depuração",
"chrome.file.description": "Um arquivo HTML local para abrir no navegador",
"chrome.url.description": "Busca uma guia com esta url EXATA e anexa à ele, se for encontrada",
"chrome.webRoot.description": "Especifica o caminho absoluto do espaço de trabalho para a raiz do servidor Web. Usado para resolver caminhos como '/app.js' para arquivos em disco. Atalho para um mapeamento em \"/\"",
"chrome.pathMapping.description": "Um mapeamento de URLs/caminhos para pastas locais, para resolver scripts no Chrome para scripts em disco",
"chrome.runtimeExecutable.description": "Caminho absoluto do espaço de trabalho para o runtime executável a ser usado. Se não for especificado, será usado o Chrome a partir do seu local de instalação padrão.",
"chrome.runtimeArgs.description": "Argumentos opcionais passados ao executável runtime.",
"chrome.env.description": "Dicionário opcional de pares chave/valor de ambiente.",
"chrome.cwd.description": "Diretório de trabalho opcional para o executável do runtime.",
"chrome.sourceMaps.description": "Use mapeamento de fonte JavaScript (se existir).",
"chrome.diagnosticLogging.description": "Quando true, o adaptador registra no console suas próprias informações de diagnóstico em um formato legível para humanos",
"chrome.verboseDiagnosticLogging.description": "Quando verdadeiro, o adaptador registra todo o tráfego com o cliente e o destino (assim como a informação registrada por 'diagnosticLogging')",
"chrome.trace.description": "Quando 'verdadeiro', o depurador registrará informações de rastreamento em um arquivo. Quando 'detalhado', também mostrará os logs no console.",
"chrome.userDataDir.description": "Por padrão, o Chrome é iniciado com um perfil de usuário separado em uma pasta temp. Use esta opção para substituí-lo. Defina como false para executar com seu perfil de usuário padrão.",
"chrome.sourceMapPathOverrides.description": "Um conjunto de mapeamentos para reescrever as localizações dos arquivos fontes de onde o sourcemap aponta para os seus locais no disco. Veja o README para detalhes.",
"chrome.smartStep.description": "Código gerado automaticamente que não pode ser mapeado de volta para o código original. ",
"chrome.skipFiles.description": "Uma matriz de nomes de arquivos ou pastas, ou globs de caminho, para ignorar quando estiver depurando.",
"chrome.timeout.description": "Esperar este número de milissegundos para se reconectar ao Chrome. O padrão é 10000 ms.",
"chrome.disableNetworkCache.description": "Controla se deve ignorar o cache de rede para cada solicitação",
"chrome.urlFilter.description": "Procura uma página com esta url e anexa-a à ela, se encontrado. Pode ter caracteres curingas *.",
"chrome.showAsyncStacks.description": "Mostra as chamadas assíncronas que levam à pilha de chamadas atual",
"chrome.breakOnLoad.description": "Funcionalidade experimental. Se verdadeiro, o adaptador de depuração tentará definir pontos de parada nos scripts antes que eles sejam carregados, para que eles possam ser atingidos no início destes scripts. Há impacto de performance.",
"chrome.breakOnLoadStrategy.description": "A estratégia a ser usada para breakOnLoad.",
"chrome.breakOnLoadStrategy.instrument.description": "Informa o Chrome para pausar conforme cada script é carregado, resolvendo mapeamento de fontes e definindo pontos de parada.",
"chrome.breakOnLoadStrategy.regex.description": "Define pontos de parada otimisticamente nos arquivos com o mesmo nome do arquivo no qual o ponto de parada é configurado."
}

31
package.nls.tr.json Normal file
Просмотреть файл

@ -0,0 +1,31 @@
{
"extension.description": "Chrome tarayıcısında veya Chrome Hata Ayıklayıcı protokolünü destekleyen herhangi bir hedefte JavaScript kodlarınızın hatalarını ayıklayın.",
"chrome.toggleSkipping.title": "Chrome: Bu Dosyayı Atlamayı Aç/Kapat",
"chrome.toggleSmartStep.title": "Chrome: Akıllı Adımı Aç/Kapat",
"chrome.port.description": "Chrome uzaktan hata ayıklama için kullanılacak port.",
"chrome.address.description": "Hata ayıklama portunun TCP/IP adresi",
"chrome.file.description": "Tarayıcıda açılacak yerel bir html dosyası",
"chrome.url.description": "Bu url'in TAMAMEN AYNISININ bulunduğu bir sayfa arayacak ve bulunduysa ona bağlayacaktır.",
"chrome.webRoot.description": "Bu, web sunucusu kök dizini için çalışma alanı mutlak yolunu belirtir. `/app.js` gibi yolların diskteki dosyalara çözümlenmesinde kullanılır. \"/\" için bir 'pathMapping' kısaltmasıdır",
"chrome.pathMapping.description": "Chrome'daki betikleri diskteki betiklere çözümleyecek bir URL'ler/yerel klasör yolları eşlemesi",
"chrome.runtimeExecutable.description": "Kullanılacak çalışma zamanı yürütülebilir dosyası için çalışma alanı mutlak yolu. Belirtilmezse, Chrome varsayılan yükleme konumundan kullanılacaktır.",
"chrome.runtimeArgs.description": "Çalışma zamanı yürütülebilir dosyasına iletilecek isteğe bağlı argümanlar.",
"chrome.env.description": "Ortam anahtar/değer eşleri için isteğe bağlı sözlük.",
"chrome.cwd.description": "Çalışma zamanı yürütülebilir dosyası için isteğe bağlı çalışma dizini.",
"chrome.sourceMaps.description": "JavaScript kaynak haritaları kullanın (varsa).",
"chrome.diagnosticLogging.description": "Doğru olduğunda, bağdaştırıcı kendi tanılama bilgilerini herkesin okuyabileceği biçimde konsola yazdırır",
"chrome.verboseDiagnosticLogging.description": "Doğru olduğunda, bağdaştırıcı istemci ve hedef ('diagnosticLogging' tarafından kaydedilen bilgileri de) ile tüm trafiğini günlüğe kaydeder",
"chrome.trace.description": "'true' olduğunda; hata ayıklayıcı, izleme bilgisini bir dosyaya günlük şeklinde kaydeder. 'verbose' olduğunda, günlükleri ayrıca konsolda gösterir.",
"chrome.userDataDir.description": "Varsayılan olarak, Chrome geçici bir klasörde başka bir kullanıcı profiliyle başlatılır. Bu durumu geçersiz kılmak için bu seçeneği kullanın. Varsayılan kullanıcı profilinizle başlatılması için \"yanlış\" olarak belirleyin.",
"chrome.sourceMapPathOverrides.description": "Kaynak dosyalarının konumlarını, kaynak haritanın belirttiği yerden disk üzerindeki konumlarına yeniden yazmak için bir eşlemeler dizisi. Ayrıntılar için README dosyasına bakın.",
"chrome.smartStep.description": "Orijinal kaynağa geri eşlenemeyen oluşturulmuş kodlar üzerinde otomatik olarak adım adım ilerleyin.",
"chrome.skipFiles.description": "Hata ayıklama yapılırken atlanacak dosya veya klasör adları, veya yol glob desenleri dizisi.",
"chrome.timeout.description": "Chrome'a yeniden bağlanmak için bu sayıda milisaniye kadar tekrar deneyin. Varsayılan 10000 ms'dir.",
"chrome.disableNetworkCache.description": "Her istek için ağ önbelleğinin atlanıp atlanmayacağını denetler",
"chrome.urlFilter.description": "Bu url'in bulunduğu bir sayfa arayacak ve bulunduysa ona bağlayacaktır. * joker karakterini içerebilir.",
"chrome.showAsyncStacks.description": "Geçerli çağrı yığınına giden asenkron çağrıları gösterin.",
"chrome.breakOnLoad.description": "Deneysel özellik - Doğru ise, hata ayıklama bağdaştırıcısı, betiklerdeki kesme noktalarını betikler yüklenmeden önce ayarlamaya çalışacak ve böylece bu betiklerin başlangıçlarındaki kesme noktalarına isabet edebilecektir. Performansı etkilemektedir.",
"chrome.breakOnLoadStrategy.description": "breakOnLoad için kullanılacak strateji.",
"chrome.breakOnLoadStrategy.instrument.description": "Chrome'a her betik yüklendiğinde duraklamasını, kaynak haritalarını çözümlemesini ve kesme noktalarını ayarlamasını bildir",
"chrome.breakOnLoadStrategy.regex.description": "Kesme noktasının ayarlandığı dosya ile aynı ada sahip dosyalarda kesme noktalarını iyimser olarak ayarlar."
}

Просмотреть файл

@ -20,7 +20,7 @@
"chrome.sourceMapPathOverrides.description": "用于根据源映射所述重写源文件位置的一组映射,其将映射到磁盘上所处位置。请参阅自述文件了解详细信息。",
"chrome.smartStep.description": "自动单步执行无法映射回原始源的生成代码。",
"chrome.skipFiles.description": "将在调试时跳过的一组文件名、文件夹名或路径的 glob 模式。",
"chrome.timeout.description": "在此段时间(单位: 毫秒)内一直尝试连接到 Chrome。默认值为 10000 ms。",
"chrome.timeout.description": "尝试连接到 Chrome 的等待时间 (单位: 毫秒)。默认值为 10000 ms。",
"chrome.disableNetworkCache.description": "控制每次请求是否跳过网络缓存",
"chrome.urlFilter.description": "将搜索 URL 为此的页面,若找到则附加于其之上。可以包含 * 通配符。",
"chrome.showAsyncStacks.description": "显示导致当前调用堆栈的异步调用",

Просмотреть файл

@ -1,7 +1,7 @@
{
"extension.description": "在 Chrome 瀏覽器中除錯你的 JavaScript 程式碼,或任何其他支援 Chrome Debugger 通訊協定的目標。",
"chrome.toggleSkipping.title": "Chrome: Toggle Skipping This File",
"chrome.toggleSmartStep.title": "Chrome: Toggle Smart Step",
"chrome.toggleSkipping.title": "Chrome: 略過此檔案",
"chrome.toggleSmartStep.title": "Chrome: 智慧單步執行",
"chrome.port.description": "連接埠用於 Chrome 遠端除錯。",
"chrome.address.description": "偵錯連接埠 TCP/IP 位址",
"chrome.file.description": "本地端的 html 檔案開啟於瀏覽器",