Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extension styling #3222

Merged
merged 3 commits into from
Sep 25, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@

<ng-container *ngIf="!installing && !allInstalled">
<h2>{{ 'extension_install_warning' | translate }}</h2>
<h4>{{ 'extension_template_warning' | translate }}</h4>
<div>{{ 'extension_template_warning' | translate }}</div>
<div *ngFor="let nugetPackage of neededExtensions">
<i class="fa fa-warning"></i> {{nugetPackage.id}}
</div>
</ng-container>

<div *ngIf="installing">
<h2>{{ 'extension_install_warning' | translate }}</h2>
<i class="fa fa-refresh fa-spin fa-fw"></i> {{ 'installingExtension' | translate }}
<div><i class="fa fa-refresh fa-spin fa-fw"></i> {{ 'installingExtension' | translate }}</div>
</div>

<div *ngIf="!installing && allInstalled">
Expand Down
2 changes: 1 addition & 1 deletion server/Resources/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -2720,7 +2720,7 @@ Set to "External URL" to use an API definition that is hosted elsewhere.</value>
<value>This template requires the following extensions.</value>
</data>
<data name="installingExtension" xml:space="preserve">
<value>Installing template dependencies, you will be able to create a function once this is done. Dependency installation happens in the background and can take up to 2 minutes. You can close this blade and continue to use the portal during this time.</value>
<value>Installing template dependencies. You will be able to create a function once this is done. Dependency installation happens in the background and can take up to 2 minutes. You can close this blade and continue to use the portal during this time.</value>
</data>
<data name="failedToInstallFunctionRuntimeExtensionForId" xml:space="preserve">
<value>We are not able to install runtime extension. Install id {{installationId}}</value>
Expand Down