mirror of
https://github.com/claunia/romrepomgr.git
synced 2025-12-16 19:24:51 +00:00
Localize missing string.
This commit is contained in:
@@ -65,9 +65,11 @@ internal static class Program
|
|||||||
// Avalonia configuration, don't remove; also used by visual designer.
|
// Avalonia configuration, don't remove; also used by visual designer.
|
||||||
public static AppBuilder BuildAvaloniaApp() => AppBuilder.Configure<App>()
|
public static AppBuilder BuildAvaloniaApp() => AppBuilder.Configure<App>()
|
||||||
.UsePlatformDetect()
|
.UsePlatformDetect()
|
||||||
#if DEBUG
|
|
||||||
.LogToSerilog(LogEventLevel.Debug);
|
//#if DEBUG
|
||||||
#else
|
// .LogToSerilog(LogEventLevel.Debug);
|
||||||
|
//#else
|
||||||
.LogToSerilog(LogEventLevel.Information);
|
.LogToSerilog(LogEventLevel.Information);
|
||||||
#endif
|
|
||||||
|
//#endif
|
||||||
}
|
}
|
||||||
6
RomRepoMgr/Resources/Localization.Designer.cs
generated
6
RomRepoMgr/Resources/Localization.Designer.cs
generated
@@ -788,5 +788,11 @@ namespace RomRepoMgr.Resources {
|
|||||||
return ResourceManager.GetString("ProcessingArchive", resourceCulture);
|
return ResourceManager.GetString("ProcessingArchive", resourceCulture);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static string ErrorProcessingArchive {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ErrorProcessingArchive", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -390,4 +390,7 @@ Tardará mucho tiempo...</value>
|
|||||||
<data name="ProcessingArchive" xml:space="preserve">
|
<data name="ProcessingArchive" xml:space="preserve">
|
||||||
<value>Procesando archivo: {0}</value>
|
<value>Procesando archivo: {0}</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ErrorProcessingArchive" xml:space="preserve">
|
||||||
|
<value>Error procesando archivo.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -398,4 +398,7 @@ This will take a long time...</value>
|
|||||||
<data name="ProcessingArchive" xml:space="preserve">
|
<data name="ProcessingArchive" xml:space="preserve">
|
||||||
<value>Processing archive: {0}</value>
|
<value>Processing archive: {0}</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ErrorProcessingArchive" xml:space="preserve">
|
||||||
|
<value>Error processing archive.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -464,7 +464,7 @@ public sealed partial class ImportRomFolderViewModel : ViewModelBase
|
|||||||
Progress = 1,
|
Progress = 1,
|
||||||
Maximum = 1,
|
Maximum = 1,
|
||||||
Minimum = 0,
|
Minimum = 0,
|
||||||
StatusMessage = "Error processing archive."
|
StatusMessage = Localization.ErrorProcessingArchive
|
||||||
}));
|
}));
|
||||||
#pragma warning disable ERP022
|
#pragma warning disable ERP022
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user