Skip to content

Commit 11d63fc

Browse files
authored
Merge pull request MicrosoftDocs#4781 from CHILIU-MSFT/translationpolicy
Add document for EnableTranscriptionTranslation in New/Set-CsOnlineVoicemailPolicy
2 parents e535174 + 301bfb4 commit 11d63fc

File tree

2 files changed

+39
-7
lines changed

2 files changed

+39
-7
lines changed

skype/skype-ps/skype/New-CsOnlineVoicemailPolicy.md

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ ms.reviewer:
1313
# New-CsOnlineVoicemailPolicy
1414

1515
## SYNOPSIS
16-
Creates a new Online Voicemail policy. Online Voicemail policies determine whether or not voicemail transcription, profanity masking for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify voicemail maximum recording length for a user.
16+
Creates a new Online Voicemail policy. Online Voicemail policies determine whether or not voicemail transcription, profanity masking for the voicemail transcriptions, translation for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify voicemail maximum recording length for a user.
1717

1818
## SYNTAX
1919

2020
```
2121
New-CsOnlineVoicemailPolicy -Identity <XdsIdentity> [-Tenant <Guid>] [-EnableTranscription <Boolean>] [-ShareData <String>]
22-
[-EnableTranscriptionProfanityMasking <Boolean>] [-EnableEditingCallAnswerRulesSetting <Boolean>] [-MaximumRecordingLength <Duration>] [-Force] [-WhatIf] [-Confirm]
22+
[-EnableTranscriptionProfanityMasking <Boolean>] [-EnableTranscriptionTranslation <Boolean>] [-EnableEditingCallAnswerRulesSetting <Boolean>] [-MaximumRecordingLength <Duration>] [-Force] [-WhatIf] [-Confirm]
2323
[<CommonParameters>]
2424
```
2525

2626
## DESCRIPTION
2727
Online Voicemail service provides organizations with voicemail deposit capabilities for Phone System implementation.
2828

29-
By default, users enabled for Phone System will be enabled for Online Voicemail, and Online Voicemail policy controls whether or not voicemail transcription, profanity masking for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify voicemail maximum recording length for a user. Online Voicemail transcription is enabled by default, transcription profanity masking is disabled by default, editing call answer rule settings is enabled by default, and voicemail maximum recording length is set to 5 minutes by default. Tenant admin would be able to create customized online voicemail policy to match the organization's requirements.
29+
By default, users enabled for Phone System will be enabled for Online Voicemail, and Online Voicemail policy controls whether or not voicemail transcription, profanity masking for the voicemail transcriptions, translation for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify voicemail maximum recording length for a user. Online Voicemail transcription is enabled by default, transcription profanity masking is disabled by default, transcription translation is enabled by default, editing call answer rule settings is enabled by default, and voicemail maximum recording length is set to 5 minutes by default. Tenant admin would be able to create customized online voicemail policy to match the organization's requirements.
3030

3131
## EXAMPLES
3232

@@ -88,6 +88,22 @@ Accept pipeline input: False
8888
Accept wildcard characters: False
8989
```
9090
91+
### -EnableTranscriptionTranslation
92+
PARAMVALUE: $true | $false
93+
94+
```yaml
95+
Type: Boolean
96+
Parameter Sets: (All)
97+
Aliases:
98+
Applicable: Skype for Business Online
99+
100+
Required: False
101+
Position: Named
102+
Default value: None
103+
Accept pipeline input: False
104+
Accept wildcard characters: False
105+
```
106+
91107
### -EnableEditingCallAnswerRulesSetting
92108
PARAMVALUE: $true | $false
93109

skype/skype-ps/skype/Set-CsOnlineVoicemailPolicy.md

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,28 @@ ms.reviewer:
1313
# Set-CsOnlineVoicemailPolicy
1414

1515
## SYNOPSIS
16-
Modifies an existing Online Voicemail policy. Online Voicemail policies determine whether or not voicemail transcription, profanity masking for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify voicemail maximum recording length for a user.
16+
Modifies an existing Online Voicemail policy. Online Voicemail policies determine whether or not voicemail transcription, profanity masking for the voicemail transcriptions, translation for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify voicemail maximum recording length for a user.
1717

1818
## SYNTAX
1919

2020
### Identity (Default)
2121
```
2222
Set-CsOnlineVoicemailPolicy [-Tenant <Guid>] [-EnableTranscription <Boolean>] [-ShareData <String>]
23-
[-EnableTranscriptionProfanityMasking <Boolean>] [-EnableEditingCallAnswerRulesSetting <Boolean>] [-MaximumRecordingLength <Duration>] [[-Identity] <XdsIdentity>] [-Force] [-WhatIf] [-Confirm]
23+
[-EnableTranscriptionProfanityMasking <Boolean>] [-EnableTranscriptionTranslation <Boolean>] [-EnableEditingCallAnswerRulesSetting <Boolean>] [-MaximumRecordingLength <Duration>] [[-Identity] <XdsIdentity>] [-Force] [-WhatIf] [-Confirm]
2424
[<CommonParameters>]
2525
```
2626

2727
### Instance
2828
```
2929
Set-CsOnlineVoicemailPolicy [-Tenant <Guid>] [-EnableTranscription <Boolean>] [-ShareData <String>]
30-
[-EnableTranscriptionProfanityMasking <Boolean>] [-EnableEditingCallAnswerRulesSetting <Boolean>] [-MaximumRecordingLength <Duration>] [-Instance <PSObject>] [-Force] [-WhatIf] [-Confirm]
30+
[-EnableTranscriptionProfanityMasking <Boolean>] [-EnableTranscriptionTranslation <Boolean>] [-EnableEditingCallAnswerRulesSetting <Boolean>] [-MaximumRecordingLength <Duration>] [-Instance <PSObject>] [-Force] [-WhatIf] [-Confirm]
3131
[<CommonParameters>]
3232
```
3333

3434
## DESCRIPTION
3535
Online Voicemail service provides organizations with voicemail deposit capabilities for Phone System implementation.
3636

37-
By default, users enabled for Phone System will be enabled for Online Voicemail, and Online Voicemail policy controls whether or not voicemail transcription, profanity masking for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify voicemail maximum recording length for a user. Online Voicemail transcription is enabled by default, transcription profanity masking is disabled by default, editing call answer rule settings is enabled by default, and voicemail maximum recording length is set to 5 minutes by default. Tenant admin would be able to modify existing policies to match the organization's requirements.
37+
By default, users enabled for Phone System will be enabled for Online Voicemail, and Online Voicemail policy controls whether or not voicemail transcription, profanity masking for the voicemail transcriptions, translation for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify voicemail maximum recording length for a user. Online Voicemail transcription is enabled by default, transcription profanity masking is disabled by default, editing call answer rule settings is enabled by default, and voicemail maximum recording length is set to 5 minutes by default. Tenant admin would be able to modify existing policies to match the organization's requirements.
3838

3939
## EXAMPLES
4040

@@ -103,6 +103,22 @@ Accept pipeline input: False
103103
Accept wildcard characters: False
104104
```
105105
106+
### -EnableTranscriptionTranslation
107+
PARAMVALUE: $true | $false
108+
109+
```yaml
110+
Type: Boolean
111+
Parameter Sets: (All)
112+
Aliases:
113+
Applicable: Skype for Business Online
114+
115+
Required: False
116+
Position: Named
117+
Default value: None
118+
Accept pipeline input: False
119+
Accept wildcard characters: False
120+
```
121+
106122
### -EnableEditingCallAnswerRulesSetting
107123
PARAMVALUE: $true | $false
108124

0 commit comments

Comments
 (0)