Skip to content

Commit

Permalink
WP59: Differenciate Export string from other occurrences in WP Core (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
audrasjb committed Dec 30, 2021
1 parent 7bf3dfb commit a90a964
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/edit-site/src/plugins/site-export.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import downloadjs from 'downloadjs';
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
import { __, _x } from '@wordpress/i18n';
import { MenuItem } from '@wordpress/components';
import apiFetch from '@wordpress/api-fetch';
import { download } from '@wordpress/icons';
Expand Down Expand Up @@ -46,7 +46,7 @@ export default function SiteExport() {
onClick={ handleExport }
info={ __( 'Download your templates and template parts.' ) }
>
{ __( 'Export' ) }
{ _x( 'Export', 'site exporter menu item' ) }
</MenuItem>
);
}

0 comments on commit a90a964

Please sign in to comment.