Opened 8 years ago
Closed 8 years ago
#2877 closed defect (bug) (fixed)
Mistyped placeable
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | Plugin Directory v3.0 | Priority: | normal |
Component: | Plugin Directory | Keywords: | has-patch |
Cc: |
Description
A placeable is lacking a percent sign.
We recommend using %1s as it will allow
Should be changed to
We recommend using %1$s as it will allow
File: https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-upload-handler.php
Appr. location: 171--180
<?php $readme = $this->find_readme_file(); if ( empty( $readme ) ) { $error = __( 'Error: The plugin has no readme.', 'wporg-plugins' ); /* translators: 1: readme.txt, 2: readme.md */ return $error . ' ' . sprintf( __( 'The zip file must include a file named %1$s or %2$s. We recommend using %1s as it will allow you to fully utilize our directory.', 'wporg-plugins' ), '<code>readme.txt</code>', '<code>readme.md</code>' ); }
Attachments (1)
Change History (4)
Note: See
TracTickets for help on using
tickets.
Sorry, it's a dollar character missing. (the percent sign is there... :)