All translations

Enter a message name below to show all available translations.

Message

Found 2 translations.

NameCurrent message text
 h English (en)<syntaxhighlight lang="cpp-qt">
// Correct!
static const char SomeString[] = "Example";
// Wrong!
static const char* SomeString = "Example";
// Wrong!
#define SomeString "Example"
</syntaxhighlight>
 h Brazilian Portuguese (pt-br)<syntaxhighlight lang="cpp-qt">
// Correct!
static const char SomeString[] = "Example";
// Wrong!
static const char* SomeString = "Example";
// Wrong!
#define SomeString "Example"
</syntaxhighlight>