forked from FoundKeyGang/FoundKey
[Client] Fix #2759
This commit is contained in:
parent
fccbecf159
commit
10fa824f95
2 changed files with 2 additions and 2 deletions
|
@ -174,7 +174,7 @@ common:
|
|||
ai-chan-kawaii: "藍ちゃかわいい"
|
||||
|
||||
auth/views/form.vue:
|
||||
share-access: "<i>{{ app.name }}</i>があなたのアカウントにアクセスすることを<b>許可</b>しますか?"
|
||||
share-access: "<i>{{name}}</i>があなたのアカウントにアクセスすることを許可しますか?"
|
||||
permission-ask: "このアプリは次の権限を要求しています:"
|
||||
account-read: "アカウントの情報を見る。"
|
||||
account-write: "アカウントの情報を操作する。"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div class="form">
|
||||
<header>
|
||||
<h1>{{ $t('share-access') }}</h1>
|
||||
<h1 v-html="$t('share-access', { name: app.name })"></h1>
|
||||
<img :src="app.iconUrl"/>
|
||||
</header>
|
||||
<div class="app">
|
||||
|
|
Loading…
Reference in a new issue