Skip to content

Commit

Permalink
Surround usernames with quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
fpoirotte committed Dec 17, 2016
1 parent 052af18 commit fc1a0eb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions data/i18n/Erebot.pot
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Erebot 1.0.x-dev\n"
"Report-Msgid-Bugs-To: i18n@erebot.net\n"
"POT-Creation-Date: 2016-12-17 13:35+0100\n"
"POT-Creation-Date: 2016-12-17 19:13+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down Expand Up @@ -152,11 +152,12 @@ msgstr ""
#
# File: src/CLI.php, line: 476
msgid ""
"Only the root user may change group identity! Your current UID is %(uid)d"
"Only the \"root\" user may change group identity! Your current UID is %(uid)d"
msgstr ""
#
# File: src/CLI.php, line: 536
msgid "Only the root user may change user identity! Your current UID is %(uid)d"
msgid ""
"Only the \"root\" user may change user identity! Your current UID is %(uid)d"
msgstr ""
#
# File: src/IrcConnection.php, line: 661
Expand Down
4 changes: 2 additions & 2 deletions src/CLI.php
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ public static function run()
} elseif (posix_getuid() !== 0) {
$logger->warning(
$translator->gettext(
'Only the root user may change group identity! '.
'Only the "root" user may change group identity! '.
'Your current UID is %(uid)d'
),
array('uid' => posix_getuid())
Expand Down Expand Up @@ -533,7 +533,7 @@ public static function run()
} elseif (posix_getuid() !== 0) {
$logger->warning(
$translator->gettext(
'Only the root user may change user identity! '.
'Only the "root" user may change user identity! '.
'Your current UID is %(uid)d'
),
array('uid' => posix_getuid())
Expand Down

0 comments on commit fc1a0eb

Please sign in to comment.