Update locale resources.

This commit is contained in:
Bruce
2026-04-09 18:04:40 +08:00
parent 9ba3b875da
commit 84a28db8cf
3 changed files with 617 additions and 255 deletions

View File

@@ -78,6 +78,14 @@ namespace PkgCLI
}
return sb.ToString ().TrimEnd (Environment.NewLine.ToCharArray ());
}
public static string Format (this string format, params object [] args)
{
return String.Format (format, args);
}
public static string Format (this string format, object args)
{
return String.Format (format, args);
}
}
public static class PackageReaderExt
{