* remove unnecessary empty providers arrays in NgModule across various files
* rename lazy loading param from mod to module in app-routing.module_postaction.ts * updates to en.json and whitelist_en.json due to running ./build * add src/extension/.vscode-test to .gitignore Signed-off-by: mhatvan <markus_hatvan@aon.at>
This commit is contained in:
Родитель
04477bd401
Коммит
465bc083b1
|
@ -338,6 +338,7 @@ src/extension/package.nls.*.json
|
|||
**/build/
|
||||
**/package-lock.json
|
||||
**/*.vsix
|
||||
src/extension/.vscode-test
|
||||
|
||||
!templates/**/package-lock.json
|
||||
|
||||
|
@ -358,3 +359,4 @@ src/extension/src/api/darwin/CoreTemplateStudio/
|
|||
src/extension/src/corets-cli/darwin/
|
||||
src/extension/src/corets-cli/linux/
|
||||
src/extension/src/corets-cli/win32/
|
||||
|
||||
|
|
|
@ -39,7 +39,6 @@
|
|||
"azureLogin.azureLoginTitle": "Add Azure Cloud Services to Your Project",
|
||||
"azureLogin.azureTitle": "Microsoft Azure",
|
||||
"azureLogin.longDescription": "Azure is a cloud computing service created by Microsoft for building, testing, deploying, and managing applications and services through Microsoft-managed data centers spread throughout the world. It offers more than a hundred services including scalable databases, container deployments, infrastructure management, serverless compute etc. These services combined with Microsoft's developer tools like Visual Studio and Visual Studio Code offer you great end-to-end tools to make you success. More information about Microsoft Azure can be found at [azure.microsoft.com](azure.microsoft.com).",
|
||||
"azureModal.appServicePlanLabel": "App Service Plan",
|
||||
"azureLoginModal.azureReadMore": "Learn more about the Azure free account. Read the FAQ >",
|
||||
"azureLoginModal.createAccount": "Create Free Account",
|
||||
"azureLoginModal.freeAccountAnswer": "All you need is a phone number, a credit or debit card, and a GitHub account or Microsoft account username (formerly Windows Live ID).",
|
||||
|
@ -52,6 +51,7 @@
|
|||
"azureLoginModal.paymentAnswer": "No. Starting is free, plus you get a $200 credit you can spend during the first 30 days.",
|
||||
"azureLoginModal.paymentQuestion": "Do I pay anything to start with the Azure free account?",
|
||||
"azureLoginModal.signIn": "Sign In",
|
||||
"azureModal.appServicePlanLabel": "App Service Plan",
|
||||
"azureModal.ariaLocationLabel": "Location Drop Down",
|
||||
"azureModal.ariaResourceGroupLabel": "Resource Group Drop Down",
|
||||
"azureModal.ariaSubscriptionLabel": "Subscription Drop Down",
|
||||
|
@ -108,7 +108,6 @@
|
|||
"footer.license": "By continuing, you agree to the terms of all the licenses in the\n licenses section.",
|
||||
"footer.navAriaLabel": "Navigate between pages and create project",
|
||||
"footer.next": "Next",
|
||||
"header.signIn": "Log In / Create an Account",
|
||||
"header.signOut": "Sign out",
|
||||
"hostingServices.oneServiceWarning": "You can only add one hosting service at a time",
|
||||
"hostingServices.title": "Publish your project to the web",
|
||||
|
@ -194,4 +193,4 @@
|
|||
"topNavBar.services": "Add Optional Cloud Services",
|
||||
"topNavBar.summary": "Summary",
|
||||
"viewLicensesModal.closeModalLabel": "Close"
|
||||
}
|
||||
}
|
|
@ -26,16 +26,11 @@
|
|||
"azureFunctionsModal.numFunctionsSubLabel",
|
||||
"azureFunctionsSelection.duplicateName",
|
||||
"header.signOut",
|
||||
"header.signIn",
|
||||
"azureLoginModal.azureReadMore",
|
||||
"azureLoginModal.signIn",
|
||||
"azureLoginModal.createAccount",
|
||||
"azureLoginModal.freeAccountAnswer",
|
||||
"azureLoginModal.freeAccountQuestion",
|
||||
"azureLoginModal.freeTrialAnswer",
|
||||
"azureLoginModal.freeTrialQuestion",
|
||||
"azureLoginModal.freeTrialUpgradeAnswer",
|
||||
"azureLoginModal.freeTrialUpgradeQuestion",
|
||||
"azureLoginModal.getStartedWithAzure",
|
||||
"azureLoginModal.paymentAnswer",
|
||||
"azureLoginModal.paymentQuestion",
|
||||
|
|
|
@ -9,7 +9,6 @@ const routes: Routes = [
|
|||
RouterModule.forRoot(routes)
|
||||
],
|
||||
exports: [RouterModule],
|
||||
providers: []
|
||||
})
|
||||
export class AppRoutingModule { }
|
||||
|
||||
|
|
|
@ -18,7 +18,6 @@ import { FooterComponent } from './app-shell/footer/footer.component';
|
|||
HttpClientModule,
|
||||
AppRoutingModule,
|
||||
],
|
||||
providers: [],
|
||||
bootstrap: [AppComponent]
|
||||
})
|
||||
export class AppModule { }
|
||||
|
|
|
@ -12,7 +12,6 @@ const routes: Routes = [
|
|||
RouterModule.forRoot(routes)
|
||||
],
|
||||
exports: [RouterModule],
|
||||
providers: []
|
||||
})
|
||||
export class AppRoutingModule { }
|
||||
|
||||
|
|
|
@ -24,7 +24,6 @@ import { FooterComponent } from './app-shell/footer/footer.component';
|
|||
Param_SourceName_PascalModule,
|
||||
//}]}
|
||||
],
|
||||
providers: [],
|
||||
bootstrap: [AppComponent]
|
||||
})
|
||||
export class AppModule { }
|
||||
|
|
|
@ -6,7 +6,7 @@ const routes: Routes = [
|
|||
//{[{
|
||||
{
|
||||
path: 'Param_SourceName_Kebab',
|
||||
loadChildren: () => import('./app-shell/Param_SourceName_Kebab/Param_SourceName_Kebab.module').then(mod => mod.Param_SourceName_PascalModule)
|
||||
loadChildren: () => import('./app-shell/Param_SourceName_Kebab/Param_SourceName_Kebab.module').then(module => module.Param_SourceName_PascalModule)
|
||||
},
|
||||
//}]}
|
||||
];
|
||||
|
@ -16,7 +16,6 @@ const routes: Routes = [
|
|||
RouterModule.forRoot(routes)
|
||||
],
|
||||
exports: [RouterModule],
|
||||
providers: []
|
||||
})
|
||||
export class AppRoutingModule { }
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче