]> BookStack Code Mirror - bookstack/blobdiff - resources/views/auth/register-confirm.blade.php
Fixes #354, Adds the spellchecker option
[bookstack] / resources / views / auth / register-confirm.blade.php
index 97fd65ab51238f3df8e6ceca5c0b9593dcc37b0f..364df92664182694c103ebea3757d46576491c13 100644 (file)
@@ -2,7 +2,7 @@
 
 @section('header-buttons')
     @if(!$signedIn)
-        <a href="{{ baseUrl("/login") }}"><i class="zmdi zmdi-sign-in"></i>Sign in</a>
+        <a href="{{ baseUrl("/login") }}"><i class="zmdi zmdi-sign-in"></i>{{ trans('auth.log_in') }}</a>
     @endif
 @stop
 
 
     <div class="text-center">
         <div class="center-box">
-            <h2>Thanks for registering!</h2>
-            <p>Please check your email and click the confirmation button to access {{ setting('app-name', 'BookStack') }}.</p>
+            <h2>{{ trans('auth.register_thanks') }}</h2>
+            <p>{{ trans('auth.register_confirm', ['appName' => setting('app-name')]) }}</p>
         </div>
     </div>
 
-
 @stop