Skip to content

Commit 7871e53

Browse files
committed
defined acronyms
1 parent 2afa2b5 commit 7871e53

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

15/umbraco-cms/reference/configuration/globalsettings.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: "Information on the global settings section"
44

55
# Global Settings
66

7-
Global settings contains at set of global settings for the CMS such as default UI language, reserved urls, and much more. All of these, except for SMTP settings contains default values, meaning that all configuration is optional, unless you wish to send emails from your site.
7+
Global settings contains at set of global settings for the CMS such as default UI language, reserved urls, and much more. All of these, except for Simple Mail Transfer Protocol (SMTP) settings contains default values, meaning that all configuration is optional, unless you wish to send emails from your site.
88

99
The following snippet contains all the available options, with default values, and some example values for the required keys `From`, `Host`, and `Port` keys of the SMTP settings:
1010

@@ -121,28 +121,28 @@ When this value is set above 0, the backoffice will check for a new version of U
121121
Key: `IconsPath`
122122
Type: `string` (default: `umbraco/assets/icons`)
123123

124-
By adding this value you can specify a new/different folder for storing your icon resources. It's important to be aware of NetCore's limitations regarding serving static file content. By default, static content will only be served from the `wwwroot` folder.
124+
By adding this value you can specify a new/different folder for storing your icon resources. It's important to be aware of .NET Core's limitations regarding serving static file content. By default, static content will only be served from the `wwwroot` folder.
125125

126126
### Umbraco CSS path
127127

128128
Key: `UmbracoCssPath`
129129
Type: `string` (default: `~/css`)
130130

131-
By adding this you can specify a new/different folder for storing your CSS files, and still be able to edit them within Umbraco. It's also important to be aware of NetCores limitations regarding serving static file content here as well, by default, static content will only be served from the wwwroot folder. For more info see [Extending filesystem](../../extending/filesystemproviders/)
131+
By adding this you can specify a new/different folder for storing your CSS files, and still be able to edit them within Umbraco. It's also important to be aware of .NET Core's limitations regarding serving static file content here as well, by default, static content will only be served from the wwwroot folder. For more info see [Extending filesystem](../../extending/filesystemproviders/)
132132

133133
### Umbraco scripts path
134134

135135
Key: `UmbracoScriptsPath`
136136
Type: `string` (default: `~/scripts`)
137137

138-
By adding this you can specify a new/different folder for storing your script/js files, and still be able to edit them within Umbraco. It's also important to be aware of NetCores limitations regarding serving static file content here as well, by default, static content will only be served from the wwwroot folder. For more info see [Extending filesystem](../../extending/filesystemproviders/)
138+
By adding this you can specify a new/different folder for storing your script/js files, and still be able to edit them within Umbraco. It's also important to be aware of .NET Core's limitations regarding serving static file content here as well, by default, static content will only be served from the wwwroot folder. For more info see [Extending filesystem](../../extending/filesystemproviders/)
139139

140140
### Umbraco media path
141141

142142
Key: `UmbracoMediaPath`
143143
Type: `string` (default: `~/media`)
144144

145-
By adding this you can specify a new/different folder for storing your media files, and still be able to edit them within Umbraco. It's also important to be aware of NetCores limitations regarding serving static file content here as well, by default, static content will only be served from the wwwroot folder. For more info see [Extending filesystem](../../extending/filesystemproviders/)
145+
By adding this you can specify a new/different folder for storing your media files, and still be able to edit them within Umbraco. It's also important to be aware of .NET Core's limitations regarding serving static file content here as well, by default, static content will only be served from the wwwroot folder. For more info see [Extending filesystem](../../extending/filesystemproviders/)
146146

147147
### Umbraco media physical root path
148148

@@ -243,7 +243,7 @@ By adding this settings to the appsettings.json you will be able to send out ema
243243

244244
### From
245245

246-
Specifies the default address emails will be sent from, this setting may be overridden some place, such as when inviting a user, where the email of the user sending the invite will be used instead. The format of the address follows the RFC 822 standard so you can include a friendly name using the format `"Friendly Name <[email protected]>"`
246+
Specifies the default address emails will be sent from, this setting may be overridden some place, such as when inviting a user, where the email of the user sending the invite will be used instead. The format of the address follows the Request for Comments (RFC) 822 standard so you can include a friendly name using the format `"Friendly Name <[email protected]>"`
247247

248248
### Host
249249

