Making WordPress.org


Ignore:
Timestamp:
01/10/2018 06:17:15 PM (7 years ago)
Author:
obenland
Message:

Plugins: Make Screenshots heading translatable

Fixes #3070.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/client/components/plugin/sections/screenshots/index.jsx

    r5190 r6338  
    1111import ImageGallery from './image-gallery';
    1212
    13 export const Screenshots = ( { screenshots, translate } ) => {
     13export const Screenshots = ( { screenshots } ) => {
    1414    const items = map( screenshots, ( { caption, src } ) => ( {
    1515        original: src,
     
    2323        return (
    2424            <div id="screenshots" className="plugin-screenshots">
    25                 <h2>{ translate( 'Screenshots' ) }</h2>
     25                <h2>{ localeData.screenshots }</h2>
    2626                <ImageGallery items={ items } />
    2727            </div>
Note: See TracChangeset for help on using the changeset viewer.