├── .CodeQL.yml ├── .ci ├── common-validation.yml ├── master-pipeline.yml └── pr-pipeline.yml ├── .eslintrc.js ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .husky └── pre-commit ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CordovaTypings ├── angularjs │ └── angular.d.ts ├── cordova-ionic │ └── plugins │ │ └── keyboard.d.ts ├── cordova │ ├── cordova.d.ts │ └── plugins │ │ ├── BarcodeScanner.d.ts │ │ ├── BatteryStatus.d.ts │ │ ├── Camera.d.ts │ │ ├── Contacts.d.ts │ │ ├── Device.d.ts │ │ ├── DeviceMotion.d.ts │ │ ├── DeviceOrientation.d.ts │ │ ├── Dialogs.d.ts │ │ ├── FileSystem.d.ts │ │ ├── FileTransfer.d.ts │ │ ├── Globalization.d.ts │ │ ├── InAppBrowser.d.ts │ │ ├── Media.d.ts │ │ ├── MediaCapture.d.ts │ │ ├── NetworkInformation.d.ts │ │ ├── Push.d.ts │ │ ├── Splashscreen.d.ts │ │ ├── StatusBar.d.ts │ │ ├── Toast.d.ts │ │ ├── Vibration.d.ts │ │ └── WebSQL.d.ts ├── ionic │ └── ionic.d.ts └── jquery │ └── jquery.d.ts ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── ThirdPartyNotices.txt ├── gulp_scripts ├── builder.js ├── cleaner.js ├── formatter.js ├── packager.js ├── release.js ├── tester.js ├── translator.js ├── watcher.js └── webpackBundle.js ├── gulpfile.js ├── i18n ├── chs │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── configurationReader.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── extensionMessaging.i18n.json │ │ ├── cordova.i18n.json │ │ ├── debugger │ │ ├── cdp-proxy │ │ │ └── debuggerEndpointHelper.i18n.json │ │ ├── cordovaDebugSession.i18n.json │ │ ├── cordovaIosDeviceLauncher.i18n.json │ │ ├── extension.i18n.json │ │ └── jsDebugConfigAdapter.i18n.json │ │ ├── extension │ │ ├── abstractMobilePlatform.i18n.json │ │ ├── android │ │ │ └── androidPlatform.i18n.json │ │ ├── browser │ │ │ └── browserPlatform.i18n.json │ │ ├── commands │ │ │ └── commandUtil.i18n.json │ │ ├── completionProviders.i18n.json │ │ ├── cordova-extension.i18n.json │ │ ├── cordovaWorkspaceManager.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── ios │ │ │ └── iosPlatform.i18n.json │ │ └── simulate.i18n.json │ │ └── utils │ │ ├── android │ │ ├── adb.i18n.json │ │ └── androidTargetManager.i18n.json │ │ ├── cordovaCommandHelper.i18n.json │ │ ├── cordovaProjectHelper.i18n.json │ │ ├── ionicDevServer.i18n.json │ │ ├── ios │ │ └── iOSTargetManager.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── settingsHelper.i18n.json │ │ └── telemetryHelper.i18n.json ├── cht │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── configurationReader.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── extensionMessaging.i18n.json │ │ ├── cordova.i18n.json │ │ ├── debugger │ │ ├── cdp-proxy │ │ │ └── debuggerEndpointHelper.i18n.json │ │ ├── cordovaDebugSession.i18n.json │ │ ├── cordovaIosDeviceLauncher.i18n.json │ │ ├── extension.i18n.json │ │ └── jsDebugConfigAdapter.i18n.json │ │ ├── extension │ │ ├── abstractMobilePlatform.i18n.json │ │ ├── android │ │ │ └── androidPlatform.i18n.json │ │ ├── browser │ │ │ └── browserPlatform.i18n.json │ │ ├── commands │ │ │ └── commandUtil.i18n.json │ │ ├── completionProviders.i18n.json │ │ ├── cordova-extension.i18n.json │ │ ├── cordovaWorkspaceManager.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── ios │ │ │ └── iosPlatform.i18n.json │ │ └── simulate.i18n.json │ │ └── utils │ │ ├── android │ │ ├── adb.i18n.json │ │ └── androidTargetManager.i18n.json │ │ ├── cordovaCommandHelper.i18n.json │ │ ├── cordovaProjectHelper.i18n.json │ │ ├── ionicDevServer.i18n.json │ │ ├── ios │ │ └── iOSTargetManager.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── settingsHelper.i18n.json │ │ └── telemetryHelper.i18n.json ├── csy │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── configurationReader.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── extensionMessaging.i18n.json │ │ ├── cordova.i18n.json │ │ ├── debugger │ │ ├── cdp-proxy │ │ │ └── debuggerEndpointHelper.i18n.json │ │ ├── cordovaDebugSession.i18n.json │ │ ├── cordovaIosDeviceLauncher.i18n.json │ │ ├── extension.i18n.json │ │ └── jsDebugConfigAdapter.i18n.json │ │ ├── extension │ │ ├── abstractMobilePlatform.i18n.json │ │ ├── android │ │ │ └── androidPlatform.i18n.json │ │ ├── browser │ │ │ └── browserPlatform.i18n.json │ │ ├── commands │ │ │ └── commandUtil.i18n.json │ │ ├── completionProviders.i18n.json │ │ ├── cordova-extension.i18n.json │ │ ├── cordovaWorkspaceManager.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── ios │ │ │ └── iosPlatform.i18n.json │ │ └── simulate.i18n.json │ │ └── utils │ │ ├── android │ │ ├── adb.i18n.json │ │ └── androidTargetManager.i18n.json │ │ ├── cordovaCommandHelper.i18n.json │ │ ├── cordovaProjectHelper.i18n.json │ │ ├── ionicDevServer.i18n.json │ │ ├── ios │ │ └── iOSTargetManager.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── settingsHelper.i18n.json │ │ └── telemetryHelper.i18n.json ├── deu │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── configurationReader.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── extensionMessaging.i18n.json │ │ ├── cordova.i18n.json │ │ ├── debugger │ │ ├── cdp-proxy │ │ │ └── debuggerEndpointHelper.i18n.json │ │ ├── cordovaDebugSession.i18n.json │ │ ├── cordovaIosDeviceLauncher.i18n.json │ │ ├── extension.i18n.json │ │ └── jsDebugConfigAdapter.i18n.json │ │ ├── extension │ │ ├── abstractMobilePlatform.i18n.json │ │ ├── android │ │ │ └── androidPlatform.i18n.json │ │ ├── browser │ │ │ └── browserPlatform.i18n.json │ │ ├── commands │ │ │ └── commandUtil.i18n.json │ │ ├── completionProviders.i18n.json │ │ ├── cordova-extension.i18n.json │ │ ├── cordovaWorkspaceManager.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── ios │ │ │ └── iosPlatform.i18n.json │ │ └── simulate.i18n.json │ │ └── utils │ │ ├── android │ │ ├── adb.i18n.json │ │ └── androidTargetManager.i18n.json │ │ ├── cordovaCommandHelper.i18n.json │ │ ├── cordovaProjectHelper.i18n.json │ │ ├── ionicDevServer.i18n.json │ │ ├── ios │ │ └── iOSTargetManager.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── settingsHelper.i18n.json │ │ └── telemetryHelper.i18n.json ├── esn │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── configurationReader.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── extensionMessaging.i18n.json │ │ ├── cordova.i18n.json │ │ ├── debugger │ │ ├── cdp-proxy │ │ │ └── debuggerEndpointHelper.i18n.json │ │ ├── cordovaDebugSession.i18n.json │ │ ├── cordovaIosDeviceLauncher.i18n.json │ │ ├── extension.i18n.json │ │ └── jsDebugConfigAdapter.i18n.json │ │ ├── extension │ │ ├── abstractMobilePlatform.i18n.json │ │ ├── android │ │ │ └── androidPlatform.i18n.json │ │ ├── browser │ │ │ └── browserPlatform.i18n.json │ │ ├── commands │ │ │ └── commandUtil.i18n.json │ │ ├── completionProviders.i18n.json │ │ ├── cordova-extension.i18n.json │ │ ├── cordovaWorkspaceManager.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── ios │ │ │ └── iosPlatform.i18n.json │ │ └── simulate.i18n.json │ │ └── utils │ │ ├── android │ │ ├── adb.i18n.json │ │ └── androidTargetManager.i18n.json │ │ ├── cordovaCommandHelper.i18n.json │ │ ├── cordovaProjectHelper.i18n.json │ │ ├── ionicDevServer.i18n.json │ │ ├── ios │ │ └── iOSTargetManager.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── settingsHelper.i18n.json │ │ └── telemetryHelper.i18n.json ├── fra │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── configurationReader.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── extensionMessaging.i18n.json │ │ ├── cordova.i18n.json │ │ ├── debugger │ │ ├── cdp-proxy │ │ │ └── debuggerEndpointHelper.i18n.json │ │ ├── cordovaDebugSession.i18n.json │ │ ├── cordovaIosDeviceLauncher.i18n.json │ │ ├── extension.i18n.json │ │ └── jsDebugConfigAdapter.i18n.json │ │ ├── extension │ │ ├── abstractMobilePlatform.i18n.json │ │ ├── android │ │ │ └── androidPlatform.i18n.json │ │ ├── browser │ │ │ └── browserPlatform.i18n.json │ │ ├── commands │ │ │ └── commandUtil.i18n.json │ │ ├── completionProviders.i18n.json │ │ ├── cordova-extension.i18n.json │ │ ├── cordovaWorkspaceManager.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── ios │ │ │ └── iosPlatform.i18n.json │ │ └── simulate.i18n.json │ │ └── utils │ │ ├── android │ │ ├── adb.i18n.json │ │ └── androidTargetManager.i18n.json │ │ ├── cordovaCommandHelper.i18n.json │ │ ├── cordovaProjectHelper.i18n.json │ │ ├── ionicDevServer.i18n.json │ │ ├── ios │ │ └── iOSTargetManager.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── settingsHelper.i18n.json │ │ └── telemetryHelper.i18n.json ├── ita │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── configurationReader.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── extensionMessaging.i18n.json │ │ ├── cordova.i18n.json │ │ ├── debugger │ │ ├── cdp-proxy │ │ │ └── debuggerEndpointHelper.i18n.json │ │ ├── cordovaDebugSession.i18n.json │ │ ├── cordovaIosDeviceLauncher.i18n.json │ │ ├── extension.i18n.json │ │ └── jsDebugConfigAdapter.i18n.json │ │ ├── extension │ │ ├── abstractMobilePlatform.i18n.json │ │ ├── android │ │ │ └── androidPlatform.i18n.json │ │ ├── browser │ │ │ └── browserPlatform.i18n.json │ │ ├── commands │ │ │ └── commandUtil.i18n.json │ │ ├── completionProviders.i18n.json │ │ ├── cordova-extension.i18n.json │ │ ├── cordovaWorkspaceManager.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── ios │ │ │ └── iosPlatform.i18n.json │ │ └── simulate.i18n.json │ │ └── utils │ │ ├── android │ │ ├── adb.i18n.json │ │ └── androidTargetManager.i18n.json │ │ ├── cordovaCommandHelper.i18n.json │ │ ├── cordovaProjectHelper.i18n.json │ │ ├── ionicDevServer.i18n.json │ │ ├── ios │ │ └── iOSTargetManager.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── settingsHelper.i18n.json │ │ └── telemetryHelper.i18n.json ├── jpn │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── configurationReader.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── extensionMessaging.i18n.json │ │ ├── cordova.i18n.json │ │ ├── debugger │ │ ├── cdp-proxy │ │ │ └── debuggerEndpointHelper.i18n.json │ │ ├── cordovaDebugSession.i18n.json │ │ ├── cordovaIosDeviceLauncher.i18n.json │ │ ├── extension.i18n.json │ │ └── jsDebugConfigAdapter.i18n.json │ │ ├── extension │ │ ├── abstractMobilePlatform.i18n.json │ │ ├── android │ │ │ └── androidPlatform.i18n.json │ │ ├── browser │ │ │ └── browserPlatform.i18n.json │ │ ├── commands │ │ │ └── commandUtil.i18n.json │ │ ├── completionProviders.i18n.json │ │ ├── cordova-extension.i18n.json │ │ ├── cordovaWorkspaceManager.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── ios │ │ │ └── iosPlatform.i18n.json │ │ └── simulate.i18n.json │ │ └── utils │ │ ├── android │ │ ├── adb.i18n.json │ │ └── androidTargetManager.i18n.json │ │ ├── cordovaCommandHelper.i18n.json │ │ ├── cordovaProjectHelper.i18n.json │ │ ├── ionicDevServer.i18n.json │ │ ├── ios │ │ └── iOSTargetManager.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── settingsHelper.i18n.json │ │ └── telemetryHelper.i18n.json ├── kor │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── configurationReader.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── extensionMessaging.i18n.json │ │ ├── cordova.i18n.json │ │ ├── debugger │ │ ├── cdp-proxy │ │ │ └── debuggerEndpointHelper.i18n.json │ │ ├── cordovaDebugSession.i18n.json │ │ ├── cordovaIosDeviceLauncher.i18n.json │ │ ├── extension.i18n.json │ │ └── jsDebugConfigAdapter.i18n.json │ │ ├── extension │ │ ├── abstractMobilePlatform.i18n.json │ │ ├── android │ │ │ └── androidPlatform.i18n.json │ │ ├── browser │ │ │ └── browserPlatform.i18n.json │ │ ├── commands │ │ │ └── commandUtil.i18n.json │ │ ├── completionProviders.i18n.json │ │ ├── cordova-extension.i18n.json │ │ ├── cordovaWorkspaceManager.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── ios │ │ │ └── iosPlatform.i18n.json │ │ └── simulate.i18n.json │ │ └── utils │ │ ├── android │ │ ├── adb.i18n.json │ │ └── androidTargetManager.i18n.json │ │ ├── cordovaCommandHelper.i18n.json │ │ ├── cordovaProjectHelper.i18n.json │ │ ├── ionicDevServer.i18n.json │ │ ├── ios │ │ └── iOSTargetManager.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── settingsHelper.i18n.json │ │ └── telemetryHelper.i18n.json ├── plk │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── configurationReader.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── extensionMessaging.i18n.json │ │ ├── cordova.i18n.json │ │ ├── debugger │ │ ├── cdp-proxy │ │ │ └── debuggerEndpointHelper.i18n.json │ │ ├── cordovaDebugSession.i18n.json │ │ ├── cordovaIosDeviceLauncher.i18n.json │ │ ├── extension.i18n.json │ │ └── jsDebugConfigAdapter.i18n.json │ │ ├── extension │ │ ├── abstractMobilePlatform.i18n.json │ │ ├── android │ │ │ └── androidPlatform.i18n.json │ │ ├── browser │ │ │ └── browserPlatform.i18n.json │ │ ├── commands │ │ │ └── commandUtil.i18n.json │ │ ├── completionProviders.i18n.json │ │ ├── cordova-extension.i18n.json │ │ ├── cordovaWorkspaceManager.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── ios │ │ │ └── iosPlatform.i18n.json │ │ └── simulate.i18n.json │ │ └── utils │ │ ├── android │ │ ├── adb.i18n.json │ │ └── androidTargetManager.i18n.json │ │ ├── cordovaCommandHelper.i18n.json │ │ ├── cordovaProjectHelper.i18n.json │ │ ├── ionicDevServer.i18n.json │ │ ├── ios │ │ └── iOSTargetManager.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── settingsHelper.i18n.json │ │ └── telemetryHelper.i18n.json ├── ptb │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── configurationReader.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── extensionMessaging.i18n.json │ │ ├── cordova.i18n.json │ │ ├── debugger │ │ ├── cdp-proxy │ │ │ └── debuggerEndpointHelper.i18n.json │ │ ├── cordovaDebugSession.i18n.json │ │ ├── cordovaIosDeviceLauncher.i18n.json │ │ ├── extension.i18n.json │ │ └── jsDebugConfigAdapter.i18n.json │ │ ├── extension │ │ ├── abstractMobilePlatform.i18n.json │ │ ├── android │ │ │ └── androidPlatform.i18n.json │ │ ├── browser │ │ │ └── browserPlatform.i18n.json │ │ ├── commands │ │ │ └── commandUtil.i18n.json │ │ ├── completionProviders.i18n.json │ │ ├── cordova-extension.i18n.json │ │ ├── cordovaWorkspaceManager.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── ios │ │ │ └── iosPlatform.i18n.json │ │ └── simulate.i18n.json │ │ └── utils │ │ ├── android │ │ ├── adb.i18n.json │ │ └── androidTargetManager.i18n.json │ │ ├── cordovaCommandHelper.i18n.json │ │ ├── cordovaProjectHelper.i18n.json │ │ ├── ionicDevServer.i18n.json │ │ ├── ios │ │ └── iOSTargetManager.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── settingsHelper.i18n.json │ │ └── telemetryHelper.i18n.json ├── rus │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── configurationReader.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── extensionMessaging.i18n.json │ │ ├── cordova.i18n.json │ │ ├── debugger │ │ ├── cdp-proxy │ │ │ └── debuggerEndpointHelper.i18n.json │ │ ├── cordovaDebugSession.i18n.json │ │ ├── cordovaIosDeviceLauncher.i18n.json │ │ ├── extension.i18n.json │ │ └── jsDebugConfigAdapter.i18n.json │ │ ├── extension │ │ ├── abstractMobilePlatform.i18n.json │ │ ├── android │ │ │ └── androidPlatform.i18n.json │ │ ├── browser │ │ │ └── browserPlatform.i18n.json │ │ ├── commands │ │ │ └── commandUtil.i18n.json │ │ ├── completionProviders.i18n.json │ │ ├── cordova-extension.i18n.json │ │ ├── cordovaWorkspaceManager.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── ios │ │ │ └── iosPlatform.i18n.json │ │ └── simulate.i18n.json │ │ └── utils │ │ ├── android │ │ ├── adb.i18n.json │ │ └── androidTargetManager.i18n.json │ │ ├── cordovaCommandHelper.i18n.json │ │ ├── cordovaProjectHelper.i18n.json │ │ ├── ionicDevServer.i18n.json │ │ ├── ios │ │ └── iOSTargetManager.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── settingsHelper.i18n.json │ │ └── telemetryHelper.i18n.json └── trk │ ├── package.i18n.json │ └── src │ ├── common │ ├── configurationReader.i18n.json │ ├── error │ │ └── errorStrings.i18n.json │ └── extensionMessaging.i18n.json │ ├── cordova.i18n.json │ ├── debugger │ ├── cdp-proxy │ │ └── debuggerEndpointHelper.i18n.json │ ├── cordovaDebugSession.i18n.json │ ├── cordovaIosDeviceLauncher.i18n.json │ ├── extension.i18n.json │ └── jsDebugConfigAdapter.i18n.json │ ├── extension │ ├── abstractMobilePlatform.i18n.json │ ├── android │ │ └── androidPlatform.i18n.json │ ├── browser │ │ └── browserPlatform.i18n.json │ ├── commands │ │ └── commandUtil.i18n.json │ ├── completionProviders.i18n.json │ ├── cordova-extension.i18n.json │ ├── cordovaWorkspaceManager.i18n.json │ ├── debugConfigurationProvider.i18n.json │ ├── ios │ │ └── iosPlatform.i18n.json │ └── simulate.i18n.json │ └── utils │ ├── android │ ├── adb.i18n.json │ └── androidTargetManager.i18n.json │ ├── cordovaCommandHelper.i18n.json │ ├── cordovaProjectHelper.i18n.json │ ├── ionicDevServer.i18n.json │ ├── ios │ └── iOSTargetManager.i18n.json │ ├── mobileTargetManager.i18n.json │ ├── settingsHelper.i18n.json │ └── telemetryHelper.i18n.json ├── images ├── choose-debugger.png ├── command-palette.png ├── configure-gear-icon.png ├── debug-configurations.png ├── debug-icon.png ├── debug-targets.png ├── debug-view-icon.png ├── icon.png ├── intellisense.png ├── ionic-intellisense.png ├── ionic_html_snippet.png ├── ionic_javascript_snippet.png ├── launch-config.png ├── overview.png ├── restart-cordova-debugging-button.png ├── run-and-debug.png ├── select-debugger.png ├── simulate-debugging.png ├── sync-light.svg ├── sync.svg └── typescript-version.png ├── package.json ├── package.nls.cs.json ├── package.nls.de.json ├── package.nls.es.json ├── package.nls.fr.json ├── package.nls.it.json ├── package.nls.ja.json ├── package.nls.json ├── package.nls.ko.json ├── package.nls.pl.json ├── package.nls.pt-br.json ├── package.nls.ru.json ├── package.nls.tr.json ├── package.nls.zh-cn.json ├── package.nls.zh-tw.json ├── pluginTypings.json ├── prepareBuild.bat ├── release ├── AdditionalAttributions.txt ├── LICENSE.txt └── ThirdPartyNotices.txt ├── scripts └── terminateProcess.sh ├── snippets ├── ionicHtml.json └── ionicJs.json ├── src ├── common │ ├── configurationHelper.ts │ ├── configurationReader.ts │ ├── customRequire.ts │ ├── error │ │ ├── errorHelper.ts │ │ ├── errorStrings.ts │ │ ├── internalError.ts │ │ └── internalErrorCode.ts │ ├── node │ │ ├── childProcess.ts │ │ └── promise.ts │ ├── simulationInfo.ts │ ├── utils.ts │ └── xcparseConfiguration.ts ├── debugger │ ├── cdp-proxy │ │ ├── CDPMessageHandlers │ │ │ ├── CDPAPINames.ts │ │ │ ├── CDPMessageHandlerCreator.ts │ │ │ ├── abstraction │ │ │ │ ├── CDPMessageHandlerBase.ts │ │ │ │ ├── chromeCDPMessageHandlerBase.ts │ │ │ │ └── safariCDPMessageHandlerBase.ts │ │ │ └── implementation │ │ │ │ ├── chromeCordovaCDPMessageHandler.ts │ │ │ │ ├── chromeIonicCDPMessageHandler.ts │ │ │ │ ├── safariCordovaCDPMessageHandler.ts │ │ │ │ └── safariIonicCDPMessageHandler.ts │ │ ├── cordovaCDPProxy.ts │ │ ├── debuggerEndpointHelper.ts │ │ └── sourcemapPathTransformer.ts │ ├── cordovaDebugSession.ts │ ├── cordovaIosDeviceLauncher.ts │ ├── debugSessionWrapper.ts │ ├── extension.ts │ ├── jsDebugConfigAdapter.ts │ └── requestArgs.ts ├── extension │ ├── abstractMobilePlatform.ts │ ├── abstractPlatform.ts │ ├── android │ │ └── androidPlatform.ts │ ├── browser │ │ └── browserPlatform.ts │ ├── commands │ │ ├── clean.ts │ │ ├── commandUtil.ts │ │ ├── commands.ts │ │ ├── cordovaBuild.ts │ │ ├── cordovaPrepare.ts │ │ ├── cordovaRequirements.ts │ │ ├── cordovaRun.ts │ │ ├── ionicBuild.ts │ │ ├── ionicPrepare.ts │ │ ├── ionicRun.ts │ │ ├── networkView.ts │ │ ├── restart.ts │ │ ├── simulateAndroid.ts │ │ ├── simulateIos.ts │ │ └── telemetry.ts │ ├── completionProviders.ts │ ├── cordova-extension.ts │ ├── cordovaSessionManager.ts │ ├── cordovaWorkspaceManager.ts │ ├── debugConfigurationProvider.ts │ ├── ios │ │ └── iosPlatform.ts │ ├── platformAttachResult.ts │ ├── platformLaunchResult.ts │ ├── platformOptions.ts │ ├── projectsStorage.ts │ └── simulate.ts └── utils │ ├── android │ ├── adb.ts │ └── androidTargetManager.ts │ ├── cordovaAndroidEnvironmentHelper.ts │ ├── cordovaCommandHelper.ts │ ├── cordovaProjectHelper.ts │ ├── cordovaSimulateTelemetry.ts │ ├── extensionHelper.ts │ ├── hash.ts │ ├── ionicDevServer.ts │ ├── ios │ ├── PlistBuddy.ts │ └── iOSTargetManager.ts │ ├── launchScenariosManager.ts │ ├── log │ ├── logHelper.ts │ └── outputChannelLogger.ts │ ├── mobileTarget.ts │ ├── mobileTargetManager.ts │ ├── nodeVersionHelper.ts │ ├── settingsHelper.ts │ ├── simulateHelper.ts │ ├── telemetry.ts │ ├── telemetryHelper.ts │ └── tsdHelper.ts ├── test ├── cdp-proxy │ └── cordovaCDPProxy.test.ts ├── common │ ├── configurationHelper.test.ts │ ├── error │ │ └── errorHelper.test.ts │ └── xcparseConfigurations.test.ts ├── cordova.test.ts ├── debugger │ ├── commandExecutor.test.ts │ ├── cordovaIosDeviceLauncher.test.ts │ └── electronDebug.test.ts ├── extension │ ├── abstractMobilePlatform.test.ts │ ├── abstractPlatform.test.ts │ ├── androidTargetManager.test.ts │ ├── commands.test.ts │ ├── completionProvider.test.ts │ ├── extensionHelper.test.ts │ ├── simulateHelper.test.ts │ ├── telemetryHelper.test.ts │ └── сordovaProjectHelper.test.ts ├── index.ts ├── localization │ ├── index.ts │ ├── localization.test.ts │ └── runTest.ts ├── mochaReporterConfig.json ├── resources │ ├── testAndroidFileModeProject │ │ ├── disableFileModeConfig.xml │ │ └── enableFileModeConfig.xml │ ├── testCordovaProject │ │ ├── config.xml │ │ ├── merges │ │ │ └── android │ │ │ │ └── js │ │ │ │ └── merged.js │ │ └── www │ │ │ ├── css │ │ │ └── index.css │ │ │ ├── img │ │ │ └── logo.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── index.js │ │ │ ├── merged.js │ │ │ ├── typescript.js │ │ │ ├── typescript.js.map │ │ │ └── typescript.ts │ │ │ └── main.js │ ├── testPbxprojFile │ │ └── project.pbxproj │ └── testSubfolderProject │ │ └── cordovaProject │ │ ├── .vscode │ │ └── simulate │ │ │ └── sim-host.json │ │ ├── config.xml │ │ └── platforms │ │ ├── android │ │ └── android.json │ │ ├── browser │ │ └── browser.json │ │ └── ios │ │ └── ios.json ├── runTest.ts └── testUtils.ts ├── tools └── gulp-extras.js ├── tsconfig.json └── typings ├── cordova-serve └── cordova-serve.d.ts ├── cordova-simulate └── cordova-simulate.d.ts ├── should └── should.d.ts ├── vscode-extension-telemetry └── vscode-extension-telemetry.d.ts └── winreg └── winreg.d.ts /.CodeQL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/.CodeQL.yml -------------------------------------------------------------------------------- /.ci/common-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/.ci/common-validation.yml -------------------------------------------------------------------------------- /.ci/master-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/.ci/master-pipeline.yml -------------------------------------------------------------------------------- /.ci/pr-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/.ci/pr-pipeline.yml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx gulp lint 5 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CordovaTypings/angularjs/angular.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/angularjs/angular.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova-ionic/plugins/keyboard.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova-ionic/plugins/keyboard.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/cordova.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/cordova.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/BarcodeScanner.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/BarcodeScanner.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/BatteryStatus.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/BatteryStatus.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/Camera.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/Camera.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/Contacts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/Contacts.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/Device.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/Device.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/DeviceMotion.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/DeviceMotion.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/DeviceOrientation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/DeviceOrientation.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/Dialogs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/Dialogs.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/FileSystem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/FileSystem.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/FileTransfer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/FileTransfer.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/Globalization.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/Globalization.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/InAppBrowser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/InAppBrowser.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/Media.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/Media.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/MediaCapture.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/MediaCapture.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/NetworkInformation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/NetworkInformation.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/Push.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/Push.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/Splashscreen.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/Splashscreen.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/StatusBar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/StatusBar.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/Toast.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/Toast.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/Vibration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/Vibration.d.ts -------------------------------------------------------------------------------- /CordovaTypings/cordova/plugins/WebSQL.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/cordova/plugins/WebSQL.d.ts -------------------------------------------------------------------------------- /CordovaTypings/ionic/ionic.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/ionic/ionic.d.ts -------------------------------------------------------------------------------- /CordovaTypings/jquery/jquery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/CordovaTypings/jquery/jquery.d.ts -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /gulp_scripts/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/gulp_scripts/builder.js -------------------------------------------------------------------------------- /gulp_scripts/cleaner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/gulp_scripts/cleaner.js -------------------------------------------------------------------------------- /gulp_scripts/formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/gulp_scripts/formatter.js -------------------------------------------------------------------------------- /gulp_scripts/packager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/gulp_scripts/packager.js -------------------------------------------------------------------------------- /gulp_scripts/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/gulp_scripts/release.js -------------------------------------------------------------------------------- /gulp_scripts/tester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/gulp_scripts/tester.js -------------------------------------------------------------------------------- /gulp_scripts/translator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/gulp_scripts/translator.js -------------------------------------------------------------------------------- /gulp_scripts/watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/gulp_scripts/watcher.js -------------------------------------------------------------------------------- /gulp_scripts/webpackBundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/gulp_scripts/webpackBundle.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/gulpfile.js -------------------------------------------------------------------------------- /i18n/chs/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/package.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/common/configurationReader.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/common/configurationReader.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/common/extensionMessaging.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/common/extensionMessaging.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/cordova.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/cordova.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/debugger/cordovaDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/debugger/cordovaDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/debugger/cordovaIosDeviceLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/debugger/cordovaIosDeviceLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/debugger/extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/debugger/extension.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/debugger/jsDebugConfigAdapter.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/debugger/jsDebugConfigAdapter.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/abstractMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/extension/abstractMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/browser/browserPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/extension/browser/browserPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/commands/commandUtil.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/extension/commands/commandUtil.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/completionProviders.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/extension/completionProviders.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/cordova-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/extension/cordova-extension.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/cordovaWorkspaceManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/extension/cordovaWorkspaceManager.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/debugConfigurationProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/extension/debugConfigurationProvider.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/ios/iosPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/extension/ios/iosPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/simulate.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/extension/simulate.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/utils/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/utils/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/utils/android/androidTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/utils/android/androidTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/utils/cordovaCommandHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/utils/cordovaCommandHelper.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/utils/cordovaProjectHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/utils/cordovaProjectHelper.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/utils/ionicDevServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/utils/ionicDevServer.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/utils/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/utils/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/utils/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/utils/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/utils/settingsHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/utils/settingsHelper.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/utils/telemetryHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/chs/src/utils/telemetryHelper.i18n.json -------------------------------------------------------------------------------- /i18n/cht/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/package.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/common/configurationReader.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/common/configurationReader.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/common/extensionMessaging.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/common/extensionMessaging.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/cordova.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/cordova.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/debugger/cordovaDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/debugger/cordovaDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/debugger/cordovaIosDeviceLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/debugger/cordovaIosDeviceLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/debugger/extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/debugger/extension.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/debugger/jsDebugConfigAdapter.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/debugger/jsDebugConfigAdapter.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/abstractMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/extension/abstractMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/browser/browserPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/extension/browser/browserPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/commands/commandUtil.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/extension/commands/commandUtil.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/completionProviders.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/extension/completionProviders.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/cordova-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/extension/cordova-extension.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/cordovaWorkspaceManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/extension/cordovaWorkspaceManager.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/debugConfigurationProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/extension/debugConfigurationProvider.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/ios/iosPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/extension/ios/iosPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/simulate.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/extension/simulate.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/utils/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/utils/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/utils/android/androidTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/utils/android/androidTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/utils/cordovaCommandHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/utils/cordovaCommandHelper.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/utils/cordovaProjectHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/utils/cordovaProjectHelper.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/utils/ionicDevServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/utils/ionicDevServer.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/utils/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/utils/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/utils/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/utils/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/utils/settingsHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/utils/settingsHelper.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/utils/telemetryHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/cht/src/utils/telemetryHelper.i18n.json -------------------------------------------------------------------------------- /i18n/csy/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/package.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/common/configurationReader.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/common/configurationReader.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/common/extensionMessaging.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/common/extensionMessaging.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/cordova.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/cordova.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/debugger/cordovaDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/debugger/cordovaDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/debugger/cordovaIosDeviceLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/debugger/cordovaIosDeviceLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/debugger/extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/debugger/extension.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/debugger/jsDebugConfigAdapter.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/debugger/jsDebugConfigAdapter.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/abstractMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/extension/abstractMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/browser/browserPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/extension/browser/browserPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/commands/commandUtil.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/extension/commands/commandUtil.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/completionProviders.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/extension/completionProviders.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/cordova-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/extension/cordova-extension.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/cordovaWorkspaceManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/extension/cordovaWorkspaceManager.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/debugConfigurationProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/extension/debugConfigurationProvider.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/ios/iosPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/extension/ios/iosPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/simulate.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/extension/simulate.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/utils/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/utils/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/utils/android/androidTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/utils/android/androidTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/utils/cordovaCommandHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/utils/cordovaCommandHelper.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/utils/cordovaProjectHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/utils/cordovaProjectHelper.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/utils/ionicDevServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/utils/ionicDevServer.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/utils/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/utils/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/utils/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/utils/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/utils/settingsHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/utils/settingsHelper.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/utils/telemetryHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/csy/src/utils/telemetryHelper.i18n.json -------------------------------------------------------------------------------- /i18n/deu/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/package.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/common/configurationReader.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/common/configurationReader.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/common/extensionMessaging.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/common/extensionMessaging.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/cordova.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/cordova.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/debugger/cordovaDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/debugger/cordovaDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/debugger/cordovaIosDeviceLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/debugger/cordovaIosDeviceLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/debugger/extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/debugger/extension.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/debugger/jsDebugConfigAdapter.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/debugger/jsDebugConfigAdapter.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/abstractMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/extension/abstractMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/browser/browserPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/extension/browser/browserPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/commands/commandUtil.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/extension/commands/commandUtil.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/completionProviders.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/extension/completionProviders.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/cordova-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/extension/cordova-extension.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/cordovaWorkspaceManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/extension/cordovaWorkspaceManager.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/debugConfigurationProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/extension/debugConfigurationProvider.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/ios/iosPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/extension/ios/iosPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/simulate.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/extension/simulate.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/utils/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/utils/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/utils/android/androidTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/utils/android/androidTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/utils/cordovaCommandHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/utils/cordovaCommandHelper.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/utils/cordovaProjectHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/utils/cordovaProjectHelper.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/utils/ionicDevServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/utils/ionicDevServer.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/utils/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/utils/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/utils/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/utils/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/utils/settingsHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/utils/settingsHelper.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/utils/telemetryHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/deu/src/utils/telemetryHelper.i18n.json -------------------------------------------------------------------------------- /i18n/esn/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/package.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/common/configurationReader.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/common/configurationReader.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/common/extensionMessaging.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/common/extensionMessaging.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/cordova.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/cordova.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/debugger/cordovaDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/debugger/cordovaDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/debugger/cordovaIosDeviceLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/debugger/cordovaIosDeviceLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/debugger/extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/debugger/extension.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/debugger/jsDebugConfigAdapter.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/debugger/jsDebugConfigAdapter.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/abstractMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/extension/abstractMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/browser/browserPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/extension/browser/browserPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/commands/commandUtil.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/extension/commands/commandUtil.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/completionProviders.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/extension/completionProviders.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/cordova-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/extension/cordova-extension.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/cordovaWorkspaceManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/extension/cordovaWorkspaceManager.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/debugConfigurationProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/extension/debugConfigurationProvider.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/ios/iosPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/extension/ios/iosPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/simulate.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/extension/simulate.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/utils/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/utils/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/utils/android/androidTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/utils/android/androidTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/utils/cordovaCommandHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/utils/cordovaCommandHelper.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/utils/cordovaProjectHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/utils/cordovaProjectHelper.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/utils/ionicDevServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/utils/ionicDevServer.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/utils/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/utils/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/utils/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/utils/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/utils/settingsHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/utils/settingsHelper.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/utils/telemetryHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/esn/src/utils/telemetryHelper.i18n.json -------------------------------------------------------------------------------- /i18n/fra/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/package.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/common/configurationReader.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/common/configurationReader.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/common/extensionMessaging.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/common/extensionMessaging.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/cordova.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/cordova.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/debugger/cordovaDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/debugger/cordovaDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/debugger/cordovaIosDeviceLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/debugger/cordovaIosDeviceLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/debugger/extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/debugger/extension.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/debugger/jsDebugConfigAdapter.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/debugger/jsDebugConfigAdapter.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/abstractMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/extension/abstractMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/browser/browserPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/extension/browser/browserPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/commands/commandUtil.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/extension/commands/commandUtil.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/completionProviders.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/extension/completionProviders.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/cordova-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/extension/cordova-extension.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/cordovaWorkspaceManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/extension/cordovaWorkspaceManager.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/debugConfigurationProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/extension/debugConfigurationProvider.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/ios/iosPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/extension/ios/iosPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/simulate.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/extension/simulate.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/utils/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/utils/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/utils/android/androidTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/utils/android/androidTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/utils/cordovaCommandHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/utils/cordovaCommandHelper.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/utils/cordovaProjectHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/utils/cordovaProjectHelper.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/utils/ionicDevServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/utils/ionicDevServer.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/utils/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/utils/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/utils/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/utils/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/utils/settingsHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/utils/settingsHelper.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/utils/telemetryHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/fra/src/utils/telemetryHelper.i18n.json -------------------------------------------------------------------------------- /i18n/ita/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/package.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/common/configurationReader.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/common/configurationReader.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/common/extensionMessaging.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/common/extensionMessaging.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/cordova.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/cordova.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/debugger/cordovaDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/debugger/cordovaDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/debugger/cordovaIosDeviceLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/debugger/cordovaIosDeviceLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/debugger/extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/debugger/extension.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/debugger/jsDebugConfigAdapter.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/debugger/jsDebugConfigAdapter.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/abstractMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/extension/abstractMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/browser/browserPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/extension/browser/browserPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/commands/commandUtil.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/extension/commands/commandUtil.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/completionProviders.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/extension/completionProviders.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/cordova-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/extension/cordova-extension.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/cordovaWorkspaceManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/extension/cordovaWorkspaceManager.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/debugConfigurationProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/extension/debugConfigurationProvider.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/ios/iosPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/extension/ios/iosPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/simulate.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/extension/simulate.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/utils/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/utils/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/utils/android/androidTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/utils/android/androidTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/utils/cordovaCommandHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/utils/cordovaCommandHelper.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/utils/cordovaProjectHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/utils/cordovaProjectHelper.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/utils/ionicDevServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/utils/ionicDevServer.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/utils/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/utils/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/utils/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/utils/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/utils/settingsHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/utils/settingsHelper.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/utils/telemetryHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ita/src/utils/telemetryHelper.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/package.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/common/configurationReader.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/common/configurationReader.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/common/extensionMessaging.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/common/extensionMessaging.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/cordova.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/cordova.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/debugger/cordovaDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/debugger/cordovaDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/debugger/cordovaIosDeviceLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/debugger/cordovaIosDeviceLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/debugger/extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/debugger/extension.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/debugger/jsDebugConfigAdapter.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/debugger/jsDebugConfigAdapter.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/abstractMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/extension/abstractMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/browser/browserPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/extension/browser/browserPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/commands/commandUtil.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/extension/commands/commandUtil.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/completionProviders.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/extension/completionProviders.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/cordova-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/extension/cordova-extension.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/cordovaWorkspaceManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/extension/cordovaWorkspaceManager.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/debugConfigurationProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/extension/debugConfigurationProvider.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/ios/iosPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/extension/ios/iosPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/simulate.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/extension/simulate.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/utils/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/utils/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/utils/android/androidTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/utils/android/androidTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/utils/cordovaCommandHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/utils/cordovaCommandHelper.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/utils/cordovaProjectHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/utils/cordovaProjectHelper.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/utils/ionicDevServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/utils/ionicDevServer.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/utils/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/utils/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/utils/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/utils/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/utils/settingsHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/utils/settingsHelper.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/utils/telemetryHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/jpn/src/utils/telemetryHelper.i18n.json -------------------------------------------------------------------------------- /i18n/kor/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/package.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/common/configurationReader.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/common/configurationReader.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/common/extensionMessaging.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/common/extensionMessaging.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/cordova.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/cordova.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/debugger/cordovaDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/debugger/cordovaDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/debugger/cordovaIosDeviceLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/debugger/cordovaIosDeviceLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/debugger/extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/debugger/extension.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/debugger/jsDebugConfigAdapter.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/debugger/jsDebugConfigAdapter.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/abstractMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/extension/abstractMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/browser/browserPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/extension/browser/browserPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/commands/commandUtil.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/extension/commands/commandUtil.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/completionProviders.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/extension/completionProviders.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/cordova-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/extension/cordova-extension.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/cordovaWorkspaceManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/extension/cordovaWorkspaceManager.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/debugConfigurationProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/extension/debugConfigurationProvider.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/ios/iosPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/extension/ios/iosPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/simulate.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/extension/simulate.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/utils/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/utils/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/utils/android/androidTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/utils/android/androidTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/utils/cordovaCommandHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/utils/cordovaCommandHelper.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/utils/cordovaProjectHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/utils/cordovaProjectHelper.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/utils/ionicDevServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/utils/ionicDevServer.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/utils/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/utils/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/utils/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/utils/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/utils/settingsHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/utils/settingsHelper.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/utils/telemetryHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/kor/src/utils/telemetryHelper.i18n.json -------------------------------------------------------------------------------- /i18n/plk/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/package.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/common/configurationReader.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/common/configurationReader.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/common/extensionMessaging.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/common/extensionMessaging.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/cordova.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/cordova.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/debugger/cordovaDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/debugger/cordovaDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/debugger/cordovaIosDeviceLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/debugger/cordovaIosDeviceLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/debugger/extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/debugger/extension.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/debugger/jsDebugConfigAdapter.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/debugger/jsDebugConfigAdapter.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/abstractMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/extension/abstractMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/browser/browserPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/extension/browser/browserPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/commands/commandUtil.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/extension/commands/commandUtil.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/completionProviders.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/extension/completionProviders.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/cordova-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/extension/cordova-extension.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/cordovaWorkspaceManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/extension/cordovaWorkspaceManager.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/debugConfigurationProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/extension/debugConfigurationProvider.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/ios/iosPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/extension/ios/iosPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/simulate.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/extension/simulate.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/utils/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/utils/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/utils/android/androidTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/utils/android/androidTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/utils/cordovaCommandHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/utils/cordovaCommandHelper.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/utils/cordovaProjectHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/utils/cordovaProjectHelper.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/utils/ionicDevServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/utils/ionicDevServer.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/utils/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/utils/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/utils/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/utils/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/utils/settingsHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/utils/settingsHelper.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/utils/telemetryHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/plk/src/utils/telemetryHelper.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/package.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/common/configurationReader.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/common/configurationReader.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/common/extensionMessaging.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/common/extensionMessaging.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/cordova.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/cordova.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/debugger/cordovaDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/debugger/cordovaDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/debugger/cordovaIosDeviceLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/debugger/cordovaIosDeviceLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/debugger/extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/debugger/extension.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/debugger/jsDebugConfigAdapter.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/debugger/jsDebugConfigAdapter.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/abstractMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/extension/abstractMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/browser/browserPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/extension/browser/browserPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/commands/commandUtil.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/extension/commands/commandUtil.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/completionProviders.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/extension/completionProviders.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/cordova-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/extension/cordova-extension.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/cordovaWorkspaceManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/extension/cordovaWorkspaceManager.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/debugConfigurationProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/extension/debugConfigurationProvider.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/ios/iosPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/extension/ios/iosPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/simulate.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/extension/simulate.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/utils/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/utils/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/utils/android/androidTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/utils/android/androidTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/utils/cordovaCommandHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/utils/cordovaCommandHelper.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/utils/cordovaProjectHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/utils/cordovaProjectHelper.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/utils/ionicDevServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/utils/ionicDevServer.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/utils/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/utils/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/utils/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/utils/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/utils/settingsHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/utils/settingsHelper.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/utils/telemetryHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/ptb/src/utils/telemetryHelper.i18n.json -------------------------------------------------------------------------------- /i18n/rus/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/package.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/common/configurationReader.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/common/configurationReader.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/common/extensionMessaging.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/common/extensionMessaging.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/cordova.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/cordova.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/debugger/cordovaDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/debugger/cordovaDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/debugger/cordovaIosDeviceLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/debugger/cordovaIosDeviceLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/debugger/extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/debugger/extension.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/debugger/jsDebugConfigAdapter.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/debugger/jsDebugConfigAdapter.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/abstractMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/extension/abstractMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/browser/browserPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/extension/browser/browserPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/commands/commandUtil.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/extension/commands/commandUtil.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/completionProviders.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/extension/completionProviders.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/cordova-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/extension/cordova-extension.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/cordovaWorkspaceManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/extension/cordovaWorkspaceManager.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/debugConfigurationProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/extension/debugConfigurationProvider.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/ios/iosPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/extension/ios/iosPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/simulate.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/extension/simulate.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/utils/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/utils/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/utils/android/androidTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/utils/android/androidTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/utils/cordovaCommandHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/utils/cordovaCommandHelper.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/utils/cordovaProjectHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/utils/cordovaProjectHelper.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/utils/ionicDevServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/utils/ionicDevServer.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/utils/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/utils/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/utils/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/utils/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/utils/settingsHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/utils/settingsHelper.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/utils/telemetryHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/rus/src/utils/telemetryHelper.i18n.json -------------------------------------------------------------------------------- /i18n/trk/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/package.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/common/configurationReader.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/common/configurationReader.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/common/extensionMessaging.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/common/extensionMessaging.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/cordova.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/cordova.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/debugger/cdp-proxy/debuggerEndpointHelper.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/debugger/cordovaDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/debugger/cordovaDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/debugger/cordovaIosDeviceLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/debugger/cordovaIosDeviceLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/debugger/extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/debugger/extension.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/debugger/jsDebugConfigAdapter.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/debugger/jsDebugConfigAdapter.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/abstractMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/extension/abstractMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/browser/browserPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/extension/browser/browserPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/commands/commandUtil.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/extension/commands/commandUtil.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/completionProviders.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/extension/completionProviders.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/cordova-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/extension/cordova-extension.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/cordovaWorkspaceManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/extension/cordovaWorkspaceManager.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/debugConfigurationProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/extension/debugConfigurationProvider.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/ios/iosPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/extension/ios/iosPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/simulate.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/extension/simulate.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/utils/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/utils/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/utils/android/androidTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/utils/android/androidTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/utils/cordovaCommandHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/utils/cordovaCommandHelper.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/utils/cordovaProjectHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/utils/cordovaProjectHelper.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/utils/ionicDevServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/utils/ionicDevServer.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/utils/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/utils/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/utils/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/utils/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/utils/settingsHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/utils/settingsHelper.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/utils/telemetryHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/i18n/trk/src/utils/telemetryHelper.i18n.json -------------------------------------------------------------------------------- /images/choose-debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/choose-debugger.png -------------------------------------------------------------------------------- /images/command-palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/command-palette.png -------------------------------------------------------------------------------- /images/configure-gear-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/configure-gear-icon.png -------------------------------------------------------------------------------- /images/debug-configurations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/debug-configurations.png -------------------------------------------------------------------------------- /images/debug-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/debug-icon.png -------------------------------------------------------------------------------- /images/debug-targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/debug-targets.png -------------------------------------------------------------------------------- /images/debug-view-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/debug-view-icon.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/intellisense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/intellisense.png -------------------------------------------------------------------------------- /images/ionic-intellisense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/ionic-intellisense.png -------------------------------------------------------------------------------- /images/ionic_html_snippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/ionic_html_snippet.png -------------------------------------------------------------------------------- /images/ionic_javascript_snippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/ionic_javascript_snippet.png -------------------------------------------------------------------------------- /images/launch-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/launch-config.png -------------------------------------------------------------------------------- /images/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/overview.png -------------------------------------------------------------------------------- /images/restart-cordova-debugging-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/restart-cordova-debugging-button.png -------------------------------------------------------------------------------- /images/run-and-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/run-and-debug.png -------------------------------------------------------------------------------- /images/select-debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/select-debugger.png -------------------------------------------------------------------------------- /images/simulate-debugging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/simulate-debugging.png -------------------------------------------------------------------------------- /images/sync-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/sync-light.svg -------------------------------------------------------------------------------- /images/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/sync.svg -------------------------------------------------------------------------------- /images/typescript-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/images/typescript-version.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/package.json -------------------------------------------------------------------------------- /package.nls.cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/package.nls.cs.json -------------------------------------------------------------------------------- /package.nls.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/package.nls.de.json -------------------------------------------------------------------------------- /package.nls.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/package.nls.es.json -------------------------------------------------------------------------------- /package.nls.fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/package.nls.fr.json -------------------------------------------------------------------------------- /package.nls.it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/package.nls.it.json -------------------------------------------------------------------------------- /package.nls.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/package.nls.ja.json -------------------------------------------------------------------------------- /package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/package.nls.json -------------------------------------------------------------------------------- /package.nls.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/package.nls.ko.json -------------------------------------------------------------------------------- /package.nls.pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/package.nls.pl.json -------------------------------------------------------------------------------- /package.nls.pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/package.nls.pt-br.json -------------------------------------------------------------------------------- /package.nls.ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/package.nls.ru.json -------------------------------------------------------------------------------- /package.nls.tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/package.nls.tr.json -------------------------------------------------------------------------------- /package.nls.zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/package.nls.zh-cn.json -------------------------------------------------------------------------------- /package.nls.zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/package.nls.zh-tw.json -------------------------------------------------------------------------------- /pluginTypings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/pluginTypings.json -------------------------------------------------------------------------------- /prepareBuild.bat: -------------------------------------------------------------------------------- 1 | path node_modules\.bin;%PATH% 2 | -------------------------------------------------------------------------------- /release/AdditionalAttributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/release/AdditionalAttributions.txt -------------------------------------------------------------------------------- /release/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/release/LICENSE.txt -------------------------------------------------------------------------------- /release/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/release/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /scripts/terminateProcess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/scripts/terminateProcess.sh -------------------------------------------------------------------------------- /snippets/ionicHtml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/snippets/ionicHtml.json -------------------------------------------------------------------------------- /snippets/ionicJs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/snippets/ionicJs.json -------------------------------------------------------------------------------- /src/common/configurationHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/common/configurationHelper.ts -------------------------------------------------------------------------------- /src/common/configurationReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/common/configurationReader.ts -------------------------------------------------------------------------------- /src/common/customRequire.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/common/customRequire.ts -------------------------------------------------------------------------------- /src/common/error/errorHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/common/error/errorHelper.ts -------------------------------------------------------------------------------- /src/common/error/errorStrings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/common/error/errorStrings.ts -------------------------------------------------------------------------------- /src/common/error/internalError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/common/error/internalError.ts -------------------------------------------------------------------------------- /src/common/error/internalErrorCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/common/error/internalErrorCode.ts -------------------------------------------------------------------------------- /src/common/node/childProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/common/node/childProcess.ts -------------------------------------------------------------------------------- /src/common/node/promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/common/node/promise.ts -------------------------------------------------------------------------------- /src/common/simulationInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/common/simulationInfo.ts -------------------------------------------------------------------------------- /src/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/common/utils.ts -------------------------------------------------------------------------------- /src/common/xcparseConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/common/xcparseConfiguration.ts -------------------------------------------------------------------------------- /src/debugger/cdp-proxy/CDPMessageHandlers/CDPAPINames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/cdp-proxy/CDPMessageHandlers/CDPAPINames.ts -------------------------------------------------------------------------------- /src/debugger/cdp-proxy/CDPMessageHandlers/CDPMessageHandlerCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/cdp-proxy/CDPMessageHandlers/CDPMessageHandlerCreator.ts -------------------------------------------------------------------------------- /src/debugger/cdp-proxy/CDPMessageHandlers/abstraction/CDPMessageHandlerBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/cdp-proxy/CDPMessageHandlers/abstraction/CDPMessageHandlerBase.ts -------------------------------------------------------------------------------- /src/debugger/cdp-proxy/CDPMessageHandlers/abstraction/chromeCDPMessageHandlerBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/cdp-proxy/CDPMessageHandlers/abstraction/chromeCDPMessageHandlerBase.ts -------------------------------------------------------------------------------- /src/debugger/cdp-proxy/CDPMessageHandlers/abstraction/safariCDPMessageHandlerBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/cdp-proxy/CDPMessageHandlers/abstraction/safariCDPMessageHandlerBase.ts -------------------------------------------------------------------------------- /src/debugger/cdp-proxy/CDPMessageHandlers/implementation/chromeCordovaCDPMessageHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/cdp-proxy/CDPMessageHandlers/implementation/chromeCordovaCDPMessageHandler.ts -------------------------------------------------------------------------------- /src/debugger/cdp-proxy/CDPMessageHandlers/implementation/chromeIonicCDPMessageHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/cdp-proxy/CDPMessageHandlers/implementation/chromeIonicCDPMessageHandler.ts -------------------------------------------------------------------------------- /src/debugger/cdp-proxy/CDPMessageHandlers/implementation/safariCordovaCDPMessageHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/cdp-proxy/CDPMessageHandlers/implementation/safariCordovaCDPMessageHandler.ts -------------------------------------------------------------------------------- /src/debugger/cdp-proxy/CDPMessageHandlers/implementation/safariIonicCDPMessageHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/cdp-proxy/CDPMessageHandlers/implementation/safariIonicCDPMessageHandler.ts -------------------------------------------------------------------------------- /src/debugger/cdp-proxy/cordovaCDPProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/cdp-proxy/cordovaCDPProxy.ts -------------------------------------------------------------------------------- /src/debugger/cdp-proxy/debuggerEndpointHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/cdp-proxy/debuggerEndpointHelper.ts -------------------------------------------------------------------------------- /src/debugger/cdp-proxy/sourcemapPathTransformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/cdp-proxy/sourcemapPathTransformer.ts -------------------------------------------------------------------------------- /src/debugger/cordovaDebugSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/cordovaDebugSession.ts -------------------------------------------------------------------------------- /src/debugger/cordovaIosDeviceLauncher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/cordovaIosDeviceLauncher.ts -------------------------------------------------------------------------------- /src/debugger/debugSessionWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/debugSessionWrapper.ts -------------------------------------------------------------------------------- /src/debugger/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/extension.ts -------------------------------------------------------------------------------- /src/debugger/jsDebugConfigAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/jsDebugConfigAdapter.ts -------------------------------------------------------------------------------- /src/debugger/requestArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/debugger/requestArgs.ts -------------------------------------------------------------------------------- /src/extension/abstractMobilePlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/abstractMobilePlatform.ts -------------------------------------------------------------------------------- /src/extension/abstractPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/abstractPlatform.ts -------------------------------------------------------------------------------- /src/extension/android/androidPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/android/androidPlatform.ts -------------------------------------------------------------------------------- /src/extension/browser/browserPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/browser/browserPlatform.ts -------------------------------------------------------------------------------- /src/extension/commands/clean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/commands/clean.ts -------------------------------------------------------------------------------- /src/extension/commands/commandUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/commands/commandUtil.ts -------------------------------------------------------------------------------- /src/extension/commands/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/commands/commands.ts -------------------------------------------------------------------------------- /src/extension/commands/cordovaBuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/commands/cordovaBuild.ts -------------------------------------------------------------------------------- /src/extension/commands/cordovaPrepare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/commands/cordovaPrepare.ts -------------------------------------------------------------------------------- /src/extension/commands/cordovaRequirements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/commands/cordovaRequirements.ts -------------------------------------------------------------------------------- /src/extension/commands/cordovaRun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/commands/cordovaRun.ts -------------------------------------------------------------------------------- /src/extension/commands/ionicBuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/commands/ionicBuild.ts -------------------------------------------------------------------------------- /src/extension/commands/ionicPrepare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/commands/ionicPrepare.ts -------------------------------------------------------------------------------- /src/extension/commands/ionicRun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/commands/ionicRun.ts -------------------------------------------------------------------------------- /src/extension/commands/networkView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/commands/networkView.ts -------------------------------------------------------------------------------- /src/extension/commands/restart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/commands/restart.ts -------------------------------------------------------------------------------- /src/extension/commands/simulateAndroid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/commands/simulateAndroid.ts -------------------------------------------------------------------------------- /src/extension/commands/simulateIos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/commands/simulateIos.ts -------------------------------------------------------------------------------- /src/extension/commands/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/commands/telemetry.ts -------------------------------------------------------------------------------- /src/extension/completionProviders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/completionProviders.ts -------------------------------------------------------------------------------- /src/extension/cordova-extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/cordova-extension.ts -------------------------------------------------------------------------------- /src/extension/cordovaSessionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/cordovaSessionManager.ts -------------------------------------------------------------------------------- /src/extension/cordovaWorkspaceManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/cordovaWorkspaceManager.ts -------------------------------------------------------------------------------- /src/extension/debugConfigurationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/debugConfigurationProvider.ts -------------------------------------------------------------------------------- /src/extension/ios/iosPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/ios/iosPlatform.ts -------------------------------------------------------------------------------- /src/extension/platformAttachResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/platformAttachResult.ts -------------------------------------------------------------------------------- /src/extension/platformLaunchResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/platformLaunchResult.ts -------------------------------------------------------------------------------- /src/extension/platformOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/platformOptions.ts -------------------------------------------------------------------------------- /src/extension/projectsStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/projectsStorage.ts -------------------------------------------------------------------------------- /src/extension/simulate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/extension/simulate.ts -------------------------------------------------------------------------------- /src/utils/android/adb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/android/adb.ts -------------------------------------------------------------------------------- /src/utils/android/androidTargetManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/android/androidTargetManager.ts -------------------------------------------------------------------------------- /src/utils/cordovaAndroidEnvironmentHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/cordovaAndroidEnvironmentHelper.ts -------------------------------------------------------------------------------- /src/utils/cordovaCommandHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/cordovaCommandHelper.ts -------------------------------------------------------------------------------- /src/utils/cordovaProjectHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/cordovaProjectHelper.ts -------------------------------------------------------------------------------- /src/utils/cordovaSimulateTelemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/cordovaSimulateTelemetry.ts -------------------------------------------------------------------------------- /src/utils/extensionHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/extensionHelper.ts -------------------------------------------------------------------------------- /src/utils/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/hash.ts -------------------------------------------------------------------------------- /src/utils/ionicDevServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/ionicDevServer.ts -------------------------------------------------------------------------------- /src/utils/ios/PlistBuddy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/ios/PlistBuddy.ts -------------------------------------------------------------------------------- /src/utils/ios/iOSTargetManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/ios/iOSTargetManager.ts -------------------------------------------------------------------------------- /src/utils/launchScenariosManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/launchScenariosManager.ts -------------------------------------------------------------------------------- /src/utils/log/logHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/log/logHelper.ts -------------------------------------------------------------------------------- /src/utils/log/outputChannelLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/log/outputChannelLogger.ts -------------------------------------------------------------------------------- /src/utils/mobileTarget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/mobileTarget.ts -------------------------------------------------------------------------------- /src/utils/mobileTargetManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/mobileTargetManager.ts -------------------------------------------------------------------------------- /src/utils/nodeVersionHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/nodeVersionHelper.ts -------------------------------------------------------------------------------- /src/utils/settingsHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/settingsHelper.ts -------------------------------------------------------------------------------- /src/utils/simulateHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/simulateHelper.ts -------------------------------------------------------------------------------- /src/utils/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/telemetry.ts -------------------------------------------------------------------------------- /src/utils/telemetryHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/telemetryHelper.ts -------------------------------------------------------------------------------- /src/utils/tsdHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/src/utils/tsdHelper.ts -------------------------------------------------------------------------------- /test/cdp-proxy/cordovaCDPProxy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/cdp-proxy/cordovaCDPProxy.test.ts -------------------------------------------------------------------------------- /test/common/configurationHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/common/configurationHelper.test.ts -------------------------------------------------------------------------------- /test/common/error/errorHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/common/error/errorHelper.test.ts -------------------------------------------------------------------------------- /test/common/xcparseConfigurations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/common/xcparseConfigurations.test.ts -------------------------------------------------------------------------------- /test/cordova.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/cordova.test.ts -------------------------------------------------------------------------------- /test/debugger/commandExecutor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/debugger/commandExecutor.test.ts -------------------------------------------------------------------------------- /test/debugger/cordovaIosDeviceLauncher.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/debugger/cordovaIosDeviceLauncher.test.ts -------------------------------------------------------------------------------- /test/debugger/electronDebug.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/debugger/electronDebug.test.ts -------------------------------------------------------------------------------- /test/extension/abstractMobilePlatform.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/extension/abstractMobilePlatform.test.ts -------------------------------------------------------------------------------- /test/extension/abstractPlatform.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/extension/abstractPlatform.test.ts -------------------------------------------------------------------------------- /test/extension/androidTargetManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/extension/androidTargetManager.test.ts -------------------------------------------------------------------------------- /test/extension/commands.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/extension/commands.test.ts -------------------------------------------------------------------------------- /test/extension/completionProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/extension/completionProvider.test.ts -------------------------------------------------------------------------------- /test/extension/extensionHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/extension/extensionHelper.test.ts -------------------------------------------------------------------------------- /test/extension/simulateHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/extension/simulateHelper.test.ts -------------------------------------------------------------------------------- /test/extension/telemetryHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/extension/telemetryHelper.test.ts -------------------------------------------------------------------------------- /test/extension/сordovaProjectHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/extension/сordovaProjectHelper.test.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/index.ts -------------------------------------------------------------------------------- /test/localization/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/localization/index.ts -------------------------------------------------------------------------------- /test/localization/localization.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/localization/localization.test.ts -------------------------------------------------------------------------------- /test/localization/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/localization/runTest.ts -------------------------------------------------------------------------------- /test/mochaReporterConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/mochaReporterConfig.json -------------------------------------------------------------------------------- /test/resources/testAndroidFileModeProject/disableFileModeConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testAndroidFileModeProject/disableFileModeConfig.xml -------------------------------------------------------------------------------- /test/resources/testAndroidFileModeProject/enableFileModeConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testAndroidFileModeProject/enableFileModeConfig.xml -------------------------------------------------------------------------------- /test/resources/testCordovaProject/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testCordovaProject/config.xml -------------------------------------------------------------------------------- /test/resources/testCordovaProject/merges/android/js/merged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testCordovaProject/merges/android/js/merged.js -------------------------------------------------------------------------------- /test/resources/testCordovaProject/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testCordovaProject/www/css/index.css -------------------------------------------------------------------------------- /test/resources/testCordovaProject/www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testCordovaProject/www/img/logo.png -------------------------------------------------------------------------------- /test/resources/testCordovaProject/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testCordovaProject/www/index.html -------------------------------------------------------------------------------- /test/resources/testCordovaProject/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testCordovaProject/www/js/index.js -------------------------------------------------------------------------------- /test/resources/testCordovaProject/www/js/merged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testCordovaProject/www/js/merged.js -------------------------------------------------------------------------------- /test/resources/testCordovaProject/www/js/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testCordovaProject/www/js/typescript.js -------------------------------------------------------------------------------- /test/resources/testCordovaProject/www/js/typescript.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testCordovaProject/www/js/typescript.js.map -------------------------------------------------------------------------------- /test/resources/testCordovaProject/www/js/typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testCordovaProject/www/js/typescript.ts -------------------------------------------------------------------------------- /test/resources/testCordovaProject/www/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testCordovaProject/www/main.js -------------------------------------------------------------------------------- /test/resources/testPbxprojFile/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testPbxprojFile/project.pbxproj -------------------------------------------------------------------------------- /test/resources/testSubfolderProject/cordovaProject/.vscode/simulate/sim-host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testSubfolderProject/cordovaProject/.vscode/simulate/sim-host.json -------------------------------------------------------------------------------- /test/resources/testSubfolderProject/cordovaProject/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testSubfolderProject/cordovaProject/config.xml -------------------------------------------------------------------------------- /test/resources/testSubfolderProject/cordovaProject/platforms/android/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testSubfolderProject/cordovaProject/platforms/android/android.json -------------------------------------------------------------------------------- /test/resources/testSubfolderProject/cordovaProject/platforms/browser/browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testSubfolderProject/cordovaProject/platforms/browser/browser.json -------------------------------------------------------------------------------- /test/resources/testSubfolderProject/cordovaProject/platforms/ios/ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/resources/testSubfolderProject/cordovaProject/platforms/ios/ios.json -------------------------------------------------------------------------------- /test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/runTest.ts -------------------------------------------------------------------------------- /test/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/test/testUtils.ts -------------------------------------------------------------------------------- /tools/gulp-extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/tools/gulp-extras.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/cordova-serve/cordova-serve.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/typings/cordova-serve/cordova-serve.d.ts -------------------------------------------------------------------------------- /typings/cordova-simulate/cordova-simulate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/typings/cordova-simulate/cordova-simulate.d.ts -------------------------------------------------------------------------------- /typings/should/should.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/typings/should/should.d.ts -------------------------------------------------------------------------------- /typings/vscode-extension-telemetry/vscode-extension-telemetry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/typings/vscode-extension-telemetry/vscode-extension-telemetry.d.ts -------------------------------------------------------------------------------- /typings/winreg/winreg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-cordova/HEAD/typings/winreg/winreg.d.ts --------------------------------------------------------------------------------