16/umbraco-cms/reference/configuration/globalsettings.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: "Information on the global settings section"
44

55
# Global Settings
66

7-
Global settings contains at set of global settings for the CMS such as default UI language, reserved urls, and much more. All of these, except for SMTP settings contains default values, meaning that all configuration is optional, unless you wish to send emails from your site.
7+
Global settings contains at set of global settings for the CMS such as default UI language, reserved urls, and much more. All of these, except for Simple Mail Transfer Protocol (SMTP) settings contains default values, meaning that all configuration is optional, unless you wish to send emails from your site.
88

9-
The following snippet contains all the available options, with default values, and some example values for the required keys `From`, `Host` and `Port` keys of the SMTP settings:
9+
The following snippet contains all the available options, with default values, and some example values for the required keys `From`, `Host`, and `Port` keys of the SMTP settings:
1010

1111
```json
1212
"Umbraco": {
@@ -121,28 +121,28 @@ When this value is set above 0, the backoffice will check for a new version of U
121121
Key: `IconsPath`
122122
Type: `string` (default: `umbraco/assets/icons`)
123123

124-
By adding this value you can specify a new/different folder for storing your icon resources. It's important to be aware of NetCore's limitations regarding serving static file content. By default, static content will only be served from the `wwwroot` folder.
124+
By adding this value you can specify a new/different folder for storing your icon resources. It's important to be aware of .NET Core's limitations regarding serving static file content. By default, static content will only be served from the `wwwroot` folder.
125125

126126
### Umbraco CSS path
127127

128128
Key: `UmbracoCssPath`
129129
Type: `string` (default: `~/css`)
130130

131-
By adding this you can specify a new/different folder for storing your CSS files, and still be able to edit them within Umbraco. It's also important to be aware of NetCores limitations regarding serving static file content here as well, by default, static content will only be served from the wwwroot folder. For more info see [Extending filesystem](../../extending/filesystemproviders/)
131+
By adding this you can specify a new/different folder for storing your CSS files, and still be able to edit them within Umbraco. It's also important to be aware of .NET Core's limitations regarding serving static file content here as well, by default, static content will only be served from the wwwroot folder. For more info see [Extending filesystem](../../extending/filesystemproviders/)
132132

133133
### Umbraco scripts path
134134

135135
Key: `UmbracoScriptsPath`
136136
Type: `string` (default: `~/scripts`)
137137

138-
By adding this you can specify a new/different folder for storing your script/js files, and still be able to edit them within Umbraco. It's also important to be aware of NetCores limitations regarding serving static file content here as well, by default, static content will only be served from the wwwroot folder. For more info see [Extending filesystem](../../extending/filesystemproviders/)
138+
By adding this you can specify a new/different folder for storing your script/js files, and still be able to edit them within Umbraco. It's also important to be aware of .NET Core's limitations regarding serving static file content here as well, by default, static content will only be served from the wwwroot folder. For more info see [Extending filesystem](../../extending/filesystemproviders/)
139139

140140
### Umbraco media path
141141

142142
Key: `UmbracoMediaPath`
143143
Type: `string` (default: `~/media`)
144144

145-
By adding this you can specify a new/different folder for storing your media files, and still be able to edit them within Umbraco. It's also important to be aware of NetCores limitations regarding serving static file content here as well, by default, static content will only be served from the wwwroot folder. For more info see [Extending filesystem](../../extending/filesystemproviders/)
145+
By adding this you can specify a new/different folder for storing your media files, and still be able to edit them within Umbraco. It's also important to be aware of .NET Core's limitations regarding serving static file content here as well, by default, static content will only be served from the wwwroot folder. For more info see [Extending filesystem](../../extending/filesystemproviders/)
146146

147147
### Umbraco media physical root path
148148

@@ -243,7 +243,7 @@ By adding this settings to the appsettings.json you will be able to send out ema
243243

244244
### From
245245

246-
Specifies the default address emails will be sent from, this setting may be overridden some place, such as when inviting a user, where the email of the user sending the invite will be used instead. The format of the address follows the RFC 822 standard so you can include a friendly name using the format `"Friendly Name <[email protected]>"`
246+
Specifies the default address emails will be sent from, this setting may be overridden some place, such as when inviting a user, where the email of the user sending the invite will be used instead. The format of the address follows the Request for Comments (RFC) 822 standard so you can include a friendly name using the format `"Friendly Name <[email protected]>"`
247247

248248
### Host
249249

0 commit comments

Comments
 (0)