Skip to content

Commit

Permalink
Use gender-neutral pronouns everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
qtlunya committed Jul 13, 2014
1 parent 9ac4ee8 commit 8e11dc8
Show file tree
Hide file tree
Showing 39 changed files with 90 additions and 90 deletions.
8 changes: 4 additions & 4 deletions ChangeLog
Expand Up @@ -1395,7 +1395,7 @@

* Changed User.setpassword not to require the <old password> to
be correct if the requesting user has the owner capability (and
isn't the owner himself).
isn't the owner themself).

* Added ircutils.strip{Bold,Reverse,Underline,Formatting}, which
will remove the specified formatting or all forms of formatting
Expand Down Expand Up @@ -1582,7 +1582,7 @@
having the bot always attempt to parse a message as a command.

* Added conf.replyWhenAddressedByNick, a configuration variable
for having the bot *not* respond when addressed by his nick.
for having the bot *not* respond when addressed by its nick.

* Added conf.replyWithNickPrefix, a configuration variable for
having the bot not prefix the nick of the person giving a command
Expand Down Expand Up @@ -1933,14 +1933,14 @@
* Fixed imports in the DCC plugin.

* Fixed a bug where the bot would not reply to nick-addressed
messages on a channel if his nick wasn't entirely lowercased.
messages on a channel if its nick wasn't entirely lowercased.

* Fixed the Relay plugin to relay topic changes; an oversight not
caught earlier because supybot has for a long time managed our
topics.

* Fixed a bug in the Services plugin where the bot would ghost
himself if his nick didn't match in case the nick given.
itself if its nick didn't match in case the nick given.

* Added the ability for PrivmsgCommandAndRegexp to have regexps
that are called *after* callbacks.addressed has been called on the
Expand Down
2 changes: 1 addition & 1 deletion docs/ADVANCED_PLUGIN_CONFIG.rst
Expand Up @@ -80,7 +80,7 @@ realize what the code is actually doing. Here it is:

def configure(advanced):
# This will be called by supybot to configure this module. advanced is
# a bool that specifies whether the user identified himself as an advanced
# a bool that specifies whether the user identified themself as an advanced
# user or not. You should effect your configuration by manipulating the
# registry as appropriate.
from supybot.questions import expect, anything, something, yn
Expand Down
10 changes: 5 additions & 5 deletions docs/CAPABILITIES.rst
Expand Up @@ -67,10 +67,10 @@ an individual channel!
So when a user 'foo' sends a command 'bar' to the bot on channel '#baz', first
the bot checks to see if the user has the anticapability for the command by
itself, '-bar'. If so, it errors right then and there, telling the user that
he lacks the 'bar' capability. If the user doesn't have that anticapability,
they lack the 'bar' capability. If the user doesn't have that anticapability,
then the bot checks to see if the user issued the command over a channel, and
if so, checks to see if the user has the antichannelcapability for that
command, '#baz,-bar'. If so, again, he tells the user that he lacks the 'bar'
command, '#baz,-bar'. If so, again, it tells the user that they lack the 'bar'
capability. If neither of these anticapabilities are present, then the bot
just responds to the user like normal.

Expand All @@ -94,7 +94,7 @@ reserved for people with the next capability.
People who are to administer channels with the bot should have the
'#channel,op' capability--whatever channel they are to administrate, they
should have that channel capability for 'op'. For example, since I want
inkedmn to be an administrator in #supybot, I'll give him the '#supybot,op'
inkedmn to be an administrator in #supybot, I'll give them the '#supybot,op'
capability. This is in addition to his 'admin' capability, since the 'admin'
capability doesn't give the person having it control over channels.
'#channel,op' is used for such things as giving/receiving ops, kickbanning
Expand Down Expand Up @@ -131,6 +131,6 @@ From an user's perspective, capabilities remove a lot of the mystery and
esotery of bot control, in addition to giving a bot owner absolutely
finegrained control over what users are allowed to do with the bot.
Additionally, defaults can be set by the bot owner for both individual channels
and for the bot as a whole, letting an end-user set the policy he wants the bot
to follow for users that haven't yet registered in his user database. It's
and for the bot as a whole, letting an end-user set the policy they want the
bot to follow for users that haven't yet registered in its user database. It's
really a revolution!
2 changes: 1 addition & 1 deletion docs/CONFIGURATION.rst
Expand Up @@ -188,7 +188,7 @@ configuration and user/channel/ignore database configuration.

Just edit the interesting files and then give the bot the ``config
reload`` command and it'll work as expected. Do note, however, that
Supybot flushes his configuration files and database to disk every hour
Supybot flushes its configuration files and database to disk every hour
or so, and if this happens after you've edited your configuration files
but before you reload your changes, you could lose the changes you made.
To prevent this, set the `supybot.flush` value to 'Off' while editing
Expand Down
2 changes: 1 addition & 1 deletion docs/GETTING_STARTED.rst
Expand Up @@ -37,7 +37,7 @@ bot that you just made to join your channel? Try this in the channel::
supybot: list

Replacing 'supybot' with the actual name you picked for your bot, of course.
Your bot should reply with a list of the plugins he currently has loaded. At
Your bot should reply with a list of the plugins it currently has loaded. At
least `Admin`, `Channel`, `Config`, `Misc`, `Owner`, and `User` should be
there; if you used supybot-wizard to create your configuration file you may
have many more plugins loaded. The list command can also be used to list the
Expand Down
2 changes: 1 addition & 1 deletion docs/PLUGIN_TUTORIAL.rst
Expand Up @@ -186,7 +186,7 @@ configure plugins. The wizard allows the bot owner to choose something
different from the default plugin config values without having to do it through
the bot (which is still not difficult, but not as easy as this). Also, note
that the advanced argument allows you to differentiate whether or not the
person configuring this plugin considers himself an advanced Supybot user. Our
person configuring this plugin considers themself an advanced Supybot user. Our
plugin has no advanced features, so we won't be using it.

So, what exactly do we do in this configure function for our plugin? Well, for
Expand Down
8 changes: 4 additions & 4 deletions docs/STYLE.rst
Expand Up @@ -125,13 +125,13 @@ Style Guidelines
doing isn't important for the user to pay attention to. A user who likes
to keep up with things should enjoy watching our logging at the INFO
level; it shouldn't be too low-level, but it should give enough
information that it keeps him relatively interested at peak times.
information that it keeps them relatively interested at peak times.

* WARNING: Appropriate to tell a user when we're doing something that he
* WARNING: Appropriate to tell a user when we're doing something that they
really ought to pay attention to. Users should see WARNING and think,
"Hmm, should I tell the Supybot developers about this?" Later, he should
"Hmm, should I tell the Supybot developers about this?" Later, they should
decide not to, but it should give the user a moment to pause and think
about what's actually happening with his bot.
about what's actually happening with their bot.

* ERROR: Appropriate to tell a user when something has gone wrong.
Uncaught exceptions are ERRORs. Conditions that we absolutely want to
Expand Down
6 changes: 3 additions & 3 deletions locales/de.po
Expand Up @@ -424,7 +424,7 @@ msgstr ""
#: ../src/conf.py:417
msgid ""
"Determines whether the bot will unidentify\n"
" someone when that person changes his or her nick. Setting this to True\n"
" someone when that person changes their nick. Setting this to True\n"
" will cause the bot to track such changes. It defaults to False for a\n"
" little greater security."
msgstr ""
Expand Down Expand Up @@ -721,7 +721,7 @@ msgstr ""
msgid ""
"Determines how many commands users are\n"
" allowed per minute. If a user sends more than this many commands in any\n"
" 60 second period, he or she will be ignored for\n"
" 60 second period, they will be ignored for\n"
" supybot.abuse.flood.command.punishment seconds."
msgstr ""

Expand All @@ -741,7 +741,7 @@ msgstr ""
msgid ""
"Determines how many invalid commands users\n"
" are allowed per minute. If a user sends more than this many invalid\n"
" commands in any 60 second period, he or she will be ignored for\n"
" commands in any 60 second period, they will be ignored for\n"
" supybot.abuse.flood.command.invalid.punishment seconds. Typically, this\n"
" value is lower than supybot.abuse.flood.command.maximum, since it's far\n"
" less likely (and far more annoying) for users to flood with invalid\n"
Expand Down
2 changes: 1 addition & 1 deletion locales/fi.po
Expand Up @@ -691,7 +691,7 @@ msgstr ""
#: src/conf.py:489
msgid ""
"Determines whether the bot will unidentify\n"
" someone when that person changes his or her nick. Setting this to True\n"
" someone when that person changes their nick. Setting this to True\n"
" will cause the bot to track such changes. It defaults to False for a\n"
" little greater security."
msgstr ""
Expand Down
8 changes: 4 additions & 4 deletions locales/fr.po
Expand Up @@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Limnoria\n"
"POT-Creation-Date: 2014-01-23 10:36+CET\n"
"PO-Revision-Date: 2014-01-23 10:39+0100\n"
"PO-Revision-Date: 2014-07-05 00:13+0200\n"
"Last-Translator: \n"
"Language-Team: French <kde-i18n-doc@kde.org>\n"
"Language: fr\n"
Expand Down Expand Up @@ -640,7 +640,7 @@ msgstr ""
#: src/conf.py:472
msgid ""
"Determines whether the bot will unidentify\n"
" someone when that person changes his or her nick. Setting this to True\n"
" someone when that person changes their nick. Setting this to True\n"
" will cause the bot to track such changes. It defaults to False for a\n"
" little greater security."
msgstr ""
Expand Down Expand Up @@ -1086,7 +1086,7 @@ msgid ""
"Determines how many commands users are\n"
" allowed per minute. If a user sends more than this many commands in "
"any\n"
" 60 second period, he or she will be ignored for\n"
" 60 second period, they will be ignored for\n"
" supybot.abuse.flood.command.punishment seconds."
msgstr ""
"Détermine le nombre maximum de commandes qu'une personne peut envoyer en "
Expand All @@ -1112,7 +1112,7 @@ msgstr ""
msgid ""
"Determines how many invalid commands users\n"
" are allowed per minute. If a user sends more than this many invalid\n"
" commands in any 60 second period, he or she will be ignored for\n"
" commands in any 60 second period, they will be ignored for\n"
" supybot.abuse.flood.command.invalid.punishment seconds. Typically, "
"this\n"
" value is lower than supybot.abuse.flood.command.maximum, since it's far\n"
Expand Down
8 changes: 4 additions & 4 deletions locales/it.po
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Supybot-fr\n"
"POT-Creation-Date: 2011-02-26 09:49+CET\n"
"PO-Revision-Date: 2012-06-09 21:49+0200\n"
"PO-Revision-Date: 2014-07-05 00:13+0200\n"
"Last-Translator: skizzhg <skizzhg@gmx.com>\n"
"Language-Team: Italian <skizzhg@gmx.com>\n"
"Language: it\n"
Expand Down Expand Up @@ -494,7 +494,7 @@ msgstr ""
#: src/conf.py:437
msgid ""
"Determines whether the bot will unidentify\n"
" someone when that person changes his or her nick. Setting this to True\n"
" someone when that person changes their nick. Setting this to True\n"
" will cause the bot to track such changes. It defaults to False for a\n"
" little greater security."
msgstr ""
Expand Down Expand Up @@ -876,7 +876,7 @@ msgstr "Determina se il bot si difenderà dall'uso di troppi comandi alla volta
msgid ""
"Determines how many commands users are\n"
" allowed per minute. If a user sends more than this many commands in any\n"
" 60 second period, he or she will be ignored for\n"
" 60 second period, they will be ignored for\n"
" supybot.abuse.flood.command.punishment seconds."
msgstr ""
"Determina quanti comandi al minuto permettere agli utenti. Se qualcuno supera\n"
Expand All @@ -899,7 +899,7 @@ msgstr "Determina se il bot si difenderà dall'uso di troppi comandi non validi
msgid ""
"Determines how many invalid commands users\n"
" are allowed per minute. If a user sends more than this many invalid\n"
" commands in any 60 second period, he or she will be ignored for\n"
" commands in any 60 second period, they will be ignored for\n"
" supybot.abuse.flood.command.invalid.punishment seconds. Typically, this\n"
" value is lower than supybot.abuse.flood.command.maximum, since it's far\n"
" less likely (and far more annoying) for users to flood with invalid\n"
Expand Down
2 changes: 1 addition & 1 deletion locales/messages.pot
Expand Up @@ -502,7 +502,7 @@ msgstr ""
#: src/conf.py:489
msgid ""
"Determines whether the bot will unidentify\n"
" someone when that person changes his or her nick. Setting this to True\n"
" someone when that person changes their nick. Setting this to True\n"
" will cause the bot to track such changes. It defaults to False for a\n"
" little greater security."
msgstr ""
Expand Down
4 changes: 2 additions & 2 deletions plugins/Herald/config.py
Expand Up @@ -54,8 +54,8 @@ def configure(advanced):
between heralds.""")))
conf.registerChannelValue(Herald.throttle, 'afterPart',
registry.NonNegativeInteger(0, _("""Determines the minimum number of seconds
after parting that the bot will not herald the person when he or she
rejoins.""")))
after parting that the bot will not herald the person when they
rejoin.""")))
conf.registerChannelValue(Herald.throttle, 'afterSplit',
registry.NonNegativeInteger(60, _("""Determines the minimum number of seconds
after a netsplit that the bot will not herald the users that split.""")))
Expand Down
6 changes: 3 additions & 3 deletions plugins/Herald/locales/fi.po
Expand Up @@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2011-02-26 09:49+CET\n"
"PO-Revision-Date: 2011-06-27 12:56+0200\n"
"PO-Revision-Date: 2014-07-05 00:07+0200\n"
"Last-Translator: Mikaela Suomalainen <mikaela.suomalainen@outlook.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
Expand Down Expand Up @@ -43,8 +43,8 @@ msgstr ""
#: config.py:56
msgid ""
"Determines the minimum number of seconds\n"
" after parting that the bot will not herald the person when he or she\n"
" rejoins."
" after parting that the bot will not herald the person when they\n"
" rejoin."
msgstr ""
"Määrittää minimi määrän sekunteja, jolloin\n"
" henkilön poistumisen jälkeen botti ei toimi airueena, kun hän\n"
Expand Down
6 changes: 3 additions & 3 deletions plugins/Herald/locales/fr.po
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Limnoria\n"
"POT-Creation-Date: 2010-10-17 15:21+CEST\n"
"PO-Revision-Date: \n"
"PO-Revision-Date: 2014-07-05 00:11+0200\n"
"Last-Translator: Valentin Lorentz <progval@gmail.com>\n"
"Language-Team: Limnoria <progval@gmail.com>\n"
"Language: \n"
Expand Down Expand Up @@ -35,8 +35,8 @@ msgstr "Détermine le nombre minimum de secondes entre deux annonces."
#: config.py:56
msgid ""
"Determines the minimum number of seconds\n"
" after parting that the bot will not herald the person when he or she\n"
" rejoins."
" after parting that the bot will not herald the person when they\n"
" rejoin."
msgstr "Détermine le nombre minimum de secondes après qu'un utilisateur soit parti pour que le bot puisse l'annoncer à nouveau quand il revient."

