Skip to content

Commit

Permalink
Fix language sort
Browse files Browse the repository at this point in the history
  • Loading branch information
mfcar committed May 11, 2024
1 parent 8017760 commit 8792a46
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions client/pages/config/rss-feeds.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
<div class="flex -mb-px">
<div
class="w-1/2 h-8 rounded-tl-md relative border border-black-200 flex items-center justify-center cursor-pointer"
:class="!showOpenedFeedsView ? 'text-white bg-bg hover:bg-opacity-60 border-b-bg' : 'text-gray-400 hover:text-gray-300 bg-primary bg-opacity-70 hover:bg-opacity-60'"
:class="showOpenedFeedsView ? 'text-white bg-bg hover:bg-opacity-60 border-b-bg' : 'text-gray-400 hover:text-gray-300 bg-primary bg-opacity-70 hover:bg-opacity-60'"
@click="showOpenedFeedsView = true">
<p class="text-sm">{{$strings.HeaderRSSFeeds}}</p>
</div>
<div
class="w-1/2 h-8 rounded-tr-md relative border border-black-200 flex items-center justify-center -ml-px cursor-pointer"
:class="showOpenedFeedsView ? 'text-white bg-bg hover:bg-opacity-60 border-b-bg' : 'text-gray-400 hover:text-gray-300 bg-primary bg-opacity-70 hover:bg-opacity-60'"
:class="!showOpenedFeedsView ? 'text-white bg-bg hover:bg-opacity-60 border-b-bg' : 'text-gray-400 hover:text-gray-300 bg-primary bg-opacity-70 hover:bg-opacity-60'"
@click="showOpenedFeedsView = false">
<p class="text-sm">{{$strings.HeaderExternalFeedURLHealthChecker}}</p>
</div>
Expand Down
6 changes: 3 additions & 3 deletions client/strings/en-us.json
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,8 @@
"LabelDevice": "Device",
"LabelDeviceInfo": "Device Info",
"LabelDeviceIsAvailableTo": "Device is available to...",
"LabelDisabled": "Disabled",
"LabelDirectory": "Directory",
"LabelDisabled": "Disabled",
"LabelDiscFromFilename": "Disc from Filename",
"LabelDiscFromMetadata": "Disc from Metadata",
"LabelDiscover": "Discover",
Expand All @@ -289,12 +289,12 @@
"LabelExample": "Example",
"LabelExplicit": "Explicit",
"LabelFeedHealthy": "Feed Healthy",
"LabelFeedURL": "Feed URL",
"LabelFeedLastChecked": "Last Checked",
"LabelFeedLastSuccessfulCheck": "Last Successful Check",
"LabelFeedShowOnlyUnhealthy": "Show only unhealthy",
"LabelFeedNextAutomaticCheck": "Next Automatic Check",
"LabelFeedNotWorking": "Feed is returning errors, check the logs for more information",
"LabelFeedShowOnlyUnhealthy": "Show only unhealthy",
"LabelFeedURL": "Feed URL",
"LabelFeedWorking": "Feed working as expected",
"LabelFetchingMetadata": "Fetching Metadata",
"LabelFile": "File",
Expand Down

0 comments on commit 8792a46

Please sign in to comment.