Changeset 6878 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-license.php
- Timestamp:
- 03/15/2018 04:42:32 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-license.php
r6869 r6878 36 36 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 37 37 <header class="entry-header row"> 38 <h1 class="entry-title col-8"><?php _esc_html_e( 'GNU Public License', 'wporg' ); ?></h1>38 <h1 class="entry-title col-8"><?php esc_html_e( 'GNU Public License', 'wporg' ); ?></h1> 39 39 </header><!-- .entry-header --> 40 40 … … 44 44 <?php 45 45 /* translators: 1: Link to Free Software Foundation; 2: Link to GPL text */ 46 printf( wp_kses_post( __ _( 'The license under which the WordPress software is released is the GPLv2 (or later) from the <a href="%1$s">Free Software Foundation</a>. A copy of the license is included with every copy of WordPress, but you can also <a href="%2$s">read the text of the license here</a>.', 'wporg' ) ), esc_url( 'https://www.fsf.org/' ), esc_url( 'https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html' ) );46 printf( wp_kses_post( __( 'The license under which the WordPress software is released is the GPLv2 (or later) from the <a href="%1$s">Free Software Foundation</a>. A copy of the license is included with every copy of WordPress, but you can also <a href="%2$s">read the text of the license here</a>.', 'wporg' ) ), esc_url( 'https://www.fsf.org/' ), esc_url( 'https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html' ) ); 47 47 ?> 48 48 </p> … … 51 51 <?php 52 52 /* translators: 1: Link to Drupal; 2: Link to Drupal's licensing faq */ 53 printf( wp_kses_post( __ _( 'Part of this license outlines requirements for derivative works, such as plugins or themes. Derivatives of WordPress code inherit the GPL license. <a href="%1$s">Drupal</a>, which has the same GPL license as WordPress, has an excellent page on <a href="%2$s">licensing as it applies to themes and modules</a> (their word for plugins).', 'wporg' ) ), esc_url( 'https://drupal.org/' ), esc_url( 'https://drupal.org/licensing/faq/' ) );53 printf( wp_kses_post( __( 'Part of this license outlines requirements for derivative works, such as plugins or themes. Derivatives of WordPress code inherit the GPL license. <a href="%1$s">Drupal</a>, which has the same GPL license as WordPress, has an excellent page on <a href="%2$s">licensing as it applies to themes and modules</a> (their word for plugins).', 'wporg' ) ), esc_url( 'https://drupal.org/' ), esc_url( 'https://drupal.org/licensing/faq/' ) ); 54 54 ?> 55 55 </p> … … 58 58 <?php 59 59 /* translators: 1: Link to Serendipity; 2: Link to Habari */ 60 printf( wp_kses_post( __ _( 'There is some legal grey area regarding what is considered a derivative work, but we feel strongly that plugins and themes are derivative work and thus inherit the GPL license. If you disagree, you might want to consider a non-GPL platform such as <a href="%1$s">Serendipity</a> (BSD license) or <a href="%2$s">Habari</a> (Apache license) instead.', 'wporg' ) ), esc_url( 'https://www.s9y.org/' ), esc_url( 'http://habariproject.org/en/' ) );60 printf( wp_kses_post( __( 'There is some legal grey area regarding what is considered a derivative work, but we feel strongly that plugins and themes are derivative work and thus inherit the GPL license. If you disagree, you might want to consider a non-GPL platform such as <a href="%1$s">Serendipity</a> (BSD license) or <a href="%2$s">Habari</a> (Apache license) instead.', 'wporg' ) ), esc_url( 'https://www.s9y.org/' ), esc_url( 'http://habariproject.org/en/' ) ); 61 61 ?> 62 62 </p>
Note: See TracChangeset
for help on using the changeset viewer.