@@ -, +, @@ up with nice descriptions --- Koha/Database/Columns.pm | 42 +++++++++++++++++++++++++++------------- 1 file changed, 29 insertions(+), 13 deletions(-) --- a/Koha/Database/Columns.pm +++ a/Koha/Database/Columns.pm @@ -166,19 +166,35 @@ sub columns { "sort2" => __("Sort 2"), "dateenrolled" => __("Registration date"), "dateexpiry" => __("Expiry date"), - "opacnote" => __("OPAC note"), - "borrowernotes" => __("Circulation note"), - "userid" => __("Username"), - "password" => __("Password"), - "flags" => __("System permissions"), - "gonenoaddress" => __("Gone no address flag"), - "lost" => __("Lost card flag"), - "debarred" => __("Restricted [until] flag"), - "debarredcomment" => __("Comment"), - "smsalertnumber" => __("Mobile phone number"), - "privacy" => __("Privacy settings"), - "autorenew_checkouts" => __("Allow auto-renewals"), - }, + "password_expiration_date" => __("Password expiration date"), + "date_renewed" => __("Account renewal date"), + "opacnote" => __("OPAC note"), + "borrowernotes" => __("Circulation note"), + "userid" => __("Username"), + "password" => __("Password"), + "secret" => __("Secret (2FA)"), + "auth_method" => __("Authentication method"), + "flags" => __("System permissions"), + "gonenoaddress" => __("Gone no address flag"), + "lost" => __("Lost card flag"), + "debarred" => __("Restricted [until] flag"), + "debarredcomment" => __("Comment"), + "smsalertnumber" => __("Mobile phone number"), + "sms_provider_id" => __("SMS provier ID (internal)"), + "privacy" => __("Privacy settings"), + "privacy_guarantor_fines" => __("Show fines to guarantor"), + "privacy_guarantor_checkouts" => __("Show checkouts to guarantor"), + "checkprevcheckout" => __("Check for previous checkouts"), + "updated_on" => __("Last update date"), + "lastseen" => __("Last activity date"), + "lang" => __("Preferred language for notices"), + "login_attempts" => __("Number of failed login attempts"), + "overdrive_auth_token" => __("Overdrive auth token"), + "anonymized" => __("Data anonymization flag"), + "autorenew_checkouts" => __("Allow auto-renewals"), + "primary_contact_method" => __("Primary contact method"), + }, + items => { "itemnumber" => __("Item number (internal)"), "biblionumber" => __("Biblio number (internal)"), --