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

@@ -2,7 +2,7 @@
<div>
<div class="card shadow-card">
<FormLabel>
{{ $t('Details') }}
{{ $t('details') }}
</FormLabel>
<!--Visible-->
@@ -57,7 +57,7 @@
<p>
{{
$t(
'Price change is not possible. If you would like to change your price or currency, please feel free to create a new plan.'
'price_change_not_possible_create_new'
)
}}
</p>
@@ -65,7 +65,7 @@
</div>
<div class="card shadow-card">
<FormLabel>
{{ $t('Features') }}
{{ $t('features') }}
</FormLabel>
<!--Storage Capacity-->
@@ -91,7 +91,7 @@
</AppInputText>
<!--Team Members-->
<AppInputText :title="$t('Max Team Members')" :description="$t('Type -1 to set unlimited team members.')" is-last="true">
<AppInputText :title="$t('max_team_members')" :description="$t('zero_for_unlimited_members')" is-last="true">
<input
@input="
$updateInput(
@@ -101,7 +101,7 @@
)
"
v-model="plan.attributes.features.max_team_members"
:placeholder="$t('Add max team members in number')"
:placeholder="$t('add_max_team_members')"
type="number"
min="1"
max="999999999"

View File

@@ -2,7 +2,7 @@
<div>
<div class="card shadow-card">
<FormLabel>
{{ $t('Details') }}
{{ $t('details') }}
</FormLabel>
<!--Name-->
@@ -36,14 +36,14 @@
</div>
<div class="card shadow-card">
<FormLabel>
{{ $t('Charged Features') }}
{{ $t('charged_features') }}
</FormLabel>
<!--Bandwidth-->
<AppInputText
v-if="plan.attributes.features.bandwidth"
:title="$t('Bandwidth Price per 1GB')"
:description="$t('Charge your user by the amount of data he upload or download.')"
:title="$t('bandwidth_per_gb')"
:description="$t('bandwidth_per_gb_note')"
class="w-full"
>
<input
@@ -59,8 +59,8 @@
<!--Storage-->
<AppInputText
v-if="plan.attributes.features.storage"
:title="$t('Storage Price per 1GB')"
:description="$t('Charge your user by the amount of data he has stored on the disk per 1GB.')"
:title="$t('storage_per_gb')"
:description="$t('storage_per_gb_note')"
class="w-full"
>
<input
@@ -76,8 +76,8 @@
<!--Member-->
<AppInputText
v-if="plan.attributes.features.member"
:title="$t('Price per 1 Member')"
:description="$t('Charge your user by the total members he use in his Team Folders.')"
:title="$t('member_per_unit')"
:description="$t('member_per_unit_note')"
class="w-full"
>
<input
@@ -91,8 +91,8 @@
<!--Flat Fee-->
<AppInputText
v-if="plan.attributes.features.flatFee"
:title="$t('Flat Fee per Cycle')"
:description="$t('Charge monthly flat fee.')"
:title="$t('flat_fee_unit_gb')"
:description="$t('flat_fee_unit_gb_note')"
class="w-full"
>
<input
@@ -109,7 +109,7 @@
<p>
{{
$t(
'Price change is not possible. If you would like to change your price or currency, please feel free to create a new plan.'
'price_change_not_possible_create_new'
)
}}
</p>

View File

@@ -81,7 +81,7 @@
</td>
<td class="px-3 md:px-1">
<ColorLabel :color="$getSubscriptionStatusColor(row.data.attributes.status)">
{{ row.data.attributes.status }}
{{ $t(row.data.attributes.status) }}
</ColorLabel>
</td>
<td class="px-3 md:px-1">
@@ -160,12 +160,12 @@ export default {
sortable: true,
},
{
label: this.$t('Renews At'),
label: this.$t('renews_at'),
field: 'created_at',
sortable: true,
},
{
label: this.$t('Service'),
label: this.$t('service'),
field: 'driver',
sortable: true,
},
@@ -177,27 +177,27 @@ export default {
sortable: true,
},
{
label: this.$t('Status'),
label: this.$t('status'),
field: 'status',
sortable: true,
},
{
label: this.$t('Note'),
label: this.$t('note'),
field: 'plan.name',
sortable: true,
},
{
label: this.$t('Renews At'),
label: this.$t('renews_at'),
field: 'created_at',
sortable: true,
},
{
label: this.$t('Ends At'),
label: this.$t('ends_at'),
field: 'ends_at',
sortable: true,
},
{
label: this.$t('Service'),
label: this.$t('service'),
field: 'driver',
sortable: true,
},