diff --git a/BlazorApp/BlazorApp/BlazorApp.csproj b/BlazorApp/BlazorApp/BlazorApp.csproj index 0b32f52..5d41cbd 100644 --- a/BlazorApp/BlazorApp/BlazorApp.csproj +++ b/BlazorApp/BlazorApp/BlazorApp.csproj @@ -24,7 +24,6 @@ - @@ -35,7 +34,6 @@ - @@ -43,10 +41,31 @@ ResXFileCodeGenerator Pages.List.Designer.cs + + ResXFileCodeGenerator + Components.InventoryComp.Designer.cs + + + ResXFileCodeGenerator + Components.InventoryComp.fr-FR.Designer.cs + + + ResXFileCodeGenerator + Pages.List.fr-FR.Designer.cs + Pages.List.resx + + Components.InventoryComp.resx + + + Components.InventoryComp.fr-FR.resx + + + Pages.List.fr-FR.resx + diff --git a/BlazorApp/BlazorApp/Components/InventoryComp.razor b/BlazorApp/BlazorApp/Components/InventoryComp.razor index dc7879f..d2a146f 100644 --- a/BlazorApp/BlazorApp/Components/InventoryComp.razor +++ b/BlazorApp/BlazorApp/Components/InventoryComp.razor @@ -1,40 +1,44 @@ @using BlazorApp.Components; @using BlazorApp.Pages; @using BlazorApp.Models; +@using BlazorApp.Controllers; +@using BlazorApp.Shared; +@using System.Globalization; +
-
Inventory:
+
@Localizer["Inventory"]
- @for(int i=0; i + + + + + + + + + + + + + + + + + + --> + @for (int i = 0; i < InventorySize; i++) { - + }
@@ -43,37 +47,37 @@
- -
Available items:
-
+
@Localizer["Available Items"]
-
- - -
- - - - - - - - - - -
+
+ +
+ + +
+ + + + + + + + + +
-
- - + +
+
+ +
\ No newline at end of file diff --git a/BlazorApp/BlazorApp/Components/InventoryComp.razor.cs b/BlazorApp/BlazorApp/Components/InventoryComp.razor.cs index 5a436e8..5a6d5ab 100644 --- a/BlazorApp/BlazorApp/Components/InventoryComp.razor.cs +++ b/BlazorApp/BlazorApp/Components/InventoryComp.razor.cs @@ -7,6 +7,9 @@ using System.Collections.Specialized; using BlazorApp.Services; using Blazorise.DataGrid; using Microsoft.AspNetCore.Components.Web; +using Microsoft.Extensions.Localization; +using System.Collections.Generic; +using BlazorApp.Pages; namespace BlazorApp.Components { @@ -25,6 +28,9 @@ namespace BlazorApp.Components [Inject] public IDataService DataService { get; set; } + [Inject] + public IStringLocalizer Localizer { get; set; } + [Parameter] public List Items { get; set; } diff --git a/BlazorApp/BlazorApp/Pages/Index.razor b/BlazorApp/BlazorApp/Pages/Index.razor index 532a52a..be196e0 100644 --- a/BlazorApp/BlazorApp/Pages/Index.razor +++ b/BlazorApp/BlazorApp/Pages/Index.razor @@ -37,11 +37,11 @@
Content of my TestRenderFragment
- +-->

CurrentCulture: @CultureInfo.CurrentCulture

- --> +
diff --git a/BlazorApp/BlazorApp/Pages/Inventory.razor b/BlazorApp/BlazorApp/Pages/Inventory.razor index 3b4b541..185615e 100644 --- a/BlazorApp/BlazorApp/Pages/Inventory.razor +++ b/BlazorApp/BlazorApp/Pages/Inventory.razor @@ -2,9 +2,12 @@ @using BlazorApp.Components; @using BlazorApp.Pages; @using BlazorApp.Models; +@using BlazorApp.Shared; +@using BlazorApp.Services; +@using System.Globalization;
- +
diff --git a/BlazorApp/BlazorApp/Pages/Inventory.razor.cs b/BlazorApp/BlazorApp/Pages/Inventory.razor.cs index bb33030..29aba78 100644 --- a/BlazorApp/BlazorApp/Pages/Inventory.razor.cs +++ b/BlazorApp/BlazorApp/Pages/Inventory.razor.cs @@ -5,6 +5,7 @@ using BlazorApp.Services; using Blazorise; using Blazorise.DataGrid; using Microsoft.AspNetCore.Components; +using Microsoft.Extensions.Localization; namespace BlazorApp.Pages { @@ -13,6 +14,9 @@ namespace BlazorApp.Pages [Inject] public IDataService DataService { get; set; } + [Inject] + public IStringLocalizer Localizer { get; set; } + public List Items { get; set; } = new List(); private int totalItem; diff --git a/BlazorApp/BlazorApp/Resources/Pages.List.resx b/BlazorApp/BlazorApp/Resources/Pages.List.resx deleted file mode 100644 index 8bb86da..0000000 --- a/BlazorApp/BlazorApp/Resources/Pages.List.resx +++ /dev/null @@ -1,16 +0,0 @@ - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - diff --git a/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.Designer 2.cs b/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.Designer 2.cs new file mode 100644 index 0000000..5390ca4 --- /dev/null +++ b/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.Designer 2.cs @@ -0,0 +1,87 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace BlazorApp.Resources { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// This class was generated by MSBuild using the GenerateResource task. + /// To add or remove a member, edit your .resx file then rerun MSBuild. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Build.Tasks.StronglyTypedResourceBuilder", "15.1.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Components_InventoryComp { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Components_InventoryComp() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("BlazorApp.Resources.Components.InventoryComp", typeof(Components_InventoryComp).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Available Items. + /// + internal static string Available_Items { + get { + return ResourceManager.GetString("Available Items", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inventory. + /// + internal static string Inventory { + get { + return ResourceManager.GetString("Inventory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sort. + /// + internal static string Sort { + get { + return ResourceManager.GetString("Sort", resourceCulture); + } + } + } +} diff --git a/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.Designer.cs b/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.Designer.cs new file mode 100644 index 0000000..618df18 --- /dev/null +++ b/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.Designer.cs @@ -0,0 +1,87 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace BlazorApp.Ressources { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// This class was generated by MSBuild using the GenerateResource task. + /// To add or remove a member, edit your .resx file then rerun MSBuild. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Build.Tasks.StronglyTypedResourceBuilder", "15.1.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Components_InventoryComp { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Components_InventoryComp() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("BlazorApp.Ressources.Components.InventoryComp", typeof(Components_InventoryComp).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Available Items. + /// + internal static string Available_Items { + get { + return ResourceManager.GetString("Available Items", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inventory. + /// + internal static string Inventory { + get { + return ResourceManager.GetString("Inventory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sort. + /// + internal static string Sort { + get { + return ResourceManager.GetString("Sort", resourceCulture); + } + } + } +} diff --git a/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.fr-FR.Designer 2.cs b/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.fr-FR.Designer 2.cs new file mode 100644 index 0000000..3ddad97 --- /dev/null +++ b/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.fr-FR.Designer 2.cs @@ -0,0 +1,87 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace BlazorApp.Resources { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// This class was generated by MSBuild using the GenerateResource task. + /// To add or remove a member, edit your .resx file then rerun MSBuild. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Build.Tasks.StronglyTypedResourceBuilder", "15.1.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Components_InventoryComp_fr_FR { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Components_InventoryComp_fr_FR() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("BlazorApp.Resources.Components.InventoryComp.fr-FR", typeof(Components_InventoryComp_fr_FR).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Objets Disponibles. + /// + internal static string Available_Items { + get { + return ResourceManager.GetString("Available Items", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inventaire. + /// + internal static string Inventory { + get { + return ResourceManager.GetString("Inventory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Trier. + /// + internal static string Sort { + get { + return ResourceManager.GetString("Sort", resourceCulture); + } + } + } +} diff --git a/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.fr-FR.Designer.cs b/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.fr-FR.Designer.cs new file mode 100644 index 0000000..f3f95fc --- /dev/null +++ b/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.fr-FR.Designer.cs @@ -0,0 +1,87 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace BlazorApp.Ressources { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// This class was generated by MSBuild using the GenerateResource task. + /// To add or remove a member, edit your .resx file then rerun MSBuild. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Build.Tasks.StronglyTypedResourceBuilder", "15.1.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Components_InventoryComp_fr_FR { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Components_InventoryComp_fr_FR() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("BlazorApp.Ressources.Components.InventoryComp.fr-FR", typeof(Components_InventoryComp_fr_FR).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Objets Disponibles. + /// + internal static string Available_Items { + get { + return ResourceManager.GetString("Available Items", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inventaire. + /// + internal static string Inventory { + get { + return ResourceManager.GetString("Inventory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Trier. + /// + internal static string Sort { + get { + return ResourceManager.GetString("Sort", resourceCulture); + } + } + } +} diff --git a/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.fr-FR.resx b/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.fr-FR.resx new file mode 100644 index 0000000..414cf04 --- /dev/null +++ b/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.fr-FR.resx @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Inventaire + + + + Objets Disponibles + + + + Trier + + + \ No newline at end of file diff --git a/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.resx b/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.resx new file mode 100644 index 0000000..de97e89 --- /dev/null +++ b/BlazorApp/BlazorApp/Ressources/Components.InventoryComp.resx @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Inventory + + + + Available Items + + + + Sort + + + \ No newline at end of file diff --git a/BlazorApp/BlazorApp/Resources/Pages.List.Designer.cs b/BlazorApp/BlazorApp/Ressources/Pages.List.Designer 2.cs similarity index 100% rename from BlazorApp/BlazorApp/Resources/Pages.List.Designer.cs rename to BlazorApp/BlazorApp/Ressources/Pages.List.Designer 2.cs diff --git a/BlazorApp/BlazorApp/Ressources/Pages.List.Designer.cs b/BlazorApp/BlazorApp/Ressources/Pages.List.Designer.cs new file mode 100644 index 0000000..dd33e75 --- /dev/null +++ b/BlazorApp/BlazorApp/Ressources/Pages.List.Designer.cs @@ -0,0 +1,69 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace BlazorApp.Ressources { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// This class was generated by MSBuild using the GenerateResource task. + /// To add or remove a member, edit your .resx file then rerun MSBuild. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Build.Tasks.StronglyTypedResourceBuilder", "15.1.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Pages_List { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Pages_List() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("BlazorApp.Ressources.Pages.List", typeof(Pages_List).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Items List. + /// + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + } +} diff --git a/BlazorApp/BlazorApp/Ressources/Pages.List.fr-FR.Designer.cs b/BlazorApp/BlazorApp/Ressources/Pages.List.fr-FR.Designer.cs new file mode 100644 index 0000000..1a268c6 --- /dev/null +++ b/BlazorApp/BlazorApp/Ressources/Pages.List.fr-FR.Designer.cs @@ -0,0 +1,69 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace BlazorApp.Ressources { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// This class was generated by MSBuild using the GenerateResource task. + /// To add or remove a member, edit your .resx file then rerun MSBuild. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Build.Tasks.StronglyTypedResourceBuilder", "15.1.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Pages_List_fr_FR { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Pages_List_fr_FR() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("BlazorApp.Ressources.Pages.List.fr-FR", typeof(Pages_List_fr_FR).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Liste d'objets. + /// + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + } +} diff --git a/BlazorApp/BlazorApp/Ressources/Pages.List.fr-FR.resx b/BlazorApp/BlazorApp/Ressources/Pages.List.fr-FR.resx new file mode 100644 index 0000000..46b0ac3 --- /dev/null +++ b/BlazorApp/BlazorApp/Ressources/Pages.List.fr-FR.resx @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Liste d'objets + + + \ No newline at end of file diff --git a/BlazorApp/BlazorApp/Ressources/Pages.List.resx b/BlazorApp/BlazorApp/Ressources/Pages.List.resx new file mode 100644 index 0000000..759f317 --- /dev/null +++ b/BlazorApp/BlazorApp/Ressources/Pages.List.resx @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Items List + + + \ No newline at end of file