From 8af3a1abcd6bf896da5a8a2b2d7adc00ff07aef9 Mon Sep 17 00:00:00 2001 From: Faalagorn Date: Fri, 15 Apr 2022 17:13:05 +0200 Subject: [PATCH] Update manual of style with more rules (#56754) * Update manual of style with more rules * Mention descriptions * Update doc/MANUAL_OF_STYLE.md Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> * Update doc/MANUAL_OF_STYLE.md Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- doc/MANUAL_OF_STYLE.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/doc/MANUAL_OF_STYLE.md b/doc/MANUAL_OF_STYLE.md index 05c026e7f2001..d14ec1b6e54c0 100644 --- a/doc/MANUAL_OF_STYLE.md +++ b/doc/MANUAL_OF_STYLE.md @@ -1,13 +1,18 @@ -Follow these conventions when adding or editing in-game text: +Follow these conventions when adding or editing in-game text. Theses conventions apply to the default US English language, translations should follow guidelines from [/lang/notes/](../lang/notes) if there are any for the language in question, which can be different that the ones here. 1. Use US English spelling. 2. Use double sentence spacing after periods. This means that a period that ends a sentence should be followed by two spaces. If the sentence is the last in the block of text, there should be no spaces following it. 1. Translations may not always use two spaces, so make sure to use a translation wrapper, `_(" ")`, when appending spaces in code. 3. Use second person point of view (eg. "you"). -4. The names of traits, martial arts, and Compact Bionics Modules (CBMs) should be in title case. This means that each word should be capitalized unless it is an article, preposition, or conjunction. +4. The names of stats, traits/mutations, scenarios, professions, backgrounds, proficiencies, martial arts, and Compact Bionics Modules (CBMs) should be in title case. This means that each word should be capitalized unless it is an article, preposition, or conjunction. 5. Items and entities with proper noun names should also be in title case. + 1. This includes: Cataclysm, Discontinuity (an event in Aftershock), Exodii, Marloss, Mycus, Autodoc, Kevlar and Nomex. + 2. Unique currencies, such as "merch", should be written lowercase unless the name includes a proper noun, such as in "Hubcoin". 6. All other item and entity names should be in all lower-case letters. 7. Use the serial comma (Oxford comma). 8. Use ellipsis character (…) instead of three dots (...). Replace instances of three periods with the dedicated Unicode character for ellipsis, namely U+2026. As to the specifics of using it: -- No spaces before it and one space after it. -- This character does not end a sentence, use ellipsis followed by a period `….` when ending a sentence with ellipsis. + 1. No spaces before it and one space after it. + 2. This character does not end a sentence, use ellipsis followed by a period `….` when ending a sentence with ellipsis. +9. Brand names do not need to be avoided as we are covered under Fair Use. However, as CDDA-Earth is a parallel universe, nonexistent brands are also allowed. +10. Don't avoid using Unicode letters, which includes proper names and alphabets when needed, or symbols as ® or ™. +11. Always make sure that all descriptions follow a sentence case, i.e. they start with a big letter and end with a full stop, even if they are just for testing purposes (they can still appear by mistake and can be seen in debug menus).