fix: translations
This commit is contained in:
parent
cf5299a5fc
commit
52f2974364
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<a-modal
|
||||
v-model="visible"
|
||||
:title="trans('Create request') + ' (Enter your account credentials)'"
|
||||
:title="trans('Create request') + ' ' + trans('Account credentials')"
|
||||
:after-close="() => $emit('close')"
|
||||
:destroy-on-close="true"
|
||||
:width="960"
|
||||
|
|
@ -48,12 +48,12 @@
|
|||
|
||||
<!-- Warning text -->
|
||||
<div class="w-4/12 warning-text not-registered" v-show="warningMessages.notRegistered">
|
||||
<p>You have to be resgistered and have enough money on your balance to make a request.</p>
|
||||
<p>Not Registered? <a href="http://birzha#register" class="font-bold text-primary">Click here</a></p>
|
||||
<p>{{ trans('Need to be registered') }}</p>
|
||||
<p>{{ trans('Not registered') }} <a href="http://birzha#register" class="font-bold text-primary">{{ trans('Click here') }}</a></p>
|
||||
</div>
|
||||
<div class="w-4/12 warning-text low-balance" v-show="warningMessages.lowBalance">
|
||||
<p>Low balance. Please fill up your balance.</p>
|
||||
<p>Not Registered? <a href="http://birzha/tm/balance" class="font-bold text-primary">Click here</a></p>
|
||||
<p>{{ trans('Fill balance') }}</p>
|
||||
<p>{{ trans('Low balance') }} <a href="http://birzha/tm/balance" class="font-bold text-primary">{{ trans('Click here') }}</a></p>
|
||||
</div>
|
||||
<!-- Warning text end -->
|
||||
</div>
|
||||
|
|
@ -62,17 +62,17 @@
|
|||
<div class="flex space-x-3 border-t pt-4 border-gray-300">
|
||||
<div class="w-8/12">
|
||||
<a-form-item
|
||||
:label="'First name'"
|
||||
:label="trans('First name')"
|
||||
>
|
||||
<a-input v-model="form.first_name" :placeholder="'First name'" />
|
||||
<a-input v-model="form.first_name" :placeholder="trans('First name')" />
|
||||
<template v-if="validationErrorsObj.first_name">
|
||||
<span class="validation-error" v-for="item in validationErrorsObj.first_name" :key="item">{{ item }}</span>
|
||||
</template>
|
||||
</a-form-item>
|
||||
<a-form-item
|
||||
:label="'Last name'"
|
||||
:label="trans('Last name')"
|
||||
>
|
||||
<a-input v-model="form.last_name" :placeholder="'Last name'" />
|
||||
<a-input v-model="form.last_name" :placeholder="trans('Last name')" />
|
||||
<template v-if="validationErrorsObj.last_name">
|
||||
<span class="validation-error" v-for="item in validationErrorsObj.last_name" :key="item">{{ item }}</span>
|
||||
</template>
|
||||
|
|
@ -86,9 +86,9 @@
|
|||
</template>
|
||||
</a-form-item>
|
||||
<a-form-item
|
||||
:label="'Organization type'"
|
||||
:label="trans('Organization type')"
|
||||
>
|
||||
<a-input v-model="form.org_type" :placeholder="'Organization type'" />
|
||||
<a-input v-model="form.org_type" :placeholder="trans('Organization type')" />
|
||||
<template v-if="validationErrorsObj.org_type">
|
||||
<span class="validation-error" v-for="item in validationErrorsObj.org_type" :key="item">{{ item }}</span>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -59,5 +59,14 @@
|
|||
"Count": "Count",
|
||||
"Edit": "Edit",
|
||||
"Internal": "Internal",
|
||||
"External": "External"
|
||||
"External": "External",
|
||||
"Account credentials": "(Enter your account credentials)",
|
||||
"Need to be registered": "You have to be registered and have enough money on your balance to make a request.",
|
||||
"Not registered": "Not Registered?",
|
||||
"Click here": "Click here",
|
||||
"Low balance": "Low balance?",
|
||||
"Fill balance": "Please fill up your balance.",
|
||||
"First name": "First name",
|
||||
"Last name": "Last name",
|
||||
"Organization type": "Organization type"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -59,5 +59,14 @@
|
|||
"Count": "Кол.во",
|
||||
"Edit": "Изменить",
|
||||
"Internal": "Внутренний",
|
||||
"External": "Внешний"
|
||||
"External": "Внешний",
|
||||
"Account credentials": "(Введите данные личного кабинета)",
|
||||
"Need to be registered": "Вы должны быть зарегистрированы и иметь достаточно денег на вашем балансе, чтобы отправить запрос.",
|
||||
"Not registered": "Не зарегистрированы?",
|
||||
"Click here": "Нажмите сюда",
|
||||
"Low balance": "Низкий баланс?",
|
||||
"Fill balance": "Пожалуйста, пополните баланс.",
|
||||
"First name": "Имя",
|
||||
"Last name": "Фамилия",
|
||||
"Organization type": "Тип организации"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -59,5 +59,14 @@
|
|||
"Count": "Sany",
|
||||
"Edit": "Üýtgetmek",
|
||||
"Internal": "Içerki",
|
||||
"External": "Daşarky"
|
||||
"External": "Daşarky",
|
||||
"Account credentials": "(Hasabyňyzyň maglumatyny giriziň)",
|
||||
"Need to be registered": "Siz agza bolmaly we arza ugratmak üçin balansyňyzda yeterlik pul bolmalydyr.",
|
||||
"Not registered": "Agza bolmadyňyzmy?",
|
||||
"Click here": "Geçiň",
|
||||
"Low balance": "Balansyňyz pesmi?",
|
||||
"Fill balance": "Balansyňyzy doldurmagyňyzy haýyş edýäris.",
|
||||
"First name": "Adyňyz",
|
||||
"Last name": "Familiýaňyz",
|
||||
"Organization type": "Edaraň görnüşi"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue