Skip to content

Commit

Permalink
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -57,9 +57,9 @@ export default {
addButton: {
icon: 'icon-add',
classes: [],
text: t('deck', 'Create new board'),
text: t('deck', 'Add board'),
edit: {
text: t('deck', 'new board'),
text: t('deck', 'Add board'),
action: () => {
},
reset: () => {
6 changes: 3 additions & 3 deletions src/components/Controls.vue
Original file line number Diff line number Diff line change
@@ -39,19 +39,19 @@
v-click-outside="hideAddStack">
<Actions v-if="!isAddStackVisible">
<ActionButton icon="icon-add" @click.stop="showAddStack">
{{ t('deck', 'Add new list') }}
{{ t('deck', 'Add list') }}
</ActionButton>
</Actions>
<form v-else @submit.prevent="addNewStack()">
<label for="new-stack-input-main" class="hidden-visually">{{ t('deck', 'Add new list') }}</label>
<label for="new-stack-input-main" class="hidden-visually">{{ t('deck', 'Add list') }}</label>
<input id="new-stack-input-main"
v-model="newStackTitle"
v-focus
type="text"
class="no-close"
:placeholder="t('deck', 'List name')"
required>
<input v-tooltip="t('deck', 'Add new list')"
<input v-tooltip="t('deck', 'Add list')"
class="icon-confirm"
type="submit"
value="">
2 changes: 1 addition & 1 deletion src/components/board/Board.vue
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@
class="no-close"
:placeholder="t('deck', 'List name')"
required>
<input v-tooltip="t('deck', 'Add new list')"
<input v-tooltip="t('deck', 'Add list')"
class="icon-confirm"
type="submit"
value="">
4 changes: 2 additions & 2 deletions src/components/navigation/AppNavigationAddBoard.vue
Original file line number Diff line number Diff line change
@@ -21,15 +21,15 @@
-->
<template>
<AppNavigationItem v-if="!editing"
:title="t('deck', 'Create new board')"
:title="t('deck', 'Add board')"
icon="icon-add"
@click.prevent.stop="startCreateBoard" />
<div v-else class="board-create">
<ColorPicker v-model="color" class="app-navigation-entry-bullet-wrapper">
<div :style="{ backgroundColor: color }" class="color0 icon-colorpicker app-navigation-entry-bullet" />
</ColorPicker>
<form @submit.prevent.stop="createBoard">
<input :placeholder="t('deck', 'New board title')" type="text" required>
<input :placeholder="t('deck', 'Board name')" type="text" required>
<input type="submit" value="" class="icon-confirm">
<Actions><ActionButton icon="icon-close" @click.stop.prevent="cancelEdit" /></Actions>
</form>

0 comments on commit ff32f9c

Please sign in to comment.