mirror of
https://github.com/nextcloud/passman.git
synced 2025-09-11 15:34:29 +08:00
Added introductiontext
Signed-off-by: Felix Nüsse <felix.nuesse@t-online.de>
This commit is contained in:
parent
3f72d429be
commit
e9026039c6
3 changed files with 13 additions and 1 deletions
|
@ -444,6 +444,9 @@ class TranslationController extends ApiController {
|
|||
//Vaultlist
|
||||
'vaultlist.create.new' => $this->trans->t('Create a new vault'),
|
||||
'vaultlist.list.title' => $this->trans->t('Vaults:'),
|
||||
'vaultlist.introduction.title' => $this->trans->t('Welcome to Passman!'),
|
||||
'vaultlist.introduction.content.line1' => $this->trans->t('Please select a vault or create a new one.'),
|
||||
'vaultlist.introduction.content.line2' => $this->trans->t('You can also select a default Vault.'),
|
||||
'new.vault.examplename' => $this->trans->t('Vault'),
|
||||
|
||||
);
|
||||
|
|
|
@ -36,6 +36,9 @@
|
|||
}
|
||||
}
|
||||
|
||||
.introduction-title{
|
||||
font-size: x-large;
|
||||
}
|
||||
.appnavigationNoHover{
|
||||
pointer-events: none;
|
||||
}
|
||||
|
@ -50,6 +53,8 @@
|
|||
padding: 30px;
|
||||
|
||||
@include border-radius(5px);
|
||||
|
||||
//https://www.cssmatic.com/box-shadow
|
||||
-webkit-box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.13);
|
||||
-moz-box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.13);
|
||||
box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.13);
|
||||
|
|
|
@ -1,7 +1,11 @@
|
|||
<div class="vault_wrapper">
|
||||
|
||||
<div ng-if="!initialized">
|
||||
test
|
||||
<p class="introduction-title">{{'vaultlist.introduction.title' | translate}}</p>
|
||||
<br>
|
||||
{{'vaultlist.introduction.content.line1' | translate}}
|
||||
<br>
|
||||
{{'vaultlist.introduction.content.line2' | translate}}
|
||||
</div>
|
||||
|
||||
<div ng-if="creating_vault">
|
||||
|
|
Loading…
Add table
Reference in a new issue