branch: externals/org commit 9eaca51c510905e0cf4884aa52e4e7c2a4484d41 Author: Ihor Radchenko <yanta...@posteo.net> Commit: Ihor Radchenko <yanta...@posteo.net>
* lisp/org-clock.el (org-clock--translate): Clarify "L" and "ALL" terms Explain in a comment what "L" And "ALL" terms mean in the context of clock table. Reproted-by: em...@supporter.mailer.me --- lisp/org-clock.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/org-clock.el b/lisp/org-clock.el index da19acef6e..ffd911c0a0 100644 --- a/lisp/org-clock.el +++ b/lisp/org-clock.el @@ -567,6 +567,10 @@ of a different task.") Assume S in the English term to translate. Return S as-is if it cannot be translated." (or (nth (pcase s + ;; "L" stands for "Level" + ;; "ALL" stands for a line summarizing clock data across + ;; all the files, when the clocktable includes multiple + ;; files. ("File" 1) ("L" 2) ("Timestamp" 3) ("Headline" 4) ("Time" 5) ("ALL" 6) ("Total time" 7) ("File time" 8) ("Clock summary at" 9)) (assoc-string language org-clock-clocktable-language-setup t))