add localization
This commit is contained in:
parent
864a07c75c
commit
ab49284f2f
10 changed files with 475 additions and 50 deletions
|
|
@ -47,7 +47,7 @@ public class MainWindowViewModel : INotifyPropertyChanged
|
|||
}
|
||||
|
||||
public IBrush StatusColor => IsDeviceConnected ? Brushes.Green : Brushes.Red;
|
||||
public string StatusText => IsDeviceConnected ? $"Connected to {_deviceSerial}" : "Not connected";
|
||||
public string StatusText => IsDeviceConnected ? $"{Lang.Resources.ConnectedTo} {_deviceSerial}" : Lang.Resources.NotConnected;
|
||||
|
||||
public void LoadInstallations(IEnumerable<InstallationData> data)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue