diff options
| author | spiderr <spiderr@bitweaver.org> | 2023-05-06 18:51:13 -0400 |
|---|---|---|
| committer | spiderr <spiderr@bitweaver.org> | 2023-05-06 18:51:13 -0400 |
| commit | cf9b273c033be6a94e221343065dd4c02d0bec5e (patch) | |
| tree | 736e2a6f9af3b56653c77544cf4b5cd25df15bd1 /admin | |
| parent | fc7779d38bc8aa5c856708b6f959569bda7a1aa3 (diff) | |
| parent | 7fd34ea5a72235aac729ea43235aa45259a950c3 (diff) | |
| download | users-cf9b273c033be6a94e221343065dd4c02d0bec5e.tar.gz users-cf9b273c033be6a94e221343065dd4c02d0bec5e.tar.bz2 users-cf9b273c033be6a94e221343065dd4c02d0bec5e.zip | |
Merge branch 'master' of github.com:bitweaver/users
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/index.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/admin/index.php b/admin/index.php index 10ead55..092aca4 100644 --- a/admin/index.php +++ b/admin/index.php @@ -165,18 +165,18 @@ if( isset( $_REQUEST["action"] ) ) { } break; case 'ban': - $gBitSystem->setBrowserTitle( tra( 'Ban user' ) ); + $gBitSystem->setBrowserTitle( tra( 'Disable User' ) ); $msgHash = array( - 'confirm_item' => tra( 'Are you sure you want to ban this user?' ), - 'warning' => tra( 'This will suspend the account for user' )." <strong>$userInfo[real_name] ($userInfo[login])</strong>", + 'confirm_item' => tra( 'Are you sure you want to disable this user account?' ), + 'warning' => tra( 'This will suspend access for user' )." <strong>$userInfo[real_name] ($userInfo[login])</strong>", ); $gBitSystem->confirmDialog( $formHash,$msgHash ); break; case 'unban': - $gBitSystem->setBrowserTitle( tra( 'Unban user' ) ); + $gBitSystem->setBrowserTitle( tra( 'Re-enable user' ) ); $msgHash = array( - 'confirm_item' => tra( 'Are you sure you want to unban this user?' ), - 'warning' => tra( 'This will restore the account for user' )." <strong>$userInfo[real_name] ($userInfo[login])</strong>", + 'confirm_item' => tra( 'Are you sure you want to re-enable this user?' ), + 'warning' => tra( 'This will restore access for user' )." <strong>$userInfo[real_name] ($userInfo[login])</strong>", ); $gBitSystem->confirmDialog( $formHash,$msgHash ); break; |
