diff options
author | Muhammad Rifqi Priyo Susanto <muhammadrifqipriyosusanto@gmail.com> | 2018-01-13 22:32:05 +0700 |
---|---|---|
committer | paramat <mat.gregory@virginmedia.com> | 2018-01-13 19:30:34 +0000 |
commit | 670f8afd1896c2a88d6aec926a82d561a8478412 (patch) | |
tree | 66210719cdb3bc7ef59c4f7f7a4830de4010351e | |
parent | 8349a3db1072e3a805482e91c442f9a158ea60b1 (diff) | |
download | minetest-670f8afd1896c2a88d6aec926a82d561a8478412.tar.gz minetest-670f8afd1896c2a88d6aec926a82d561a8478412.tar.bz2 minetest-670f8afd1896c2a88d6aec926a82d561a8478412.zip |
Registration confirmation dialog: Fix grammar
Fixes commit 792752997c5ae2aaa4f54d0a2e2af2a96d7d1e9f.
-rw-r--r-- | src/gui/guiConfirmRegistration.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gui/guiConfirmRegistration.cpp b/src/gui/guiConfirmRegistration.cpp index f45340f33..0b939dbeb 100644 --- a/src/gui/guiConfirmRegistration.cpp +++ b/src/gui/guiConfirmRegistration.cpp @@ -88,12 +88,13 @@ void GUIConfirmRegistration::regenerateGui(v2u32 screensize) core::rect<s32> rect(0, 0, 540, 90); rect += topleft_client + v2s32(30, ypos); static const std::string info_text_template = strgettext( - "You are about to join this server (%1$s) with the " - "name \"%2$s\" the first time. If you proceed, a " + "You are about to join the server at %1$s with the " + "name \"%2$s\" for the first time. If you proceed, a " "new account using your credentials will be created " "on this server.\n" - "Please type your password once again to confirm " - "account creation or cancel to abort."); + "Please retype your password and click Register and " + "Join to confirm account creation or click Cancel to " + "abort."); char info_text_buf[1024]; snprintf(info_text_buf, sizeof(info_text_buf), info_text_template.c_str(), address.c_str(), m_playername.c_str()); |