You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 15/umbraco-cms/extending/language-files/net-localization.md
+6-8Lines changed: 6 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,21 +4,19 @@ description: NET Umbraco Core Localization files.
4
4
5
5
# .NET Localization
6
6
7
-
## .NET Localization
8
-
9
7
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.
10
8
11
-
###Use cases
9
+
## Use cases
12
10
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).
14
12
15
13
In other words, .NET localization is only applied server-side with no accompanying UI - for example:
16
14
17
15
* Sending emails.
18
16
* User login error handling.
19
17
* Health checks.
20
18
21
-
###Where to find the core localization files
19
+
## Where to find the core localization files
22
20
23
21
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):
These localization files are shipped with Umbraco and should not be modified.
30
28
31
-
####User localization files
29
+
### User localization files
32
30
33
31
If you want to override Umbraco Core .NET localization, create new files in the following location and format:
34
32
@@ -48,7 +46,7 @@ In order for these files to deploy when you do a `dotnet publish`, you need to a
48
46
</ItemGroup>
49
47
```
50
48
51
-
###Using the localizations
49
+
## Using the localizations
52
50
53
51
`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`:
54
52
@@ -69,7 +67,7 @@ public class LocalizationSample
69
67
}
70
68
```
71
69
72
-
###Help keep the language files up to date
70
+
## Help keep the language files up to date
73
71
74
72
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.
Copy file name to clipboardExpand all lines: 15/umbraco-cms/tutorials/creating-a-custom-dashboard/extending-the-dashboard-using-umbraco-ui-library.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ The steps we will go through in this part are:
18
18
19
19
### Umbraco UI Library
20
20
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.
22
22
23
23
By using the variables available from the UI Library, you ensure that your extensions are a consistent size with the rest of the backoffice.
Copy file name to clipboardExpand all lines: 15/umbraco-cms/tutorials/members-registration-and-login.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -139,12 +139,10 @@ If you are on Umbraco Cloud you need to do the following steps to be able to res
139
139
140
140
1. Go to the Users section in the Backoffice.
141
141
2. Select your User.
142
-
3. Add the "Sensitive Data" Group.
142
+
3. Add the "Sensitive Data" Group.
143
143
144
144
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.
0 commit comments