Pārlūkot izejas kodu

org-export: Fix a docstring

* contrib/lisp/org-export.el (org-export-translate): Fix docstring.
Nicolas Goaziou 12 gadi atpakaļ
vecāks
revīzija
e6a88820bf
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      contrib/lisp/org-export.el

+ 2 - 2
contrib/lisp/org-export.el

@@ -4107,8 +4107,8 @@ entry.")
 ENCODING is a symbol among `:ascii', `:html', `:latex', `:latin1'
 and `:utf8'.  INFO is a plist used as a communication channel.
 
-Translation depends on `:language' property.  If no translation
-in found for a given language and a given encoding, return S."
+Translation depends on `:language' property.  Return the
+translated string.  If no translation is found return S."
   (let ((lang (plist-get info :language))
 	(translations (cdr (assoc s org-export-dictionary))))
     (or (plist-get (cdr (assoc lang translations)) encoding) s)))