Skip to content

Commit

Permalink
Remove concept of LTS from UI
Browse files Browse the repository at this point in the history
  • Loading branch information
driftingly committed Apr 26, 2023
1 parent 945bf84 commit 10b12e6
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 20 deletions.
2 changes: 1 addition & 1 deletion lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"To learn more about Laravel's versioning strategy, check out the :link.": "To learn more about Laravel's versioning strategy, check out the :link.",
"To upgrade, follow the instructions in the docs or use :link-laravelshifts to upgrade automatically.": "To upgrade, follow the instructions in the docs or use :link-laravelshifts to upgrade automatically.",
"Update <em>at least</em> to a security-maintained version <strong>as soon as possible!</strong>": "Update <em>at least</em> to a security-maintained version <strong>as soon as possible!</strong>",
"Update to the latest major or LTS release.": "Update to the latest major or LTS release.",
"Update to the latest major or LTS release.": "Update to the latest major.",
"Version": "Version",
"You can also find a list of all of the security advisories for Laravel here: :link": "You can also find a list of all of the security advisories for Laravel here: :link"
}
1 change: 0 additions & 1 deletion lang/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
"Laravel Version": "Version de Laravel",
"Laravel Versions": "Versions de Laravel",
"Latest Patch Release": "Dernier Correctif Publié",
"LTS?": "LTS ?",
"Major Version": "Version Majeure",
"Need help upgrading your app? Try :link-laravelshift for automated upgrades or :link-tighten if you need more than just upgrades.": "Besoin d'aide pour mettre à jour votre application ? Essayez :link-laravelshift pour les mises à niveau automatisées ou :link-tighten si vous avez besoin de plus que de simples mises à niveau.",
"No longer receiving security updates!": "Ne reçoivent plus de mises à jour de sécurité !",
Expand Down
6 changes: 0 additions & 6 deletions resources/views/partials/tables/current_table.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
<th scope="col" class="py-3 pl-6 font-medium tracking-wider text-left text-gray-500 uppercase lg:pl-8">
{{ __('Security Fixes Until') }}
</th>
<th scope="col" class="py-3 pl-6 font-medium tracking-wider text-left text-gray-500 uppercase">
{{ __('LTS?') }}
</th>
<th scope="col" class="py-3 pl-6 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">
{{ __('Status') }}
</th>
Expand Down Expand Up @@ -56,9 +53,6 @@
: $version->ends_securityfixes_at->translatedFormat(__('DateLongFormat')) }}
@endif
</td>
<td class="py-4 pl-6 text-sm text-gray-500 lg:pl-8 whitespace-nowrap">
{{ $version->is_lts ? '' : '' }}
</td>
<td scope="col">
<div class="{{ $statusClassMap[$version->status] }}">
<span>{{ $statusTextMap[$version->status] }}</span>
Expand Down
6 changes: 0 additions & 6 deletions resources/views/partials/tables/eol_table.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@
<th scope="col" class="py-3 pl-6 text-xs font-medium tracking-wider text-left text-gray-500 uppercase lg:pl-8">
{{ __('Security Fixes Until') }}
</th>
<th scope="col" class="py-3 pl-6 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">
{{ __('LTS?') }}
</th>
<th scope="col" class="py-3 pl-6 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">
{{ __('Status') }}
</th>
Expand Down Expand Up @@ -64,9 +61,6 @@
: ''
}}
</td>
<td class="py-4 pl-6 text-sm text-gray-500 lg:pl-8 whitespace-nowrap">
{{ $version->is_lts ? '' : '' }}
</td>
<td scope="col">
<div class="{{ $statusClassMap[$version->status] }}">
<span>{{ $statusTextMap[$version->status] }}</span>
Expand Down
6 changes: 0 additions & 6 deletions resources/views/partials/tables/show_table.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
<th scope="col" class="py-3 pl-6 text-xs font-medium tracking-wider text-left text-gray-500 uppercase lg:pl-8">
{{ __('Security Fixes Until') }}
</th>
<th scope="col" class="py-3 pl-6 text-xs font-medium tracking-wider text-left text-gray-500 uppercase lg:pl-8">
{{ __('LTS?') }}
</th>
<th scope="col" class="py-3 pl-6 text-xs font-medium tracking-wider text-left text-gray-500 uppercase lg:pl-8">
{{ __('Status') }}
</th>
Expand Down Expand Up @@ -80,9 +77,6 @@
: ''
}}
</td>
<td class="py-4 pl-6 text-sm text-gray-500 whitespace-nowrap">
{{ $version->is_lts ? '' : '' }}
</td>
<td scope="col">
<div class="{{ $statusClassMap[$version->status] }}">
<span>{{ $statusTextMap[$version->status] }}</span>
Expand Down

0 comments on commit 10b12e6

Please sign in to comment.