misc: unify terminology

8+3 filename → 8.3 filename
be ware → beware
{cannot, can not, cant, can't, could not, couldn't} → unable to
conpleted → completed
file name → filename
imcomplete → incomplete
informations → information
trying to → attempting to
wrong password → incorrect password

GitLab: https://git.jami.net/savoirfairelinux/jami-client-qt/issues/1730

Change-Id: Ia7757efafd2c06af978db02c65b40b1b77c393f8
This commit is contained in:
ovari123
2024-09-14 16:12:06 -04:00
committed by ovari123@zoho.com
parent 3004e72cef
commit ad5b6cbaf6
120 changed files with 896 additions and 896 deletions

View File

@ -653,9 +653,9 @@ AC_DEFUN([BB_ENABLE_DOXYGEN],
[use 'dot' to generate graphs in doxygen (auto)])])
if test "x$enable_doxygen" = xyes; then
AC_PATH_PROG(DOXYGEN, doxygen, , $PATH)
test x$DOXYGEN = x && AC_MSG_ERROR([could not find doxygen])
test x$DOXYGEN = x && AC_MSG_ERROR([unable to find doxygen])
AC_PATH_PROG(DOT, dot, , $PATH)
test x$DOT = x -a "x$enable_dot" = xyes && AC_MSG_ERROR([could not find dot])
test x$DOT = x -a "x$enable_dot" = xyes && AC_MSG_ERROR([unable to find dot])
fi
AM_CONDITIONAL(ENABLE_DOXYGEN, test "x$DOXYGEN" != "x")])