mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Documentation: Add HIG document about writing UI text
This first cut only deals with capitalization.
This commit is contained in:
parent
508fb7e1e9
commit
66c04b98f1
Notes:
sideshowbarker
2024-07-16 23:31:14 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/66c04b98f1
1 changed files with 54 additions and 0 deletions
54
Documentation/HumanInterfaceGuidelines/Text.md
Normal file
54
Documentation/HumanInterfaceGuidelines/Text.md
Normal file
|
@ -0,0 +1,54 @@
|
|||
# Guidelines for user interface text in SerenityOS
|
||||
|
||||
## Capitalization
|
||||
|
||||
SerenityOS employs two capitalization styles:
|
||||
|
||||
- Book title capitalization
|
||||
- Sentence-style capitalization
|
||||
|
||||
### Book title capitalization
|
||||
|
||||
In this style, we capitalize the first letter of the first and last word,
|
||||
as well as all words in between, *except* articles (a, an, the);
|
||||
the seven coordinating conjunctions (for, and, nor, but, or, yet, so);
|
||||
and prepositions with up to four letters (at, by, for, with, into, ...)
|
||||
|
||||
#### Examples:
|
||||
- Create New Layer
|
||||
- Copy URL
|
||||
- Move to Front
|
||||
- Save and Exit
|
||||
- Sort by Name
|
||||
|
||||
#### Used for:
|
||||
|
||||
- Button text
|
||||
- Icon labels
|
||||
- Menu names
|
||||
- Menu items
|
||||
- Tab titles
|
||||
- Window titles
|
||||
- Tooltips
|
||||
|
||||
### Sentence-style capitalization
|
||||
|
||||
This style follows basic English sentence capitalization.
|
||||
We capitalize the first letter of the first word, along with the first letter
|
||||
of proper names, weekdays, etc.
|
||||
|
||||
#### Examples:
|
||||
- An error occurred
|
||||
- Use system defaults
|
||||
- Copy the selected text
|
||||
- Enable Linux compatibility hacks
|
||||
|
||||
#### Used for:
|
||||
|
||||
- Check box labels
|
||||
- Group box labels
|
||||
- List items
|
||||
- Messages (as in message boxes)
|
||||
- Radio button labels
|
||||
- Status bar text
|
||||
- Text box labels
|
Loading…
Reference in a new issue