Categories
Keeping copyright notices intact across translations
Requires Crowdin account
var sourceCopyrightExists = /\(c\)|©|Copyright/i.test(crowdin.source);
var translationCopyrightExists = /\(c\)|©|Copyright/i.test(crowdin.translation);
var result = {
success: sourceCopyrightExists === translationCopyrightExists
};
if (!result.success) {
result.message = 'Copyright notice in the source and translation do not match';
}
return result;
All product and company names are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them.