Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Title Case consistently #1432

Open
wants to merge 2 commits into
base: trunk
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

* Outbox items only get sent to followers when there are any.
* Improved title case for Nodeinfo settings.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
* Improved title case for Nodeinfo settings.
* Improved title case for NodeInfo settings.


### Fixed

Expand Down
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ For reasons of data protection, it is not possible to see the followers of other
* Fixed: When viewing Reply Contexts, we'll now attribute the post to the blog user when the post author is disabled.
* Fixed: Properly re-added support for `Update` and `Delete` `Announce`ments.
* Fixed: Show "full content" preview even if post is in still in draft mode.
* Changed: Improved title case for Nodeinfo settings
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
* Changed: Improved title case for Nodeinfo settings
* Changed: Improved title case for NodeInfo settings


= 5.4.1 =

Expand Down
2 changes: 1 addition & 1 deletion templates/welcome.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
<?php if ( ! \function_exists( 'nodeinfo_init' ) ) : ?>
<h4 class="activitypub-settings-accordion-heading">
<button aria-expanded="false" class="activitypub-settings-accordion-trigger" aria-controls="activitypub-settings-accordion-block-activitypub-nodeinfo-plugin" type="button">
<span class="title"><?php \esc_html_e( 'Provide Enhanced Information about Your Blog', 'activitypub' ); ?></span>
<span class="title"><?php \esc_html_e( 'Provide Enhanced Information About Your Blog', 'activitypub' ); ?></span>
<span class="icon"></span>
</button>
</h4>
Expand Down
Loading