#: config.py:60
Expand Down
6 changes: 3 additions & 3 deletions plugins/Herald/locales/it.po
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Limnoria\n"
"POT-Creation-Date: 2011-02-26 09:49+CET\n"
"PO-Revision-Date: 2012-07-24 18:47+0200\n"
"PO-Revision-Date: 2014-07-05 00:06+0200\n"
"Last-Translator: skizzhg <skizzhg@gmx.com>\n"
"Language-Team: Italian <skizzhg@gmx.com>\n"
"Language: it\n"
Expand Down Expand Up @@ -38,8 +38,8 @@ msgstr ""
#: config.py:56
msgid ""
"Determines the minimum number of seconds\n"
" after parting that the bot will not herald the person when he or she\n"
" rejoins."
" after parting that the bot will not herald the person when they\n"
" rejoin."
msgstr ""
"Determina il numero minimo di secondi dall'uscita di un utente in cui\n"
" il bot non invierà l'annuncio al suo rientro."
Expand Down
4 changes: 2 additions & 2 deletions plugins/Herald/messages.pot
Expand Up @@ -37,8 +37,8 @@ msgstr ""
#: config.py:56
msgid ""
"Determines the minimum number of seconds\n"
" after parting that the bot will not herald the person when he or she\n"
" rejoins."
" after parting that the bot will not herald the person when they\n"
" rejoin."
msgstr ""

