mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 05:53:08 +02:00
Improve usability
This commit is contained in:
parent
cef26853df
commit
9158426d0a
2 changed files with 4 additions and 2 deletions
|
@ -1906,6 +1906,8 @@ pages:
|
||||||
text: "テキスト"
|
text: "テキスト"
|
||||||
multiLineText: "テキスト(複数行)"
|
multiLineText: "テキスト(複数行)"
|
||||||
textList: "テキストのリスト"
|
textList: "テキストのリスト"
|
||||||
|
_textList:
|
||||||
|
info: "ひとつひとつを改行で区切ってください"
|
||||||
add: "+ 足す"
|
add: "+ 足す"
|
||||||
_add:
|
_add:
|
||||||
arg1: "A"
|
arg1: "A"
|
||||||
|
|
|
@ -16,8 +16,8 @@
|
||||||
<section v-else-if="value.type === 'multiLineText'" class="tbwccoaw">
|
<section v-else-if="value.type === 'multiLineText'" class="tbwccoaw">
|
||||||
<textarea v-model="value.value"></textarea>
|
<textarea v-model="value.value"></textarea>
|
||||||
</section>
|
</section>
|
||||||
<section v-else-if="value.type === 'textList'" class="frvuzvoi">
|
<section v-else-if="value.type === 'textList'" class="tbwccoaw">
|
||||||
<ui-textarea v-model="value.value"></ui-textarea>
|
<textarea v-model="value.value" :placeholder="$t('script.blocks._textList.info')"></textarea>
|
||||||
</section>
|
</section>
|
||||||
<section v-else-if="value.type === 'number'" class="tbwccoaw">
|
<section v-else-if="value.type === 'number'" class="tbwccoaw">
|
||||||
<input v-model="value.value" type="number"/>
|
<input v-model="value.value" type="number"/>
|
||||||
|
|
Loading…
Reference in a new issue