Skip to content

Commit 59ba067

Browse files
adamintAdam Ratzman
and
Adam Ratzman
authored
Localize strings and pane/dialog dismissal titles (#7219)
* Add localized translations for required attributes * Add dismiss titles to panes and dialogs --------- Co-authored-by: Adam Ratzman <[email protected]>
1 parent f618082 commit 59ba067

24 files changed

+188
-21
lines changed

src/Aspire.Dashboard/Components/Controls/Chart/MetricTable.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ private async Task OpenExemplarsDialogAsync(MetricViewBase metric)
102102
var parameters = new DialogParameters
103103
{
104104
Title = DialogsLoc[nameof(Resources.Dialogs.ExemplarsDialogTitle)],
105-
PrimaryAction = DialogsLoc[nameof(Resources.Dialogs.ExemplarsDialogCloseButtonText)],
105+
PrimaryAction = DialogsLoc[nameof(Resources.Dialogs.DialogCloseButtonText)],
106106
SecondaryAction = string.Empty,
107107
Width = "800px",
108108
Height = "auto"

src/Aspire.Dashboard/Components/Layout/AspirePageContentLayout.razor

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
@inject IStringLocalizer<Layout> LayoutLoc
44
@inject IStringLocalizer<ControlsStrings> ControlsStringsLoc
5+
@inject IStringLocalizer<Dialogs> DialogsLoc
56

67
<div class="content-layout">
78
<!-- Toolbar -->

src/Aspire.Dashboard/Components/Layout/AspirePageContentLayout.razor.cs

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ public async Task OpenMobileToolbarAsync()
8383
{
8484
Alignment = HorizontalAlignment.Center,
8585
Title = MobileToolbarButtonText ?? ControlsStringsLoc[nameof(ControlsStrings.ChartContainerFiltersHeader)],
86+
DismissTitle = DialogsLoc[nameof(Resources.Dialogs.DialogCloseButtonText)],
8687
Width = "100%",
8788
Height = "90%",
8889
Modal = false,

src/Aspire.Dashboard/Components/Layout/MainLayout.razor.cs

+2
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ private async Task LaunchHelpAsync()
158158
DialogParameters parameters = new()
159159
{
160160
Title = Loc[nameof(Resources.Layout.MainLayoutAspireDashboardHelpLink)],
161+
DismissTitle = DialogsLoc[nameof(Resources.Dialogs.DialogCloseButtonText)],
161162
PrimaryAction = Loc[nameof(Resources.Layout.MainLayoutSettingsDialogClose)],
162163
PrimaryActionEnabled = true,
163164
SecondaryAction = null,
@@ -193,6 +194,7 @@ public async Task LaunchSettingsAsync()
193194
var parameters = new DialogParameters
194195
{
195196
Title = Loc[nameof(Resources.Layout.MainLayoutSettingsDialogTitle)],
197+
DismissTitle = DialogsLoc[nameof(Resources.Dialogs.DialogCloseButtonText)],
196198
PrimaryAction = Loc[nameof(Resources.Layout.MainLayoutSettingsDialogClose)].Value,
197199
SecondaryAction = null,
198200
TrapFocus = true,

src/Aspire.Dashboard/Components/Pages/StructuredLogs.razor

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
@inject IStringLocalizer<Dashboard.Resources.StructuredLogs> Loc
1313
@inject IStringLocalizer<ControlsStrings> ControlsStringsLoc
1414
@inject IStringLocalizer<StructuredFiltering> FilterLoc
15+
@inject IStringLocalizer<Dialogs> DialogsLoc
1516

1617
<PageTitle>
1718
<ApplicationName

src/Aspire.Dashboard/Components/Pages/StructuredLogs.razor.cs

+1
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ private async Task OpenFilterAsync(TelemetryFilter? entry)
285285
{
286286
OnDialogResult = DialogService.CreateDialogCallback(this, HandleFilterDialog),
287287
Title = title,
288+
DismissTitle = DialogsLoc[nameof(Dashboard.Resources.Dialogs.DialogCloseButtonText)],
288289
Alignment = HorizontalAlignment.Right,
289290
PrimaryAction = null,
290291
SecondaryAction = null,

src/Aspire.Dashboard/Components/Pages/Traces.razor

+3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@
77
@using Aspire.Dashboard.Utils
88
@using System.Globalization
99
@using Aspire.Dashboard.Components.Controls.Grid
10+
1011
@inject IJSRuntime JS
1112
@inject IStringLocalizer<Dashboard.Resources.Traces> Loc
1213
@inject IStringLocalizer<StructuredFiltering> FilterLoc
1314
@inject IStringLocalizer<ControlsStrings> ControlsStringsLoc
15+
@inject IStringLocalizer<Dialogs> DialogsLoc
16+
1417
@implements IDisposable
1518

1619
<PageTitle>

src/Aspire.Dashboard/Components/Pages/Traces.razor.cs

+1
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ private async Task OpenFilterAsync(TelemetryFilter? entry)
301301
{
302302
OnDialogResult = DialogService.CreateDialogCallback(this, HandleFilterDialog),
303303
Title = title,
304+
DismissTitle = DialogsLoc[nameof(Dashboard.Resources.Dialogs.DialogCloseButtonText)],
304305
Alignment = HorizontalAlignment.Right,
305306
PrimaryAction = null,
306307
SecondaryAction = null,

src/Aspire.Dashboard/Model/Otlp/FilterDialogFormModel.cs

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,21 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33

44
using System.ComponentModel.DataAnnotations;
5+
using Aspire.Dashboard.Resources;
56

67
namespace Aspire.Dashboard.Model.Otlp;
78

89
public class FilterDialogFormModel
910
{
10-
[Required]
11+
[Required(ErrorMessageResourceType = typeof(Dialogs), ErrorMessageResourceName = nameof(Dialogs.FieldRequired))]
1112
public SelectViewModel<string>? Parameter { get; set; }
1213

13-
[Required]
14+
[Required(ErrorMessageResourceType = typeof(Dialogs), ErrorMessageResourceName = nameof(Dialogs.FieldRequired))]
1415
public SelectViewModel<FilterCondition>? Condition { get; set; }
1516

1617
// Set a max length on value because it will be added to the query string.
1718
// Max length is protection against accidently building a query string that exceeds limits because of a very long value.
18-
[Required]
19-
[MaxLength(1024)]
19+
[Required(ErrorMessageResourceType = typeof(Dialogs), ErrorMessageResourceName = nameof(Dialogs.FieldRequired))]
20+
[MaxLength(1024, ErrorMessageResourceType = typeof(Dialogs), ErrorMessageResourceName = nameof(Dialogs.FieldTooLong))]
2021
public string? Value { get; set; }
2122
}

src/Aspire.Dashboard/Resources/Dialogs.Designer.cs

+20-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Aspire.Dashboard/Resources/Dialogs.resx

+9-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@
211211
<data name="HelpDialogKeyboardShortcutsTitle" xml:space="preserve">
212212
<value>Keyboard Shortcuts</value>
213213
</data>
214-
<data name="ExemplarsDialogCloseButtonText" xml:space="preserve">
214+
<data name="DialogCloseButtonText" xml:space="preserve">
215215
<value>Close</value>
216216
</data>
217217
<data name="ExemplarsDialogTitle" xml:space="preserve">
@@ -254,4 +254,12 @@
254254
<data name="OpenInTextVisualizer" xml:space="preserve">
255255
<value>Open in text visualizer</value>
256256
</data>
257+
<data name="FieldRequired" xml:space="preserve">
258+
<value>A value is required.</value>
259+
<comment>{0} is the literal, untranslated field name which we do not want to show, so it is missing.</comment>
260+
</data>
261+
<data name="FieldTooLong" xml:space="preserve">
262+
<value>A maximum length of {1} characters is allowed.</value>
263+
<comment>{0} is the field name, whereas {1} is the length. We don't want to show the field name, so it is missing.</comment>
264+
</data>
257265
</root>

src/Aspire.Dashboard/Resources/xlf/Dialogs.cs.xlf

+11-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Aspire.Dashboard/Resources/xlf/Dialogs.de.xlf

+11-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Aspire.Dashboard/Resources/xlf/Dialogs.es.xlf

+11-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Aspire.Dashboard/Resources/xlf/Dialogs.fr.xlf

+11-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Aspire.Dashboard/Resources/xlf/Dialogs.it.xlf

+11-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Aspire.Dashboard/Resources/xlf/Dialogs.ja.xlf

+11-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Aspire.Dashboard/Resources/xlf/Dialogs.ko.xlf

+11-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Aspire.Dashboard/Resources/xlf/Dialogs.pl.xlf

+11-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Aspire.Dashboard/Resources/xlf/Dialogs.pt-BR.xlf

+11-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)