Changeset 45660 for trunk/src/wp-admin/freedoms.php
- Timestamp:
- 07/19/2019 12:08:38 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/freedoms.php
r45659 r45660 27 27 <h1> 28 28 <?php 29 /* translators: %s: The current WordPress version number */ 30 printf( __( 'Welcome to WordPress %s' ), $display_version ); 29 printf( 30 /* translators: %s: The current WordPress version number */ 31 __( 'Welcome to WordPress %s' ), 32 $display_version 33 ); 31 34 ?> 32 35 </h1> … … 44 47 <div class="wp-badge"> 45 48 <?php 46 /* translators: %s: The current WordPress version number */ 47 printf( __( 'Version %s' ), $display_version ); 49 printf( 50 /* translators: %s: The current WordPress version number */ 51 __( 'Version %s' ), 52 $display_version 53 ); 48 54 ?> 49 55 </div> … … 61 67 <p class="about-description"> 62 68 <?php 69 printf( 63 70 /* translators: %s: https://wordpress.org/about/license/ */ 64 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/' ) ); 71 __( '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.' ), 72 __( 'https://wordpress.org/about/license/' ) 73 ); 65 74 ?> 66 75 </p> … … 93 102 <p> 94 103 <?php 104 printf( 95 105 /* translators: %s: https://wordpressfoundation.org/trademark-policy/ */ 96 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/' ); 106 __( '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.' ), 107 'https://wordpressfoundation.org/trademark-policy/' 108 ); 97 109 ?> 98 110 </p> … … 100 112 <p> 101 113 <?php 102 $plugins_url = current_user_can( 'activate_plugins' ) ? admin_url( 'plugins.php' ) : __( 'https://wordpress.org/plugins/' ); 103 $themes_url = current_user_can( 'switch_themes' ) ? admin_url( 'themes.php' ) : __( 'https://wordpress.org/themes/' ); 114 $plugins_url = current_user_can( 'activate_plugins' ) ? admin_url( 'plugins.php' ) : __( 'https://wordpress.org/plugins/' ); 115 $themes_url = current_user_can( 'switch_themes' ) ? admin_url( 'themes.php' ) : __( 'https://wordpress.org/themes/' ); 116 printf( 104 117 /* translators: %s: https://wordpress.org/about/license/ */ 105 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/' ) ); 118 __( '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.' ), 119 $plugins_url, 120 $themes_url, 121 __( 'https://wordpress.org/about/license/' ) 122 ); 106 123 ?> 107 124 </p>
Note: See TracChangeset
for help on using the changeset viewer.