mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
Some small language fixes [skip ci]
This commit is contained in:
parent
2d6b428ee4
commit
839b51b9d2
3 changed files with 123 additions and 124 deletions
|
@ -44,7 +44,7 @@ namespace GreenshotPlugin.Core {
|
|||
private const string LanguageFilenamePattern = @"language*.xml";
|
||||
private static readonly Regex PrefixRegexp = new Regex(@"language_([a-zA-Z0-9]+).*");
|
||||
private static readonly Regex IetfCleanRegexp = new Regex(@"[^a-zA-Z]+");
|
||||
private static readonly Regex IetfRegexp = new Regex(@"^.*([a-zA-Z]{2,3}-[a-zA-Z]{2})\.xml$");
|
||||
private static readonly Regex IetfRegexp = new Regex(@"^.*([a-zA-Z]{2,3}-[a-zA-Z]{1,2})\.xml$");
|
||||
private const string LanguageGroupsKey = @"SYSTEM\CurrentControlSet\Control\Nls\Language Groups";
|
||||
private static readonly IList<string> UnsupportedLanguageGroups = new List<string>();
|
||||
private static readonly IDictionary<string, string> Resources = new Dictionary<string, string>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue