Skip to content

Commit fc8e1ce

Browse files
authored
Merge pull request AvaloniaUI#550 from mikeirvingweb/main
chore: typo corrections
2 parents 7b9e729 + b5aed0b commit fc8e1ce

File tree

15 files changed

+20
-20
lines changed

15 files changed

+20
-20
lines changed

Diff for: docs/basics/user-interface/styling/themes/fluent.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Avalonia Fluent theme is inspired by Microsoft's Fluent Design System, which is
1717
As a first step, [Avalonia.Themes.Fluent](https://www.nuget.org/packages/Avalonia.Themes.Fluent/) nuget package needs to be installed.
1818

1919
:::info
20-
On how to add a nuget package, you can follow steps from the Nuget page or [Visual Studio](https://learn.microsoft.com/en-us/nuget/quickstart/install-and-use-a-package-in-visual-studio), [Rider](https://www.jetbrains.com/help/rider/Using_NuGet.html) documentation.
20+
On how to add a nuget package, you can follow steps from the NuGet page or [Visual Studio](https://learn.microsoft.com/en-us/nuget/quickstart/install-and-use-a-package-in-visual-studio), [Rider](https://www.jetbrains.com/help/rider/Using_NuGet.html) documentation.
2121
:::
2222

2323
After that theme needs to be included in the Application class:

Diff for: docs/basics/user-interface/styling/themes/simple.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Avalonia Simple theme is specifically designed to be minimal and lightweight, wi
1414
As a first step, [Avalonia.Themes.Simple](https://www.nuget.org/packages/Avalonia.Themes.Simple/) nuget package needs to be installed.
1515

1616
:::info
17-
On how to add a nuget package, you can follow steps from the Nuget page or [Visual Studio](https://learn.microsoft.com/en-us/nuget/quickstart/install-and-use-a-package-in-visual-studio), [Rider](https://www.jetbrains.com/help/rider/Using_NuGet.html) documentation.
17+
On how to add a nuget package, you can follow steps from the NuGet page or [Visual Studio](https://learn.microsoft.com/en-us/nuget/quickstart/install-and-use-a-package-in-visual-studio), [Rider](https://www.jetbrains.com/help/rider/Using_NuGet.html) documentation.
1818
:::
1919

2020
After that theme needs to be included in the Application class:

Diff for: docs/concepts/services/storage-provider/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Only supported on the OS, with physical file paths, primarily only desktop.
136136
| `TryGetFolderFromPathAsync` ||||||||
137137
| `TryGetWellKnownFolderAsync` ||||||||
138138

139-
\* Bookmarks are not properly supported on desktop platforms and instead return file path instead. MacOS support is planned in order to get it work with Sandboxed Apple Store apps.
139+
\* Bookmarks are not properly supported on desktop platforms and instead return file path instead. macOS support is planned in order to get it work with Sandboxed Apple Store apps.
140140

141141
** Managed file picker works only on desktop platforms where it's possible to open a custom window.
142142

Diff for: docs/deployment/macOS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Add other runtime identifiers as necessary. Each one should be separated by a se
104104

105105
This type of icon file can not only be created on Apple devices, but it is also possible on Linux devices.
106106
You can find more information about how you can achieve that in this blog post:
107-
[Creating Mac OS X Icons (icns) on Linux](https://dentrassi.de/2014/02/25/creating-mac-os-x-icons-icns-on-linux/)
107+
[Creating macOS Icons (icns) on Linux](https://dentrassi.de/2014/02/25/creating-mac-os-x-icons-icns-on-linux/)
108108

109109
### Notes on the `.app` executable file
110110

Diff for: docs/reference/controls/colorpicker/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Developers using this control may:
3939

4040
## Using in Your App
4141

42-
Avalonia is used in several resource-constrained environments such as embedded devices. For this and other reasons, certain larger controls such as the `ColorPicker` are not included with the main Avalonia UI Nuget packages. This means a bit of extra work is required to add the `ColorPicker` to your app:
42+
Avalonia is used in several resource-constrained environments such as embedded devices. For this and other reasons, certain larger controls such as the `ColorPicker` are not included with the main Avalonia UI NuGet packages. This means a bit of extra work is required to add the `ColorPicker` to your app:
4343

4444
1. Add the `Avalonia.Controls.ColorPicker` nuget to your project. This MUST match your version of Avalonia's other packages.
4545
2. Add control themes and styles for all color picker controls in `App.axaml` by adding:

Diff for: docs/reference/controls/slider.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public class MainViewModel : ViewModelBase
8080
- using [ReactiveUI.Fody.Helpers](https://www.reactiveui.net/docs/handbook/view-models/boilerplate-code.html) NOTE: Fody.Helpers is not required (optional).
8181
8282
:::info
83-
On how to add a nuget package, you can follow steps from the Nuget page or [Visual Studio](https://learn.microsoft.com/en-us/nuget/quickstart/install-and-use-a-package-in-visual-studio), [Rider](https://www.jetbrains.com/help/rider/Using_NuGet.html) documentation.
83+
On how to add a nuget package, you can follow steps from the NuGet page or [Visual Studio](https://learn.microsoft.com/en-us/nuget/quickstart/install-and-use-a-package-in-visual-studio), [Rider](https://www.jetbrains.com/help/rider/Using_NuGet.html) documentation.
8484
:::
8585

8686
```cs

Diff for: docs/stay-up-to-date/release-notes.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -191,14 +191,14 @@ https://www.nuget.org/packages/Avalonia/11.0.5
191191
* Fixes font family definitions that mix embedded and system fonts by @Gillibald in https://github.com/AvaloniaUI/Avalonia/pull/12871
192192
* Fix DataGrid' SelectedItems removing wrong item when DataGrid is grou. by @liwuqingxin in https://github.com/AvaloniaUI/Avalonia/pull/12875
193193
* Fix focus loss issue with AutocompleteBox by @emmauss in https://github.com/AvaloniaUI/Avalonia/pull/12883
194-
* MacOS file type filter in native file dialog by @maxkatz6 in https://github.com/AvaloniaUI/Avalonia/pull/12899
194+
* macOS file type filter in native file dialog by @maxkatz6 in https://github.com/AvaloniaUI/Avalonia/pull/12899
195195
* Change iOS initialization order by @maxkatz6 in https://github.com/AvaloniaUI/Avalonia/pull/12915
196196
* Detect recursion and check for cancellation in analyser `while` loops by @TomEdwardsEnscape in https://github.com/AvaloniaUI/Avalonia/pull/12916
197197
* Trimmable runtime xaml loader by @maxkatz6 in https://github.com/AvaloniaUI/Avalonia/pull/12937
198198
* [X11] Don't convert the current time from long to int by @kekekeks in https://github.com/AvaloniaUI/Avalonia/pull/12941
199199
* [Windows] [IME] Prevent duplicate input for some IMEs by @Gillibald in https://github.com/AvaloniaUI/Avalonia/pull/12942
200200
* Fix - TextPresenter ignores FontStretch property by @VladimirDrobyshev in https://github.com/AvaloniaUI/Avalonia/pull/12947
201-
* Add support for setting tooltip text for TrayIcons on MacOS by @Takoooooo in https://github.com/AvaloniaUI/Avalonia/pull/12948
201+
* Add support for setting tooltip text for TrayIcons on macOS by @Takoooooo in https://github.com/AvaloniaUI/Avalonia/pull/12948
202202
* Fix VirtualizingStackPanel and nth-child for the currently realizing item container by @MrJul in https://github.com/AvaloniaUI/Avalonia/pull/12957
203203
* FluentTheme: settable ListBoxItem.FontWeight/FontSize by @MrJul in https://github.com/AvaloniaUI/Avalonia/pull/12958
204204
* Added guards for compositor reentrancy and exposed batch lifetime events by @kekekeks in https://github.com/AvaloniaUI/Avalonia/pull/12968
@@ -284,7 +284,7 @@ https://www.nuget.org/packages/Avalonia/11.0.2
284284

285285
### What's Changed
286286
* Use embedded pdb for analyzers and build tasks by @MrJul in https://github.com/AvaloniaUI/Avalonia/pull/12336
287-
* Fix window incorrect positioning with window startup location CenterScreen on MacOS by @Takoooooo in https://github.com/AvaloniaUI/Avalonia/pull/12327
287+
* Fix window incorrect positioning with window startup location CenterScreen on macOS by @Takoooooo in https://github.com/AvaloniaUI/Avalonia/pull/12327
288288
* Fixed issue where RowDetailsTemplate was getting the wrong DataContext by @Gundz in https://github.com/AvaloniaUI/Avalonia/pull/12174
289289
* Catch dbus errors so that WatchAsync can register all names by @ThereGoesMySanity in https://github.com/AvaloniaUI/Avalonia/pull/12377
290290

Diff for: i18n/ru/docusaurus-plugin-content-docs/current/concepts/services/storage-provider/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Only supported on the OS, with physical file paths, primarily only desktop.
136136
| `TryGetFolderFromPathAsync` ||||||||
137137
| `TryGetWellKnownFolderAsync` ||||||||
138138

139-
\* Bookmarks are not properly supported on desktop platforms and instead return file path instead. MacOS support is planned in order to get it work with Sandboxed Apple Store apps.
139+
\* Bookmarks are not properly supported on desktop platforms and instead return file path instead. macOS support is planned in order to get it work with Sandboxed Apple Store apps.
140140

141141
** Managed file picker works only on desktop platforms where it's possible to open a custom window.
142142

Diff for: i18n/ru/docusaurus-plugin-content-docs/current/deployment/macOS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Add other runtime identifiers as necessary. Each one should be separated by a se
104104

105105
This type of icon file can not only be created on Apple devices, but it is also possible on Linux devices.
106106
You can find more information about how you can achieve that in this blog post:
107-
[Creating Mac OS X Icons (icns) on Linux](https://dentrassi.de/2014/02/25/creating-mac-os-x-icons-icns-on-linux/)
107+
[Creating macOS Icons (icns) on Linux](https://dentrassi.de/2014/02/25/creating-mac-os-x-icons-icns-on-linux/)
108108

109109
### Notes on the `.app` executable file
110110

Diff for: i18n/ru/docusaurus-plugin-content-docs/current/reference/controls/colorpicker/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Developers using this control may:
3939

4040
## Using in Your App
4141

42-
Avalonia is used in several resource-constrained environments such as embedded devices. For this and other reasons, certain larger controls such as the `ColorPicker` are not included with the main Avalonia UI Nuget packages. This means a bit of extra work is required to add the `ColorPicker` to your app:
42+
Avalonia is used in several resource-constrained environments such as embedded devices. For this and other reasons, certain larger controls such as the `ColorPicker` are not included with the main Avalonia UI NuGet packages. This means a bit of extra work is required to add the `ColorPicker` to your app:
4343

4444
1. Add the `Avalonia.Controls.ColorPicker` nuget to your project. This MUST match your version of Avalonia's other packages.
4545
2. Add control themes and styles for all color picker controls in `App.axaml` by adding:

Diff for: i18n/zh-Hans/docusaurus-plugin-content-docs/current/reference/controls/colorpicker/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import ColorPaletteSixteen from '/img/reference/controls/colorpicker/color-palet
3737

3838
## 在您的应用程序中使用
3939

40-
Avalonia 在一些资源受限的环境中使用,例如嵌入式设备。因此根据种种原因,像 `ColorPicker` 这样的较大控件没有包含在主要的 Avalonia UI Nuget 包中。这意味着需要额外的步骤将 `ColorPicker` 添加到您的应用中:
40+
Avalonia 在一些资源受限的环境中使用,例如嵌入式设备。因此根据种种原因,像 `ColorPicker` 这样的较大控件没有包含在主要的 Avalonia UI NuGet 包中。这意味着需要额外的步骤将 `ColorPicker` 添加到您的应用中:
4141

4242
1.`Avalonia.Controls.ColorPicker` nuget 添加到您的项目中。这必须与您的 Avalonia 其他包的版本匹配。
4343
2. 通过在 `App.axaml` 中添加控件主题和样式,为所有取色器控件添加:

Diff for: i18n/zh-Hans/docusaurus-plugin-content-docs/current/stay-up-to-date/release-notes.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -192,14 +192,14 @@ https://www.nuget.org/packages/Avalonia/11.0.5
192192
* Fixes font family definitions that mix embedded and system fonts by @Gillibald in https://github.com/AvaloniaUI/Avalonia/pull/12871
193193
* Fix DataGrid' SelectedItems removing wrong item when DataGrid is grou. by @liwuqingxin in https://github.com/AvaloniaUI/Avalonia/pull/12875
194194
* Fix focus loss issue with AutocompleteBox by @emmauss in https://github.com/AvaloniaUI/Avalonia/pull/12883
195-
* MacOS file type filter in native file dialog by @maxkatz6 in https://github.com/AvaloniaUI/Avalonia/pull/12899
195+
* macOS file type filter in native file dialog by @maxkatz6 in https://github.com/AvaloniaUI/Avalonia/pull/12899
196196
* Change iOS initialization order by @maxkatz6 in https://github.com/AvaloniaUI/Avalonia/pull/12915
197197
* Detect recursion and check for cancellation in analyser `while` loops by @TomEdwardsEnscape in https://github.com/AvaloniaUI/Avalonia/pull/12916
198198
* Trimmable runtime xaml loader by @maxkatz6 in https://github.com/AvaloniaUI/Avalonia/pull/12937
199199
* [X11] Don't convert the current time from long to int by @kekekeks in https://github.com/AvaloniaUI/Avalonia/pull/12941
200200
* [Windows] [IME] Prevent duplicate input for some IMEs by @Gillibald in https://github.com/AvaloniaUI/Avalonia/pull/12942
201201
* Fix - TextPresenter ignores FontStretch property by @VladimirDrobyshev in https://github.com/AvaloniaUI/Avalonia/pull/12947
202-
* Add support for setting tooltip text for TrayIcons on MacOS by @Takoooooo in https://github.com/AvaloniaUI/Avalonia/pull/12948
202+
* Add support for setting tooltip text for TrayIcons on macOS by @Takoooooo in https://github.com/AvaloniaUI/Avalonia/pull/12948
203203
* Fix VirtualizingStackPanel and nth-child for the currently realizing item container by @MrJul in https://github.com/AvaloniaUI/Avalonia/pull/12957
204204
* FluentTheme: settable ListBoxItem.FontWeight/FontSize by @MrJul in https://github.com/AvaloniaUI/Avalonia/pull/12958
205205
* Added guards for compositor reentrancy and exposed batch lifetime events by @kekekeks in https://github.com/AvaloniaUI/Avalonia/pull/12968
@@ -285,7 +285,7 @@ https://www.nuget.org/packages/Avalonia/11.0.2
285285

286286
### What's Changed
287287
* Use embedded pdb for analyzers and build tasks by @MrJul in https://github.com/AvaloniaUI/Avalonia/pull/12336
288-
* Fix window incorrect positioning with window startup location CenterScreen on MacOS by @Takoooooo in https://github.com/AvaloniaUI/Avalonia/pull/12327
288+
* Fix window incorrect positioning with window startup location CenterScreen on macOS by @Takoooooo in https://github.com/AvaloniaUI/Avalonia/pull/12327
289289
* Fixed issue where RowDetailsTemplate was getting the wrong DataContext by @Gundz in https://github.com/AvaloniaUI/Avalonia/pull/12174
290290
* Catch dbus errors so that WatchAsync can register all names by @ThereGoesMySanity in https://github.com/AvaloniaUI/Avalonia/pull/12377
291291

Diff for: versioned_docs/version-0.10.x/distribution-publishing/macos.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Add other runtime identifiers as necessary. Each one should be separated by a se
104104

105105
This type of icon file can not only be created on Apple devices, but it is also possible on Linux devices.
106106
You can find more information about how you can achieve that in this blog post:
107-
[Creating Mac OS X Icons (icns) on Linux](https://dentrassi.de/2014/02/25/creating-mac-os-x-icons-icns-on-linux/)
107+
[Creating macOS Icons (icns) on Linux](https://dentrassi.de/2014/02/25/creating-mac-os-x-icons-icns-on-linux/)
108108

109109
### Notes on the `.app` executable file
110110

Diff for: versioned_docs/version-0.10.x/guides/developer-guides/macos-development.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: macOS Development
77

88
It's actually really simple. If you're developing in Windows (which is easier for a Windows developer), once your AvaloniaUI application is looking about right and you're ready to try it on macOS, copy your entire project folder to your Mac (don't worry - all the files will be treated as basic flat files). If you have a github for it, commit it and then check it out on your dev Mac machine.
99

10-
You'll need a development platform for macOS such as Visual Studio for MacOS, JetBrains Rider or you can build from the command line if you have the dotnet SDK installed on you Mac.
10+
You'll need a development platform for macOS such as Visual Studio for macOS, JetBrains Rider or you can build from the command line if you have the dotnet SDK installed on you Mac.
1111
See the Getting Started>>IDE Support for more details.
1212

1313
### Visual Studio for Mac or JetBrains Rider
@@ -26,7 +26,7 @@ To run either type "dotnet run --project pathToProject/myproject.csproj" where "
2626

2727
Your build platform will recompile the code and since it's target independent, it will build the native (ie: Mac) version and link all the Mac target DLLs for .Net Core 6.0 and AvaloniaUI.
2828

29-
The following instructions are for more advanced builds such as having a proper Mac app bundle or of you need better intergration with native MacOS.
29+
The following instructions are for more advanced builds such as having a proper Mac app bundle or of you need better intergration with native macOS.
3030

3131
## Native code
3232

Diff for: versioned_docs/version-0.10.x/tutorials/music-store-app/searching-for-albums.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ In order for our application to work we are going to need some business logic. T
1616

1717
To add this business logic we need 2 steps.
1818

19-
1. Add the ItunesSearch nuget package to the project. In Rider right click on our project and select `Manage Nuget Packages`
19+
1. Add the ItunesSearch nuget package to the project. In Rider right click on our project and select `Manage NuGet Packages`
2020

2121
This will open the `Packages` tool at the bottom of the IDE, like so.
2222

0 commit comments

Comments
 (0)