For the complete documentation index, see llms.txt. This page is also available as Markdown.

New-PSUTranslation

Translation strings for PSU.

SYNOPSIS

Translation strings for PSU.

SYNTAX

New-PSUTranslation -LanguageId <String> [-Strings <Hashtable>] [-Name <String>] [-ComputerName <String>]
 [-AppToken <String>] [-Credential <PSCredential>] [-UseDefaultCredentials] [-Integrated] [-TrustCertificate]
 [-Cookies] [<CommonParameters>]

DESCRIPTION

Translation strings for PSU.

EXAMPLES

Example 1

New-PSUTranslation -LanguageId 'en-US' -Strings @{
    Title = "Title"
}

An English translation dictionary.

PARAMETERS

-AppToken

An app token used to connect to the PSU server.

-ComputerName

The URL of the PSU server.

-Integrated

No supported.

-LanguageId

The language ID used to look up the string dictionary.

-Name

A friendly name for the translation.

-Strings

A hashtable of strings to available in this translation.

-UseDefaultCredentials

Whether to use default Windows credentials when connecting to PSU.

-Credential

Credentials to login to the PowerShell Universal Management API.

-TrustCertificate

Whether the cmdlet should ignore certificate issues.

-Cookies

Reuses and persists authentication cookies for the current PowerShell session.

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -Verbose, -WarningAction, -WarningVariable, and -ProgressAction. For more information, see about_CommonParameters.

INPUTS

None

OUTPUTS

System.Object

NOTES

Last updated

Was this helpful?