Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/bundle/Resources/translations/ibexa_sub_items.en.xliff
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@
<note>key: edit_item_btn.label</note>
</trans-unit>
<trans-unit id="0f2106150fc552b94658eee2125a4c4680f3564c" resname="hide_locations_btn.label">
<source>Hide</source>
<target state="new">Hide</target>
<source>Hide Location</source>
<target state="new">Hide Location</target>
<note>key: hide_locations_btn.label</note>
</trans-unit>
<trans-unit id="2f2de7291ed87063841f5d65e5d73c1c50eaa3be" resname="instant.filter.placeholder">
Expand Down Expand Up @@ -312,8 +312,8 @@
<note>key: udw.choose_location.title</note>
</trans-unit>
<trans-unit id="8518fc267b3ab3f637351ddbd8ad08e1312d822c" resname="unhide_locations_btn.label">
<source>Reveal</source>
<target state="new">Reveal</target>
<source>Reveal Location</source>
<target state="new">Reveal Location</target>
<note>key: unhide_locations_btn.label</note>
</trans-unit>
<trans-unit id="712c8bc3c12cd6e3f3940ae76271148a9e4b0818" resname="view_columns_toggler.label">
Expand Down
4 changes: 2 additions & 2 deletions src/bundle/ui-dev/src/modules/sub-items/sub.items.module.js
Original file line number Diff line number Diff line change
Expand Up @@ -1258,13 +1258,13 @@ export default class SubItemsModule extends Component {
}

renderBulkHideBtn(disabled) {
const label = Translator.trans(/*@Desc("Hide")*/ 'hide_locations_btn.label', {}, 'ibexa_sub_items');
const label = Translator.trans(/*@Desc("Hide Location")*/ 'hide_locations_btn.label', {}, 'ibexa_sub_items');

return this.renderActionBtnWrapper(<ActionButton disabled={disabled} onClick={this.onHideBtnClick} label={label} type="hide" />);
}

renderBulkUnhideBtn(disabled) {
const label = Translator.trans(/*@Desc("Reveal")*/ 'unhide_locations_btn.label', {}, 'ibexa_sub_items');
const label = Translator.trans(/*@Desc("Reveal Location")*/ 'unhide_locations_btn.label', {}, 'ibexa_sub_items');

return this.renderActionBtnWrapper(
<ActionButton disabled={disabled} onClick={this.onUnhideBtnClick} label={label} type="reveal" />,
Expand Down
Loading