Gu.Localization icon indicating copy to clipboard operation
Gu.Localization copied to clipboard

Results 22 Gu.Localization issues
Sort by recently updated
recently updated
newest added

Bumps [Microsoft.CodeAnalysis.CSharp.Workspaces](https://github.com/dotnet/roslyn) from 4.0.1 to 4.4.0. Release notes Sourced from Microsoft.CodeAnalysis.CSharp.Workspaces's releases. .NET 7.0 Preview 5 Release .NET 7.0 Preview 2 Release .NET 7.0 Preview 1 Release Changelog Sourced from...

dependencies

Using the following code from the example. ``` ``` Throws the following errors in the XAML designer: - XDG0023 The type "Language" does not include any accessible constructors. - XLS0507...

App: WPF .Net 4.6.1 I set the language of the main window to `Language = System.Windows.Markup.XmlLanguage.GetLanguage(CultureInfo.GetCultureInfo("de").IetfLanguageTag);` In any [IValueConverter](url) i get 'de-DE' as culture, which has 'de' as parent. So...

``` Severity Code Description Project File Line Category Suppression State Warning CA1304 The behavior of 'Translator.Translate(ResourceManager, string)' could vary based on the current user's locale settings. Replace this call in...

When use binding `` textblock in xaml designer collapsed In runtime works fine. VS2019 with resharper show warn ![image](https://user-images.githubusercontent.com/4100976/100381268-b4cc1c80-3029-11eb-86ee-b7c8e6088c02.png) vs think source is string ![image](https://user-images.githubusercontent.com/4100976/100381468-168c8680-302a-11eb-905f-edf94e8ef30b.png) how i can setup right...

When a .csproj has a neutral language set, for example: ``` en ``` and the following assignment is executed: ``` Translator.Culture = CultureInfo.GetCultureInfo("en"); ``` the following exception is thrown: ```...

needs-repro

The Gu.Localization.Culture static initializer throws a KeyNotFoundException while setting the NeutralCultrureRegionMap if the computer has a neutral culture installed (or one incorrectly marked as neutral) without a corresponding specific culture....

The flags that come with this lib are needlessly low quality. Since they were taken from [here](https://github.com/lipis/flag-icon-css) which provides SVGs, there is no need to convert them to PNG and...

```cs protected override Action ExecutePsiTransaction(ISolution solution, IProgressIndicator progress) { return (Action) (tc => { string str = RenameRefactoringService.Rename(solution, new RenameDataProvider(this.myElement, this.mySuggestedName), tc); if (str.IsNullOrWhitespace()) return; BulbActionBase.ShowTooltip(tc, str); }); } ```...