Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
E
extensions.typo3.org
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
61
Issues
61
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
8
Merge Requests
8
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
services
extensions.typo3.org
extensions.typo3.org
Commits
5f66cef0
Commit
5f66cef0
authored
Nov 26, 2019
by
Thomas Löffler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add title tags to version labels in list and detail view
parent
fc3e6b12
Pipeline
#8077
passed with stages
in 3 minutes and 31 seconds
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
4 deletions
+13
-4
extensions/ter_fe2/Resources/Private/Language/locallang.xlf
extensions/ter_fe2/Resources/Private/Language/locallang.xlf
+9
-0
extensions/ter_fe2/Resources/Private/Partials/VersionSupportForTypo3.html
...e2/Resources/Private/Partials/VersionSupportForTypo3.html
+1
-1
extensions/ter_layout/Resources/Private/Partials/Solr/Result/Document.html
...yout/Resources/Private/Partials/Solr/Result/Document.html
+3
-3
No files found.
extensions/ter_fe2/Resources/Private/Language/locallang.xlf
View file @
5f66cef0
...
...
@@ -834,6 +834,15 @@
<trans-unit
id=
"none"
xml:space=
"preserve"
>
<source>
none
</source>
</trans-unit>
<trans-unit
id=
"title_warning"
xml:space=
"preserve"
>
<source>
Supports outdated version %s.
</source>
</trans-unit>
<trans-unit
id=
"title_success"
xml:space=
"preserve"
>
<source>
Supports currently supported version %s.
</source>
</trans-unit>
<trans-unit
id=
"title_info"
xml:space=
"preserve"
>
<source>
Supports development version %s.
</source>
</trans-unit>
</body>
</file>
</xliff>
extensions/ter_fe2/Resources/Private/Partials/VersionSupportForTypo3.html
View file @
5f66cef0
...
...
@@ -3,7 +3,7 @@
<h4>
This version supports TYPO3
</h4>
<p>
<f:for
each=
"{version.matrixOfSupportedTypo3Versions}"
as=
"version"
>
<button
class=
"btn btn-{version.badgeClass} btn-sm mr-2"
disabled
>
{version.label}
</button>
<button
class=
"btn btn-{version.badgeClass} btn-sm mr-2"
disabled
title=
"{f:translate(key:'title_{version.badgeClass}', arguments: {0: version.label})}"
>
{version.label}
</button>
</f:for>
</p>
</f:if>
...
...
extensions/ter_layout/Resources/Private/Partials/Solr/Result/Document.html
View file @
5f66cef0
...
...
@@ -65,13 +65,13 @@
<p
class=
"col-sm-12"
>
<small>
This extension supports TYPO3:
</small><br>
<f:for
each=
"{document.typo3supportold_stringM}"
as=
"oldVersion"
>
<button
class=
"btn btn-warning btn-sm mr-2"
disabled
>
{oldVersion}
</button>
<button
class=
"btn btn-warning btn-sm mr-2"
disabled
title=
"{f:translate(key:'title_warning', arguments: {0: oldVersion})}"
>
{oldVersion}
</button>
</f:for>
<f:for
each=
"{document.typo3support_stringM}"
as=
"maintainedVersion"
>
<button
class=
"btn btn-success btn-sm mr-2"
disabled
>
{maintainedVersion}
</button>
<button
class=
"btn btn-success btn-sm mr-2"
disabled
title=
"{f:translate(key:'title_success', arguments: {0: maintainedVersion})}"
>
{maintainedVersion}
</button>
</f:for>
<f:if
condition=
"{document.typo3supportdev_stringS}"
>
<button
class=
"btn btn-info btn-sm"
disabled
>
{document.typo3supportdev_stringS}
</button>
<button
class=
"btn btn-info btn-sm"
disabled
title=
"{f:translate(key:'title_info', arguments: {0: document.typo3supportdev_stringS})}"
>
{document.typo3supportdev_stringS}
</button>
</f:if>
</p>
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment