added translations

Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
This commit is contained in:
Jakob Röhrl
2020-01-28 10:16:16 +01:00
parent 6bf813b79d
commit 67fdc738d2
5 changed files with 7 additions and 7 deletions

View File

@@ -33,7 +33,7 @@
<ActionButton icon="icon-add" :title="t('deck', 'Add new stack')" @click.stop="showAddStack" />
</Actions>
<form v-else @submit.prevent="addNewStack()">
<label for="new-stack-input-main" class="hidden-visually">Add a new stack</label>
<label for="new-stack-input-main" class="hidden-visually">{{ t('deck', 'Add a new stack') }}</label>
<input id="new-stack-input-main"
v-model="newStackTitle"
type="text"

View File

@@ -52,7 +52,7 @@
</div>
<form v-if="showAddCard" class="stack--card-add" @submit.prevent="clickAddCard()">
<label for="new-stack-input-main" class="hidden-visually">Add a new card</label>
<label for="new-stack-input-main" class="hidden-visually">{{ t('deck', 'Add a new card') }}</label>
<input id="new-stack-input-main"
v-model="newCardTitle"
v-focus

View File

@@ -7,7 +7,7 @@
:key="entry.activity_id"
:activity="entry" />
<button v-if="activityLoadMore" @click="loadMore">
Load More
{{ t('deck', 'Load More') }}
</button>
</div>
</template>

View File

@@ -30,7 +30,7 @@
:activity="entry" />
</div>
<button v-if="activityLoadMore" @click="loadMore">
Load More
{{ t('deck', 'Load More') }}
</button>
</div>
</template>

View File

@@ -32,7 +32,7 @@
</div>
</template>
<div v-else class="suggestion-list__item is-empty">
No users found
{{ t('deck', 'No users found') }}
</div>
</div>
@@ -42,13 +42,13 @@
:comment="comment"
@doReload="loadComments" />
<a @click="loadMore">
Load More
{{ t('deck', 'Load More') }}
</a>
</ul>
<div v-else-if="isLoading" class="icon icon-loading" />
<div v-else class="emptycontent">
<div class="icon-comment" />
<p>Keine Kommentare bisher. Beginne die Diskussion!</p>
<p>{{ t('deck', 'No comments yet. Begin the discussion!') }}</p>
</div>
</div>
</template>