Skip to content

Commit

Permalink
Make string translatable, update language used
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemhall committed May 14, 2020
1 parent 5856573 commit a5d82ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loginwindow.cpp
Expand Up @@ -172,7 +172,7 @@ void LoginWindow::attemptLogin() {
if ( termsOfService.length() > 4 ) {
QMessageBox msgBox;
msgBox.setText("Do you accept the terms of service?");
msgBox.setInformativeText("You must accept the terms of service to use this kiosk.");
msgBox.setInformativeText(tr("Terms of Service"));
msgBox.setDetailedText(termsOfService);
msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
msgBox.setDefaultButton(QMessageBox::No);
Expand Down

0 comments on commit a5d82ea

Please sign in to comment.