Changeset 6878 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-etiquette.php
- Timestamp:
- 03/15/2018 04:42:32 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-etiquette.php
r6869 r6878 36 36 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 37 37 <header class="entry-header"> 38 <h1 class="entry-title col-8"><?php _esc_html_e( 'Etiquette', 'wporg' ); ?></h1>38 <h1 class="entry-title col-8"><?php esc_html_e( 'Etiquette', 'wporg' ); ?></h1> 39 39 </header><!-- .entry-header --> 40 40 … … 44 44 <?php 45 45 /* translators: Link to blog post */ 46 printf( wp_kses_post( __ _( 'In the WordPress open source project, we realize that our biggest asset is the community that we foster. The project, as a whole, follows these basic philosophical principles from <a href="%s">The Cathedral and The Bazaar</a>.', 'wporg' ) ), esc_url( 'http://www.catb.org/esr/writings/cathedral-bazaar/cathedral-bazaar/index.html' ) );46 printf( wp_kses_post( __( 'In the WordPress open source project, we realize that our biggest asset is the community that we foster. The project, as a whole, follows these basic philosophical principles from <a href="%s">The Cathedral and The Bazaar</a>.', 'wporg' ) ), esc_url( 'http://www.catb.org/esr/writings/cathedral-bazaar/cathedral-bazaar/index.html' ) ); 47 47 ?> 48 48 </p> 49 49 50 50 <ul> 51 <li><?php _esc_html_e( 'Contributions to the WordPress open source project are for the benefit of the WordPress community as a whole, not specific businesses or individuals. All actions taken as a contributor should be made with the best interests of the community in mind.', 'wporg' ); ?></li>52 <li><?php _esc_html_e( 'Participation in the WordPress open source project is open to all who wish to join, regardless of ability, skill, financial status, or any other criteria.', 'wporg' ); ?></li>53 <li><?php _esc_html_e( 'The WordPress open source project is a volunteer-run community. Even in cases where contributors are sponsored by companies, that time is donated for the benefit of the entire open source community.', 'wporg' ); ?></li>51 <li><?php esc_html_e( 'Contributions to the WordPress open source project are for the benefit of the WordPress community as a whole, not specific businesses or individuals. All actions taken as a contributor should be made with the best interests of the community in mind.', 'wporg' ); ?></li> 52 <li><?php esc_html_e( 'Participation in the WordPress open source project is open to all who wish to join, regardless of ability, skill, financial status, or any other criteria.', 'wporg' ); ?></li> 53 <li><?php esc_html_e( 'The WordPress open source project is a volunteer-run community. Even in cases where contributors are sponsored by companies, that time is donated for the benefit of the entire open source community.', 'wporg' ); ?></li> 54 54 <li> 55 55 <?php 56 56 /* translators: Link to make.wordpress.org */ 57 printf( wp_kses_post( __ _( 'Any member of the community can donate their time and contribute to the project in any form including design, code, documentation, community building, etc. For more information, go to <a href="%s">make.wordpress.org</a>.', 'wporg' ) ), esc_url( 'https://make.wordpress.org/' ) );57 printf( wp_kses_post( __( 'Any member of the community can donate their time and contribute to the project in any form including design, code, documentation, community building, etc. For more information, go to <a href="%s">make.wordpress.org</a>.', 'wporg' ) ), esc_url( 'https://make.wordpress.org/' ) ); 58 58 ?> 59 59 </li> 60 <li><?php _esc_html_e( 'The WordPress open source community cares about diversity. We strive to maintain a welcoming environment where everyone can feel included, by keeping communication free of discrimination, incitement to violence, promotion of hate, and unwelcoming behavior.', 'wporg' ); ?></li>60 <li><?php esc_html_e( 'The WordPress open source community cares about diversity. We strive to maintain a welcoming environment where everyone can feel included, by keeping communication free of discrimination, incitement to violence, promotion of hate, and unwelcoming behavior.', 'wporg' ); ?></li> 61 61 </ul> 62 62 63 <p><?php _esc_html_e( 'There is a project currently underway to create a project-wide code of conduct so that we can ensure the safety of our contributors.', 'wporg' ); ?></p>63 <p><?php esc_html_e( 'There is a project currently underway to create a project-wide code of conduct so that we can ensure the safety of our contributors.', 'wporg' ); ?></p> 64 64 65 65 <p> 66 66 <?php 67 67 /* translators: 1: Link to community team slack channel; 2: Link to tag archive on make/community */ 68 printf( wp_kses_post( __ _( 'Meetings are conducted in the <a href="%1$s">#community-team Slack channel</a>, and minutes published on the <a href="%2$s">Make Community blog</a>.', 'wporg' ) ), esc_url( 'https://wordpress.slack.com/messages/community-team' ), esc_url( 'https://make.wordpress.org/community/tag/ccoc/' ) );68 printf( wp_kses_post( __( 'Meetings are conducted in the <a href="%1$s">#community-team Slack channel</a>, and minutes published on the <a href="%2$s">Make Community blog</a>.', 'wporg' ) ), esc_url( 'https://wordpress.slack.com/messages/community-team' ), esc_url( 'https://make.wordpress.org/community/tag/ccoc/' ) ); 69 69 ?> 70 70 </p>
Note: See TracChangeset
for help on using the changeset viewer.