summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-07-21 00:19:14 +0300
committerAndrei Karas <akaras@inbox.ru>2017-07-21 00:19:14 +0300
commit0a7669e4a1e91754c2194d2eb241edc589aa2c00 (patch)
tree549d2680f95f8458deb86e1d4ad5951df55faf1e
parent498f101d312638ec8007ea22cd35a0f84c34ef21 (diff)
downloadplus-0a7669e4a1e91754c2194d2eb241edc589aa2c00.tar.gz
plus-0a7669e4a1e91754c2194d2eb241edc589aa2c00.tar.bz2
plus-0a7669e4a1e91754c2194d2eb241edc589aa2c00.tar.xz
plus-0a7669e4a1e91754c2194d2eb241edc589aa2c00.zip
Fix too long lines in popupmenu.cpp
-rw-r--r--src/gui/popups/popupmenu.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/gui/popups/popupmenu.cpp b/src/gui/popups/popupmenu.cpp
index 3abec043c..27ef1887c 100644
--- a/src/gui/popups/popupmenu.cpp
+++ b/src/gui/popups/popupmenu.cpp
@@ -3052,15 +3052,17 @@ void PopupMenu::showPlayerGMCommands(const std::string &name)
}
if (isAllowCommand(ServerCommandType::slaveclone))
{
- // TRANSLATORS: popup menu item
- // TRANSLATORS: spawn slave player clone
- mBrowserBox->addRow("/spawnslaveclone 'NAME'", _("Spawn slave clone"));
+ mBrowserBox->addRow("/spawnslaveclone 'NAME'",
+ // TRANSLATORS: popup menu item
+ // TRANSLATORS: spawn slave player clone
+ _("Spawn slave clone"));
}
if (isAllowCommand(ServerCommandType::evilclone))
{
- // TRANSLATORS: popup menu item
- // TRANSLATORS: spawn evil player clone
- mBrowserBox->addRow("/spawnevilclone 'NAME'", _("Spawn evil clone"));
+ mBrowserBox->addRow("/spawnevilclone 'NAME'",
+ // TRANSLATORS: popup menu item
+ // TRANSLATORS: spawn evil player clone
+ _("Spawn evil clone"));
}
mBrowserBox->addSeparator("##3---");
if (isAllowOtherCommand(ServerCommandType::breakguild))