Making WordPress.org

Ticket #2885: 2885.patch

File 2885.patch, 2.9 KB (added by SergeyBiryukov, 8 years ago)
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-wordcamp/wordcamp-new-site.php

     
    649649                                // translators: %s: site title
    650650                                'title'   => sprintf( __( 'Welcome to %s', 'wordcamporg' ), get_option( 'blogname' ) ),
    651651                                'content' =>
    652                                         '<p>' . __( '<em>Organizers note:</em> Please update the portions <span style="color: red; text-decoration: underline;">with red text</span>.', 'wordcamporg' ) . '</p> ' .
    653                                         '<p>' . __( 'We\'re happy to announce that <span style="color: red; text-decoration: underline;">WordCamp YourCityName</span> is officially on the calendar!', 'wordcamporg' ) . '</p> ' .
    654                                         '<p>' . __( '<span style="color: red; text-decoration: underline;">WordCamp YourCityName</span> will be <span style="color: red; text-decoration: underline;">DATE(S)</span> at <span style="color: red; text-decoration: underline;">LOCATION</span>.', 'wordcamporg' ) . '</p> ' .
    655                                         '<p>' . __( '<span style="color: red; text-decoration: underline;">Subscribe using the form in the sidebar</span> to stay up to date on the most recent news. We’ll be keeping you posted on all the details over the coming months, including speaker submissions, ticket sales and more!', 'wordcamporg' ) . '</p> ',
     652                                        '<p>' . sprintf(
     653                                                // translators: %s: <span> tag attributes
     654                                                __(
     655                                                        '<em>Organizers note:</em> Please update the portions <span %s>with red text</span>.',
     656                                                        'wordcamporg'
     657                                                ),
     658                                                'style="color: red; text-decoration: underline;"'
     659                                        ) . '</p> ' .
     660                                        '<p>' . sprintf(
     661                                                // translators: %s: <span> tag attributes
     662                                                __(
     663                                                        'We\'re happy to announce that <span %s>WordCamp YourCityName</span> is officially on the calendar!',
     664                                                        'wordcamporg'
     665                                                ),
     666                                                'style="color: red; text-decoration: underline;"'
     667                                        ) . '</p> ' .
     668                                        '<p>' . sprintf(
     669                                                // translators: 1: <span> tag attributes
     670                                                __(
     671                                                        '<span %1$s>WordCamp YourCityName</span> will be <span %1$s>DATE(S)</span> at <span %1$s>LOCATION</span>.',
     672                                                        'wordcamporg'
     673                                                ),
     674                                                'style="color: red; text-decoration: underline;"'
     675                                        ) . '</p> ' .
     676                                        '<p>' . sprintf(
     677                                                // translators: %s: <span> tag attributes
     678                                                __(
     679                                                        '<span %s>Subscribe using the form in the sidebar</span> to stay up to date on the most recent news. We’ll be keeping you posted on all the details over the coming months, including speaker submissions, ticket sales and more!',
     680                                                        'wordcamporg'
     681                                                ),
     682                                                'style="color: red; text-decoration: underline;"'
     683                                        ) . '</p> ',
    656684                                'status'  => 'publish',
    657685                                'type'    => 'post',
    658686                        ),