[App] Be more verbose about what is happening when a file is not imported because not known, or duplicate.

This commit is contained in:
2025-07-31 04:22:53 +01:00
parent 3cd5cf4b73
commit f6500da3ff
5 changed files with 58 additions and 8 deletions

View File

@@ -794,5 +794,17 @@ namespace RomRepoMgr.Resources {
return ResourceManager.GetString("ErrorProcessingArchive", resourceCulture);
}
}
public static string UnknownFile {
get {
return ResourceManager.GetString("UnknownFile", resourceCulture);
}
}
public static string FileAlreadyInRepository {
get {
return ResourceManager.GetString("FileAlreadyInRepository", resourceCulture);
}
}
}
}