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

Datatype info view: Add missing fallback texts #11471

Merged
merged 2 commits into from
Oct 26, 2021
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
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<div ng-if="vm.references.documentTypes.length > 0" class="mb4">

<h5 class="mt0" style="margin-bottom: 20px;">
<localize key="references_labelUsedByDocumentTypes"></localize>
<localize key="references_labelUsedByDocumentTypes">Used in Document Types</localize>
</h5>

<div class="umb-table">
Expand Down Expand Up @@ -85,7 +85,7 @@ <h5 class="mt0" style="margin-bottom: 20px;">
<div ng-if="vm.references.memberTypes.length > 0" class="mb4">

<h5 class="mt0" style="margin-bottom: 20px;">
<localize key="references_labelUsedByMemberTypes"></localize>
<localize key="references_labelUsedByMemberTypes">Used in Member Types</localize>
</h5>

<div class="umb-table">
Expand Down
2 changes: 1 addition & 1 deletion src/Umbraco.Web.UI/Umbraco/config/lang/en_us.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2355,7 +2355,7 @@ To manage your website, simply open the Umbraco backoffice and start adding cont
<key alias="noDocumentTypes">No references to Document Types.</key>
<key alias="labelUsedByMediaTypes">Used in Media Types</key>
<key alias="noMediaTypes">No references to Media Types.</key>
<key alias="labelUsedByMemberTypes">Used in Member Types</key>
<key alias="labelUsedByMemberTypes">Used in Member Types</key>
<key alias="noMemberTypes">No references to Member Types.</key>
<key alias="usedByProperties">Used by</key>
<key alias="labelUsedByDocuments">Used in Documents</key>
Expand Down