[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/org 9eaca51c51 1/5: * lisp/org-clock.el (org-clock--tra
From: |
ELPA Syncer |
Subject: |
[elpa] externals/org 9eaca51c51 1/5: * lisp/org-clock.el (org-clock--translate): Clarify "L" and "ALL" terms |
Date: |
Fri, 15 Sep 2023 06:58:32 -0400 (EDT) |
branch: externals/org
commit 9eaca51c510905e0cf4884aa52e4e7c2a4484d41
Author: Ihor Radchenko <yantar92@posteo.net>
Commit: Ihor Radchenko <yantar92@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: emacs@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))