Skip to content

Commit 5dc0cf1

Browse files
remove uppercase on various places
1 parent d50e3d4 commit 5dc0cf1

File tree

6 files changed

+19
-22
lines changed

6 files changed

+19
-22
lines changed

src/renderer/components/ChannelDetails/ChannelDetails.vue

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
@keydown.left.right="focusTab('home', $event)"
8989
@keydown.enter.space.prevent="changeTab('home')"
9090
>
91-
{{ $t("Channel.Home.Home").toUpperCase() }}
91+
{{ $t("Channel.Home.Home") }}
9292
</div>
9393
<!-- eslint-disable-next-line vuejs-accessibility/interactive-supports-focus -->
9494
<div
@@ -104,7 +104,7 @@
104104
@keydown.left.right="focusTab('videos', $event)"
105105
@keydown.enter.space.prevent="changeTab('videos')"
106106
>
107-
{{ $t("Channel.Videos.Videos").toUpperCase() }}
107+
{{ $t("Channel.Videos.Videos") }}
108108
</div>
109109
<!-- eslint-disable-next-line vuejs-accessibility/interactive-supports-focus -->
110110
<div
@@ -120,7 +120,7 @@
120120
@keydown.left.right="focusTab('shorts', $event)"
121121
@keydown.enter.space.prevent="changeTab('shorts')"
122122
>
123-
{{ $t("Global.Shorts").toUpperCase() }}
123+
{{ $t("Global.Shorts") }}
124124
</div>
125125
<!-- eslint-disable-next-line vuejs-accessibility/interactive-supports-focus -->
126126
<div
@@ -136,7 +136,7 @@
136136
@keydown.left.right="focusTab('live', $event)"
137137
@keydown.enter.space.prevent="changeTab('live')"
138138
>
139-
{{ $t("Channel.Live.Live").toUpperCase() }}
139+
{{ $t("Channel.Live.Live") }}
140140
</div>
141141
<!-- eslint-disable-next-line vuejs-accessibility/interactive-supports-focus -->
142142
<div
@@ -152,7 +152,7 @@
152152
@keydown.left.right="focusTab('releases', $event)"
153153
@keydown.enter.space.prevent="changeTab('releases')"
154154
>
155-
{{ $t("Channel.Releases.Releases").toUpperCase() }}
155+
{{ $t("Channel.Releases.Releases") }}
156156
</div>
157157
<!-- eslint-disable-next-line vuejs-accessibility/interactive-supports-focus -->
158158
<div
@@ -168,7 +168,7 @@
168168
@keydown.left.right="focusTab('podcasts', $event)"
169169
@keydown.enter.space.prevent="changeTab('podcasts')"
170170
>
171-
{{ $t("Channel.Podcasts.Podcasts").toUpperCase() }}
171+
{{ $t("Channel.Podcasts.Podcasts") }}
172172
</div>
173173
<!-- eslint-disable-next-line vuejs-accessibility/interactive-supports-focus -->
174174
<div
@@ -184,7 +184,7 @@
184184
@keydown.left.right="focusTab('courses', $event)"
185185
@keydown.enter.space.prevent="changeTab('courses')"
186186
>
187-
{{ $t("Channel.Courses.Courses").toUpperCase() }}
187+
{{ $t("Channel.Courses.Courses") }}
188188
</div>
189189
<!-- eslint-disable-next-line vuejs-accessibility/interactive-supports-focus -->
190190
<div
@@ -200,7 +200,7 @@
200200
@keydown.left.right="focusTab('playlists', $event)"
201201
@keydown.enter.space.prevent="changeTab('playlists')"
202202
>
203-
{{ $t("Channel.Playlists.Playlists").toUpperCase() }}
203+
{{ $t("Channel.Playlists.Playlists") }}
204204
</div>
205205
<!-- eslint-disable-next-line vuejs-accessibility/interactive-supports-focus -->
206206
<div
@@ -216,7 +216,7 @@
216216
@keydown.left.right="focusTab('community', $event)"
217217
@keydown.enter.space.prevent="changeTab('community')"
218218
>
219-
{{ $t("Global.Posts").toUpperCase() }}
219+
{{ $t("Global.Posts") }}
220220
</div>
221221
<!-- eslint-disable-next-line vuejs-accessibility/interactive-supports-focus -->
222222
<div
@@ -231,7 +231,7 @@
231231
@keydown.left.right="focusTab('about', $event)"
232232
@keydown.enter.space.prevent="changeTab('about')"
233233
>
234-
{{ $t("Channel.About.About").toUpperCase() }}
234+
{{ $t("Channel.About.About") }}
235235
</div>
236236
</div>
237237

