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 int AnswerToAllQuestions = 42;
// Wrong!
#define AnswerToAllQuestions 42
</syntaxhighlight>
 h Brazilian Portuguese (pt-br)<syntaxhighlight lang="cpp-qt">
// Correct!
static const int AnswerToAllQuestions = 42;
// Wrong!
#define AnswerToAllQuestions 42
</syntaxhighlight>