#: config.py:60
Expand Down
10 changes: 5 additions & 5 deletions plugins/Relay/locales/fi.po
Expand Up @@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2014-05-11 16:57+EEST\n"
"PO-Revision-Date: 2014-05-11 18:33+0200\n"
"PO-Revision-Date: 2014-07-05 00:09+0200\n"
"Last-Translator: Mikaela Suomalainen <mikaela.suomalainen@outlook.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
Expand All @@ -20,7 +20,7 @@ msgid "Would you like to relay between any channels?"
msgstr "Haluasitko botin välittävän joidenkin kanavien välillä?"

#: config.py:40
msgid "What channels? Separated them by spaces."
msgid "What channels? Separate them by spaces."
msgstr "Minkä kanavien? Erota ne välilyönnillä."

#: config.py:42
Expand Down Expand Up @@ -119,10 +119,10 @@ msgid ""
"\n"
" Starts relaying between the channel <channel> on all networks. If "
"on a\n"
" network the bot isn't in <channel>, he'll join. This commands is\n"
" required even if the bot is in the channel on both networks; he "
" network the bot isn't in <channel>, it'll join. This commands is\n"
" required even if the bot is in the channel on both networks; it "
"won't\n"
" relay between those channels unless he's told to join both\n"
" relay between those channels unless it's told to join both\n"
" channels. If <channel> is not given, starts relaying on the "
"channel\n"
" the message was sent in.\n"
Expand Down
8 changes: 4 additions & 4 deletions plugins/Relay/locales/fr.po
Expand Up @@ -16,7 +16,7 @@ msgid "Would you like to relay between any channels?"
msgstr "Voulez-vous relayer entre des canaux ?"

