> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# PartyTranslationReceivedOptions

> Flags describing how a translation was received.

Flags describing how a translation was received.

## Syntax

```cpp theme={null}
enum class PartyTranslationReceivedOptions    
{  
    None = 0x0,  
    Truncated = 0x1,  
}  
```

## Constants

| Constant  | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| --------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| None      | There is no additional translation information.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| Truncated | The translation was truncated.<br /><br /> A translation string may be up to `c_maxChatTextMessageLength` characters long, not including the null terminator. Truncation occurs if the translated string length would exceed that limit, which can happen due to language differences even though the original string length is less than or equal to `c_maxChatTextMessageLength`. Truncation may occur at an arbitrary point in the UTF-8 byte sequence and may not result in a complete, valid character or word. Strings are always null terminated, even when truncated. |

## Requirements

**Header:** Party.h

## See also

[Party members](/services/playfab/multiplayer/networking/reference/party_members)


## Related topics

- [PartyTranslation](/services/playfab/multiplayer/networking/reference/structs/partytranslation.md)
- [Party C/C++ API overview](/services/playfab/multiplayer/networking/reference/party_members.md)
- [PartyMessageReceivedOptions](/services/playfab/multiplayer/networking/reference/enums/partymessagereceivedoptions.md)
- [PartyChatTextReceivedOptions](/services/playfab/multiplayer/networking/reference/enums/partychattextreceivedoptions.md)
- [PartyChatTextReceivedStateChange](/services/playfab/multiplayer/networking/reference/structs/partychattextreceivedstatechange.md)
