Skip to content

Commit

Permalink
Merge pull request #2612 from Parsely/fix/some-untranslatable-strings
Browse files Browse the repository at this point in the history
Fix some untranslatable strings
  • Loading branch information
acicovic committed Jul 8, 2024
2 parents 500ae12 + 80bd684 commit 7db49de
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build/blocks/recommendations/edit.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '132bf16c19931769999f');
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '393b4c8be66f3bde527e');
2 changes: 1 addition & 1 deletion build/blocks/recommendations/edit.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/content-helper/excerpt-generator.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-components', 'wp-data', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-primitives', 'wp-url', 'wp-wordcount'), 'version' => '020225d87d32e61d3c23');
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-components', 'wp-data', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-primitives', 'wp-url', 'wp-wordcount'), 'version' => 'bdba9e5ade5650d62b1a');
2 changes: 1 addition & 1 deletion build/content-helper/excerpt-generator.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const ParselyRecommendationsInspectorControls = ( {
}

return <InspectorControls>
<PanelBody title="Settings" initialOpen={ true }>
<PanelBody title={ __( 'Settings', 'wp-parsely' ) } initialOpen={ true }>
<PanelRow>
<TextControl
label={ __( 'Title', 'wp-parsely' ) }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ export const ExcerptPanel = () => {
<PostTypeSupportCheck supportKeys="excerpt">
<PluginDocumentSettingPanel
name="parsely-post-excerpt"
title="Excerpt"
title={ __( 'Excerpt', 'wp-parsely' ) }
>
<PostExcerptGenerator />
</PluginDocumentSettingPanel>
Expand Down

0 comments on commit 7db49de

Please sign in to comment.