Modify message "Receiver has reached his mail quota. Your message will NOT be sent." to "Receiver has reached their mail quota. Your message will NOT be sent." #428

This commit is contained in:
relesgoe 2020-12-15 20:58:06 -08:00
parent ef1539f18b
commit 207c707ebd
2 changed files with 2 additions and 2 deletions

View file

@ -2013,7 +2013,7 @@
<translate></translate>
</item>
<item id="433" file="mail.cpp" function="mail_func_send">
<original>Receiver has reached his mail quota. Your message will NOT be sent.</original>
<original>Receiver has reached their mail quota. Your message will NOT be sent.</original>
<translate></translate>
</item>
<item id="434" file="mail.cpp" function="mail_func_send">

View file

@ -335,7 +335,7 @@ namespace pvpgn
Mailbox mbox(account_get_uid(recv));
if (get_mail_quota(recv) <= mbox.size()) {
message_send_text(c, message_type_error, c, localize(c, "Receiver has reached his mail quota. Your message will NOT be sent."));
message_send_text(c, message_type_error, c, localize(c, "Receiver has reached their mail quota. Your message will NOT be sent."));
return;
}