[Rt-commit] r8762 - in rt/branches/3.7-EXPERIMENTAL-TUNIS: .
sartak at bestpractical.com
sartak at bestpractical.com
Tue Aug 28 13:54:58 EDT 2007
Author: sartak
Date: Tue Aug 28 13:54:58 2007
New Revision: 8762
Modified:
rt/branches/3.7-EXPERIMENTAL-TUNIS/ (props changed)
rt/branches/3.7-EXPERIMENTAL-TUNIS/html/Elements/RT__Ticket/ColumnMap
Log:
r37487 at onn: sartak | 2007-08-28 13:54:48 -0400
Add loc to each of the bad pubkey messages
Modified: rt/branches/3.7-EXPERIMENTAL-TUNIS/html/Elements/RT__Ticket/ColumnMap
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL-TUNIS/html/Elements/RT__Ticket/ColumnMap (original)
+++ rt/branches/3.7-EXPERIMENTAL-TUNIS/html/Elements/RT__Ticket/ColumnMap Tue Aug 28 13:54:58 2007
@@ -235,10 +235,10 @@
{
my %key = RT::Crypt::GnuPG::GetKeyInfo($email);
if (!defined $key{'info'}) {
- $email .= " (no pubkey!)";
+ $email .= loc(" (no pubkey!)");
}
elsif ($key{'info'}{'TrustLevel'} == 0) {
- $email .= " (untrusted!)";
+ $email .= loc(" (untrusted!)");
}
}
return join ', ', @requestors;
@@ -252,10 +252,10 @@
my $name = $t->OwnerObj->Name;
my %key = RT::Crypt::GnuPG::GetKeyInfo($t->OwnerObj->EmailAddress);
if (!defined $key{'info'}) {
- $name .= " (no pubkey!)";
+ $name .= loc(" (no pubkey!)");
}
elsif ($key{'info'}{'TrustLevel'} == 0) {
- $name .= " (untrusted!)";
+ $name .= loc(" (untrusted!)");
}
return $name;
More information about the Rt-commit
mailing list