Fixed issues with language selection
Fixed game name field not resetting properly
This commit is contained in:
parent
933e84cdaa
commit
a5ca4ceb33
5 changed files with 43 additions and 47 deletions
|
@ -1,10 +1,13 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace auto_creamapi.Utils
|
||||
{
|
||||
public class Misc
|
||||
{
|
||||
public static readonly List<string> DefaultLanguages = new List<string>(new[]
|
||||
|
||||
public const string DefaultLanguageSelection = "english";
|
||||
public static readonly ObservableCollection<string> DefaultLanguages = new ObservableCollection<string>(new[]
|
||||
{
|
||||
"arabic",
|
||||
"bulgarian",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue