How can I find all the strings in the Delphi source code using a search for gexperts grep that contains a string literal instead of a resource string, except for strings marked as 'do not translate'?
Example:
this line should match
ShowMessage('Fatal error! Save all data and restart the application');
this line should not match
FieldByName('End Date').Clear; // do not translate
(In particular, the question is about GExpert, since it has a limited implementation of grep afaik)
source
share