Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IBX-6680: Fixed capitalization in location view tabs #1096

Merged
merged 2 commits into from
Jan 5, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions src/bundle/Resources/translations/ibexa_locationview.en.xliff
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,8 @@
<note>key: tab.name.data</note>
</trans-unit>
<trans-unit id="5d92b84a6c78bd443010f172c47d01ce0dacacd7" resname="tab.name.details">
<source>Technical Details</source>
<target state="new">Technical Details</target>
<source>Technical details</source>
<target state="new">Technical details</target>
<note>key: tab.name.details</note>
</trans-unit>
<trans-unit id="bc992b410ec56cce18c994806d7518fd47da2caa" resname="tab.name.locations">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,26 +91,26 @@
structure, designed for new and non-advanced users. Features include:</p>
<ul>
<li>View</li>
<li>Hidden Technical Details tab</li>
<li>Hidden Technical details tab</li>
<li>Hidden Locations and Versions tabs in Content items</li>
</ul>
<p><strong>Focus mode: off</strong> – Tailored for experienced users familiar with Ibexa DXP.
Provides comprehensive insights into the technical aspects of Content structure, including:</p>
<ul>
<li>Technical Details tab</li>
<li>Technical details tab</li>
<li>Location: Archived versions</li>
</ul>]]></source>
<target state="new"><![CDATA[<p><strong>Focus mode: on</strong> – A clean and intuitive interface with a simplified content
structure, designed for new and non-advanced users. Features include:</p>
<ul>
<li>View</li>
<li>Hidden Technical Details tab</li>
<li>Hidden Technical details tab</li>
<li>Hidden Locations and Versions tabs in Content items</li>
</ul>
<p><strong>Focus mode: off</strong> – Tailored for experienced users familiar with Ibexa DXP.
Provides comprehensive insights into the technical aspects of Content structure, including:</p>
<ul>
<li>Technical Details tab</li>
<li>Technical details tab</li>
<li>Location: Archived versions</li>
</ul>]]></target>
<note>key: user.setting.focus_mode.help</note>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Tab/LocationView/DetailsTab.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function getIdentifier(): string

public function getName(): string
{
/** @Desc("Technical Details") */
/** @Desc("Technical details") */
return $this->translator->trans('tab.name.details', [], 'ibexa_locationview');
}

Expand Down
Loading