All translations
Enter a message name below to show all available translations.
Found 2 translations.
Name | Current 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> |