goldpony said:
This message kept popping up. What does this mean and how to fix it? Can
anyone help me??
"String PRODUCT_NAME was not found in string table"
The only thing you can do is report it to the company that sold you
the software that produced it.
String tables are used to make it easier to make an app run with
multiple languages. You tell the app to look up a string tagged as
PRODUCT_NAME (for example) in the string table, and the string table
has the name of the product in the appropriate language. That way you
just have to provide a different string table to make it work in a
different language, instead of having different versions of
programming code for different languages (which you would then have to
keep in sync, which would inevitably fail).
Short form: some developer goofed and didn't get the right string into
the table.