#: config.py:40
msgid "What channels? Separated them by spaces."
msgid "What channels? Separate them by spaces."
msgstr "Quels canaux ? Séparez-les par des espaces."

#: config.py:42
Expand Down Expand Up @@ -107,10 +107,10 @@ msgid ""
"\n"
" Starts relaying between the channel <channel> on all networks. If "
"on a\n"
" network the bot isn't in <channel>, he'll join. This commands is\n"
" required even if the bot is in the channel on both networks; he "
" network the bot isn't in <channel>, it'll join. This commands is\n"
" required even if the bot is in the channel on both networks; it "
"won't\n"
" relay between those channels unless he's told to join both\n"
" relay between those channels unless it's told to join both\n"
" channels. If <channel> is not given, starts relaying on the "
"channel\n"
" the message was sent in.\n"
Expand Down
8 changes: 4 additions & 4 deletions plugins/Relay/locales/it.po
Expand Up @@ -16,7 +16,7 @@ msgid "Would you like to relay between any channels?"
msgstr "Vuoi trasmettere messaggi tra canali diversi?"

#: config.py:40
msgid "What channels? Separated them by spaces."
msgid "What channels? Separate them by spaces."
msgstr "Quali canali? Separali con spazi."

#: config.py:42
Expand Down Expand Up @@ -109,10 +109,10 @@ msgid ""
"\n"
" Starts relaying between the channel <channel> on all networks. If "
"on a\n"
" network the bot isn't in <channel>, he'll join. This commands is\n"
" required even if the bot is in the channel on both networks; he "
" network the bot isn't in <channel>, it'll join. This commands is\n"
" required even if the bot is in the channel on both networks; it "
"won't\n"
" relay between those channels unless he's told to join both\n"
" relay between those channels unless it's told to join both\n"
" channels. If <channel> is not given, starts relaying on the "
"channel\n"
" the message was sent in.\n"
Expand Down

0 comments on commit 8e11dc8

Please sign in to comment.