Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

proof read MockDashboardViewModel.cs card decriptions and titles #306

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,16 @@ public MockDashboardViewModel(
[
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 @@ -65,15 +65,15 @@ public MockDashboardViewModel(
},
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 @@ -104,7 +104,7 @@ public MockDashboardViewModel(
},
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 @@ -113,15 +113,15 @@ public MockDashboardViewModel(
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 @@ -136,15 +136,15 @@ public MockDashboardViewModel(
},
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 @@ -159,15 +159,15 @@ public MockDashboardViewModel(
[
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 All @@ -190,16 +190,16 @@ public MockDashboardViewModel(
},
new NavigationCardItem
{
Title = "Schemas",
Description = "Explore Extensible Storage framework schemas",
Title = "Schemata",
Description = "Explore Extensible Storage framework schemata",
Icon = SymbolRegular.Box24,
Command = NavigatePageCommand,
CommandParameter = "schemas"
},
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 @@ -213,23 +213,23 @@ public MockDashboardViewModel(
[
new NavigationCardItem
{
Title = "BuiltIn parameters",
Title = "Built-Iin 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 Expand Up @@ -403,4 +403,4 @@ private async Task OpenDialog(string parameter)
_notificationService.ShowError("Failed to open dialog", exception);
}
}
}
}