diff options
Diffstat (limited to 'src/lib/kadm5/str_conv.c')
-rw-r--r-- | src/lib/kadm5/str_conv.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/lib/kadm5/str_conv.c b/src/lib/kadm5/str_conv.c index 5151d1819..b36af1e24 100644 --- a/src/lib/kadm5/str_conv.c +++ b/src/lib/kadm5/str_conv.c @@ -77,22 +77,22 @@ static const char flags_pwsvc_in[] = "pwservice"; static const char flags_md5_in[] = "md5"; static const char flags_ok_to_auth_as_delegate_in[] = "ok-to-auth-as-delegate"; static const char flags_no_auth_data_required_in[] = "no-auth-data-required"; -static const char flags_pdate_out[] = "Not Postdateable"; -static const char flags_fwd_out[] = "Not Forwardable"; -static const char flags_tgtbased_out[] = "No TGT-based requests"; -static const char flags_renew_out[] = "Not renewable"; -static const char flags_proxy_out[] = "Not proxiable"; -static const char flags_dup_skey_out[] = "No DUP_SKEY requests"; -static const char flags_tickets_out[] = "All Tickets Disallowed"; -static const char flags_preauth_out[] = "Preauthentication required"; -static const char flags_hwauth_out[] = "HW authentication required"; -static const char flags_ok_as_delegate_out[] = "OK as Delegate"; -static const char flags_pwchange_out[] = "Password Change required"; -static const char flags_service_out[] = "Service Disabled"; -static const char flags_pwsvc_out[] = "Password Changing Service"; -static const char flags_md5_out[] = "RSA-MD5 supported"; -static const char flags_ok_to_auth_as_delegate_out[] = "Protocol transition with delegation allowed"; -static const char flags_no_auth_data_required_out[] = "No authorization data required"; +static const char flags_pdate_out[] = N_("Not Postdateable"); +static const char flags_fwd_out[] = N_("Not Forwardable"); +static const char flags_tgtbased_out[] = N_("No TGT-based requests"); +static const char flags_renew_out[] = N_("Not renewable"); +static const char flags_proxy_out[] = N_("Not proxiable"); +static const char flags_dup_skey_out[] = N_("No DUP_SKEY requests"); +static const char flags_tickets_out[] = N_("All Tickets Disallowed"); +static const char flags_preauth_out[] = N_("Preauthentication required"); +static const char flags_hwauth_out[] = N_("HW authentication required"); +static const char flags_ok_as_delegate_out[] = N_("OK as Delegate"); +static const char flags_pwchange_out[] = N_("Password Change required"); +static const char flags_service_out[] = N_("Service Disabled"); +static const char flags_pwsvc_out[] = N_("Password Changing Service"); +static const char flags_md5_out[] = N_("RSA-MD5 supported"); +static const char flags_ok_to_auth_as_delegate_out[] = N_("Protocol transition with delegation allowed"); +static const char flags_no_auth_data_required_out[] = N_("No authorization data required"); static const char flags_default_neg[] = "-"; static const char flags_default_sep[] = " "; @@ -189,7 +189,7 @@ krb5_flags_to_string(flags, sep, buffer, buflen) if (flags & flags_table[i].fl_flags) { if (krb5int_buf_len(&buf) > 0) krb5int_buf_add(&buf, sepstring); - krb5int_buf_add(&buf, flags_table[i].fl_output); + krb5int_buf_add(&buf, _(flags_table[i].fl_output)); /* Keep track of what we matched */ pflags |= flags_table[i].fl_flags; } |