summaryrefslogtreecommitdiff
path: root/src/gui/windows/charselectdialog.cpp
diff options
context:
space:
mode:
authorFedja Beader <fedja@protonmail.ch>2024-03-11 19:23:44 +0000
committerFedja Beader <fedja@protonmail.ch>2024-03-11 19:23:44 +0000
commit7dc00dfc9ed1b5feb1e3200ac20059592bd1bec4 (patch)
treebdfac680d1d55faa081ba5044266a42d1701127d /src/gui/windows/charselectdialog.cpp
parentaf3eb6ba1c1c5a4a26592d53c614013225efd2d6 (diff)
downloadManaVerse-7dc00dfc9ed1b5feb1e3200ac20059592bd1bec4.tar.gz
ManaVerse-7dc00dfc9ed1b5feb1e3200ac20059592bd1bec4.tar.bz2
ManaVerse-7dc00dfc9ed1b5feb1e3200ac20059592bd1bec4.tar.xz
ManaVerse-7dc00dfc9ed1b5feb1e3200ac20059592bd1bec4.zip
Remove last-login(time) from char select window.
No server in use still sends that field. **** Approved-by: Jesusalva Jesusalva <jesusalva@themanaworld.org>
Diffstat (limited to 'src/gui/windows/charselectdialog.cpp')
-rw-r--r--src/gui/windows/charselectdialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/windows/charselectdialog.cpp b/src/gui/windows/charselectdialog.cpp
index 39112dfd2..77e224f7a 100644
--- a/src/gui/windows/charselectdialog.cpp
+++ b/src/gui/windows/charselectdialog.cpp
@@ -62,9 +62,9 @@
static const int SLOTS_PER_ROW = 5;
CharSelectDialog::CharSelectDialog(LoginData &data) :
- // TRANSLATORS: char select dialog name
- Window(strprintf(_("Account %s (last login time %s)"),
- data.username.c_str(), data.lastLogin.c_str()),
+ Window(
+ // TRANSLATORS: char select dialog name
+ strprintf(_("Account %s"), data.username.c_str()),
Modal_false,
nullptr,
"char.xml"),