1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-02 21:24:10 +01:00

Fix :list* source links.

This commit is contained in:
Kris Maglione
2011-06-16 09:43:08 -04:00
parent fefe76dfa0
commit 3c15e4d290
2 changed files with 2 additions and 2 deletions

View File

@@ -175,7 +175,7 @@ io.callingShell-1 = Calling shell to execute: %S
io.cantCreateTempFile = Couldn't create temporary file
io.cantEncode = Input contains characters not valid in the current file encoding
io.commandFailed = E472: Command failed
io.definedAt = Defined at %S
io.definedAt = Defined at
io.downloadFinished-2 = Download of %S to %S finished
io.eNotDir = Not a directory
io.exists = File exists (add ! to override)

View File

@@ -496,7 +496,7 @@ var Template = Module("Template", {
let (name = item.name || item.names[0], frame = item.definedAt)
!frame ? name :
template.helpLink(help(item), name, "Title") +
<span highlight="LinkInfo" xmlns:dactyl={NS}>{_("io.definedAt", sourceLink(frame))}</span>
<span highlight="LinkInfo" xmlns:dactyl={NS}>{_("io.definedAt")} {sourceLink(frame)}</span>
}</span>
</td>
{ item.columns ? template.map(item.columns, function (c) <td>{c}</td>) : "" }