Variable: lang-strings

lang-strings is a variable defined in tutorial.el.gz.

Value

(("English"
  (tut-chgdkey . "%s has been rebound, but you can use %s instead")
  (tut-chgdkey2 . "More")
  (tut-chgdhead
   . "\n NOTICE: The main purpose of the Emacs tutorial is to teach you\n the most important standard Emacs commands (key bindings).\n However, your Emacs has been customized by changing some of\n these basic editing commands, so it doesn't correspond to the\n tutorial.  We have inserted colored notices where the altered\n commands have been introduced.")
  (tut-chgdhead2 . "More")))

Documentation

Language specific strings for Emacs.

This is an association list with the keys equal to the strings that can be returned by read-language-name. The elements in the list are themselves association lists with keys that are string ids and values that are the language specific strings.

See get-lang-string for more information.

Source Code

;; Defined in /usr/src/emacs/lisp/tutorial.el.gz
;; Below is some attempt to handle language specific strings. These
;; are currently only used in the tutorial.

(defconst lang-strings
  '(("English" .
     ((tut-chgdkey . "%s has been rebound, but you can use %s instead")
      (tut-chgdkey2 . "More")
      (tut-chgdhead . "
 NOTICE: The main purpose of the Emacs tutorial is to teach you
 the most important standard Emacs commands (key bindings).
 However, your Emacs has been customized by changing some of
 these basic editing commands, so it doesn't correspond to the
 tutorial.  We have inserted colored notices where the altered
 commands have been introduced.")
      (tut-chgdhead2 . "More"))))
  "Language specific strings for Emacs.
This is an association list with the keys equal to the strings
that can be returned by `read-language-name'.  The elements in
the list are themselves association lists with keys that are
string ids and values that are the language specific strings.

See `get-lang-string' for more information.")