You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, strings which are sent by the bot to users are typically defined inline in the code.
Moving these out of the source files and into their own data file allows us to standardise grammar, spelling, emoji use, etc etc. much more conveniently.
Strings which require data inserting into them should comply with python's string format spec and should use keyword arguments to show what should be passed to the .format() method.
Strings within the file should be grouped by global/cog scoping to allow more concise access.
The relevant section from the file should be loaded and cached upon loading of each cog.
Location and format of file to be decided at a later date.
The text was updated successfully, but these errors were encountered:
At the moment, strings which are sent by the bot to users are typically defined inline in the code.
Moving these out of the source files and into their own data file allows us to standardise grammar, spelling, emoji use, etc etc. much more conveniently.
Strings which require data inserting into them should comply with python's string format spec and should use keyword arguments to show what should be passed to the
.format()
method.Strings within the file should be grouped by global/cog scoping to allow more concise access.
The relevant section from the file should be loaded and cached upon loading of each cog.
Location and format of file to be decided at a later date.
The text was updated successfully, but these errors were encountered: