add translatable strings

This commit is contained in:
Jonas Heinrich 2020-10-18 11:49:17 +02:00
parent bac18abbc1
commit e3893c1cb7
3 changed files with 10 additions and 8 deletions

View File

@ -4,7 +4,9 @@
<AppContent> <AppContent>
<Breadcrumbs class="breadcrumbs"> <Breadcrumbs class="breadcrumbs">
<Breadcrumb title="Home" href="/" /> <Breadcrumb title="Home" href="/" />
<Breadcrumb title="Top" href="/Top" /> <Breadcrumb
:title="t('radio', 'Top')"
href="/Top" />
</Breadcrumbs> </Breadcrumbs>
<Table <Table
:station-data="tableData" :station-data="tableData"

View File

@ -4,19 +4,19 @@
<AppNavigationItem <AppNavigationItem
:to="{ name: 'TOP' }" :to="{ name: 'TOP' }"
icon="icon-category-dashboard" icon="icon-category-dashboard"
title="Top" /> :title="t('radio', 'Top')" />
<AppNavigationItem <AppNavigationItem
:to="{ name: 'RECENT' }" :to="{ name: 'RECENT' }"
icon="icon-category-monitoring" icon="icon-category-monitoring"
title="Recent" /> :title="t('radio', 'Recent')" />
<AppNavigationItem <AppNavigationItem
:to="{ name: 'FAVORITES' }" :to="{ name: 'FAVORITES' }"
icon="icon-favorite" icon="icon-favorite"
title="Favorites" /> :title="t('radio', 'Favorites')" />
<AppNavigationItem <AppNavigationItem
:to="{ name: 'CATEGORIES' }" :to="{ name: 'CATEGORIES' }"
icon="icon-files-dark" icon="icon-files-dark"
title="Categories" /> :title="t('radio', 'Categories')" />
</template> </template>
<template #footer> <template #footer>
<Player :pinned="true" /> <Player :pinned="true" />

View File

@ -4,7 +4,7 @@
<tr> <tr>
<th /> <th />
<th class="nameColumn"> <th class="nameColumn">
Name {{ t('radio', 'Name') }}
</th> </th>
<th /> <th />
</tr> </tr>
@ -23,10 +23,10 @@
<td class="actionColumn"> <td class="actionColumn">
<Actions> <Actions>
<ActionButton icon="icon-star" :close-after-click="true"> <ActionButton icon="icon-star" :close-after-click="true">
Add to favorites {{ t('radio', 'Add to favorites') }}
</ActionButton> </ActionButton>
<ActionButton icon="icon-info" :close-after-click="true"> <ActionButton icon="icon-info" :close-after-click="true">
Details {{ t('radio', 'Details') }}
</ActionButton> </ActionButton>
</Actions> </Actions>
</td> </td>