diff options
Diffstat (limited to 'modules/user')
| -rw-r--r-- | modules/user/views/admin_users.html.php | 14 | ||||
| -rw-r--r-- | modules/user/views/admin_users_group.html.php | 8 | ||||
| -rw-r--r-- | modules/user/views/reset_password.html.php | 4 | 
3 files changed, 13 insertions, 13 deletions
| diff --git a/modules/user/views/admin_users.html.php b/modules/user/views/admin_users.html.php index b64f93b1..661f1532 100644 --- a/modules/user/views/admin_users.html.php +++ b/modules/user/views/admin_users.html.php @@ -43,7 +43,7 @@  </script>  <div class="g-block"> -  <h1> <?= t("Users and Groups") ?> </h1> +  <h1> <?= t("Users and groups") ?> </h1>    <div class="g-block-content">      <div class="g-block"> @@ -54,7 +54,7 @@          <?= t("Add a new user") ?>        </a> -      <h2> <?= t("User Admin") ?> </h2> +      <h2> <?= t("User admin") ?> </h2>        <div class="g-block-content">          <table id="g-user-admin-list"> @@ -87,17 +87,17 @@              </td>              <td class="g-actions">                <a href="<?= url::site("admin/users/edit_user_form/$user->id") ?>" -                  open_text="<?= t("close") ?>" +                  open_text="<?= t("Close") ?>"                    class="g-panel-link g-button ui-state-default ui-corner-all ui-icon-left"> -                <span class="ui-icon ui-icon-pencil"></span><span class="g-button-text"><?= t("edit") ?></span></a> +                <span class="ui-icon ui-icon-pencil"></span><span class="g-button-text"><?= t("Edit") ?></span></a>                <? if (identity::active_user()->id != $user->id && !$user->guest): ?>                <a href="<?= url::site("admin/users/delete_user_form/$user->id") ?>"                    class="g-dialog-link g-button ui-state-default ui-corner-all ui-icon-left"> -                <span class="ui-icon ui-icon-trash"></span><?= t("delete") ?></a> +                <span class="ui-icon ui-icon-trash"></span><?= t("Delete") ?></a>                <? else: ?>                <span title="<?= t("This user cannot be deleted")->for_html_attr() ?>"                    class="g-button ui-state-disabled ui-corner-all ui-icon-left"> -                <span class="ui-icon ui-icon-trash"></span><?= t("delete") ?></span> +                <span class="ui-icon ui-icon-trash"></span><?= t("Delete") ?></span>                <? endif ?>              </td>            </tr> @@ -115,7 +115,7 @@        </a>        <h2> -        <?= t("Group Admin") ?> +        <?= t("Group admin") ?>        </h2>        <div class="g-block-content"> diff --git a/modules/user/views/admin_users_group.html.php b/modules/user/views/admin_users_group.html.php index db3645a0..e44cbddd 100644 --- a/modules/user/views/admin_users_group.html.php +++ b/modules/user/views/admin_users_group.html.php @@ -5,11 +5,11 @@    <a href="<?= url::site("admin/users/delete_group_form/$group->id") ?>"      title="<?= t("Delete the %name group", array("name" => $group->name))->for_html_attr() ?>"      class="g-dialog-link g-button ui-state-default ui-corner-all"> -    <span class="ui-icon ui-icon-trash"><?= t("delete") ?></span></a> +    <span class="ui-icon ui-icon-trash"><?= t("Delete") ?></span></a>    <? else: ?>    <a title="<?= t("This default group cannot be deleted")->for_html_attr() ?>"       class="g-dialog-link g-button ui-state-disabled ui-corner-all ui-icon-left"> -    <span class="ui-icon ui-icon-trash"><?= t("delete") ?></span></a> +    <span class="ui-icon ui-icon-trash"><?= t("Delete") ?></span></a>    <? endif ?>  </h4> @@ -23,7 +23,7 @@         class="g-button ui-state-default ui-corner-all ui-icon-left"         title="<?= t("Remove %user from %group group",                array("user" => $user->name, "group" => $group->name))->for_html_attr() ?>"> -      <span class="ui-icon ui-icon-closethick"><?= t("remove") ?></span> +      <span class="ui-icon ui-icon-closethick"><?= t("Remove") ?></span>      </a>      <? endif ?>    </li> @@ -32,7 +32,7 @@  <? else: ?>  <div>    <p> -    <?= t("Drag & drop users from the User Admin above into this group box to add group members.") ?> +    <?= t("Drag & drop users from the \"User admin\" above into this group box to add group members.") ?>    </p>  </div>  <? endif ?> diff --git a/modules/user/views/reset_password.html.php b/modules/user/views/reset_password.html.php index 92ca4917..3afca881 100644 --- a/modules/user/views/reset_password.html.php +++ b/modules/user/views/reset_password.html.php @@ -1,10 +1,10 @@  <?php defined("SYSPATH") or die("No direct script access.") ?>  <html>    <head> -    <title><?= t("Password Reset Request") ?> </title> +    <title><?= t("Password reset request") ?> </title>    </head>    <body> -    <h2><?= t("Password Reset Request") ?> </h2> +    <h2><?= t("Password reset request") ?> </h2>      <p>        <?= t("Hello, %name,", array("name" => $user->full_name ? $user->full_name : $user->name)) ?>      </p> | 
