We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello developers,
keep up the great work!
I just wanted to mention the adaptation of the pre-installed plugin 'Saas.ps1' to the clients with German language settings, which I had already posted in the forum: https://ask.ocsinventory-ng.org/12230/web-application-inventory-on-foreign-clients?show=12230#q12230
It has also been mentioned in another git-issue: #269
The values for the variables are as follows: $lang.Name : de-DE $pwlang : Eintragsname
So the change in the code is as follows (as a basis the fragment of the script of the client version 2.10.1.0):
$lang = Get-Culture if($lang.Name -eq "fr-FR"){ $pwlang = "Nom d'enregistrement" }elseif($lang.Name -eq "it-IT"){ $pwlang = "Nome record" }elseif($lang.Name -eq "es-ES"){ $pwlang = "Nombre de registro" }elseif($lang.Name -eq "de-DE"){ $pwlang = "Eintragsname" }else{ $pwlang = "Record Name" }
Many thanks for the implementation and best regards.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello developers,
keep up the great work!
I just wanted to mention the adaptation of the pre-installed plugin 'Saas.ps1' to the clients with German language settings, which I had already posted in the forum:
https://ask.ocsinventory-ng.org/12230/web-application-inventory-on-foreign-clients?show=12230#q12230
It has also been mentioned in another git-issue:
#269
The values for the variables are as follows:
$lang.Name : de-DE
$pwlang : Eintragsname
So the change in the code is as follows (as a basis the fragment of the script of the client version 2.10.1.0):
Many thanks for the implementation and best regards.
The text was updated successfully, but these errors were encountered: