@@ -152,22 +152,6 @@ private static Person[] LoadLanguageTranslatorList()
152152
153153 public static class CommonTranslations
154154 {
155- public static readonly Dictionary < string , string > ArchNames = new ( )
156- {
157- { Architecture . X64 , "x64" } ,
158- { Architecture . X86 , "x86" } ,
159- { Architecture . Arm64 , "arm64" } ,
160- { Architecture . Arm , "arm32" } ,
161- } ;
162-
163- public static readonly Dictionary < string , string > InvertedArchNames = new ( )
164- {
165- { "x64" , Architecture . X64 } ,
166- { "x86" , Architecture . X86 } ,
167- { "arm64" , Architecture . Arm64 } ,
168- { "arm32" , Architecture . Arm } ,
169- } ;
170-
171155 public static readonly Dictionary < string , string > ScopeNames = new ( )
172156 {
173157 { PackageScope . Global , "Machine | Global" } ,
@@ -179,18 +163,6 @@ public static class CommonTranslations
179163 { "Machine | Global" , PackageScope . Global } ,
180164 { "User | Local" , PackageScope . Local } ,
181165 } ;
182-
183- public static readonly Dictionary < string , string > ScopeNames_NonLang = new ( )
184- {
185- { PackageScope . Global , "machine" } ,
186- { PackageScope . Local , "user" } ,
187- } ;
188-
189- public static readonly Dictionary < string , string > InvertedScopeNames_NonLang = new ( )
190- {
191- { "machine" , PackageScope . Global } ,
192- { "user" , PackageScope . Local } ,
193- } ;
194166 }
195167}
196168
0 commit comments