Skip to content

Commit

Permalink
Translations updated and intervals combobox fixed to ascending
Browse files Browse the repository at this point in the history
  • Loading branch information
karthickgandhiTV committed Apr 3, 2024
1 parent e5fd695 commit 8102022
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions TeamViewerADConnector/Internal/Forms/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ See file LICENSE
<RadioButton Name="RdBtnAccountTypePassword" Margin="0,10,5,5" VerticalAlignment="Stretch" HorizontalContentAlignment="Stretch" GroupName="AccountTypeGroup" IsChecked="{Binding ConfigurationData.UseDefaultPassword}">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="140"/>
<ColumnDefinition Width="160"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="0,0,0,5" Text="{Binding L.AccountTypeDefaultPassword}" FontSize="12"/>
Expand All @@ -140,7 +140,7 @@ See file LICENSE
<RadioButton Name="RdBtnAccountTypeSso" Margin="0,10,5,5" VerticalAlignment="Stretch" HorizontalContentAlignment="Stretch" GroupName="AccountTypeGroup" IsChecked="{Binding ConfigurationData.UseSsoCustomerId}">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="140"/>
<ColumnDefinition Width="160"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
Expand All @@ -162,7 +162,7 @@ See file LICENSE
</Grid>
<Grid VerticalAlignment="Top">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="140"/>
<ColumnDefinition Width="160"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Label Margin="5" Content="{Binding L.LabelLanguage}" HorizontalContentAlignment="Left" FontSize="12"/>
Expand Down
4 changes: 2 additions & 2 deletions TeamViewerADConnector/Internal/GraphicalUserInterface.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function Get-GraphicalUserInterfaceSupportedLocale() {
}

function Get-SupportedScheduledSyncIntervals() {
return @('4', '8', '16', '24')
return @(4, 8, 16, 24)
}

function Get-GraphicalUserInterfaceLocale([string] $culture = 'en') {
Expand Down Expand Up @@ -152,7 +152,7 @@ function Invoke-GraphicalUserInterfaceConfiguration($configuration, [string] $cu
$scheduledSyncIntervalsData = (Get-SupportedScheduledSyncIntervals | ForEach-Object {
New-Object PSObject -Prop @{
Tag = "$_"
Content = "$_"
Content = $_
}
})
# Scheduled sync view model
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"AccountTypeDefaultPassword": "Vorgegebenem Passwort:",
"AccountTypeGeneratedPassword": "Generiertem Passwort:",
"AccountTypeDefaultPassword": "Vorgegebenes Passwort:",
"AccountTypeGeneratedPassword": "Zufällig generiertes Passwort",
"AccountTypeSso": "Single Sign-On(SSO):",
"Add": "Hinzufügen",
"Apply": "Übernehmen",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"AccountTypeDefaultPassword": "Predefined password",
"AccountTypeGeneratedPassword": "Random password",
"AccountTypeSso": "Single Sign-On (SSO)",
"AccountTypeDefaultPassword": "Predefined password:",
"AccountTypeGeneratedPassword": "Random password:",
"AccountTypeSso": "Single Sign-On (SSO):",
"Add": "Add",
"Apply": "Apply",
"Cancel": "Cancel",
Expand Down

0 comments on commit 8102022

Please sign in to comment.