From 183383d4973b71dcd5589bf8cffa3f34cb6a73f0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Nov 2023 04:42:29 +0000 Subject: [PATCH 01/18] Bump Betalgo.OpenAI from 7.3.1 to 7.4.1 Bumps [Betalgo.OpenAI](https://github.com/betalgo/openai) from 7.3.1 to 7.4.1. - [Release notes](https://github.com/betalgo/openai/releases) - [Commits](https://github.com/betalgo/openai/compare/v7.3.1...v7.4.1) --- updated-dependencies: - dependency-name: Betalgo.OpenAI dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- ColorPicker/ColorPicker.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ColorPicker/ColorPicker.csproj b/ColorPicker/ColorPicker.csproj index 0d315c08..830dac96 100644 --- a/ColorPicker/ColorPicker.csproj +++ b/ColorPicker/ColorPicker.csproj @@ -48,7 +48,7 @@ - + From 62f92ab11583c22f041f2b87473c7d1b814630b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 04:59:55 +0000 Subject: [PATCH 02/18] Bump PeyrSharp.Env from 1.10.0.2310 to 2.0.0.2311 Bumps [PeyrSharp.Env](https://github.com/DevyusCode/PeyrSharp) from 1.10.0.2310 to 2.0.0.2311. - [Release notes](https://github.com/DevyusCode/PeyrSharp/releases) - [Commits](https://github.com/DevyusCode/PeyrSharp/compare/1.10.0.2310...2.0.0.2311) --- updated-dependencies: - dependency-name: PeyrSharp.Env dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- ColorPicker/ColorPicker.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ColorPicker/ColorPicker.csproj b/ColorPicker/ColorPicker.csproj index 0d315c08..efd32f37 100644 --- a/ColorPicker/ColorPicker.csproj +++ b/ColorPicker/ColorPicker.csproj @@ -51,7 +51,7 @@ - + From fee33bbe3b213a68ee4dd3e96aceab2828422739 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 05:00:00 +0000 Subject: [PATCH 03/18] Bump PeyrSharp.Core from 1.10.0.2310 to 2.0.0.2311 Bumps [PeyrSharp.Core](https://github.com/DevyusCode/PeyrSharp) from 1.10.0.2310 to 2.0.0.2311. - [Release notes](https://github.com/DevyusCode/PeyrSharp/releases) - [Commits](https://github.com/DevyusCode/PeyrSharp/compare/1.10.0.2310...2.0.0.2311) --- updated-dependencies: - dependency-name: PeyrSharp.Core dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- ColorPicker/ColorPicker.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ColorPicker/ColorPicker.csproj b/ColorPicker/ColorPicker.csproj index 0d315c08..0cced595 100644 --- a/ColorPicker/ColorPicker.csproj +++ b/ColorPicker/ColorPicker.csproj @@ -52,7 +52,7 @@ - + From 28d8c9e1eb0c6bdcbe267bc77542b6351cdb030c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Peyronnet?= Date: Sun, 10 Dec 2023 11:10:08 +0100 Subject: [PATCH 04/18] Added the possibility to bookmark a color in Harmonies page (#351) --- ColorPicker/Pages/HarmoniesPage.xaml | 20 ++++++++++- ColorPicker/Pages/HarmoniesPage.xaml.cs | 45 +++++++++++++++++++------ 2 files changed, 54 insertions(+), 11 deletions(-) diff --git a/ColorPicker/Pages/HarmoniesPage.xaml b/ColorPicker/Pages/HarmoniesPage.xaml index 03074f26..aa91f48e 100644 --- a/ColorPicker/Pages/HarmoniesPage.xaml +++ b/ColorPicker/Pages/HarmoniesPage.xaml @@ -371,7 +371,25 @@ - + diff --git a/ColorPicker/Pages/HarmoniesPage.xaml.cs b/ColorPicker/Pages/HarmoniesPage.xaml.cs index 40ae4815..70013321 100644 --- a/ColorPicker/Pages/HarmoniesPage.xaml.cs +++ b/ColorPicker/Pages/HarmoniesPage.xaml.cs @@ -45,21 +45,21 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE namespace ColorPicker.Pages { - /// - /// Interaction logic for HarmoniesPage.xaml - /// - public partial class HarmoniesPage : Page - { + /// + /// Interaction logic for HarmoniesPage.xaml + /// + public partial class HarmoniesPage : Page + { bool code = Global.Settings.UseSynethia ? false : true; // checks if the code as already been implemented public HarmoniesPage() - { - InitializeComponent(); - InitUI(); + { + InitializeComponent(); + InitUI(); Loaded += (o, e) => SynethiaManager.InjectSynethiaCode(this, Global.SynethiaConfig.PagesInfo, 7, ref code); // injects the code in the page } - private void InitUI() - { + private void InitUI() + { TitleTxt.Text = $"{Properties.Resources.Creation} > {Properties.Resources.Harmonies}"; try { @@ -179,6 +179,16 @@ internal void InitHarmonies() MonochromaticPanel.Children.Add(border); } + + // Load the bookmark icon + if (!Global.Bookmarks.ColorBookmarks.Contains($"#{ColorInfo.HEX.Value}")) + { + BookmarkBtn.Content = "\uF1F6"; + BookmarkToolTip.Content = Properties.Resources.AddBookmark; + return; + } + BookmarkBtn.Content = "\uF1F8"; + BookmarkToolTip.Content = Properties.Resources.RemoveBookmark; } internal ColorInfo ColorInfo { get; set; } @@ -439,5 +449,20 @@ private void ComplementaryBorder_MouseLeftButtonUp(object sender, MouseButtonEve { new ColorDetailsWindow((SolidColorBrush)((Border)sender).Background).Show(); } + + private void BookmarkBtn_Click(object sender, RoutedEventArgs e) + { + if (Global.Bookmarks.ColorBookmarks.Contains($"#{ColorInfo.HEX.Value}")) + { + Global.Bookmarks.ColorBookmarks.Remove($"#{ColorInfo.HEX.Value}"); + BookmarkBtn.Content = "\uF1F6"; + BookmarkToolTip.Content = Properties.Resources.AddBookmark; + + return; + } + Global.Bookmarks.ColorBookmarks.Add($"#{ColorInfo.HEX.Value}"); // Add to color bookmarks + BookmarkBtn.Content = "\uF1F8"; + BookmarkToolTip.Content = Properties.Resources.RemoveBookmark; + } } } From 623be95de7355b1c4a5f9b092ddd7b177de627e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Peyronnet?= Date: Sun, 10 Dec 2023 11:23:22 +0100 Subject: [PATCH 05/18] Added translations (#352) --- ColorPicker/Properties/Resources.Designer.cs | 377 ++++++++++--------- ColorPicker/Properties/Resources.en-US.resx | 3 + ColorPicker/Properties/Resources.fr-FR.resx | 3 + ColorPicker/Properties/Resources.resx | 3 + ColorPicker/Properties/Resources.zh-CN.resx | 3 + 5 files changed, 205 insertions(+), 184 deletions(-) diff --git a/ColorPicker/Properties/Resources.Designer.cs b/ColorPicker/Properties/Resources.Designer.cs index 099b6f85..b208b2f0 100644 --- a/ColorPicker/Properties/Resources.Designer.cs +++ b/ColorPicker/Properties/Resources.Designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Ce code a été généré par un outil. +// Version du runtime :4.0.30319.42000 // -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si +// le code est régénéré. // //------------------------------------------------------------------------------ @@ -13,12 +13,12 @@ namespace ColorPicker.Properties { /// - /// A strongly-typed resource class, for looking up localized strings, etc. + /// Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées. /// - // 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. + // Cette classe a été générée automatiquement par la classe StronglyTypedResourceBuilder + // à l'aide d'un outil, tel que ResGen ou Visual Studio. + // Pour ajouter ou supprimer un membre, modifiez votre fichier .ResX, puis réexécutez ResGen + // avec l'option /str ou régénérez votre projet VS. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] @@ -33,7 +33,7 @@ internal Resources() { } /// - /// Returns the cached ResourceManager instance used by this class. + /// Retourne l'instance ResourceManager mise en cache utilisée par cette classe. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Resources.ResourceManager ResourceManager { @@ -47,8 +47,8 @@ internal Resources() { } /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. + /// Remplace la propriété CurrentUICulture du thread actuel pour toutes + /// les recherches de ressources à l'aide de cette classe de ressource fortement typée. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Globalization.CultureInfo Culture { @@ -61,7 +61,7 @@ internal Resources() { } /// - /// Looks up a localized string similar to Add to bookmarks. + /// Recherche une chaîne localisée semblable à Add to bookmarks. /// public static string AddBookmark { get { @@ -70,7 +70,7 @@ public static string AddBookmark { } /// - /// Looks up a localized string similar to I agree. + /// Recherche une chaîne localisée semblable à I agree. /// public static string Agree { get { @@ -79,7 +79,7 @@ public static string Agree { } /// - /// Looks up a localized string similar to Generate colors with AI. + /// Recherche une chaîne localisée semblable à Generate colors with AI. /// public static string AIGenerateColor { get { @@ -88,7 +88,7 @@ public static string AIGenerateColor { } /// - /// Looks up a localized string similar to AI Generation. + /// Recherche une chaîne localisée semblable à AI Generation. /// public static string AIGeneration { get { @@ -97,7 +97,7 @@ public static string AIGeneration { } /// - /// Looks up a localized string similar to Ocean Breeze,Crimson Sunset,Enchanted Forest,Electric Dreams,Desert Mirage,Midnight Serenade,Neon Galaxy,Golden Harvest,Lavender Mist,Tropical Paradise,Fire and Ice,Mystic Moonlight,Emerald Elegance,Cherry Blossom,Aurora Australis,Steel City Lights,Vintage Romance,Sapphire Dreams,Amber Afterglow,Velvet Touch,Dandelion Wishes,Urban Jungle,Rose Petal Whispers,Icy Tundra,Chocolate Delight,Harbor Reflections,Whispering Wind,Vibrant Spectrum,Pastel Reverie,Moonlit Meadow. + /// Recherche une chaîne localisée semblable à Ocean Breeze,Crimson Sunset,Enchanted Forest,Electric Dreams,Desert Mirage,Midnight Serenade,Neon Galaxy,Golden Harvest,Lavender Mist,Tropical Paradise,Fire and Ice,Mystic Moonlight,Emerald Elegance,Cherry Blossom,Aurora Australis,Steel City Lights,Vintage Romance,Sapphire Dreams,Amber Afterglow,Velvet Touch,Dandelion Wishes,Urban Jungle,Rose Petal Whispers,Icy Tundra,Chocolate Delight,Harbor Reflections,Whispering Wind,Vibrant Spectrum,Pastel Reverie,Moonlit Meadow. /// public static string AiPrompts { get { @@ -106,7 +106,7 @@ public static string AiPrompts { } /// - /// Looks up a localized string similar to Customize AI Generation settings.. + /// Recherche une chaîne localisée semblable à Customize AI Generation settings.. /// public static string AISettings { get { @@ -115,7 +115,7 @@ public static string AISettings { } /// - /// Looks up a localized string similar to Analogous. + /// Recherche une chaîne localisée semblable à Analogous. /// public static string Analogous { get { @@ -124,7 +124,7 @@ public static string Analogous { } /// - /// Looks up a localized string similar to Apply. + /// Recherche une chaîne localisée semblable à Apply. /// public static string Apply { get { @@ -133,7 +133,7 @@ public static string Apply { } /// - /// Looks up a localized string similar to Updates are available.. + /// Recherche une chaîne localisée semblable à Updates are available.. /// public static string AvailableUpdates { get { @@ -142,7 +142,7 @@ public static string AvailableUpdates { } /// - /// Looks up a localized string similar to Background. + /// Recherche une chaîne localisée semblable à Background. /// public static string Background { get { @@ -151,7 +151,7 @@ public static string Background { } /// - /// Looks up a localized string similar to B. + /// Recherche une chaîne localisée semblable à B. /// public static string BlueP { get { @@ -160,7 +160,7 @@ public static string BlueP { } /// - /// Looks up a localized string similar to Bookmarks. + /// Recherche une chaîne localisée semblable à Bookmarks. /// public static string Bookmarks { get { @@ -169,7 +169,7 @@ public static string Bookmarks { } /// - /// Looks up a localized string similar to Brightness. + /// Recherche une chaîne localisée semblable à Brightness. /// public static string Brightness { get { @@ -178,7 +178,7 @@ public static string Brightness { } /// - /// Looks up a localized string similar to Change the language of ColorPicker.. + /// Recherche une chaîne localisée semblable à Change the language of ColorPicker.. /// public static string ChangeLanguage { get { @@ -187,7 +187,7 @@ public static string ChangeLanguage { } /// - /// Looks up a localized string similar to Change ColorPicker theme.. + /// Recherche une chaîne localisée semblable à Change ColorPicker theme.. /// public static string ChangeTheme { get { @@ -196,7 +196,7 @@ public static string ChangeTheme { } /// - /// Looks up a localized string similar to Check for updates. + /// Recherche une chaîne localisée semblable à Check for updates. /// public static string CheckUpdate { get { @@ -205,7 +205,7 @@ public static string CheckUpdate { } /// - /// Looks up a localized string similar to Check for updates on start. + /// Recherche une chaîne localisée semblable à Check for updates on start. /// public static string CheckUpdatesOnStart { get { @@ -214,7 +214,7 @@ public static string CheckUpdatesOnStart { } /// - /// Looks up a localized string similar to Chromatic wheel. + /// Recherche une chaîne localisée semblable à Chromatic wheel. /// public static string ChromaticWheel { get { @@ -223,7 +223,7 @@ public static string ChromaticWheel { } /// - /// Looks up a localized string similar to Circle. + /// Recherche une chaîne localisée semblable à Circle. /// public static string Circle { get { @@ -232,7 +232,7 @@ public static string Circle { } /// - /// Looks up a localized string similar to CMYK. + /// Recherche une chaîne localisée semblable à CMYK. /// public static string CMYK { get { @@ -241,7 +241,7 @@ public static string CMYK { } /// - /// Looks up a localized string similar to Color Options. + /// Recherche une chaîne localisée semblable à Color Options. /// public static string ColorOptions { get { @@ -250,7 +250,7 @@ public static string ColorOptions { } /// - /// Looks up a localized string similar to The way ColorPicker handle colors.. + /// Recherche une chaîne localisée semblable à The way ColorPicker handle colors.. /// public static string ColorOptionsDesc { get { @@ -259,7 +259,7 @@ public static string ColorOptionsDesc { } /// - /// Looks up a localized string similar to ColorPicker. + /// Recherche une chaîne localisée semblable à ColorPicker. /// public static string ColorPicker { get { @@ -268,7 +268,7 @@ public static string ColorPicker { } /// - /// Looks up a localized string similar to ColorPicker Max. + /// Recherche une chaîne localisée semblable à ColorPicker Max. /// public static string ColorPickerMax { get { @@ -277,7 +277,7 @@ public static string ColorPickerMax { } /// - /// Looks up a localized string similar to Colors. + /// Recherche une chaîne localisée semblable à Colors. /// public static string Colors { get { @@ -286,7 +286,7 @@ public static string Colors { } /// - /// Looks up a localized string similar to Color Tools. + /// Recherche une chaîne localisée semblable à Color Tools. /// public static string ColorTools { get { @@ -295,7 +295,7 @@ public static string ColorTools { } /// - /// Looks up a localized string similar to The color is valid.. + /// Recherche une chaîne localisée semblable à The color is valid.. /// public static string ColorValid { get { @@ -304,7 +304,7 @@ public static string ColorValid { } /// - /// Looks up a localized string similar to Complementary. + /// Recherche une chaîne localisée semblable à Complementary. /// public static string Complementary { get { @@ -313,7 +313,7 @@ public static string Complementary { } /// - /// Looks up a localized string similar to Contrast. + /// Recherche une chaîne localisée semblable à Contrast. /// public static string Contrast { get { @@ -322,7 +322,7 @@ public static string Contrast { } /// - /// Looks up a localized string similar to Convert. + /// Recherche une chaîne localisée semblable à Convert. /// public static string Convert { get { @@ -331,7 +331,7 @@ public static string Convert { } /// - /// Looks up a localized string similar to Converter. + /// Recherche une chaîne localisée semblable à Converter. /// public static string Converter { get { @@ -340,7 +340,7 @@ public static string Converter { } /// - /// Looks up a localized string similar to The converter feature of ColorPicker allows you to convert any color type to another one. The color types are RGB, HEX, HSV, HSL, CMYK, XYZ, YIQ and YUV. You can enter a color code in any of these formats and see the corresponding codes in the other formats.. + /// Recherche une chaîne localisée semblable à The converter feature of ColorPicker allows you to convert any color type to another one. The color types are RGB, HEX, HSV, HSL, CMYK, XYZ, YIQ and YUV. You can enter a color code in any of these formats and see the corresponding codes in the other formats.. /// public static string ConverterInfo { get { @@ -349,7 +349,7 @@ public static string ConverterInfo { } /// - /// Looks up a localized string similar to Convert from RGB. + /// Recherche une chaîne localisée semblable à Convert from RGB. /// public static string ConvertFromRGB { get { @@ -358,7 +358,7 @@ public static string ConvertFromRGB { } /// - /// Looks up a localized string similar to Copy CMYK. + /// Recherche une chaîne localisée semblable à Copy CMYK. /// public static string CopyCMYK { get { @@ -367,7 +367,7 @@ public static string CopyCMYK { } /// - /// Looks up a localized string similar to Copy color. + /// Recherche une chaîne localisée semblable à Copy color. /// public static string CopyColor { get { @@ -376,7 +376,7 @@ public static string CopyColor { } /// - /// Looks up a localized string similar to Copy Decimal. + /// Recherche une chaîne localisée semblable à Copy Decimal. /// public static string CopyDEC { get { @@ -385,7 +385,7 @@ public static string CopyDEC { } /// - /// Looks up a localized string similar to Copy HEX. + /// Recherche une chaîne localisée semblable à Copy HEX. /// public static string CopyHEX { get { @@ -394,7 +394,7 @@ public static string CopyHEX { } /// - /// Looks up a localized string similar to Copy HSL. + /// Recherche une chaîne localisée semblable à Copy HSL. /// public static string CopyHSL { get { @@ -403,7 +403,7 @@ public static string CopyHSL { } /// - /// Looks up a localized string similar to Copy HSV. + /// Recherche une chaîne localisée semblable à Copy HSV. /// public static string CopyHSV { get { @@ -412,7 +412,7 @@ public static string CopyHSV { } /// - /// Looks up a localized string similar to Copy RGB. + /// Recherche une chaîne localisée semblable à Copy RGB. /// public static string CopyRGB { get { @@ -421,7 +421,7 @@ public static string CopyRGB { } /// - /// Looks up a localized string similar to Copy XYZ. + /// Recherche une chaîne localisée semblable à Copy XYZ. /// public static string CopyXYZ { get { @@ -430,7 +430,7 @@ public static string CopyXYZ { } /// - /// Looks up a localized string similar to Copy YIQ. + /// Recherche une chaîne localisée semblable à Copy YIQ. /// public static string CopyYIQ { get { @@ -439,7 +439,7 @@ public static string CopyYIQ { } /// - /// Looks up a localized string similar to Copy YUV. + /// Recherche une chaîne localisée semblable à Copy YUV. /// public static string CopyYUV { get { @@ -448,7 +448,7 @@ public static string CopyYUV { } /// - /// Looks up a localized string similar to Creation. + /// Recherche une chaîne localisée semblable à Creation. /// public static string Creation { get { @@ -457,7 +457,7 @@ public static string Creation { } /// - /// Looks up a localized string similar to CSS. + /// Recherche une chaîne localisée semblable à CSS. /// public static string CSS { get { @@ -466,7 +466,7 @@ public static string CSS { } /// - /// Looks up a localized string similar to Dark. + /// Recherche une chaîne localisée semblable à Dark. /// public static string Dark { get { @@ -475,7 +475,7 @@ public static string Dark { } /// - /// Looks up a localized string similar to Manage your data and your privacy.. + /// Recherche une chaîne localisée semblable à Manage your data and your privacy.. /// public static string DataDescription { get { @@ -484,7 +484,7 @@ public static string DataDescription { } /// - /// Looks up a localized string similar to Data and Privacy. + /// Recherche une chaîne localisée semblable à Data and Privacy. /// public static string DataPrivacy { get { @@ -493,7 +493,7 @@ public static string DataPrivacy { } /// - /// Looks up a localized string similar to DEC. + /// Recherche une chaîne localisée semblable à DEC. /// public static string DEC { get { @@ -502,7 +502,7 @@ public static string DEC { } /// - /// Looks up a localized string similar to Decimal. + /// Recherche une chaîne localisée semblable à Decimal. /// public static string Decimal { get { @@ -511,7 +511,7 @@ public static string Decimal { } /// - /// Looks up a localized string similar to Default. + /// Recherche une chaîne localisée semblable à Default. /// public static string Default { get { @@ -520,7 +520,7 @@ public static string Default { } /// - /// Looks up a localized string similar to Default color type. + /// Recherche une chaîne localisée semblable à Default color type. /// public static string DefaultColorType { get { @@ -529,7 +529,7 @@ public static string DefaultColorType { } /// - /// Looks up a localized string similar to Delete. + /// Recherche une chaîne localisée semblable à Delete. /// public static string Delete { get { @@ -538,7 +538,7 @@ public static string Delete { } /// - /// Looks up a localized string similar to Details. + /// Recherche une chaîne localisée semblable à Details. /// public static string Details { get { @@ -547,7 +547,7 @@ public static string Details { } /// - /// Looks up a localized string similar to Developer tools. + /// Recherche une chaîne localisée semblable à Developer tools. /// public static string DevTools { get { @@ -556,7 +556,7 @@ public static string DevTools { } /// - /// Looks up a localized string similar to Disc. + /// Recherche une chaîne localisée semblable à Disc. /// public static string Disc { get { @@ -565,7 +565,7 @@ public static string Disc { } /// - /// Looks up a localized string similar to Discover. + /// Recherche une chaîne localisée semblable à Discover. /// public static string Discover { get { @@ -574,7 +574,7 @@ public static string Discover { } /// - /// Looks up a localized string similar to Edit in Selector. + /// Recherche une chaîne localisée semblable à Edit in Selector. /// public static string EditInSelector { get { @@ -583,7 +583,7 @@ public static string EditInSelector { } /// - /// Looks up a localized string similar to Edit shortcut. + /// Recherche une chaîne localisée semblable à Edit shortcut. /// public static string EditShortcut { get { @@ -592,7 +592,16 @@ public static string EditShortcut { } /// - /// Looks up a localized string similar to Empty bookmarks. + /// Recherche une chaîne localisée semblable à Enter a prompt to generate colors using the power of AI. + /// + public static string EmptyAiPlaceholder { + get { + return ResourceManager.GetString("EmptyAiPlaceholder", resourceCulture); + } + } + + /// + /// Recherche une chaîne localisée semblable à Empty bookmarks. /// public static string EmptyBookmarks { get { @@ -601,7 +610,7 @@ public static string EmptyBookmarks { } /// - /// Looks up a localized string similar to Are you sure want to empty these bookmarks? This action is irreversible.. + /// Recherche une chaîne localisée semblable à Are you sure want to empty these bookmarks? This action is irreversible.. /// public static string EmptyHistoryMsg { get { @@ -610,7 +619,7 @@ public static string EmptyHistoryMsg { } /// - /// Looks up a localized string similar to Export settings. + /// Recherche une chaîne localisée semblable à Export settings. /// public static string Export { get { @@ -619,7 +628,7 @@ public static string Export { } /// - /// Looks up a localized string similar to Features. + /// Recherche une chaîne localisée semblable à Features. /// public static string Features { get { @@ -628,7 +637,7 @@ public static string Features { } /// - /// Looks up a localized string similar to Do you want to ignore this window and continue to ColorPicker?. + /// Recherche une chaîne localisée semblable à Do you want to ignore this window and continue to ColorPicker?. /// public static string FirstRunQuitMsg { get { @@ -637,7 +646,7 @@ public static string FirstRunQuitMsg { } /// - /// Looks up a localized string similar to Font. + /// Recherche une chaîne localisée semblable à Font. /// public static string Font { get { @@ -646,7 +655,7 @@ public static string Font { } /// - /// Looks up a localized string similar to Foreground. + /// Recherche une chaîne localisée semblable à Foreground. /// public static string Foreground { get { @@ -655,7 +664,7 @@ public static string Foreground { } /// - /// Looks up a localized string similar to From. + /// Recherche une chaîne localisée semblable à From. /// public static string From { get { @@ -664,7 +673,7 @@ public static string From { } /// - /// Looks up a localized string similar to Generate. + /// Recherche une chaîne localisée semblable à Generate. /// public static string Generate { get { @@ -673,7 +682,7 @@ public static string Generate { } /// - /// Looks up a localized string similar to Generate a random color. + /// Recherche une chaîne localisée semblable à Generate a random color. /// public static string GenerateColor { get { @@ -682,7 +691,7 @@ public static string GenerateColor { } /// - /// Looks up a localized string similar to Generate a gradient. + /// Recherche une chaîne localisée semblable à Generate a gradient. /// public static string GenerateGradient { get { @@ -691,7 +700,7 @@ public static string GenerateGradient { } /// - /// Looks up a localized string similar to Generate a palette. + /// Recherche une chaîne localisée semblable à Generate a palette. /// public static string GeneratePalette { get { @@ -700,7 +709,7 @@ public static string GeneratePalette { } /// - /// Looks up a localized string similar to Generate new colors. + /// Recherche une chaîne localisée semblable à Generate new colors. /// public static string GenerateTextColors { get { @@ -709,7 +718,7 @@ public static string GenerateTextColors { } /// - /// Looks up a localized string similar to Get contrast ratio. + /// Recherche une chaîne localisée semblable à Get contrast ratio. /// public static string GetContrast { get { @@ -718,7 +727,7 @@ public static string GetContrast { } /// - /// Looks up a localized string similar to Get harmonies. + /// Recherche une chaîne localisée semblable à Get harmonies. /// public static string GetHarmonies { get { @@ -727,7 +736,7 @@ public static string GetHarmonies { } /// - /// Looks up a localized string similar to Get ideas. + /// Recherche une chaîne localisée semblable à Get ideas. /// public static string GetIdeas { get { @@ -736,7 +745,7 @@ public static string GetIdeas { } /// - /// Looks up a localized string similar to Get started. + /// Recherche une chaîne localisée semblable à Get started. /// public static string GetStarted { get { @@ -745,7 +754,7 @@ public static string GetStarted { } /// - /// Looks up a localized string similar to Good afternoon. + /// Recherche une chaîne localisée semblable à Good afternoon. /// public static string GoodAfternoon { get { @@ -754,7 +763,7 @@ public static string GoodAfternoon { } /// - /// Looks up a localized string similar to Good evening. + /// Recherche une chaîne localisée semblable à Good evening. /// public static string GoodEvening { get { @@ -763,7 +772,7 @@ public static string GoodEvening { } /// - /// Looks up a localized string similar to Good night. + /// Recherche une chaîne localisée semblable à Good night. /// public static string GoodNight { get { @@ -772,7 +781,7 @@ public static string GoodNight { } /// - /// Looks up a localized string similar to Gradient. + /// Recherche une chaîne localisée semblable à Gradient. /// public static string Gradient { get { @@ -781,7 +790,7 @@ public static string Gradient { } /// - /// Looks up a localized string similar to The gradient feature of ColorPicker lets you generate random two-stops gradients with a specific rotation angle. You can see a preview of the gradient and its CSS code. You can also export the gradient to CSS code and use it in your web design projects.. + /// Recherche une chaîne localisée semblable à The gradient feature of ColorPicker lets you generate random two-stops gradients with a specific rotation angle. You can see a preview of the gradient and its CSS code. You can also export the gradient to CSS code and use it in your web design projects.. /// public static string GradientInfo { get { @@ -790,7 +799,7 @@ public static string GradientInfo { } /// - /// Looks up a localized string similar to Gradients. + /// Recherche une chaîne localisée semblable à Gradients. /// public static string Gradients { get { @@ -799,7 +808,7 @@ public static string Gradients { } /// - /// Looks up a localized string similar to G. + /// Recherche une chaîne localisée semblable à G. /// public static string GreenP { get { @@ -808,7 +817,7 @@ public static string GreenP { } /// - /// Looks up a localized string similar to Harmonies. + /// Recherche une chaîne localisée semblable à Harmonies. /// public static string Harmonies { get { @@ -817,7 +826,7 @@ public static string Harmonies { } /// - /// Looks up a localized string similar to HEX. + /// Recherche une chaîne localisée semblable à HEX. /// public static string HEX { get { @@ -826,7 +835,7 @@ public static string HEX { } /// - /// Looks up a localized string similar to Hi. + /// Recherche une chaîne localisée semblable à Hi. /// public static string Hi { get { @@ -835,7 +844,7 @@ public static string Hi { } /// - /// Looks up a localized string similar to History. + /// Recherche une chaîne localisée semblable à History. /// public static string History { get { @@ -844,7 +853,7 @@ public static string History { } /// - /// Looks up a localized string similar to Home. + /// Recherche une chaîne localisée semblable à Home. /// public static string Home { get { @@ -853,7 +862,7 @@ public static string Home { } /// - /// Looks up a localized string similar to HSL. + /// Recherche une chaîne localisée semblable à HSL. /// public static string HSL { get { @@ -862,7 +871,7 @@ public static string HSL { } /// - /// Looks up a localized string similar to HSV. + /// Recherche une chaîne localisée semblable à HSV. /// public static string HSV { get { @@ -871,7 +880,7 @@ public static string HSV { } /// - /// Looks up a localized string similar to Hues. + /// Recherche une chaîne localisée semblable à Hues. /// public static string Hues { get { @@ -880,7 +889,7 @@ public static string Hues { } /// - /// Looks up a localized string similar to Import settings. + /// Recherche une chaîne localisée semblable à Import settings. /// public static string Import { get { @@ -889,7 +898,7 @@ public static string Import { } /// - /// Looks up a localized string similar to Install. + /// Recherche une chaîne localisée semblable à Install. /// public static string Install { get { @@ -898,7 +907,7 @@ public static string Install { } /// - /// Looks up a localized string similar to To install updates, ColorPicker needs to restarts. Do you want to continue?. + /// Recherche une chaîne localisée semblable à To install updates, ColorPicker needs to restarts. Do you want to continue?. /// public static string InstallConfirmMsg { get { @@ -907,7 +916,7 @@ public static string InstallConfirmMsg { } /// - /// Looks up a localized string similar to Install version. + /// Recherche une chaîne localisée semblable à Install version. /// public static string InstallVersion { get { @@ -916,7 +925,7 @@ public static string InstallVersion { } /// - /// Looks up a localized string similar to Introducing Synethia. + /// Recherche une chaîne localisée semblable à Introducing Synethia. /// public static string IntroducingSynethia { get { @@ -925,7 +934,7 @@ public static string IntroducingSynethia { } /// - /// Looks up a localized string similar to The color is invalid.. + /// Recherche une chaîne localisée semblable à The color is invalid.. /// public static string InvalidColor { get { @@ -934,7 +943,7 @@ public static string InvalidColor { } /// - /// Looks up a localized string similar to Press {0} to start or stop selecting a color from your screen.. + /// Recherche une chaîne localisée semblable à Press {0} to start or stop selecting a color from your screen.. /// public static string KeyboardSelectionHint { get { @@ -943,7 +952,7 @@ public static string KeyboardSelectionHint { } /// - /// Looks up a localized string similar to Keyboard shortcuts. + /// Recherche une chaîne localisée semblable à Keyboard shortcuts. /// public static string KeyboardShortcuts { get { @@ -952,7 +961,7 @@ public static string KeyboardShortcuts { } /// - /// Looks up a localized string similar to Language. + /// Recherche une chaîne localisée semblable à Language. /// public static string Language { get { @@ -961,7 +970,7 @@ public static string Language { } /// - /// Looks up a localized string similar to Let's go!. + /// Recherche une chaîne localisée semblable à Let's go!. /// public static string LetsGo { get { @@ -970,7 +979,7 @@ public static string LetsGo { } /// - /// Looks up a localized string similar to Licenses. + /// Recherche une chaîne localisée semblable à Licenses. /// public static string Licenses { get { @@ -979,7 +988,7 @@ public static string Licenses { } /// - /// Looks up a localized string similar to Light. + /// Recherche une chaîne localisée semblable à Light. /// public static string Light { get { @@ -988,7 +997,7 @@ public static string Light { } /// - /// Looks up a localized string similar to Max. + /// Recherche une chaîne localisée semblable à Max. /// public static string Max { get { @@ -997,7 +1006,7 @@ public static string Max { } /// - /// Looks up a localized string similar to Model. + /// Recherche une chaîne localisée semblable à Model. /// public static string Model { get { @@ -1006,7 +1015,7 @@ public static string Model { } /// - /// Looks up a localized string similar to Monochromatic. + /// Recherche une chaîne localisée semblable à Monochromatic. /// public static string Monochromatic { get { @@ -1015,7 +1024,7 @@ public static string Monochromatic { } /// - /// Looks up a localized string similar to ColorPicker needs to restart to apply the changes.. + /// Recherche une chaîne localisée semblable à ColorPicker needs to restart to apply the changes.. /// public static string NeedRestartLabel { get { @@ -1024,7 +1033,7 @@ public static string NeedRestartLabel { } /// - /// Looks up a localized string similar to ColorPicker needs to restart to apply the changes. Do you want to restart now?. + /// Recherche une chaîne localisée semblable à ColorPicker needs to restart to apply the changes. Do you want to restart now?. /// public static string NeedRestartToApplyChanges { get { @@ -1033,7 +1042,7 @@ public static string NeedRestartToApplyChanges { } /// - /// Looks up a localized string similar to Next. + /// Recherche une chaîne localisée semblable à Next. /// public static string Next { get { @@ -1042,7 +1051,7 @@ public static string Next { } /// - /// Looks up a localized string similar to To use AI featues, you need an OpenAI API key.. + /// Recherche une chaîne localisée semblable à To use AI featues, you need an OpenAI API key.. /// public static string NoApiKeyMsg { get { @@ -1051,7 +1060,7 @@ public static string NoApiKeyMsg { } /// - /// Looks up a localized string similar to No thanks. + /// Recherche une chaîne localisée semblable à No thanks. /// public static string NoThanks { get { @@ -1060,7 +1069,7 @@ public static string NoThanks { } /// - /// Looks up a localized string similar to Notifications. + /// Recherche une chaîne localisée semblable à Notifications. /// public static string Notifications { get { @@ -1069,7 +1078,7 @@ public static string Notifications { } /// - /// Looks up a localized string similar to Notifications settings.. + /// Recherche une chaîne localisée semblable à Notifications settings.. /// public static string NotificationsDescription { get { @@ -1078,7 +1087,7 @@ public static string NotificationsDescription { } /// - /// Looks up a localized string similar to Show a notification when updates are available. + /// Recherche une chaîne localisée semblable à Show a notification when updates are available. /// public static string NotifyUpdates { get { @@ -1087,7 +1096,7 @@ public static string NotifyUpdates { } /// - /// Looks up a localized string similar to On start. + /// Recherche une chaîne localisée semblable à On start. /// public static string OnStart { get { @@ -1096,7 +1105,7 @@ public static string OnStart { } /// - /// Looks up a localized string similar to Settings that applies on start.. + /// Recherche une chaîne localisée semblable à Settings that applies on start.. /// public static string OnStartDescription { get { @@ -1105,7 +1114,7 @@ public static string OnStartDescription { } /// - /// Looks up a localized string similar to OpenAI API Key. + /// Recherche une chaîne localisée semblable à OpenAI API Key. /// public static string OpenAIKey { get { @@ -1114,7 +1123,7 @@ public static string OpenAIKey { } /// - /// Looks up a localized string similar to Palette. + /// Recherche une chaîne localisée semblable à Palette. /// public static string Palette { get { @@ -1123,7 +1132,7 @@ public static string Palette { } /// - /// Looks up a localized string similar to Palettes. + /// Recherche une chaîne localisée semblable à Palettes. /// public static string Palettes { get { @@ -1132,7 +1141,7 @@ public static string Palettes { } /// - /// Looks up a localized string similar to Picker. + /// Recherche une chaîne localisée semblable à Picker. /// public static string Picker { get { @@ -1141,7 +1150,7 @@ public static string Picker { } /// - /// Looks up a localized string similar to Pinned. + /// Recherche une chaîne localisée semblable à Pinned. /// public static string Pinned { get { @@ -1150,7 +1159,7 @@ public static string Pinned { } /// - /// Looks up a localized string similar to Automatic updates are not available in portable mode, please download ColorPicker Max again.. + /// Recherche une chaîne localisée semblable à Automatic updates are not available in portable mode, please download ColorPicker Max again.. /// public static string PortableNoAutoUpdates { get { @@ -1159,7 +1168,7 @@ public static string PortableNoAutoUpdates { } /// - /// Looks up a localized string similar to Press a combination of keys.. + /// Recherche une chaîne localisée semblable à Press a combination of keys.. /// public static string PressKeys { get { @@ -1168,7 +1177,7 @@ public static string PressKeys { } /// - /// Looks up a localized string similar to Please define an API Key in settings.. + /// Recherche une chaîne localisée semblable à Please define an API Key in settings.. /// public static string ProvideAPIKey { get { @@ -1177,7 +1186,7 @@ public static string ProvideAPIKey { } /// - /// Looks up a localized string similar to Please provide a prompt to AI.. + /// Recherche une chaîne localisée semblable à Please provide a prompt to AI.. /// public static string ProvideAPromptMsg { get { @@ -1186,7 +1195,7 @@ public static string ProvideAPromptMsg { } /// - /// Looks up a localized string similar to R. + /// Recherche une chaîne localisée semblable à R. /// public static string RedP { get { @@ -1195,7 +1204,7 @@ public static string RedP { } /// - /// Looks up a localized string similar to Remove from bookmarks. + /// Recherche une chaîne localisée semblable à Remove from bookmarks. /// public static string RemoveBookmark { get { @@ -1204,7 +1213,7 @@ public static string RemoveBookmark { } /// - /// Looks up a localized string similar to Reset keyboard shortcuts. + /// Recherche une chaîne localisée semblable à Reset keyboard shortcuts. /// public static string ResetKeyboardShortcuts { get { @@ -1213,7 +1222,7 @@ public static string ResetKeyboardShortcuts { } /// - /// Looks up a localized string similar to Reset settings. + /// Recherche une chaîne localisée semblable à Reset settings. /// public static string ResetSettings { get { @@ -1222,7 +1231,7 @@ public static string ResetSettings { } /// - /// Looks up a localized string similar to Are you sure you want to reset all settings?. + /// Recherche une chaîne localisée semblable à Are you sure you want to reset all settings?. /// public static string ResetSettingsConfirmation { get { @@ -1231,7 +1240,7 @@ public static string ResetSettingsConfirmation { } /// - /// Looks up a localized string similar to Reset Synethia data. + /// Recherche une chaîne localisée semblable à Reset Synethia data. /// public static string ResetSynethia { get { @@ -1240,7 +1249,7 @@ public static string ResetSynethia { } /// - /// Looks up a localized string similar to RGB. + /// Recherche une chaîne localisée semblable à RGB. /// public static string RGB { get { @@ -1249,7 +1258,7 @@ public static string RGB { } /// - /// Looks up a localized string similar to Rotation. + /// Recherche une chaîne localisée semblable à Rotation. /// public static string Rotation { get { @@ -1258,7 +1267,7 @@ public static string Rotation { } /// - /// Looks up a localized string similar to See licenses. + /// Recherche une chaîne localisée semblable à See licenses. /// public static string SeeLicenses { get { @@ -1267,7 +1276,7 @@ public static string SeeLicenses { } /// - /// Looks up a localized string similar to Select from the chromatic disc. + /// Recherche une chaîne localisée semblable à Select from the chromatic disc. /// public static string SelectChomaticDisc { get { @@ -1276,7 +1285,7 @@ public static string SelectChomaticDisc { } /// - /// Looks up a localized string similar to Select a color. + /// Recherche une chaîne localisée semblable à Select a color. /// public static string SelectColor { get { @@ -1285,7 +1294,7 @@ public static string SelectColor { } /// - /// Looks up a localized string similar to Selector. + /// Recherche une chaîne localisée semblable à Selector. /// public static string Selector { get { @@ -1294,7 +1303,7 @@ public static string Selector { } /// - /// Looks up a localized string similar to The selector feature of ColorPicker enables you to choose any color from the screen by moving the cursor over it and pressing a keyboard shortcut. The chosen color will be shown in a preview box and its code will be copied to the clipboard in a desired color type.. + /// Recherche une chaîne localisée semblable à The selector feature of ColorPicker enables you to choose any color from the screen by moving the cursor over it and pressing a keyboard shortcut. The chosen color will be shown in a preview box and its code will be copied to the clipboard in a desired color type.. /// public static string SelectorInfo { get { @@ -1303,7 +1312,7 @@ public static string SelectorInfo { } /// - /// Looks up a localized string similar to Settings. + /// Recherche une chaîne localisée semblable à Settings. /// public static string Settings { get { @@ -1312,7 +1321,7 @@ public static string Settings { } /// - /// Looks up a localized string similar to Settings have been sucessfully exported.. + /// Recherche une chaîne localisée semblable à Settings have been sucessfully exported.. /// public static string SettingsExportedSucessMsg { get { @@ -1321,7 +1330,7 @@ public static string SettingsExportedSucessMsg { } /// - /// Looks up a localized string similar to Settings were sucessfully imported. To finish the process, ColorPicker is going to restart.. + /// Recherche une chaîne localisée semblable à Settings were sucessfully imported. To finish the process, ColorPicker is going to restart.. /// public static string SettingsImportedMsg { get { @@ -1330,7 +1339,7 @@ public static string SettingsImportedMsg { } /// - /// Looks up a localized string similar to Shades. + /// Recherche une chaîne localisée semblable à Shades. /// public static string Shades { get { @@ -1339,7 +1348,7 @@ public static string Shades { } /// - /// Looks up a localized string similar to Single color. + /// Recherche une chaîne localisée semblable à Single color. /// public static string SingleColor { get { @@ -1348,7 +1357,7 @@ public static string SingleColor { } /// - /// Looks up a localized string similar to Size. + /// Recherche une chaîne localisée semblable à Size. /// public static string Size { get { @@ -1357,7 +1366,7 @@ public static string Size { } /// - /// Looks up a localized string similar to Skip. + /// Recherche une chaîne localisée semblable à Skip. /// public static string Skip { get { @@ -1366,7 +1375,7 @@ public static string Skip { } /// - /// Looks up a localized string similar to Split Complementary. + /// Recherche une chaîne localisée semblable à Split Complementary. /// public static string SplitComplementary { get { @@ -1375,7 +1384,7 @@ public static string SplitComplementary { } /// - /// Looks up a localized string similar to Start selection. + /// Recherche une chaîne localisée semblable à Start selection. /// public static string StartSelection { get { @@ -1384,7 +1393,7 @@ public static string StartSelection { } /// - /// Looks up a localized string similar to Default page on start. + /// Recherche une chaîne localisée semblable à Default page on start. /// public static string StartupPage { get { @@ -1393,7 +1402,7 @@ public static string StartupPage { } /// - /// Looks up a localized string similar to Suggested actions. + /// Recherche une chaîne localisée semblable à Suggested actions. /// public static string SuggestedActions { get { @@ -1402,7 +1411,7 @@ public static string SuggestedActions { } /// - /// Looks up a localized string similar to Synethia will then analyze this data to provide a unique experience. + /// Recherche une chaîne localisée semblable à Synethia will then analyze this data to provide a unique experience. /// public static string SynethiaAnalyze { get { @@ -1411,7 +1420,7 @@ public static string SynethiaAnalyze { } /// - /// Looks up a localized string similar to Synethia collects data in ColorPicker only. + /// Recherche une chaîne localisée semblable à Synethia collects data in ColorPicker only. /// public static string SynethiaDataInfo { get { @@ -1420,7 +1429,7 @@ public static string SynethiaDataInfo { } /// - /// Looks up a localized string similar to Are you sure you want to reset all Synethia data? Your personalized experience will be lost; This action cannot be canceled.. + /// Recherche une chaîne localisée semblable à Are you sure you want to reset all Synethia data? Your personalized experience will be lost; This action cannot be canceled.. /// public static string SynethiaDeleteMsg { get { @@ -1429,7 +1438,7 @@ public static string SynethiaDeleteMsg { } /// - /// Looks up a localized string similar to Enable Synethia customized experience.. + /// Recherche une chaîne localisée semblable à Enable Synethia customized experience.. /// public static string SynethiaEnable { get { @@ -1438,7 +1447,7 @@ public static string SynethiaEnable { } /// - /// Looks up a localized string similar to The Home dashbord will recommand actions based on your usage. + /// Recherche une chaîne localisée semblable à The Home dashbord will recommand actions based on your usage. /// public static string SynethiaHome { get { @@ -1447,7 +1456,7 @@ public static string SynethiaHome { } /// - /// Looks up a localized string similar to Synethia is an algorithm that personnalizes your experience.. + /// Recherche une chaîne localisée semblable à Synethia is an algorithm that personnalizes your experience.. /// public static string SynethiaInfo { get { @@ -1456,7 +1465,7 @@ public static string SynethiaInfo { } /// - /// Looks up a localized string similar to Your data is stored on your device, anonymously. Absolutely NO data is sent to Léo Corporation.. + /// Recherche une chaîne localisée semblable à Your data is stored on your device, anonymously. Absolutely NO data is sent to Léo Corporation.. /// public static string SynethiaPrivacy { get { @@ -1465,7 +1474,7 @@ public static string SynethiaPrivacy { } /// - /// Looks up a localized string similar to Text. + /// Recherche une chaîne localisée semblable à Text. /// public static string TextTool { get { @@ -1474,7 +1483,7 @@ public static string TextTool { } /// - /// Looks up a localized string similar to Text tool settings.. + /// Recherche une chaîne localisée semblable à Text tool settings.. /// public static string TextToolDesc { get { @@ -1483,7 +1492,7 @@ public static string TextToolDesc { } /// - /// Looks up a localized string similar to Theme. + /// Recherche une chaîne localisée semblable à Theme. /// public static string Theme { get { @@ -1492,7 +1501,7 @@ public static string Theme { } /// - /// Looks up a localized string similar to To. + /// Recherche une chaîne localisée semblable à To. /// public static string To { get { @@ -1501,7 +1510,7 @@ public static string To { } /// - /// Looks up a localized string similar to Tools. + /// Recherche une chaîne localisée semblable à Tools. /// public static string Tools { get { @@ -1510,7 +1519,7 @@ public static string Tools { } /// - /// Looks up a localized string similar to Triadic. + /// Recherche une chaîne localisée semblable à Triadic. /// public static string Triadic { get { @@ -1519,7 +1528,7 @@ public static string Triadic { } /// - /// Looks up a localized string similar to Updates. + /// Recherche une chaîne localisée semblable à Updates. /// public static string Updates { get { @@ -1528,7 +1537,7 @@ public static string Updates { } /// - /// Looks up a localized string similar to ColorPicker is up to date.. + /// Recherche une chaîne localisée semblable à ColorPicker is up to date.. /// public static string UpToDate { get { @@ -1537,7 +1546,7 @@ public static string UpToDate { } /// - /// Looks up a localized string similar to Use keyboard shortcuts. + /// Recherche une chaîne localisée semblable à Use keyboard shortcuts. /// public static string UseKeyboardShortcuts { get { @@ -1546,7 +1555,7 @@ public static string UseKeyboardShortcuts { } /// - /// Looks up a localized string similar to Version. + /// Recherche une chaîne localisée semblable à Version. /// public static string Version { get { @@ -1555,7 +1564,7 @@ public static string Version { } /// - /// Looks up a localized string similar to Welcome to ColorPicker, the ultimate tool for picking, converting and generating colors.. + /// Recherche une chaîne localisée semblable à Welcome to ColorPicker, the ultimate tool for picking, converting and generating colors.. /// public static string WelcomeDesc { get { @@ -1564,7 +1573,7 @@ public static string WelcomeDesc { } /// - /// Looks up a localized string similar to Everyting is ready. + /// Recherche une chaîne localisée semblable à Everyting is ready. /// public static string WelcomeReady { get { @@ -1573,7 +1582,7 @@ public static string WelcomeReady { } /// - /// Looks up a localized string similar to XAML. + /// Recherche une chaîne localisée semblable à XAML. /// public static string XAML { get { @@ -1582,7 +1591,7 @@ public static string XAML { } /// - /// Looks up a localized string similar to XYZ. + /// Recherche une chaîne localisée semblable à XYZ. /// public static string XYZ { get { @@ -1591,7 +1600,7 @@ public static string XYZ { } /// - /// Looks up a localized string similar to YIQ. + /// Recherche une chaîne localisée semblable à YIQ. /// public static string YIQ { get { @@ -1600,7 +1609,7 @@ public static string YIQ { } /// - /// Looks up a localized string similar to YUV. + /// Recherche une chaîne localisée semblable à YUV. /// public static string YUV { get { diff --git a/ColorPicker/Properties/Resources.en-US.resx b/ColorPicker/Properties/Resources.en-US.resx index bf5ea3f1..812574d0 100644 --- a/ColorPicker/Properties/Resources.en-US.resx +++ b/ColorPicker/Properties/Resources.en-US.resx @@ -633,4 +633,7 @@ Automatic updates are not available in portable mode, please download ColorPicker Max again. + + Enter a prompt to generate colors using the power of AI + \ No newline at end of file diff --git a/ColorPicker/Properties/Resources.fr-FR.resx b/ColorPicker/Properties/Resources.fr-FR.resx index 7b078b3e..ff4daa75 100644 --- a/ColorPicker/Properties/Resources.fr-FR.resx +++ b/ColorPicker/Properties/Resources.fr-FR.resx @@ -637,4 +637,7 @@ Les mises à jour automatiques ne sont pas disponibles en mode portable, veuillez télécharger ColorPicker Max à nouveau. + + Saisissez une instruction pour générer des couleurs en utilisant la puissance de l'IA + \ No newline at end of file diff --git a/ColorPicker/Properties/Resources.resx b/ColorPicker/Properties/Resources.resx index 66b3193f..88e7a00e 100644 --- a/ColorPicker/Properties/Resources.resx +++ b/ColorPicker/Properties/Resources.resx @@ -613,4 +613,7 @@ Automatic updates are not available in portable mode, please download ColorPicker Max again. + + Enter a prompt to generate colors using the power of AI + \ No newline at end of file diff --git a/ColorPicker/Properties/Resources.zh-CN.resx b/ColorPicker/Properties/Resources.zh-CN.resx index 8936dd39..624082fc 100644 --- a/ColorPicker/Properties/Resources.zh-CN.resx +++ b/ColorPicker/Properties/Resources.zh-CN.resx @@ -641,4 +641,7 @@ 便携模式下无法进行自动更新,请重新下载 ColorPicker Max + + 输入提示,利用人工智能的力量生成颜色 + \ No newline at end of file From bd2404b0ecb10c6b8e5ffd34a0f5d6c9d6a1103a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Peyronnet?= Date: Sun, 10 Dec 2023 11:24:10 +0100 Subject: [PATCH 06/18] Added placeholder in AI Page color section (#352) --- ColorPicker/Pages/AiGenPage.xaml | 29 ++++++++++++++++++++++------- ColorPicker/Pages/AiGenPage.xaml.cs | 5 +++++ 2 files changed, 27 insertions(+), 7 deletions(-) diff --git a/ColorPicker/Pages/AiGenPage.xaml b/ColorPicker/Pages/AiGenPage.xaml index 7b8c65e2..ecfb21c6 100644 --- a/ColorPicker/Pages/AiGenPage.xaml +++ b/ColorPicker/Pages/AiGenPage.xaml @@ -135,6 +135,7 @@ Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Center" + d:Visibility="Visible" Visibility="Collapsed"> - - + CornerRadius="50" + Visibility="Collapsed" /> + + + + + + VerticalAlignment="Center" + d:Visibility="Collapsed"> - + Orientation="Horizontal" + Visibility="Collapsed"> + Orientation="Horizontal" + Visibility="Collapsed"> Date: Sun, 10 Dec 2023 11:26:47 +0100 Subject: [PATCH 07/18] Added placeholder in AI Page palette section (#352) --- ColorPicker/Pages/AiGenPage.xaml | 16 +++++++++++++--- ColorPicker/Pages/AiGenPage.xaml.cs | 3 +++ 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/ColorPicker/Pages/AiGenPage.xaml b/ColorPicker/Pages/AiGenPage.xaml index ecfb21c6..e854f606 100644 --- a/ColorPicker/Pages/AiGenPage.xaml +++ b/ColorPicker/Pages/AiGenPage.xaml @@ -135,7 +135,6 @@ Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Center" - d:Visibility="Visible" Visibility="Collapsed"> + + + + + Orientation="Horizontal" + Visibility="Collapsed"> - + Date: Sun, 10 Dec 2023 12:01:04 +0100 Subject: [PATCH 08/18] Updated theme file --- ColorPicker/Themes/Dark.xaml | 60 +++++++++++++++++++++----------- ColorPicker/Themes/Light.xaml | 64 ++++++++++++++++++++++++----------- 2 files changed, 84 insertions(+), 40 deletions(-) diff --git a/ColorPicker/Themes/Dark.xaml b/ColorPicker/Themes/Dark.xaml index ed173e35..e7026e67 100644 --- a/ColorPicker/Themes/Dark.xaml +++ b/ColorPicker/Themes/Dark.xaml @@ -3,24 +3,44 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:sys="clr-namespace:System;assembly=mscorlib"> - #0A0A1E - #141428 - #222277 - #141446 - #FFFFFF - /Images/DarkBackground.png - #141428 - #1E1E32 - #ffffff - #3FA5FF - #003666 - #003C70 - #5A5A6E - #25DE0F - #FF321E - #ff7a00 - #7474B1 - #FF4500 - #00DF39 - #4169E1 + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ColorPicker/Themes/Light.xaml b/ColorPicker/Themes/Light.xaml index b77d636c..0e6cdd85 100644 --- a/ColorPicker/Themes/Light.xaml +++ b/ColorPicker/Themes/Light.xaml @@ -2,24 +2,48 @@ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:sys="clr-namespace:System;assembly=mscorlib"> - #ffffff - #e6e6e6 - #e6e6e6 - #ffffff - #000000 - /Images/LightBackground.png - #E5E5E5 - #DBDBDB - #ffffff - #3FA5FF - #2153E0 - #C8E6FF - #DEDEDE - #25DE0F - #FF321E - #ff7a00 - #969696 - #FF4500 - #00DF39 - #4169E1 + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file From 9394770c76cb416bc2d4dc8d769ae24634a2e5d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Peyronnet?= Date: Sun, 10 Dec 2023 12:01:29 +0100 Subject: [PATCH 09/18] Added instant theme switching (#353) --- ColorPicker/App.xaml | 94 +++++----- ColorPicker/Classes/Global.cs | 3 +- ColorPicker/MainWindow.xaml | 56 +++--- ColorPicker/MainWindow.xaml.cs | 22 +-- ColorPicker/Pages/AiGenPage.xaml | 186 +++++++++---------- ColorPicker/Pages/AiGenPage.xaml.cs | 2 +- ColorPicker/Pages/BookmarksPage.xaml | 14 +- ColorPicker/Pages/BookmarksPage.xaml.cs | 2 +- ColorPicker/Pages/ChromaticWheelPage.xaml | 124 ++++++------- ColorPicker/Pages/ChromaticWheelPage.xaml.cs | 2 +- ColorPicker/Pages/ConverterPage.xaml | 182 +++++++++--------- ColorPicker/Pages/ConverterPage.xaml.cs | 6 +- ColorPicker/Pages/FirstRun/FeaturesPage.xaml | 24 +-- ColorPicker/Pages/FirstRun/JumpInPage.xaml | 6 +- ColorPicker/Pages/FirstRun/SynethiaPage.xaml | 18 +- ColorPicker/Pages/FirstRun/ThemePage.xaml | 6 +- ColorPicker/Pages/FirstRun/ThemePage.xaml.cs | 8 +- ColorPicker/Pages/FirstRun/WelcomePage.xaml | 16 +- ColorPicker/Pages/GradientPage.xaml | 118 ++++++------ ColorPicker/Pages/GradientPage.xaml.cs | 2 +- ColorPicker/Pages/HarmoniesPage.xaml | 64 +++---- ColorPicker/Pages/HarmoniesPage.xaml.cs | 10 +- ColorPicker/Pages/HomePage.xaml | 8 +- ColorPicker/Pages/PalettePage.xaml | 70 +++---- ColorPicker/Pages/PalettePage.xaml.cs | 6 +- ColorPicker/Pages/SelectorPage.xaml | 146 +++++++-------- ColorPicker/Pages/SelectorPage.xaml.cs | 18 +- ColorPicker/Pages/SettingsPage.xaml | 166 ++++++++--------- ColorPicker/Pages/SettingsPage.xaml.cs | 35 +--- ColorPicker/Pages/TextPage.xaml | 112 +++++------ ColorPicker/Pages/TextPage.xaml.cs | 2 +- ColorPicker/UserControls/ActionCard.xaml | 8 +- ColorPicker/UserControls/ColorItem.xaml | 50 ++--- ColorPicker/UserControls/ColorItem.xaml.cs | 4 +- ColorPicker/UserControls/GradientItem.xaml | 26 +-- ColorPicker/UserControls/PageCard.xaml | 6 +- ColorPicker/UserControls/PaletteItem.xaml | 26 +-- ColorPicker/UserControls/PaletteItem.xaml.cs | 8 +- ColorPicker/UserControls/TextItem.xaml | 20 +- ColorPicker/Windows/ColorDetailsWindow.xaml | 54 +++--- ColorPicker/Windows/FirstRunWindow.xaml | 8 +- ColorPicker/Windows/MiniPicker.xaml | 8 +- 42 files changed, 863 insertions(+), 883 deletions(-) diff --git a/ColorPicker/App.xaml b/ColorPicker/App.xaml index 5ef93dc3..ae5cf023 100644 --- a/ColorPicker/App.xaml +++ b/ColorPicker/App.xaml @@ -36,20 +36,20 @@ - + - + - + @@ -81,7 +81,7 @@ - + @@ -94,7 +94,7 @@ - + @@ -126,19 +126,19 @@ - - + + - - + + - + @@ -171,19 +171,19 @@ - - + + - - + + - + @@ -221,15 +221,15 @@ + Fill="{DynamicResource Gray}" /> + Fill="{DynamicResource Gray}" /> + Fill="{DynamicResource Gray}" /> @@ -378,13 +378,13 @@ - + - + - + @@ -1165,39 +1165,39 @@ - - + + - - + + - + - + - - + + - + - - + + - + - + - - + + - + @@ -1343,7 +1343,7 @@ Color="Transparent"> @@ -1431,7 +1431,7 @@ Color="Transparent"> @@ -1508,7 +1508,7 @@