diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2018-11-25 13:24:43 -0600 |
|---|---|---|
| committer | oldmud0 <oldmud0@users.noreply.github.com> | 2018-11-25 13:24:43 -0600 |
| commit | 1852f9208727dcb139be3d87ca8935a1d69c1f0f (patch) | |
| tree | 5714bd24f4b4b9a9c74f2f27a4ce9a49edbca25a /charselect.cpp | |
| parent | 5bf5a228335e4859b61ae1af8558778592395eeb (diff) | |
Overhaul theme
The only thing missing in this commit is a new background.
I am waiting for a higher-quality version of the AO logo.
Diffstat (limited to 'charselect.cpp')
| -rw-r--r-- | charselect.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/charselect.cpp b/charselect.cpp index ce37f85d..01b6ae73 100644 --- a/charselect.cpp +++ b/charselect.cpp @@ -18,25 +18,25 @@ void Courtroom::construct_char_select() ui_back_to_lobby = new AOButton(ui_char_select_background, ao_app); ui_char_password = new QLineEdit(ui_char_select_background); - ui_char_password->setPlaceholderText("Password"); + ui_char_password->setPlaceholderText(tr("Password")); ui_char_select_left = new AOButton(ui_char_select_background, ao_app); ui_char_select_right = new AOButton(ui_char_select_background, ao_app); ui_spectator = new AOButton(ui_char_select_background, ao_app); - ui_spectator->setText("Spectator"); + ui_spectator->setText(tr("Spectator")); ui_char_search = new QLineEdit(ui_char_select_background); - ui_char_search->setPlaceholderText("Search"); + ui_char_search->setPlaceholderText(tr("Search")); ui_char_search->setFocus(); set_size_and_pos(ui_char_search, "char_search"); ui_char_passworded = new QCheckBox(ui_char_select_background); - ui_char_passworded->setText("Passworded"); + ui_char_passworded->setText(tr("Passworded")); set_size_and_pos(ui_char_passworded, "char_passworded"); ui_char_taken = new QCheckBox(ui_char_select_background); - ui_char_taken->setText("Taken"); + ui_char_taken->setText(tr("Taken")); set_size_and_pos(ui_char_taken, "char_taken"); ui_char_taken->setChecked(true); |
