sub DeletePage
- print "Delete-Page: page $page is invalid, error is: $status<br>\n";change to, (for example):
+ print Ts('Delete-Page: page %s is invalid', $page).". ".Ts('error is: %s', $status).". "."<br>\n";sub RenameTextLinks
- print "Rename-Text: old page $old is invalid, error is: $status<br>\n"; + print Ts('Rename-Text: old page %s is invalid', $old).". ".Ts('error is: %s', $status).". "."<br>\n"; - print "Rename-Text: new page $new is invalid, error is: $status<br>\n"; + print Ts('Rename-Text: new page %s is invalid', $new).". ".Ts('error is: %s', $status).". "."<br>\n";sub RenamePage
- print "Rename: old page $old is invalid, error is: $status<br>\n"; + print Ts('Rename: old page %s is invalid', $old).". ".Ts('error is: %s', $status).". "."<br>\n"; - print "Rename-Text: new page $new is invalid, error is: $status<br>\n"; + print Ts('Rename-Text: new page %s is invalid', $new).". ".Ts('error is: %s', $status) . ". "."<br>\n";
I used Tss() if there are more than one parameter instead of several calls to Ts(). Fixed some more similar stuff. Thanks for reporting this. --MarkusLude