Changeset 45278 for trunk/src/wp-admin/freedoms.php
- Timestamp:
- 05/02/2019 03:43:10 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/freedoms.php
r44905 r45278 54 54 <?php else : ?> 55 55 <div class="about-wrap-content"> 56 <div class="feature-section one-col"> 57 <div class="col"> 58 <h2><?php _e( 'Freedoms' ); ?></h2> 59 <p class="about-description"><?php printf( __( 'WordPress is Free and open source software, built by a distributed community of mostly volunteer developers from around the world. WordPress comes with some awesome, worldview-changing rights courtesy of its <a href="%s">license</a>, the GPL.' ), 'https://wordpress.org/about/license/' ); ?></p> 60 </div> 56 <div class="feature-section has-1-columns"> 57 <h2><?php _e( 'Freedoms' ); ?></h2> 58 <p class="about-description"><?php printf( __( 'WordPress is Free and open source software, built by a distributed community of mostly volunteer developers from around the world. WordPress comes with some awesome, worldview-changing rights courtesy of its <a href="%s">license</a>, the GPL.' ), 'https://wordpress.org/about/license/' ); ?></p> 61 59 </div> 62 60 63 <div class="feature-section four-col">64 <div class="col ">61 <div class="feature-section has-4-columns is-fullwidth"> 62 <div class="column"> 65 63 <div class="freedoms-image"></div> 66 64 <h3><?php _e( 'The 1st Freedom' ); ?></h3> 67 65 <p><?php _e( 'To run the program for any purpose.' ); ?></p> 68 66 </div> 69 <div class="col ">67 <div class="column"> 70 68 <div class="freedoms-image"></div> 71 69 <h3><?php _e( 'The 2nd Freedom' ); ?></h3> 72 70 <p><?php _e( 'To study how the program works and change it to make it do what you wish.' ); ?></p> 73 71 </div> 74 <div class="col ">72 <div class="column"> 75 73 <div class="freedoms-image"></div> 76 74 <h3><?php _e( 'The 3rd Freedom' ); ?></h3> 77 75 <p><?php _e( 'To redistribute.' ); ?></p> 78 76 </div> 79 <div class="col ">77 <div class="column"> 80 78 <div class="freedoms-image"></div> 81 79 <h3><?php _e( 'The 4th Freedom' ); ?></h3> … … 84 82 </div> 85 83 86 <div class="feature-section one-col"> 87 <div class="col"> 88 <p><?php printf( __( 'WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We’re flattered every time someone spreads the good word, just make sure to <a href="%s">check out our trademark guidelines</a> first.' ), 'https://wordpressfoundation.org/trademark-policy/' ); ?></p> 84 <div class="feature-section has-1-columns"> 85 <p><?php printf( __( 'WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We’re flattered every time someone spreads the good word, just make sure to <a href="%s">check out our trademark guidelines</a> first.' ), 'https://wordpressfoundation.org/trademark-policy/' ); ?></p> 89 86 90 91 92 93 87 <p> 88 <?php 89 $plugins_url = current_user_can( 'activate_plugins' ) ? admin_url( 'plugins.php' ) : __( 'https://wordpress.org/plugins/' ); 90 $themes_url = current_user_can( 'switch_themes' ) ? admin_url( 'themes.php' ) : __( 'https://wordpress.org/themes/' ); 94 91 95 96 97 92 printf( __( 'Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding <a href="%1$s">plugins</a> and <a href="%2$s">themes</a> there. If you get a plugin or theme from another source, make sure to <a href="%3$s">ask them if it’s GPL</a> first. If they don’t respect the WordPress license, we don’t recommend them.' ), $plugins_url, $themes_url, 'https://wordpress.org/about/license/' ); 93 ?> 94 </p> 98 95 99 <p><?php _e( 'Don’t you wish all software came with these freedoms? So do we! For more information, check out the <a href="https://www.fsf.org/">Free Software Foundation</a>.' ); ?></p> 100 </div> 96 <p><?php _e( 'Don’t you wish all software came with these freedoms? So do we! For more information, check out the <a href="https://www.fsf.org/">Free Software Foundation</a>.' ); ?></p> 101 97 </div> 102 98 </div>
Note: See TracChangeset
for help on using the changeset viewer.