diff --git a/Application/FileConverter/Properties/Resources.Designer.cs b/Application/FileConverter/Properties/Resources.Designer.cs index d357b63..66b3980 100644 --- a/Application/FileConverter/Properties/Resources.Designer.cs +++ b/Application/FileConverter/Properties/Resources.Designer.cs @@ -19,7 +19,7 @@ namespace FileConverter.Properties { // 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", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] public class Resources { @@ -447,6 +447,15 @@ namespace FileConverter.Properties { } } + /// + /// Looks up a localized string similar to Error. + /// + public static string Error { + get { + return ResourceManager.GetString("Error", resourceCulture); + } + } + /// /// Looks up a localized string similar to Canceled.. /// @@ -474,6 +483,15 @@ namespace FileConverter.Properties { } } + /// + /// Looks up a localized string similar to Can't load file converter user settings. Do you want to fall back to default settings ?. + /// + public static string ErrorCantLoadSettings { + get { + return ResourceManager.GetString("ErrorCantLoadSettings", resourceCulture); + } + } + /// /// Looks up a localized string similar to Audio CD track extraction failed.. /// diff --git a/Application/FileConverter/Properties/Resources.en.resx b/Application/FileConverter/Properties/Resources.en.resx index 2c35246..f6bae56 100644 --- a/Application/FileConverter/Properties/Resources.en.resx +++ b/Application/FileConverter/Properties/Resources.en.resx @@ -571,4 +571,10 @@ use maj for uppercase version Custom FFMPEG command line arguments + + Error + + + Can't load file converter user settings. Do you want to fall back to default settings ? + \ No newline at end of file diff --git a/Application/FileConverter/Properties/Resources.fr.resx b/Application/FileConverter/Properties/Resources.fr.resx index 4a172d5..78fdf5b 100644 --- a/Application/FileConverter/Properties/Resources.fr.resx +++ b/Application/FileConverter/Properties/Resources.fr.resx @@ -580,4 +580,10 @@ utilisez maj pour une version en majuscules Arguments de ligne de commande FFMPEG personalisés + + Erreur + + + Impossible de charger la configuration de File Converter. Voulez vous appliquer la configuration par défaut ? + \ No newline at end of file diff --git a/Application/FileConverter/Properties/Resources.resx b/Application/FileConverter/Properties/Resources.resx index f02d00e..a06c49b 100644 --- a/Application/FileConverter/Properties/Resources.resx +++ b/Application/FileConverter/Properties/Resources.resx @@ -586,4 +586,10 @@ use maj for uppercase version Cancel + + Error + + + Can't load file converter user settings. Do you want to fall back to default settings ? + \ No newline at end of file diff --git a/Application/FileConverter/Services/SettingsService.cs b/Application/FileConverter/Services/SettingsService.cs index c2d63e5..99f18fb 100644 --- a/Application/FileConverter/Services/SettingsService.cs +++ b/Application/FileConverter/Services/SettingsService.cs @@ -194,9 +194,8 @@ namespace FileConverter.Services catch (Exception) { MessageBoxResult messageBoxResult = - MessageBox.Show( - "Can't load file converter user settings. Do you want to fall back to default settings ?", - "Error", + MessageBox.Show(Resources.ErrorCantLoadSettings, + Resources.Error, MessageBoxButton.YesNo, MessageBoxImage.Exclamation);