Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Nice3point committed Jan 22, 2025
1 parent de69bd8 commit 947a984
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ public MockDashboardViewModel(
},
new NavigationCardItem
{
Title = "Schemata",
Description = "Explore Extensible Storage framework schemata",
Title = "Schemas",
Description = "Explore Extensible Storage framework schemas",
Icon = SymbolRegular.Box24,
Command = NavigatePageCommand,
CommandParameter = "schemas"
Expand All @@ -213,7 +213,7 @@ public MockDashboardViewModel(
[
new NavigationCardItem
{
Title = "Built-Iin Parameters",
Title = "Built-In Parameters",
Description = "Explore predefined parameters available in Revit",
Icon = SymbolRegular.LeafOne24,
Command = OpenDialogCommand,
Expand Down Expand Up @@ -403,4 +403,4 @@ private async Task OpenDialog(string parameter)
_notificationService.ShowError("Failed to open dialog", exception);
}
}
}
}
34 changes: 17 additions & 17 deletions source/RevitLookup/ViewModels/Dashboard/DashboardViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,16 @@ public DashboardViewModel(
[
new NavigationCardItem
{
Title = "Active view",
Title = "Active View",
Description = "Explore and analyze the model's visual representation",
Icon = SymbolRegular.Image24,
Command = NavigatePageCommand,
CommandParameter = "view"
},
new NavigationCardItem
{
Title = "Active document",
Description = "Explore the open document, including its structure and data",
Title = "Active Document",
Description = "Explore the open document, its structure and data",
Icon = SymbolRegular.Document24,
Command = NavigatePageCommand,
CommandParameter = "document"
Expand All @@ -64,15 +64,15 @@ public DashboardViewModel(
},
new NavigationCardItem
{
Title = "UI application",
Title = "UI Application",
Description = "Explore an active session of the Revit user interface",
Icon = SymbolRegular.WindowApps24,
Command = NavigatePageCommand,
CommandParameter = "uiApplication"
},
new NavigationCardItem
{
Title = "UI controlled application",
Title = "UI Controlled Application",
Description = "Explore the Revit UI customization methods and events",
Icon = SymbolRegular.SquareHintApps24,
Command = NavigatePageCommand,
Expand Down Expand Up @@ -103,7 +103,7 @@ public DashboardViewModel(
},
new NavigationCardItem
{
Title = "Linked element",
Title = "Linked Element",
Description = "Select and explore an element linked from another model",
Icon = SymbolRegular.LinkSquare24,
Command = NavigatePageCommand,
Expand All @@ -112,15 +112,15 @@ public DashboardViewModel(
new NavigationCardItem
{
Title = "Face",
Description = "Select and explore a face of the element's geometry",
Description = "Select and explore an element geometry face",
Icon = SymbolRegular.LayerDiagonal20,
Command = NavigatePageCommand,
CommandParameter = "face"
},
new NavigationCardItem
{
Title = "Edge",
Description = "Select and explore the edge of the element's geometry",
Description = "Select and explore element geometry edges",
Icon = SymbolRegular.Line24,
Command = NavigatePageCommand,
CommandParameter = "edge"
Expand All @@ -135,15 +135,15 @@ public DashboardViewModel(
},
new NavigationCardItem
{
Title = "Sub-element",
Description = "Select and explore a sub-element of the selected element",
Title = "Sub-Element",
Description = "Select and explore a selected element sub-element",
Icon = SymbolRegular.Subtitles24,
Command = NavigatePageCommand,
CommandParameter = "subElement"
},
new NavigationCardItem
{
Title = "Dependent elements",
Title = "Dependent Elements",
Description = "Explore child elements associated with the selection",
Icon = SymbolRegular.DataLine24,
Command = NavigatePageCommand,
Expand All @@ -158,15 +158,15 @@ public DashboardViewModel(
[
new NavigationCardItem
{
Title = "Component manager",
Title = "Component Manager",
Description = "Explore low-level visual components in Revit",
Icon = SymbolRegular.SlideTextMultiple32,
Command = NavigatePageCommand,
CommandParameter = "components"
},
new NavigationCardItem
{
Title = "Performance adviser",
Title = "Performance Advisor",
Description = "Explore performance issues in the open document",
Icon = SymbolRegular.HeartPulse24,
Command = NavigatePageCommand,
Expand Down Expand Up @@ -198,7 +198,7 @@ public DashboardViewModel(
new NavigationCardItem
{
Title = "Services",
Description = "Explore services that extend Revit's functionality",
Description = "Explore services extending the base Revit functionality",
Icon = SymbolRegular.WeatherCloudy24,
Command = NavigatePageCommand,
CommandParameter = "services"
Expand All @@ -212,23 +212,23 @@ public DashboardViewModel(
[
new NavigationCardItem
{
Title = "BuiltIn parameters",
Title = "Built-In Parameters",
Description = "Explore predefined parameters available in Revit",
Icon = SymbolRegular.LeafOne24,
Command = OpenDialogCommand,
CommandParameter = "parameters"
},
new NavigationCardItem
{
Title = "BuiltIn categories",
Title = "Built-In Categories",
Description = "Explore predefined categories available in Revit",
Icon = SymbolRegular.LeafTwo24,
Command = OpenDialogCommand,
CommandParameter = "categories"
},
new NavigationCardItem
{
Title = "Forge schema",
Title = "Forge Schema",
Description = "Explore Forge schema definitions used in Revit",
Icon = SymbolRegular.LeafThree24,
Command = OpenDialogCommand,
Expand Down

0 comments on commit 947a984

Please sign in to comment.