├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .mocharc.json ├── .travis.yml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── License.txt ├── README.md ├── SECURITY.md ├── ThirdPartyNotices.txt ├── azure-pipelines.yml ├── browser.d.ts ├── browser.js ├── lsif.json ├── node.d.ts ├── node.js ├── package.json ├── src ├── browser │ ├── main.ts │ └── tsconfig.json ├── common │ ├── common.ts │ ├── ral.ts │ └── tsconfig.json ├── node │ ├── main.ts │ ├── test │ │ ├── data.nls.de.json │ │ ├── data.nls.json │ │ ├── dataStructured.nls.de.json │ │ ├── localize.test.ts │ │ ├── nls.bundle.de.json │ │ ├── nls.metadata.header.json │ │ └── tsconfig.json │ └── tsconfig.json └── test │ ├── api.test.ts │ └── tsconfig.json ├── tsconfig.base.json └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | lib 2 | node_modules -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/.mocharc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /browser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/browser.d.ts -------------------------------------------------------------------------------- /browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/browser.js -------------------------------------------------------------------------------- /lsif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/lsif.json -------------------------------------------------------------------------------- /node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/node.d.ts -------------------------------------------------------------------------------- /node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/package.json -------------------------------------------------------------------------------- /src/browser/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/src/browser/main.ts -------------------------------------------------------------------------------- /src/browser/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/src/browser/tsconfig.json -------------------------------------------------------------------------------- /src/common/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/src/common/common.ts -------------------------------------------------------------------------------- /src/common/ral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/src/common/ral.ts -------------------------------------------------------------------------------- /src/common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/src/common/tsconfig.json -------------------------------------------------------------------------------- /src/node/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/src/node/main.ts -------------------------------------------------------------------------------- /src/node/test/data.nls.de.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Guten Tag Welt" 3 | ] -------------------------------------------------------------------------------- /src/node/test/data.nls.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Hello World" 3 | ] -------------------------------------------------------------------------------- /src/node/test/dataStructured.nls.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/src/node/test/dataStructured.nls.de.json -------------------------------------------------------------------------------- /src/node/test/localize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/src/node/test/localize.test.ts -------------------------------------------------------------------------------- /src/node/test/nls.bundle.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/src/node/test/nls.bundle.de.json -------------------------------------------------------------------------------- /src/node/test/nls.metadata.header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/src/node/test/nls.metadata.header.json -------------------------------------------------------------------------------- /src/node/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/src/node/test/tsconfig.json -------------------------------------------------------------------------------- /src/node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/src/node/tsconfig.json -------------------------------------------------------------------------------- /src/test/api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/src/test/api.test.ts -------------------------------------------------------------------------------- /src/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/src/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-nls/HEAD/tsconfig.json --------------------------------------------------------------------------------