Variable: password-word-equivalents
password-word-equivalents is a customizable variable defined in
mule-conf.el.gz.
Value
("password" "passcode" "passphrase" "pass phrase" "pin" "decryption key" "encryption key" "암호" "パスワード" "ପ୍ରବେଶ ସଙ୍କେତ" "ពាក្យសម្ងាត់" "adgangskode" "contraseña" "contrasenya" "geslo" "hasło" "heslo" "iphasiwedi" "jelszó" "lösenord" "lozinka" "mật khẩu" "mot de passe" "parola" "pasahitza" "passord" "passwort" "pasvorto" "salasana" "senha" "slaptažodis" "wachtwoord" "كلمة السر" "ססמה" "лозинка" "пароль" "गुप्तशब्द" "शब्दकूट" "પાસવર્ડ" "సంకేతపదము" "ਪਾਸਵਰਡ" "ಗುಪ್ತಪದ" "கடவுச்சொல்" "അടയാളവാക്ക്" "গুপ্তশব্দ" "পাসওয়ার্ড" "රහස්පදය" "密码" "密碼")
Documentation
List of words equivalent to "password".
This is used by Shell mode and other parts of Emacs to recognize
password prompts, including prompts in languages other than
English. Different case choices should not be assumed to be
included; callers should bind case-fold-search to t.
This variable was added, or its default value changed, in Emacs 27.1.
Source Code
;; Defined in /usr/src/emacs/lisp/international/mule-conf.el.gz
(defcustom password-word-equivalents
'("password" "passcode" "passphrase" "pass phrase" "pin"
"decryption key" "encryption key" ; From ccrypt.
; These are sorted according to the GNU en_US locale.
"암호" ; ko
"パスワード" ; ja
"ପ୍ରବେଶ ସଙ୍କେତ" ; or
"ពាក្យសម្ងាត់" ; km
"adgangskode" ; da
"contraseña" ; es
"contrasenya" ; ca
"geslo" ; sl
"hasło" ; pl
"heslo" ; cs, sk
"iphasiwedi" ; zu
"jelszó" ; hu
"lösenord" ; sv
"lozinka" ; hr, sr
"mật khẩu" ; vi
"mot de passe" ; fr
"parola" ; tr
"pasahitza" ; eu
"passord" ; nb
"passwort" ; de
"pasvorto" ; eo
"salasana" ; fi
"senha" ; pt
"slaptažodis" ; lt
"wachtwoord" ; nl
"كلمة السر" ; ar
"ססמה" ; he
"лозинка" ; sr
"пароль" ; kk, ru, uk
"गुप्तशब्द" ; mr
"शब्दकूट" ; hi
"પાસવર્ડ" ; gu
"సంకేతపదము" ; te
"ਪਾਸਵਰਡ" ; pa
"ಗುಪ್ತಪದ" ; kn
"கடவுச்சொல்" ; ta
"അടയാളവാക്ക്" ; ml
"গুপ্তশব্দ" ; as
"পাসওয়ার্ড" ; bn_IN
"රහස්පදය" ; si
"密码" ; zh_CN
"密碼" ; zh_TW
)
"List of words equivalent to \"password\".
This is used by Shell mode and other parts of Emacs to recognize
password prompts, including prompts in languages other than
English. Different case choices should not be assumed to be
included; callers should bind `case-fold-search' to t."
:type '(repeat string)
:version "27.1"
:group 'processes)