Skip to content
Snippets Groups Projects
Commit dff6100a authored by Daniel Kochmański's avatar Daniel Kochmański
Browse files

translate: fix typo

parent 54b372cb
No related branches found
No related tags found
No related merge requests found
......@@ -88,13 +88,13 @@ curly brackets."
(cond
((null language) phrase)
(T (ensure-language language T)
(with-language language (dict missing missing-fn)
(with-language language (dictionary missing missing-fn)
(declare (ignore missing))
(multiple-value-bind (result found?)
(gethash phrase dictionary
(funcall missing-fn phrase))
(unless found?
(pushnew phrase (second lang) :test 'equal)
(pushnew phrase missing :test 'equal)
(warn "Phrase \"~A\" isn't defined for language ~A."
phrase language))
result)))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment