language strings updates

This commit is contained in:
Čarodej
2022-03-20 12:12:09 +01:00
parent 98d9f3ab0d
commit 881facc867
121 changed files with 1729 additions and 1400 deletions

View File

@@ -36,7 +36,7 @@
</div>
<div v-if="app" class="card shadow-card">
<FormLabel>
{{ $t('Branding') }}
{{ $t('branding') }}
</FormLabel>
<AppInputText :title="$t('admin_settings.appearance.logo')">
@@ -47,7 +47,7 @@
/>
</AppInputText>
<AppInputText :title="$t('App Logo Dark Mode (optional)')">
<AppInputText :title="$t('app_logo_dark_mode')">
<ImageInput
@input="$updateImage('/admin/settings', 'app_logo_dark', app.logo_dark)"
:image="$getImage(app.logo_dark)"
@@ -63,7 +63,7 @@
/>
</AppInputText>
<AppInputText :title="$t('App Logo Horizontal Dark Mode (optional)')">
<AppInputText :title="$t('app_logo_horizontal_dark_mode')">
<ImageInput
@input="$updateImage('/admin/settings', 'app_logo_horizontal_dark', app.logo_horizontal_dark)"
:image="$getImage(app.logo_horizontal_dark)"

View File

@@ -10,7 +10,7 @@
class="card shadow-card"
>
<FormLabel icon="wifi">
{{ $t('Broadcasting') }}
{{ $t('broadcasting') }}
</FormLabel>
<ValidationProvider tag="div" mode="passive" name="Broadcast Driver" rules="required" v-slot="{ errors }">
@@ -106,7 +106,7 @@
button-style="theme"
class="w-full sm:w-auto"
>
{{ $t('Save Broadcast Settings') }}
{{ $t('save_broadcast_settings') }}
</ButtonBase>
</ValidationObserver>
@@ -119,7 +119,7 @@
class="card shadow-card"
>
<FormLabel icon="hard-drive">
{{ $t('Storage Driver') }}
{{ $t('storage_driver') }}
</FormLabel>
<ValidationProvider
@@ -224,7 +224,7 @@
button-style="theme"
class="w-full sm:w-auto"
>
{{ $t('Save Storage Settings') }}
{{ $t('save_storage_settings') }}
</ButtonBase>
</ValidationObserver>
@@ -236,7 +236,7 @@
tag="form"
class="card shadow-card"
>
<FormLabel icon="mail">{{ $t('Mail Driver') }}</FormLabel>
<FormLabel icon="mail">{{ $t('mail_driver') }}</FormLabel>
<ValidationProvider tag="div" mode="passive" name="Mail Driver" rules="required" v-slot="{ errors }">
<AppInputText title="Mail Driver" :error="errors[0]">
@@ -244,7 +244,7 @@
v-model="mailDriver"
:default="mailDriver"
:options="mailDriverList"
placeholder="Select your mail driver"
:placeholder="$t('select_mail_driver')"
:isError="errors[0]"
/>
</AppInputText>
@@ -846,7 +846,7 @@ export default {
.then(() => {
events.$emit('toaster', {
type: 'success',
message: this.$t('Your broadcast driver was updated.'),
message: this.$t('broadcast_driver_updated'),
})
})
.catch(() => {
@@ -885,7 +885,7 @@ export default {
.then(() => {
events.$emit('toaster', {
type: 'success',
message: this.$t('Your storage driver was updated.'),
message: this.$t('storage_driver_updated'),
})
})
.catch(() => {

View File

@@ -4,12 +4,12 @@
<div class="form block-form">
<div class="card shadow-card">
<FormLabel>
{{ $t('Homepage') }}
{{ $t('homepage') }}
</FormLabel>
<AppInputSwitch
:title="$t('Allow Homepage')"
:description="$t('When this is turned on, your visitors can visit your default homepage.')"
:title="$t('allow_homepage')"
:description="$t('allow_homepage_note')"
:is-last="true"
>
<SwitchInput

View File

@@ -3,7 +3,7 @@
<!--Store & Upload-->
<div v-if="app" class="card shadow-card">
<FormLabel>
{{ $t('Storage & Upload') }}
{{ $t('storage_upload') }}
</FormLabel>
<!--Available only when is not metered billing-->
@@ -71,8 +71,8 @@
</FormLabel>
<AppInputSwitch
:title="$t('Allow ReCaptcha')"
:description="$t('ReCaptcha will be allowed on Registration and Contact Us forms.')"
:title="$t('allow_recaptcha')"
:description="$t('allow_recaptcha_note')"
:is-last="!recaptcha.allowedService"
>
<SwitchInput
@@ -90,7 +90,7 @@
:class="{ 'mb-4': recaptcha.isVisibleCredentialsForm }"
>
<edit2-icon size="12" class="vue-feather text-theme mr-2" />
<b class="text-xs">{{ $t('Update Your Credentials') }}</b>
<b class="text-xs">{{ $t('update_your_credentials') }}</b>
</div>
<!--Set up recaptcha credentials-->
@@ -103,7 +103,7 @@
class="rounded-xl p-5 shadow-lg"
>
<FormLabel v-if="!config.isRecaptchaConfigured" icon="shield">
{{ $t('Configure Credentials') }}
{{ $t('configure_your_credentials') }}
</FormLabel>
<ValidationProvider tag="div" mode="passive" name="Site Key" rules="required" v-slot="{ errors }">
@@ -137,7 +137,7 @@
type="submit"
class="w-full"
>
{{ $t('Store Credentials') }}
{{ $t('store_credentials') }}
</ButtonBase>
</ValidationObserver>
</div>
@@ -145,12 +145,12 @@
<!--Other Settings-->
<div v-if="app" class="card shadow-card">
<FormLabel>
{{ $t('Application') }}
{{ $t('application') }}
</FormLabel>
<AppInputButton
:title="$t('Cache')"
:description="$t('Did you change anything in your .env file? Then clear your cache.')"
:title="$t('cache')"
:description="$t('cache_note')"
>
<ButtonBase
@click.native="flushCache"
@@ -187,15 +187,15 @@
<!-- Subscription -->
<div v-if="app" class="card shadow-card">
<FormLabel icon="credit-card">
{{ $t('Subscription') }}
{{ $t('subscription') }}
</FormLabel>
<AppInputText :title="$t('Subscription Type')" :description="$t('Please do not change in production environment.')" :is-last="true">
<AppInputText :title="$t('subscription_type')" :description="$t('subscription_type_note')" :is-last="true">
<SelectInput
@change="subscriptionTypeChange"
:default="app.subscriptionType"
:options="subscriptionTypes"
:placeholder="$t('Select your subscription type')"
:placeholder="$t('select_subscription_type')"
/>
</AppInputText>
</div>
@@ -255,9 +255,9 @@ export default {
methods: {
subscriptionTypeChange(type) {
events.$emit('confirm:open', {
title: this.$t('Are you sure you want to change subscription type?'),
title: this.$t(''),
message: this.$t(
'We strongly do not recommend change this value if there is any subscribed user to prevent any failures. You can operate only with one type of subscription and you can not change it on the fly!'
'subscription_type_change_warn_description'
),
action: {
type: type,

View File

@@ -33,7 +33,7 @@
<FormLabel icon="list">Latest Server Logs</FormLabel>
<InfoBox v-if="!logs.length" class="!mb-0">
<p v-html="$t('There is not any server log.')"></p>
<p v-html="$t('there_is_not_log')"></p>
</InfoBox>
<div
@@ -58,11 +58,11 @@
<FormLabel icon="database"> Latest Database Backups </FormLabel>
<InfoBox v-if="!backups.length" class="!mb-0">
<p v-html="$t('There is not any database backup stored.')"></p>
<p v-html="$t('there_is_not_database_backup')"></p>
</InfoBox>
<InfoBox v-if="backups.length" class="!mb-3">
<p v-html="$t('You can find your backups in <b>/storage/app/app-backups</b>.')"></p>
<p v-html="$t('backup_path')"></p>
</InfoBox>
<div

View File

@@ -19,8 +19,8 @@
</AppInputSwitch>
<AppInputSwitch
:title="$t('Require Email Verification')"
:description="$t('admin_settings.others.allow_user_verification_help')"
:title="$t('require_email_verification')"
:description="$t('require_email_verification_note')"
:is-last="true"
>
<SwitchInput
@@ -64,7 +64,7 @@
:class="{ 'mb-4': facebook.isVisibleCredentialsForm }"
>
<edit2-icon size="12" class="vue-feather text-theme mr-2" />
<b class="text-xs">{{ $t('Update Your Credentials') }}</b>
<b class="text-xs">{{ $t('update_your_credentials') }}</b>
</div>
<!--Set up facebook credentials-->
@@ -113,7 +113,7 @@
type="submit"
class="w-full"
>
{{ $t('Store Credentials') }}
{{ $t('store_credentials') }}
</ButtonBase>
</ValidationObserver>
</div>
@@ -150,7 +150,7 @@
:class="{ 'mb-4': google.isVisibleCredentialsForm }"
>
<edit2-icon size="12" class="vue-feather text-theme mr-2" />
<b class="text-xs">{{ $t('Update Your Credentials') }}</b>
<b class="text-xs">{{ $t('update_your_credentials') }}</b>
</div>
<!--Set up Google credentials-->
@@ -197,7 +197,7 @@
type="submit"
class="w-full"
>
{{ $t('Store Credentials') }}
{{ $t('store_credentials') }}
</ButtonBase>
</ValidationObserver>
</div>
@@ -234,7 +234,7 @@
:class="{ 'mb-4': github.isVisibleCredentialsForm }"
>
<edit2-icon size="12" class="vue-feather text-theme mr-2" />
<b class="text-xs">{{ $t('Update Your Credentials') }}</b>
<b class="text-xs">{{ $t('update_your_credentials') }}</b>
</div>
<!--Set up github credentials-->
@@ -281,7 +281,7 @@
type="submit"
class="w-full"
>
{{ $t('Store Credentials') }}
{{ $t('store_credentials') }}
</ButtonBase>
</ValidationObserver>
</div>