diff --git a/I18N Commander/I18N Commander.sln b/I18N Commander/I18N Commander.sln
index 53e4473..fcafa61 100644
--- a/I18N Commander/I18N Commander.sln
+++ b/I18N Commander/I18N Commander.sln
@@ -7,7 +7,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Processor", "Processor\Proc
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UI WinForms", "UI WinForms\UI WinForms.csproj", "{5AE84E7C-3141-46CA-B390-4E42878B6195}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataModel", "DataModel\DataModel.csproj", "{D18DD193-3F93-4D21-92DC-BA0E26B0342A}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DataModel", "DataModel\DataModel.csproj", "{D18DD193-3F93-4D21-92DC-BA0E26B0342A}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UI MAUI", "UI MAUI\UI MAUI.csproj", "{BA8BE958-0DCC-4054-B731-DF911AECC429}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -27,6 +29,12 @@ Global
{D18DD193-3F93-4D21-92DC-BA0E26B0342A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D18DD193-3F93-4D21-92DC-BA0E26B0342A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D18DD193-3F93-4D21-92DC-BA0E26B0342A}.Release|Any CPU.Build.0 = Release|Any CPU
+ {BA8BE958-0DCC-4054-B731-DF911AECC429}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {BA8BE958-0DCC-4054-B731-DF911AECC429}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {BA8BE958-0DCC-4054-B731-DF911AECC429}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {BA8BE958-0DCC-4054-B731-DF911AECC429}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {BA8BE958-0DCC-4054-B731-DF911AECC429}.Release|Any CPU.Build.0 = Release|Any CPU
+ {BA8BE958-0DCC-4054-B731-DF911AECC429}.Release|Any CPU.Deploy.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/I18N Commander/UI MAUI/App.xaml b/I18N Commander/UI MAUI/App.xaml
new file mode 100644
index 0000000..35a536a
--- /dev/null
+++ b/I18N Commander/UI MAUI/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/I18N Commander/UI MAUI/App.xaml.cs b/I18N Commander/UI MAUI/App.xaml.cs
new file mode 100644
index 0000000..93506e7
--- /dev/null
+++ b/I18N Commander/UI MAUI/App.xaml.cs
@@ -0,0 +1,10 @@
+namespace UI_MAUI;
+
+public partial class App : Application
+{
+ public App()
+ {
+ this.InitializeComponent();
+ this.MainPage = new AppShell();
+ }
+}
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/AppShell.xaml b/I18N Commander/UI MAUI/AppShell.xaml
new file mode 100644
index 0000000..75b58d7
--- /dev/null
+++ b/I18N Commander/UI MAUI/AppShell.xaml
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/I18N Commander/UI MAUI/AppShell.xaml.cs b/I18N Commander/UI MAUI/AppShell.xaml.cs
new file mode 100644
index 0000000..11246d3
--- /dev/null
+++ b/I18N Commander/UI MAUI/AppShell.xaml.cs
@@ -0,0 +1,34 @@
+using System.ComponentModel;
+
+namespace UI_MAUI;
+
+public partial class AppShell : Shell, INotifyPropertyChanged
+{
+ private bool isOpen = DeviceInfo.Idiom == DeviceIdiom.Phone || DeviceInfo.Idiom == DeviceIdiom.Tablet;
+
+ public double CurrentFlyoutWidth => this.isOpen ? 200 : 90;
+
+ public string TextLoadProject => this.isOpen ? "Load Project" : string.Empty;
+
+ public string TextSettings => this.isOpen ? "Settings" : string.Empty;
+
+ public string TextTranslations => this.isOpen ? "Translations" : string.Empty;
+
+ public string TextToggle => this.isOpen ? "Toggle menu" : string.Empty;
+
+ public AppShell()
+ {
+ this.InitializeComponent();
+ }
+
+ private void MenuItemToggle_OnClicked(object sender, EventArgs e)
+ {
+ this.isOpen = !this.isOpen;
+ this.OnPropertyChanged(nameof(this.CurrentFlyoutWidth));
+ this.OnPropertyChanged(nameof(this.TextSettings));
+ this.OnPropertyChanged(nameof(this.TextTranslations));
+ this.OnPropertyChanged(nameof(this.TextLoadProject));
+ this.OnPropertyChanged(nameof(this.TextToggle));
+ this.InvalidateMeasure();
+ }
+}
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/MainPage.xaml b/I18N Commander/UI MAUI/MainPage.xaml
new file mode 100644
index 0000000..9967020
--- /dev/null
+++ b/I18N Commander/UI MAUI/MainPage.xaml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/I18N Commander/UI MAUI/MainPage.xaml.cs b/I18N Commander/UI MAUI/MainPage.xaml.cs
new file mode 100644
index 0000000..7ae1f20
--- /dev/null
+++ b/I18N Commander/UI MAUI/MainPage.xaml.cs
@@ -0,0 +1,23 @@
+namespace UI_MAUI;
+
+public partial class MainPage : ContentPage
+{
+ int count = 0;
+
+ public MainPage()
+ {
+ this.InitializeComponent();
+ }
+
+ private void OnCounterClicked(object sender, EventArgs e)
+ {
+ this.count++;
+
+ if (this.count == 1)
+ this.CounterBtn.Text = $"Clicked {this.count} time";
+ else
+ this.CounterBtn.Text = $"Clicked {this.count} times";
+
+ SemanticScreenReader.Announce(this.CounterBtn.Text);
+ }
+}
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/MauiProgram.cs b/I18N Commander/UI MAUI/MauiProgram.cs
new file mode 100644
index 0000000..e2dc393
--- /dev/null
+++ b/I18N Commander/UI MAUI/MauiProgram.cs
@@ -0,0 +1,22 @@
+using CommunityToolkit.Maui;
+using CommunityToolkit.Maui.Markup;
+
+namespace UI_MAUI;
+
+public static class MauiProgram
+{
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = MauiApp.CreateBuilder();
+ builder.UseMauiApp();
+ builder.UseMauiCommunityToolkit();
+ builder.UseMauiCommunityToolkitMarkup();
+ builder.ConfigureFonts(fonts =>
+ {
+ fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
+ fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
+ });
+
+ return builder.Build();
+ }
+}
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Pages/LoadProjectPage.xaml b/I18N Commander/UI MAUI/Pages/LoadProjectPage.xaml
new file mode 100644
index 0000000..6c89b4d
--- /dev/null
+++ b/I18N Commander/UI MAUI/Pages/LoadProjectPage.xaml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Pages/LoadProjectPage.xaml.cs b/I18N Commander/UI MAUI/Pages/LoadProjectPage.xaml.cs
new file mode 100644
index 0000000..881a9be
--- /dev/null
+++ b/I18N Commander/UI MAUI/Pages/LoadProjectPage.xaml.cs
@@ -0,0 +1,9 @@
+namespace UI_MAUI.Pages;
+
+public partial class LoadProjectPage : ContentPage
+{
+ public LoadProjectPage()
+ {
+ this.InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Pages/SettingsPage.xaml b/I18N Commander/UI MAUI/Pages/SettingsPage.xaml
new file mode 100644
index 0000000..e130d57
--- /dev/null
+++ b/I18N Commander/UI MAUI/Pages/SettingsPage.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Pages/SettingsPage.xaml.cs b/I18N Commander/UI MAUI/Pages/SettingsPage.xaml.cs
new file mode 100644
index 0000000..66f947f
--- /dev/null
+++ b/I18N Commander/UI MAUI/Pages/SettingsPage.xaml.cs
@@ -0,0 +1,9 @@
+namespace UI_MAUI.Pages;
+
+public partial class SettingsPage : ContentPage
+{
+ public SettingsPage()
+ {
+ this.InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Pages/TranslationPage.xaml b/I18N Commander/UI MAUI/Pages/TranslationPage.xaml
new file mode 100644
index 0000000..3b31b99
--- /dev/null
+++ b/I18N Commander/UI MAUI/Pages/TranslationPage.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Pages/TranslationPage.xaml.cs b/I18N Commander/UI MAUI/Pages/TranslationPage.xaml.cs
new file mode 100644
index 0000000..f434c60
--- /dev/null
+++ b/I18N Commander/UI MAUI/Pages/TranslationPage.xaml.cs
@@ -0,0 +1,9 @@
+namespace UI_MAUI.Pages;
+
+public partial class TranslationPage : ContentPage
+{
+ public TranslationPage()
+ {
+ this.InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Platforms/Android/AndroidManifest.xml b/I18N Commander/UI MAUI/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..4880a99
--- /dev/null
+++ b/I18N Commander/UI MAUI/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Platforms/Android/MainActivity.cs b/I18N Commander/UI MAUI/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..1f42898
--- /dev/null
+++ b/I18N Commander/UI MAUI/Platforms/Android/MainActivity.cs
@@ -0,0 +1,10 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace UI_MAUI;
+
+[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
+public class MainActivity : MauiAppCompatActivity
+{
+}
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Platforms/Android/MainApplication.cs b/I18N Commander/UI MAUI/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..bbc01af
--- /dev/null
+++ b/I18N Commander/UI MAUI/Platforms/Android/MainApplication.cs
@@ -0,0 +1,14 @@
+using Android.App;
+using Android.Runtime;
+
+namespace UI_MAUI;
+
+[Application]
+public class MainApplication : MauiApplication
+{
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership) : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Platforms/Android/Resources/values/colors.xml b/I18N Commander/UI MAUI/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..5cd1604
--- /dev/null
+++ b/I18N Commander/UI MAUI/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Platforms/MacCatalyst/AppDelegate.cs b/I18N Commander/UI MAUI/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..0808d6a
--- /dev/null
+++ b/I18N Commander/UI MAUI/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,9 @@
+using Foundation;
+
+namespace UI_MAUI;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Platforms/MacCatalyst/Info.plist b/I18N Commander/UI MAUI/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..0690e47
--- /dev/null
+++ b/I18N Commander/UI MAUI/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,30 @@
+
+
+
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/I18N Commander/UI MAUI/Platforms/MacCatalyst/Program.cs b/I18N Commander/UI MAUI/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..4fefae1
--- /dev/null
+++ b/I18N Commander/UI MAUI/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,15 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace UI_MAUI;
+
+public class Program
+{
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+}
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Platforms/Windows/App.xaml b/I18N Commander/UI MAUI/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..cac8228
--- /dev/null
+++ b/I18N Commander/UI MAUI/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/I18N Commander/UI MAUI/Platforms/Windows/App.xaml.cs b/I18N Commander/UI MAUI/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..fb73cdb
--- /dev/null
+++ b/I18N Commander/UI MAUI/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,18 @@
+namespace UI_MAUI.WinUI;
+
+///
+/// Provides application-specific behavior to supplement the default Application class.
+///
+public partial class App : MauiWinUIApplication
+{
+ ///
+ /// Initializes the singleton application object. This is the first line of authored code
+ /// executed, and as such is the logical equivalent of main() or WinMain().
+ ///
+ public App()
+ {
+ this.InitializeComponent();
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Platforms/Windows/Package.appxmanifest b/I18N Commander/UI MAUI/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..e98c6ed
--- /dev/null
+++ b/I18N Commander/UI MAUI/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/I18N Commander/UI MAUI/Platforms/Windows/app.manifest b/I18N Commander/UI MAUI/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..e90c6f0
--- /dev/null
+++ b/I18N Commander/UI MAUI/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/I18N Commander/UI MAUI/Platforms/iOS/AppDelegate.cs b/I18N Commander/UI MAUI/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..0808d6a
--- /dev/null
+++ b/I18N Commander/UI MAUI/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,9 @@
+using Foundation;
+
+namespace UI_MAUI;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Platforms/iOS/Info.plist b/I18N Commander/UI MAUI/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..358337b
--- /dev/null
+++ b/I18N Commander/UI MAUI/Platforms/iOS/Info.plist
@@ -0,0 +1,32 @@
+
+
+
+
+ LSRequiresIPhoneOS
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/I18N Commander/UI MAUI/Platforms/iOS/Program.cs b/I18N Commander/UI MAUI/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..4fefae1
--- /dev/null
+++ b/I18N Commander/UI MAUI/Platforms/iOS/Program.cs
@@ -0,0 +1,15 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace UI_MAUI;
+
+public class Program
+{
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+}
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Properties/Resources.Designer.cs b/I18N Commander/UI MAUI/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..4c58387
--- /dev/null
+++ b/I18N Commander/UI MAUI/Properties/Resources.Designer.cs
@@ -0,0 +1,63 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace UI_MAUI.Properties {
+ using System;
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources() {
+ }
+
+ ///
+ /// 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("UI_MAUI.Properties.Resources", typeof(Resources).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;
+ }
+ }
+ }
+}
diff --git a/I18N Commander/UI MAUI/Properties/Resources.resx b/I18N Commander/UI MAUI/Properties/Resources.resx
new file mode 100644
index 0000000..85c9090
--- /dev/null
+++ b/I18N Commander/UI MAUI/Properties/Resources.resx
@@ -0,0 +1,101 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 1.3
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Properties/launchSettings.json b/I18N Commander/UI MAUI/Properties/launchSettings.json
new file mode 100644
index 0000000..c16206a
--- /dev/null
+++ b/I18N Commander/UI MAUI/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Resources/AppIcon/planet.svg b/I18N Commander/UI MAUI/Resources/AppIcon/planet.svg
new file mode 100644
index 0000000..b0c38fe
--- /dev/null
+++ b/I18N Commander/UI MAUI/Resources/AppIcon/planet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Resources/Fonts/OpenSans-Regular.ttf b/I18N Commander/UI MAUI/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..36b4b9b
Binary files /dev/null and b/I18N Commander/UI MAUI/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/I18N Commander/UI MAUI/Resources/Fonts/OpenSans-Semibold.ttf b/I18N Commander/UI MAUI/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..e7f1e99
Binary files /dev/null and b/I18N Commander/UI MAUI/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/I18N Commander/UI MAUI/Resources/Images/dotnet_bot.svg b/I18N Commander/UI MAUI/Resources/Images/dotnet_bot.svg
new file mode 100644
index 0000000..51b1c33
--- /dev/null
+++ b/I18N Commander/UI MAUI/Resources/Images/dotnet_bot.svg
@@ -0,0 +1,93 @@
+
diff --git a/I18N Commander/UI MAUI/Resources/Images/expand.svg b/I18N Commander/UI MAUI/Resources/Images/expand.svg
new file mode 100644
index 0000000..97cb12d
--- /dev/null
+++ b/I18N Commander/UI MAUI/Resources/Images/expand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Resources/Images/load.svg b/I18N Commander/UI MAUI/Resources/Images/load.svg
new file mode 100644
index 0000000..c50a82d
--- /dev/null
+++ b/I18N Commander/UI MAUI/Resources/Images/load.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Resources/Images/settings.svg b/I18N Commander/UI MAUI/Resources/Images/settings.svg
new file mode 100644
index 0000000..06575e3
--- /dev/null
+++ b/I18N Commander/UI MAUI/Resources/Images/settings.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Resources/Images/shrink.svg b/I18N Commander/UI MAUI/Resources/Images/shrink.svg
new file mode 100644
index 0000000..9a8300a
--- /dev/null
+++ b/I18N Commander/UI MAUI/Resources/Images/shrink.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Resources/Images/translation.svg b/I18N Commander/UI MAUI/Resources/Images/translation.svg
new file mode 100644
index 0000000..e9e3c1e
--- /dev/null
+++ b/I18N Commander/UI MAUI/Resources/Images/translation.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Resources/Raw/AboutAssets.txt b/I18N Commander/UI MAUI/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..50b8a7b
--- /dev/null
+++ b/I18N Commander/UI MAUI/Resources/Raw/AboutAssets.txt
@@ -0,0 +1,15 @@
+Any raw assets you want to be deployed with your application can be placed in
+this directory (and child directories). Deployment of the asset to your application
+is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
+
+
+
+These files will be deployed with you package and will be accessible using Essentials:
+
+ async Task LoadMauiAsset()
+ {
+ using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
+ using var reader = new StreamReader(stream);
+
+ var contents = reader.ReadToEnd();
+ }
diff --git a/I18N Commander/UI MAUI/Resources/Splash/splash.svg b/I18N Commander/UI MAUI/Resources/Splash/splash.svg
new file mode 100644
index 0000000..62d66d7
--- /dev/null
+++ b/I18N Commander/UI MAUI/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Resources/Styles/Colors.xaml b/I18N Commander/UI MAUI/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..d183ec4
--- /dev/null
+++ b/I18N Commander/UI MAUI/Resources/Styles/Colors.xaml
@@ -0,0 +1,44 @@
+
+
+
+
+ #512BD4
+ #DFD8F7
+ #2B0B98
+ White
+ Black
+ #E1E1E1
+ #C8C8C8
+ #ACACAC
+ #919191
+ #6E6E6E
+ #404040
+ #212121
+ #141414
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #F7B548
+ #FFD590
+ #FFE5B9
+ #28C2D1
+ #7BDDEF
+ #C3F2F4
+ #3E8EED
+ #72ACF1
+ #A7CBF6
+
+
\ No newline at end of file
diff --git a/I18N Commander/UI MAUI/Resources/Styles/Styles.xaml b/I18N Commander/UI MAUI/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..e7eefdb
--- /dev/null
+++ b/I18N Commander/UI MAUI/Resources/Styles/Styles.xaml
@@ -0,0 +1,384 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/I18N Commander/UI MAUI/UI MAUI.csproj b/I18N Commander/UI MAUI/UI MAUI.csproj
new file mode 100644
index 0000000..092d2af
--- /dev/null
+++ b/I18N Commander/UI MAUI/UI MAUI.csproj
@@ -0,0 +1,75 @@
+
+
+
+ net6.0-android;net6.0-ios;net6.0-maccatalyst
+ $(TargetFrameworks);net6.0-windows10.0.19041.0
+ Exe
+ UI_MAUI
+ true
+ true
+ enable
+
+
+ I18N Commander
+
+
+ org.tsommer.i18n-commander
+ 6D8A5F75-4C32-4807-AC75-CD934671D139
+
+
+ 1.0
+ 1
+
+ 14.2
+ 14.0
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ..\..\..\..\..\.nuget\packages\microsoft.windowsappsdk\1.1.1\lib\net5.0-windows10.0.18362.0\Microsoft.WinUI.dll
+
+
+
+
+
+ True
+ True
+ Resources.resx
+
+
+
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+
+
+
+
+
+
+
+