| 1 | <?php |
| 2 | /** |
| 3 | * Contribute administration panel. |
| 4 | * |
| 5 | * @package WordPress |
| 6 | * @subpackage Administration |
| 7 | */ |
| 8 | |
| 9 | /** WordPress Administration Bootstrap */ |
| 10 | require_once( dirname( __FILE__ ) . '/admin.php' ); |
| 11 | |
| 12 | $title = __( 'Contribute' ); |
| 13 | |
| 14 | list( $display_version ) = explode( '-', $wp_version ); |
| 15 | |
| 16 | include( ABSPATH . 'wp-admin/admin-header.php' ); |
| 17 | ?> |
| 18 | <div class="wrap about-wrap"> |
| 19 | |
| 20 | <h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1> |
| 21 | |
| 22 | <div class="about-text"><?php printf( __( 'Thank you for updating! WordPress %s helps you focus on your writing, and the new default theme lets you show it off in style.' ), $display_version ); ?></div> |
| 23 | |
| 24 | <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div> |
| 25 | |
| 26 | <h2 class="nav-tab-wrapper"> |
| 27 | <a href="about.php" class="nav-tab"> |
| 28 | <?php _e( 'What’s New' ); ?> |
| 29 | </a><a href="credits.php" class="nav-tab"> |
| 30 | <?php _e( 'Credits' ); ?> |
| 31 | </a><a href="freedoms.php" class="nav-tab"> |
| 32 | <?php _e( 'Freedoms' ); ?> |
| 33 | </a><a href="contribute.php" class="nav-tab nav-tab-active"> |
| 34 | <?php _e( 'Contribute' ); ?> |
| 35 | </a> |
| 36 | </h2> |
| 37 | |
| 38 | <p class="about-description"><?php printf( __( 'WordPress is Free and open source software, built and maintained by community of mostly volunteers from around the world. Whether you are a budding developer, a pixel-perfect designer, or just like helping others use WordPress, <a href="%s">there are many different ways for you to get involved with WordPress</a>.' ), 'https://make.wordpress.org/' ); ?></p> |
| 39 | |
| 40 | <p>Here are some of the many ways to get involved in our community:</p> |
| 41 | |
| 42 | <ol> |
| 43 | <li><p><?php printf( __( 'Join the <a href="%1s" title="WordPress Docs Team" target="_blank">Docs Team</a> that maintains the <a href="%2s" title="WordPress Codex" target="_blank">Codex</a>, handbooks, <a href="%3s" title="WordPress Developer Resources" target="_blank">developer.wordpress.org</a>, <a href="%4s" title="WordPress Admin Help" target="_blank">admin help</a> and <a href="%5s" title="WordPress Inline Docs Project" target="_blank">inline docs</a>.' ), 'https://make.wordpress.org/docs/', 'http://codex.wordpress.org/', 'https://developer.wordpress.org/', 'https://make.wordpress.org/docs/tag/admin-help/' ,'https://make.wordpress.org/docs/tag/inline-docs/' ); ?></p></li> |
| 44 | <li><p><?php printf( __( 'Help out others in the <a href="%s" title="WordPress.org Support Forums" target="_blank">Official WordPress Support Forums</a>.' ), 'https://wordpress.org/support/' ); ?></p></li> |
| 45 | <li><p><?php printf( __( 'Join the <a href="%s" title="WordPress Accessibility Group" target="_blank">WordPress accessibility group</a>, a team dedicated to improving accessibility in core WordPress and related projects.'), 'https://make.wordpress.org/accessibility/' ); ?> </p></li> |
| 46 | <li><p><?php printf( __( 'Join the <a href="%s" title="WordPress Theme Review Team" target="_blank">WordPress Theme Review Team</a> a group of volunteers who review and approve themes submitted to be included in the official WordPress Theme directory.' ), 'https://make.wordpress.org/themes/' ); ?></p></li> |
| 47 | |
| 48 | </ol> |
| 49 | |
| 50 | </div> |
| 51 | <?php include( ABSPATH . 'wp-admin/admin-footer.php' ); ?> |