src/renderer/components/FtSubscribeButton/FtSubscribeButton.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ const hideChannelSubscriptions = computed(() => {
182182
})
183183
184184
const subscribedText = computed(() => {
185-
let subscribedValue = (isProfileSubscribed(activeProfile.value) ? t('Channel.Unsubscribe') : t('Channel.Subscribe')).toUpperCase()
185+
let subscribedValue = (isProfileSubscribed(activeProfile.value) ? t('Channel.Unsubscribe') : t('Channel.Subscribe'))
186186
if (props.subscriptionCountText !== '' && !hideChannelSubscriptions.value) {
187187
subscribedValue += ' ' + props.subscriptionCountText
188188
}

src/renderer/components/watch-video-info/watch-video-info.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,15 +176,15 @@ export default defineComponent({
176176
formatTypeOptions: function () {
177177
return [
178178
{
179-
label: this.$t('Change Format.Use Dash Formats').toUpperCase(),
179+
label: this.$t('Change Format.Use Dash Formats'),
180180
value: 'dash'
181181
},
182182
{
183-
label: this.$t('Change Format.Use Legacy Formats').toUpperCase(),
183+
label: this.$t('Change Format.Use Legacy Formats'),
184184
value: 'legacy'
185185
},
186186
{
187-
label: this.$t('Change Format.Use Audio Formats').toUpperCase(),
187+
label: this.$t('Change Format.Use Audio Formats'),
188188
value: 'audio'
189189
}
190190
]

src/renderer/scss-partials/_ft-list-item.scss

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -388,9 +388,7 @@ $watched-transition-duration: 0.5s;
388388
}
389389
}
390390

391-
.videoWatched,
392-
.live,
393-
.upcoming {
391+
.live {
394392
text-transform: uppercase;
395393
user-select: none;
396394
}

src/renderer/views/Subscriptions/Subscriptions.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
font-size: 1.1em;
2929
cursor: pointer;
3030
align-self: flex-end;
31-
text-transform: uppercase;
3231
}
3332

3433
.tab:hover {

src/renderer/views/Trending/Trending.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
class="trendingIcon"
3636
fixed-width
3737
/>
38-
{{ $t("Trending.Default").toUpperCase() }}
38+
{{ $t("Trending.Default") }}
3939
</div>
4040
<!-- eslint-disable-next-line vuejs-accessibility/interactive-supports-focus -->
4141
<div
@@ -56,7 +56,7 @@
5656
class="trendingIcon"
5757
fixed-width
5858
/>
59-
{{ $t("Trending.Music").toUpperCase() }}
59+
{{ $t("Trending.Music") }}
6060
</div>
6161
<!-- eslint-disable-next-line vuejs-accessibility/interactive-supports-focus -->
6262
<div
@@ -77,7 +77,7 @@
7777
class="trendingIcon"
7878
fixed-width
7979
/>
80-
{{ $t("Trending.Gaming").toUpperCase() }}
80+
{{ $t("Trending.Gaming") }}
8181
</div>
8282
<!-- eslint-disable-next-line vuejs-accessibility/interactive-supports-focus -->
8383
<div
@@ -98,7 +98,7 @@
9898
class="trendingIcon"
9999
fixed-width
100100
/>
101-
{{ $t("Trending.Movies").toUpperCase() }}
101+
{{ $t("Trending.Movies") }}
102102
</div>
103103
</FtFlexBox>
104104
<div

0 commit comments

Comments
 (0)