瀏覽代碼

Don't add . to error message string

The norm is to have error strings without punctiation, so avoid adding
one as it just confuses the translators.
tags/v1.12.90
Pierre Ossman 2 年之前
父節點
當前提交
f2d37e61c7
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      vncviewer/vncviewer.cxx

+ 1
- 1
vncviewer/vncviewer.cxx 查看文件

@@ -467,7 +467,7 @@ static void mkvnchomedir()
} else {
int result = mkdir(homeDir, 0755);
if (result == -1 && errno != EEXIST)
vlog.error(_("Could not create VNC home directory: %s."), strerror(errno));
vlog.error(_("Could not create VNC home directory: %s"), strerror(errno));
delete [] homeDir;
}
}

Loading…
取消
儲存