fix(webui): remove text capitalization for some i18n strings

This commit is contained in:
Gauthier Roebroeck 2021-02-22 11:21:44 +08:00
parent 903df1ad26
commit 4c0b24b9ac
4 changed files with 23 additions and 23 deletions

View file

@ -1,6 +1,6 @@
{
"account_settings": {
"account_settings": "account settings",
"account_settings": "Account Settings",
"change_password": "change password"
},
"author_roles": {
@ -104,7 +104,7 @@
"manage_collection": "Manage collection"
},
"common": {
"all_libraries": "All libraries",
"all_libraries": "All Libraries",
"books": "Books",
"books_n": "No book | 1 book | {count} books",
"cancel": "Cancel",
@ -117,7 +117,7 @@
"genre": "Genre",
"go_to_library": "Go to library",
"locale_name": "English",
"locale_rtl" : "false",
"locale_rtl": "false",
"n_selected": "{count} selected",
"nothing_to_show": "Nothing to show",
"pages": "pages",
@ -133,11 +133,11 @@
"year": "year"
},
"dashboard": {
"keep_reading": "keep reading",
"on_deck": "on deck",
"recently_added_books": "recently added books",
"recently_added_series": "recently added series",
"recently_updated_series": "recently updated series"
"keep_reading": "Keep Reading",
"on_deck": "On Deck",
"recently_added_books": "Recently Added Books",
"recently_added_series": "Recently Added Series",
"recently_updated_series": "Recently Updated Series"
},
"dialog": {
"add_to_collection": {
@ -376,9 +376,9 @@
"scan_library_files": "Scan library files"
},
"navigation": {
"home": "home",
"libraries": "libraries",
"logout": "log out"
"home": "Home",
"libraries": "Libraries",
"logout": "Log Out"
},
"page_not_found": {
"go_back_to_home_page": "Go back to home page",
@ -402,7 +402,7 @@
"no_results": "No results"
},
"server_settings": {
"server_settings": "server settings"
"server_settings": "Server Settings"
},
"settings_user": {
"edit_shared_libraries": "Edit shared libraries",

View file

@ -1,7 +1,7 @@
<template>
<v-container fluid class="pa-6">
<v-row>
<span class="text-h5 text-capitalize">{{ $t('account_settings.account_settings') }}</span>
<span class="text-h5">{{ $t('account_settings.account_settings') }}</span>
</v-row>
<v-row align="center">
<v-col cols="12" md="8" lg="6" xl="4">

View file

@ -28,7 +28,7 @@
<horizontal-scroller v-if="inProgressBooks.length !== 0" class="mb-4">
<template v-slot:prepend>
<div class="title text-capitalize">{{ $t('dashboard.keep_reading') }}</div>
<div class="title">{{ $t('dashboard.keep_reading') }}</div>
</template>
<template v-slot:content>
<item-browser :items="inProgressBooks"
@ -43,7 +43,7 @@
<horizontal-scroller v-if="onDeckBooks.length !== 0" class="mb-4">
<template v-slot:prepend>
<div class="title text-capitalize">{{ $t('dashboard.on_deck') }}</div>
<div class="title">{{ $t('dashboard.on_deck') }}</div>
</template>
<template v-slot:content>
<item-browser :items="onDeckBooks"
@ -58,7 +58,7 @@
<horizontal-scroller v-if="newSeries.length !== 0" class="mb-4">
<template v-slot:prepend>
<div class="title text-capitalize">{{ $t('dashboard.recently_added_series') }}</div>
<div class="title">{{ $t('dashboard.recently_added_series') }}</div>
</template>
<template v-slot:content>
<item-browser :items="newSeries"
@ -73,7 +73,7 @@
<horizontal-scroller v-if="updatedSeries.length !== 0" class="mb-4">
<template v-slot:prepend>
<div class="title text-capitalize">{{ $t('dashboard.recently_updated_series') }}</div>
<div class="title">{{ $t('dashboard.recently_updated_series') }}</div>
</template>
<template v-slot:content>
<item-browser :items="updatedSeries"
@ -88,7 +88,7 @@
<horizontal-scroller v-if="latestBooks.length !== 0" class="mb-4">
<template v-slot:prepend>
<div class="title text-capitalize">{{ $t('dashboard.recently_added_books') }}</div>
<div class="title">{{ $t('dashboard.recently_added_books') }}</div>
</template>
<template v-slot:content>
<item-browser :items="latestBooks"

View file

@ -30,7 +30,7 @@
<v-icon>mdi-home</v-icon>
</v-list-item-icon>
<v-list-item-content>
<v-list-item-title class="text-capitalize">{{ $t('navigation.home') }}</v-list-item-title>
<v-list-item-title>{{ $t('navigation.home') }}</v-list-item-title>
</v-list-item-content>
</v-list-item>
@ -39,7 +39,7 @@
<v-icon>mdi-book-multiple</v-icon>
</v-list-item-icon>
<v-list-item-content>
<v-list-item-title class="text-capitalize">{{ $t('navigation.libraries') }}</v-list-item-title>
<v-list-item-title>{{ $t('navigation.libraries') }}</v-list-item-title>
</v-list-item-content>
<v-list-item-action v-if="isAdmin">
<v-btn icon @click.stop.capture.prevent="addLibrary">
@ -74,7 +74,7 @@
<v-icon>mdi-cog</v-icon>
</v-list-item-action>
<v-list-item-content>
<v-list-item-title class="text-capitalize">{{ $t('server_settings.server_settings') }}</v-list-item-title>
<v-list-item-title>{{ $t('server_settings.server_settings') }}</v-list-item-title>
</v-list-item-content>
</v-list-item>
@ -83,7 +83,7 @@
<v-icon>mdi-account</v-icon>
</v-list-item-action>
<v-list-item-content>
<v-list-item-title class="text-capitalize">{{ $t('account_settings.account_settings') }}</v-list-item-title>
<v-list-item-title>{{ $t('account_settings.account_settings') }}</v-list-item-title>
</v-list-item-content>
</v-list-item>
@ -92,7 +92,7 @@
<v-icon>mdi-power</v-icon>
</v-list-item-icon>
<v-list-item-content>
<v-list-item-title class="text-capitalize">{{ $t('navigation.logout') }}</v-list-item-title>
<v-list-item-title>{{ $t('navigation.logout') }}</v-list-item-title>
</v-list-item-content>
</v-list-item>
</v-list>