Skip to content

Commit 9234091

Browse files
authored
IBX-10218: Renamed hide/reveal actions (#1679)
1 parent 4e23630 commit 9234091

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/bundle/Resources/translations/ibexa_sub_items.en.xliff

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,8 @@
187187
<note>key: edit_item_btn.label</note>
188188
</trans-unit>
189189
<trans-unit id="0f2106150fc552b94658eee2125a4c4680f3564c" resname="hide_locations_btn.label">
190-
<source>Hide</source>
191-
<target state="new">Hide</target>
190+
<source>Hide Location</source>
191+
<target state="new">Hide Location</target>
192192
<note>key: hide_locations_btn.label</note>
193193
</trans-unit>
194194
<trans-unit id="2f2de7291ed87063841f5d65e5d73c1c50eaa3be" resname="instant.filter.placeholder">
@@ -312,8 +312,8 @@
312312
<note>key: udw.choose_location.title</note>
313313
</trans-unit>
314314
<trans-unit id="8518fc267b3ab3f637351ddbd8ad08e1312d822c" resname="unhide_locations_btn.label">
315-
<source>Reveal</source>
316-
<target state="new">Reveal</target>
315+
<source>Reveal Location</source>
316+
<target state="new">Reveal Location</target>
317317
<note>key: unhide_locations_btn.label</note>
318318
</trans-unit>
319319
<trans-unit id="712c8bc3c12cd6e3f3940ae76271148a9e4b0818" resname="view_columns_toggler.label">

src/bundle/ui-dev/src/modules/sub-items/sub.items.module.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1258,13 +1258,13 @@ export default class SubItemsModule extends Component {
12581258
}
12591259

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

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

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

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

0 commit comments

Comments
 (0)