correct some English comments

This commit is contained in:
plc-user 2025-07-09 15:23:01 +02:00
parent acb4b21070
commit 07c6ac6c9f
2 changed files with 2 additions and 2 deletions

View File

@ -623,7 +623,7 @@ NamesList ElementsLocation::nameList()
else
{
//Open the qet_directory file,
// to get the traductions name of this dir
// to get the translated name of this dir
QFile dir_conf(fileSystemPath() % "/qet_directory");
if (dir_conf.exists() && dir_conf.open(
QIODevice::ReadOnly

View File

@ -182,7 +182,7 @@ QDomElement QETXML::fileSystemDirToXmlCollectionDir(
QDomElement dir_element = document.createElement("category");
dir_element.setAttribute("name", rename.isNull()? dir.dirName() : rename);
//Get the traduction of this directory
//Get the translation of this directory
QFile qet_dir(dir.filePath("qet_directory"));
if (qet_dir.exists() && qet_dir.open(
QIODevice::ReadOnly