Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions 10.0/Apps/DeveloperBalance/Pages/ManageMetaPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
Background="Transparent"
Command="{Binding DeleteCategoryCommand, Source={RelativeSource AncestorType={x:Type pageModels:ManageMetaPageModel}}, x:DataType=pageModels:ManageMetaPageModel}" CommandParameter="{Binding .}"
Grid.Column="3"
SemanticProperties.Description="Delete Category" />
SemanticProperties.Description="{Binding Title, StringFormat='Delete {0} Category'}" />
</Grid>
</DataTemplate>
</BindableLayout.ItemTemplate>
Expand Down Expand Up @@ -116,7 +116,7 @@

<Button
ImageSource="{StaticResource IconDelete}"
SemanticProperties.Description="Delete Tag"
SemanticProperties.Description="{Binding Title, StringFormat='Delete {0} Tag'}"
Background="Transparent"
Command="{Binding DeleteTagCommand, Source={RelativeSource AncestorType={x:Type pageModels:ManageMetaPageModel}}, x:DataType=pageModels:ManageMetaPageModel}" CommandParameter="{Binding .}"
Grid.Column="3"/>
Expand Down
2 changes: 1 addition & 1 deletion 10.0/Apps/DeveloperBalance/Pages/ProjectDetailPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
Order="Primary"
Priority="0"
IconImageSource="{StaticResource IconDelete}"
SemanticProperties.Description="Delete" />
SemanticProperties.Description="Delete Project" />
</ContentPage.ToolbarItems>

<Grid>
Expand Down
2 changes: 1 addition & 1 deletion 10.0/Apps/DeveloperBalance/Pages/TaskDetailPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
Order="Primary"
Priority="0"
IconImageSource="{StaticResource IconDelete}"
SemanticProperties.Description="Delete" />
SemanticProperties.Description="Delete Task" />
</ContentPage.ToolbarItems>

<Grid>
Expand Down
4 changes: 2 additions & 2 deletions 9.0/Apps/DeveloperBalance/Pages/ManageMetaPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
Background="Transparent"
Command="{Binding DeleteCategoryCommand, Source={RelativeSource AncestorType={x:Type pageModels:ManageMetaPageModel}}, x:DataType=pageModels:ManageMetaPageModel}" CommandParameter="{Binding .}"
Grid.Column="3"
SemanticProperties.Description="Delete Category" />
SemanticProperties.Description="{Binding Title, StringFormat='Delete {0} Category'}" />
</Grid>
</DataTemplate>
</BindableLayout.ItemTemplate>
Expand Down Expand Up @@ -116,7 +116,7 @@

<Button
ImageSource="{StaticResource IconDelete}"
SemanticProperties.Description="Delete Tag"
SemanticProperties.Description="{Binding Title, StringFormat='Delete {0} Tag'}"
Background="Transparent"
Command="{Binding DeleteTagCommand, Source={RelativeSource AncestorType={x:Type pageModels:ManageMetaPageModel}}, x:DataType=pageModels:ManageMetaPageModel}" CommandParameter="{Binding .}"
Grid.Column="3"/>
Expand Down
2 changes: 1 addition & 1 deletion 9.0/Apps/DeveloperBalance/Pages/ProjectDetailPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Order="Primary"
Priority="0"
IconImageSource="{StaticResource IconDelete}"
SemanticProperties.Description="Delete" />
SemanticProperties.Description="Delete Project" />
</ContentPage.ToolbarItems>

<Grid>
Expand Down
2 changes: 1 addition & 1 deletion 9.0/Apps/DeveloperBalance/Pages/TaskDetailPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
Order="Primary"
Priority="0"
IconImageSource="{StaticResource IconDelete}"
SemanticProperties.Description="Delete" />
SemanticProperties.Description="Delete Task" />
</ContentPage.ToolbarItems>

<Grid>
Expand Down
Loading