diff --git a/controller/translationcontroller.php b/controller/translationcontroller.php index 0456bfae..068313c0 100644 --- a/controller/translationcontroller.php +++ b/controller/translationcontroller.php @@ -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'), ); diff --git a/sass/vaults.scss b/sass/vaults.scss index b077cba5..cf556b19 100644 --- a/sass/vaults.scss +++ b/sass/vaults.scss @@ -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); diff --git a/templates/views/vaults.html b/templates/views/vaults.html index a7d6ed53..294551af 100644 --- a/templates/views/vaults.html +++ b/templates/views/vaults.html @@ -1,7 +1,11 @@
- test +

{{'vaultlist.introduction.title' | translate}}

+
+ {{'vaultlist.introduction.content.line1' | translate}} +
+ {{'vaultlist.introduction.content.line2' | translate}}