-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GUI modification #38
GUI modification #38
Conversation
karthickgandhiTV
commented
Apr 2, 2024
- Options has been replaced by Synchronization settings (Checkboxes aligned to the left from their current position)
- Test run checkbox replaced with a button.
- API token and scheduled sync moved to Settings page. (Earlier position : Fixed position at the bottom irrespective of tabs)
- Descriptions added to Synchronization, User settings, Authentication ,Scheduled Task and Logging.
- Groups checkbox has been moved to synchronization settings in the first tab.
- Scheduled Task interval textbox replaced with Combobox.
- Labels for Login Method changed
"AccountTypeGeneratedPassword": "Konten mit generiertem Passwort erstellen", | ||
"AccountTypeSso": "Single Sign-On verwenden (benötigt Tensor Lizenz)", | ||
"AccountTypeDefaultPassword": "Vorgegebenem Passwort:", | ||
"AccountTypeGeneratedPassword": "Generiertem Passwort:", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"AccountTypeGeneratedPassword": "Generiertem Passwort:", | |
"AccountTypeGeneratedPassword": "Zufällig generiertes Passwort", |
"AccountTypeDefaultPassword": "Konten mit vorgegebenem Passwort erstellen:", | ||
"AccountTypeGeneratedPassword": "Konten mit generiertem Passwort erstellen", | ||
"AccountTypeSso": "Single Sign-On verwenden (benötigt Tensor Lizenz)", | ||
"AccountTypeDefaultPassword": "Vorgegebenem Passwort:", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"AccountTypeDefaultPassword": "Vorgegebenem Passwort:", | |
"AccountTypeDefaultPassword": "Vorgegebenes Passwort:", |
@@ -144,6 +148,13 @@ function Invoke-GraphicalUserInterfaceConfiguration($configuration, [string] $cu | |||
Content = $locale."UserLanguage_$_" | |||
} }) | |||
|
|||
|
|||
$scheduledSyncIntervalsData = (Get-SupportedScheduledSyncIntervals | ForEach-Object { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The list is displayed as "sorted by string" in the GUI. Thus we offer them in this order:
16
24
4
8
Probably that is the default behavior of the list box control. Can we turn this off and use the insert order instead?
"AccountTypeSso": "Single Sign-On verwenden (benötigt Tensor Lizenz)", | ||
"AccountTypeDefaultPassword": "Vorgegebenem Passwort:", | ||
"AccountTypeGeneratedPassword": "Generiertem Passwort:", | ||
"AccountTypeSso": "Single Sign-On(SSO):", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"AccountTypeSso": "Single Sign-On(SSO):", | |
"AccountTypeSso": "Single Sign-On(SSO)", |