Skip to content

Commit

Permalink
cr remarks
Browse files Browse the repository at this point in the history
  • Loading branch information
konradoboza committed Oct 29, 2020
1 parent 81e2d19 commit 9f9efd5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 13 deletions.
9 changes: 2 additions & 7 deletions src/bundle/Resources/translations/systeminfo.en.xliff
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,10 @@
<note>key: ibexa.stability</note>
</trans-unit>
<trans-unit id="972bcf808b8ce2b0a08a21db7f0f15f520f4b87b" resname="ibexa.read_more">
<source>You can read more about Service Life for Ibexa DXP with a business license</source>
<target state="new">You can read more about Service Life for Ibexa DXP with a business license</target>
<source>You can read more about Service Life for Ibexa DXP with a business license at</source>
<target state="new">You can read more about Service Life for Ibexa DXP with a business license at</target>
<note>key: ibexa.read_more</note>
</trans-unit>
<trans-unit id="ed1d28d47a81de631c9ddc98983f0b46f799c95c" resname="ibexa.here">
<source>here</source>
<target state="new">here</target>
<note>key: ibexa.here</note>
</trans-unit>
<trans-unit id="608cb271bb7fb52c99a1a8e003e0f80f57fb41e1" resname="hardware">
<source>Hardware</source>
<target state="new">Hardware</target>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,31 +19,31 @@
<td class="ez-table__cell">{{ 'ibexa.is_dxp'|trans|desc('Is DXP') }}</td>
<td class="ez-table__cell">
<svg class="ez-icon ez-icon--small">
<use xlink:href="{{ ez_icon_path((info.isEnterprise == true) ? 'checkmark' : 'discard') }}"></use>
<use xlink:href="{{ ez_icon_path(info.isEnterprise ? 'checkmark' : 'discard') }}"></use>
</svg>
</td>
</tr>
<tr class="ez-table__row">
<td class="ez-table__cell">{{ 'ibexa.is_commerce'|trans|desc('Has Commerce') }}</td>
<td class="ez-table__cell">
<svg class="ez-icon ez-icon--small">
<use xlink:href="{{ ez_icon_path((info.isCommerce == true) ? 'checkmark' : 'discard') }}"></use>
<use xlink:href="{{ ez_icon_path(info.isCommerce ? 'checkmark' : 'discard') }}"></use>
</svg>
</td>
</tr>
<tr class="ez-table__row">
<td class="ez-table__cell">{{ 'ibexa.is_trial'|trans|desc('Is Trial') }}</td>
<td class="ez-table__cell">
<svg class="ez-icon ez-icon--small">
<use xlink:href="{{ ez_icon_path((info.isTrial == true) ? 'checkmark' : 'discard') }}"></use>
<use xlink:href="{{ ez_icon_path(info.isTrial ? 'checkmark' : 'discard') }}"></use>
</svg>
</td>
</tr>
<tr class="ez-table__row">
<td class="ez-table__cell">{{ 'ibexa.stability'|trans|desc('Stability') }}</td>
<td class="ez-table__cell">{{ info.stability }}</td>
</tr>
{% if info.isEnterprise == true %}
{% if info.isEnterprise %}
<tr class="ez-table__row">
<td class="ez-table__cell">{{ 'ibexa.eom'|trans|desc('End of Maintenance') }}*</td>
<td class="ez-table__cell">
Expand All @@ -59,8 +59,10 @@
<tr class="ez-table__row">
<td colspan="2">
<hr/>
* {{ 'ibexa.read_more'|trans|desc('You can read more about Service Life for Ibexa DXP with a business license') }}
<a target="_blank" href="https://support.ibexa.co/Public/Service-Life">{{ 'ibexa.here'|trans|desc('here') }}</a>
* {{ 'ibexa.read_more'|trans|desc('You can read more about Service Life for Ibexa DXP with a business license at') }}
<a target="_blank" href="https://support.ibexa.co/Public/Service-Life">
https://support.ibexa.co/Public/Service-Life
</a>
</td>
</tr>
{% endif %}
Expand Down

0 comments on commit 9f9efd5

Please sign in to comment.