From e4fc2d75122a976df363f4ee319da0b1613524ab Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Thu, 23 Sep 2021 18:58:17 +0200 Subject: [PATCH] Re-added fake translations --- BlazorWebassemblyI18n.sln.DotSettings.user | 6 + .../Resources/App.Designer.cs | 108 ++++++++++ .../Resources/App.ar-ae.resx | 44 ++++ BlazorWebassemblyI18n/Resources/App.ar.resx | 186 ++++------------- .../Resources/App.fr-fr.resx | 44 ++++ BlazorWebassemblyI18n/Resources/App.fr.resx | 186 ++++------------- BlazorWebassemblyI18n/Resources/App.resx | 197 +++++------------- 7 files changed, 331 insertions(+), 440 deletions(-) create mode 100644 BlazorWebassemblyI18n.sln.DotSettings.user create mode 100644 BlazorWebassemblyI18n/Resources/App.Designer.cs create mode 100644 BlazorWebassemblyI18n/Resources/App.ar-ae.resx create mode 100644 BlazorWebassemblyI18n/Resources/App.fr-fr.resx diff --git a/BlazorWebassemblyI18n.sln.DotSettings.user b/BlazorWebassemblyI18n.sln.DotSettings.user new file mode 100644 index 0000000..ac138e3 --- /dev/null +++ b/BlazorWebassemblyI18n.sln.DotSettings.user @@ -0,0 +1,6 @@ + + True + + + + True \ No newline at end of file diff --git a/BlazorWebassemblyI18n/Resources/App.Designer.cs b/BlazorWebassemblyI18n/Resources/App.Designer.cs new file mode 100644 index 0000000..519b2fe --- /dev/null +++ b/BlazorWebassemblyI18n/Resources/App.Designer.cs @@ -0,0 +1,108 @@ +//------------------------------------------------------------------------------ +// +// 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 BlazorWebassemblyI18n.Resources { + using System; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class App { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal App() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("BlazorWebassemblyI18n.Resources.App", typeof(App).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string City { + get { + return ResourceManager.GetString("City", resourceCulture); + } + } + + internal static string Employee_Data { + get { + return ResourceManager.GetString("Employee Data", resourceCulture); + } + } + + internal static string Female { + get { + return ResourceManager.GetString("Female", resourceCulture); + } + } + + internal static string Gender { + get { + return ResourceManager.GetString("Gender", resourceCulture); + } + } + + internal static string Joining_Date { + get { + return ResourceManager.GetString("Joining Date", resourceCulture); + } + } + + internal static string Male { + get { + return ResourceManager.GetString("Male", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string Salary { + get { + return ResourceManager.GetString("Salary", resourceCulture); + } + } + + internal static string Select_Gender { + get { + return ResourceManager.GetString("Select Gender", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + } +} diff --git a/BlazorWebassemblyI18n/Resources/App.ar-ae.resx b/BlazorWebassemblyI18n/Resources/App.ar-ae.resx new file mode 100644 index 0000000..2665007 --- /dev/null +++ b/BlazorWebassemblyI18n/Resources/App.ar-ae.resx @@ -0,0 +1,44 @@ + + + text/microsoft-resx + + + 1.3 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Tutorial by {0} ar-ae + + + city ar-ae + + + employee data ar-ae + + + female ar-ae + + + gender ar-ae + + + joining date ar-ae + + + male ar-ae + + + name ar-ae + + + salary ar-ae + + + select gender ar-ae + + \ No newline at end of file diff --git a/BlazorWebassemblyI18n/Resources/App.ar.resx b/BlazorWebassemblyI18n/Resources/App.ar.resx index 76253d3..13a157f 100644 --- a/BlazorWebassemblyI18n/Resources/App.ar.resx +++ b/BlazorWebassemblyI18n/Resources/App.ar.resx @@ -1,150 +1,44 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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 - - - مدينة - - - بيانات الموظف - - - أنثى - - - جنس - - - تاريخ الانضمام - - - الذكر - - - اسم - - - راتب - - - حدد نوع الجنس - - - {0} برنامج تعليمي بواسطة - \ No newline at end of file diff --git a/BlazorWebassemblyI18n/Resources/App.fr-fr.resx b/BlazorWebassemblyI18n/Resources/App.fr-fr.resx new file mode 100644 index 0000000..81bb5ec --- /dev/null +++ b/BlazorWebassemblyI18n/Resources/App.fr-fr.resx @@ -0,0 +1,44 @@ + + + text/microsoft-resx + + + 1.3 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Tutorial by {0} fr-fr + + + city fr-fr + + + employee data fr-fr + + + female fr-fr + + + gender fr-fr + + + joining date fr-fr + + + male fr-fr + + + name fr-fr + + + salary fr-fr + + + select gender fr-fr + + \ No newline at end of file diff --git a/BlazorWebassemblyI18n/Resources/App.fr.resx b/BlazorWebassemblyI18n/Resources/App.fr.resx index 433fda8..18bc0de 100644 --- a/BlazorWebassemblyI18n/Resources/App.fr.resx +++ b/BlazorWebassemblyI18n/Resources/App.fr.resx @@ -1,150 +1,44 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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 - - - Ville - - - Données des employés - - - Femme - - - Le genre - - - Date d'inscription - - - Mâle - - - Nom - - - Un salaire - - - Sélectionnez le sexe - - - Tutoriel par {0} - \ No newline at end of file diff --git a/BlazorWebassemblyI18n/Resources/App.resx b/BlazorWebassemblyI18n/Resources/App.resx index 62d16af..f5647c6 100644 --- a/BlazorWebassemblyI18n/Resources/App.resx +++ b/BlazorWebassemblyI18n/Resources/App.resx @@ -1,150 +1,51 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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 - - - City - - - Employee Data - - - Female - - - Gender - - - Joining Date - - - Male - - - Name - - - Salary - - - Select Gender - - - Tutorial by {0} - + + + + + + + + text/microsoft-resx + + + 1.3 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + city + + + employee data + + + female + + + gender + + + joining date + + + male + + + name + + + salary + + + select gender + + + Tutorial by {0} + \ No newline at end of file