mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-01-23 06:38:34 +01:00
Fix inconsistent translation sources
This commit is contained in:
parent
406f0095ea
commit
903509b0c6
@ -9,12 +9,12 @@
|
||||
<div class="columns">
|
||||
<div class="column has-nowrap px-0">
|
||||
<!-- selected label -->
|
||||
<span class="has-text-grey mr-1">{{ selectedCount }} {{ $t('commons.selected') }}</span>
|
||||
<span class="has-text-grey mr-1">{{ $t('commons.x_selected', { count: selectedCount }) }}</span>
|
||||
<!-- deselect all -->
|
||||
<button id="btnUnselectAll" @click="$emit('clear-selected')" class="clear-selection delete mr-4" :style="{visibility: selectedCount > 0 ? 'visible' : 'hidden'}" :title="$t('commons.clear_selection')"></button>
|
||||
<!-- select all button -->
|
||||
<button id="btnSelectAll" @click="$emit('select-all')" class="button mr-5 has-line-height p-1 is-ghost has-text-grey" :title="$t('commons.select_all')">
|
||||
<span>{{ $t('commons.all') }}</span>
|
||||
<span>{{ $t('commons.check_all') }}</span>
|
||||
<FontAwesomeIcon class="ml-1" :icon="['fas', 'check-square']" />
|
||||
</button>
|
||||
<!-- sort asc/desc buttons -->
|
||||
|
@ -57,7 +57,7 @@
|
||||
<RouterLink :to="{ name: 'editGroup', params: { groupId: group.id }}" class="has-text-grey px-1" :title="$t('commons.rename')">
|
||||
<FontAwesomeIcon :icon="['fas', 'pen-square']" />
|
||||
</RouterLink>
|
||||
<span class="is-family-primary is-size-6 is-size-7-mobile has-text-grey">{{ group.twofaccounts_count }} {{ $t('twofaccounts.accounts') }}</span>
|
||||
<span class="is-family-primary is-size-6 is-size-7-mobile has-text-grey">{{ $t('groups.x_accounts', { count: group.twofaccounts_count }) }}</span>
|
||||
</div>
|
||||
<div class="mt-2 is-size-7 is-pulled-right">
|
||||
{{ $t('groups.deleting_group_does_not_delete_accounts')}}
|
||||
|
@ -150,7 +150,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<Spinner :isVisible="isFetching && credentials.length === 0" />
|
||||
<h4 class="title is-4 pt-6 has-text-grey-light">{{ $t('settings.options') }}</h4>
|
||||
<h4 class="title is-4 pt-6 has-text-grey-light">{{ $t('auth.webauthn.options') }}</h4>
|
||||
<div class="field">
|
||||
{{ $t('auth.webauthn.need_a_security_device_to_enable_options')}}
|
||||
</div>
|
||||
|
@ -73,6 +73,7 @@
|
||||
Attention! The Email & Password form remains available despite this option being enabled, but it will always return an \'Authentication failed\' response.'
|
||||
],
|
||||
'need_a_security_device_to_enable_options' => 'Set at least one device to enable the following options',
|
||||
'options' => 'Options',
|
||||
],
|
||||
'forms' => [
|
||||
'name' => 'Name',
|
||||
|
@ -30,7 +30,7 @@
|
||||
'clear_search' => 'Clear search',
|
||||
'demo_do_not_post_sensitive_data' => 'This is a demo app, do not post any sensitive data',
|
||||
'testing_do_not_post_sensitive_data' => 'This is a testing app, do not post any sensitive data',
|
||||
'selected' => 'selected',
|
||||
'x_selected' => ':count selected',
|
||||
'name' => 'Name',
|
||||
'manage' => 'Manage',
|
||||
'done' => 'Done',
|
||||
@ -39,6 +39,7 @@
|
||||
'move' => 'Move',
|
||||
'export' => 'Export',
|
||||
'all' => 'All',
|
||||
'check_all' => 'All',
|
||||
'select_all' => 'Select all',
|
||||
'clear_selection' => 'Clear selection',
|
||||
'sort_descending' => 'Sort descending',
|
||||
|
@ -18,6 +18,7 @@
|
||||
'show_group_selector' => 'Show group selector',
|
||||
'hide_group_selector' => 'Hide group selector',
|
||||
'select_accounts_to_show' => 'Select accounts group to show',
|
||||
'x_accounts' => ':count accounts',
|
||||
'manage_groups' => 'Manage groups',
|
||||
'active_group' => 'Active group',
|
||||
'manage_groups_legend' => 'You can create groups to organize your accounts the way you want. All accounts remain visible in the pseudo group named \'All\', regardless of the group they belong to.',
|
||||
|
@ -111,7 +111,7 @@
|
||||
'help' => 'Log out the user automatically in case of inactivity. Has no effect when authentication is handled by a proxy and no custom logout url is specified.'
|
||||
],
|
||||
'use_encryption' => [
|
||||
'label' => 'Protect sensible data',
|
||||
'label' => 'Protect sensitive data',
|
||||
'help' => 'Sensitive data, the 2FA secrets and emails, are stored encrypted in database. Be sure to backup the APP_KEY value of your .env file (or the whole file) as it serves as key encryption. There is no way to decypher encrypted data without this key.',
|
||||
],
|
||||
'default_group' => [
|
||||
|
Loading…
Reference in New Issue
Block a user