Przeglądaj źródła

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 lat temu
rodzic
commit
f2d37e61c7
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1
    1
      vncviewer/vncviewer.cxx

+ 1
- 1
vncviewer/vncviewer.cxx Wyświetl plik

} else { } else {
int result = mkdir(homeDir, 0755); int result = mkdir(homeDir, 0755);
if (result == -1 && errno != EEXIST) 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; delete [] homeDir;
} }
} }

Ładowanie…
Anuluj
Zapisz