diff --git a/themes/blueprint/templates/myresearch/newpassword.phtml b/themes/blueprint/templates/myresearch/newpassword.phtml
index 28667d974a5b7eff717f508933230c3890b04676..92f10533e5b50ff4dea42af38b29ccb75aa14772 100644
--- a/themes/blueprint/templates/myresearch/newpassword.phtml
+++ b/themes/blueprint/templates/myresearch/newpassword.phtml
@@ -12,7 +12,7 @@
       <input type="hidden" value="<?=$this->escapeHtmlAttr($this->username) ?>" name="username"/>
       <input type="hidden" value="<?=$this->escapeHtmlAttr($this->auth_method) ?>" name="auth_method"/>
       <?=$this->recaptcha()->html($this->useRecaptcha) ?>
-      <input name="submit" type="submit"/>
+      <input name="submit" type="submit" value="<?=$this->transEsc('Submit')?>"/>
     </form>
   <? endif; ?>
 </div>
diff --git a/themes/bootstrap/templates/Auth/AbstractBase/login.phtml b/themes/bootstrap/templates/Auth/AbstractBase/login.phtml
index 67db25569348f15d6528e42029f7bc4661242537..2b531a0fed42029bea706fe203ec196da17daf23 100644
--- a/themes/bootstrap/templates/Auth/AbstractBase/login.phtml
+++ b/themes/bootstrap/templates/Auth/AbstractBase/login.phtml
@@ -9,7 +9,7 @@
         <? if ($account->supportsCreation()): ?>
           <a class="btn btn-link createAccountLink" href="<?=$this->url('myresearch-account') ?>?auth_method=<?=$this->auth()->getActiveAuthMethod()?>"><?=$this->transEsc('Create New Account')?></a>
         <? endif; ?>
-        <input class="btn btn-primary" type="submit" name="processLogin" value="Login">
+        <input class="btn btn-primary" type="submit" name="processLogin" value="<?=$this->transEsc('Login')?>">
         <? if ($account->supportsRecovery()): ?>
           <br/>
           <a class="btn btn-link" href="<?=$this->url('myresearch-recover') ?>?auth_method=<?=$this->auth()->getActiveAuthMethod()?>"><?=$this->transEsc('Forgot Password')?></a>
diff --git a/themes/bootstrap/templates/myresearch/newpassword.phtml b/themes/bootstrap/templates/myresearch/newpassword.phtml
index cff6c5e0d9d755952d2730b96212882d46296f1c..cdb2d5d94abb3af2c2abd745c5db1e65c201a280 100644
--- a/themes/bootstrap/templates/myresearch/newpassword.phtml
+++ b/themes/bootstrap/templates/myresearch/newpassword.phtml
@@ -14,7 +14,7 @@
       <?=$this->recaptcha()->html($this->useRecaptcha) ?>
       <div class="control-group">
         <div class="controls">
-          <input class="btn" name="submit" type="submit"/>
+          <input class="btn" name="submit" type="submit" value="<?=$this->transEsc('Submit')?>"/>
         </div>
       </div>
     </form>
diff --git a/themes/bootstrap3/templates/Auth/AbstractBase/login.phtml b/themes/bootstrap3/templates/Auth/AbstractBase/login.phtml
index 40b093d0260618cfee0cf64ee14a4f8b26ff54fa..6046ca9a4eeb0ef7a3da055ed48502c136867793 100644
--- a/themes/bootstrap3/templates/Auth/AbstractBase/login.phtml
+++ b/themes/bootstrap3/templates/Auth/AbstractBase/login.phtml
@@ -9,7 +9,7 @@
         <? if ($account->supportsCreation()): ?>
           <a class="btn btn-link createAccountLink" href="<?=$this->url('myresearch-account') ?>?auth_method=<?=$this->auth()->getActiveAuthMethod()?>"><?=$this->transEsc('Create New Account')?></a>
         <? endif; ?>
-        <input class="btn btn-primary" type="submit" name="processLogin" value="Login">
+        <input class="btn btn-primary" type="submit" name="processLogin" value="<?=$this->transEsc('Login')?>">
         <? if ($account->supportsRecovery()): ?>
           <br/>
           <a class="btn btn-link" href="<?=$this->url('myresearch-recover') ?>?auth_method=<?=$this->auth()->getActiveAuthMethod()?>"><?=$this->transEsc('Forgot Password')?></a>
diff --git a/themes/bootstrap3/templates/myresearch/cataloglogin.phtml b/themes/bootstrap3/templates/myresearch/cataloglogin.phtml
index 8ddcfcf65e3b91a00894e4dfb8bab9966b0e3b41..dda95948a511b991405d9f1c0c3c6770bb839b46 100644
--- a/themes/bootstrap3/templates/myresearch/cataloglogin.phtml
+++ b/themes/bootstrap3/templates/myresearch/cataloglogin.phtml
@@ -35,7 +35,7 @@
     </div>
     <div class="form-group">
       <div class="col-sm-offset-2 col-sm-10">
-        <input class="btn btn-primary" type="submit" name="processLogin" value="Login">
+        <input class="btn btn-primary" type="submit" name="processLogin" value="<?=$this->transEsc('Login')?>">
       </div>
     </div>
   </form>
diff --git a/themes/bootstrap3/templates/myresearch/newpassword.phtml b/themes/bootstrap3/templates/myresearch/newpassword.phtml
index 498bbcb311e8be6ae965bc1316ca2a1db97a28dc..0d934fae3ba2e933110e23d5104a7ef810cd0b79 100644
--- a/themes/bootstrap3/templates/myresearch/newpassword.phtml
+++ b/themes/bootstrap3/templates/myresearch/newpassword.phtml
@@ -18,7 +18,7 @@
     <?=$this->recaptcha()->html($this->useRecaptcha) ?>
     <div class="form-group">
       <div class="col-sm-9 col-sm-offset-3">
-        <input class="btn btn-primary" name="submit" type="submit"/>
+        <input class="btn btn-primary" name="submit" type="submit" value="<?=$this->transEsc('Submit')?>" />
       </div>
     </div>
   </form>