[wp-meta] [Making WordPress.org] #2571: Improving coming soon text

Making WordPress.org noreply at wordpress.org
Wed Mar 8 08:42:45 UTC 2017


#2571: Improving coming soon text
-------------------------------------+-----------------
 Reporter:  grapplerulrich           |      Owner:
     Type:  defect                   |     Status:  new
 Priority:  normal                   |  Milestone:
Component:  WordCamp Site & Plugins  |   Keywords:
-------------------------------------+-----------------
 As I was sharing the new WordCamp Bern page I got the feedback that people
 were more likely to overlook the subscribe box and instead fill out the
 contact form at the bottom.

 https://2017.bern.wordcamp.org/

 This got me thinking what the arrows were supposed to mean and realized
 that they were tabs from the translation.


 {{{#!php
 <?php printf(
                 // translators: %s is the name of the blog
                 __(
                         '%s is in the early planning stages.
                         In the meantime, you can subscribe to be notified
 when the site goes live, or contact the organizers to get involved.',
                         'wordcamporg'
                 ),
                 esc_html( get_bloginfo( 'name' ) )
 ); ?>
 }}}

 Better maybe to split up the strings and mention where the items are on
 the page. I have added "above" and "below" to the string.

 {{{#!php
 <?php printf(
                 // translators: %s is the name of the blog
                 __(
                         '%s is in the early planning stages..',
                         'wordcamporg'
                 ),
                 esc_html( get_bloginfo( 'name' ) )
 );
 _e(
         'In the meantime, you can subscribe to updates above, or contact
 the organizers below to get involved.',
         'wordcamporg'
 ),?>
 }}}


 https://meta.svn.wordpress.org/sites/trunk/wordcamp.org/public_html/wp-
 content/plugins/wordcamp-coming-soon-page/views/template-coming-soon.php

--
Ticket URL: <https://meta.trac.wordpress.org/ticket/2571>
Making WordPress.org <https://meta.trac.wordpress.org/>
Making WordPress.org


More information about the wp-meta mailing list