translations #106

This commit is contained in:
Alireza Ahmadi
2024-05-15 00:08:50 +02:00
parent b4fcec9477
commit 7d39252fec
44 changed files with 1254 additions and 323 deletions
+9 -5
View File
@@ -15,17 +15,20 @@
</v-text-field>
</v-col>
<v-col cols="12" sm="6" md="4">
<v-text-field
label="Method"
<v-select
:label="$t('transport.httpMethod')"
hide-details
clearable
@click:clear="delete transport.method"
:items="methodList"
v-model="transport.method">
</v-text-field>
</v-select>
</v-col>
</v-row>
<v-row>
<v-col cols="12" sm="6" md="4">
<v-text-field
label="Idle Timeout"
:label="$t('transport.idleTimeout')"
hide-details
type="number"
suffix="s"
@@ -35,7 +38,7 @@
</v-col>
<v-col cols="12" sm="6" md="4">
<v-text-field
label="Ping Timeout"
:label="$t('transport.pingTimeout')"
hide-details
type="number"
suffix="s"
@@ -54,6 +57,7 @@ export default {
props: ['transport'],
data() {
return {
methodList: ['POST', 'GET', 'PUT', 'PATCH', 'DELETE']
}
},
computed: {