diff --git a/locking/locks.go b/locking/locks.go index 21e992df..babe8dde 100644 --- a/locking/locks.go +++ b/locking/locks.go @@ -156,7 +156,7 @@ func getAbsolutePath(p string) (string, error) { func (c *Client) UnlockFile(path string, force bool) error { id, err := c.lockIdFromPath(path) if err != nil { - return errors.New(tr.Tr.Get("unable to get lock id: %v", err)) + return errors.New(tr.Tr.Get("unable to get lock ID: %v", err)) } return c.UnlockFileById(id, force)