Skip to content
This repository was archived by the owner on Dec 6, 2022. It is now read-only.

Commit 2e15d5f

Browse files
committed
4.2.2
1 parent f26b02d commit 2e15d5f

11 files changed

Lines changed: 140 additions & 16 deletions

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "debugger-for-chrome",
33
"displayName": "Debugger for Chrome",
4-
"version": "4.2.1",
4+
"version": "4.2.2",
55
"icon": "images/icon.png",
66
"description": "%extension.description%",
77
"author": {

package.nls.cs.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"extension.description": "Debug your JavaScript code in the Chrome browser, or any other target that supports the Chrome Debugger protocol.",
3+
"chrome.toggleSkipping.title": "Chrome: Toggle Skipping This File",
4+
"chrome.toggleSmartStep.title": "Chrome: Toggle Smart Step",
5+
"chrome.port.description": "Port to use for Chrome remote debugging.",
6+
"chrome.address.description": "TCP/IP address of debug port",
7+
"chrome.file.description": "A local html file to open in the browser",
8+
"chrome.url.description": "Will search for a tab with this EXACT url and attach to it, if found",
9+
"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 \"/\"",
10+
"chrome.pathMapping.description": "A mapping of URLs/paths to local folders, to resolve scripts in Chrome to scripts on disk",
11+
"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.",
12+
"chrome.runtimeArgs.description": "Optional arguments passed to the runtime executable.",
13+
"chrome.env.description": "Optional dictionary of environment key/value pairs.",
14+
"chrome.cwd.description": "Optional working directory for the runtime executable.",
15+
"chrome.sourceMaps.description": "Use JavaScript source maps (if they exist).",
16+
"chrome.diagnosticLogging.description": "When true, the adapter logs its own diagnostic info to the console in a human readable format",
17+
"chrome.verboseDiagnosticLogging.description": "When true, the adapter logs all traffic with the client and target (as well as the info logged by 'diagnosticLogging')",
18+
"chrome.trace.description": "When 'true', the debugger will log tracing info to a file. When 'verbose', it will also show logs in the console.",
19+
"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.",
20+
"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.",
21+
"chrome.smartStep.description": "Automatically step through generated code that cannot be mapped back to the original source.",
22+
"chrome.skipFiles.description": "An array of file or folder names, or path globs, to skip when debugging.",
23+
"chrome.timeout.description": "Retry for this number of milliseconds to connect to Chrome. Default is 10000 ms.",
24+
"chrome.disableNetworkCache.description": "Controls whether to skip the network cache for each request",
25+
"chrome.urlFilter.description": "Will search for a page with this url and attach to it, if found. Can have * wildcards.",
26+
"chrome.showAsyncStacks.description": "Show the async calls that led to the current call stack",
27+
"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.",
28+
"chrome.breakOnLoadStrategy.description": "The strategy to use for breakOnLoad.",
29+
"chrome.breakOnLoadStrategy.instrument.description": "Tell Chrome to pause as each script is loaded, resolving sourcemaps and setting breakpoints",
30+
"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.es.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extension.description": "Depurar el código JavaScript en el navegador Chrome, o cualquier otro destino que sea compatible con el protocolo depurador de Chrome.",
3-
"chrome.toggleSkipping.title": "Chrome: Toggle Skipping This File",
4-
"chrome.toggleSmartStep.title": "Chrome: Toggle Smart Step",
3+
"chrome.toggleSkipping.title": "Chrome: Alternar la omisión de este archivo.",
4+
"chrome.toggleSmartStep.title": "Chrome: alternar Smart Step",
55
"chrome.port.description": "Puerto que se utilizará para la depuración remota de Chrome.",
66
"chrome.address.description": "Dirección TCP/IP del puerto de depuración",
77
"chrome.file.description": "Un archivo html local para abrirlo en el navegador",
@@ -11,7 +11,7 @@
1111
"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.",
1212
"chrome.runtimeArgs.description": "Argumentos opcionales pasados al ejecutable del entorno de ejecución.",
1313
"chrome.env.description": "Diccionario opcional de pares clave/valor del ambiente.",
14-
"chrome.cwd.description": "Optional working directory for the runtime executable.",
14+
"chrome.cwd.description": "Directorio de trabajo opcional para el ejecutable.",
1515
"chrome.sourceMaps.description": "Se usan los mapas de origen de JavaScript (si existen).",
1616
"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",
1717
"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')",

package.nls.fr.json

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

package.nls.ja.json

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

package.nls.pl.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"extension.description": "Debuguj kod JavaScript w przeglądarce Chrome lub w dowolnym innym środowisku wspierającym protokół Chrome Debugger.",
3+
"chrome.toggleSkipping.title": "Chrome: Toggle Skipping This File",
4+
"chrome.toggleSmartStep.title": "Chrome: Toggle Smart Step",
5+
"chrome.port.description": "Port, który ma zostać użyty do zdalnego debugowania Chrome.",
6+
"chrome.address.description": "TCP/IP address of debug port",
7+
"chrome.file.description": "A local html file to open in the browser",
8+
"chrome.url.description": "Will search for a tab with this EXACT url and attach to it, if found",
9+
"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 \"/\"",
10+
"chrome.pathMapping.description": "A mapping of URLs/paths to local folders, to resolve scripts in Chrome to scripts on disk",
11+
"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.",
12+
"chrome.runtimeArgs.description": "Optional arguments passed to the runtime executable.",
13+
"chrome.env.description": "Optional dictionary of environment key/value pairs.",
14+
"chrome.cwd.description": "Optional working directory for the runtime executable.",
15+
"chrome.sourceMaps.description": "Use JavaScript source maps (if they exist).",
16+
"chrome.diagnosticLogging.description": "When true, the adapter logs its own diagnostic info to the console in a human readable format",
17+
"chrome.verboseDiagnosticLogging.description": "When true, the adapter logs all traffic with the client and target (as well as the info logged by 'diagnosticLogging')",
18+
"chrome.trace.description": "When 'true', the debugger will log tracing info to a file. When 'verbose', it will also show logs in the console.",
19+
"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.",
20+
"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.",
21+
"chrome.smartStep.description": "Automatically step through generated code that cannot be mapped back to the original source.",
22+
"chrome.skipFiles.description": "An array of file or folder names, or path globs, to skip when debugging.",
23+
"chrome.timeout.description": "Retry for this number of milliseconds to connect to Chrome. Default is 10000 ms.",
24+
"chrome.disableNetworkCache.description": "Controls whether to skip the network cache for each request",
25+
"chrome.urlFilter.description": "Will search for a page with this url and attach to it, if found. Can have * wildcards.",
26+
"chrome.showAsyncStacks.description": "Show the async calls that led to the current call stack",
27+
"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.",
28+
"chrome.breakOnLoadStrategy.description": "The strategy to use for breakOnLoad.",
29+
"chrome.breakOnLoadStrategy.instrument.description": "Tell Chrome to pause as each script is loaded, resolving sourcemaps and setting breakpoints",
30+
"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

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"extension.description": "Depure seu código JavaScript no navegador Chrome ou em qualquer outro destino que suporte o protocolo de depuração do Chrome.",
3+
"chrome.toggleSkipping.title": "Chrome: Toggle Skipping This File",
4+
"chrome.toggleSmartStep.title": "Chrome: Toggle Smart Step",
5+
"chrome.port.description": "Porta a ser usada para depuração remota do Chrome.",
6+
"chrome.address.description": "Endereço TCP/IP da porta de depuração",
7+
"chrome.file.description": "Um arquivo HTML local para abrir no navegador",
8+
"chrome.url.description": "Busca uma guia com esta url EXATA e anexa à ele, se for encontrada",
9+
"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 \"/\"",
10+
"chrome.pathMapping.description": "Um mapeamento de URLs/caminhos para pastas locais, para resolver scripts no Chrome para scripts em disco",
11+
"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.",
12+
"chrome.runtimeArgs.description": "Argumentos opcionais passados ao executável runtime.",
13+
"chrome.env.description": "Dicionário opcional de pares chave/valor de ambiente.",
14+
"chrome.cwd.description": "Diretório de trabalho opcional para o executável do runtime.",
15+
"chrome.sourceMaps.description": "Use mapeamento de fonte JavaScript (se existir).",
16+
"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",
17+
"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')",
18+
"chrome.trace.description": "Quando 'verdadeiro', o depurador registrará informações de rastreamento em um arquivo. Quando 'detalhado', também mostrará os logs no console.",
19+
"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.",
20+
"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.",
21+
"chrome.smartStep.description": "Código gerado automaticamente que não pode ser mapeado de volta para o código original. ",
22+
"chrome.skipFiles.description": "Uma matriz de nomes de arquivos ou pastas, ou globs de caminho, para ignorar quando estiver depurando.",
23+
"chrome.timeout.description": "Esperar este número de milissegundos para se reconectar ao Chrome. O padrão é 10000 ms.",
24+
"chrome.disableNetworkCache.description": "Controla se deve ignorar o cache de rede para cada solicitação",
25+
"chrome.urlFilter.description": "Procura uma página com esta url e anexa-a à ela, se encontrado. Pode ter caracteres curingas *.",
26+
"chrome.showAsyncStacks.description": "Mostra as chamadas assíncronas que levam à pilha de chamadas atual",
27+
"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.",
28+
"chrome.breakOnLoadStrategy.description": "A estratégia a ser usada para breakOnLoad.",
29+
"chrome.breakOnLoadStrategy.instrument.description": "Informa o Chrome para pausar conforme cada script é carregado, resolvendo mapeamento de fontes e definindo pontos de parada.",
30+
"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+
}

0 commit comments

Comments
 (0)