The documentation on this page:
[https://developers.maxon.net/docs/Cinema4DCPPSDK/html/page_description_resource.html]
...defines the structure of a .str file like this:
STRINGTABLE descriptionname
{
NAME descriptionname;
ELEMENT_1 "Long Name";
ELEMENT_2 "Long Name" "Short Name";
}
...but all the examples I've seen so far look like this:
STRINGTABLE descriptionname
{
descriptionname "some text here";
ELEMENT_1 "Long Name";
ELEMENT_2 "Long Name" "Short Name";
}
Is there an error in the documentation or is this something that has changed in R21?