summaryrefslogtreecommitdiff
path: root/poezio/core
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-03-19 19:16:41 +0100
committerMaxime “pep” Buquet <pep@bouah.net>2019-03-19 18:25:46 +0000
commit5eb3e36b615f5e8a41e62fe78f63b14c010af476 (patch)
tree6cc98d20d9629a25426d2f0712d2f54fab3932df /poezio/core
parenta6e66cd50ef64c0f2bf6fe154edcc652a66e9a46 (diff)
downloadpoezio-5eb3e36b615f5e8a41e62fe78f63b14c010af476.tar.gz
poezio-5eb3e36b615f5e8a41e62fe78f63b14c010af476.tar.bz2
poezio-5eb3e36b615f5e8a41e62fe78f63b14c010af476.tar.xz
poezio-5eb3e36b615f5e8a41e62fe78f63b14c010af476.zip
Change 'his/her' to 'their'
It's shorter and reads better. Also removes 'its', which might be intented to refer to bots or the like.
Diffstat (limited to 'poezio/core')
-rw-r--r--poezio/core/commands.py2
-rw-r--r--poezio/core/core.py2
-rw-r--r--poezio/core/handlers.py6
3 files changed, 5 insertions, 5 deletions
diff --git a/poezio/core/commands.py b/poezio/core/commands.py
index c9605987..b3ebb811 100644
--- a/poezio/core/commands.py
+++ b/poezio/core/commands.py
@@ -687,7 +687,7 @@ class CommandCore:
else:
msg = 'The last activity of %s was %s ago%s' % (
from_, common.parse_secs_to_str(seconds),
- (' and his/her last status was %s' % status)
+ (' and their last status was %s' % status)
if status else '')
self.core.information(msg, 'Info')
diff --git a/poezio/core/core.py b/poezio/core/core.py
index 9651a73b..79b5d56f 100644
--- a/poezio/core/core.py
+++ b/poezio/core/core.py
@@ -1220,7 +1220,7 @@ class Core:
def rename_private_tabs(self, room_name: str, old_nick: str, user: User) -> None:
"""
- Call this method when someone changes his/her nick in a MUC,
+ Call this method when someone changes their nick in a MUC,
this updates the name of all the opened private conversations
with him/her
"""
diff --git a/poezio/core/handlers.py b/poezio/core/handlers.py
index 9cdfb59a..95fa6a48 100644
--- a/poezio/core/handlers.py
+++ b/poezio/core/handlers.py
@@ -561,7 +561,7 @@ class HandlerCore:
'Mood')
else:
self.core.information(
- contact.bare_jid + ' stopped having his/her mood.', 'Mood')
+ contact.bare_jid + ' stopped having their mood.', 'Mood')
def on_activity_event(self, message):
"""
@@ -606,7 +606,7 @@ class HandlerCore:
contact.activity, 'Activity')
else:
self.core.information(
- contact.bare_jid + ' stopped doing his/her activity.',
+ contact.bare_jid + ' stopped doing their activity.',
'Activity')
def on_tune_event(self, message):
@@ -1015,7 +1015,7 @@ class HandlerCore:
contact.pending_out = False
else:
self.core.information(
- '%s does not want you to receive his/her/its status anymore.' %
+ '%s does not want you to receive their/its status anymore.' %
jid, 'Roster')
self.core.tabs.first().state = 'highlight'
if isinstance(self.core.tabs.current_tab, tabs.RosterInfoTab):