mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-10-31 13:03:20 -07:00
fix: typo in commit signing status info
Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
parent
9abda2c6ab
commit
f8f169d23a
1 changed files with 5 additions and 5 deletions
|
@ -36,15 +36,15 @@ namespace SourceGit.Models
|
|||
switch (VerifyResult)
|
||||
{
|
||||
case 'G':
|
||||
return $"Good Signature.\n\nKey: {Key}";
|
||||
return $"Good signature.\n\nKey: {Key}";
|
||||
case 'B':
|
||||
return $"Bad Signature.\n\nKey: {Key}";
|
||||
return $"Bad signature.\n\nKey: {Key}";
|
||||
case 'U':
|
||||
return $"Good Signature with unknown validity.\n\nKey: {Key}";
|
||||
return $"Good signature with unknown validity.\n\nKey: {Key}";
|
||||
case 'X':
|
||||
return $"Good Signature but has expired.\n\nKey: {Key}";
|
||||
return $"Good signature but has expired.\n\nKey: {Key}";
|
||||
case 'Y':
|
||||
return $"Good Signature made by expired key.\n\nKey: {Key}";
|
||||
return $"Good signature made by expired key.\n\nKey: {Key}";
|
||||
case 'R':
|
||||
return $"Good signature made by a revoked key.\n\nKey: {Key}";
|
||||
case 'E':
|
||||
|
|
Loading…
Reference in a new issue