Skip to content

Commit 26c22a7

Browse files
committed
Broken links
1 parent c61df3f commit 26c22a7

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

15/umbraco-cms/extending/language-files/net-localization.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,19 @@ description: NET Umbraco Core Localization files.
44

55
# .NET Localization
66

7-
## .NET Localization
8-
97
In this article, you will find information about the Core Localization files. You can also find information about where to find and use them, and how to keep them up-to-date.
108

11-
### Use cases
9+
## Use cases
1210

13-
.NET localization has limited use cases in Umbraco, as all backoffice localization is performed with [UI Localization](../../customizing/ui-localization.md).
11+
.NET localization has limited use cases in Umbraco, as all backoffice localization is performed with [UI Localization](../../customizing/foundation/localization.md).
1412

1513
In other words, .NET localization is only applied server-side with no accompanying UI - for example:
1614

1715
* Sending emails.
1816
* User login error handling.
1917
* Health checks.
2018

21-
### Where to find the core localization files
19+
## Where to find the core localization files
2220

2321
The core Umbraco localization files are found at the following location within the [Umbraco source](https://github.com/umbraco/Umbraco-CMS/tree/contrib/src/Umbraco.Core/EmbeddedResources/Lang):
2422

@@ -28,7 +26,7 @@ Umbraco-CMS/src/Umbraco.Core/EmbeddedResources/Lang/
2826

2927
These localization files are shipped with Umbraco and should not be modified.
3028

31-
#### User localization files
29+
### User localization files
3230

3331
If you want to override Umbraco Core .NET localization, create new files in the following location and format:
3432

@@ -48,7 +46,7 @@ In order for these files to deploy when you do a `dotnet publish`, you need to a
4846
</ItemGroup>
4947
```
5048

51-
### Using the localizations
49+
## Using the localizations
5250

5351
`ILocalizedTextService` is used to localize strings, and is available through dependency injection. You can use the `Localize()` method available in the namespace `Umbraco.Extensions` to localize the string by `area` and `key`:
5452

@@ -69,7 +67,7 @@ public class LocalizationSample
6967
}
7068
```
7169

72-
### Help keep the language files up to date
70+
## Help keep the language files up to date
7371

7472
As Umbraco is a continually evolving product it is inevitable that new text is added regularly to the English language version of these files. This may mean that some of the above languages are no longer up to date.
7573

15/umbraco-cms/tutorials/creating-a-custom-dashboard/extending-the-dashboard-using-umbraco-ui-library.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The steps we will go through in this part are:
1818

1919
### Umbraco UI Library
2020

21-
The [Umbraco UI Library](../../customizing/ui-documentation.md) is a set of web components and variables that we can use to build Umbraco User Interfaces. It is already part of the Backoffice, which means you can already start to use it.
21+
The [Umbraco UI Library](../../customizing/foundation/localization.md) is a set of web components and variables that we can use to build Umbraco User Interfaces. It is already part of the Backoffice, which means you can already start to use it.
2222

2323
By using the variables available from the UI Library, you ensure that your extensions are a consistent size with the rest of the backoffice.
2424

15/umbraco-cms/tutorials/members-registration-and-login.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,10 @@ If you are on Umbraco Cloud you need to do the following steps to be able to res
139139

140140
1. Go to the Users section in the Backoffice.
141141
2. Select your User.
142-
3. Add the "Sensitive Data" Group. ![Assign User Access group](images/v8-17-Assign-User-Access-Group.png)
142+
3. Add the "Sensitive Data" Group.
143143

144144
Once you have added the "Sensitive Data" group go to the Members section in the backoffice. In the Members section you need to select each member and approve them by toggling the Approved button.
145145

146-
<img src="images/v8-18-Approve-Member.png" alt="Approve Member" data-size="original">
147-
148146
Once the users have been approved, you can go ahead and continue the tutorial.
149147
{% endhint %}
150148

0 commit comments

Comments
 (0)