diff --git a/src/wp-to-twitter-manager.php b/src/wp-to-twitter-manager.php index 82a7e87..df047f7 100644 --- a/src/wp-to-twitter-manager.php +++ b/src/wp-to-twitter-manager.php @@ -252,7 +252,7 @@ function wpt_update_settings() {

" . __( 'XPoster is in staging mode. Tweets will be reported as if successfully sent to X.com but will not be sent.', 'wp-to-twitter' ) . '

'; + echo "

" . __( 'XPoster is in staging mode. Status updates will be reported as if successfully sent, but will not be posted.', 'wp-to-twitter' ) . '

'; } wpt_updated_settings(); wpt_show_last_tweet(); @@ -306,11 +306,11 @@ function wpt_update_settings() {

WP to Twitter is now XPoster

- Are you wasting time switching between X.com and WordPress to promote your posts? Do you have to delete Tweets because you accidentally published a post? Do you want to be able to schedule your post to Tweet next week, directly from your post editor? XPoster Pro will help you out! + Are you wasting time switching between social media and WordPress to promote your posts? Do you have to delete updates because you accidentally published a post? Do you want to be able to schedule your post to send next week, directly from your post editor? XPoster Pro will help you out!

What will XPoster PRO do for you?

- It takes the great Tweeting automation from XPoster and turns it up to eleven: publish to unique X accounts for each site author; schedule up to 3 re-posts of Tweets at an interval of your choice; and, with a delay between publishing and Tweeting, check your tweets before they’re shared with your followers. + It takes the great automation from XPoster and turns it up to eleven: publish to unique accounts for each site author; schedule up to 3 re-posts at an interval of your choice; and, with a delay between publishing and your status updates, check your status before it's shared with your followers.

- +

/>

-

+

  • #title#: the title of your blog post', 'wp-to-twitter' ); ?>
  • @@ -575,11 +575,11 @@ function wpt_update_settings() {

    - +

    - +

    @@ -599,11 +599,11 @@ function wpt_update_settings() {

    • /> - +
    • /> - +
    • /> @@ -743,7 +743,7 @@ function wpt_update_settings() {

      @@ -978,7 +978,7 @@ function wpt_do_server_check( $test = false ) { add_filter( 'wpt_tweet_length', 'wpt_tweet_length' ); /** - * Add control to set maximum length for a Tweet. + * Add control to set maximum length for a status update. * * @return string HTML control. */ @@ -1001,9 +1001,9 @@ function wpt_tweet_length() { } $tweet_length = intval( ( get_option( 'wpt_tweet_length' ) ) ? get_option( 'wpt_tweet_length' ) : $default ); $control = "

      - + - " . __( 'Tweets longer than 280 characters require an X Premium subscription.', 'wp-to-twitter' ) . ' + " . __( 'X.com Statuses longer than 280 characters require an X Premium subscription.', 'wp-to-twitter' ) . ' ' . __( 'Most Mastodon servers have a 500 character limit.', 'wp-to-twitter' ) . '

      '; return $control; @@ -1011,7 +1011,7 @@ function wpt_tweet_length() { add_filter( 'wpt_settings', 'wpt_set_tweet_length' ); /** - * Set the maximum length for a Tweet. + * Set the maximum length for a status update. */ function wpt_set_tweet_length() { if ( isset( $_POST['wpt_tweet_length'] ) ) { @@ -1022,7 +1022,7 @@ function wpt_set_tweet_length() { add_filter( 'wpt_auto_tweet', 'wpt_auto_tweet' ); /** - * Add control to set maximum length for a Tweet. + * Add control to allow auto status updates on imported posts. * * @return string HTML control. */ @@ -1030,7 +1030,7 @@ function wpt_auto_tweet() { $allow = ( '0' === get_option( 'wpt_auto_tweet_allowed', '0' ) ) ? false : true; $note = ( $allow ) ? '(' . __( 'When publishing manually, you will need to save drafts prior to publishing to support XPoster metabox options.', 'wp-to-twitter' ) . ')' : ''; $control = "

      - $note + $note

      "; return $control; @@ -1038,7 +1038,7 @@ function wpt_auto_tweet() { add_filter( 'wpt_settings', 'wpt_set_auto_tweet_allowed' ); /** - * Set the automatic Tweet allowed parameter.. + * Set the automatic status update allowed parameter.. */ function wpt_set_auto_tweet_allowed() { if ( isset( $_POST['wpt_auto_tweet_allowed'] ) ) {