Changeset 9101 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/page-add.php
- Timestamp:
- 08/14/2019 01:29:42 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/page-add.php
r7447 r9101 25 25 <section> 26 26 <div class="container"> 27 <h2 id="faq"><?php esc_html_e( 'FAQ', 'wporg-plugins' ); ?></h2> 27 <p> 28 <?php 29 printf( 30 /* translators: 1: URL to plugin guidelines, 2: URL to plugin developer FAQ. */ 31 wp_kses_post( __( 'Before you submit your plugin, we ask you to review our <a href="%1$s">Guidelines</a> and read the <a href="%2$s">Frequently Asked Questions</a>. A brief selections of common questions are listed below the form.', 'wporg-plugins' ) ), 32 esc_url( 'https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/' ), 33 esc_url( 'https://developer.wordpress.org/plugins/wordpress-org/plugin-developer-faq/' ) 34 ); 35 ?> 36 </p> 37 38 <?php echo do_shortcode( '[wporg-plugin-upload]' ); ?> 39 40 <p> 41 <?php 42 printf( 43 /* translators: URL to plugin guidelines. */ 44 wp_kses_post( __( 'Once submitted, your plugin will be manually reviewed for any common errors as well as ensuring it complies with <a href="%s">all the guidelines</a>.', 'wporg-plugins' ) ), 45 esc_url( 'https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/' ) 46 ); 47 ?> 48 </p> 49 </div> 50 </section> 51 52 <section> 53 <div class="container"> 54 <h2 id="faq"><?php esc_html_e( 'Frequently Asked Questions', 'wporg-plugins' ); ?></h2> 28 55 29 56 <h3><?php esc_html_e( 'How long will the review process take?', 'wporg-plugins' ); ?></h3> … … 45 72 <p><?php echo wp_kses_post( __( 'Please don’t! Instead email <code>plugins@wordpress.org</code> and we can rename your plugin as long as it’s not approved. Since we check emails first, the odds are we’ll catch it. If we don’t, just email us and explain the mistake. We’ll explain what to do.', 'wporg-plugins' ) ); ?></p> 46 73 47 <h3><?php esc_html_e( 'Why was I told my plugin name was unacceptable?', 'wporg-plugins' ); ?></h3> 48 <p> 49 <?php 50 printf( 51 /* translators: URL to plugin guidelines. */ 52 wp_kses_post( __( 'This is explained in detail in our <a href="%s">detailed plugin guidelines</a>, but currently we give you the chance to rename it during the review process if the plugin name violates the guideline. Some terms (like “plugin” and “WordPress”) will be removed for you, as those should not be used at all. We get it; you’re a WordPress Plugin.', 'wporg-plugins' ) ), 53 esc_url( 'https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/' ) 54 ); 55 ?> 56 </p> 57 <p><?php echo wp_kses_post( __( 'Regarding the names and trademarks of other companies and plugins, don’t use them at the start of your plugin name. If you’re not Facebook, you shouldn’t submit a plugin that uses <code>facebook</code> as the first term in your slug. “Facebook Like Sharer” (which would be <code>facebook-like-sharer</code>) is not acceptable, but “Like Sharer for Facebook” (which would be <code>like-sharer-for-facebook</code>) would be alright.', 'wporg-plugins' ) ); ?></p> 58 </div> 59 </section> 60 61 <section> 62 <div class="container"> 63 <p> 64 <?php 65 printf( 66 /* translators: URL to plugin guidelines. */ 67 wp_kses_post( __( 'Once submitted, your plugin will be manually reviewed for any common errors as well as ensuring it complies with <a href="%s">all the guidelines</a>.', 'wporg-plugins' ) ), 68 esc_url( 'https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/' ) 69 ); 70 ?> 71 </p> 72 73 <?php echo do_shortcode( '[wporg-plugin-upload]' ); ?> 74 75 <p><?php esc_html_e( 'Even if you’ve submitted a dozen plugins, take the time to refresh your memory with the following information:', 'wporg-plugins' ); ?> 76 <ul> 77 <li><a href="https://developer.wordpress.org/plugins/wordpress-org/how-to-use-subversion/"><?php esc_html_e( 'How to use SVN', 'wporg-plugins' ); ?></a></li> 78 <li><a href="https://developer.wordpress.org/plugins/wordpress-org/plugin-assets/"><?php esc_html_e( 'Plugin Assets (and how to use them)', 'wporg-plugins' ); ?></a></li> 79 <li><a href="https://developer.wordpress.org/plugins/wordpress-org/plugin-developer-faq/"><?php esc_html_e( 'Developer FAQ', 'wporg-plugins' ); ?></a></li> 80 </ul> 74 <h3><?php esc_html_e( 'Why can\'t I submit a plugin with certain display names?', 'wporg-plugins' ); ?></h3> 75 <p><?php echo wp_kses_post( __( 'Certain plugin names are prohibited due to trademark abuse. Similarly, we prevent their use in plugin slugs entirely for your protection.', 'wporg-plugins' ) ); ?></p> 81 76 </div> 82 77 </section>
Note: See TracChangeset
for help on using the changeset viewer.