Skip to content

Commit

Permalink
Settings: Clarify settings text (#1042)
Browse files Browse the repository at this point in the history
Fixes #998.
  • Loading branch information
obenland authored Dec 5, 2024
1 parent 6c18433 commit 930db56
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Improved

* Added screen reader text to the "Follow Me" block for improved accessibility
* Clarified settings page text around which users get Activitypub profiles

### Fixed

Expand Down
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ For reasons of data protection, it is not possible to see the followers of other
= Unreleased =

* Added: Screen reader text for the "Follow Me" block for improved accessibility
* Improved: Clarified settings page text around which users get Activitypub profiles
* Fixed: Prevent hex color codes in HTML attributes from being added as post tags
* Fixed: A typo in the custom post content settings

Expand Down
2 changes: 1 addition & 1 deletion templates/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</label>
</p>
<p class="description">
<?php echo \wp_kses( \__( 'Every author on this blog (with the <code>activitypub</code> capability) gets their own ActivityPub profile.', 'activitypub' ), array( 'code' => array() ) ); ?>
<?php echo \wp_kses( \__( 'Every user with an account on this blog and the <code>activitypub</code> capability enabled gets their own ActivityPub profile.', 'activitypub' ), array( 'code' => array() ) ); ?>
<?php // translators: %s is a URL. ?>
<strong><?php echo \wp_kses( sprintf( \__( 'You can add/remove the capability in the <a href="%s">user settings.</a>', 'activitypub' ), admin_url( '/users.php' ) ), array( 'a' => array( 'href' => array() ) ) ); ?></strong>
<?php echo \wp_kses( \__( 'Select all the users you want to update, choose the method from the drop-down list and click on the "Apply" button.', 'activitypub' ), array( 'code' => array() ) ); ?>
Expand Down

0 comments on commit 930db56

Please sign in to comment.