Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Umbraco.Core/EmbeddedResources/Lang/da.xml
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,9 @@
<key alias="removeTextBox">Fjern denne tekstboks</key>
<key alias="contentRoot">Indholdsrod</key>
<key alias="includeUnpublished">Inkluder ikke-udgivet indhold.</key>
<key alias="forceRepublish">Udgiv uændrede elementer.</key>
<key alias="forceRepublishWarning">ADVARSEL: Udgivelse af alle sider under denne i indholdstræet, uanset om de er ændret eller ej, kan være en ressourcekrævende og langvarig proces.</key>
<key alias="forceRepublishAdvisory">Dette bør ikke være nødvendigt under normale omstændigheder, så fortsæt kun med denne handling, hvis du er sikker på, at det er nødvendigt.</key>
<key alias="isSensitiveValue">Denne værdi er skjult. Hvis du har brug for adgang til at se denne værdi, bedes du
kontakte din administrator.
</key>
Expand Down
2 changes: 2 additions & 0 deletions src/Umbraco.Core/EmbeddedResources/Lang/en.xml
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,8 @@
<key alias="contentRoot">Content root</key>
<key alias="includeUnpublished">Include unpublished content items.</key>
<key alias="forceRepublish">Publish unchanged items.</key>
<key alias="forceRepublishWarning">WARNING: Publishing all pages below this one in the content tree, whether or not they have changed, can be an expensive and long-running operation.</key>
<key alias="forceRepublishAdvisory">This should not be necessary in normal circumstances so please only proceed with this option selected if you are certain it is required.</key>
<key alias="isSensitiveValue">This value is hidden. If you need access to view this value please contact your
website administrator.
</key>
Expand Down
2 changes: 2 additions & 0 deletions src/Umbraco.Core/EmbeddedResources/Lang/en_us.xml
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,8 @@
<key alias="contentRoot">Content root</key>
<key alias="includeUnpublished">Include unpublished content items.</key>
<key alias="forceRepublish">Publish unchanged items.</key>
<key alias="forceRepublishWarning">WARNING: Publishing all pages below this one in the content tree, whether or not they have changed, can be an expensive and long-running operation.</key>
<key alias="forceRepublishAdvisory">This should not be necessary in normal circumstances so please only proceed with this option selected if you are certain it is required.</key>
<key alias="isSensitiveValue">This value is hidden. If you need access to view this value please contact your
website administrator.
</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@
show-labels="true">
</umb-toggle>
</div>

<div ng-if="vm.forceRepublish" class="umb-alert umb-alert--warning">
<p><localize key="content_forceRepublishWarning"></localize></p>
<p><localize key="content_forceRepublishAdvisory"></localize></p>
</div>
</div>

<div ng-if="vm.displayVariants.length > 1">
Expand Down Expand Up @@ -59,6 +62,10 @@
show-labels="true">
</umb-toggle>
</div>
<div ng-if="vm.forceRepublish" class="umb-alert umb-alert--warning">
<p><localize key="content_forceRepublishWarning"></localize></p>
<p><localize key="content_forceRepublishAdvisory"></localize></p>
</div>

<div class="umb-list umb-list--condensed">

Expand Down
Loading