Localize new strings (#445)

This commit is contained in:
sephrat
2021-05-30 01:25:20 +02:00
committed by GitHub
parent 39baca4462
commit 5c035ec644
11 changed files with 48 additions and 26 deletions

View File

@@ -6,25 +6,25 @@
<v-icon left>
mdi-heart
</v-icon>
Support
{{$t('about.support')}}
</v-btn>
<v-btn href="https://github.com/hay-kot" target="_blank" class="mx-1" color="secondary">
<v-icon left>
mdi-github
</v-icon>
Github
{{$t('about.github')}}
</v-btn>
<v-btn href="https://hay-kot.dev" target="_blank" class="mx-1" color="secondary">
<v-icon left>
mdi-account
</v-icon>
Portfolio
{{$t('about.portfolio')}}
</v-btn>
<v-btn href="https://hay-kot.github.io/mealie/" target="_blank" class="mx-1" color="secondary">
<v-icon left>
mdi-folder-outline
</v-icon>
Docs
{{$t('about.docs')}}
</v-btn>
<v-spacer></v-spacer>
</v-app-bar>

View File

@@ -21,7 +21,7 @@
/>
</div>
<v-subheader>USERS</v-subheader>
<v-subheader>{{$t('user.users-header')}}</v-subheader>
<v-divider></v-divider>
<v-virtual-scroll v-if="currentGroup.users" :items="currentGroup.users" height="257" item-height="64">

View File

@@ -15,7 +15,7 @@
<v-spacer v-if="!isMobile"> </v-spacer>
</div>
<v-card-text>
<CardSection :sortable="true" title="Unorganized" :recipes="shownRecipes" @sort="assignSorted" />
<CardSection :sortable="true" :title="$t('settings.toolbox.unorganized')" :recipes="shownRecipes" @sort="assignSorted" />
</v-card-text>
</v-card>
</template>